API Description | API Path |
---|---|
Return information of all migration unit groupsReturn information of all migration unit groups in the migration plan. If request parameter summary is set to true, then only count of migration units will be returned, migration units list will be empty. If request parameter component type is specified, then all migration unit groups for that component will be returned. |
GET /api/v1/migration/migration-unit-groups
|
Create a groupCreate a group of migration units. |
POST /api/v1/migration/migration-unit-groups
|
Get migration status for migration unit groupsGet migration status for migration unit groups |
GET /api/v1/migration/migration-unit-groups-status
|
Delete the migration unit groupDelete the specified group. NOTE - A group can be deleted only if it is empty. If user tries to delete a group containing one or more migration units, the operation will fail and an error will be returned. |
DELETE /api/v1/migration/migration-unit-groups/<group-id>
|
Return migration unit group informationReturns information about a specific migration unit group in the migration plan. If request parameter summary is set to true, then only count of migration units will be returned, migration units list will be empty. |
GET /api/v1/migration/migration-unit-groups/<group-id>
|
Add migration units to specified migration unit groupAdd migration units to specified migration unit group. The migration units will be added at the end of the migration unit list. |
POST /api/v1/migration/migration-unit-groups/<group-id>?action=add_migration_units
|
Reorder migration unit groupReorder an migration unit group by placing it before/after the specified migration unit group. |
POST /api/v1/migration/migration-unit-groups/<group-id>?action=reorder
|
Update the migration unit groupUpdate the specified migration unit group. Removal of migration units from the group using this is not allowed. An error will be returned in that case. |
PUT /api/v1/migration/migration-unit-groups/<group-id>
|
Reorder an migration unit within the migration unit groupReorder an migration unit within the migration unit group by placing it before/after the specified migration unit |
POST /api/v1/migration/migration-unit-groups/<group-id>/migration-unit/<migration-unit-id>?action=reorder
|
Get migration status for groupGet migration status for migration units in the specified group. User can specify whether to show only the migration units with errors. |
GET /api/v1/migration/migration-unit-groups/<group-id>/status
|
Return aggregate information of all migration unit groupsReturn information of all migration unit groups in the migration plan. If request parameter summary is set to true, then only count of migration units will be returned, migration units list will be empty. If request parameter component type is specified, then all migration unit groups for that component will be returned. |
GET /api/v1/migration/migration-unit-groups/aggregate-info
|