Skip to content

Commit 08a49b3

Browse files
gavstoCalebAlbers
authored andcommitted
Fixed invalid uri for Flexible Assets (#34)
* Fixed invalid uri for Flexible Assets The resourceuri was invalid when using a bulk update * Fix Set-ITGlueFlexibleAssets $id Parameter Fixes #33 * Update FlexibleAssets.ps1
1 parent 585e3db commit 08a49b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ITGlueAPI/Resources/FlexibleAssets.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function Set-ITGlueFlexibleAssets {
106106
[CmdletBinding(DefaultParameterSetName = 'update')]
107107
Param (
108108
[Parameter(ParameterSetName = 'update')]
109-
[Int64]$id,
109+
[Nullable[Int64]]$id = $null,
110110

111111
[Parameter(ParameterSetName = 'update')]
112112
[Parameter(ParameterSetName = 'bulk_update')]

0 commit comments

Comments
 (0)