- 0.52.0 (latest)
- 0.51.0
- 0.49.0
- 0.48.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.37.0
- 0.36.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.9.0
- 0.8.0
- 0.7.0
- 0.6.0
- 0.5.0
- 0.4.0
- 0.3.5
- 0.2.1
- 0.1.2
public final class ResourceRequirements extends GeneratedMessageV3 implements ResourceRequirementsOrBuilder
ResourceRequirements describes the compute resource requirements.
Protobuf type google.cloud.run.v2.ResourceRequirements
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > ResourceRequirementsImplements
ResourceRequirementsOrBuilderStatic Fields
CPU_IDLE_FIELD_NUMBER
public static final int CPU_IDLE_FIELD_NUMBER
Type | Description |
int |
LIMITS_FIELD_NUMBER
public static final int LIMITS_FIELD_NUMBER
Type | Description |
int |
Static Methods
getDefaultInstance()
public static ResourceRequirements getDefaultInstance()
Type | Description |
ResourceRequirements |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Type | Description |
Descriptor |
newBuilder()
public static ResourceRequirements.Builder newBuilder()
Type | Description |
ResourceRequirements.Builder |
newBuilder(ResourceRequirements prototype)
public static ResourceRequirements.Builder newBuilder(ResourceRequirements prototype)
Name | Description |
prototype | ResourceRequirements |
Type | Description |
ResourceRequirements.Builder |
parseDelimitedFrom(InputStream input)
public static ResourceRequirements parseDelimitedFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
ResourceRequirements |
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static ResourceRequirements parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
ResourceRequirements |
Type | Description |
IOException |
parseFrom(byte[] data)
public static ResourceRequirements parseFrom(byte[] data)
Name | Description |
data | byte[] |
Type | Description |
ResourceRequirements |
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static ResourceRequirements parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | byte[] |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
ResourceRequirements |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static ResourceRequirements parseFrom(ByteString data)
Name | Description |
data | ByteString |
Type | Description |
ResourceRequirements |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static ResourceRequirements parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteString |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
ResourceRequirements |
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static ResourceRequirements parseFrom(CodedInputStream input)
Name | Description |
input | CodedInputStream |
Type | Description |
ResourceRequirements |
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static ResourceRequirements parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
ResourceRequirements |
Type | Description |
IOException |
parseFrom(InputStream input)
public static ResourceRequirements parseFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
ResourceRequirements |
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static ResourceRequirements parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
ResourceRequirements |
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static ResourceRequirements parseFrom(ByteBuffer data)
Name | Description |
data | ByteBuffer |
Type | Description |
ResourceRequirements |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static ResourceRequirements parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteBuffer |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
ResourceRequirements |
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<ResourceRequirements> parser()
Type | Description |
Parser<ResourceRequirements> |
Methods
containsLimits(String key)
public boolean containsLimits(String key)
Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
Name | Description |
key | String |
Type | Description |
boolean |
equals(Object obj)
public boolean equals(Object obj)
Name | Description |
obj | Object |
Type | Description |
boolean |
getCpuIdle()
public boolean getCpuIdle()
Determines whether CPU should be throttled or not outside of requests.
bool cpu_idle = 2;
Type | Description |
boolean | The cpuIdle. |
getDefaultInstanceForType()
public ResourceRequirements getDefaultInstanceForType()
Type | Description |
ResourceRequirements |
getLimits()
public Map<String,String> getLimits()
Use #getLimitsMap() instead.
Type | Description |
Map<String,String> |
getLimitsCount()
public int getLimitsCount()
Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
Type | Description |
int |
getLimitsMap()
public Map<String,String> getLimitsMap()
Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
Type | Description |
Map<String,String> |
getLimitsOrDefault(String key, String defaultValue)
public String getLimitsOrDefault(String key, String defaultValue)
Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
Name | Description |
key | String |
defaultValue | String |
Type | Description |
String |
getLimitsOrThrow(String key)
public String getLimitsOrThrow(String key)
Only memory and CPU are supported. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
map<string, string> limits = 1;
Name | Description |
key | String |
Type | Description |
String |
getParserForType()
public Parser<ResourceRequirements> getParserForType()
Type | Description |
Parser<ResourceRequirements> |
getSerializedSize()
public int getSerializedSize()
Type | Description |
int |
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Type | Description |
UnknownFieldSet |
hashCode()
public int hashCode()
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Type | Description |
FieldAccessorTable |
internalGetMapField(int number)
protected MapField internalGetMapField(int number)
Name | Description |
number | int |
Type | Description |
MapField |
isInitialized()
public final boolean isInitialized()
Type | Description |
boolean |
newBuilderForType()
public ResourceRequirements.Builder newBuilderForType()
Type | Description |
ResourceRequirements.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected ResourceRequirements.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Name | Description |
parent | BuilderParent |
Type | Description |
ResourceRequirements.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Name | Description |
unused | UnusedPrivateParameter |
Type | Description |
Object |
toBuilder()
public ResourceRequirements.Builder toBuilder()
Type | Description |
ResourceRequirements.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Name | Description |
output | CodedOutputStream |
Type | Description |
IOException |