Show / Hide Table of Contents

Class MachineType.AcceleratorsData

[Output Only] A list of accelerator configurations assigned to this machine type.

Inheritance
System.Object
MachineType.AcceleratorsData
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 AcceleratorsData

Properties

GuestAcceleratorCount

Number of accelerator cards exposed to the guest.

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

GuestAcceleratorType

The accelerator type resource name, not a full URL, e.g. 'nvidia-tesla-k80'.

Declaration
[JsonProperty("guestAcceleratorType")]
public virtual string GuestAcceleratorType { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top