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:
38
docs/tools/sdk/python/Reference/V3/Models/RoleCriteriaKey.md
Normal file
38
docs/tools/sdk/python/Reference/V3/Models/RoleCriteriaKey.md
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
id: role-criteria-key
|
||||
title: RoleCriteriaKey
|
||||
pagination_label: RoleCriteriaKey
|
||||
sidebar_label: RoleCriteriaKey
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'RoleCriteriaKey', 'RoleCriteriaKey']
|
||||
slug: /tools/sdk/python/v3/models/role-criteria-key
|
||||
tags: ['SDK', 'Software Development Kit', 'RoleCriteriaKey', 'RoleCriteriaKey']
|
||||
---
|
||||
|
||||
# RoleCriteriaKey
|
||||
|
||||
Refers to a specific Identity attribute, Account attibute, or Entitlement used in Role membership criteria
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**type** | [**RoleCriteriaKeyType**](role-criteria-key-type) | | [required]
|
||||
**var_property** | **str** | The name of the attribute or entitlement to which the associated criteria applies. | [required]
|
||||
**source_id** | **str** | ID of the Source from which an account attribute or entitlement is drawn. Required if type is ACCOUNT or ENTITLEMENT | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.role_criteria_key import RoleCriteriaKey
|
||||
|
||||
role_criteria_key = RoleCriteriaKey(
|
||||
type='ACCOUNT',
|
||||
var_property='attribute.email',
|
||||
source_id='2c9180867427f3a301745aec18211519'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user