Class VersionsClient (2.1.10)

public class VersionsClient implements BackgroundResource

Service Description: Manages versions of a service.

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()) {
   GetVersionRequest request =
       GetVersionRequest.newBuilder()
           .setName("name3373707")
           .setView(VersionView.forNumber(0))
           .build();
   Version response = versionsClient.getVersion(request);
 }
 

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:

  1. 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.
  2. 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.
  3. 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.

Inheritance

java.lang.Object > VersionsClient

Implements

BackgroundResource

Static Methods

create()

public static final VersionsClient create()

Constructs an instance of VersionsClient with default settings.

Returns
TypeDescription
VersionsClient
Exceptions
TypeDescription
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.

Parameter
NameDescription
settingsVersionsSettings
Returns
TypeDescription
VersionsClient
Exceptions
TypeDescription
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).

Parameter
NameDescription
stubVersionsStub
Returns
TypeDescription
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.

Parameter
NameDescription
settingsVersionsSettings

VersionsClient(VersionsStub stub)

protected VersionsClient(VersionsStub stub)
Parameter
NameDescription
stubVersionsStub

Methods

awaitTermination(long duration, TimeUnit unit)

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

close()

public final void close()

createVersionAsync(CreateVersionRequest request)

public final OperationFuture<Version,CreateVersionMetadataV1> createVersionAsync(CreateVersionRequest request)

Deploys code and resource files to a new version.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   CreateVersionRequest request =
       CreateVersionRequest.newBuilder()
           .setParent("parent-995424086")
           .setVersion(Version.newBuilder().build())
           .build();
   Version response = versionsClient.createVersionAsync(request).get();
 }
 
Parameter
NameDescription
requestCreateVersionRequest

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

Returns
TypeDescription
OperationFuture<Version,CreateVersionMetadataV1>

createVersionCallable()

public final UnaryCallable<CreateVersionRequest,Operation> createVersionCallable()

Deploys code and resource files to a new version.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   CreateVersionRequest request =
       CreateVersionRequest.newBuilder()
           .setParent("parent-995424086")
           .setVersion(Version.newBuilder().build())
           .build();
   ApiFuture<Operation> future = versionsClient.createVersionCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateVersionRequest,Operation>

createVersionOperationCallable()

public final OperationCallable<CreateVersionRequest,Version,CreateVersionMetadataV1> createVersionOperationCallable()

Deploys code and resource files to a new version.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   CreateVersionRequest request =
       CreateVersionRequest.newBuilder()
           .setParent("parent-995424086")
           .setVersion(Version.newBuilder().build())
           .build();
   OperationFuture
Returns
TypeDescription
OperationCallable<CreateVersionRequest,Version,CreateVersionMetadataV1>

deleteVersionAsync(DeleteVersionRequest request)

public final OperationFuture<Empty,OperationMetadataV1> deleteVersionAsync(DeleteVersionRequest request)

Deletes an existing Version resource.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   DeleteVersionRequest request =
       DeleteVersionRequest.newBuilder().setName("name3373707").build();
   versionsClient.deleteVersionAsync(request).get();
 }
 
Parameter
NameDescription
requestDeleteVersionRequest

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

Returns
TypeDescription
OperationFuture<Empty,OperationMetadataV1>

deleteVersionCallable()

public final UnaryCallable<DeleteVersionRequest,Operation> deleteVersionCallable()

Deletes an existing Version resource.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   DeleteVersionRequest request =
       DeleteVersionRequest.newBuilder().setName("name3373707").build();
   ApiFuture<Operation> future = versionsClient.deleteVersionCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteVersionRequest,Operation>

deleteVersionOperationCallable()

public final OperationCallable<DeleteVersionRequest,Empty,OperationMetadataV1> deleteVersionOperationCallable()

Deletes an existing Version resource.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   DeleteVersionRequest request =
       DeleteVersionRequest.newBuilder().setName("name3373707").build();
   OperationFuture
Returns
TypeDescription
OperationCallable<DeleteVersionRequest,Empty,OperationMetadataV1>

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.

Returns
TypeDescription
OperationsClient

getSettings()

public final VersionsSettings getSettings()
Returns
TypeDescription
VersionsSettings

getStub()

public VersionsStub getStub()
Returns
TypeDescription
VersionsStub

getVersion(GetVersionRequest request)

public final Version getVersion(GetVersionRequest request)

Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   GetVersionRequest request =
       GetVersionRequest.newBuilder()
           .setName("name3373707")
           .setView(VersionView.forNumber(0))
           .build();
   Version response = versionsClient.getVersion(request);
 }
 
Parameter
NameDescription
requestGetVersionRequest

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

Returns
TypeDescription
Version

getVersionCallable()

public final UnaryCallable<GetVersionRequest,Version> getVersionCallable()

Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   GetVersionRequest request =
       GetVersionRequest.newBuilder()
           .setName("name3373707")
           .setView(VersionView.forNumber(0))
           .build();
   ApiFuture<Version> future = versionsClient.getVersionCallable().futureCall(request);
   // Do something.
   Version response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetVersionRequest,Version>

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listVersions(ListVersionsRequest request)

public final VersionsClient.ListVersionsPagedResponse listVersions(ListVersionsRequest request)

Lists the versions of a service.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   ListVersionsRequest request =
       ListVersionsRequest.newBuilder()
           .setParent("parent-995424086")
           .setView(VersionView.forNumber(0))
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Version element : versionsClient.listVersions(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListVersionsRequest

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

Returns
TypeDescription
VersionsClient.ListVersionsPagedResponse

listVersionsCallable()

public final UnaryCallable<ListVersionsRequest,ListVersionsResponse> listVersionsCallable()

Lists the versions of a service.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   ListVersionsRequest request =
       ListVersionsRequest.newBuilder()
           .setParent("parent-995424086")
           .setView(VersionView.forNumber(0))
           .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;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListVersionsRequest,ListVersionsResponse>

listVersionsPagedCallable()

public final UnaryCallable<ListVersionsRequest,VersionsClient.ListVersionsPagedResponse> listVersionsPagedCallable()

Lists the versions of a service.

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   ListVersionsRequest request =
       ListVersionsRequest.newBuilder()
           .setParent("parent-995424086")
           .setView(VersionView.forNumber(0))
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Version> future = versionsClient.listVersionsPagedCallable().futureCall(request);
   // Do something.
   for (Version element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListVersionsRequest,ListVersionsPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

updateVersionAsync(UpdateVersionRequest request)

public final OperationFuture<Version,OperationMetadataV1> updateVersionAsync(UpdateVersionRequest request)

Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:

**Standard environment**

*automatic scaling* in the standard environment:

*basic scaling* or *manual scaling* in the standard environment:

**Flexible environment**

*automatic scaling* in the flexible environment:

*manual scaling* in the flexible environment:

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   UpdateVersionRequest request =
       UpdateVersionRequest.newBuilder()
           .setName("name3373707")
           .setVersion(Version.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   Version response = versionsClient.updateVersionAsync(request).get();
 }
 
Parameter
NameDescription
requestUpdateVersionRequest

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

Returns
TypeDescription
OperationFuture<Version,OperationMetadataV1>

updateVersionCallable()

public final UnaryCallable<UpdateVersionRequest,Operation> updateVersionCallable()

Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:

**Standard environment**

*automatic scaling* in the standard environment:

*basic scaling* or *manual scaling* in the standard environment:

**Flexible environment**

*automatic scaling* in the flexible environment:

*manual scaling* in the flexible environment:

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   UpdateVersionRequest request =
       UpdateVersionRequest.newBuilder()
           .setName("name3373707")
           .setVersion(Version.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<Operation> future = versionsClient.updateVersionCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateVersionRequest,Operation>

updateVersionOperationCallable()

public final OperationCallable<UpdateVersionRequest,Version,OperationMetadataV1> updateVersionOperationCallable()

Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:

**Standard environment**

*automatic scaling* in the standard environment:

*basic scaling* or *manual scaling* in the standard environment:

**Flexible environment**

*automatic scaling* in the flexible environment:

*manual scaling* in the flexible environment:

Sample code:


 try (VersionsClient versionsClient = VersionsClient.create()) {
   UpdateVersionRequest request =
       UpdateVersionRequest.newBuilder()
           .setName("name3373707")
           .setVersion(Version.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   OperationFuture
Returns
TypeDescription
OperationCallable<UpdateVersionRequest,Version,OperationMetadataV1>