v2024/src/Tm.V2024/Model/RoleMiningSessionDto.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 Scope No description available. .PARAMETER PruneThreshold The prune threshold to be used or null to calculate prescribedPruneThreshold .PARAMETER PrescribedPruneThreshold The calculated prescribedPruneThreshold .PARAMETER MinNumIdentitiesInPotentialRole Minimum number of identities in a potential role .PARAMETER PotentialRoleCount Number of potential roles .PARAMETER PotentialRolesReadyCount Number of potential roles ready .PARAMETER Type No description available. .PARAMETER EmailRecipientId The id of the user who will receive an email about the role mining session .PARAMETER IdentityCount Number of identities in the population which meet the search criteria or identity list provided .PARAMETER Saved The session's saved status .PARAMETER Name The session's saved name .OUTPUTS RoleMiningSessionDto<PSCustomObject> #> function Initialize-V2024RoleMiningSessionDto { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Scope}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${PruneThreshold}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${PrescribedPruneThreshold}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${MinNumIdentitiesInPotentialRole}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${PotentialRoleCount}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${PotentialRolesReadyCount}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("SPECIALIZED", "COMMON")] [PSCustomObject] ${Type}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${EmailRecipientId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${IdentityCount}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${Saved} = $false, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name} ) Process { 'Creating PSCustomObject: Tm.V2024 => V2024RoleMiningSessionDto' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "scope" = ${Scope} "pruneThreshold" = ${PruneThreshold} "prescribedPruneThreshold" = ${PrescribedPruneThreshold} "minNumIdentitiesInPotentialRole" = ${MinNumIdentitiesInPotentialRole} "potentialRoleCount" = ${PotentialRoleCount} "potentialRolesReadyCount" = ${PotentialRolesReadyCount} "type" = ${Type} "emailRecipientId" = ${EmailRecipientId} "identityCount" = ${IdentityCount} "saved" = ${Saved} "name" = ${Name} } return $PSO } } <# .SYNOPSIS Convert from JSON to RoleMiningSessionDto<PSCustomObject> .DESCRIPTION Convert from JSON to RoleMiningSessionDto<PSCustomObject> .PARAMETER Json Json object .OUTPUTS RoleMiningSessionDto<PSCustomObject> #> function ConvertFrom-V2024JsonToRoleMiningSessionDto { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Tm.V2024 => V2024RoleMiningSessionDto' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2024RoleMiningSessionDto $AllProperties = ("scope", "pruneThreshold", "prescribedPruneThreshold", "minNumIdentitiesInPotentialRole", "potentialRoleCount", "potentialRolesReadyCount", "type", "emailRecipientId", "identityCount", "saved", "name") 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 "scope"))) { #optional property not found $Scope = $null } else { $Scope = $JsonParameters.PSobject.Properties["scope"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "pruneThreshold"))) { #optional property not found $PruneThreshold = $null } else { $PruneThreshold = $JsonParameters.PSobject.Properties["pruneThreshold"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "prescribedPruneThreshold"))) { #optional property not found $PrescribedPruneThreshold = $null } else { $PrescribedPruneThreshold = $JsonParameters.PSobject.Properties["prescribedPruneThreshold"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "minNumIdentitiesInPotentialRole"))) { #optional property not found $MinNumIdentitiesInPotentialRole = $null } else { $MinNumIdentitiesInPotentialRole = $JsonParameters.PSobject.Properties["minNumIdentitiesInPotentialRole"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "potentialRoleCount"))) { #optional property not found $PotentialRoleCount = $null } else { $PotentialRoleCount = $JsonParameters.PSobject.Properties["potentialRoleCount"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "potentialRolesReadyCount"))) { #optional property not found $PotentialRolesReadyCount = $null } else { $PotentialRolesReadyCount = $JsonParameters.PSobject.Properties["potentialRolesReadyCount"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "type"))) { #optional property not found $Type = $null } else { $Type = $JsonParameters.PSobject.Properties["type"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "emailRecipientId"))) { #optional property not found $EmailRecipientId = $null } else { $EmailRecipientId = $JsonParameters.PSobject.Properties["emailRecipientId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "identityCount"))) { #optional property not found $IdentityCount = $null } else { $IdentityCount = $JsonParameters.PSobject.Properties["identityCount"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "saved"))) { #optional property not found $Saved = $null } else { $Saved = $JsonParameters.PSobject.Properties["saved"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) { #optional property not found $Name = $null } else { $Name = $JsonParameters.PSobject.Properties["name"].value } $PSO = [PSCustomObject]@{ "scope" = ${Scope} "pruneThreshold" = ${PruneThreshold} "prescribedPruneThreshold" = ${PrescribedPruneThreshold} "minNumIdentitiesInPotentialRole" = ${MinNumIdentitiesInPotentialRole} "potentialRoleCount" = ${PotentialRoleCount} "potentialRolesReadyCount" = ${PotentialRolesReadyCount} "type" = ${Type} "emailRecipientId" = ${EmailRecipientId} "identityCount" = ${IdentityCount} "saved" = ${Saved} "name" = ${Name} } return $PSO } } |