Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

CreateMigrationRequest

Request to create a new migration.

Properties

Name Type Description Notes
config MigrationConfig Migration configuration
start_immediately bool Start execution immediately after validation [optional] [default to False]

Example

from mixpeek.models.create_migration_request import CreateMigrationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateMigrationRequest from a JSON string
create_migration_request_instance = CreateMigrationRequest.from_json(json)
# print the JSON string representation of the object
print(CreateMigrationRequest.to_json())

# convert the object into a dict
create_migration_request_dict = create_migration_request_instance.to_dict()
# create an instance of CreateMigrationRequest from a dict
create_migration_request_from_dict = CreateMigrationRequest.from_dict(create_migration_request_dict)

[Back to Model list] [Back to API list] [Back to README]