entitlements/src/PSSailpoint.Entitlements/Model/Entitlementmetadatabulkupdatebyidrequest.ps1
|
# # Identity Security Cloud API - Entitlements # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs. # Version: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Request to bulk update Access Model Metadata on a list of entitlements identified by ID. The maximum entitlement count in a single request is 3000. Adding or replacing custom metadata requires a suite license. .PARAMETER Entitlements The IDs of the entitlements to update. .PARAMETER Operation The operation to be performed .PARAMETER ReplaceScope The choice of update scope. **ATTRIBUTE** replaces only the values of the attributes named in `values`, and **ALL** replaces every metadata attribute on the entitlement. .PARAMETER Values The metadata to be updated, including attribute key and value. .OUTPUTS Entitlementmetadatabulkupdatebyidrequest<PSCustomObject> #> function Initialize-Entitlementmetadatabulkupdatebyidrequest { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${Entitlements}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("ADD", "REMOVE", "REPLACE")] [String] ${Operation}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("ALL", "ATTRIBUTE")] [String] ${ReplaceScope}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Values} ) Process { 'Creating PSCustomObject: PSSailpoint.Entitlements => Entitlementmetadatabulkupdatebyidrequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Entitlements) { throw "invalid value for 'Entitlements', 'Entitlements' cannot be null." } if ($Entitlements.length -gt 3000) { throw "invalid value for 'Entitlements', number of items must be less than or equal to 3000." } if (!$Operation) { throw "invalid value for 'Operation', 'Operation' cannot be null." } if (!$Values) { throw "invalid value for 'Values', 'Values' cannot be null." } $PSO = [PSCustomObject]@{ "entitlements" = ${Entitlements} "operation" = ${Operation} "replaceScope" = ${ReplaceScope} "values" = ${Values} } return $PSO } } <# .SYNOPSIS Convert from JSON to Entitlementmetadatabulkupdatebyidrequest<PSCustomObject> .DESCRIPTION Convert from JSON to Entitlementmetadatabulkupdatebyidrequest<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Entitlementmetadatabulkupdatebyidrequest<PSCustomObject> #> function ConvertFrom-JsonToEntitlementmetadatabulkupdatebyidrequest { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Entitlements => Entitlementmetadatabulkupdatebyidrequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Entitlementmetadatabulkupdatebyidrequest $AllProperties = ("entitlements", "operation", "replaceScope", "values") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } If ([string]::IsNullOrEmpty($Json) -or $Json -eq "{}") { # empty json throw "Error! Empty JSON cannot be serialized due to the required property 'entitlements' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "entitlements"))) { throw "Error! JSON cannot be serialized due to the required property 'entitlements' missing." } else { $Entitlements = $JsonParameters.PSobject.Properties["entitlements"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "operation"))) { throw "Error! JSON cannot be serialized due to the required property 'operation' missing." } else { $Operation = $JsonParameters.PSobject.Properties["operation"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "values"))) { throw "Error! JSON cannot be serialized due to the required property 'values' missing." } else { $Values = $JsonParameters.PSobject.Properties["values"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "replaceScope"))) { #optional property not found $ReplaceScope = $null } else { $ReplaceScope = $JsonParameters.PSobject.Properties["replaceScope"].value } $PSO = [PSCustomObject]@{ "entitlements" = ${Entitlements} "operation" = ${Operation} "replaceScope" = ${ReplaceScope} "values" = ${Values} } return $PSO } } |