| GitHub Repository | Product Reference |
Service Description: The ReservationSlots 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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String parentName = "parentName-244870571";
String reservationSlot = "reservationSlot-337781782";
ReservationSlotsGetResponse response =
reservationSlotsClient.get(project, zone, parentName, reservationSlot);
}
Note: close() needs to be called on the ReservationSlotsClient 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 |
|---|---|---|
Get |
Retrieves information about the specified reservation slot. |
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.
|
GetVersion |
Allows customers to get SBOM versions of a reservation slot. |
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
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
List |
Retrieves a list of reservation slots under a single reservation. |
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 |
Update a reservation slot in the specified sub-block. |
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
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 ReservationSlotsSettings 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
ReservationSlotsSettings reservationSlotsSettings =
ReservationSlotsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ReservationSlotsClient reservationSlotsClient =
ReservationSlotsClient.create(reservationSlotsSettings);
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
ReservationSlotsSettings reservationSlotsSettings =
ReservationSlotsSettings.newBuilder().setEndpoint(myEndpoint).build();
ReservationSlotsClient reservationSlotsClient =
ReservationSlotsClient.create(reservationSlotsSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final ReservationSlotsClient create()Constructs an instance of ReservationSlotsClient with default settings.
| Returns | |
|---|---|
| Type | Description |
ReservationSlotsClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ReservationSlotsSettings settings)
public static final ReservationSlotsClient create(ReservationSlotsSettings settings)Constructs an instance of ReservationSlotsClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
| Parameter | |
|---|---|
| Name | Description |
settings |
ReservationSlotsSettings |
| Returns | |
|---|---|
| Type | Description |
ReservationSlotsClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ReservationSlotsStub stub)
public static final ReservationSlotsClient create(ReservationSlotsStub stub)Constructs an instance of ReservationSlotsClient, using the given stub for making calls. This is for advanced usage - prefer using create(ReservationSlotsSettings).
| Parameter | |
|---|---|
| Name | Description |
stub |
ReservationSlotsStub |
| Returns | |
|---|---|
| Type | Description |
ReservationSlotsClient |
|
Constructors
ReservationSlotsClient(ReservationSlotsSettings settings)
protected ReservationSlotsClient(ReservationSlotsSettings settings)Constructs an instance of ReservationSlotsClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
| Parameter | |
|---|---|
| Name | Description |
settings |
ReservationSlotsSettings |
ReservationSlotsClient(ReservationSlotsStub stub)
protected ReservationSlotsClient(ReservationSlotsStub stub)| Parameter | |
|---|---|
| Name | Description |
stub |
ReservationSlotsStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)| Parameters | |
|---|---|
| Name | Description |
duration |
long |
unit |
TimeUnit |
| Returns | |
|---|---|
| Type | Description |
boolean |
|
| Exceptions | |
|---|---|
| Type | Description |
InterruptedException |
|
close()
public final void close()get(GetReservationSlotRequest request)
public final ReservationSlotsGetResponse get(GetReservationSlotRequest request)Retrieves information about the specified reservation slot.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
GetReservationSlotRequest request =
GetReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReservationSlot("reservationSlot-337781782")
.setZone("zone3744684")
.build();
ReservationSlotsGetResponse response = reservationSlotsClient.get(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetReservationSlotRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ReservationSlotsGetResponse |
|
get(String project, String zone, String parentName, String reservationSlot)
public final ReservationSlotsGetResponse get(String project, String zone, String parentName, String reservationSlot)Retrieves information about the specified reservation slot.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String parentName = "parentName-244870571";
String reservationSlot = "reservationSlot-337781782";
ReservationSlotsGetResponse response =
reservationSlotsClient.get(project, zone, parentName, reservationSlot);
}
| Parameters | |
|---|---|
| Name | Description |
project |
StringThe project ID for this request. |
zone |
StringThe name of the zone for this request, formatted as RFC1035. |
parentName |
StringThe name of the parent reservation and parent block, formatted as reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name} |
reservationSlot |
StringThe name of the reservation slot, formatted as RFC1035 or a resource ID number. |
| Returns | |
|---|---|
| Type | Description |
ReservationSlotsGetResponse |
|
getCallable()
public final UnaryCallable<GetReservationSlotRequest,ReservationSlotsGetResponse> getCallable()Retrieves information about the specified reservation slot.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
GetReservationSlotRequest request =
GetReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReservationSlot("reservationSlot-337781782")
.setZone("zone3744684")
.build();
ApiFuture<ReservationSlotsGetResponse> future =
reservationSlotsClient.getCallable().futureCall(request);
// Do something.
ReservationSlotsGetResponse response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetReservationSlotRequest,ReservationSlotsGetResponse> |
|
getSettings()
public final @Nullable ReservationSlotsSettings getSettings()| Returns | |
|---|---|
| Type | Description |
@org.jspecify.annotations.Nullable com.google.cloud.compute.v1.ReservationSlotsSettings |
|
getStub()
public ReservationSlotsStub getStub()| Returns | |
|---|---|
| Type | Description |
ReservationSlotsStub |
|
getVersionAsync(GetVersionReservationSlotRequest request)
public final OperationFuture<Operation,Operation> getVersionAsync(GetVersionReservationSlotRequest request)Allows customers to get SBOM versions of a reservation slot.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
GetVersionReservationSlotRequest request =
GetVersionReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setReservationSlot("reservationSlot-337781782")
.setReservationSlotsGetVersionRequestResource(
ReservationSlotsGetVersionRequest.newBuilder().build())
.setZone("zone3744684")
.build();
Operation response = reservationSlotsClient.getVersionAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetVersionReservationSlotRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Operation,Operation> |
|
getVersionAsync(String project, String zone, String parentName, String reservationSlot, ReservationSlotsGetVersionRequest reservationSlotsGetVersionRequestResource)
public final OperationFuture<Operation,Operation> getVersionAsync(String project, String zone, String parentName, String reservationSlot, ReservationSlotsGetVersionRequest reservationSlotsGetVersionRequestResource)Allows customers to get SBOM versions of a reservation slot.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String parentName = "parentName-244870571";
String reservationSlot = "reservationSlot-337781782";
ReservationSlotsGetVersionRequest reservationSlotsGetVersionRequestResource =
ReservationSlotsGetVersionRequest.newBuilder().build();
Operation response =
reservationSlotsClient
.getVersionAsync(
project,
zone,
parentName,
reservationSlot,
reservationSlotsGetVersionRequestResource)
.get();
}
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringName of the zone for this request. Zone name should conform to RFC1035. |
parentName |
StringThe name of the parent reservation and parent block. In the format of reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name} |
reservationSlot |
StringThe name of the reservation slot. Name should conform to RFC1035 or be a resource ID. |
reservationSlotsGetVersionRequestResource |
ReservationSlotsGetVersionRequestThe body resource for this request |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Operation,Operation> |
|
getVersionCallable()
public final UnaryCallable<GetVersionReservationSlotRequest,Operation> getVersionCallable()Allows customers to get SBOM versions of a reservation slot.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
GetVersionReservationSlotRequest request =
GetVersionReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setReservationSlot("reservationSlot-337781782")
.setReservationSlotsGetVersionRequestResource(
ReservationSlotsGetVersionRequest.newBuilder().build())
.setZone("zone3744684")
.build();
ApiFuture<Operation> future = reservationSlotsClient.getVersionCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetVersionReservationSlotRequest,Operation> |
|
getVersionOperationCallable()
public final OperationCallable<GetVersionReservationSlotRequest,Operation,Operation> getVersionOperationCallable()Allows customers to get SBOM versions of a reservation slot.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
GetVersionReservationSlotRequest request =
GetVersionReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setReservationSlot("reservationSlot-337781782")
.setReservationSlotsGetVersionRequestResource(
ReservationSlotsGetVersionRequest.newBuilder().build())
.setZone("zone3744684")
.build();
OperationFuture<Operation, Operation> future =
reservationSlotsClient.getVersionOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<GetVersionReservationSlotRequest,Operation,Operation> |
|
isShutdown()
public boolean isShutdown()| Returns | |
|---|---|
| Type | Description |
boolean |
|
isTerminated()
public boolean isTerminated()| Returns | |
|---|---|
| Type | Description |
boolean |
|
list(ListReservationSlotsRequest request)
public final ReservationSlotsClient.ListPagedResponse list(ListReservationSlotsRequest request)Retrieves a list of reservation slots under a single reservation.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
ListReservationSlotsRequest request =
ListReservationSlotsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
for (ReservationSlot element : reservationSlotsClient.list(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
ListReservationSlotsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ReservationSlotsClient.ListPagedResponse |
|
list(String project, String zone, String parentName)
public final ReservationSlotsClient.ListPagedResponse list(String project, String zone, String parentName)Retrieves a list of reservation slots under a single reservation.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String parentName = "parentName-244870571";
for (ReservationSlot element :
reservationSlotsClient.list(project, zone, parentName).iterateAll()) {
// doThingsWith(element);
}
}
| Parameters | |
|---|---|
| Name | Description |
project |
StringThe project ID for this request. |
zone |
StringThe name of the zone for this request, formatted as RFC1035. |
parentName |
StringThe name of the parent reservation and parent block, formatted as reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name} |
| Returns | |
|---|---|
| Type | Description |
ReservationSlotsClient.ListPagedResponse |
|
listCallable()
public final UnaryCallable<ListReservationSlotsRequest,ReservationSlotsListResponse> listCallable()Retrieves a list of reservation slots under a single reservation.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
ListReservationSlotsRequest request =
ListReservationSlotsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
while (true) {
ReservationSlotsListResponse response = reservationSlotsClient.listCallable().call(request);
for (ReservationSlot element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListReservationSlotsRequest,ReservationSlotsListResponse> |
|
listPagedCallable()
public final UnaryCallable<ListReservationSlotsRequest,ReservationSlotsClient.ListPagedResponse> listPagedCallable()Retrieves a list of reservation slots under a single reservation.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
ListReservationSlotsRequest request =
ListReservationSlotsRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
ApiFuture<ReservationSlot> future =
reservationSlotsClient.listPagedCallable().futureCall(request);
// Do something.
for (ReservationSlot element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListReservationSlotsRequest,ListPagedResponse> |
|
shutdown()
public void shutdown()shutdownNow()
public void shutdownNow()updateAsync(UpdateReservationSlotRequest request)
public final OperationFuture<Operation,Operation> updateAsync(UpdateReservationSlotRequest request)Update a reservation slot in the specified sub-block.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
UpdateReservationSlotRequest request =
UpdateReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReservationSlot("reservationSlot-337781782")
.setReservationSlotResource(ReservationSlot.newBuilder().build())
.setUpdateMask("updateMask-296147115")
.setZone("zone3744684")
.build();
Operation response = reservationSlotsClient.updateAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
UpdateReservationSlotRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Operation,Operation> |
|
updateAsync(String project, String zone, String parentName, String reservationSlot, ReservationSlot reservationSlotResource)
public final OperationFuture<Operation,Operation> updateAsync(String project, String zone, String parentName, String reservationSlot, ReservationSlot reservationSlotResource)Update a reservation slot in the specified sub-block.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String parentName = "parentName-244870571";
String reservationSlot = "reservationSlot-337781782";
ReservationSlot reservationSlotResource = ReservationSlot.newBuilder().build();
Operation response =
reservationSlotsClient
.updateAsync(project, zone, parentName, reservationSlot, reservationSlotResource)
.get();
}
| Parameters | |
|---|---|
| Name | Description |
project |
StringThe project ID for this request. |
zone |
StringThe name of the zone for this request, formatted as RFC1035. |
parentName |
StringThe name of the sub-block resource. |
reservationSlot |
StringThe name of the slot resource. |
reservationSlotResource |
ReservationSlotThe body resource for this request |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Operation,Operation> |
|
updateCallable()
public final UnaryCallable<UpdateReservationSlotRequest,Operation> updateCallable()Update a reservation slot in the specified sub-block.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
UpdateReservationSlotRequest request =
UpdateReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReservationSlot("reservationSlot-337781782")
.setReservationSlotResource(ReservationSlot.newBuilder().build())
.setUpdateMask("updateMask-296147115")
.setZone("zone3744684")
.build();
ApiFuture<Operation> future = reservationSlotsClient.updateCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<UpdateReservationSlotRequest,Operation> |
|
updateOperationCallable()
public final OperationCallable<UpdateReservationSlotRequest,Operation,Operation> updateOperationCallable()Update a reservation slot in the specified sub-block.
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 (ReservationSlotsClient reservationSlotsClient = ReservationSlotsClient.create()) {
UpdateReservationSlotRequest request =
UpdateReservationSlotRequest.newBuilder()
.setParentName("parentName-244870571")
.setProject("project-309310695")
.setReservationSlot("reservationSlot-337781782")
.setReservationSlotResource(ReservationSlot.newBuilder().build())
.setUpdateMask("updateMask-296147115")
.setZone("zone3744684")
.build();
OperationFuture<Operation, Operation> future =
reservationSlotsClient.updateOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<UpdateReservationSlotRequest,Operation,Operation> |
|