Gets details of a single project-scoped Rollout.
HTTP request
GET https://compute.googleapis.com/compute/beta/projects/{project}/global/rollouts/{rollout}
The URL uses gRPC Transcoding syntax. To know more about valid error responses that can be thrown by this HTTP request, please refer to the service error catalog
Path parameters
| Parameters | |
|---|---|
project |
Project ID for this request. |
rollout |
Name of the persistent rollout to return. |
Request body
The request body must be empty.
Response body
Represent a Rollout resource.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{ "kind": string, "id": string, "creationTimestamp": string, "name": string, "description": string, "selfLink": string, "selfLinkWithId": string, "rolloutEntity": { "orchestratedEntity": { "orchestrationAction": string, "orchestrationSource": string, "conflictBehavior": string } }, "rolloutPlan": string, "state": enum, "etag": string, "currentWaveNumber": string, "waveDetails": [ { "orchestratedWaveDetails": { "estimatedTotalResourcesCount": string, "completedResourcesCount": string, "failedResourcesCount": string, "failedLocations": [ string ] }, "waveDisplayName": string, "waveNumber": string } ], "completionTime": string, "cancellationTime": string } |
| Fields | |
|---|---|
kind |
[Output Only] Type of the resource. Always |
id |
[Output Only] The unique identifier for the resource. This identifier is defined by the server. |
creationTimestamp |
[Output Only] Creation timestamp in RFC3339 text format. |
name |
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression |
description |
An optional description of this resource. Provide this property when you create the resource. |
selfLink |
[Output Only] Server-defined fully-qualified URL for this resource. |
selfLinkWithId |
[Output Only] Server-defined URL for this resource's resource id. |
rolloutEntity |
Required. The resource being rolled out. |
rolloutEntity.orchestratedEntity |
Optional. Entity details for products using the Orchestrated Integration model. |
rolloutEntity.orchestratedEntity.orchestrationAction |
Required. Orchestration action during the Rollout. It can be one of the following values: 1) "update": Resources will be updated by the rollout. 2) "delete": Resources will be deleted by the rollout. |
rolloutEntity.orchestratedEntity.orchestrationSource |
Required. Fully qualified resource name of the resource which contains the source of truth of the configuration being rolled out across locations/projects. For example, in the case of a global Rollout which is applied across regions, this contains the name of the global resource created by the user which contains a payload for a resource that is orchestrated across regions. This follows the following format: // |
rolloutEntity.orchestratedEntity.conflictBehavior |
Required. Specifies the behavior of the Rollout if an out of band update is detected in a project during a Rollout. It can be one of the following values: 1) overwrite : Overwrite the local value with the rollout value. 2) no_overwrite : Do not overwrite the local value with the rollout value. |
rolloutPlan |
Required. Rollout Plan used to model the Rollout. Ex. compute.googleapis.com/v1/projects/1234/rolloutPlans/rp1 |
state |
Output only. The current state of the Rollout. |
etag |
Output only. etag of the Rollout Ex. abc1234 |
currentWaveNumber |
Output only. The number of the currently running wave. Ex. 1 |
waveDetails[] |
Output only. Details about each wave of the rollout. |
waveDetails[].orchestratedWaveDetails |
Output only. Additional details of the wave for products using the Orchestrated Integration model. |
waveDetails[].orchestratedWaveDetails.estimatedTotalResourcesCount |
Output only. Estimated total count of resources. |
waveDetails[].orchestratedWaveDetails.completedResourcesCount |
Output only. Resource completed so far. |
waveDetails[].orchestratedWaveDetails.failedResourcesCount |
Output only. Resources failed. |
waveDetails[].orchestratedWaveDetails.failedLocations[] |
Output only. Locations that failed during orchestration, and ProgressiveRollout stopped retrying. There may be some successful resources rolled out in the wave as the location may have failed later in the Rollout. |
waveDetails[].waveDisplayName |
Output only. Wave name. Ex. wave1 |
waveDetails[].waveNumber |
Output only. System generated number for the wave. |
completionTime |
Output only. The timestamp at which the Rollout was completed. |
cancellationTime |
Output only. The timestamp at which the Rollout was cancelled. |
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/compute.readonlyhttps://www.googleapis.com/auth/computehttps://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.