v3/src/PSSailpoint/Model/AccountToggleRequest.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 Request used for account enable/disable .PARAMETER ExternalVerificationId If set, an external process validates that the user wants to proceed with this request. .PARAMETER ForceProvisioning If set, provisioning updates the account attribute at the source. This option is used when the account is not synced to ensure the attribute is updated. Providing 'true' for an unlocked account will add and process 'Unlock' operation by the workflow. .OUTPUTS AccountToggleRequest<PSCustomObject> #> function Initialize-AccountToggleRequest { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${ExternalVerificationId}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${ForceProvisioning} ) Process { 'Creating PSCustomObject: PSSailpoint => AccountToggleRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "externalVerificationId" = ${ExternalVerificationId} "forceProvisioning" = ${ForceProvisioning} } return $PSO } } <# .SYNOPSIS Convert from JSON to AccountToggleRequest<PSCustomObject> .DESCRIPTION Convert from JSON to AccountToggleRequest<PSCustomObject> .PARAMETER Json Json object .OUTPUTS AccountToggleRequest<PSCustomObject> #> function ConvertFrom-JsonToAccountToggleRequest { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint => AccountToggleRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in AccountToggleRequest $AllProperties = ("externalVerificationId", "forceProvisioning") 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 "externalVerificationId"))) { #optional property not found $ExternalVerificationId = $null } else { $ExternalVerificationId = $JsonParameters.PSobject.Properties["externalVerificationId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "forceProvisioning"))) { #optional property not found $ForceProvisioning = $null } else { $ForceProvisioning = $JsonParameters.PSobject.Properties["forceProvisioning"].value } $PSO = [PSCustomObject]@{ "externalVerificationId" = ${ExternalVerificationId} "forceProvisioning" = ${ForceProvisioning} } return $PSO } } |