Show / Hide Table of Contents

Class AcceleratorConfig

A specification of the type and number of accelerator cards attached to the instance.

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

Properties

AcceleratorCount

The number of the guest accelerator cards exposed to this instance.

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

AcceleratorType

Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.

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