Package com.google.cloud.notebooks.v1
Interface CreateExecutionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateExecutionRequest,CreateExecutionRequest.Builder
public interface CreateExecutionRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutiongetExecution()Required.StringgetExecutionId()Required.com.google.protobuf.ByteStringgetExecutionIdBytes()Required.ExecutionOrBuildergetExecutionOrBuilder()Required.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.booleanhasExecution()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.
-
getExecutionId
String getExecutionId()
Required. User-defined unique ID of this execution.
string execution_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The executionId.
-
getExecutionIdBytes
com.google.protobuf.ByteString getExecutionIdBytes()
Required. User-defined unique ID of this execution.
string execution_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for executionId.
-
hasExecution
boolean hasExecution()
Required. The execution to be created.
.google.cloud.notebooks.v1.Execution execution = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the execution field is set.
-
getExecution
Execution getExecution()
Required. The execution to be created.
.google.cloud.notebooks.v1.Execution execution = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The execution.
-
getExecutionOrBuilder
ExecutionOrBuilder getExecutionOrBuilder()
Required. The execution to be created.
.google.cloud.notebooks.v1.Execution execution = 3 [(.google.api.field_behavior) = REQUIRED];
-
-