@Generated(value="by gapic-generator-java") public class BackendBucketsClient 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
BackendBucket response = backendBucketsClient.get(project, backendBucket);
}
Note: close() needs to be called on the BackendBucketsClient 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 |
|---|---|---|
AddSignedUrlKey |
Adds a key for validating requests with signed URLs for this backend bucket. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Delete |
Deletes the specified BackendBucket resource. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteSignedUrlKey |
Deletes a key for validating requests with signed URLs for this backend bucket. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Get |
Returns the specified BackendBucket resource. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Insert |
Creates a BackendBucket resource in the specified project using the data included in the request. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
List |
Retrieves the list of BackendBucket resources available to the specified 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.
|
Patch |
Updates the specified BackendBucket resource with the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
SetEdgeSecurityPolicy |
Sets the edge security policy for the specified backend bucket. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"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.
|
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.
"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.
|
Update |
Updates the specified BackendBucket resource with the data included in the request. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of BackendBucketsSettings 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
BackendBucketsSettings backendBucketsSettings =
BackendBucketsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
BackendBucketsClient backendBucketsClient = BackendBucketsClient.create(backendBucketsSettings);
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
BackendBucketsSettings backendBucketsSettings =
BackendBucketsSettings.newBuilder().setEndpoint(myEndpoint).build();
BackendBucketsClient backendBucketsClient = BackendBucketsClient.create(backendBucketsSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
BackendBucketsClient.ListFixedSizeCollection |
static class |
BackendBucketsClient.ListPage |
static class |
BackendBucketsClient.ListPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
BackendBucketsClient(BackendBucketsSettings settings)
Constructs an instance of BackendBucketsClient, using the given settings.
|
protected |
BackendBucketsClient(BackendBucketsStub stub) |
| Modifier and Type | Method and Description |
|---|---|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
addSignedUrlKeyAsync(AddSignedUrlKeyBackendBucketRequest request)
Adds a key for validating requests with signed URLs for this backend bucket.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
addSignedUrlKeyAsync(String project,
String backendBucket,
SignedUrlKey signedUrlKeyResource)
Adds a key for validating requests with signed URLs for this backend bucket.
|
com.google.api.gax.rpc.UnaryCallable<AddSignedUrlKeyBackendBucketRequest,Operation> |
addSignedUrlKeyCallable()
Adds a key for validating requests with signed URLs for this backend bucket.
|
com.google.api.gax.rpc.OperationCallable<AddSignedUrlKeyBackendBucketRequest,Operation,Operation> |
addSignedUrlKeyOperationCallable()
Adds a key for validating requests with signed URLs for this backend bucket.
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static BackendBucketsClient |
create()
Constructs an instance of BackendBucketsClient with default settings.
|
static BackendBucketsClient |
create(BackendBucketsSettings settings)
Constructs an instance of BackendBucketsClient, using the given settings.
|
static BackendBucketsClient |
create(BackendBucketsStub stub)
Constructs an instance of BackendBucketsClient, using the given stub for making calls.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteAsync(DeleteBackendBucketRequest request)
Deletes the specified BackendBucket resource.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteAsync(String project,
String backendBucket)
Deletes the specified BackendBucket resource.
|
com.google.api.gax.rpc.UnaryCallable<DeleteBackendBucketRequest,Operation> |
deleteCallable()
Deletes the specified BackendBucket resource.
|
com.google.api.gax.rpc.OperationCallable<DeleteBackendBucketRequest,Operation,Operation> |
deleteOperationCallable()
Deletes the specified BackendBucket resource.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteSignedUrlKeyAsync(DeleteSignedUrlKeyBackendBucketRequest request)
Deletes a key for validating requests with signed URLs for this backend bucket.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteSignedUrlKeyAsync(String project,
String backendBucket,
String keyName)
Deletes a key for validating requests with signed URLs for this backend bucket.
|
com.google.api.gax.rpc.UnaryCallable<DeleteSignedUrlKeyBackendBucketRequest,Operation> |
deleteSignedUrlKeyCallable()
Deletes a key for validating requests with signed URLs for this backend bucket.
|
com.google.api.gax.rpc.OperationCallable<DeleteSignedUrlKeyBackendBucketRequest,Operation,Operation> |
deleteSignedUrlKeyOperationCallable()
Deletes a key for validating requests with signed URLs for this backend bucket.
|
BackendBucket |
get(GetBackendBucketRequest request)
Returns the specified BackendBucket resource.
|
BackendBucket |
get(String project,
String backendBucket)
Returns the specified BackendBucket resource.
|
com.google.api.gax.rpc.UnaryCallable<GetBackendBucketRequest,BackendBucket> |
getCallable()
Returns the specified BackendBucket resource.
|
Policy |
getIamPolicy(GetIamPolicyBackendBucketRequest request)
Gets the access control policy for a resource.
|
Policy |
getIamPolicy(String project,
String resource)
Gets the access control policy for a resource.
|
com.google.api.gax.rpc.UnaryCallable<GetIamPolicyBackendBucketRequest,Policy> |
getIamPolicyCallable()
Gets the access control policy for a resource.
|
BackendBucketsSettings |
getSettings() |
BackendBucketsStub |
getStub() |
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
insertAsync(InsertBackendBucketRequest request)
Creates a BackendBucket resource in the specified project using the data included in the
request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
insertAsync(String project,
BackendBucket backendBucketResource)
Creates a BackendBucket resource in the specified project using the data included in the
request.
|
com.google.api.gax.rpc.UnaryCallable<InsertBackendBucketRequest,Operation> |
insertCallable()
Creates a BackendBucket resource in the specified project using the data included in the
request.
|
com.google.api.gax.rpc.OperationCallable<InsertBackendBucketRequest,Operation,Operation> |
insertOperationCallable()
Creates a BackendBucket resource in the specified project using the data included in the
request.
|
boolean |
isShutdown() |
boolean |
isTerminated() |
BackendBucketsClient.ListPagedResponse |
list(ListBackendBucketsRequest request)
Retrieves the list of BackendBucket resources available to the specified project.
|
BackendBucketsClient.ListPagedResponse |
list(String project)
Retrieves the list of BackendBucket resources available to the specified project.
|
com.google.api.gax.rpc.UnaryCallable<ListBackendBucketsRequest,BackendBucketList> |
listCallable()
Retrieves the list of BackendBucket resources available to the specified project.
|
com.google.api.gax.rpc.UnaryCallable<ListBackendBucketsRequest,BackendBucketsClient.ListPagedResponse> |
listPagedCallable()
Retrieves the list of BackendBucket resources available to the specified project.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
patchAsync(PatchBackendBucketRequest request)
Updates the specified BackendBucket resource with the data included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
patchAsync(String project,
String backendBucket,
BackendBucket backendBucketResource)
Updates the specified BackendBucket resource with the data included in the request.
|
com.google.api.gax.rpc.UnaryCallable<PatchBackendBucketRequest,Operation> |
patchCallable()
Updates the specified BackendBucket resource with the data included in the request.
|
com.google.api.gax.rpc.OperationCallable<PatchBackendBucketRequest,Operation,Operation> |
patchOperationCallable()
Updates the specified BackendBucket resource with the data included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
setEdgeSecurityPolicyAsync(SetEdgeSecurityPolicyBackendBucketRequest request)
Sets the edge security policy for the specified backend bucket.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
setEdgeSecurityPolicyAsync(String project,
String backendBucket,
SecurityPolicyReference securityPolicyReferenceResource)
Sets the edge security policy for the specified backend bucket.
|
com.google.api.gax.rpc.UnaryCallable<SetEdgeSecurityPolicyBackendBucketRequest,Operation> |
setEdgeSecurityPolicyCallable()
Sets the edge security policy for the specified backend bucket.
|
com.google.api.gax.rpc.OperationCallable<SetEdgeSecurityPolicyBackendBucketRequest,Operation,Operation> |
setEdgeSecurityPolicyOperationCallable()
Sets the edge security policy for the specified backend bucket.
|
Policy |
setIamPolicy(SetIamPolicyBackendBucketRequest request)
Sets the access control policy on the specified resource.
|
Policy |
setIamPolicy(String project,
String resource,
GlobalSetPolicyRequest globalSetPolicyRequestResource)
Sets the access control policy on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<SetIamPolicyBackendBucketRequest,Policy> |
setIamPolicyCallable()
Sets the access control policy on the specified resource.
|
void |
shutdown() |
void |
shutdownNow() |
TestPermissionsResponse |
testIamPermissions(String project,
String resource,
TestPermissionsRequest testPermissionsRequestResource)
Returns permissions that a caller has on the specified resource.
|
TestPermissionsResponse |
testIamPermissions(TestIamPermissionsBackendBucketRequest request)
Returns permissions that a caller has on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<TestIamPermissionsBackendBucketRequest,TestPermissionsResponse> |
testIamPermissionsCallable()
Returns permissions that a caller has on the specified resource.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
updateAsync(String project,
String backendBucket,
BackendBucket backendBucketResource)
Updates the specified BackendBucket resource with the data included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
updateAsync(UpdateBackendBucketRequest request)
Updates the specified BackendBucket resource with the data included in the request.
|
com.google.api.gax.rpc.UnaryCallable<UpdateBackendBucketRequest,Operation> |
updateCallable()
Updates the specified BackendBucket resource with the data included in the request.
|
com.google.api.gax.rpc.OperationCallable<UpdateBackendBucketRequest,Operation,Operation> |
updateOperationCallable()
Updates the specified BackendBucket resource with the data included in the request.
|
protected BackendBucketsClient(BackendBucketsSettings settings) throws IOException
IOExceptionprotected BackendBucketsClient(BackendBucketsStub stub)
public static final BackendBucketsClient create() throws IOException
IOExceptionpublic static final BackendBucketsClient create(BackendBucketsSettings settings) throws IOException
IOExceptionpublic static final BackendBucketsClient create(BackendBucketsStub stub)
public final BackendBucketsSettings getSettings()
public BackendBucketsStub getStub()
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> addSignedUrlKeyAsync(String project, String backendBucket, SignedUrlKey signedUrlKeyResource)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
SignedUrlKey signedUrlKeyResource = SignedUrlKey.newBuilder().build();
Operation response =
backendBucketsClient
.addSignedUrlKeyAsync(project, backendBucket, signedUrlKeyResource)
.get();
}
project - Project ID for this request.backendBucket - Name of the BackendBucket resource to which the Signed URL Key should be
added. The name should conform to RFC1035.signedUrlKeyResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> addSignedUrlKeyAsync(AddSignedUrlKeyBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
AddSignedUrlKeyBackendBucketRequest request =
AddSignedUrlKeyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSignedUrlKeyResource(SignedUrlKey.newBuilder().build())
.build();
Operation response = backendBucketsClient.addSignedUrlKeyAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<AddSignedUrlKeyBackendBucketRequest,Operation,Operation> addSignedUrlKeyOperationCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
AddSignedUrlKeyBackendBucketRequest request =
AddSignedUrlKeyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSignedUrlKeyResource(SignedUrlKey.newBuilder().build())
.build();
OperationFuture<Operation, Operation> future =
backendBucketsClient.addSignedUrlKeyOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<AddSignedUrlKeyBackendBucketRequest,Operation> addSignedUrlKeyCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
AddSignedUrlKeyBackendBucketRequest request =
AddSignedUrlKeyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSignedUrlKeyResource(SignedUrlKey.newBuilder().build())
.build();
ApiFuture<Operation> future =
backendBucketsClient.addSignedUrlKeyCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteAsync(String project, String backendBucket)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
Operation response = backendBucketsClient.deleteAsync(project, backendBucket).get();
}
project - Project ID for this request.backendBucket - Name of the BackendBucket resource to delete.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteAsync(DeleteBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
DeleteBackendBucketRequest request =
DeleteBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
Operation response = backendBucketsClient.deleteAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteBackendBucketRequest,Operation,Operation> deleteOperationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
DeleteBackendBucketRequest request =
DeleteBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
backendBucketsClient.deleteOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteBackendBucketRequest,Operation> deleteCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
DeleteBackendBucketRequest request =
DeleteBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future = backendBucketsClient.deleteCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteSignedUrlKeyAsync(String project, String backendBucket, String keyName)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
String keyName = "keyName-815643254";
Operation response =
backendBucketsClient.deleteSignedUrlKeyAsync(project, backendBucket, keyName).get();
}
project - Project ID for this request.backendBucket - Name of the BackendBucket resource to which the Signed URL Key should be
added. The name should conform to RFC1035.keyName - The name of the Signed URL Key to delete.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteSignedUrlKeyAsync(DeleteSignedUrlKeyBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
DeleteSignedUrlKeyBackendBucketRequest request =
DeleteSignedUrlKeyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setKeyName("keyName-815643254")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
Operation response = backendBucketsClient.deleteSignedUrlKeyAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteSignedUrlKeyBackendBucketRequest,Operation,Operation> deleteSignedUrlKeyOperationCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
DeleteSignedUrlKeyBackendBucketRequest request =
DeleteSignedUrlKeyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setKeyName("keyName-815643254")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
backendBucketsClient.deleteSignedUrlKeyOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteSignedUrlKeyBackendBucketRequest,Operation> deleteSignedUrlKeyCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
DeleteSignedUrlKeyBackendBucketRequest request =
DeleteSignedUrlKeyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setKeyName("keyName-815643254")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
backendBucketsClient.deleteSignedUrlKeyCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final BackendBucket get(String project, String backendBucket)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
BackendBucket response = backendBucketsClient.get(project, backendBucket);
}
project - Project ID for this request.backendBucket - Name of the BackendBucket resource to return.com.google.api.gax.rpc.ApiException - if the remote call failspublic final BackendBucket get(GetBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
GetBackendBucketRequest request =
GetBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.build();
BackendBucket response = backendBucketsClient.get(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetBackendBucketRequest,BackendBucket> getCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
GetBackendBucketRequest request =
GetBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.build();
ApiFuture<BackendBucket> future = backendBucketsClient.getCallable().futureCall(request);
// Do something.
BackendBucket response = future.get();
}
public final Policy getIamPolicy(String project, String 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String resource = "resource-341064690";
Policy response = backendBucketsClient.getIamPolicy(project, resource);
}
project - Project ID for this request.resource - Name or id of the resource for this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Policy getIamPolicy(GetIamPolicyBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
GetIamPolicyBackendBucketRequest request =
GetIamPolicyBackendBucketRequest.newBuilder()
.setOptionsRequestedPolicyVersion(-574521795)
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
Policy response = backendBucketsClient.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<GetIamPolicyBackendBucketRequest,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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
GetIamPolicyBackendBucketRequest request =
GetIamPolicyBackendBucketRequest.newBuilder()
.setOptionsRequestedPolicyVersion(-574521795)
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
ApiFuture<Policy> future = backendBucketsClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> insertAsync(String project, BackendBucket backendBucketResource)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
BackendBucket backendBucketResource = BackendBucket.newBuilder().build();
Operation response = backendBucketsClient.insertAsync(project, backendBucketResource).get();
}
project - Project ID for this request.backendBucketResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> insertAsync(InsertBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
InsertBackendBucketRequest request =
InsertBackendBucketRequest.newBuilder()
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
Operation response = backendBucketsClient.insertAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<InsertBackendBucketRequest,Operation,Operation> insertOperationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
InsertBackendBucketRequest request =
InsertBackendBucketRequest.newBuilder()
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
backendBucketsClient.insertOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<InsertBackendBucketRequest,Operation> insertCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
InsertBackendBucketRequest request =
InsertBackendBucketRequest.newBuilder()
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future = backendBucketsClient.insertCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final BackendBucketsClient.ListPagedResponse list(String project)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
for (BackendBucket element : backendBucketsClient.list(project).iterateAll()) {
// doThingsWith(element);
}
}
project - Project ID for this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final BackendBucketsClient.ListPagedResponse list(ListBackendBucketsRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
ListBackendBucketsRequest request =
ListBackendBucketsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
for (BackendBucket element : backendBucketsClient.list(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListBackendBucketsRequest,BackendBucketsClient.ListPagedResponse> listPagedCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
ListBackendBucketsRequest request =
ListBackendBucketsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
ApiFuture<BackendBucket> future =
backendBucketsClient.listPagedCallable().futureCall(request);
// Do something.
for (BackendBucket element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListBackendBucketsRequest,BackendBucketList> listCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
ListBackendBucketsRequest request =
ListBackendBucketsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
while (true) {
BackendBucketList response = backendBucketsClient.listCallable().call(request);
for (BackendBucket element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> patchAsync(String project, String backendBucket, BackendBucket backendBucketResource)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
BackendBucket backendBucketResource = BackendBucket.newBuilder().build();
Operation response =
backendBucketsClient.patchAsync(project, backendBucket, backendBucketResource).get();
}
project - Project ID for this request.backendBucket - Name of the BackendBucket resource to patch.backendBucketResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> patchAsync(PatchBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
PatchBackendBucketRequest request =
PatchBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
Operation response = backendBucketsClient.patchAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<PatchBackendBucketRequest,Operation,Operation> patchOperationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
PatchBackendBucketRequest request =
PatchBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
backendBucketsClient.patchOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<PatchBackendBucketRequest,Operation> patchCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
PatchBackendBucketRequest request =
PatchBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future = backendBucketsClient.patchCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> setEdgeSecurityPolicyAsync(String project, String backendBucket, SecurityPolicyReference securityPolicyReferenceResource)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
SecurityPolicyReference securityPolicyReferenceResource =
SecurityPolicyReference.newBuilder().build();
Operation response =
backendBucketsClient
.setEdgeSecurityPolicyAsync(project, backendBucket, securityPolicyReferenceResource)
.get();
}
project - Project ID for this request.backendBucket - Name of the BackendBucket resource to which the security policy should be
set. The name should conform to RFC1035.securityPolicyReferenceResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> setEdgeSecurityPolicyAsync(SetEdgeSecurityPolicyBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
SetEdgeSecurityPolicyBackendBucketRequest request =
SetEdgeSecurityPolicyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSecurityPolicyReferenceResource(SecurityPolicyReference.newBuilder().build())
.build();
Operation response = backendBucketsClient.setEdgeSecurityPolicyAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<SetEdgeSecurityPolicyBackendBucketRequest,Operation,Operation> setEdgeSecurityPolicyOperationCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
SetEdgeSecurityPolicyBackendBucketRequest request =
SetEdgeSecurityPolicyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSecurityPolicyReferenceResource(SecurityPolicyReference.newBuilder().build())
.build();
OperationFuture<Operation, Operation> future =
backendBucketsClient.setEdgeSecurityPolicyOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<SetEdgeSecurityPolicyBackendBucketRequest,Operation> setEdgeSecurityPolicyCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
SetEdgeSecurityPolicyBackendBucketRequest request =
SetEdgeSecurityPolicyBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSecurityPolicyReferenceResource(SecurityPolicyReference.newBuilder().build())
.build();
ApiFuture<Operation> future =
backendBucketsClient.setEdgeSecurityPolicyCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final Policy setIamPolicy(String project, String resource, GlobalSetPolicyRequest globalSetPolicyRequestResource)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String resource = "resource-341064690";
GlobalSetPolicyRequest globalSetPolicyRequestResource =
GlobalSetPolicyRequest.newBuilder().build();
Policy response =
backendBucketsClient.setIamPolicy(project, resource, globalSetPolicyRequestResource);
}
project - Project ID for this request.resource - Name or id of the resource for this request.globalSetPolicyRequestResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final Policy setIamPolicy(SetIamPolicyBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
SetIamPolicyBackendBucketRequest request =
SetIamPolicyBackendBucketRequest.newBuilder()
.setGlobalSetPolicyRequestResource(GlobalSetPolicyRequest.newBuilder().build())
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
Policy response = backendBucketsClient.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<SetIamPolicyBackendBucketRequest,Policy> setIamPolicyCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
SetIamPolicyBackendBucketRequest request =
SetIamPolicyBackendBucketRequest.newBuilder()
.setGlobalSetPolicyRequestResource(GlobalSetPolicyRequest.newBuilder().build())
.setProject("project-309310695")
.setResource("resource-341064690")
.build();
ApiFuture<Policy> future = backendBucketsClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final TestPermissionsResponse testIamPermissions(String project, String resource, TestPermissionsRequest testPermissionsRequestResource)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String resource = "resource-341064690";
TestPermissionsRequest testPermissionsRequestResource =
TestPermissionsRequest.newBuilder().build();
TestPermissionsResponse response =
backendBucketsClient.testIamPermissions(
project, resource, testPermissionsRequestResource);
}
project - Project ID for this request.resource - Name or id of the resource for this request.testPermissionsRequestResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final TestPermissionsResponse testIamPermissions(TestIamPermissionsBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
TestIamPermissionsBackendBucketRequest request =
TestIamPermissionsBackendBucketRequest.newBuilder()
.setProject("project-309310695")
.setResource("resource-341064690")
.setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
.build();
TestPermissionsResponse response = backendBucketsClient.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<TestIamPermissionsBackendBucketRequest,TestPermissionsResponse> testIamPermissionsCallable()
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
TestIamPermissionsBackendBucketRequest request =
TestIamPermissionsBackendBucketRequest.newBuilder()
.setProject("project-309310695")
.setResource("resource-341064690")
.setTestPermissionsRequestResource(TestPermissionsRequest.newBuilder().build())
.build();
ApiFuture<TestPermissionsResponse> future =
backendBucketsClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestPermissionsResponse response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> updateAsync(String project, String backendBucket, BackendBucket backendBucketResource)
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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
String project = "project-309310695";
String backendBucket = "backendBucket713751966";
BackendBucket backendBucketResource = BackendBucket.newBuilder().build();
Operation response =
backendBucketsClient.updateAsync(project, backendBucket, backendBucketResource).get();
}
project - Project ID for this request.backendBucket - Name of the BackendBucket resource to update.backendBucketResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> updateAsync(UpdateBackendBucketRequest 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 (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
UpdateBackendBucketRequest request =
UpdateBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
Operation response = backendBucketsClient.updateAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UpdateBackendBucketRequest,Operation,Operation> updateOperationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
UpdateBackendBucketRequest request =
UpdateBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
backendBucketsClient.updateOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UpdateBackendBucketRequest,Operation> updateCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BackendBucketsClient backendBucketsClient = BackendBucketsClient.create()) {
UpdateBackendBucketRequest request =
UpdateBackendBucketRequest.newBuilder()
.setBackendBucket("backendBucket713751966")
.setBackendBucketResource(BackendBucket.newBuilder().build())
.setProject("project-309310695")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future = backendBucketsClient.updateCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2024 Google LLC. All rights reserved.