REST Resource: rollouts

Resource: RolloutsGetResponse

JSON representation
{
  "resource": {
    "kind": string,
    "id": string,
    "creationTimestamp": string,
    "name": string,
    "description": string,
    "selfLink": string,
    "selfLinkWithId": string,
    "rolloutEntity": {

      // Union field entity can be only one of the following:
      "orchestratedEntity": {
        "orchestrationAction": string,
        "orchestrationSource": string,
        "conflictBehavior": string
      }
      // End of list of possible types for union field entity.
    },
    "rolloutPlan": string,
    "state": enum,
    "etag": string,
    "currentWaveNumber": string,
    "waveDetails": [
      {
        "waveDisplayName": string,
        "waveNumber": string,

        // Union field details can be only one of the following:
        "orchestratedWaveDetails": {
          "estimatedTotalResourcesCount": string,
          "completedResourcesCount": string,
          "failedResourcesCount": string,
          "failedLocations": [
            string
          ]
        }
        // End of list of possible types for union field details.
      }
    ],
    "completionTime": string,
    "cancellationTime": string
  },
  "etag": string
}
Fields
resource

object

resource.kind

string

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

resource.id

string (uint64 format)

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

resource.creationTimestamp

string

[Output Only] Creation timestamp in RFC3339 text format.

resource.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.

resource.description

string

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

resource.selfLink

string

[Output Only] Server-defined fully-qualified URL for this resource.

resource.selfLinkWithId

string

[Output Only] Server-defined URL for this resource's resource id.

resource.rolloutEntity

object

Required. The resource being rolled out.

resource.rolloutEntity.orchestratedEntity

object

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

resource.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.

resource.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

resource.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.

resource.rolloutPlan

string

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

resource.state

enum

Output only. The current state of the Rollout.

resource.etag

string

Output only. etag of the Rollout Ex. abc1234

resource.currentWaveNumber

string (int64 format)

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

resource.waveDetails[]

object

Output only. Details about each wave of the rollout.

resource.waveDetails[].orchestratedWaveDetails

object

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

resource.waveDetails[].orchestratedWaveDetails.estimatedTotalResourcesCount

string (int64 format)

Output only. Estimated total count of resources.

resource.waveDetails[].orchestratedWaveDetails.completedResourcesCount

string (int64 format)

Output only. Resource completed so far.

resource.waveDetails[].orchestratedWaveDetails.failedResourcesCount

string (int64 format)

Output only. Resources failed.

resource.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.

resource.waveDetails[].waveDisplayName

string

Output only. Wave name. Ex. wave1

resource.waveDetails[].waveNumber

string (int64 format)

Output only. System generated number for the wave.

resource.completionTime

string

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

resource.cancellationTime

string

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

etag

string

end_interface: MixerGetResponseWithEtagBuilder

Methods

cancel

Cancels a Rollout.

delete

Deletes a Rollout.

get

Gets details of a single project-scoped Rollout.

list

Lists Rollouts in a given project and location.