Show / Hide Table of Contents

Class Tier

A Google Cloud SQL service tier resource.

Inheritance
System.Object
Tier
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.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class Tier : IDirectResponseSchema

Properties

DiskQuota

The maximum disk size of this tier in bytes.

Declaration
[JsonProperty("DiskQuota")]
public virtual long? DiskQuota { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

Kind

This is always sql#tier.

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

RAM

The maximum RAM usage of this tier in bytes.

Declaration
[JsonProperty("RAM")]
public virtual long? RAM { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Region

The applicable regions for this tier.

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

TierValue

An identifier for the machine type, for example, db-custom-1-3840. For related information, see Pricing.

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

Implements

IDirectResponseSchema
In This Article
Back to top