Model/AccessItemEntitlementResponse.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 AccessType the access item type. entitlement in this case .PARAMETER Id the access item id .PARAMETER Attribute the entitlement attribute .PARAMETER Value the associated value .PARAMETER EntitlementType the type of entitlement .PARAMETER SourceName the name of the source .PARAMETER SourceId the id of the source .PARAMETER Description the description for the entitlment .PARAMETER DisplayName the display name of the identity .PARAMETER Standalone indicates whether the entitlement is standalone .PARAMETER Privileged indicates whether the entitlement is privileged .PARAMETER CloudGoverned indicates whether the entitlement is cloud governed .OUTPUTS AccessItemEntitlementResponse<PSCustomObject> #> function Initialize-V2024AccessItemEntitlementResponse { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${AccessType}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Id}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Attribute}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Value}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${EntitlementType}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${SourceName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${SourceId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${DisplayName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [Boolean] ${Standalone}, [Parameter(ValueFromPipelineByPropertyName = $true)] [Boolean] ${Privileged}, [Parameter(ValueFromPipelineByPropertyName = $true)] [Boolean] ${CloudGoverned} ) Process { 'Creating PSCustomObject: PSSailpoint.V2024 => V2024AccessItemEntitlementResponse' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Standalone) { throw "invalid value for 'Standalone', 'Standalone' cannot be null." } if (!$Privileged) { throw "invalid value for 'Privileged', 'Privileged' cannot be null." } if (!$CloudGoverned) { throw "invalid value for 'CloudGoverned', 'CloudGoverned' cannot be null." } $PSO = [PSCustomObject]@{ "accessType" = ${AccessType} "id" = ${Id} "attribute" = ${Attribute} "value" = ${Value} "entitlementType" = ${EntitlementType} "sourceName" = ${SourceName} "sourceId" = ${SourceId} "description" = ${Description} "displayName" = ${DisplayName} "standalone" = ${Standalone} "privileged" = ${Privileged} "cloudGoverned" = ${CloudGoverned} } return $PSO } } <# .SYNOPSIS Convert from JSON to AccessItemEntitlementResponse<PSCustomObject> .DESCRIPTION Convert from JSON to AccessItemEntitlementResponse<PSCustomObject> .PARAMETER Json Json object .OUTPUTS AccessItemEntitlementResponse<PSCustomObject> #> function ConvertFrom-V2024JsonToAccessItemEntitlementResponse { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V2024 => V2024AccessItemEntitlementResponse' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2024AccessItemEntitlementResponse $AllProperties = ("accessType", "id", "attribute", "value", "entitlementType", "sourceName", "sourceId", "description", "displayName", "standalone", "privileged", "cloudGoverned") 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 'standalone' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "standalone"))) { throw "Error! JSON cannot be serialized due to the required property 'standalone' missing." } else { $Standalone = $JsonParameters.PSobject.Properties["standalone"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "privileged"))) { throw "Error! JSON cannot be serialized due to the required property 'privileged' missing." } else { $Privileged = $JsonParameters.PSobject.Properties["privileged"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "cloudGoverned"))) { throw "Error! JSON cannot be serialized due to the required property 'cloudGoverned' missing." } else { $CloudGoverned = $JsonParameters.PSobject.Properties["cloudGoverned"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accessType"))) { #optional property not found $AccessType = $null } else { $AccessType = $JsonParameters.PSobject.Properties["accessType"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "id"))) { #optional property not found $Id = $null } else { $Id = $JsonParameters.PSobject.Properties["id"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "attribute"))) { #optional property not found $Attribute = $null } else { $Attribute = $JsonParameters.PSobject.Properties["attribute"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "value"))) { #optional property not found $Value = $null } else { $Value = $JsonParameters.PSobject.Properties["value"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "entitlementType"))) { #optional property not found $EntitlementType = $null } else { $EntitlementType = $JsonParameters.PSobject.Properties["entitlementType"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sourceName"))) { #optional property not found $SourceName = $null } else { $SourceName = $JsonParameters.PSobject.Properties["sourceName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sourceId"))) { #optional property not found $SourceId = $null } else { $SourceId = $JsonParameters.PSobject.Properties["sourceId"].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 "displayName"))) { #optional property not found $DisplayName = $null } else { $DisplayName = $JsonParameters.PSobject.Properties["displayName"].value } $PSO = [PSCustomObject]@{ "accessType" = ${AccessType} "id" = ${Id} "attribute" = ${Attribute} "value" = ${Value} "entitlementType" = ${EntitlementType} "sourceName" = ${SourceName} "sourceId" = ${SourceId} "description" = ${Description} "displayName" = ${DisplayName} "standalone" = ${Standalone} "privileged" = ${Privileged} "cloudGoverned" = ${CloudGoverned} } return $PSO } } |