v3/src/PSSailpoint/Model/LifecycleState.ps1
# # Identity Security Cloud V3 API # 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: 3.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Name Name of the Object .PARAMETER Enabled Whether the lifecycle state is enabled or disabled. .PARAMETER TechnicalName The technical name for lifecycle state. This is for internal use. .PARAMETER Description Lifecycle state description. .PARAMETER EmailNotificationOption No description available. .PARAMETER AccountActions No description available. .PARAMETER AccessProfileIds List of unique access-profile IDs that are associated with the lifecycle state. .OUTPUTS LifecycleState<PSCustomObject> #> function Initialize-LifecycleState { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${Enabled}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${TechnicalName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${EmailNotificationOption}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${AccountActions}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${AccessProfileIds} ) Process { 'Creating PSCustomObject: PSSailpoint => LifecycleState' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Name) { throw "invalid value for 'Name', 'Name' cannot be null." } if (!$TechnicalName) { throw "invalid value for 'TechnicalName', 'TechnicalName' cannot be null." } $PSO = [PSCustomObject]@{ "name" = ${Name} "enabled" = ${Enabled} "technicalName" = ${TechnicalName} "description" = ${Description} "emailNotificationOption" = ${EmailNotificationOption} "accountActions" = ${AccountActions} "accessProfileIds" = ${AccessProfileIds} } return $PSO } } <# .SYNOPSIS Convert from JSON to LifecycleState<PSCustomObject> .DESCRIPTION Convert from JSON to LifecycleState<PSCustomObject> .PARAMETER Json Json object .OUTPUTS LifecycleState<PSCustomObject> #> function ConvertFrom-JsonToLifecycleState { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint => LifecycleState' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in LifecycleState $AllProperties = ("id", "name", "created", "modified", "enabled", "technicalName", "description", "identityCount", "emailNotificationOption", "accountActions", "accessProfileIds") 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 'name' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) { throw "Error! JSON cannot be serialized due to the required property 'name' missing." } else { $Name = $JsonParameters.PSobject.Properties["name"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "technicalName"))) { throw "Error! JSON cannot be serialized due to the required property 'technicalName' missing." } else { $TechnicalName = $JsonParameters.PSobject.Properties["technicalName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "id"))) { #optional property not found $Id = $null } else { $Id = $JsonParameters.PSobject.Properties["id"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "created"))) { #optional property not found $Created = $null } else { $Created = $JsonParameters.PSobject.Properties["created"].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 "enabled"))) { #optional property not found $Enabled = $null } else { $Enabled = $JsonParameters.PSobject.Properties["enabled"].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 "identityCount"))) { #optional property not found $IdentityCount = $null } else { $IdentityCount = $JsonParameters.PSobject.Properties["identityCount"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "emailNotificationOption"))) { #optional property not found $EmailNotificationOption = $null } else { $EmailNotificationOption = $JsonParameters.PSobject.Properties["emailNotificationOption"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accountActions"))) { #optional property not found $AccountActions = $null } else { $AccountActions = $JsonParameters.PSobject.Properties["accountActions"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accessProfileIds"))) { #optional property not found $AccessProfileIds = $null } else { $AccessProfileIds = $JsonParameters.PSobject.Properties["accessProfileIds"].value } $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "created" = ${Created} "modified" = ${Modified} "enabled" = ${Enabled} "technicalName" = ${TechnicalName} "description" = ${Description} "identityCount" = ${IdentityCount} "emailNotificationOption" = ${EmailNotificationOption} "accountActions" = ${AccountActions} "accessProfileIds" = ${AccessProfileIds} } return $PSO } } |