Show / Hide Table of Contents

Class LocalDisk

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

Properties

DiskCount

Specifies the number of such disks.

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

DiskSizeGb

Specifies the size of the disk in base-2 GB.

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

DiskType

Specifies the desired disk type on the node. This disk type must be a local storage type (e.g.: local-ssd). Note that for nodeTemplates, this should be the name of the disk type and not its URL.

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

Implements

IDirectResponseSchema
In This Article
Back to top