Show / Hide Table of Contents

Class UpcomingMaintenance

Upcoming Maintenance notification information. TODO(b/196881882) Deprecate this proto once it's fully migrated to be under proto ResourceStatus.UpcomingMaintenance.

Inheritance
System.Object
UpcomingMaintenance
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 UpcomingMaintenance : IDirectResponseSchema

Properties

Date

[Output Only] The date when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use start_time_window instead.

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

StartTimeWindow

[Output Only] The start time window of the maintenance disruption.

Declaration
[JsonProperty("startTimeWindow")]
public virtual UpcomingMaintenanceTimeWindow StartTimeWindow { get; set; }
Property Value
Type Description
UpcomingMaintenanceTimeWindow

Time

[Output Only] The time when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use start_time_window instead.

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

Type

Defines the type of maintenance.

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

Implements

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