Model/ScheduledActionPayloadContent.ps1
# # Identity Security Cloud V2024 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: v2024 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Name Name of the scheduled action (maximum 50 characters). .PARAMETER BackupOptions No description available. .PARAMETER SourceBackupId ID of the source backup. Required for CREATE_DRAFT jobs. .PARAMETER SourceTenant Source tenant identifier. Required for CREATE_DRAFT jobs. .PARAMETER DraftId ID of the draft to be deployed. Required for CONFIG_DEPLOY_DRAFT jobs. .OUTPUTS ScheduledActionPayloadContent<PSCustomObject> #> function Initialize-V2024ScheduledActionPayloadContent { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${BackupOptions}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${SourceBackupId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${SourceTenant}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${DraftId} ) Process { 'Creating PSCustomObject: PSSailpoint.V2024 => V2024ScheduledActionPayloadContent' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Name) { throw "invalid value for 'Name', 'Name' cannot be null." } if ($Name.length -gt 50) { throw "invalid value for 'Name', the character length must be smaller than or equal to 50." } $PSO = [PSCustomObject]@{ "name" = ${Name} "backupOptions" = ${BackupOptions} "sourceBackupId" = ${SourceBackupId} "sourceTenant" = ${SourceTenant} "draftId" = ${DraftId} } return $PSO } } <# .SYNOPSIS Convert from JSON to ScheduledActionPayloadContent<PSCustomObject> .DESCRIPTION Convert from JSON to ScheduledActionPayloadContent<PSCustomObject> .PARAMETER Json Json object .OUTPUTS ScheduledActionPayloadContent<PSCustomObject> #> function ConvertFrom-V2024JsonToScheduledActionPayloadContent { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V2024 => V2024ScheduledActionPayloadContent' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2024ScheduledActionPayloadContent $AllProperties = ("name", "backupOptions", "sourceBackupId", "sourceTenant", "draftId") 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 "backupOptions"))) { #optional property not found $BackupOptions = $null } else { $BackupOptions = $JsonParameters.PSobject.Properties["backupOptions"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sourceBackupId"))) { #optional property not found $SourceBackupId = $null } else { $SourceBackupId = $JsonParameters.PSobject.Properties["sourceBackupId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sourceTenant"))) { #optional property not found $SourceTenant = $null } else { $SourceTenant = $JsonParameters.PSobject.Properties["sourceTenant"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "draftId"))) { #optional property not found $DraftId = $null } else { $DraftId = $JsonParameters.PSobject.Properties["draftId"].value } $PSO = [PSCustomObject]@{ "name" = ${Name} "backupOptions" = ${BackupOptions} "sourceBackupId" = ${SourceBackupId} "sourceTenant" = ${SourceTenant} "draftId" = ${DraftId} } return $PSO } } |