Skip to main content

AccessModelMetadata

Metadata that describes an access item

Properties

NameTypeDescriptionNotes
keystrUnique identifier for the metadata type[optional]
namestrHuman readable name of the metadata type[optional]
multiselectboolAllows selecting multiple values[optional] [default to False]
statusstrThe state of the metadata item[optional]
typestrThe type of the metadata item[optional]
object_types[]strThe types of objects[optional]
descriptionstrDescribes the metadata item[optional]
values[]AccessModelMetadataValuesInnerThe value to assign to the metadata item[optional]
}

Example

from sailpoint.v2024.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.v2024.models.access_model_metadata_values_inner.AccessModelMetadata_values_inner(
value = 'development',
name = 'Development',
status = 'active', )
]
)

[Back to top]