Model/CampaignFilterDetails.ps1
# # Identity Security Cloud V3 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: 3.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Campaign Filter Details .PARAMETER Id The unique ID of the campaign filter .PARAMETER Name Campaign filter name. .PARAMETER Description Campaign filter description. .PARAMETER Owner Owner of the filter. This field automatically populates at creation time with the current user. .PARAMETER Mode Mode/type of filter, either the INCLUSION or EXCLUSION type. The INCLUSION type includes the data in generated campaigns as per specified in the criteria, whereas the EXCLUSION type excludes the data in generated campaigns as per specified in criteria. .PARAMETER CriteriaList List of criteria. .PARAMETER IsSystemFilter If true, the filter is created by the system. If false, the filter is created by a user. .OUTPUTS CampaignFilterDetails<PSCustomObject> #> function Initialize-CampaignFilterDetails { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Id}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Owner}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("INCLUSION", "EXCLUSION")] [PSCustomObject] ${Mode}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${CriteriaList}, [Parameter(ValueFromPipelineByPropertyName = $true)] [Boolean] ${IsSystemFilter} = $false ) Process { 'Creating PSCustomObject: PSSailpoint.V3 => CampaignFilterDetails' | 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 (!$Mode) { throw "invalid value for 'Mode', 'Mode' cannot be null." } if (!$IsSystemFilter) { throw "invalid value for 'IsSystemFilter', 'IsSystemFilter' cannot be null." } $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "description" = ${Description} "owner" = ${Owner} "mode" = ${Mode} "criteriaList" = ${CriteriaList} "isSystemFilter" = ${IsSystemFilter} } return $PSO } } <# .SYNOPSIS Convert from JSON to CampaignFilterDetails<PSCustomObject> .DESCRIPTION Convert from JSON to CampaignFilterDetails<PSCustomObject> .PARAMETER Json Json object .OUTPUTS CampaignFilterDetails<PSCustomObject> #> function ConvertFrom-JsonToCampaignFilterDetails { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V3 => CampaignFilterDetails' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in CampaignFilterDetails $AllProperties = ("id", "name", "description", "owner", "mode", "criteriaList", "isSystemFilter") 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 "owner"))) { throw "Error! JSON cannot be serialized due to the required property 'owner' missing." } else { $Owner = $JsonParameters.PSobject.Properties["owner"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "mode"))) { throw "Error! JSON cannot be serialized due to the required property 'mode' missing." } else { $Mode = $JsonParameters.PSobject.Properties["mode"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "isSystemFilter"))) { throw "Error! JSON cannot be serialized due to the required property 'isSystemFilter' missing." } else { $IsSystemFilter = $JsonParameters.PSobject.Properties["isSystemFilter"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "description"))) { #optional property not found $Description = $null } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "criteriaList"))) { #optional property not found $CriteriaList = $null } else { $CriteriaList = $JsonParameters.PSobject.Properties["criteriaList"].value } $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} "description" = ${Description} "owner" = ${Owner} "mode" = ${Mode} "criteriaList" = ${CriteriaList} "isSystemFilter" = ${IsSystemFilter} } return $PSO } } |