mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
---
|
||||
id: beta-certification-dto
|
||||
title: CertificationDto
|
||||
pagination_label: CertificationDto
|
||||
sidebar_label: CertificationDto
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'CertificationDto', 'BetaCertificationDto']
|
||||
slug: /tools/sdk/python/beta/models/certification-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'CertificationDto', 'BetaCertificationDto']
|
||||
---
|
||||
|
||||
# CertificationDto
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**campaign_ref** | [**CampaignReference**](campaign-reference) | | [required]
|
||||
**phase** | [**CertificationPhase**](certification-phase) | | [required]
|
||||
**due** | **datetime** | The due date of the certification. | [required]
|
||||
**signed** | **datetime** | The date the reviewer signed off on the certification. | [required]
|
||||
**reviewer** | [**Reviewer**](reviewer) | | [required]
|
||||
**reassignment** | [**Reassignment**](reassignment) | | [optional]
|
||||
**has_errors** | **bool** | Indicates it the certification has any errors. | [required]
|
||||
**error_message** | **str** | A message indicating what the error is. | [optional]
|
||||
**completed** | **bool** | Indicates if all certification decisions have been made. | [required]
|
||||
**decisions_made** | **int** | The number of approve/revoke/acknowledge decisions that have been made by the reviewer. | [required]
|
||||
**decisions_total** | **int** | The total number of approve/revoke/acknowledge decisions for the certification. | [required]
|
||||
**entities_completed** | **int** | The number of entities (identities, access profiles, roles, etc.) for which all decisions have been made and are complete. | [required]
|
||||
**entities_total** | **int** | The total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete. | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.certification_dto import CertificationDto
|
||||
|
||||
certification_dto = CertificationDto(
|
||||
campaign_ref=sailpoint.beta.models.campaign_reference.CampaignReference(
|
||||
id = 'ef38f94347e94562b5bb8424a56397d8',
|
||||
name = 'Campaign Name',
|
||||
type = 'CAMPAIGN',
|
||||
campaign_type = 'MANAGER',
|
||||
description = 'A description of the campaign',
|
||||
correlated_status = 'CORRELATED',
|
||||
mandatory_comment_requirement = 'NO_DECISIONS', ),
|
||||
phase='ACTIVE',
|
||||
due='2018-10-19T13:49:37.385Z',
|
||||
signed='2018-10-19T13:49:37.385Z',
|
||||
reviewer=sailpoint.beta.models.reviewer.Reviewer(
|
||||
type = 'IDENTITY',
|
||||
id = '2c7180a46faadee4016fb4e018c20642',
|
||||
name = 'Michael Michaels',
|
||||
email = 'reviewer@test.com', ),
|
||||
reassignment=sailpoint.beta.models.reassignment.Reassignment(
|
||||
from = sailpoint.beta.models.certification_reference.CertificationReference(),
|
||||
comment = 'Please review', ),
|
||||
has_errors=False,
|
||||
error_message='The certification has an error',
|
||||
completed=False,
|
||||
decisions_made=20,
|
||||
decisions_total=40,
|
||||
entities_completed=5,
|
||||
entities_total=10
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user