AccessModelMetadata
Metadata that describes an access item
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | Unique identifier for the metadata type | [optional] |
| name | str | Human readable name of the metadata type | [optional] |
| multiselect | bool | Allows selecting multiple values | [optional] [default to False] |
| status | str | The state of the metadata item | [optional] |
| type | str | The type of the metadata item | [optional] |
| object_types | []str | The types of objects | [optional] |
| description | str | Describes the metadata item | [optional] |
| values | []AccessModelMetadataValuesInner | The value to assign to the metadata item | [optional] |
| } |
Example
from sailpoint.v2025.models.access_model_metadata import AccessModelMetadata
access_model_metadata = AccessModelMetadata(
key='iscCsp',
name='CSP',
multiselect=True,
status='active',
type='governance',
object_types=[general],
description='Indicates the type of deployment environment of an access item.',
values=[
sailpoint.v2025.models.access_model_metadata_values_inner.AccessModelMetadata_values_inner(
value = 'development',
name = 'Development',
status = 'active', )
]
)