Show / Hide Table of Contents

Class Rollout

Rollout resource. A Rollout is a specific instance of a RolloutPlan. It represents a single execution of a strategy to roll out a specific resource. It also provides APIs to interact with the rollout.

Inheritance
object
Rollout
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Compute.alpha.Data
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class Rollout : IDirectResponseSchema

Properties

CancellationTime

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

Declaration
[JsonProperty("cancellationTime")]
public virtual string CancellationTime { get; set; }
Property Value
Type Description
string

CompletionTime

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

Declaration
[JsonProperty("completionTime")]
public virtual string CompletionTime { get; set; }
Property Value
Type Description
string

CreationTimestamp

Output only. [Output Only] Creation timestamp inRFC3339 text format.

Declaration
[JsonProperty("creationTimestamp")]
public virtual string CreationTimestamp { get; set; }
Property Value
Type Description
string

CurrentWaveNumber

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

Declaration
[JsonProperty("currentWaveNumber")]
public virtual long? CurrentWaveNumber { get; set; }
Property Value
Type Description
long?

Description

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

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
string

ETag

Output only. etag of the Rollout Ex. abc1234

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
string

Id

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

Declaration
[JsonProperty("id")]
public virtual ulong? Id { get; set; }
Property Value
Type Description
ulong?

Kind

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

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
string

Name

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply withRFC1035. 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.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

RolloutEntity

Required. The resource being rolled out.

Declaration
[JsonProperty("rolloutEntity")]
public virtual RolloutRolloutEntity RolloutEntity { get; set; }
Property Value
Type Description
RolloutRolloutEntity

RolloutPlan

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

Declaration
[JsonProperty("rolloutPlan")]
public virtual string RolloutPlan { get; set; }
Property Value
Type Description
string

SelfLink

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

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { get; set; }
Property Value
Type Description
string

SelfLinkWithId

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

Declaration
[JsonProperty("selfLinkWithId")]
public virtual string SelfLinkWithId { get; set; }
Property Value
Type Description
string

State

Output only. The current state of the Rollout.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
string

WaveDetails

Output only. Details about each wave of the rollout.

Declaration
[JsonProperty("waveDetails")]
public virtual IList<RolloutWaveDetails> WaveDetails { get; set; }
Property Value
Type Description
IList<RolloutWaveDetails>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX