access-model-metadata/src/PSSailpoint.AccessModelMetadata/Model/AttributeDTO.ps1
|
# # Identity Security Cloud API - Access Model Metadata # 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 No description available. .PARAMETER Key Technical name of the Attribute. This is unique and cannot be changed after creation. Allowed characters are letters, numbers, dashes (-), and underscores (_); the value cannot start or end with a dash or underscore. .PARAMETER Name The display name of the key. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ - .PARAMETER Multiselect Indicates whether the attribute can have multiple values. .PARAMETER IsAdhoc Indicates whether this Attribute supports ad-hoc (dynamically created) values, in addition to pre-defined static values. Ad-hoc values are created dynamically through an internal service-to-service flow rather than through the public create-value API. This field can be set when creating an Attribute; if omitted, it defaults to false. .PARAMETER Status The status of the Attribute. .PARAMETER Type The type of the Attribute. This can be either ""custom"" or ""governance"". .PARAMETER ObjectTypes An array of object types this attributes values can be applied to. Possible values are ""all"" or ""entitlement"". Value ""all"" means this attribute can be used with all object types that are supported. .PARAMETER Description The description of the Attribute. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ : - .PARAMETER Values No description available. .OUTPUTS AttributeDTO<PSCustomObject> #> function Initialize-AttributeDTO { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidatePattern("^[a-zA-Z0-9]([a-zA-Z0-9_-]*[a-zA-Z0-9])?$")] [String] ${Key}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${Multiselect} = $false, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${IsAdhoc} = $false, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Status}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Type}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${ObjectTypes}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Values} ) Process { 'Creating PSCustomObject: PSSailpoint.AccessModelMetadata => AttributeDTO' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Key -and $Key.length -gt 255) { throw "invalid value for 'Key', the character length must be smaller than or equal to 255." } if (!$Name -and $Name.length -gt 100) { throw "invalid value for 'Name', the character length must be smaller than or equal to 100." } if (!$Description -and $Description.length -gt 500) { throw "invalid value for 'Description', the character length must be smaller than or equal to 500." } $PSO = [PSCustomObject]@{ "key" = ${Key} "name" = ${Name} "multiselect" = ${Multiselect} "isAdhoc" = ${IsAdhoc} "status" = ${Status} "type" = ${Type} "objectTypes" = ${ObjectTypes} "description" = ${Description} "values" = ${Values} } return $PSO } } <# .SYNOPSIS Convert from JSON to AttributeDTO<PSCustomObject> .DESCRIPTION Convert from JSON to AttributeDTO<PSCustomObject> .PARAMETER Json Json object .OUTPUTS AttributeDTO<PSCustomObject> #> function ConvertFrom-JsonToAttributeDTO { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.AccessModelMetadata => AttributeDTO' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in AttributeDTO $AllProperties = ("key", "name", "multiselect", "isAdhoc", "status", "type", "objectTypes", "description", "values") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "key"))) { #optional property not found $Key = $null } else { $Key = $JsonParameters.PSobject.Properties["key"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) { #optional property not found $Name = $null } else { $Name = $JsonParameters.PSobject.Properties["name"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "multiselect"))) { #optional property not found $Multiselect = $null } else { $Multiselect = $JsonParameters.PSobject.Properties["multiselect"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "isAdhoc"))) { #optional property not found $IsAdhoc = $null } else { $IsAdhoc = $JsonParameters.PSobject.Properties["isAdhoc"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "status"))) { #optional property not found $Status = $null } else { $Status = $JsonParameters.PSobject.Properties["status"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "type"))) { #optional property not found $Type = $null } else { $Type = $JsonParameters.PSobject.Properties["type"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "objectTypes"))) { #optional property not found $ObjectTypes = $null } else { $ObjectTypes = $JsonParameters.PSobject.Properties["objectTypes"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "description"))) { #optional property not found $Description = $null } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "values"))) { #optional property not found $Values = $null } else { $Values = $JsonParameters.PSobject.Properties["values"].value } $PSO = [PSCustomObject]@{ "key" = ${Key} "name" = ${Name} "multiselect" = ${Multiselect} "isAdhoc" = ${IsAdhoc} "status" = ${Status} "type" = ${Type} "objectTypes" = ${ObjectTypes} "description" = ${Description} "values" = ${Values} } return $PSO } } |