Model/EntitlementrecommendationassigneeOneOf.ps1
|
# # Identity Security Cloud API - Suggested Entitlement Description # 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: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Assign to a specific identity or governance group. The value field is required and must be the ID of the identity or governance group. .PARAMETER Type The type of assignee. .PARAMETER Value The ID of the identity or governance group to assign to. .OUTPUTS EntitlementrecommendationassigneeOneOf<PSCustomObject> #> function Initialize-EntitlementrecommendationassigneeOneOf { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("IDENTITY", "GOVERNANCE_GROUP")] [String] ${Type}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Value} ) Process { 'Creating PSCustomObject: PSSailpoint.SuggestedEntitlementDescription => EntitlementrecommendationassigneeOneOf' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Type) { throw "invalid value for 'Type', 'Type' cannot be null." } if (!$Value) { throw "invalid value for 'Value', 'Value' cannot be null." } $PSO = [PSCustomObject]@{ "type" = ${Type} "value" = ${Value} } return $PSO } } <# .SYNOPSIS Convert from JSON to EntitlementrecommendationassigneeOneOf<PSCustomObject> .DESCRIPTION Convert from JSON to EntitlementrecommendationassigneeOneOf<PSCustomObject> .PARAMETER Json Json object .OUTPUTS EntitlementrecommendationassigneeOneOf<PSCustomObject> #> function ConvertFrom-JsonToEntitlementrecommendationassigneeOneOf { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.SuggestedEntitlementDescription => EntitlementrecommendationassigneeOneOf' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in EntitlementrecommendationassigneeOneOf $AllProperties = ("type", "value") 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 'type' missing." } 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 "value"))) { throw "Error! JSON cannot be serialized due to the required property 'value' missing." } else { $Value = $JsonParameters.PSobject.Properties["value"].value } $PSO = [PSCustomObject]@{ "type" = ${Type} "value" = ${Value} } return $PSO } } |