Skip to main content

IdentityCertDecisionSummary

Properties

NameTypeDescriptionNotes
entitlement_decisions_madeintNumber of entitlement decisions that have been made[optional]
access_profile_decisions_madeintNumber of access profile decisions that have been made[optional]
role_decisions_madeintNumber of role decisions that have been made[optional]
account_decisions_madeintNumber of account decisions that have been made[optional]
entitlement_decisions_totalintThe total number of entitlement decisions on the certification, both complete and incomplete[optional]
access_profile_decisions_totalintThe total number of access profile decisions on the certification, both complete and incomplete[optional]
role_decisions_totalintThe total number of role decisions on the certification, both complete and incomplete[optional]
account_decisions_totalintThe total number of account decisions on the certification, both complete and incomplete[optional]
entitlements_approvedintThe number of entitlement decisions that have been made which were approved[optional]
entitlements_revokedintThe number of entitlement decisions that have been made which were revoked[optional]
access_profiles_approvedintThe number of access profile decisions that have been made which were approved[optional]
access_profiles_revokedintThe number of access profile decisions that have been made which were revoked[optional]
roles_approvedintThe number of role decisions that have been made which were approved[optional]
roles_revokedintThe number of role decisions that have been made which were revoked[optional]
accounts_approvedintThe number of account decisions that have been made which were approved[optional]
accounts_revokedintThe number of account decisions that have been made which were revoked[optional]
}

Example

from sailpoint.v3.models.identity_cert_decision_summary import IdentityCertDecisionSummary

identity_cert_decision_summary = IdentityCertDecisionSummary(
entitlement_decisions_made=3,
access_profile_decisions_made=5,
role_decisions_made=2,
account_decisions_made=4,
entitlement_decisions_total=6,
access_profile_decisions_total=10,
role_decisions_total=4,
account_decisions_total=8,
entitlements_approved=2,
entitlements_revoked=1,
access_profiles_approved=3,
access_profiles_revoked=2,
roles_approved=2,
roles_revoked=0,
accounts_approved=1,
accounts_revoked=3
)

[Back to top]