Model/Entitlementmetadatabulkupdatebyfilterrequest.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 every entitlement matching a filter expression. Adding or replacing custom metadata requires a suite license. .PARAMETER Filters Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* .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 Entitlementmetadatabulkupdatebyfilterrequest<PSCustomObject> #> function Initialize-Entitlementmetadatabulkupdatebyfilterrequest { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Filters}, [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 => Entitlementmetadatabulkupdatebyfilterrequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Filters) { throw "invalid value for 'Filters', 'Filters' cannot be null." } if (!$Operation) { throw "invalid value for 'Operation', 'Operation' cannot be null." } if (!$Values) { throw "invalid value for 'Values', 'Values' cannot be null." } $PSO = [PSCustomObject]@{ "filters" = ${Filters} "operation" = ${Operation} "replaceScope" = ${ReplaceScope} "values" = ${Values} } return $PSO } } <# .SYNOPSIS Convert from JSON to Entitlementmetadatabulkupdatebyfilterrequest<PSCustomObject> .DESCRIPTION Convert from JSON to Entitlementmetadatabulkupdatebyfilterrequest<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Entitlementmetadatabulkupdatebyfilterrequest<PSCustomObject> #> function ConvertFrom-JsonToEntitlementmetadatabulkupdatebyfilterrequest { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Entitlements => Entitlementmetadatabulkupdatebyfilterrequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Entitlementmetadatabulkupdatebyfilterrequest $AllProperties = ("filters", "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 'filters' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "filters"))) { throw "Error! JSON cannot be serialized due to the required property 'filters' missing." } else { $Filters = $JsonParameters.PSobject.Properties["filters"].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]@{ "filters" = ${Filters} "operation" = ${Operation} "replaceScope" = ${ReplaceScope} "values" = ${Values} } return $PSO } } |