Class AdvancedMachineFeatures
Specifies options for controlling advanced machine features. Options that would traditionally be configured in a BIOS belong here. Features that require operating system support may have corresponding entries in the GuestOsFeatures of an Image (e.g., whether or not the OS in the Image supports nested virtualization being enabled or disabled).
Implements
Inherited Members
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class AdvancedMachineFeatures : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EnableNestedVirtualization
Whether to enable nested virtualization or not (default is false).
Declaration
[JsonProperty("enableNestedVirtualization")]
public virtual bool? EnableNestedVirtualization { get; set; }
Property Value
Type | Description |
---|---|
bool? |
EnableUefiNetworking
Whether to enable UEFI networking for instance creation.
Declaration
[JsonProperty("enableUefiNetworking")]
public virtual bool? EnableUefiNetworking { get; set; }
Property Value
Type | Description |
---|---|
bool? |
PerformanceMonitoringUnit
Type of Performance Monitoring Unit requested on instance.
Declaration
[JsonProperty("performanceMonitoringUnit")]
public virtual string PerformanceMonitoringUnit { get; set; }
Property Value
Type | Description |
---|---|
string |
ThreadsPerCore
The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
Declaration
[JsonProperty("threadsPerCore")]
public virtual int? ThreadsPerCore { get; set; }
Property Value
Type | Description |
---|---|
int? |
TurboMode
Turbo frequency mode to use for the instance. Supported modes include: * ALL_CORE_MAX Using empty string or not setting this field will use the platform-specific default turbo mode.
Declaration
[JsonProperty("turboMode")]
public virtual string TurboMode { get; set; }
Property Value
Type | Description |
---|---|
string |
VisibleCoreCount
The number of physical cores to expose to an instance. Multiply by the number of threads per core to compute the total number of virtual CPUs to expose to the instance. If unset, the number of cores is inferred from the instance's nominal CPU count and the underlying platform's SMT width.
Declaration
[JsonProperty("visibleCoreCount")]
public virtual int? VisibleCoreCount { get; set; }
Property Value
Type | Description |
---|---|
int? |