GitHub Repository | Product Reference |
Service Description: The Cloud Quotas API is an infrastructure service for Google Cloud that lets service consumers list and manage their resource usage limits.
- List/Get the metadata and current status of the quotas for a service. - Create/Update quota preferencess that declare the preferred quota values. - Check the status of a quota preference request. - List/Get pending and historical quota preference.
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
QuotaInfoName name =
QuotaInfoName.ofProjectLocationServiceQuotaInfoName(
"[PROJECT]", "[LOCATION]", "[SERVICE]", "[QUOTA_INFO]");
QuotaInfo response = cloudQuotasClient.getQuotaInfo(name);
}
Note: close() needs to be called on the CloudQuotasClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
Method | Description | Method Variants |
---|---|---|
ListQuotaInfos |
Lists QuotaInfos of all quotas for a given project, folder or organization. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetQuotaInfo |
Retrieve the QuotaInfo of a quota for a project, folder or organization. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListQuotaPreferences |
Lists QuotaPreferences in a given project, folder or organization. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetQuotaPreference |
Gets details of a single QuotaPreference. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
CreateQuotaPreference |
Creates a new QuotaPreference that declares the desired value for a quota. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateQuotaPreference |
Updates the parameters of a single QuotaPreference. It can updates the config in any states, not just the ones pending approval. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of CloudQuotasSettings to create(). For example:
To customize credentials:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
CloudQuotasSettings cloudQuotasSettings =
CloudQuotasSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create(cloudQuotasSettings);
To customize the endpoint:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
CloudQuotasSettings cloudQuotasSettings =
CloudQuotasSettings.newBuilder().setEndpoint(myEndpoint).build();
CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create(cloudQuotasSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
CloudQuotasSettings cloudQuotasSettings = CloudQuotasSettings.newHttpJsonBuilder().build();
CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create(cloudQuotasSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final CloudQuotasClient create()
Constructs an instance of CloudQuotasClient with default settings.
Returns | |
---|---|
Type | Description |
CloudQuotasClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(CloudQuotasSettings settings)
public static final CloudQuotasClient create(CloudQuotasSettings settings)
Constructs an instance of CloudQuotasClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Parameter | |
---|---|
Name | Description |
settings |
CloudQuotasSettings |
Returns | |
---|---|
Type | Description |
CloudQuotasClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(CloudQuotasStub stub)
public static final CloudQuotasClient create(CloudQuotasStub stub)
Constructs an instance of CloudQuotasClient, using the given stub for making calls. This is for advanced usage - prefer using create(CloudQuotasSettings).
Parameter | |
---|---|
Name | Description |
stub |
CloudQuotasStub |
Returns | |
---|---|
Type | Description |
CloudQuotasClient |
Constructors
CloudQuotasClient(CloudQuotasSettings settings)
protected CloudQuotasClient(CloudQuotasSettings settings)
Constructs an instance of CloudQuotasClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
Parameter | |
---|---|
Name | Description |
settings |
CloudQuotasSettings |
CloudQuotasClient(CloudQuotasStub stub)
protected CloudQuotasClient(CloudQuotasStub stub)
Parameter | |
---|---|
Name | Description |
stub |
CloudQuotasStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration |
long |
unit |
TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
InterruptedException |
close()
public final void close()
createQuotaPreference(CreateQuotaPreferenceRequest request)
public final QuotaPreference createQuotaPreference(CreateQuotaPreferenceRequest request)
Creates a new QuotaPreference that declares the desired value for a quota.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
CreateQuotaPreferenceRequest request =
CreateQuotaPreferenceRequest.newBuilder()
.setParent(LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString())
.setQuotaPreferenceId("quotaPreferenceId-948332050")
.setQuotaPreference(QuotaPreference.newBuilder().build())
.addAllIgnoreSafetyChecks(new ArrayList<QuotaSafetyCheck>())
.build();
QuotaPreference response = cloudQuotasClient.createQuotaPreference(request);
}
Parameter | |
---|---|
Name | Description |
request |
CreateQuotaPreferenceRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
QuotaPreference |
createQuotaPreference(LocationName parent, QuotaPreference quotaPreference)
public final QuotaPreference createQuotaPreference(LocationName parent, QuotaPreference quotaPreference)
Creates a new QuotaPreference that declares the desired value for a quota.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
LocationName parent = LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]");
QuotaPreference quotaPreference = QuotaPreference.newBuilder().build();
QuotaPreference response = cloudQuotasClient.createQuotaPreference(parent, quotaPreference);
}
Parameters | |
---|---|
Name | Description |
parent |
LocationName Required. Value for parent. Example: |
quotaPreference |
QuotaPreference Required. The resource being created |
Returns | |
---|---|
Type | Description |
QuotaPreference |
createQuotaPreference(LocationName parent, QuotaPreference quotaPreference, String quotaPreferenceId)
public final QuotaPreference createQuotaPreference(LocationName parent, QuotaPreference quotaPreference, String quotaPreferenceId)
Creates a new QuotaPreference that declares the desired value for a quota.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
LocationName parent = LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]");
QuotaPreference quotaPreference = QuotaPreference.newBuilder().build();
String quotaPreferenceId = "quotaPreferenceId-948332050";
QuotaPreference response =
cloudQuotasClient.createQuotaPreference(parent, quotaPreference, quotaPreferenceId);
}
Parameters | |
---|---|
Name | Description |
parent |
LocationName Required. Value for parent. Example: |
quotaPreference |
QuotaPreference Required. The resource being created |
quotaPreferenceId |
String Optional. Id of the requesting object, must be unique under its parent. If client does not set this field, the service will generate one. |
Returns | |
---|---|
Type | Description |
QuotaPreference |
createQuotaPreference(String parent, QuotaPreference quotaPreference)
public final QuotaPreference createQuotaPreference(String parent, QuotaPreference quotaPreference)
Creates a new QuotaPreference that declares the desired value for a quota.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
String parent = LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString();
QuotaPreference quotaPreference = QuotaPreference.newBuilder().build();
QuotaPreference response = cloudQuotasClient.createQuotaPreference(parent, quotaPreference);
}
Parameters | |
---|---|
Name | Description |
parent |
String Required. Value for parent. Example: |
quotaPreference |
QuotaPreference Required. The resource being created |
Returns | |
---|---|
Type | Description |
QuotaPreference |
createQuotaPreference(String parent, QuotaPreference quotaPreference, String quotaPreferenceId)
public final QuotaPreference createQuotaPreference(String parent, QuotaPreference quotaPreference, String quotaPreferenceId)
Creates a new QuotaPreference that declares the desired value for a quota.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
String parent = LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString();
QuotaPreference quotaPreference = QuotaPreference.newBuilder().build();
String quotaPreferenceId = "quotaPreferenceId-948332050";
QuotaPreference response =
cloudQuotasClient.createQuotaPreference(parent, quotaPreference, quotaPreferenceId);
}
Parameters | |
---|---|
Name | Description |
parent |
String Required. Value for parent. Example: |
quotaPreference |
QuotaPreference Required. The resource being created |
quotaPreferenceId |
String Optional. Id of the requesting object, must be unique under its parent. If client does not set this field, the service will generate one. |
Returns | |
---|---|
Type | Description |
QuotaPreference |
createQuotaPreferenceCallable()
public final UnaryCallable<CreateQuotaPreferenceRequest,QuotaPreference> createQuotaPreferenceCallable()
Creates a new QuotaPreference that declares the desired value for a quota.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
CreateQuotaPreferenceRequest request =
CreateQuotaPreferenceRequest.newBuilder()
.setParent(LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString())
.setQuotaPreferenceId("quotaPreferenceId-948332050")
.setQuotaPreference(QuotaPreference.newBuilder().build())
.addAllIgnoreSafetyChecks(new ArrayList<QuotaSafetyCheck>())
.build();
ApiFuture<QuotaPreference> future =
cloudQuotasClient.createQuotaPreferenceCallable().futureCall(request);
// Do something.
QuotaPreference response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<CreateQuotaPreferenceRequest,QuotaPreference> |
getQuotaInfo(GetQuotaInfoRequest request)
public final QuotaInfo getQuotaInfo(GetQuotaInfoRequest request)
Retrieve the QuotaInfo of a quota for a project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
GetQuotaInfoRequest request =
GetQuotaInfoRequest.newBuilder()
.setName(
QuotaInfoName.ofProjectLocationServiceQuotaInfoName(
"[PROJECT]", "[LOCATION]", "[SERVICE]", "[QUOTA_INFO]")
.toString())
.build();
QuotaInfo response = cloudQuotasClient.getQuotaInfo(request);
}
Parameter | |
---|---|
Name | Description |
request |
GetQuotaInfoRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
QuotaInfo |
getQuotaInfo(QuotaInfoName name)
public final QuotaInfo getQuotaInfo(QuotaInfoName name)
Retrieve the QuotaInfo of a quota for a project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
QuotaInfoName name =
QuotaInfoName.ofProjectLocationServiceQuotaInfoName(
"[PROJECT]", "[LOCATION]", "[SERVICE]", "[QUOTA_INFO]");
QuotaInfo response = cloudQuotasClient.getQuotaInfo(name);
}
Parameter | |
---|---|
Name | Description |
name |
QuotaInfoName Required. The resource name of the quota info. An example name:
|
Returns | |
---|---|
Type | Description |
QuotaInfo |
getQuotaInfo(String name)
public final QuotaInfo getQuotaInfo(String name)
Retrieve the QuotaInfo of a quota for a project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
String name =
QuotaInfoName.ofProjectLocationServiceQuotaInfoName(
"[PROJECT]", "[LOCATION]", "[SERVICE]", "[QUOTA_INFO]")
.toString();
QuotaInfo response = cloudQuotasClient.getQuotaInfo(name);
}
Parameter | |
---|---|
Name | Description |
name |
String Required. The resource name of the quota info. An example name:
|
Returns | |
---|---|
Type | Description |
QuotaInfo |
getQuotaInfoCallable()
public final UnaryCallable<GetQuotaInfoRequest,QuotaInfo> getQuotaInfoCallable()
Retrieve the QuotaInfo of a quota for a project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
GetQuotaInfoRequest request =
GetQuotaInfoRequest.newBuilder()
.setName(
QuotaInfoName.ofProjectLocationServiceQuotaInfoName(
"[PROJECT]", "[LOCATION]", "[SERVICE]", "[QUOTA_INFO]")
.toString())
.build();
ApiFuture<QuotaInfo> future = cloudQuotasClient.getQuotaInfoCallable().futureCall(request);
// Do something.
QuotaInfo response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<GetQuotaInfoRequest,QuotaInfo> |
getQuotaPreference(GetQuotaPreferenceRequest request)
public final QuotaPreference getQuotaPreference(GetQuotaPreferenceRequest request)
Gets details of a single QuotaPreference.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
GetQuotaPreferenceRequest request =
GetQuotaPreferenceRequest.newBuilder()
.setName(
QuotaPreferenceName.ofProjectLocationQuotaPreferenceName(
"[PROJECT]", "[LOCATION]", "[QUOTA_PREFERENCE]")
.toString())
.build();
QuotaPreference response = cloudQuotasClient.getQuotaPreference(request);
}
Parameter | |
---|---|
Name | Description |
request |
GetQuotaPreferenceRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
QuotaPreference |
getQuotaPreference(QuotaPreferenceName name)
public final QuotaPreference getQuotaPreference(QuotaPreferenceName name)
Gets details of a single QuotaPreference.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
QuotaPreferenceName name =
QuotaPreferenceName.ofProjectLocationQuotaPreferenceName(
"[PROJECT]", "[LOCATION]", "[QUOTA_PREFERENCE]");
QuotaPreference response = cloudQuotasClient.getQuotaPreference(name);
}
Parameter | |
---|---|
Name | Description |
name |
QuotaPreferenceName Required. Name of the resource Example name: |
Returns | |
---|---|
Type | Description |
QuotaPreference |
getQuotaPreference(String name)
public final QuotaPreference getQuotaPreference(String name)
Gets details of a single QuotaPreference.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
String name =
QuotaPreferenceName.ofProjectLocationQuotaPreferenceName(
"[PROJECT]", "[LOCATION]", "[QUOTA_PREFERENCE]")
.toString();
QuotaPreference response = cloudQuotasClient.getQuotaPreference(name);
}
Parameter | |
---|---|
Name | Description |
name |
String Required. Name of the resource Example name: |
Returns | |
---|---|
Type | Description |
QuotaPreference |
getQuotaPreferenceCallable()
public final UnaryCallable<GetQuotaPreferenceRequest,QuotaPreference> getQuotaPreferenceCallable()
Gets details of a single QuotaPreference.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
GetQuotaPreferenceRequest request =
GetQuotaPreferenceRequest.newBuilder()
.setName(
QuotaPreferenceName.ofProjectLocationQuotaPreferenceName(
"[PROJECT]", "[LOCATION]", "[QUOTA_PREFERENCE]")
.toString())
.build();
ApiFuture<QuotaPreference> future =
cloudQuotasClient.getQuotaPreferenceCallable().futureCall(request);
// Do something.
QuotaPreference response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<GetQuotaPreferenceRequest,QuotaPreference> |
getSettings()
public final CloudQuotasSettings getSettings()
Returns | |
---|---|
Type | Description |
CloudQuotasSettings |
getStub()
public CloudQuotasStub getStub()
Returns | |
---|---|
Type | Description |
CloudQuotasStub |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
boolean |
listQuotaInfos(ListQuotaInfosRequest request)
public final CloudQuotasClient.ListQuotaInfosPagedResponse listQuotaInfos(ListQuotaInfosRequest request)
Lists QuotaInfos of all quotas for a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
ListQuotaInfosRequest request =
ListQuotaInfosRequest.newBuilder()
.setParent(
ServiceName.ofProjectLocationServiceName("[PROJECT]", "[LOCATION]", "[SERVICE]")
.toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (QuotaInfo element : cloudQuotasClient.listQuotaInfos(request).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
request |
ListQuotaInfosRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
CloudQuotasClient.ListQuotaInfosPagedResponse |
listQuotaInfos(ServiceName parent)
public final CloudQuotasClient.ListQuotaInfosPagedResponse listQuotaInfos(ServiceName parent)
Lists QuotaInfos of all quotas for a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
ServiceName parent =
ServiceName.ofProjectLocationServiceName("[PROJECT]", "[LOCATION]", "[SERVICE]");
for (QuotaInfo element : cloudQuotasClient.listQuotaInfos(parent).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
parent |
ServiceName Required. Parent value of QuotaInfo resources. Listing across different resource containers (such as 'projects/-') is not allowed. Example names: |
Returns | |
---|---|
Type | Description |
CloudQuotasClient.ListQuotaInfosPagedResponse |
listQuotaInfos(String parent)
public final CloudQuotasClient.ListQuotaInfosPagedResponse listQuotaInfos(String parent)
Lists QuotaInfos of all quotas for a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
String parent =
ServiceName.ofProjectLocationServiceName("[PROJECT]", "[LOCATION]", "[SERVICE]")
.toString();
for (QuotaInfo element : cloudQuotasClient.listQuotaInfos(parent).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
parent |
String Required. Parent value of QuotaInfo resources. Listing across different resource containers (such as 'projects/-') is not allowed. Example names: |
Returns | |
---|---|
Type | Description |
CloudQuotasClient.ListQuotaInfosPagedResponse |
listQuotaInfosCallable()
public final UnaryCallable<ListQuotaInfosRequest,ListQuotaInfosResponse> listQuotaInfosCallable()
Lists QuotaInfos of all quotas for a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
ListQuotaInfosRequest request =
ListQuotaInfosRequest.newBuilder()
.setParent(
ServiceName.ofProjectLocationServiceName("[PROJECT]", "[LOCATION]", "[SERVICE]")
.toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListQuotaInfosResponse response = cloudQuotasClient.listQuotaInfosCallable().call(request);
for (QuotaInfo element : response.getQuotaInfosList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListQuotaInfosRequest,ListQuotaInfosResponse> |
listQuotaInfosPagedCallable()
public final UnaryCallable<ListQuotaInfosRequest,CloudQuotasClient.ListQuotaInfosPagedResponse> listQuotaInfosPagedCallable()
Lists QuotaInfos of all quotas for a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
ListQuotaInfosRequest request =
ListQuotaInfosRequest.newBuilder()
.setParent(
ServiceName.ofProjectLocationServiceName("[PROJECT]", "[LOCATION]", "[SERVICE]")
.toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<QuotaInfo> future =
cloudQuotasClient.listQuotaInfosPagedCallable().futureCall(request);
// Do something.
for (QuotaInfo element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListQuotaInfosRequest,ListQuotaInfosPagedResponse> |
listQuotaPreferences(ListQuotaPreferencesRequest request)
public final CloudQuotasClient.ListQuotaPreferencesPagedResponse listQuotaPreferences(ListQuotaPreferencesRequest request)
Lists QuotaPreferences in a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
ListQuotaPreferencesRequest request =
ListQuotaPreferencesRequest.newBuilder()
.setParent(LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
for (QuotaPreference element : cloudQuotasClient.listQuotaPreferences(request).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
request |
ListQuotaPreferencesRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
CloudQuotasClient.ListQuotaPreferencesPagedResponse |
listQuotaPreferences(LocationName parent)
public final CloudQuotasClient.ListQuotaPreferencesPagedResponse listQuotaPreferences(LocationName parent)
Lists QuotaPreferences in a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
LocationName parent = LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]");
for (QuotaPreference element : cloudQuotasClient.listQuotaPreferences(parent).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
parent |
LocationName Required. Parent value of QuotaPreference resources. Listing across different resource containers (such as 'projects/-') is not allowed. When the value starts with 'folders' or 'organizations', it lists the QuotaPreferences for org quotas in the container. It does not list the QuotaPreferences in the descendant projects of the container. Example parents: |
Returns | |
---|---|
Type | Description |
CloudQuotasClient.ListQuotaPreferencesPagedResponse |
listQuotaPreferences(String parent)
public final CloudQuotasClient.ListQuotaPreferencesPagedResponse listQuotaPreferences(String parent)
Lists QuotaPreferences in a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
String parent = LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString();
for (QuotaPreference element : cloudQuotasClient.listQuotaPreferences(parent).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
parent |
String Required. Parent value of QuotaPreference resources. Listing across different resource containers (such as 'projects/-') is not allowed. When the value starts with 'folders' or 'organizations', it lists the QuotaPreferences for org quotas in the container. It does not list the QuotaPreferences in the descendant projects of the container. Example parents: |
Returns | |
---|---|
Type | Description |
CloudQuotasClient.ListQuotaPreferencesPagedResponse |
listQuotaPreferencesCallable()
public final UnaryCallable<ListQuotaPreferencesRequest,ListQuotaPreferencesResponse> listQuotaPreferencesCallable()
Lists QuotaPreferences in a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
ListQuotaPreferencesRequest request =
ListQuotaPreferencesRequest.newBuilder()
.setParent(LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListQuotaPreferencesResponse response =
cloudQuotasClient.listQuotaPreferencesCallable().call(request);
for (QuotaPreference element : response.getQuotaPreferencesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListQuotaPreferencesRequest,ListQuotaPreferencesResponse> |
listQuotaPreferencesPagedCallable()
public final UnaryCallable<ListQuotaPreferencesRequest,CloudQuotasClient.ListQuotaPreferencesPagedResponse> listQuotaPreferencesPagedCallable()
Lists QuotaPreferences in a given project, folder or organization.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
ListQuotaPreferencesRequest request =
ListQuotaPreferencesRequest.newBuilder()
.setParent(LocationName.ofProjectLocationName("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<QuotaPreference> future =
cloudQuotasClient.listQuotaPreferencesPagedCallable().futureCall(request);
// Do something.
for (QuotaPreference element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListQuotaPreferencesRequest,ListQuotaPreferencesPagedResponse> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
updateQuotaPreference(QuotaPreference quotaPreference, FieldMask updateMask)
public final QuotaPreference updateQuotaPreference(QuotaPreference quotaPreference, FieldMask updateMask)
Updates the parameters of a single QuotaPreference. It can updates the config in any states, not just the ones pending approval.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
QuotaPreference quotaPreference = QuotaPreference.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
QuotaPreference response =
cloudQuotasClient.updateQuotaPreference(quotaPreference, updateMask);
}
Parameters | |
---|---|
Name | Description |
quotaPreference |
QuotaPreference Required. The resource being updated |
updateMask |
FieldMask Optional. Field mask is used to specify the fields to be overwritten in the QuotaPreference resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. |
Returns | |
---|---|
Type | Description |
QuotaPreference |
updateQuotaPreference(UpdateQuotaPreferenceRequest request)
public final QuotaPreference updateQuotaPreference(UpdateQuotaPreferenceRequest request)
Updates the parameters of a single QuotaPreference. It can updates the config in any states, not just the ones pending approval.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
UpdateQuotaPreferenceRequest request =
UpdateQuotaPreferenceRequest.newBuilder()
.setUpdateMask(FieldMask.newBuilder().build())
.setQuotaPreference(QuotaPreference.newBuilder().build())
.setAllowMissing(true)
.setValidateOnly(true)
.addAllIgnoreSafetyChecks(new ArrayList<QuotaSafetyCheck>())
.build();
QuotaPreference response = cloudQuotasClient.updateQuotaPreference(request);
}
Parameter | |
---|---|
Name | Description |
request |
UpdateQuotaPreferenceRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
QuotaPreference |
updateQuotaPreferenceCallable()
public final UnaryCallable<UpdateQuotaPreferenceRequest,QuotaPreference> updateQuotaPreferenceCallable()
Updates the parameters of a single QuotaPreference. It can updates the config in any states, not just the ones pending approval.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CloudQuotasClient cloudQuotasClient = CloudQuotasClient.create()) {
UpdateQuotaPreferenceRequest request =
UpdateQuotaPreferenceRequest.newBuilder()
.setUpdateMask(FieldMask.newBuilder().build())
.setQuotaPreference(QuotaPreference.newBuilder().build())
.setAllowMissing(true)
.setValidateOnly(true)
.addAllIgnoreSafetyChecks(new ArrayList<QuotaSafetyCheck>())
.build();
ApiFuture<QuotaPreference> future =
cloudQuotasClient.updateQuotaPreferenceCallable().futureCall(request);
// Do something.
QuotaPreference response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<UpdateQuotaPreferenceRequest,QuotaPreference> |