Package com.google.cloud.compute.v1
Interface AdvancedMachineFeaturesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AdvancedMachineFeatures
,AdvancedMachineFeatures.Builder
public interface AdvancedMachineFeaturesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getEnableNestedVirtualization()
Whether to enable nested virtualization or not (default is false).boolean
getEnableUefiNetworking()
Whether to enable UEFI networking for instance creation.int
getThreadsPerCore()
The number of threads per physical core.int
getVisibleCoreCount()
The number of physical cores to expose to an instance.boolean
hasEnableNestedVirtualization()
Whether to enable nested virtualization or not (default is false).boolean
hasEnableUefiNetworking()
Whether to enable UEFI networking for instance creation.boolean
hasThreadsPerCore()
The number of threads per physical core.boolean
hasVisibleCoreCount()
The number of physical cores to expose to an instance.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasEnableNestedVirtualization
boolean hasEnableNestedVirtualization()
Whether to enable nested virtualization or not (default is false).
optional bool enable_nested_virtualization = 16639365;
- Returns:
- Whether the enableNestedVirtualization field is set.
-
getEnableNestedVirtualization
boolean getEnableNestedVirtualization()
Whether to enable nested virtualization or not (default is false).
optional bool enable_nested_virtualization = 16639365;
- Returns:
- The enableNestedVirtualization.
-
hasEnableUefiNetworking
boolean hasEnableUefiNetworking()
Whether to enable UEFI networking for instance creation.
optional bool enable_uefi_networking = 334485668;
- Returns:
- Whether the enableUefiNetworking field is set.
-
getEnableUefiNetworking
boolean getEnableUefiNetworking()
Whether to enable UEFI networking for instance creation.
optional bool enable_uefi_networking = 334485668;
- Returns:
- The enableUefiNetworking.
-
hasThreadsPerCore
boolean hasThreadsPerCore()
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.
optional int32 threads_per_core = 352611671;
- Returns:
- Whether the threadsPerCore field is set.
-
getThreadsPerCore
int getThreadsPerCore()
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.
optional int32 threads_per_core = 352611671;
- Returns:
- The threadsPerCore.
-
hasVisibleCoreCount
boolean hasVisibleCoreCount()
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.
optional int32 visible_core_count = 193198684;
- Returns:
- Whether the visibleCoreCount field is set.
-
getVisibleCoreCount
int getVisibleCoreCount()
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.
optional int32 visible_core_count = 193198684;
- Returns:
- The visibleCoreCount.
-
-