Method: rollouts.get

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

string

Project ID for this request.

rollout

string

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

string

[Output Only] Type of the resource. Always compute#rollout for rollouts.

id

string (uint64 format)

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

creationTimestamp

string

[Output Only] Creation timestamp in RFC3339 text format.

name

string

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 [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

description

string

An optional description of this resource. Provide this property when you create the resource.

rolloutEntity

object

Required. The resource being rolled out.

rolloutEntity.orchestratedEntity

object

Optional. Entity details for products using the Orchestrated Integration model.

rolloutEntity.orchestratedEntity.orchestrationAction

string

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

string

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: //.googleapis.com/projects//locations/global// e.g. //osconfig.googleapis.com/projects/1/locations/global/policyOrchestrators/po1

rolloutEntity.orchestratedEntity.conflictBehavior

string

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

string

Required. Rollout Plan used to model the Rollout. Ex. compute.googleapis.com/v1/projects/1234/rolloutPlans/rp1

state

enum

Output only. The current state of the Rollout.

etag

string

Output only. etag of the Rollout Ex. abc1234

currentWaveNumber

string (int64 format)

Output only. The number of the currently running wave. Ex. 1

waveDetails[]

object

Output only. Details about each wave of the rollout.

waveDetails[].orchestratedWaveDetails

object

Output only. Additional details of the wave for products using the Orchestrated Integration model.

waveDetails[].orchestratedWaveDetails.estimatedTotalResourcesCount

string (int64 format)

Output only. Estimated total count of resources.

waveDetails[].orchestratedWaveDetails.completedResourcesCount

string (int64 format)

Output only. Resource completed so far.

waveDetails[].orchestratedWaveDetails.failedResourcesCount

string (int64 format)

Output only. Resources failed.

waveDetails[].orchestratedWaveDetails.failedLocations[]

string

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

string

Output only. Wave name. Ex. wave1

waveDetails[].waveNumber

string (int64 format)

Output only. System generated number for the wave.

completionTime

string

Output only. The timestamp at which the Rollout was completed.

cancellationTime

string

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.readonly
  • https://www.googleapis.com/auth/compute
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.