- 0.64.0 (latest)
- 0.63.0
- 0.62.0
- 0.60.0
- 0.59.0
- 0.58.0
- 0.57.0
- 0.56.0
- 0.55.0
- 0.54.0
- 0.53.0
- 0.52.0
- 0.51.0
- 0.50.0
- 0.48.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.7
- 0.13.1
- 0.12.1
- 0.11.5
public class VersionsClient implements BackgroundResource
Service Description: Service for managing Versions.
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:
try (VersionsClient versionsClient = VersionsClient.create()) {
VersionName name =
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]");
Version response = versionsClient.getVersion(name);
}
Note: close() needs to be called on the VersionsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns 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 VersionsSettings to create(). For example:
To customize credentials:
VersionsSettings versionsSettings =
VersionsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
VersionsClient versionsClient = VersionsClient.create(versionsSettings);
To customize the endpoint:
VersionsSettings versionsSettings =
VersionsSettings.newBuilder().setEndpoint(myEndpoint).build();
VersionsClient versionsClient = VersionsClient.create(versionsSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Implements
BackgroundResourceStatic Methods
create()
public static final VersionsClient create()
Constructs an instance of VersionsClient with default settings.
Type | Description |
VersionsClient |
Type | Description |
IOException |
create(VersionsSettings settings)
public static final VersionsClient create(VersionsSettings settings)
Constructs an instance of VersionsClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Name | Description |
settings | VersionsSettings |
Type | Description |
VersionsClient |
Type | Description |
IOException |
create(VersionsStub stub)
public static final VersionsClient create(VersionsStub stub)
Constructs an instance of VersionsClient, using the given stub for making calls. This is for advanced usage - prefer using create(VersionsSettings).
Name | Description |
stub | VersionsStub |
Type | Description |
VersionsClient |
Constructors
VersionsClient(VersionsSettings settings)
protected VersionsClient(VersionsSettings settings)
Constructs an instance of VersionsClient, 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.
Name | Description |
settings | VersionsSettings |
VersionsClient(VersionsStub stub)
protected VersionsClient(VersionsStub stub)
Name | Description |
stub | VersionsStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Name | Description |
duration | long |
unit | TimeUnit |
Type | Description |
boolean |
Type | Description |
InterruptedException |
close()
public final void close()
compareVersions(CompareVersionsRequest request)
public final CompareVersionsResponse compareVersions(CompareVersionsRequest request)
Compares the specified base version with target version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
CompareVersionsRequest request =
CompareVersionsRequest.newBuilder()
.setBaseVersion(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.setTargetVersion(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.setLanguageCode("languageCode-2092349083")
.build();
CompareVersionsResponse response = versionsClient.compareVersions(request);
}
Name | Description |
request | CompareVersionsRequest The request object containing all of the parameters for the API call. |
Type | Description |
CompareVersionsResponse |
compareVersions(VersionName baseVersion)
public final CompareVersionsResponse compareVersions(VersionName baseVersion)
Compares the specified base version with target version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
VersionName baseVersion =
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]");
CompareVersionsResponse response = versionsClient.compareVersions(baseVersion);
}
Name | Description |
baseVersion | VersionName Required. Name of the base flow version to compare with the target version.
Use version ID Format: |
Type | Description |
CompareVersionsResponse |
compareVersions(String baseVersion)
public final CompareVersionsResponse compareVersions(String baseVersion)
Compares the specified base version with target version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
String baseVersion =
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]").toString();
CompareVersionsResponse response = versionsClient.compareVersions(baseVersion);
}
Name | Description |
baseVersion | String Required. Name of the base flow version to compare with the target version.
Use version ID Format: |
Type | Description |
CompareVersionsResponse |
compareVersionsCallable()
public final UnaryCallable<CompareVersionsRequest,CompareVersionsResponse> compareVersionsCallable()
Compares the specified base version with target version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
CompareVersionsRequest request =
CompareVersionsRequest.newBuilder()
.setBaseVersion(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.setTargetVersion(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.setLanguageCode("languageCode-2092349083")
.build();
ApiFuture<CompareVersionsResponse> future =
versionsClient.compareVersionsCallable().futureCall(request);
// Do something.
CompareVersionsResponse response = future.get();
}
Type | Description |
UnaryCallable<CompareVersionsRequest,CompareVersionsResponse> |
createVersionAsync(CreateVersionRequest request)
public final OperationFuture<Version,CreateVersionOperationMetadata> createVersionAsync(CreateVersionRequest request)
Creates a Version in the specified Flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
:
CreateVersionOperationMetadata
response
: VersionSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { CreateVersionRequest request = CreateVersionRequest.newBuilder() .setParent(FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString()) .setVersion(Version.newBuilder().build()) .build(); Version response = versionsClient.createVersionAsync(request).get(); }
Name | Description |
request | CreateVersionRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Version,CreateVersionOperationMetadata> |
createVersionAsync(FlowName parent, Version version)
public final OperationFuture<Version,CreateVersionOperationMetadata> createVersionAsync(FlowName parent, Version version)
Creates a Version in the specified Flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
:
CreateVersionOperationMetadata
response
: VersionSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { FlowName parent = FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]"); Version version = Version.newBuilder().build(); Version response = versionsClient.createVersionAsync(parent, version).get(); }
Name | Description |
parent | FlowName Required. The Flow to create an
Version for. Format: |
version | Version Required. The version to create. |
Type | Description |
OperationFuture<Version,CreateVersionOperationMetadata> |
createVersionAsync(String parent, Version version)
public final OperationFuture<Version,CreateVersionOperationMetadata> createVersionAsync(String parent, Version version)
Creates a Version in the specified Flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
:
CreateVersionOperationMetadata
response
: VersionSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { String parent = FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString(); Version version = Version.newBuilder().build(); Version response = versionsClient.createVersionAsync(parent, version).get(); }
Name | Description |
parent | String Required. The Flow to create an
Version for. Format: |
version | Version Required. The version to create. |
Type | Description |
OperationFuture<Version,CreateVersionOperationMetadata> |
createVersionCallable()
public final UnaryCallable<CreateVersionRequest,Operation> createVersionCallable()
Creates a Version in the specified Flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
:
CreateVersionOperationMetadata
response
: VersionSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { CreateVersionRequest request = CreateVersionRequest.newBuilder() .setParent(FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString()) .setVersion(Version.newBuilder().build()) .build(); ApiFuture<Operation> future = versionsClient.createVersionCallable().futureCall(request); // Do something. Operation response = future.get(); }
Type | Description |
UnaryCallable<CreateVersionRequest,Operation> |
createVersionOperationCallable()
public final OperationCallable<CreateVersionRequest,Version,CreateVersionOperationMetadata> createVersionOperationCallable()
Creates a Version in the specified Flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
:
CreateVersionOperationMetadata
response
: VersionSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { CreateVersionRequest request = CreateVersionRequest.newBuilder() .setParent(FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString()) .setVersion(Version.newBuilder().build()) .build(); OperationFuture<Version, CreateVersionOperationMetadata> future = versionsClient.createVersionOperationCallable().futureCall(request); // Do something. Version response = future.get(); }
Type | Description |
OperationCallable<CreateVersionRequest,Version,CreateVersionOperationMetadata> |
deleteVersion(DeleteVersionRequest request)
public final void deleteVersion(DeleteVersionRequest request)
Deletes the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
DeleteVersionRequest request =
DeleteVersionRequest.newBuilder()
.setName(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.build();
versionsClient.deleteVersion(request);
}
Name | Description |
request | DeleteVersionRequest The request object containing all of the parameters for the API call. |
deleteVersion(VersionName name)
public final void deleteVersion(VersionName name)
Deletes the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
VersionName name =
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]");
versionsClient.deleteVersion(name);
}
Name | Description |
name | VersionName Required. The name of the Version to
delete. Format: |
deleteVersion(String name)
public final void deleteVersion(String name)
Deletes the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
String name =
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]").toString();
versionsClient.deleteVersion(name);
}
Name | Description |
name | String Required. The name of the Version to
delete. Format: |
deleteVersionCallable()
public final UnaryCallable<DeleteVersionRequest,Empty> deleteVersionCallable()
Deletes the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
DeleteVersionRequest request =
DeleteVersionRequest.newBuilder()
.setName(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.build();
ApiFuture<Empty> future = versionsClient.deleteVersionCallable().futureCall(request);
// Do something.
future.get();
}
Type | Description |
UnaryCallable<DeleteVersionRequest,Empty> |
getOperationsClient()
public final OperationsClient getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
Type | Description |
OperationsClient |
getSettings()
public final VersionsSettings getSettings()
Type | Description |
VersionsSettings |
getStub()
public VersionsStub getStub()
Type | Description |
VersionsStub |
getVersion(GetVersionRequest request)
public final Version getVersion(GetVersionRequest request)
Retrieves the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
GetVersionRequest request =
GetVersionRequest.newBuilder()
.setName(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.build();
Version response = versionsClient.getVersion(request);
}
Name | Description |
request | GetVersionRequest The request object containing all of the parameters for the API call. |
Type | Description |
Version |
getVersion(VersionName name)
public final Version getVersion(VersionName name)
Retrieves the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
VersionName name =
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]");
Version response = versionsClient.getVersion(name);
}
Name | Description |
name | VersionName Required. The name of the Version. Format:
|
Type | Description |
Version |
getVersion(String name)
public final Version getVersion(String name)
Retrieves the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
String name =
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]").toString();
Version response = versionsClient.getVersion(name);
}
Name | Description |
name | String Required. The name of the Version. Format:
|
Type | Description |
Version |
getVersionCallable()
public final UnaryCallable<GetVersionRequest,Version> getVersionCallable()
Retrieves the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
GetVersionRequest request =
GetVersionRequest.newBuilder()
.setName(
VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]")
.toString())
.build();
ApiFuture<Version> future = versionsClient.getVersionCallable().futureCall(request);
// Do something.
Version response = future.get();
}
Type | Description |
UnaryCallable<GetVersionRequest,Version> |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
listVersions(FlowName parent)
public final VersionsClient.ListVersionsPagedResponse listVersions(FlowName parent)
Returns the list of all versions in the specified Flow.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
FlowName parent = FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]");
for (Version element : versionsClient.listVersions(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | FlowName Required. The Flow to list all versions
for. Format: |
Type | Description |
VersionsClient.ListVersionsPagedResponse |
listVersions(ListVersionsRequest request)
public final VersionsClient.ListVersionsPagedResponse listVersions(ListVersionsRequest request)
Returns the list of all versions in the specified Flow.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
ListVersionsRequest request =
ListVersionsRequest.newBuilder()
.setParent(FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Version element : versionsClient.listVersions(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | ListVersionsRequest The request object containing all of the parameters for the API call. |
Type | Description |
VersionsClient.ListVersionsPagedResponse |
listVersions(String parent)
public final VersionsClient.ListVersionsPagedResponse listVersions(String parent)
Returns the list of all versions in the specified Flow.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
String parent = FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString();
for (Version element : versionsClient.listVersions(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | String Required. The Flow to list all versions
for. Format: |
Type | Description |
VersionsClient.ListVersionsPagedResponse |
listVersionsCallable()
public final UnaryCallable<ListVersionsRequest,ListVersionsResponse> listVersionsCallable()
Returns the list of all versions in the specified Flow.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
ListVersionsRequest request =
ListVersionsRequest.newBuilder()
.setParent(FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListVersionsResponse response = versionsClient.listVersionsCallable().call(request);
for (Version element : response.getResponsesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<ListVersionsRequest,ListVersionsResponse> |
listVersionsPagedCallable()
public final UnaryCallable<ListVersionsRequest,VersionsClient.ListVersionsPagedResponse> listVersionsPagedCallable()
Returns the list of all versions in the specified Flow.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
ListVersionsRequest request =
ListVersionsRequest.newBuilder()
.setParent(FlowName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Version> future = versionsClient.listVersionsPagedCallable().futureCall(request);
// Do something.
for (Version element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Type | Description |
UnaryCallable<ListVersionsRequest,ListVersionsPagedResponse> |
loadVersionAsync(LoadVersionRequest request)
public final OperationFuture<Empty,Struct> loadVersionAsync(LoadVersionRequest request)
Loads resources in the specified version to the draft flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
: An empty Struct
message
response
: An Empty messageSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { LoadVersionRequest request = LoadVersionRequest.newBuilder() .setName( VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]") .toString()) .setAllowOverrideAgentResources(true) .build(); versionsClient.loadVersionAsync(request).get(); }
Name | Description |
request | LoadVersionRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Empty,Struct> |
loadVersionAsync(VersionName name)
public final OperationFuture<Empty,Struct> loadVersionAsync(VersionName name)
Loads resources in the specified version to the draft flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
: An empty Struct
message
response
: An Empty messageSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { VersionName name = VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]"); versionsClient.loadVersionAsync(name).get(); }
Name | Description |
name | VersionName Required. The Version to be loaded to
draft flow. Format: |
Type | Description |
OperationFuture<Empty,Struct> |
loadVersionAsync(String name)
public final OperationFuture<Empty,Struct> loadVersionAsync(String name)
Loads resources in the specified version to the draft flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
: An empty Struct
message
response
: An Empty messageSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { String name = VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]").toString(); versionsClient.loadVersionAsync(name).get(); }
Name | Description |
name | String Required. The Version to be loaded to
draft flow. Format: |
Type | Description |
OperationFuture<Empty,Struct> |
loadVersionCallable()
public final UnaryCallable<LoadVersionRequest,Operation> loadVersionCallable()
Loads resources in the specified version to the draft flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
: An empty Struct
message
response
: An Empty messageSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { LoadVersionRequest request = LoadVersionRequest.newBuilder() .setName( VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]") .toString()) .setAllowOverrideAgentResources(true) .build(); ApiFuture<Operation> future = versionsClient.loadVersionCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
UnaryCallable<LoadVersionRequest,Operation> |
loadVersionOperationCallable()
public final OperationCallable<LoadVersionRequest,Empty,Struct> loadVersionOperationCallable()
Loads resources in the specified version to the draft flow.
This method is a long-running
operation. The
returned Operation
type has the following method-specific fields:
- metadata
: An empty Struct
message
response
: An Empty messageSample code:
try (VersionsClient versionsClient = VersionsClient.create()) { LoadVersionRequest request = LoadVersionRequest.newBuilder() .setName( VersionName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[FLOW]", "[VERSION]") .toString()) .setAllowOverrideAgentResources(true) .build(); OperationFuture<Empty, Struct> future = versionsClient.loadVersionOperationCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
OperationCallable<LoadVersionRequest,Empty,Struct> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
updateVersion(UpdateVersionRequest request)
public final Version updateVersion(UpdateVersionRequest request)
Updates the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
UpdateVersionRequest request =
UpdateVersionRequest.newBuilder()
.setVersion(Version.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Version response = versionsClient.updateVersion(request);
}
Name | Description |
request | UpdateVersionRequest The request object containing all of the parameters for the API call. |
Type | Description |
Version |
updateVersion(Version version, FieldMask updateMask)
public final Version updateVersion(Version version, FieldMask updateMask)
Updates the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
Version version = Version.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Version response = versionsClient.updateVersion(version, updateMask);
}
Name | Description |
version | Version Required. The version to update. |
updateMask | FieldMask Required. The mask to control which fields get updated. Currently only
|
Type | Description |
Version |
updateVersionCallable()
public final UnaryCallable<UpdateVersionRequest,Version> updateVersionCallable()
Updates the specified Version.
Sample code:
try (VersionsClient versionsClient = VersionsClient.create()) {
UpdateVersionRequest request =
UpdateVersionRequest.newBuilder()
.setVersion(Version.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Version> future = versionsClient.updateVersionCallable().futureCall(request);
// Do something.
Version response = future.get();
}
Type | Description |
UnaryCallable<UpdateVersionRequest,Version> |