public interface QuotaInfoOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getContainerType()
public abstract QuotaInfo.ContainerType getContainerType()
The container type of the QuotaInfo.
.google.api.cloudquotas.v1beta.QuotaInfo.ContainerType container_type = 7;
Returns | |
---|---|
Type | Description |
QuotaInfo.ContainerType |
The containerType. |
getContainerTypeValue()
public abstract int getContainerTypeValue()
The container type of the QuotaInfo.
.google.api.cloudquotas.v1beta.QuotaInfo.ContainerType container_type = 7;
Returns | |
---|---|
Type | Description |
int |
The enum numeric value on the wire for containerType. |
getDimensions(int index)
public abstract String getDimensions(int index)
The dimensions the quota is defined on.
repeated string dimensions = 8;
Parameter | |
---|---|
Name | Description |
index |
int The index of the element to return. |
Returns | |
---|---|
Type | Description |
String |
The dimensions at the given index. |
getDimensionsBytes(int index)
public abstract ByteString getDimensionsBytes(int index)
The dimensions the quota is defined on.
repeated string dimensions = 8;
Parameter | |
---|---|
Name | Description |
index |
int The index of the value to return. |
Returns | |
---|---|
Type | Description |
ByteString |
The bytes of the dimensions at the given index. |
getDimensionsCount()
public abstract int getDimensionsCount()
The dimensions the quota is defined on.
repeated string dimensions = 8;
Returns | |
---|---|
Type | Description |
int |
The count of dimensions. |
getDimensionsInfos(int index)
public abstract DimensionsInfo getDimensionsInfos(int index)
The collection of dimensions info ordered by their dimensions from more specific ones to less specific ones.
repeated .google.api.cloudquotas.v1beta.DimensionsInfo dimensions_infos = 14;
Parameter | |
---|---|
Name | Description |
index |
int |
Returns | |
---|---|
Type | Description |
DimensionsInfo |
getDimensionsInfosCount()
public abstract int getDimensionsInfosCount()
The collection of dimensions info ordered by their dimensions from more specific ones to less specific ones.
repeated .google.api.cloudquotas.v1beta.DimensionsInfo dimensions_infos = 14;
Returns | |
---|---|
Type | Description |
int |
getDimensionsInfosList()
public abstract List<DimensionsInfo> getDimensionsInfosList()
The collection of dimensions info ordered by their dimensions from more specific ones to less specific ones.
repeated .google.api.cloudquotas.v1beta.DimensionsInfo dimensions_infos = 14;
Returns | |
---|---|
Type | Description |
List<DimensionsInfo> |
getDimensionsInfosOrBuilder(int index)
public abstract DimensionsInfoOrBuilder getDimensionsInfosOrBuilder(int index)
The collection of dimensions info ordered by their dimensions from more specific ones to less specific ones.
repeated .google.api.cloudquotas.v1beta.DimensionsInfo dimensions_infos = 14;
Parameter | |
---|---|
Name | Description |
index |
int |
Returns | |
---|---|
Type | Description |
DimensionsInfoOrBuilder |
getDimensionsInfosOrBuilderList()
public abstract List<? extends DimensionsInfoOrBuilder> getDimensionsInfosOrBuilderList()
The collection of dimensions info ordered by their dimensions from more specific ones to less specific ones.
repeated .google.api.cloudquotas.v1beta.DimensionsInfo dimensions_infos = 14;
Returns | |
---|---|
Type | Description |
List<? extends com.google.api.cloudquotas.v1beta.DimensionsInfoOrBuilder> |
getDimensionsList()
public abstract List<String> getDimensionsList()
The dimensions the quota is defined on.
repeated string dimensions = 8;
Returns | |
---|---|
Type | Description |
List<String> |
A list containing the dimensions. |
getIsConcurrent()
public abstract boolean getIsConcurrent()
Whether the quota is a concurrent quota. Concurrent quotas are enforced on the total number of concurrent operations in flight at any given time.
bool is_concurrent = 15;
Returns | |
---|---|
Type | Description |
boolean |
The isConcurrent. |
getIsFixed()
public abstract boolean getIsFixed()
Whether the quota value is fixed or adjustable
bool is_fixed = 13;
Returns | |
---|---|
Type | Description |
boolean |
The isFixed. |
getIsPrecise()
public abstract boolean getIsPrecise()
Whether this is a precise quota. A precise quota is tracked with absolute precision. In contrast, an imprecise quota is not tracked with precision.
bool is_precise = 5;
Returns | |
---|---|
Type | Description |
boolean |
The isPrecise. |
getMetric()
public abstract String getMetric()
The metric of the quota. It specifies the resources consumption the quota
is defined for.
For example, compute.googleapis.com/cpus
string metric = 3;
Returns | |
---|---|
Type | Description |
String |
The metric. |
getMetricBytes()
public abstract ByteString getMetricBytes()
The metric of the quota. It specifies the resources consumption the quota
is defined for.
For example, compute.googleapis.com/cpus
string metric = 3;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for metric. |
getMetricDisplayName()
public abstract String getMetricDisplayName()
The display name of the quota metric
string metric_display_name = 9;
Returns | |
---|---|
Type | Description |
String |
The metricDisplayName. |
getMetricDisplayNameBytes()
public abstract ByteString getMetricDisplayNameBytes()
The display name of the quota metric
string metric_display_name = 9;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for metricDisplayName. |
getMetricUnit()
public abstract String getMetricUnit()
The unit in which the metric value is reported, e.g., "MByte".
string metric_unit = 11;
Returns | |
---|---|
Type | Description |
String |
The metricUnit. |
getMetricUnitBytes()
public abstract ByteString getMetricUnitBytes()
The unit in which the metric value is reported, e.g., "MByte".
string metric_unit = 11;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for metricUnit. |
getName()
public abstract String getName()
Resource name of this QuotaInfo.
The ID component following "locations/" must be "global".
For example,
projects/123/locations/global/services/compute.googleapis.com/quotaInfos/CpusPerProjectPerRegion
string name = 1;
Returns | |
---|---|
Type | Description |
String |
The name. |
getNameBytes()
public abstract ByteString getNameBytes()
Resource name of this QuotaInfo.
The ID component following "locations/" must be "global".
For example,
projects/123/locations/global/services/compute.googleapis.com/quotaInfos/CpusPerProjectPerRegion
string name = 1;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for name. |
getQuotaDisplayName()
public abstract String getQuotaDisplayName()
The display name of the quota.
string quota_display_name = 10;
Returns | |
---|---|
Type | Description |
String |
The quotaDisplayName. |
getQuotaDisplayNameBytes()
public abstract ByteString getQuotaDisplayNameBytes()
The display name of the quota.
string quota_display_name = 10;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for quotaDisplayName. |
getQuotaId()
public abstract String getQuotaId()
The id of the quota, which is unquie within the service.
For example, CpusPerProjectPerRegion
string quota_id = 2;
Returns | |
---|---|
Type | Description |
String |
The quotaId. |
getQuotaIdBytes()
public abstract ByteString getQuotaIdBytes()
The id of the quota, which is unquie within the service.
For example, CpusPerProjectPerRegion
string quota_id = 2;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for quotaId. |
getQuotaIncreaseEligibility()
public abstract QuotaIncreaseEligibility getQuotaIncreaseEligibility()
Whether it is eligible to request a higher quota value for this quota.
.google.api.cloudquotas.v1beta.QuotaIncreaseEligibility quota_increase_eligibility = 12;
Returns | |
---|---|
Type | Description |
QuotaIncreaseEligibility |
The quotaIncreaseEligibility. |
getQuotaIncreaseEligibilityOrBuilder()
public abstract QuotaIncreaseEligibilityOrBuilder getQuotaIncreaseEligibilityOrBuilder()
Whether it is eligible to request a higher quota value for this quota.
.google.api.cloudquotas.v1beta.QuotaIncreaseEligibility quota_increase_eligibility = 12;
Returns | |
---|---|
Type | Description |
QuotaIncreaseEligibilityOrBuilder |
getRefreshInterval()
public abstract String getRefreshInterval()
The reset time interval for the quota. Refresh interval applies to rate quota only. For example, "minute" for per minute, "day" for per day, or "10 seconds" for every 10 seconds.
string refresh_interval = 6;
Returns | |
---|---|
Type | Description |
String |
The refreshInterval. |
getRefreshIntervalBytes()
public abstract ByteString getRefreshIntervalBytes()
The reset time interval for the quota. Refresh interval applies to rate quota only. For example, "minute" for per minute, "day" for per day, or "10 seconds" for every 10 seconds.
string refresh_interval = 6;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for refreshInterval. |
getService()
public abstract String getService()
The name of the service in which the quota is defined.
For example, compute.googleapis.com
string service = 4;
Returns | |
---|---|
Type | Description |
String |
The service. |
getServiceBytes()
public abstract ByteString getServiceBytes()
The name of the service in which the quota is defined.
For example, compute.googleapis.com
string service = 4;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for service. |
getServiceRequestQuotaUri()
public abstract String getServiceRequestQuotaUri()
URI to the page where users can request more quota for the cloud service—for example, https://console.cloud.google.com/iam-admin/quotas.
string service_request_quota_uri = 17;
Returns | |
---|---|
Type | Description |
String |
The serviceRequestQuotaUri. |
getServiceRequestQuotaUriBytes()
public abstract ByteString getServiceRequestQuotaUriBytes()
URI to the page where users can request more quota for the cloud service—for example, https://console.cloud.google.com/iam-admin/quotas.
string service_request_quota_uri = 17;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for serviceRequestQuotaUri. |
hasQuotaIncreaseEligibility()
public abstract boolean hasQuotaIncreaseEligibility()
Whether it is eligible to request a higher quota value for this quota.
.google.api.cloudquotas.v1beta.QuotaIncreaseEligibility quota_increase_eligibility = 12;
Returns | |
---|---|
Type | Description |
boolean |
Whether the quotaIncreaseEligibility field is set. |