API Description | API Path |
---|---|
Upgrade the upgrade coordinator.Upgrade the upgrade coordinator module itself. This call is invoked after user uploads an upgrade bundle. Once this call is invoked, upgrade coordinator stops and gets restarted and target version upgrade coordinator module comes up after restart. |
POST /api/v1/upgrade?action=upgrade_uc
|
Upload upgrade bundleUpload the upgrade bundle. The call returns after upload is initiated. User needs to check upload status periodically by retrieving upgrade bundle upload status to find out if the upload is completed. This API is deprecated, please use /upgrade/bundles?action=upload API to upload the upgrade bundle. |
POST /api/v1/upgrade/bundle?action=upload
(Deprecated)
|
Upload upgrade bundleUpload the upgrade bundle. This call returns after upload is completed. You can check bundle processing status periodically by retrieving upgrade bundle upload status to find out if the upload and processing is completed. |
POST /api/v1/upgrade/bundles?action=upload
|
Fetch upgrade bundle from given urlFetches the upgrade bundle from url. The call returns after fetch is initiated. Check status by periodically retrieving upgrade bundle upload status using GET /upgrade/bundles/ The upload is complete when the status is SUCCESS. |
POST /api/v1/upgrade/bundles
|
Get uploaded upgrade bundle informationGet uploaded upgrade bundle information |
GET /api/v1/upgrade/bundles/<bundle-id>
|
Cancel upgrade bundle uploadCancel upload of upgrade bundle. This API works only when bundle upload is in-progress and will not work during post-processing of upgrade bundle. If bundle upload is in-progress, then the API call returns http OK response after cancelling the upload and deleting partially uploaded bundle. |
POST /api/v1/upgrade/bundles/<bundle-id>?action=cancel_upload
|
Get uploaded upgrade bundle upload statusGet uploaded upgrade bundle upload status |
GET /api/v1/upgrade/bundles/<bundle-id>/upload-status
|