Show / Hide Table of Contents

Class InstanceConsumptionInfo

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

Properties

ETag

The ETag of the item.

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

GuestCpus

The number of virtual CPUs that are available to the instance.

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

LocalSsdGb

The amount of local SSD storage available to the instance, defined in GiB.

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

MemoryMb

The amount of physical memory available to the instance, defined in MiB.

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

MinNodeCpus

The minimal guaranteed number of virtual CPUs that are reserved.

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

Implements

IDirectResponseSchema
In This Article
Back to top