Class RegionInstantSnapshotsClient (1.51.0)

GitHub RepositoryProduct Reference

Service Description: The RegionInstantSnapshots API.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   String instantSnapshot = "instantSnapshot800321221";
   InstantSnapshot response = regionInstantSnapshotsClient.get(project, region, instantSnapshot);
 }
 

Note: close() needs to be called on the RegionInstantSnapshotsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
MethodDescriptionMethod Variants

Delete

Deletes the specified InstantSnapshot resource. Keep in mind that deleting a single instantSnapshot might not necessarily delete all the data on that instantSnapshot. If any data on the instantSnapshot that is marked for deletion is needed for subsequent instantSnapshots, the data will be moved to the next corresponding instantSnapshot. For more information, see Deleting instantSnapshots.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteAsync(DeleteRegionInstantSnapshotRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • deleteAsync(String project, String region, String instantSnapshot)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteOperationCallable()

  • deleteCallable()

Get

Returns the specified InstantSnapshot resource in the specified region.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • get(GetRegionInstantSnapshotRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • get(String project, String region, String instantSnapshot)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getCallable()

GetIamPolicy

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getIamPolicy(GetIamPolicyRegionInstantSnapshotRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getIamPolicy(String project, String region, String resource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getIamPolicyCallable()

Insert

Creates an instant snapshot in the specified region.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • insertAsync(InsertRegionInstantSnapshotRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • insertAsync(String project, String region, InstantSnapshot instantSnapshotResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • insertOperationCallable()

  • insertCallable()

List

Retrieves the list of InstantSnapshot resources contained within the specified region.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • list(ListRegionInstantSnapshotsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • list(String project, String region)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listPagedCallable()

  • listCallable()

SetIamPolicy

Sets the access control policy on the specified resource. Replaces any existing policy.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • setIamPolicy(SetIamPolicyRegionInstantSnapshotRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • setIamPolicy(String project, String region, String resource, RegionSetPolicyRequest regionSetPolicyRequestResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • setIamPolicyCallable()

SetLabels

Sets the labels on a instantSnapshot in the given region. To learn more about labels, read the Labeling Resources documentation.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • setLabelsAsync(SetLabelsRegionInstantSnapshotRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • setLabelsAsync(String project, String region, String resource, RegionSetLabelsRequest regionSetLabelsRequestResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • setLabelsOperationCallable()

  • setLabelsCallable()

TestIamPermissions

Returns permissions that a caller has on the specified resource.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • testIamPermissions(TestIamPermissionsRegionInstantSnapshotRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • testIamPermissions(String project, String region, String resource, TestPermissionsRequest testPermissionsRequestResource)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • testIamPermissionsCallable()

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 RegionInstantSnapshotsSettings 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
 RegionInstantSnapshotsSettings regionInstantSnapshotsSettings =
     RegionInstantSnapshotsSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create(regionInstantSnapshotsSettings);
 

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
 RegionInstantSnapshotsSettings regionInstantSnapshotsSettings =
     RegionInstantSnapshotsSettings.newBuilder().setEndpoint(myEndpoint).build();
 RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create(regionInstantSnapshotsSettings);
 

Please refer to the GitHub repository's samples for more quickstart code snippets.

Inheritance

java.lang.Object > RegionInstantSnapshotsClient

Static Methods

create()

public static final RegionInstantSnapshotsClient create()

Constructs an instance of RegionInstantSnapshotsClient with default settings.

Returns
TypeDescription
RegionInstantSnapshotsClient
Exceptions
TypeDescription
IOException

create(RegionInstantSnapshotsSettings settings)

public static final RegionInstantSnapshotsClient create(RegionInstantSnapshotsSettings settings)

Constructs an instance of RegionInstantSnapshotsClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
NameDescription
settingsRegionInstantSnapshotsSettings
Returns
TypeDescription
RegionInstantSnapshotsClient
Exceptions
TypeDescription
IOException

create(RegionInstantSnapshotsStub stub)

public static final RegionInstantSnapshotsClient create(RegionInstantSnapshotsStub stub)

Constructs an instance of RegionInstantSnapshotsClient, using the given stub for making calls. This is for advanced usage - prefer using create(RegionInstantSnapshotsSettings).

Parameter
NameDescription
stubRegionInstantSnapshotsStub
Returns
TypeDescription
RegionInstantSnapshotsClient

Constructors

RegionInstantSnapshotsClient(RegionInstantSnapshotsSettings settings)

protected RegionInstantSnapshotsClient(RegionInstantSnapshotsSettings settings)

Constructs an instance of RegionInstantSnapshotsClient, 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
NameDescription
settingsRegionInstantSnapshotsSettings

RegionInstantSnapshotsClient(RegionInstantSnapshotsStub stub)

protected RegionInstantSnapshotsClient(RegionInstantSnapshotsStub stub)
Parameter
NameDescription
stubRegionInstantSnapshotsStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

deleteAsync(DeleteRegionInstantSnapshotRequest request)

public final OperationFuture<Operation,Operation> deleteAsync(DeleteRegionInstantSnapshotRequest request)

Deletes the specified InstantSnapshot resource. Keep in mind that deleting a single instantSnapshot might not necessarily delete all the data on that instantSnapshot. If any data on the instantSnapshot that is marked for deletion is needed for subsequent instantSnapshots, the data will be moved to the next corresponding instantSnapshot. For more information, see Deleting instantSnapshots.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   DeleteRegionInstantSnapshotRequest request =
       DeleteRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshot("instantSnapshot800321221")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRequestId("requestId693933066")
           .build();
   Operation response = regionInstantSnapshotsClient.deleteAsync(request).get();
 }
 
Parameter
NameDescription
requestDeleteRegionInstantSnapshotRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
OperationFuture<Operation,Operation>

deleteAsync(String project, String region, String instantSnapshot)

public final OperationFuture<Operation,Operation> deleteAsync(String project, String region, String instantSnapshot)

Deletes the specified InstantSnapshot resource. Keep in mind that deleting a single instantSnapshot might not necessarily delete all the data on that instantSnapshot. If any data on the instantSnapshot that is marked for deletion is needed for subsequent instantSnapshots, the data will be moved to the next corresponding instantSnapshot. For more information, see Deleting instantSnapshots.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   String instantSnapshot = "instantSnapshot800321221";
   Operation response =
       regionInstantSnapshotsClient.deleteAsync(project, region, instantSnapshot).get();
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

instantSnapshotString

Name of the InstantSnapshot resource to delete.

Returns
TypeDescription
OperationFuture<Operation,Operation>

deleteCallable()

public final UnaryCallable<DeleteRegionInstantSnapshotRequest,Operation> deleteCallable()

Deletes the specified InstantSnapshot resource. Keep in mind that deleting a single instantSnapshot might not necessarily delete all the data on that instantSnapshot. If any data on the instantSnapshot that is marked for deletion is needed for subsequent instantSnapshots, the data will be moved to the next corresponding instantSnapshot. For more information, see Deleting instantSnapshots.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   DeleteRegionInstantSnapshotRequest request =
       DeleteRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshot("instantSnapshot800321221")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       regionInstantSnapshotsClient.deleteCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteRegionInstantSnapshotRequest,Operation>

deleteOperationCallable()

public final OperationCallable<DeleteRegionInstantSnapshotRequest,Operation,Operation> deleteOperationCallable()

Deletes the specified InstantSnapshot resource. Keep in mind that deleting a single instantSnapshot might not necessarily delete all the data on that instantSnapshot. If any data on the instantSnapshot that is marked for deletion is needed for subsequent instantSnapshots, the data will be moved to the next corresponding instantSnapshot. For more information, see Deleting instantSnapshots.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   DeleteRegionInstantSnapshotRequest request =
       DeleteRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshot("instantSnapshot800321221")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Operation, Operation> future =
       regionInstantSnapshotsClient.deleteOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<DeleteRegionInstantSnapshotRequest,Operation,Operation>

get(GetRegionInstantSnapshotRequest request)

public final InstantSnapshot get(GetRegionInstantSnapshotRequest request)

Returns the specified InstantSnapshot resource in the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   GetRegionInstantSnapshotRequest request =
       GetRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshot("instantSnapshot800321221")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .build();
   InstantSnapshot response = regionInstantSnapshotsClient.get(request);
 }
 
Parameter
NameDescription
requestGetRegionInstantSnapshotRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
InstantSnapshot

get(String project, String region, String instantSnapshot)

public final InstantSnapshot get(String project, String region, String instantSnapshot)

Returns the specified InstantSnapshot resource in the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   String instantSnapshot = "instantSnapshot800321221";
   InstantSnapshot response = regionInstantSnapshotsClient.get(project, region, instantSnapshot);
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

instantSnapshotString

Name of the InstantSnapshot resource to return.

Returns
TypeDescription
InstantSnapshot

getCallable()

public final UnaryCallable<GetRegionInstantSnapshotRequest,InstantSnapshot> getCallable()

Returns the specified InstantSnapshot resource in the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   GetRegionInstantSnapshotRequest request =
       GetRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshot("instantSnapshot800321221")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .build();
   ApiFuture<InstantSnapshot> future =
       regionInstantSnapshotsClient.getCallable().futureCall(request);
   // Do something.
   InstantSnapshot response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetRegionInstantSnapshotRequest,InstantSnapshot>

getIamPolicy(GetIamPolicyRegionInstantSnapshotRequest request)

public final Policy getIamPolicy(GetIamPolicyRegionInstantSnapshotRequest request)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   GetIamPolicyRegionInstantSnapshotRequest request =
       GetIamPolicyRegionInstantSnapshotRequest.newBuilder()
           .setOptionsRequestedPolicyVersion(-574521795)
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setResource("resource-341064690")
           .build();
   Policy response = regionInstantSnapshotsClient.getIamPolicy(request);
 }
 
Parameter
NameDescription
requestGetIamPolicyRegionInstantSnapshotRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Policy

getIamPolicy(String project, String region, String resource)

public final Policy getIamPolicy(String project, String region, String resource)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   String resource = "resource-341064690";
   Policy response = regionInstantSnapshotsClient.getIamPolicy(project, region, resource);
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

resourceString

Name or id of the resource for this request.

Returns
TypeDescription
Policy

getIamPolicyCallable()

public final UnaryCallable<GetIamPolicyRegionInstantSnapshotRequest,Policy> getIamPolicyCallable()

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   GetIamPolicyRegionInstantSnapshotRequest request =
       GetIamPolicyRegionInstantSnapshotRequest.newBuilder()
           .setOptionsRequestedPolicyVersion(-574521795)
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setResource("resource-341064690")
           .build();
   ApiFuture<Policy> future =
       regionInstantSnapshotsClient.getIamPolicyCallable().futureCall(request);
   // Do something.
   Policy response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetIamPolicyRegionInstantSnapshotRequest,Policy>

getSettings()

public final RegionInstantSnapshotsSettings getSettings()
Returns
TypeDescription
RegionInstantSnapshotsSettings

getStub()

public RegionInstantSnapshotsStub getStub()
Returns
TypeDescription
RegionInstantSnapshotsStub

insertAsync(InsertRegionInstantSnapshotRequest request)

public final OperationFuture<Operation,Operation> insertAsync(InsertRegionInstantSnapshotRequest request)

Creates an instant snapshot in the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   InsertRegionInstantSnapshotRequest request =
       InsertRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshotResource(InstantSnapshot.newBuilder().build())
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRequestId("requestId693933066")
           .build();
   Operation response = regionInstantSnapshotsClient.insertAsync(request).get();
 }
 
Parameter
NameDescription
requestInsertRegionInstantSnapshotRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
OperationFuture<Operation,Operation>

insertAsync(String project, String region, InstantSnapshot instantSnapshotResource)

public final OperationFuture<Operation,Operation> insertAsync(String project, String region, InstantSnapshot instantSnapshotResource)

Creates an instant snapshot in the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   InstantSnapshot instantSnapshotResource = InstantSnapshot.newBuilder().build();
   Operation response =
       regionInstantSnapshotsClient.insertAsync(project, region, instantSnapshotResource).get();
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region for this request.

instantSnapshotResourceInstantSnapshot

The body resource for this request

Returns
TypeDescription
OperationFuture<Operation,Operation>

insertCallable()

public final UnaryCallable<InsertRegionInstantSnapshotRequest,Operation> insertCallable()

Creates an instant snapshot in the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   InsertRegionInstantSnapshotRequest request =
       InsertRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshotResource(InstantSnapshot.newBuilder().build())
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       regionInstantSnapshotsClient.insertCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<InsertRegionInstantSnapshotRequest,Operation>

insertOperationCallable()

public final OperationCallable<InsertRegionInstantSnapshotRequest,Operation,Operation> insertOperationCallable()

Creates an instant snapshot in the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   InsertRegionInstantSnapshotRequest request =
       InsertRegionInstantSnapshotRequest.newBuilder()
           .setInstantSnapshotResource(InstantSnapshot.newBuilder().build())
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Operation, Operation> future =
       regionInstantSnapshotsClient.insertOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<InsertRegionInstantSnapshotRequest,Operation,Operation>

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

list(ListRegionInstantSnapshotsRequest request)

public final RegionInstantSnapshotsClient.ListPagedResponse list(ListRegionInstantSnapshotsRequest request)

Retrieves the list of InstantSnapshot resources contained within the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   ListRegionInstantSnapshotsRequest request =
       ListRegionInstantSnapshotsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setReturnPartialSuccess(true)
           .build();
   for (InstantSnapshot element : regionInstantSnapshotsClient.list(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListRegionInstantSnapshotsRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
RegionInstantSnapshotsClient.ListPagedResponse

list(String project, String region)

public final RegionInstantSnapshotsClient.ListPagedResponse list(String project, String region)

Retrieves the list of InstantSnapshot resources contained within the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   for (InstantSnapshot element :
       regionInstantSnapshotsClient.list(project, region).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

Returns
TypeDescription
RegionInstantSnapshotsClient.ListPagedResponse

listCallable()

public final UnaryCallable<ListRegionInstantSnapshotsRequest,InstantSnapshotList> listCallable()

Retrieves the list of InstantSnapshot resources contained within the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   ListRegionInstantSnapshotsRequest request =
       ListRegionInstantSnapshotsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setReturnPartialSuccess(true)
           .build();
   while (true) {
     InstantSnapshotList response = regionInstantSnapshotsClient.listCallable().call(request);
     for (InstantSnapshot element : response.getItemsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListRegionInstantSnapshotsRequest,InstantSnapshotList>

listPagedCallable()

public final UnaryCallable<ListRegionInstantSnapshotsRequest,RegionInstantSnapshotsClient.ListPagedResponse> listPagedCallable()

Retrieves the list of InstantSnapshot resources contained within the specified region.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   ListRegionInstantSnapshotsRequest request =
       ListRegionInstantSnapshotsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setReturnPartialSuccess(true)
           .build();
   ApiFuture<InstantSnapshot> future =
       regionInstantSnapshotsClient.listPagedCallable().futureCall(request);
   // Do something.
   for (InstantSnapshot element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListRegionInstantSnapshotsRequest,ListPagedResponse>

setIamPolicy(SetIamPolicyRegionInstantSnapshotRequest request)

public final Policy setIamPolicy(SetIamPolicyRegionInstantSnapshotRequest request)

Sets the access control policy on the specified resource. Replaces any existing 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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   SetIamPolicyRegionInstantSnapshotRequest request =
       SetIamPolicyRegionInstantSnapshotRequest.newBuilder()
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRegionSetPolicyRequestResource(RegionSetPolicyRequest.newBuilder().build())
           .setResource("resource-341064690")
           .build();
   Policy response = regionInstantSnapshotsClient.setIamPolicy(request);
 }
 
Parameter
NameDescription
requestSetIamPolicyRegionInstantSnapshotRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Policy

setIamPolicy(String project, String region, String resource, RegionSetPolicyRequest regionSetPolicyRequestResource)

public final Policy setIamPolicy(String project, String region, String resource, RegionSetPolicyRequest regionSetPolicyRequestResource)

Sets the access control policy on the specified resource. Replaces any existing 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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   String resource = "resource-341064690";
   RegionSetPolicyRequest regionSetPolicyRequestResource =
       RegionSetPolicyRequest.newBuilder().build();
   Policy response =
       regionInstantSnapshotsClient.setIamPolicy(
           project, region, resource, regionSetPolicyRequestResource);
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

resourceString

Name or id of the resource for this request.

regionSetPolicyRequestResourceRegionSetPolicyRequest

The body resource for this request

Returns
TypeDescription
Policy

setIamPolicyCallable()

public final UnaryCallable<SetIamPolicyRegionInstantSnapshotRequest,Policy> setIamPolicyCallable()

Sets the access control policy on the specified resource. Replaces any existing 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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   SetIamPolicyRegionInstantSnapshotRequest request =
       SetIamPolicyRegionInstantSnapshotRequest.newBuilder()
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRegionSetPolicyRequestResource(RegionSetPolicyRequest.newBuilder().build())
           .setResource("resource-341064690")
           .build();
   ApiFuture<Policy> future =
       regionInstantSnapshotsClient.setIamPolicyCallable().futureCall(request);
   // Do something.
   Policy response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<SetIamPolicyRegionInstantSnapshotRequest,Policy>

setLabelsAsync(SetLabelsRegionInstantSnapshotRequest request)

public final OperationFuture<Operation,Operation> setLabelsAsync(SetLabelsRegionInstantSnapshotRequest request)

Sets the labels on a instantSnapshot in the given region. To learn more about labels, read the Labeling Resources documentation.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   SetLabelsRegionInstantSnapshotRequest request =
       SetLabelsRegionInstantSnapshotRequest.newBuilder()
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRegionSetLabelsRequestResource(RegionSetLabelsRequest.newBuilder().build())
           .setRequestId("requestId693933066")
           .setResource("resource-341064690")
           .build();
   Operation response = regionInstantSnapshotsClient.setLabelsAsync(request).get();
 }
 
Parameter
NameDescription
requestSetLabelsRegionInstantSnapshotRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
OperationFuture<Operation,Operation>

setLabelsAsync(String project, String region, String resource, RegionSetLabelsRequest regionSetLabelsRequestResource)

public final OperationFuture<Operation,Operation> setLabelsAsync(String project, String region, String resource, RegionSetLabelsRequest regionSetLabelsRequestResource)

Sets the labels on a instantSnapshot in the given region. To learn more about labels, read the Labeling Resources documentation.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   String resource = "resource-341064690";
   RegionSetLabelsRequest regionSetLabelsRequestResource =
       RegionSetLabelsRequest.newBuilder().build();
   Operation response =
       regionInstantSnapshotsClient
           .setLabelsAsync(project, region, resource, regionSetLabelsRequestResource)
           .get();
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

The region for this request.

resourceString

Name or id of the resource for this request.

regionSetLabelsRequestResourceRegionSetLabelsRequest

The body resource for this request

Returns
TypeDescription
OperationFuture<Operation,Operation>

setLabelsCallable()

public final UnaryCallable<SetLabelsRegionInstantSnapshotRequest,Operation> setLabelsCallable()

Sets the labels on a instantSnapshot in the given region. To learn more about labels, read the Labeling Resources documentation.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   SetLabelsRegionInstantSnapshotRequest request =
       SetLabelsRegionInstantSnapshotRequest.newBuilder()
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRegionSetLabelsRequestResource(RegionSetLabelsRequest.newBuilder().build())
           .setRequestId("requestId693933066")
           .setResource("resource-341064690")
           .build();
   ApiFuture<Operation> future =
       regionInstantSnapshotsClient.setLabelsCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<SetLabelsRegionInstantSnapshotRequest,Operation>

setLabelsOperationCallable()

public final OperationCallable<SetLabelsRegionInstantSnapshotRequest,Operation,Operation> setLabelsOperationCallable()

Sets the labels on a instantSnapshot in the given region. To learn more about labels, read the Labeling Resources documentation.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   SetLabelsRegionInstantSnapshotRequest request =
       SetLabelsRegionInstantSnapshotRequest.newBuilder()
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setRegionSetLabelsRequestResource(RegionSetLabelsRequest.newBuilder().build())
           .setRequestId("requestId693933066")
           .setResource("resource-341064690")
           .build();
   OperationFuture<Operation, Operation> future =
       regionInstantSnapshotsClient.setLabelsOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<SetLabelsRegionInstantSnapshotRequest,Operation,Operation>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

testIamPermissions(TestIamPermissionsRegionInstantSnapshotRequest request)

public final TestPermissionsResponse testIamPermissions(TestIamPermissionsRegionInstantSnapshotRequest request)

Returns permissions that a caller has on the specified resource.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   TestIamPermissionsRegionInstantSnapshotRequest request =
       TestIamPermissionsRegionInstantSnapshotRequest.newBuilder()
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setResource("resource-341064690")
           .setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
           .build();
   TestPermissionsResponse response = regionInstantSnapshotsClient.testIamPermissions(request);
 }
 
Parameter
NameDescription
requestTestIamPermissionsRegionInstantSnapshotRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
TestPermissionsResponse

testIamPermissions(String project, String region, String resource, TestPermissionsRequest testPermissionsRequestResource)

public final TestPermissionsResponse testIamPermissions(String project, String region, String resource, TestPermissionsRequest testPermissionsRequestResource)

Returns permissions that a caller has on the specified resource.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   String project = "project-309310695";
   String region = "region-934795532";
   String resource = "resource-341064690";
   TestPermissionsRequest testPermissionsRequestResource =
       TestPermissionsRequest.newBuilder().build();
   TestPermissionsResponse response =
       regionInstantSnapshotsClient.testIamPermissions(
           project, region, resource, testPermissionsRequestResource);
 }
 
Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

resourceString

Name or id of the resource for this request.

testPermissionsRequestResourceTestPermissionsRequest

The body resource for this request

Returns
TypeDescription
TestPermissionsResponse

testIamPermissionsCallable()

public final UnaryCallable<TestIamPermissionsRegionInstantSnapshotRequest,TestPermissionsResponse> testIamPermissionsCallable()

Returns permissions that a caller has on the specified resource.

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 (RegionInstantSnapshotsClient regionInstantSnapshotsClient =
     RegionInstantSnapshotsClient.create()) {
   TestIamPermissionsRegionInstantSnapshotRequest request =
       TestIamPermissionsRegionInstantSnapshotRequest.newBuilder()
           .setProject("project-309310695")
           .setRegion("region-934795532")
           .setResource("resource-341064690")
           .setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
           .build();
   ApiFuture<TestPermissionsResponse> future =
       regionInstantSnapshotsClient.testIamPermissionsCallable().futureCall(request);
   // Do something.
   TestPermissionsResponse response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<TestIamPermissionsRegionInstantSnapshotRequest,TestPermissionsResponse>