Skip to main content

AccessProfileMetadataBulkUpdateByIdRequestValuesInner

Properties

NameTypeDescriptionNotes
attributestrThe technical name of the metadata attribute.[required]
values[]strThe values of the attribute to be updated.[required]
object_typestrThe type of the metadata attribute. Set to custom for custom metadata attributes, which require a suite license.[optional]
}

Example

from sailpoint.access_profiles.models.access_profile_metadata_bulk_update_by_id_request_values_inner import AccessProfileMetadataBulkUpdateByIdRequestValuesInner

access_profile_metadata_bulk_update_by_id_request_values_inner = AccessProfileMetadataBulkUpdateByIdRequestValuesInner(
attribute='iscFederalClassifications',
values=["secret"],
object_type='custom'
)

[Back to top]