@Generated(value="by gapic-generator-java") public class AutoscalingPolicyServiceClient 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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
AutoscalingPolicy policy = AutoscalingPolicy.newBuilder().build();
AutoscalingPolicy response =
autoscalingPolicyServiceClient.createAutoscalingPolicy(parent, policy);
}
Note: close() needs to be called on the AutoscalingPolicyServiceClient 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 |
|---|---|---|
CreateAutoscalingPolicy |
Creates new autoscaling policy. |
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.
|
UpdateAutoscalingPolicy |
Updates (replaces) autoscaling policy. Disabled check for update_mask, because all updates will be full replacements. |
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.
|
GetAutoscalingPolicy |
Retrieves autoscaling policy. |
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.
|
ListAutoscalingPolicies |
Lists autoscaling policies in the project. |
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.
|
DeleteAutoscalingPolicy |
Deletes an autoscaling policy. It is an error to delete an autoscaling policy that is in use by one or more clusters. |
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.
|
SetIamPolicy |
Sets the access control policy on the specified resource. Replacesany existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetIamPolicy |
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
TestIamPermissions |
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
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 AutoscalingPolicyServiceSettings 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
AutoscalingPolicyServiceSettings autoscalingPolicyServiceSettings =
AutoscalingPolicyServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create(autoscalingPolicyServiceSettings);
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
AutoscalingPolicyServiceSettings autoscalingPolicyServiceSettings =
AutoscalingPolicyServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create(autoscalingPolicyServiceSettings);
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
AutoscalingPolicyServiceSettings autoscalingPolicyServiceSettings =
AutoscalingPolicyServiceSettings.newHttpJsonBuilder().build();
AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create(autoscalingPolicyServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
AutoscalingPolicyServiceClient.ListAutoscalingPoliciesFixedSizeCollection |
static class |
AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPage |
static class |
AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
AutoscalingPolicyServiceClient(AutoscalingPolicyServiceSettings settings)
Constructs an instance of AutoscalingPolicyServiceClient, using the given settings.
|
protected |
AutoscalingPolicyServiceClient(AutoscalingPolicyServiceStub stub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static AutoscalingPolicyServiceClient |
create()
Constructs an instance of AutoscalingPolicyServiceClient with default settings.
|
static AutoscalingPolicyServiceClient |
create(AutoscalingPolicyServiceSettings settings)
Constructs an instance of AutoscalingPolicyServiceClient, using the given settings.
|
static AutoscalingPolicyServiceClient |
create(AutoscalingPolicyServiceStub stub)
Constructs an instance of AutoscalingPolicyServiceClient, using the given stub for making
calls.
|
AutoscalingPolicy |
createAutoscalingPolicy(CreateAutoscalingPolicyRequest request)
Creates new autoscaling policy.
|
AutoscalingPolicy |
createAutoscalingPolicy(LocationName parent,
AutoscalingPolicy policy)
Creates new autoscaling policy.
|
AutoscalingPolicy |
createAutoscalingPolicy(RegionName parent,
AutoscalingPolicy policy)
Creates new autoscaling policy.
|
AutoscalingPolicy |
createAutoscalingPolicy(String parent,
AutoscalingPolicy policy)
Creates new autoscaling policy.
|
com.google.api.gax.rpc.UnaryCallable<CreateAutoscalingPolicyRequest,AutoscalingPolicy> |
createAutoscalingPolicyCallable()
Creates new autoscaling policy.
|
void |
deleteAutoscalingPolicy(AutoscalingPolicyName name)
Deletes an autoscaling policy.
|
void |
deleteAutoscalingPolicy(DeleteAutoscalingPolicyRequest request)
Deletes an autoscaling policy.
|
void |
deleteAutoscalingPolicy(String name)
Deletes an autoscaling policy.
|
com.google.api.gax.rpc.UnaryCallable<DeleteAutoscalingPolicyRequest,com.google.protobuf.Empty> |
deleteAutoscalingPolicyCallable()
Deletes an autoscaling policy.
|
AutoscalingPolicy |
getAutoscalingPolicy(AutoscalingPolicyName name)
Retrieves autoscaling policy.
|
AutoscalingPolicy |
getAutoscalingPolicy(GetAutoscalingPolicyRequest request)
Retrieves autoscaling policy.
|
AutoscalingPolicy |
getAutoscalingPolicy(String name)
Retrieves autoscaling policy.
|
com.google.api.gax.rpc.UnaryCallable<GetAutoscalingPolicyRequest,AutoscalingPolicy> |
getAutoscalingPolicyCallable()
Retrieves autoscaling policy.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
getIamPolicyCallable()
Gets the access control policy for a resource.
|
AutoscalingPolicyServiceSettings |
getSettings() |
AutoscalingPolicyServiceStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse |
listAutoscalingPolicies(ListAutoscalingPoliciesRequest request)
Lists autoscaling policies in the project.
|
AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse |
listAutoscalingPolicies(LocationName parent)
Lists autoscaling policies in the project.
|
AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse |
listAutoscalingPolicies(RegionName parent)
Lists autoscaling policies in the project.
|
AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse |
listAutoscalingPolicies(String parent)
Lists autoscaling policies in the project.
|
com.google.api.gax.rpc.UnaryCallable<ListAutoscalingPoliciesRequest,ListAutoscalingPoliciesResponse> |
listAutoscalingPoliciesCallable()
Lists autoscaling policies in the project.
|
com.google.api.gax.rpc.UnaryCallable<ListAutoscalingPoliciesRequest,AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse> |
listAutoscalingPoliciesPagedCallable()
Lists autoscaling policies in the project.
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
setIamPolicyCallable()
Sets the access control policy on the specified resource.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> |
testIamPermissionsCallable()
Returns permissions that a caller has on the specified resource.
|
AutoscalingPolicy |
updateAutoscalingPolicy(AutoscalingPolicy policy)
Updates (replaces) autoscaling policy.
|
AutoscalingPolicy |
updateAutoscalingPolicy(UpdateAutoscalingPolicyRequest request)
Updates (replaces) autoscaling policy.
|
com.google.api.gax.rpc.UnaryCallable<UpdateAutoscalingPolicyRequest,AutoscalingPolicy> |
updateAutoscalingPolicyCallable()
Updates (replaces) autoscaling policy.
|
protected AutoscalingPolicyServiceClient(AutoscalingPolicyServiceSettings settings) throws IOException
IOExceptionprotected AutoscalingPolicyServiceClient(AutoscalingPolicyServiceStub stub)
public static final AutoscalingPolicyServiceClient create() throws IOException
IOExceptionpublic static final AutoscalingPolicyServiceClient create(AutoscalingPolicyServiceSettings settings) throws IOException
IOExceptionpublic static final AutoscalingPolicyServiceClient create(AutoscalingPolicyServiceStub stub)
public final AutoscalingPolicyServiceSettings getSettings()
public AutoscalingPolicyServiceStub getStub()
public final AutoscalingPolicy createAutoscalingPolicy(LocationName parent, AutoscalingPolicy policy)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
AutoscalingPolicy policy = AutoscalingPolicy.newBuilder().build();
AutoscalingPolicy response =
autoscalingPolicyServiceClient.createAutoscalingPolicy(parent, policy);
}
parent - Required. The "resource name" of the region or location, as described in
https://cloud.google.com/apis/design/resource_names.
policy - Required. The autoscaling policy to create.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicy createAutoscalingPolicy(RegionName parent, AutoscalingPolicy policy)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
RegionName parent = RegionName.of("[PROJECT]", "[REGION]");
AutoscalingPolicy policy = AutoscalingPolicy.newBuilder().build();
AutoscalingPolicy response =
autoscalingPolicyServiceClient.createAutoscalingPolicy(parent, policy);
}
parent - Required. The "resource name" of the region or location, as described in
https://cloud.google.com/apis/design/resource_names.
policy - Required. The autoscaling policy to create.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicy createAutoscalingPolicy(String parent, AutoscalingPolicy policy)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
AutoscalingPolicy policy = AutoscalingPolicy.newBuilder().build();
AutoscalingPolicy response =
autoscalingPolicyServiceClient.createAutoscalingPolicy(parent, policy);
}
parent - Required. The "resource name" of the region or location, as described in
https://cloud.google.com/apis/design/resource_names.
policy - Required. The autoscaling policy to create.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicy createAutoscalingPolicy(CreateAutoscalingPolicyRequest 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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
CreateAutoscalingPolicyRequest request =
CreateAutoscalingPolicyRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPolicy(AutoscalingPolicy.newBuilder().build())
.build();
AutoscalingPolicy response = autoscalingPolicyServiceClient.createAutoscalingPolicy(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<CreateAutoscalingPolicyRequest,AutoscalingPolicy> createAutoscalingPolicyCallable()
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
CreateAutoscalingPolicyRequest request =
CreateAutoscalingPolicyRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPolicy(AutoscalingPolicy.newBuilder().build())
.build();
ApiFuture<AutoscalingPolicy> future =
autoscalingPolicyServiceClient.createAutoscalingPolicyCallable().futureCall(request);
// Do something.
AutoscalingPolicy response = future.get();
}
public final AutoscalingPolicy updateAutoscalingPolicy(AutoscalingPolicy policy)
Disabled check for update_mask, because all updates will be full replacements.
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
AutoscalingPolicy policy = AutoscalingPolicy.newBuilder().build();
AutoscalingPolicy response = autoscalingPolicyServiceClient.updateAutoscalingPolicy(policy);
}
policy - Required. The updated autoscaling policy.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicy updateAutoscalingPolicy(UpdateAutoscalingPolicyRequest request)
Disabled check for update_mask, because all updates will be full replacements.
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
UpdateAutoscalingPolicyRequest request =
UpdateAutoscalingPolicyRequest.newBuilder()
.setPolicy(AutoscalingPolicy.newBuilder().build())
.build();
AutoscalingPolicy response = autoscalingPolicyServiceClient.updateAutoscalingPolicy(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<UpdateAutoscalingPolicyRequest,AutoscalingPolicy> updateAutoscalingPolicyCallable()
Disabled check for update_mask, because all updates will be full replacements.
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
UpdateAutoscalingPolicyRequest request =
UpdateAutoscalingPolicyRequest.newBuilder()
.setPolicy(AutoscalingPolicy.newBuilder().build())
.build();
ApiFuture<AutoscalingPolicy> future =
autoscalingPolicyServiceClient.updateAutoscalingPolicyCallable().futureCall(request);
// Do something.
AutoscalingPolicy response = future.get();
}
public final AutoscalingPolicy getAutoscalingPolicy(AutoscalingPolicyName name)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
AutoscalingPolicyName name =
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]");
AutoscalingPolicy response = autoscalingPolicyServiceClient.getAutoscalingPolicy(name);
}
name - Required. The "resource name" of the autoscaling policy, as described in
https://cloud.google.com/apis/design/resource_names.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicy getAutoscalingPolicy(String name)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
String name =
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]")
.toString();
AutoscalingPolicy response = autoscalingPolicyServiceClient.getAutoscalingPolicy(name);
}
name - Required. The "resource name" of the autoscaling policy, as described in
https://cloud.google.com/apis/design/resource_names.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicy getAutoscalingPolicy(GetAutoscalingPolicyRequest 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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
GetAutoscalingPolicyRequest request =
GetAutoscalingPolicyRequest.newBuilder()
.setName(
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]")
.toString())
.build();
AutoscalingPolicy response = autoscalingPolicyServiceClient.getAutoscalingPolicy(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<GetAutoscalingPolicyRequest,AutoscalingPolicy> getAutoscalingPolicyCallable()
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
GetAutoscalingPolicyRequest request =
GetAutoscalingPolicyRequest.newBuilder()
.setName(
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]")
.toString())
.build();
ApiFuture<AutoscalingPolicy> future =
autoscalingPolicyServiceClient.getAutoscalingPolicyCallable().futureCall(request);
// Do something.
AutoscalingPolicy response = future.get();
}
public final AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse listAutoscalingPolicies(LocationName parent)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (AutoscalingPolicy element :
autoscalingPolicyServiceClient.listAutoscalingPolicies(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The "resource name" of the region or location, as described in
https://cloud.google.com/apis/design/resource_names.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse listAutoscalingPolicies(RegionName parent)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
RegionName parent = RegionName.of("[PROJECT]", "[REGION]");
for (AutoscalingPolicy element :
autoscalingPolicyServiceClient.listAutoscalingPolicies(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The "resource name" of the region or location, as described in
https://cloud.google.com/apis/design/resource_names.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse listAutoscalingPolicies(String parent)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (AutoscalingPolicy element :
autoscalingPolicyServiceClient.listAutoscalingPolicies(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The "resource name" of the region or location, as described in
https://cloud.google.com/apis/design/resource_names.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse listAutoscalingPolicies(ListAutoscalingPoliciesRequest 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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
ListAutoscalingPoliciesRequest request =
ListAutoscalingPoliciesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (AutoscalingPolicy element :
autoscalingPolicyServiceClient.listAutoscalingPolicies(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<ListAutoscalingPoliciesRequest,AutoscalingPolicyServiceClient.ListAutoscalingPoliciesPagedResponse> listAutoscalingPoliciesPagedCallable()
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
ListAutoscalingPoliciesRequest request =
ListAutoscalingPoliciesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<AutoscalingPolicy> future =
autoscalingPolicyServiceClient.listAutoscalingPoliciesPagedCallable().futureCall(request);
// Do something.
for (AutoscalingPolicy element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListAutoscalingPoliciesRequest,ListAutoscalingPoliciesResponse> listAutoscalingPoliciesCallable()
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
ListAutoscalingPoliciesRequest request =
ListAutoscalingPoliciesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListAutoscalingPoliciesResponse response =
autoscalingPolicyServiceClient.listAutoscalingPoliciesCallable().call(request);
for (AutoscalingPolicy element : response.getPoliciesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final void deleteAutoscalingPolicy(AutoscalingPolicyName name)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
AutoscalingPolicyName name =
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]");
autoscalingPolicyServiceClient.deleteAutoscalingPolicy(name);
}
name - Required. The "resource name" of the autoscaling policy, as described in
https://cloud.google.com/apis/design/resource_names.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final void deleteAutoscalingPolicy(String name)
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
String name =
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]")
.toString();
autoscalingPolicyServiceClient.deleteAutoscalingPolicy(name);
}
name - Required. The "resource name" of the autoscaling policy, as described in
https://cloud.google.com/apis/design/resource_names.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final void deleteAutoscalingPolicy(DeleteAutoscalingPolicyRequest 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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
DeleteAutoscalingPolicyRequest request =
DeleteAutoscalingPolicyRequest.newBuilder()
.setName(
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]")
.toString())
.build();
autoscalingPolicyServiceClient.deleteAutoscalingPolicy(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<DeleteAutoscalingPolicyRequest,com.google.protobuf.Empty> deleteAutoscalingPolicyCallable()
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
DeleteAutoscalingPolicyRequest request =
DeleteAutoscalingPolicyRequest.newBuilder()
.setName(
AutoscalingPolicyName.ofProjectLocationAutoscalingPolicyName(
"[PROJECT]", "[LOCATION]", "[AUTOSCALING_POLICY]")
.toString())
.build();
ApiFuture<Empty> future =
autoscalingPolicyServiceClient.deleteAutoscalingPolicyCallable().futureCall(request);
// Do something.
future.get();
}
public final com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = autoscalingPolicyServiceClient.setIamPolicy(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<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> setIamPolicyCallable()
Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future =
autoscalingPolicyServiceClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest 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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = autoscalingPolicyServiceClient.getIamPolicy(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<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> getIamPolicyCallable()
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future =
autoscalingPolicyServiceClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response =
autoscalingPolicyServiceClient.testIamPermissions(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<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> testIamPermissionsCallable()
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (AutoscalingPolicyServiceClient autoscalingPolicyServiceClient =
AutoscalingPolicyServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
autoscalingPolicyServiceClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponse 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.