v2026/src/PSSailpoint.V2026/Model/AccountDeleteAsyncResult.ps1
|
# # Identity Security Cloud v2026 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: v2026 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Asynchronous response containing a unique tracking ID for the account deletion request .PARAMETER AccountRequestId Id of the deletion request .OUTPUTS AccountDeleteAsyncResult<PSCustomObject> #> function Initialize-V2026AccountDeleteAsyncResult { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${AccountRequestId} ) Process { 'Creating PSCustomObject: PSSailpoint.V2026 => V2026AccountDeleteAsyncResult' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$AccountRequestId) { throw "invalid value for 'AccountRequestId', 'AccountRequestId' cannot be null." } $PSO = [PSCustomObject]@{ "accountRequestId" = ${AccountRequestId} } return $PSO } } <# .SYNOPSIS Convert from JSON to AccountDeleteAsyncResult<PSCustomObject> .DESCRIPTION Convert from JSON to AccountDeleteAsyncResult<PSCustomObject> .PARAMETER Json Json object .OUTPUTS AccountDeleteAsyncResult<PSCustomObject> #> function ConvertFrom-V2026JsonToAccountDeleteAsyncResult { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V2026 => V2026AccountDeleteAsyncResult' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2026AccountDeleteAsyncResult $AllProperties = ("accountRequestId") 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 'accountRequestId' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accountRequestId"))) { throw "Error! JSON cannot be serialized due to the required property 'accountRequestId' missing." } else { $AccountRequestId = $JsonParameters.PSobject.Properties["accountRequestId"].value } $PSO = [PSCustomObject]@{ "accountRequestId" = ${AccountRequestId} } return $PSO } } |