Package com.google.cloud.notebooks.v1
Interface CreateRuntimeRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateRuntimeRequest,CreateRuntimeRequest.Builder
public interface CreateRuntimeRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.StringgetRequestId()Idempotent request UUID.com.google.protobuf.ByteStringgetRequestIdBytes()Idempotent request UUID.RuntimegetRuntime()Required.StringgetRuntimeId()Required.com.google.protobuf.ByteStringgetRuntimeIdBytes()Required.RuntimeOrBuildergetRuntimeOrBuilder()Required.booleanhasRuntime()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. Format: `parent=projects/{project_id}/locations/{location}`string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. Format: `parent=projects/{project_id}/locations/{location}`string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getRuntimeId
String getRuntimeId()
Required. User-defined unique ID of this Runtime.
string runtime_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The runtimeId.
-
getRuntimeIdBytes
com.google.protobuf.ByteString getRuntimeIdBytes()
Required. User-defined unique ID of this Runtime.
string runtime_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for runtimeId.
-
hasRuntime
boolean hasRuntime()
Required. The Runtime to be created.
.google.cloud.notebooks.v1.Runtime runtime = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the runtime field is set.
-
getRuntime
Runtime getRuntime()
Required. The Runtime to be created.
.google.cloud.notebooks.v1.Runtime runtime = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The runtime.
-
getRuntimeOrBuilder
RuntimeOrBuilder getRuntimeOrBuilder()
Required. The Runtime to be created.
.google.cloud.notebooks.v1.Runtime runtime = 3 [(.google.api.field_behavior) = REQUIRED];
-
getRequestId
String getRequestId()
Idempotent request UUID.
string request_id = 4;- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
Idempotent request UUID.
string request_id = 4;- Returns:
- The bytes for requestId.
-
-