machine-identities-lifecycle-actions/src/PSSailpoint.MachineIdentitiesLifecycleActions/Model/LifecycleActionSubmitComment.ps1
|
# # Identity Security Cloud API - Machine Identity Lifecycle Actions # Use these APIs to submit, list, retrieve, and cancel machine identity lifecycle actions (for example agent activate and deactivate). 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: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Comment Free-text comment submitted with the lifecycle action request. .OUTPUTS LifecycleActionSubmitComment<PSCustomObject> #> function Initialize-LifecycleActionSubmitComment { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Comment} ) Process { 'Creating PSCustomObject: PSSailpoint.MachineIdentitiesLifecycleActions => LifecycleActionSubmitComment' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Comment) { throw "invalid value for 'Comment', 'Comment' cannot be null." } if ($Comment.length -gt 1000) { throw "invalid value for 'Comment', the character length must be smaller than or equal to 1000." } $PSO = [PSCustomObject]@{ "comment" = ${Comment} } return $PSO } } <# .SYNOPSIS Convert from JSON to LifecycleActionSubmitComment<PSCustomObject> .DESCRIPTION Convert from JSON to LifecycleActionSubmitComment<PSCustomObject> .PARAMETER Json Json object .OUTPUTS LifecycleActionSubmitComment<PSCustomObject> #> function ConvertFrom-JsonToLifecycleActionSubmitComment { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.MachineIdentitiesLifecycleActions => LifecycleActionSubmitComment' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in LifecycleActionSubmitComment $AllProperties = ("comment") 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 'comment' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "comment"))) { throw "Error! JSON cannot be serialized due to the required property 'comment' missing." } else { $Comment = $JsonParameters.PSobject.Properties["comment"].value } $PSO = [PSCustomObject]@{ "comment" = ${Comment} } return $PSO } } |