Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.53 KB

File metadata and controls

36 lines (27 loc) · 1.53 KB

MigrationProgress

Overall progress tracking for a migration.

Properties

Name Type Description Notes
overall_status MigrationStatus Overall migration status
overall_progress_percent float Overall progress % [optional] [default to 0]
current_stage MigrationStage Currently executing stage [optional]
stages List[StageProgress] Progress for each stage [optional]
resources List[ResourceProgress] Progress for each resource [optional]
started_at datetime Migration start time [optional]
estimated_completion datetime Estimated completion time [optional]

Example

from mixpeek.models.migration_progress import MigrationProgress

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

# convert the object into a dict
migration_progress_dict = migration_progress_instance.to_dict()
# create an instance of MigrationProgress from a dict
migration_progress_from_dict = MigrationProgress.from_dict(migration_progress_dict)

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