Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/RoleMiningSessionScope.md
2025-01-28 13:29:29 -05:00

1.7 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-session-scope RoleMiningSessionScope RoleMiningSessionScope RoleMiningSessionScope powershellsdk
powershell
PowerShell
sdk
RoleMiningSessionScope
V2024RoleMiningSessionScope
/tools/sdk/powershell/v2024/models/role-mining-session-scope
SDK
Software Development Kit
RoleMiningSessionScope
V2024RoleMiningSessionScope

RoleMiningSessionScope

Properties

Name Type Description Notes
IdentityIds Pointer to []String The list of identities for this role mining session. [optional]
Criteria Pointer to String The ""search"" criteria that produces the list of identities for this role mining session. [optional]
AttributeFilterCriteria Pointer to [[]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 The filter criteria for this role mining session. [optional]

Examples

  • Prepare the resource
$RoleMiningSessionScope = Initialize-PSSailpoint.V2024RoleMiningSessionScope  -IdentityIds [2c918090761a5aac0176215c46a62d58, 2c918090761a5aac01722015c46a62d42] `
 -Criteria source.name:DataScienceDataset `
 -AttributeFilterCriteria {displayName={untranslated=Location: Miami}, ariaLabel={untranslated=Location: Miami}, data={displayName={translateKey=IDN.IDENTITY_ATTRIBUTES.LOCATION}, name=location, operator=EQUALS, values=[Miami]}}
  • Convert the resource to JSON
$RoleMiningSessionScope | ConvertTo-JSON

[Back to top]