beta/src/PSSailpoint.Beta/Model/CampaignEndedCampaign.ps1
# # Identity Security Cloud Beta API # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. 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.1.0-beta # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Details about the certification campaign that ended. .PARAMETER Id Campaign's unique ID for the campaign. .PARAMETER Name Campaign's unique ID. .PARAMETER Description Campaign's extended description. .PARAMETER Created Date and time when the campaign was created. .PARAMETER Modified Date and time when the campaign was last modified. .PARAMETER Deadline Date and time when the campaign is due. .PARAMETER Type Campaign's type. .PARAMETER CampaignOwner No description available. .PARAMETER Status Campaign's current status. .OUTPUTS CampaignEndedCampaign<PSCustomObject> #> function Initialize-BetaCampaignEndedCampaign { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Id}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.DateTime] ${Created}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Modified}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.DateTime] ${Deadline}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("MANAGER", "SOURCE_OWNER", "SEARCH", "ROLE_COMPOSITION")] [PSCustomObject] ${Type}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${CampaignOwner}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("COMPLETED")] [PSCustomObject] ${Status} ) Process { 'Creating PSCustomObject: PSSailpoint.Beta => BetaCampaignEndedCampaign' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Id) { throw "invalid value for 'Id', 'Id' cannot be null." } if (!$Name) { throw "invalid value for 'Name', 'Name' cannot be null." } if (!$Description) { throw "invalid value for 'Description', 'Description' cannot be null." } if (!$Created) { throw "invalid value for 'Created', 'Created' cannot be null." } if (!$Deadline) { throw "invalid value for 'Deadline', 'Deadline' cannot be null." } if (!$Type) { throw "invalid value for 'Type', 'Type' cannot be null." } if (!$CampaignOwner) { throw "invalid value for 'CampaignOwner', 'CampaignOwner' cannot be null." } if (!$Status) { throw "invalid value for 'Status', 'Status' cannot be null." } $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "description" = ${Description} "created" = ${Created} "modified" = ${Modified} "deadline" = ${Deadline} "type" = ${Type} "campaignOwner" = ${CampaignOwner} "status" = ${Status} } return $PSO } } <# .SYNOPSIS Convert from JSON to CampaignEndedCampaign<PSCustomObject> .DESCRIPTION Convert from JSON to CampaignEndedCampaign<PSCustomObject> .PARAMETER Json Json object .OUTPUTS CampaignEndedCampaign<PSCustomObject> #> function ConvertFrom-BetaJsonToCampaignEndedCampaign { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Beta => BetaCampaignEndedCampaign' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaCampaignEndedCampaign $AllProperties = ("id", "name", "description", "created", "modified", "deadline", "type", "campaignOwner", "status") 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 'id' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "id"))) { throw "Error! JSON cannot be serialized due to the required property 'id' missing." } else { $Id = $JsonParameters.PSobject.Properties["id"].value } 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 "description"))) { throw "Error! JSON cannot be serialized due to the required property 'description' missing." } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "created"))) { throw "Error! JSON cannot be serialized due to the required property 'created' missing." } else { $Created = $JsonParameters.PSobject.Properties["created"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "deadline"))) { throw "Error! JSON cannot be serialized due to the required property 'deadline' missing." } else { $Deadline = $JsonParameters.PSobject.Properties["deadline"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "type"))) { throw "Error! JSON cannot be serialized due to the required property 'type' missing." } else { $Type = $JsonParameters.PSobject.Properties["type"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "campaignOwner"))) { throw "Error! JSON cannot be serialized due to the required property 'campaignOwner' missing." } else { $CampaignOwner = $JsonParameters.PSobject.Properties["campaignOwner"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "status"))) { throw "Error! JSON cannot be serialized due to the required property 'status' missing." } else { $Status = $JsonParameters.PSobject.Properties["status"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "modified"))) { #optional property not found $Modified = $null } else { $Modified = $JsonParameters.PSobject.Properties["modified"].value } $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "description" = ${Description} "created" = ${Created} "modified" = ${Modified} "deadline" = ${Deadline} "type" = ${Type} "campaignOwner" = ${CampaignOwner} "status" = ${Status} } return $PSO } } |