Image Status
This API is in BETA and is subject to change without notice.
Returns the deployment status of an image <imageid>
/cfp/v2/project/<accountserviceid>/image/<imageid>/status?detail=[true|false]
Method | Content Type |
---|---|
GET | application/x-www-form-urlencoded |
Variable | Description | Optional |
---|---|---|
accountserviceid | The <accountserviceid> which grants permission to perform image operations |
no |
imageid | The <imageid> to the image |
no |
detail | true returns fleet and region progress detail, false (the default) doesn’t. | yes |
Example Response
{
"fleets": {
<fleetid>: {
"regions": {
<regionid>: {
"name" : <region_name>,
"pending_machines" : <pending_machines>,
"completed_machines" : <completed_machines>
},
},
"pending_machines" : <pending_machines>,
"completed_machines" : <completed_machines>
},
...
]
"pending_machines" : <pending_machines>,
"completed_machines" : <completed_machines>
}