v3/src/PSSailpoint/Model/PublicIdentityConfig.ps1
# # IdentityNow V3 API # Use these APIs to interact with the IdentityNow 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: 3.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Details of up to 5 Identity attributes that will be publicly accessible for all Identities to anyone in the org. .PARAMETER Attributes Up to 5 identity attributes that will be available to everyone in the org for all users in the org. .PARAMETER Modified When this configuration was last modified. .PARAMETER ModifiedBy No description available. .OUTPUTS PublicIdentityConfig<PSCustomObject> #> function Initialize-PublicIdentityConfig { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Attributes}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Modified}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ModifiedBy} ) Process { 'Creating PSCustomObject: PSSailpoint => PublicIdentityConfig' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "attributes" = ${Attributes} "modified" = ${Modified} "modifiedBy" = ${ModifiedBy} } return $PSO } } <# .SYNOPSIS Convert from JSON to PublicIdentityConfig<PSCustomObject> .DESCRIPTION Convert from JSON to PublicIdentityConfig<PSCustomObject> .PARAMETER Json Json object .OUTPUTS PublicIdentityConfig<PSCustomObject> #> function ConvertFrom-JsonToPublicIdentityConfig { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint => PublicIdentityConfig' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PublicIdentityConfig $AllProperties = ("attributes", "modified", "modifiedBy") 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 "attributes"))) { #optional property not found $Attributes = $null } else { $Attributes = $JsonParameters.PSobject.Properties["attributes"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "modified"))) { #optional property not found $Modified = $null } else { $Modified = $JsonParameters.PSobject.Properties["modified"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "modifiedBy"))) { #optional property not found $ModifiedBy = $null } else { $ModifiedBy = $JsonParameters.PSobject.Properties["modifiedBy"].value } $PSO = [PSCustomObject]@{ "attributes" = ${Attributes} "modified" = ${Modified} "modifiedBy" = ${ModifiedBy} } return $PSO } } |