Skip to main content

ObjectMappingBulkCreateRequest

Properties

NameTypeDescriptionNotes
new_objects_mappings[]ObjectMappingRequest[required]
}

Example

from sailpoint.v2024.models.object_mapping_bulk_create_request import ObjectMappingBulkCreateRequest

object_mapping_bulk_create_request = ObjectMappingBulkCreateRequest(
new_objects_mappings=[
sailpoint.v2024.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]