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

3.2 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
identity-cert-decision-summary IdentityCertDecisionSummary IdentityCertDecisionSummary IdentityCertDecisionSummary powershellsdk
powershell
PowerShell
sdk
IdentityCertDecisionSummary
IdentityCertDecisionSummary
/tools/sdk/powershell/v3/models/identity-cert-decision-summary
SDK
Software Development Kit
IdentityCertDecisionSummary
IdentityCertDecisionSummary

IdentityCertDecisionSummary

Properties

Name Type Description Notes
EntitlementDecisionsMade Int32 Number of entitlement decisions that have been made [optional]
AccessProfileDecisionsMade Int32 Number of access profile decisions that have been made [optional]
RoleDecisionsMade Int32 Number of role decisions that have been made [optional]
AccountDecisionsMade Int32 Number of account decisions that have been made [optional]
EntitlementDecisionsTotal Int32 The total number of entitlement decisions on the certification, both complete and incomplete [optional]
AccessProfileDecisionsTotal Int32 The total number of access profile decisions on the certification, both complete and incomplete [optional]
RoleDecisionsTotal Int32 The total number of role decisions on the certification, both complete and incomplete [optional]
AccountDecisionsTotal Int32 The total number of account decisions on the certification, both complete and incomplete [optional]
EntitlementsApproved Int32 The number of entitlement decisions that have been made which were approved [optional]
EntitlementsRevoked Int32 The number of entitlement decisions that have been made which were revoked [optional]
AccessProfilesApproved Int32 The number of access profile decisions that have been made which were approved [optional]
AccessProfilesRevoked Int32 The number of access profile decisions that have been made which were revoked [optional]
RolesApproved Int32 The number of role decisions that have been made which were approved [optional]
RolesRevoked Int32 The number of role decisions that have been made which were revoked [optional]
AccountsApproved Int32 The number of account decisions that have been made which were approved [optional]
AccountsRevoked Int32 The number of account decisions that have been made which were revoked [optional]

Examples

  • Prepare the resource
$IdentityCertDecisionSummary = Initialize-PSSailpoint.V3IdentityCertDecisionSummary  -EntitlementDecisionsMade 3 `
 -AccessProfileDecisionsMade 5 `
 -RoleDecisionsMade 2 `
 -AccountDecisionsMade 4 `
 -EntitlementDecisionsTotal 6 `
 -AccessProfileDecisionsTotal 10 `
 -RoleDecisionsTotal 4 `
 -AccountDecisionsTotal 8 `
 -EntitlementsApproved 2 `
 -EntitlementsRevoked 1 `
 -AccessProfilesApproved 3 `
 -AccessProfilesRevoked 2 `
 -RolesApproved 2 `
 -RolesRevoked 0 `
 -AccountsApproved 1 `
 -AccountsRevoked 3
  • Convert the resource to JSON
$IdentityCertDecisionSummary | ConvertTo-JSON

[Back to top]