Skip to main content

CreateUploadedConfigurationRequest

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.v3.models.create_uploaded_configuration_request import CreateUploadedConfigurationRequest

create_uploaded_configuration_request = CreateUploadedConfigurationRequest(
data=bytes(b'blah'),
name=''
)

[Back to top]