Show / Hide Table of Contents

Class Quota

A quotas entry.

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

Properties

ETag

The ETag of the item.

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

Limit

[Output Only] Quota limit for this metric.

Declaration
[JsonProperty("limit")]
public virtual double? Limit { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Metric

[Output Only] Name of the quota metric.

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

Owner

[Output Only] Owning resource. This is the resource on which this quota is applied.

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

Usage

[Output Only] Current usage of this metric.

Declaration
[JsonProperty("usage")]
public virtual double? Usage { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
In This Article
Back to top