Interface ListProvisioningQuotasResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListProvisioningQuotasResponse
,ListProvisioningQuotasResponse.Builder
public interface ListProvisioningQuotasResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.ProvisioningQuota
getProvisioningQuotas(int index)
The provisioning quotas registered in this project.int
getProvisioningQuotasCount()
The provisioning quotas registered in this project.List<ProvisioningQuota>
getProvisioningQuotasList()
The provisioning quotas registered in this project.ProvisioningQuotaOrBuilder
getProvisioningQuotasOrBuilder(int index)
The provisioning quotas registered in this project.List<? extends ProvisioningQuotaOrBuilder>
getProvisioningQuotasOrBuilderList()
The provisioning quotas registered in this project.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProvisioningQuotasList
List<ProvisioningQuota> getProvisioningQuotasList()
The provisioning quotas registered in this project.
repeated .google.cloud.baremetalsolution.v2.ProvisioningQuota provisioning_quotas = 1;
-
getProvisioningQuotas
ProvisioningQuota getProvisioningQuotas(int index)
The provisioning quotas registered in this project.
repeated .google.cloud.baremetalsolution.v2.ProvisioningQuota provisioning_quotas = 1;
-
getProvisioningQuotasCount
int getProvisioningQuotasCount()
The provisioning quotas registered in this project.
repeated .google.cloud.baremetalsolution.v2.ProvisioningQuota provisioning_quotas = 1;
-
getProvisioningQuotasOrBuilderList
List<? extends ProvisioningQuotaOrBuilder> getProvisioningQuotasOrBuilderList()
The provisioning quotas registered in this project.
repeated .google.cloud.baremetalsolution.v2.ProvisioningQuota provisioning_quotas = 1;
-
getProvisioningQuotasOrBuilder
ProvisioningQuotaOrBuilder getProvisioningQuotasOrBuilder(int index)
The provisioning quotas registered in this project.
repeated .google.cloud.baremetalsolution.v2.ProvisioningQuota provisioning_quotas = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-