Show / Hide Table of Contents

Class ResourcePolicyDailyCycle

Time window specified for daily operations.

Inheritance
System.Object
ResourcePolicyDailyCycle
Implements
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.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class ResourcePolicyDailyCycle : IDirectResponseSchema

Properties

DaysInCycle

Defines a schedule with units measured in months. The value determines how many months pass between the start of each cycle.

Declaration
[JsonProperty("daysInCycle")]
public virtual int? DaysInCycle { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Duration

[Output only] A predetermined duration for the window, automatically chosen to be the smallest possible in the given scenario.

Declaration
[JsonProperty("duration")]
public virtual string Duration { 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

StartTime

Start time of the window. This must be in UTC format that resolves to one of 00:00, 04:00, 08:00, 12:00, 16:00, or 20:00. For example, both 13:00-5 and 08:00 are valid.

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

Implements

IDirectResponseSchema
In This Article
Back to top