- 1.51.0 (latest)
- 1.50.0
- 1.49.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.37.0
- 1.35.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.0
- 1.11.0
- 1.10.0
- 1.9.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.3
- 1.0.6
- 0.6.2
public class ManagedNotebookServiceClient implements BackgroundResource
Service Description: API v1 service for Managed Notebooks.
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 (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
RuntimeName name = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]");
Runtime response = managedNotebookServiceClient.getRuntime(name);
}
Note: close() needs to be called on the ManagedNotebookServiceClient 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 ManagedNotebookServiceSettings to create(). For example:
To customize credentials:
ManagedNotebookServiceSettings managedNotebookServiceSettings =
ManagedNotebookServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create(managedNotebookServiceSettings);
To customize the endpoint:
ManagedNotebookServiceSettings managedNotebookServiceSettings =
ManagedNotebookServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create(managedNotebookServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Implements
BackgroundResourceConstructors
ManagedNotebookServiceClient(ManagedNotebookServiceSettings settings)
protected ManagedNotebookServiceClient(ManagedNotebookServiceSettings settings)
Constructs an instance of ManagedNotebookServiceClient, 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 | ManagedNotebookServiceSettings |
ManagedNotebookServiceClient(ManagedNotebookServiceStub stub)
protected ManagedNotebookServiceClient(ManagedNotebookServiceStub stub)
Name | Description |
stub | ManagedNotebookServiceStub |
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()
create()
public static final ManagedNotebookServiceClient create()
Constructs an instance of ManagedNotebookServiceClient with default settings.
Type | Description |
ManagedNotebookServiceClient |
Type | Description |
IOException |
create(ManagedNotebookServiceSettings settings)
public static final ManagedNotebookServiceClient create(ManagedNotebookServiceSettings settings)
Constructs an instance of ManagedNotebookServiceClient, 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 | ManagedNotebookServiceSettings |
Type | Description |
ManagedNotebookServiceClient |
Type | Description |
IOException |
create(ManagedNotebookServiceStub stub)
public static final ManagedNotebookServiceClient create(ManagedNotebookServiceStub stub)
Constructs an instance of ManagedNotebookServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(ManagedNotebookServiceSettings).
Name | Description |
stub | ManagedNotebookServiceStub |
Type | Description |
ManagedNotebookServiceClient |
createRuntimeAsync(CreateRuntimeRequest request)
public final OperationFuture<Runtime,OperationMetadata> createRuntimeAsync(CreateRuntimeRequest request)
Creates a new Runtime in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
CreateRuntimeRequest request =
CreateRuntimeRequest.newBuilder()
.setParent(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.setRuntimeId("runtimeId121455379")
.setRuntime(Runtime.newBuilder().build())
.build();
Runtime response = managedNotebookServiceClient.createRuntimeAsync(request).get();
}
Name | Description |
request | CreateRuntimeRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
createRuntimeAsync(RuntimeName parent, String runtimeId, Runtime runtime)
public final OperationFuture<Runtime,OperationMetadata> createRuntimeAsync(RuntimeName parent, String runtimeId, Runtime runtime)
Creates a new Runtime in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
RuntimeName parent = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]");
String runtimeId = "runtimeId121455379";
Runtime runtime = Runtime.newBuilder().build();
Runtime response =
managedNotebookServiceClient.createRuntimeAsync(parent, runtimeId, runtime).get();
}
Name | Description |
parent | RuntimeName Required. Format: |
runtimeId | String Required. User-defined unique ID of this Runtime. |
runtime | Runtime Required. The Runtime to be created. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
createRuntimeAsync(String parent, String runtimeId, Runtime runtime)
public final OperationFuture<Runtime,OperationMetadata> createRuntimeAsync(String parent, String runtimeId, Runtime runtime)
Creates a new Runtime in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String parent = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString();
String runtimeId = "runtimeId121455379";
Runtime runtime = Runtime.newBuilder().build();
Runtime response =
managedNotebookServiceClient.createRuntimeAsync(parent, runtimeId, runtime).get();
}
Name | Description |
parent | String Required. Format: |
runtimeId | String Required. User-defined unique ID of this Runtime. |
runtime | Runtime Required. The Runtime to be created. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
createRuntimeCallable()
public final UnaryCallable<CreateRuntimeRequest,Operation> createRuntimeCallable()
Creates a new Runtime in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
CreateRuntimeRequest request =
CreateRuntimeRequest.newBuilder()
.setParent(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.setRuntimeId("runtimeId121455379")
.setRuntime(Runtime.newBuilder().build())
.build();
ApiFuture<Operation> future =
managedNotebookServiceClient.createRuntimeCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<CreateRuntimeRequest,Operation> |
createRuntimeOperationCallable()
public final OperationCallable<CreateRuntimeRequest,Runtime,OperationMetadata> createRuntimeOperationCallable()
Creates a new Runtime in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
CreateRuntimeRequest request =
CreateRuntimeRequest.newBuilder()
.setParent(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.setRuntimeId("runtimeId121455379")
.setRuntime(Runtime.newBuilder().build())
.build();
OperationFuture
Type | Description |
OperationCallable<CreateRuntimeRequest,Runtime,OperationMetadata> |
deleteRuntimeAsync(DeleteRuntimeRequest request)
public final OperationFuture<Empty,OperationMetadata> deleteRuntimeAsync(DeleteRuntimeRequest request)
Deletes a single Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
DeleteRuntimeRequest request =
DeleteRuntimeRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.build();
managedNotebookServiceClient.deleteRuntimeAsync(request).get();
}
Name | Description |
request | DeleteRuntimeRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Empty,OperationMetadata> |
deleteRuntimeAsync(RuntimeName name)
public final OperationFuture<Empty,OperationMetadata> deleteRuntimeAsync(RuntimeName name)
Deletes a single Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
RuntimeName name = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]");
managedNotebookServiceClient.deleteRuntimeAsync(name).get();
}
Name | Description |
name | RuntimeName Required. Format:
|
Type | Description |
OperationFuture<Empty,OperationMetadata> |
deleteRuntimeAsync(String name)
public final OperationFuture<Empty,OperationMetadata> deleteRuntimeAsync(String name)
Deletes a single Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String name = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString();
managedNotebookServiceClient.deleteRuntimeAsync(name).get();
}
Name | Description |
name | String Required. Format:
|
Type | Description |
OperationFuture<Empty,OperationMetadata> |
deleteRuntimeCallable()
public final UnaryCallable<DeleteRuntimeRequest,Operation> deleteRuntimeCallable()
Deletes a single Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
DeleteRuntimeRequest request =
DeleteRuntimeRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.build();
ApiFuture<Operation> future =
managedNotebookServiceClient.deleteRuntimeCallable().futureCall(request);
// Do something.
future.get();
}
Type | Description |
UnaryCallable<DeleteRuntimeRequest,Operation> |
deleteRuntimeOperationCallable()
public final OperationCallable<DeleteRuntimeRequest,Empty,OperationMetadata> deleteRuntimeOperationCallable()
Deletes a single Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
DeleteRuntimeRequest request =
DeleteRuntimeRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.build();
OperationFuture
Type | Description |
OperationCallable<DeleteRuntimeRequest,Empty,OperationMetadata> |
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 |
getRuntime(GetRuntimeRequest request)
public final Runtime getRuntime(GetRuntimeRequest request)
Gets details of a single Runtime. The location must be a regional endpoint rather than zonal.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
GetRuntimeRequest request =
GetRuntimeRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.build();
Runtime response = managedNotebookServiceClient.getRuntime(request);
}
Name | Description |
request | GetRuntimeRequest The request object containing all of the parameters for the API call. |
Type | Description |
Runtime |
getRuntime(RuntimeName name)
public final Runtime getRuntime(RuntimeName name)
Gets details of a single Runtime. The location must be a regional endpoint rather than zonal.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
RuntimeName name = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]");
Runtime response = managedNotebookServiceClient.getRuntime(name);
}
Name | Description |
name | RuntimeName Required. Format:
|
Type | Description |
Runtime |
getRuntime(String name)
public final Runtime getRuntime(String name)
Gets details of a single Runtime. The location must be a regional endpoint rather than zonal.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String name = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString();
Runtime response = managedNotebookServiceClient.getRuntime(name);
}
Name | Description |
name | String Required. Format:
|
Type | Description |
Runtime |
getRuntimeCallable()
public final UnaryCallable<GetRuntimeRequest,Runtime> getRuntimeCallable()
Gets details of a single Runtime. The location must be a regional endpoint rather than zonal.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
GetRuntimeRequest request =
GetRuntimeRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.build();
ApiFuture<Runtime> future =
managedNotebookServiceClient.getRuntimeCallable().futureCall(request);
// Do something.
Runtime response = future.get();
}
Type | Description |
UnaryCallable<GetRuntimeRequest,Runtime> |
getSettings()
public final ManagedNotebookServiceSettings getSettings()
Type | Description |
ManagedNotebookServiceSettings |
getStub()
public ManagedNotebookServiceStub getStub()
Type | Description |
ManagedNotebookServiceStub |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
listRuntimes(ListRuntimesRequest request)
public final ManagedNotebookServiceClient.ListRuntimesPagedResponse listRuntimes(ListRuntimesRequest request)
Lists Runtimes in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ListRuntimesRequest request =
ListRuntimesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Runtime element : managedNotebookServiceClient.listRuntimes(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | ListRuntimesRequest The request object containing all of the parameters for the API call. |
Type | Description |
ManagedNotebookServiceClient.ListRuntimesPagedResponse |
listRuntimes(LocationName parent)
public final ManagedNotebookServiceClient.ListRuntimesPagedResponse listRuntimes(LocationName parent)
Lists Runtimes in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Runtime element : managedNotebookServiceClient.listRuntimes(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | LocationName Required. Format: |
Type | Description |
ManagedNotebookServiceClient.ListRuntimesPagedResponse |
listRuntimes(String parent)
public final ManagedNotebookServiceClient.ListRuntimesPagedResponse listRuntimes(String parent)
Lists Runtimes in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (Runtime element : managedNotebookServiceClient.listRuntimes(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | String Required. Format: |
Type | Description |
ManagedNotebookServiceClient.ListRuntimesPagedResponse |
listRuntimesCallable()
public final UnaryCallable<ListRuntimesRequest,ListRuntimesResponse> listRuntimesCallable()
Lists Runtimes in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ListRuntimesRequest request =
ListRuntimesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListRuntimesResponse response =
managedNotebookServiceClient.listRuntimesCallable().call(request);
for (Runtime element : response.getResponsesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<ListRuntimesRequest,ListRuntimesResponse> |
listRuntimesPagedCallable()
public final UnaryCallable<ListRuntimesRequest,ManagedNotebookServiceClient.ListRuntimesPagedResponse> listRuntimesPagedCallable()
Lists Runtimes in a given project and location.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ListRuntimesRequest request =
ListRuntimesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Runtime> future =
managedNotebookServiceClient.listRuntimesPagedCallable().futureCall(request);
// Do something.
for (Runtime element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Type | Description |
UnaryCallable<ListRuntimesRequest,ListRuntimesPagedResponse> |
reportRuntimeEventAsync(ReportRuntimeEventRequest request)
public final OperationFuture<Runtime,OperationMetadata> reportRuntimeEventAsync(ReportRuntimeEventRequest request)
Report and process a runtime event.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ReportRuntimeEventRequest request =
ReportRuntimeEventRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.setVmId("vmId3622450")
.setEvent(Event.newBuilder().build())
.build();
Runtime response = managedNotebookServiceClient.reportRuntimeEventAsync(request).get();
}
Name | Description |
request | ReportRuntimeEventRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
reportRuntimeEventAsync(RuntimeName name)
public final OperationFuture<Runtime,OperationMetadata> reportRuntimeEventAsync(RuntimeName name)
Report and process a runtime event.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
RuntimeName name = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]");
Runtime response = managedNotebookServiceClient.reportRuntimeEventAsync(name).get();
}
Name | Description |
name | RuntimeName Required. Format:
|
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
reportRuntimeEventAsync(String name)
public final OperationFuture<Runtime,OperationMetadata> reportRuntimeEventAsync(String name)
Report and process a runtime event.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String name = RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString();
Runtime response = managedNotebookServiceClient.reportRuntimeEventAsync(name).get();
}
Name | Description |
name | String Required. Format:
|
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
reportRuntimeEventCallable()
public final UnaryCallable<ReportRuntimeEventRequest,Operation> reportRuntimeEventCallable()
Report and process a runtime event.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ReportRuntimeEventRequest request =
ReportRuntimeEventRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.setVmId("vmId3622450")
.setEvent(Event.newBuilder().build())
.build();
ApiFuture<Operation> future =
managedNotebookServiceClient.reportRuntimeEventCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<ReportRuntimeEventRequest,Operation> |
reportRuntimeEventOperationCallable()
public final OperationCallable<ReportRuntimeEventRequest,Runtime,OperationMetadata> reportRuntimeEventOperationCallable()
Report and process a runtime event.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ReportRuntimeEventRequest request =
ReportRuntimeEventRequest.newBuilder()
.setName(RuntimeName.of("[PROJECT]", "[LOCATION]", "[RUNTIME]").toString())
.setVmId("vmId3622450")
.setEvent(Event.newBuilder().build())
.build();
OperationFuture
Type | Description |
OperationCallable<ReportRuntimeEventRequest,Runtime,OperationMetadata> |
resetRuntimeAsync(ResetRuntimeRequest request)
public final OperationFuture<Runtime,OperationMetadata> resetRuntimeAsync(ResetRuntimeRequest request)
Resets a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ResetRuntimeRequest request = ResetRuntimeRequest.newBuilder().setName("name3373707").build();
Runtime response = managedNotebookServiceClient.resetRuntimeAsync(request).get();
}
Name | Description |
request | ResetRuntimeRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
resetRuntimeAsync(String name)
public final OperationFuture<Runtime,OperationMetadata> resetRuntimeAsync(String name)
Resets a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String name = "name3373707";
Runtime response = managedNotebookServiceClient.resetRuntimeAsync(name).get();
}
Name | Description |
name | String Required. Format:
|
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
resetRuntimeCallable()
public final UnaryCallable<ResetRuntimeRequest,Operation> resetRuntimeCallable()
Resets a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ResetRuntimeRequest request = ResetRuntimeRequest.newBuilder().setName("name3373707").build();
ApiFuture<Operation> future =
managedNotebookServiceClient.resetRuntimeCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<ResetRuntimeRequest,Operation> |
resetRuntimeOperationCallable()
public final OperationCallable<ResetRuntimeRequest,Runtime,OperationMetadata> resetRuntimeOperationCallable()
Resets a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
ResetRuntimeRequest request = ResetRuntimeRequest.newBuilder().setName("name3373707").build();
OperationFuture
Type | Description |
OperationCallable<ResetRuntimeRequest,Runtime,OperationMetadata> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
startRuntimeAsync(StartRuntimeRequest request)
public final OperationFuture<Runtime,OperationMetadata> startRuntimeAsync(StartRuntimeRequest request)
Starts a Managed Notebook Runtime. Perform "Start" on GPU instances; "Resume" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
StartRuntimeRequest request = StartRuntimeRequest.newBuilder().setName("name3373707").build();
Runtime response = managedNotebookServiceClient.startRuntimeAsync(request).get();
}
Name | Description |
request | StartRuntimeRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
startRuntimeAsync(String name)
public final OperationFuture<Runtime,OperationMetadata> startRuntimeAsync(String name)
Starts a Managed Notebook Runtime. Perform "Start" on GPU instances; "Resume" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String name = "name3373707";
Runtime response = managedNotebookServiceClient.startRuntimeAsync(name).get();
}
Name | Description |
name | String Required. Format:
|
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
startRuntimeCallable()
public final UnaryCallable<StartRuntimeRequest,Operation> startRuntimeCallable()
Starts a Managed Notebook Runtime. Perform "Start" on GPU instances; "Resume" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
StartRuntimeRequest request = StartRuntimeRequest.newBuilder().setName("name3373707").build();
ApiFuture<Operation> future =
managedNotebookServiceClient.startRuntimeCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<StartRuntimeRequest,Operation> |
startRuntimeOperationCallable()
public final OperationCallable<StartRuntimeRequest,Runtime,OperationMetadata> startRuntimeOperationCallable()
Starts a Managed Notebook Runtime. Perform "Start" on GPU instances; "Resume" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
StartRuntimeRequest request = StartRuntimeRequest.newBuilder().setName("name3373707").build();
OperationFuture
Type | Description |
OperationCallable<StartRuntimeRequest,Runtime,OperationMetadata> |
stopRuntimeAsync(StopRuntimeRequest request)
public final OperationFuture<Runtime,OperationMetadata> stopRuntimeAsync(StopRuntimeRequest request)
Stops a Managed Notebook Runtime. Perform "Stop" on GPU instances; "Suspend" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
StopRuntimeRequest request = StopRuntimeRequest.newBuilder().setName("name3373707").build();
Runtime response = managedNotebookServiceClient.stopRuntimeAsync(request).get();
}
Name | Description |
request | StopRuntimeRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
stopRuntimeAsync(String name)
public final OperationFuture<Runtime,OperationMetadata> stopRuntimeAsync(String name)
Stops a Managed Notebook Runtime. Perform "Stop" on GPU instances; "Suspend" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String name = "name3373707";
Runtime response = managedNotebookServiceClient.stopRuntimeAsync(name).get();
}
Name | Description |
name | String Required. Format:
|
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
stopRuntimeCallable()
public final UnaryCallable<StopRuntimeRequest,Operation> stopRuntimeCallable()
Stops a Managed Notebook Runtime. Perform "Stop" on GPU instances; "Suspend" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
StopRuntimeRequest request = StopRuntimeRequest.newBuilder().setName("name3373707").build();
ApiFuture<Operation> future =
managedNotebookServiceClient.stopRuntimeCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<StopRuntimeRequest,Operation> |
stopRuntimeOperationCallable()
public final OperationCallable<StopRuntimeRequest,Runtime,OperationMetadata> stopRuntimeOperationCallable()
Stops a Managed Notebook Runtime. Perform "Stop" on GPU instances; "Suspend" on CPU instances See: https://cloud.google.com/compute/docs/instances/stop-start-instance https://cloud.google.com/compute/docs/instances/suspend-resume-instance
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
StopRuntimeRequest request = StopRuntimeRequest.newBuilder().setName("name3373707").build();
OperationFuture
Type | Description |
OperationCallable<StopRuntimeRequest,Runtime,OperationMetadata> |
switchRuntimeAsync(SwitchRuntimeRequest request)
public final OperationFuture<Runtime,OperationMetadata> switchRuntimeAsync(SwitchRuntimeRequest request)
Switch a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
SwitchRuntimeRequest request =
SwitchRuntimeRequest.newBuilder()
.setName("name3373707")
.setMachineType("machineType-218117087")
.setAcceleratorConfig(RuntimeAcceleratorConfig.newBuilder().build())
.build();
Runtime response = managedNotebookServiceClient.switchRuntimeAsync(request).get();
}
Name | Description |
request | SwitchRuntimeRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
switchRuntimeAsync(String name)
public final OperationFuture<Runtime,OperationMetadata> switchRuntimeAsync(String name)
Switch a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
String name = "name3373707";
Runtime response = managedNotebookServiceClient.switchRuntimeAsync(name).get();
}
Name | Description |
name | String Required. Format:
|
Type | Description |
OperationFuture<Runtime,OperationMetadata> |
switchRuntimeCallable()
public final UnaryCallable<SwitchRuntimeRequest,Operation> switchRuntimeCallable()
Switch a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
SwitchRuntimeRequest request =
SwitchRuntimeRequest.newBuilder()
.setName("name3373707")
.setMachineType("machineType-218117087")
.setAcceleratorConfig(RuntimeAcceleratorConfig.newBuilder().build())
.build();
ApiFuture<Operation> future =
managedNotebookServiceClient.switchRuntimeCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<SwitchRuntimeRequest,Operation> |
switchRuntimeOperationCallable()
public final OperationCallable<SwitchRuntimeRequest,Runtime,OperationMetadata> switchRuntimeOperationCallable()
Switch a Managed Notebook Runtime.
Sample code:
try (ManagedNotebookServiceClient managedNotebookServiceClient =
ManagedNotebookServiceClient.create()) {
SwitchRuntimeRequest request =
SwitchRuntimeRequest.newBuilder()
.setName("name3373707")
.setMachineType("machineType-218117087")
.setAcceleratorConfig(RuntimeAcceleratorConfig.newBuilder().build())
.build();
OperationFuture
Type | Description |
OperationCallable<SwitchRuntimeRequest,Runtime,OperationMetadata> |