@Generated(value="by gapic-generator-java") public class AutoscalersClient extends Object implements com.google.api.gax.core.BackgroundResource
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String autoscaler = "autoscaler517258967";
Autoscaler response = autoscalersClient.get(project, zone, autoscaler);
}
Note: close() needs to be called on the AutoscalersClient 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 |
|---|---|---|
AggregatedList |
Retrieves an aggregated list of autoscalers. To prevent failure, Google recommends that you set the `returnPartialSuccess` parameter to `true`. |
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.
|
Delete |
Deletes the specified autoscaler. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Get |
Returns the specified autoscaler resource. |
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.
|
Insert |
Creates an autoscaler in the specified project using the data included in the request. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
List |
Retrieves a list of autoscalers contained within the specified zone. |
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.
|
Patch |
Updates an autoscaler in the specified project using the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Update |
Updates an autoscaler in the specified project using the data included in the request. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
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 AutoscalersSettings 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
AutoscalersSettings autoscalersSettings =
AutoscalersSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
AutoscalersClient autoscalersClient = AutoscalersClient.create(autoscalersSettings);
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
AutoscalersSettings autoscalersSettings =
AutoscalersSettings.newBuilder().setEndpoint(myEndpoint).build();
AutoscalersClient autoscalersClient = AutoscalersClient.create(autoscalersSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
AutoscalersClient.AggregatedListFixedSizeCollection |
static class |
AutoscalersClient.AggregatedListPage |
static class |
AutoscalersClient.AggregatedListPagedResponse |
static class |
AutoscalersClient.ListFixedSizeCollection |
static class |
AutoscalersClient.ListPage |
static class |
AutoscalersClient.ListPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
AutoscalersClient(AutoscalersSettings settings)
Constructs an instance of AutoscalersClient, using the given settings.
|
protected |
AutoscalersClient(AutoscalersStub stub) |
| Modifier and Type | Method and Description |
|---|---|
AutoscalersClient.AggregatedListPagedResponse |
aggregatedList(AggregatedListAutoscalersRequest request)
Retrieves an aggregated list of autoscalers.
|
AutoscalersClient.AggregatedListPagedResponse |
aggregatedList(String project)
Retrieves an aggregated list of autoscalers.
|
com.google.api.gax.rpc.UnaryCallable<AggregatedListAutoscalersRequest,AutoscalerAggregatedList> |
aggregatedListCallable()
Retrieves an aggregated list of autoscalers.
|
com.google.api.gax.rpc.UnaryCallable<AggregatedListAutoscalersRequest,AutoscalersClient.AggregatedListPagedResponse> |
aggregatedListPagedCallable()
Retrieves an aggregated list of autoscalers.
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static AutoscalersClient |
create()
Constructs an instance of AutoscalersClient with default settings.
|
static AutoscalersClient |
create(AutoscalersSettings settings)
Constructs an instance of AutoscalersClient, using the given settings.
|
static AutoscalersClient |
create(AutoscalersStub stub)
Constructs an instance of AutoscalersClient, using the given stub for making calls.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteAsync(DeleteAutoscalerRequest request)
Deletes the specified autoscaler.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteAsync(String project,
String zone,
String autoscaler)
Deletes the specified autoscaler.
|
com.google.api.gax.rpc.UnaryCallable<DeleteAutoscalerRequest,Operation> |
deleteCallable()
Deletes the specified autoscaler.
|
com.google.api.gax.rpc.OperationCallable<DeleteAutoscalerRequest,Operation,Operation> |
deleteOperationCallable()
Deletes the specified autoscaler.
|
Autoscaler |
get(GetAutoscalerRequest request)
Returns the specified autoscaler resource.
|
Autoscaler |
get(String project,
String zone,
String autoscaler)
Returns the specified autoscaler resource.
|
com.google.api.gax.rpc.UnaryCallable<GetAutoscalerRequest,Autoscaler> |
getCallable()
Returns the specified autoscaler resource.
|
AutoscalersSettings |
getSettings() |
AutoscalersStub |
getStub() |
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
insertAsync(InsertAutoscalerRequest request)
Creates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
insertAsync(String project,
String zone,
Autoscaler autoscalerResource)
Creates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.rpc.UnaryCallable<InsertAutoscalerRequest,Operation> |
insertCallable()
Creates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.rpc.OperationCallable<InsertAutoscalerRequest,Operation,Operation> |
insertOperationCallable()
Creates an autoscaler in the specified project using the data included in the request.
|
boolean |
isShutdown() |
boolean |
isTerminated() |
AutoscalersClient.ListPagedResponse |
list(ListAutoscalersRequest request)
Retrieves a list of autoscalers contained within the specified zone.
|
AutoscalersClient.ListPagedResponse |
list(String project,
String zone)
Retrieves a list of autoscalers contained within the specified zone.
|
com.google.api.gax.rpc.UnaryCallable<ListAutoscalersRequest,AutoscalerList> |
listCallable()
Retrieves a list of autoscalers contained within the specified zone.
|
com.google.api.gax.rpc.UnaryCallable<ListAutoscalersRequest,AutoscalersClient.ListPagedResponse> |
listPagedCallable()
Retrieves a list of autoscalers contained within the specified zone.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
patchAsync(PatchAutoscalerRequest request)
Updates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
patchAsync(String project,
String zone,
Autoscaler autoscalerResource)
Updates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.rpc.UnaryCallable<PatchAutoscalerRequest,Operation> |
patchCallable()
Updates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.rpc.OperationCallable<PatchAutoscalerRequest,Operation,Operation> |
patchOperationCallable()
Updates an autoscaler in the specified project using the data included in the request.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
updateAsync(String project,
String zone,
Autoscaler autoscalerResource)
Updates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
updateAsync(UpdateAutoscalerRequest request)
Updates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.rpc.UnaryCallable<UpdateAutoscalerRequest,Operation> |
updateCallable()
Updates an autoscaler in the specified project using the data included in the request.
|
com.google.api.gax.rpc.OperationCallable<UpdateAutoscalerRequest,Operation,Operation> |
updateOperationCallable()
Updates an autoscaler in the specified project using the data included in the request.
|
protected AutoscalersClient(AutoscalersSettings settings) throws IOException
IOExceptionprotected AutoscalersClient(AutoscalersStub stub)
public static final AutoscalersClient create() throws IOException
IOExceptionpublic static final AutoscalersClient create(AutoscalersSettings settings) throws IOException
IOExceptionpublic static final AutoscalersClient create(AutoscalersStub stub)
public final AutoscalersSettings getSettings()
public AutoscalersStub getStub()
public final AutoscalersClient.AggregatedListPagedResponse aggregatedList(String project)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
for (Map.Entry<String, AutoscalersScopedList> element :
autoscalersClient.aggregatedList(project).iterateAll()) {
// doThingsWith(element);
}
}
project - Project ID for this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalersClient.AggregatedListPagedResponse aggregatedList(AggregatedListAutoscalersRequest request)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
AggregatedListAutoscalersRequest request =
AggregatedListAutoscalersRequest.newBuilder()
.setFilter("filter-1274492040")
.setIncludeAllScopes(true)
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setServiceProjectNumber(-1293855239)
.build();
for (Map.Entry<String, AutoscalersScopedList> element :
autoscalersClient.aggregatedList(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<AggregatedListAutoscalersRequest,AutoscalersClient.AggregatedListPagedResponse> aggregatedListPagedCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
AggregatedListAutoscalersRequest request =
AggregatedListAutoscalersRequest.newBuilder()
.setFilter("filter-1274492040")
.setIncludeAllScopes(true)
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setServiceProjectNumber(-1293855239)
.build();
ApiFuture<Map.Entry<String, AutoscalersScopedList>> future =
autoscalersClient.aggregatedListPagedCallable().futureCall(request);
// Do something.
for (Map.Entry<String, AutoscalersScopedList> element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<AggregatedListAutoscalersRequest,AutoscalerAggregatedList> aggregatedListCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
AggregatedListAutoscalersRequest request =
AggregatedListAutoscalersRequest.newBuilder()
.setFilter("filter-1274492040")
.setIncludeAllScopes(true)
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setServiceProjectNumber(-1293855239)
.build();
while (true) {
AutoscalerAggregatedList response =
autoscalersClient.aggregatedListCallable().call(request);
for (Map.Entry<String, AutoscalersScopedList> element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteAsync(String project, String zone, String autoscaler)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String autoscaler = "autoscaler517258967";
Operation response = autoscalersClient.deleteAsync(project, zone, autoscaler).get();
}
project - Project ID for this request.zone - Name of the zone for this request.autoscaler - Name of the autoscaler to delete.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteAsync(DeleteAutoscalerRequest request)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
DeleteAutoscalerRequest request =
DeleteAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
Operation response = autoscalersClient.deleteAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteAutoscalerRequest,Operation,Operation> deleteOperationCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
DeleteAutoscalerRequest request =
DeleteAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
OperationFuture<Operation, Operation> future =
autoscalersClient.deleteOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteAutoscalerRequest,Operation> deleteCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
DeleteAutoscalerRequest request =
DeleteAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
ApiFuture<Operation> future = autoscalersClient.deleteCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final Autoscaler get(String project, String zone, String autoscaler)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String autoscaler = "autoscaler517258967";
Autoscaler response = autoscalersClient.get(project, zone, autoscaler);
}
project - Project ID for this request.zone - Name of the zone for this request.autoscaler - Name of the autoscaler to return.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Autoscaler get(GetAutoscalerRequest request)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
GetAutoscalerRequest request =
GetAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setProject("project-309310695")
.setZone("zone3744684")
.build();
Autoscaler response = autoscalersClient.get(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetAutoscalerRequest,Autoscaler> getCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
GetAutoscalerRequest request =
GetAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setProject("project-309310695")
.setZone("zone3744684")
.build();
ApiFuture<Autoscaler> future = autoscalersClient.getCallable().futureCall(request);
// Do something.
Autoscaler response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> insertAsync(String project, String zone, Autoscaler autoscalerResource)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
Autoscaler autoscalerResource = Autoscaler.newBuilder().build();
Operation response = autoscalersClient.insertAsync(project, zone, autoscalerResource).get();
}
project - Project ID for this request.zone - Name of the zone for this request.autoscalerResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> insertAsync(InsertAutoscalerRequest request)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
InsertAutoscalerRequest request =
InsertAutoscalerRequest.newBuilder()
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
Operation response = autoscalersClient.insertAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<InsertAutoscalerRequest,Operation,Operation> insertOperationCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
InsertAutoscalerRequest request =
InsertAutoscalerRequest.newBuilder()
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
OperationFuture<Operation, Operation> future =
autoscalersClient.insertOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<InsertAutoscalerRequest,Operation> insertCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
InsertAutoscalerRequest request =
InsertAutoscalerRequest.newBuilder()
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
ApiFuture<Operation> future = autoscalersClient.insertCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final AutoscalersClient.ListPagedResponse list(String project, String zone)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
for (Autoscaler element : autoscalersClient.list(project, zone).iterateAll()) {
// doThingsWith(element);
}
}
project - Project ID for this request.zone - Name of the zone for this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalersClient.ListPagedResponse list(ListAutoscalersRequest request)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
ListAutoscalersRequest request =
ListAutoscalersRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
for (Autoscaler element : autoscalersClient.list(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListAutoscalersRequest,AutoscalersClient.ListPagedResponse> listPagedCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
ListAutoscalersRequest request =
ListAutoscalersRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
ApiFuture<Autoscaler> future = autoscalersClient.listPagedCallable().futureCall(request);
// Do something.
for (Autoscaler element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListAutoscalersRequest,AutoscalerList> listCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
ListAutoscalersRequest request =
ListAutoscalersRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
while (true) {
AutoscalerList response = autoscalersClient.listCallable().call(request);
for (Autoscaler element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> patchAsync(String project, String zone, Autoscaler autoscalerResource)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
Autoscaler autoscalerResource = Autoscaler.newBuilder().build();
Operation response = autoscalersClient.patchAsync(project, zone, autoscalerResource).get();
}
project - Project ID for this request.zone - Name of the zone for this request.autoscalerResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> patchAsync(PatchAutoscalerRequest request)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
PatchAutoscalerRequest request =
PatchAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
Operation response = autoscalersClient.patchAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<PatchAutoscalerRequest,Operation,Operation> patchOperationCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
PatchAutoscalerRequest request =
PatchAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
OperationFuture<Operation, Operation> future =
autoscalersClient.patchOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<PatchAutoscalerRequest,Operation> patchCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
PatchAutoscalerRequest request =
PatchAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
ApiFuture<Operation> future = autoscalersClient.patchCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> updateAsync(String project, String zone, Autoscaler autoscalerResource)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
Autoscaler autoscalerResource = Autoscaler.newBuilder().build();
Operation response = autoscalersClient.updateAsync(project, zone, autoscalerResource).get();
}
project - Project ID for this request.zone - Name of the zone for this request.autoscalerResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> updateAsync(UpdateAutoscalerRequest request)
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
UpdateAutoscalerRequest request =
UpdateAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
Operation response = autoscalersClient.updateAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UpdateAutoscalerRequest,Operation,Operation> updateOperationCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
UpdateAutoscalerRequest request =
UpdateAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
OperationFuture<Operation, Operation> future =
autoscalersClient.updateOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UpdateAutoscalerRequest,Operation> updateCallable()
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 (AutoscalersClient autoscalersClient = AutoscalersClient.create()) {
UpdateAutoscalerRequest request =
UpdateAutoscalerRequest.newBuilder()
.setAutoscaler("autoscaler517258967")
.setAutoscalerResource(Autoscaler.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setZone("zone3744684")
.build();
ApiFuture<Operation> future = autoscalersClient.updateCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2024 Google LLC. All rights reserved.