Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/RoleMiningPotentialRole.md
2025-02-03 22:09:17 +00:00

3.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-role-mining-potential-role RoleMiningPotentialRole RoleMiningPotentialRole RoleMiningPotentialRole powershellsdk
powershell
PowerShell
sdk
RoleMiningPotentialRole
V2024RoleMiningPotentialRole
/tools/sdk/powershell/v2024/models/role-mining-potential-role
SDK
Software Development Kit
RoleMiningPotentialRole
V2024RoleMiningPotentialRole

RoleMiningPotentialRole

Properties

Name Type Description Notes
CreatedBy RoleMiningSessionResponseCreatedBy [optional]
Density Int32 The density of a potential role. [optional]
Description String The description of a potential role. [optional]
EntitlementCount Int32 The number of entitlements in a potential role. [optional]
ExcludedEntitlements []String The list of entitlement ids to be excluded. [optional]
Freshness Int32 The freshness of a potential role. [optional]
IdentityCount Int32 The number of identities in a potential role. [optional]
IdentityDistribution []RoleMiningIdentityDistribution Identity attribute distribution. [optional]
IdentityIds []String The list of ids in a potential role. [optional]
Name String Name of the potential role. [optional]
ProvisionState RoleMiningPotentialRoleProvisionState [optional]
Quality Int32 The quality of a potential role. [optional]
RoleId String The roleId of a potential role. [optional]
Saved Boolean The potential role's saved status. [optional]
Session RoleMiningSessionParametersDto [optional]
Type RoleMiningRoleType [optional]
Id String Id of the potential role [optional]
CreatedDate System.DateTime The date-time when this potential role was created. [optional]
ModifiedDate System.DateTime The date-time when this potential role was modified. [optional]

Examples

  • Prepare the resource
$RoleMiningPotentialRole = Initialize-PSSailpoint.V2024RoleMiningPotentialRole  -CreatedBy null `
 -Density 75 `
 -Description Potential Role for Accounting dept `
 -EntitlementCount 25 `
 -ExcludedEntitlements [07a0b4e2, 13b4e2a0] `
 -Freshness 75 `
 -IdentityCount 25 `
 -IdentityDistribution null `
 -IdentityIds [07a0b4e2, 13b4e2a0] `
 -Name Saved Potential Role - 07/10 `
 -ProvisionState null `
 -Quality 100 `
 -RoleId 07a0b4e2-7a76-44fa-bd0b-c64654b66519 `
 -Saved true `
 -Session null `
 -Type null `
 -Id e0cc5d7d-bf7f-4f81-b2af-8885b09d9923 `
 -CreatedDate null `
 -ModifiedDate null
  • Convert the resource to JSON
$RoleMiningPotentialRole | ConvertTo-JSON

[Back to top]