@Generated(value="by gapic-generator-java") public class MachineTypesClient 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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String machineType = "machineType-218117087";
MachineType response = machineTypesClient.get(project, zone, machineType);
}
Note: close() needs to be called on the MachineTypesClient 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 |
|---|---|---|
AggregatedList |
Retrieves an aggregated list of machine types. To prevent failure, Google recommends that you set the `returnPartialSuccess` parameter to `true`. |
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.
|
Get |
Returns the specified machine type. |
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.
|
List |
Retrieves a list of machine types 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.
|
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 MachineTypesSettings 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
MachineTypesSettings machineTypesSettings =
MachineTypesSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
MachineTypesClient machineTypesClient = MachineTypesClient.create(machineTypesSettings);
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
MachineTypesSettings machineTypesSettings =
MachineTypesSettings.newBuilder().setEndpoint(myEndpoint).build();
MachineTypesClient machineTypesClient = MachineTypesClient.create(machineTypesSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
MachineTypesClient.AggregatedListFixedSizeCollection |
static class |
MachineTypesClient.AggregatedListPage |
static class |
MachineTypesClient.AggregatedListPagedResponse |
static class |
MachineTypesClient.ListFixedSizeCollection |
static class |
MachineTypesClient.ListPage |
static class |
MachineTypesClient.ListPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
MachineTypesClient(MachineTypesSettings settings)
Constructs an instance of MachineTypesClient, using the given settings.
|
protected |
MachineTypesClient(MachineTypesStub stub) |
| Modifier and Type | Method and Description |
|---|---|
MachineTypesClient.AggregatedListPagedResponse |
aggregatedList(AggregatedListMachineTypesRequest request)
Retrieves an aggregated list of machine types.
|
MachineTypesClient.AggregatedListPagedResponse |
aggregatedList(String project)
Retrieves an aggregated list of machine types.
|
com.google.api.gax.rpc.UnaryCallable<AggregatedListMachineTypesRequest,MachineTypeAggregatedList> |
aggregatedListCallable()
Retrieves an aggregated list of machine types.
|
com.google.api.gax.rpc.UnaryCallable<AggregatedListMachineTypesRequest,MachineTypesClient.AggregatedListPagedResponse> |
aggregatedListPagedCallable()
Retrieves an aggregated list of machine types.
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static MachineTypesClient |
create()
Constructs an instance of MachineTypesClient with default settings.
|
static MachineTypesClient |
create(MachineTypesSettings settings)
Constructs an instance of MachineTypesClient, using the given settings.
|
static MachineTypesClient |
create(MachineTypesStub stub)
Constructs an instance of MachineTypesClient, using the given stub for making calls.
|
MachineType |
get(GetMachineTypeRequest request)
Returns the specified machine type.
|
MachineType |
get(String project,
String zone,
String machineType)
Returns the specified machine type.
|
com.google.api.gax.rpc.UnaryCallable<GetMachineTypeRequest,MachineType> |
getCallable()
Returns the specified machine type.
|
MachineTypesSettings |
getSettings() |
MachineTypesStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
MachineTypesClient.ListPagedResponse |
list(ListMachineTypesRequest request)
Retrieves a list of machine types available to the specified project.
|
MachineTypesClient.ListPagedResponse |
list(String project,
String zone)
Retrieves a list of machine types available to the specified project.
|
com.google.api.gax.rpc.UnaryCallable<ListMachineTypesRequest,MachineTypeList> |
listCallable()
Retrieves a list of machine types available to the specified project.
|
com.google.api.gax.rpc.UnaryCallable<ListMachineTypesRequest,MachineTypesClient.ListPagedResponse> |
listPagedCallable()
Retrieves a list of machine types available to the specified project.
|
void |
shutdown() |
void |
shutdownNow() |
protected MachineTypesClient(MachineTypesSettings settings) throws IOException
IOExceptionprotected MachineTypesClient(MachineTypesStub stub)
public static final MachineTypesClient create() throws IOException
IOExceptionpublic static final MachineTypesClient create(MachineTypesSettings settings) throws IOException
IOExceptionpublic static final MachineTypesClient create(MachineTypesStub stub)
public final MachineTypesSettings getSettings()
public MachineTypesStub getStub()
public final MachineTypesClient.AggregatedListPagedResponse aggregatedList(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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
String project = "project-309310695";
for (Map.Entry<String, MachineTypesScopedList> element :
machineTypesClient.aggregatedList(project).iterateAll()) {
// doThingsWith(element);
}
}
project - Project ID for this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final MachineTypesClient.AggregatedListPagedResponse aggregatedList(AggregatedListMachineTypesRequest 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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
AggregatedListMachineTypesRequest request =
AggregatedListMachineTypesRequest.newBuilder()
.setFilter("filter-1274492040")
.setIncludeAllScopes(true)
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setServiceProjectNumber(-1293855239)
.build();
for (Map.Entry<String, MachineTypesScopedList> element :
machineTypesClient.aggregatedList(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<AggregatedListMachineTypesRequest,MachineTypesClient.AggregatedListPagedResponse> aggregatedListPagedCallable()
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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
AggregatedListMachineTypesRequest request =
AggregatedListMachineTypesRequest.newBuilder()
.setFilter("filter-1274492040")
.setIncludeAllScopes(true)
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setServiceProjectNumber(-1293855239)
.build();
ApiFuture<Map.Entry<String, MachineTypesScopedList>> future =
machineTypesClient.aggregatedListPagedCallable().futureCall(request);
// Do something.
for (Map.Entry<String, MachineTypesScopedList> element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<AggregatedListMachineTypesRequest,MachineTypeAggregatedList> aggregatedListCallable()
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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
AggregatedListMachineTypesRequest request =
AggregatedListMachineTypesRequest.newBuilder()
.setFilter("filter-1274492040")
.setIncludeAllScopes(true)
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setServiceProjectNumber(-1293855239)
.build();
while (true) {
MachineTypeAggregatedList response =
machineTypesClient.aggregatedListCallable().call(request);
for (Map.Entry<String, MachineTypesScopedList> element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final MachineType get(String project, String zone, String machineType)
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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
String machineType = "machineType-218117087";
MachineType response = machineTypesClient.get(project, zone, machineType);
}
project - Project ID for this request.zone - The name of the zone for this request.machineType - Name of the machine type to return.com.google.api.gax.rpc.ApiException - if the remote call failspublic final MachineType get(GetMachineTypeRequest 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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
GetMachineTypeRequest request =
GetMachineTypeRequest.newBuilder()
.setMachineType("machineType-218117087")
.setProject("project-309310695")
.setZone("zone3744684")
.build();
MachineType response = machineTypesClient.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<GetMachineTypeRequest,MachineType> 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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
GetMachineTypeRequest request =
GetMachineTypeRequest.newBuilder()
.setMachineType("machineType-218117087")
.setProject("project-309310695")
.setZone("zone3744684")
.build();
ApiFuture<MachineType> future = machineTypesClient.getCallable().futureCall(request);
// Do something.
MachineType response = future.get();
}
public final MachineTypesClient.ListPagedResponse list(String project, String zone)
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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
String project = "project-309310695";
String zone = "zone3744684";
for (MachineType element : machineTypesClient.list(project, zone).iterateAll()) {
// doThingsWith(element);
}
}
project - Project ID for this request.zone - The name of the zone for this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final MachineTypesClient.ListPagedResponse list(ListMachineTypesRequest 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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
ListMachineTypesRequest request =
ListMachineTypesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
for (MachineType element : machineTypesClient.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<ListMachineTypesRequest,MachineTypesClient.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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
ListMachineTypesRequest request =
ListMachineTypesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
ApiFuture<MachineType> future = machineTypesClient.listPagedCallable().futureCall(request);
// Do something.
for (MachineType element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListMachineTypesRequest,MachineTypeList> 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 (MachineTypesClient machineTypesClient = MachineTypesClient.create()) {
ListMachineTypesRequest request =
ListMachineTypesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.setZone("zone3744684")
.build();
while (true) {
MachineTypeList response = machineTypesClient.listCallable().call(request);
for (MachineType element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
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.