Skip to main content

Objectmappingbulkcreaterequest

Properties

NameTypeDescriptionNotes
new_objects_mappings[]Objectmappingrequest[required]
}

Example

from sailpoint.configuration_hub.models.objectmappingbulkcreaterequest import Objectmappingbulkcreaterequest

objectmappingbulkcreaterequest = Objectmappingbulkcreaterequest(
new_objects_mappings=[
sailpoint.configuration_hub.models.object_mapping_request.Object Mapping Request(
object_type = 'IDENTITY',
json_path = '$.name',
source_value = 'My Governance Group Name',
target_value = 'My New Governance Group Name',
enabled = False, )
]
)

[Back to top]