v3/src/PSSailpoint/Model/PasswordChangeRequest.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 No description available. .PARAMETER IdentityId The identity ID that requested the password change .PARAMETER EncryptedPassword The RSA encrypted password .PARAMETER PublicKeyId The encryption key ID .PARAMETER AccountId Account ID of the account This is specified per account schema in the source configuration. It is used to distinguish accounts. More info can be found here https://community.sailpoint.com/t5/IdentityNow-Connectors/How-do-I-designate-an-account-attribute-as-the-Account-ID-for-a/ta-p/80350 .PARAMETER SourceId The ID of the source for which identity is requesting the password change .OUTPUTS PasswordChangeRequest<PSCustomObject> #> function Initialize-PasswordChangeRequest { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${IdentityId}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${EncryptedPassword}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [String] ${PublicKeyId}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [String] ${AccountId}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${SourceId} ) Process { 'Creating PSCustomObject: PSSailpoint => PasswordChangeRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "identityId" = ${IdentityId} "encryptedPassword" = ${EncryptedPassword} "publicKeyId" = ${PublicKeyId} "accountId" = ${AccountId} "sourceId" = ${SourceId} } return $PSO } } <# .SYNOPSIS Convert from JSON to PasswordChangeRequest<PSCustomObject> .DESCRIPTION Convert from JSON to PasswordChangeRequest<PSCustomObject> .PARAMETER Json Json object .OUTPUTS PasswordChangeRequest<PSCustomObject> #> function ConvertFrom-JsonToPasswordChangeRequest { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint => PasswordChangeRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in PasswordChangeRequest $AllProperties = ("identityId", "encryptedPassword", "publicKeyId", "accountId", "sourceId") 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 "identityId"))) { #optional property not found $IdentityId = $null } else { $IdentityId = $JsonParameters.PSobject.Properties["identityId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "encryptedPassword"))) { #optional property not found $EncryptedPassword = $null } else { $EncryptedPassword = $JsonParameters.PSobject.Properties["encryptedPassword"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "publicKeyId"))) { #optional property not found $PublicKeyId = $null } else { $PublicKeyId = $JsonParameters.PSobject.Properties["publicKeyId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accountId"))) { #optional property not found $AccountId = $null } else { $AccountId = $JsonParameters.PSobject.Properties["accountId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sourceId"))) { #optional property not found $SourceId = $null } else { $SourceId = $JsonParameters.PSobject.Properties["sourceId"].value } $PSO = [PSCustomObject]@{ "identityId" = ${IdentityId} "encryptedPassword" = ${EncryptedPassword} "publicKeyId" = ${PublicKeyId} "accountId" = ${AccountId} "sourceId" = ${SourceId} } return $PSO } } |