Package com.google.cloud.compute.v1
Interface LicenseResourceRequirementsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LicenseResourceRequirements,LicenseResourceRequirements.Builder
public interface LicenseResourceRequirementsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMinGuestCpuCount()Minimum number of guest cpus required to use the Instance.intgetMinMemoryMb()Minimum memory required to use the Instance.booleanhasMinGuestCpuCount()Minimum number of guest cpus required to use the Instance.booleanhasMinMemoryMb()Minimum memory required to use the Instance.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMinGuestCpuCount
boolean hasMinGuestCpuCount()
Minimum number of guest cpus required to use the Instance. Enforced at Instance creation and Instance start.
optional int32 min_guest_cpu_count = 477964836;- Returns:
- Whether the minGuestCpuCount field is set.
-
getMinGuestCpuCount
int getMinGuestCpuCount()
Minimum number of guest cpus required to use the Instance. Enforced at Instance creation and Instance start.
optional int32 min_guest_cpu_count = 477964836;- Returns:
- The minGuestCpuCount.
-
hasMinMemoryMb
boolean hasMinMemoryMb()
Minimum memory required to use the Instance. Enforced at Instance creation and Instance start.
optional int32 min_memory_mb = 504785894;- Returns:
- Whether the minMemoryMb field is set.
-
getMinMemoryMb
int getMinMemoryMb()
Minimum memory required to use the Instance. Enforced at Instance creation and Instance start.
optional int32 min_memory_mb = 504785894;- Returns:
- The minMemoryMb.
-
-