mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
---
|
||||
id: violation-owner-assignment-config
|
||||
title: ViolationOwnerAssignmentConfig
|
||||
pagination_label: ViolationOwnerAssignmentConfig
|
||||
sidebar_label: ViolationOwnerAssignmentConfig
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'ViolationOwnerAssignmentConfig', 'ViolationOwnerAssignmentConfig']
|
||||
slug: /tools/sdk/python/v3/models/violation-owner-assignment-config
|
||||
tags: ['SDK', 'Software Development Kit', 'ViolationOwnerAssignmentConfig', 'ViolationOwnerAssignmentConfig']
|
||||
---
|
||||
|
||||
# ViolationOwnerAssignmentConfig
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**assignment_rule** | **Enum** [ 'MANAGER', 'STATIC' ] | Details about the violations owner. MANAGER - identity's manager STATIC - Governance Group or Identity | [optional]
|
||||
**owner_ref** | [**ViolationOwnerAssignmentConfigOwnerRef**](violation-owner-assignment-config-owner-ref) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.violation_owner_assignment_config import ViolationOwnerAssignmentConfig
|
||||
|
||||
violation_owner_assignment_config = ViolationOwnerAssignmentConfig(
|
||||
assignment_rule='MANAGER',
|
||||
owner_ref=sailpoint.v3.models.violation_owner_assignment_config_owner_ref.ViolationOwnerAssignmentConfig_ownerRef(
|
||||
type = 'IDENTITY',
|
||||
id = '2c9180a46faadee4016fb4e018c20639',
|
||||
name = 'Support', )
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user