intelligence/src/PSSailpoint.Intelligence/Model/Intelprivilegelevel.ps1
|
# # Identity Security Cloud API - Intelligence # 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 Effective privilege level for the privileged access item. Set to HIGH, MEDIUM, or LOW based on the tenant's privilege classification configuration, including connector criteria, custom criteria, manual overrides, or a single configured privilege level. Use NONE when no privilege level is assigned. Entitlements previously marked with privileged=true are classified as HIGH. .PARAMETER Effective Effective privilege level for the privileged access item. .OUTPUTS Intelprivilegelevel<PSCustomObject> #> function Initialize-Intelprivilegelevel { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("HIGH", "MEDIUM", "LOW", "NONE")] [String] ${Effective} ) Process { 'Creating PSCustomObject: PSSailpoint.Intelligence => Intelprivilegelevel' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "effective" = ${Effective} } return $PSO } } <# .SYNOPSIS Convert from JSON to Intelprivilegelevel<PSCustomObject> .DESCRIPTION Convert from JSON to Intelprivilegelevel<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Intelprivilegelevel<PSCustomObject> #> function ConvertFrom-JsonToIntelprivilegelevel { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Intelligence => Intelprivilegelevel' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Intelprivilegelevel $AllProperties = ("effective") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "effective"))) { #optional property not found $Effective = $null } else { $Effective = $JsonParameters.PSobject.Properties["effective"].value } $PSO = [PSCustomObject]@{ "effective" = ${Effective} } return $PSO } } |