Skip to main content

CreateUploadedConfigurationV1Request

Properties

NameTypeDescriptionNotes
databytearrayJSON file containing the objects to be imported.[required]
namestrName that will be assigned to the uploaded configuration file.[required]
}

Example

from sailpoint.configuration_hub.models.create_uploaded_configuration_v1_request import CreateUploadedConfigurationV1Request

create_uploaded_configuration_v1_request = CreateUploadedConfigurationV1Request(
data=bytes(b'blah'),
name=''
)

[Back to top]