Show / Hide Table of Contents

Class Region

Represents a Region resource. A region is a geographical area where a resource is located. For more information, read Regions and Zones.

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

Properties

CreationTimestamp

[Output Only] Creation timestamp in RFC3339 text format.

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

Deprecated

[Output Only] The deprecation status associated with this region.

Declaration
[JsonProperty("deprecated")]
public virtual DeprecationStatus Deprecated { get; set; }
Property Value
Type Description
DeprecationStatus

Description

[Output Only] Textual description of the resource.

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

Id

[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
System.Nullable<System.UInt64>

Kind

[Output Only] Type of the resource. Always compute#region for regions.

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

Name

[Output Only] Name of the resource.

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

Quotas

[Output Only] Quotas assigned to this region.

Declaration
[JsonProperty("quotas")]
public virtual IList<Quota> Quotas { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Quota>

SelfLink

[Output Only] Server-defined URL for the resource.

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

Status

[Output Only] Status of the region, either UP or DOWN.

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

SupportsPzs

[Output Only] Reserved for future use.

Declaration
[JsonProperty("supportsPzs")]
public virtual bool? SupportsPzs { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Zones

[Output Only] A list of zones available in this region, in the form of resource URLs.

Declaration
[JsonProperty("zones")]
public virtual IList<string> Zones { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top