Show / Hide Table of Contents

Class RolloutPolicy

A rollout policy configuration.

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

Properties

DefaultRolloutTime

An optional RFC3339 timestamp on or after which the update is considered rolled out to any zone that is not explicitly stated.

Declaration
[JsonProperty("defaultRolloutTime")]
public virtual string DefaultRolloutTime { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LocationRolloutPolicies

Location based rollout policies to apply to the resource. Currently only zone names are supported and must be represented as valid URLs, like: zones/us-central1-a. The value expects an RFC3339 timestamp on or after which the update is considered rolled out to the specified location.

Declaration
[JsonProperty("locationRolloutPolicies")]
public virtual IDictionary<string, string> LocationRolloutPolicies { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top