public interface ResourceRequirementsOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
containsLimits(String key)
public abstract boolean containsLimits(String key)Only ´memory´ and 'cpu' are supported.
<p>Notes:
- The only supported values for CPU are '1', '2', '4', and '8'. Setting 4
CPU requires at least 2Gi of memory. For more information, go to
https://cloud.google.com/run/docs/configuring/cpu.
- For supported 'memory' values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
map<string, string> limits = 1;
| Parameter | |
|---|---|
| Name | Description |
key |
String |
| Returns | |
|---|---|
| Type | Description |
boolean |
|
getCpuIdle()
public abstract boolean getCpuIdle()Determines whether CPU should be throttled or not outside of requests.
bool cpu_idle = 2;
| Returns | |
|---|---|
| Type | Description |
boolean |
The cpuIdle. |
getLimits()
public abstract Map<String,String> getLimits()Use #getLimitsMap() instead.
| Returns | |
|---|---|
| Type | Description |
Map<String,String> |
|
getLimitsCount()
public abstract int getLimitsCount()Only ´memory´ and 'cpu' are supported.
<p>Notes:
- The only supported values for CPU are '1', '2', '4', and '8'. Setting 4
CPU requires at least 2Gi of memory. For more information, go to
https://cloud.google.com/run/docs/configuring/cpu.
- For supported 'memory' values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
map<string, string> limits = 1;
| Returns | |
|---|---|
| Type | Description |
int |
|
getLimitsMap()
public abstract Map<String,String> getLimitsMap()Only ´memory´ and 'cpu' are supported.
<p>Notes:
- The only supported values for CPU are '1', '2', '4', and '8'. Setting 4
CPU requires at least 2Gi of memory. For more information, go to
https://cloud.google.com/run/docs/configuring/cpu.
- For supported 'memory' values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
map<string, string> limits = 1;
| Returns | |
|---|---|
| Type | Description |
Map<String,String> |
|
getLimitsOrDefault(String key, String defaultValue)
public abstract String getLimitsOrDefault(String key, String defaultValue)Only ´memory´ and 'cpu' are supported.
<p>Notes:
- The only supported values for CPU are '1', '2', '4', and '8'. Setting 4
CPU requires at least 2Gi of memory. For more information, go to
https://cloud.google.com/run/docs/configuring/cpu.
- For supported 'memory' values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
map<string, string> limits = 1;
| Parameters | |
|---|---|
| Name | Description |
key |
String |
defaultValue |
String |
| Returns | |
|---|---|
| Type | Description |
String |
|
getLimitsOrThrow(String key)
public abstract String getLimitsOrThrow(String key)Only ´memory´ and 'cpu' are supported.
<p>Notes:
- The only supported values for CPU are '1', '2', '4', and '8'. Setting 4
CPU requires at least 2Gi of memory. For more information, go to
https://cloud.google.com/run/docs/configuring/cpu.
- For supported 'memory' values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
map<string, string> limits = 1;
| Parameter | |
|---|---|
| Name | Description |
key |
String |
| Returns | |
|---|---|
| Type | Description |
String |
|
getStartupCpuBoost()
public abstract boolean getStartupCpuBoost()Determines whether CPU should be boosted on startup of a new container instance above the requested CPU threshold, this can help reduce cold-start latency.
bool startup_cpu_boost = 3;
| Returns | |
|---|---|
| Type | Description |
boolean |
The startupCpuBoost. |