Package com.google.cloud.dataplex.v1
Interface Task.NotebookTaskConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Task.NotebookTaskConfig
,Task.NotebookTaskConfig.Builder
- Enclosing class:
- Task
public static interface Task.NotebookTaskConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getArchiveUris(int index)
Optional.com.google.protobuf.ByteString
getArchiveUrisBytes(int index)
Optional.int
getArchiveUrisCount()
Optional.List<String>
getArchiveUrisList()
Optional.String
getFileUris(int index)
Optional.com.google.protobuf.ByteString
getFileUrisBytes(int index)
Optional.int
getFileUrisCount()
Optional.List<String>
getFileUrisList()
Optional.Task.InfrastructureSpec
getInfrastructureSpec()
Optional.Task.InfrastructureSpecOrBuilder
getInfrastructureSpecOrBuilder()
Optional.String
getNotebook()
Required.com.google.protobuf.ByteString
getNotebookBytes()
Required.boolean
hasInfrastructureSpec()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNotebook
String getNotebook()
Required. Path to input notebook. This can be the Cloud Storage URI of the notebook file or the path to a Notebook Content. The execution args are accessible as environment variables (`TASK_key=value`).
string notebook = 4 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The notebook.
-
getNotebookBytes
com.google.protobuf.ByteString getNotebookBytes()
Required. Path to input notebook. This can be the Cloud Storage URI of the notebook file or the path to a Notebook Content. The execution args are accessible as environment variables (`TASK_key=value`).
string notebook = 4 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for notebook.
-
hasInfrastructureSpec
boolean hasInfrastructureSpec()
Optional. Infrastructure specification for the execution.
.google.cloud.dataplex.v1.Task.InfrastructureSpec infrastructure_spec = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- Whether the infrastructureSpec field is set.
-
getInfrastructureSpec
Task.InfrastructureSpec getInfrastructureSpec()
Optional. Infrastructure specification for the execution.
.google.cloud.dataplex.v1.Task.InfrastructureSpec infrastructure_spec = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The infrastructureSpec.
-
getInfrastructureSpecOrBuilder
Task.InfrastructureSpecOrBuilder getInfrastructureSpecOrBuilder()
Optional. Infrastructure specification for the execution.
.google.cloud.dataplex.v1.Task.InfrastructureSpec infrastructure_spec = 3 [(.google.api.field_behavior) = OPTIONAL];
-
getFileUrisList
List<String> getFileUrisList()
Optional. Cloud Storage URIs of files to be placed in the working directory of each executor.
repeated string file_uris = 5 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- A list containing the fileUris.
-
getFileUrisCount
int getFileUrisCount()
Optional. Cloud Storage URIs of files to be placed in the working directory of each executor.
repeated string file_uris = 5 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The count of fileUris.
-
getFileUris
String getFileUris(int index)
Optional. Cloud Storage URIs of files to be placed in the working directory of each executor.
repeated string file_uris = 5 [(.google.api.field_behavior) = OPTIONAL];
- Parameters:
index
- The index of the element to return.- Returns:
- The fileUris at the given index.
-
getFileUrisBytes
com.google.protobuf.ByteString getFileUrisBytes(int index)
Optional. Cloud Storage URIs of files to be placed in the working directory of each executor.
repeated string file_uris = 5 [(.google.api.field_behavior) = OPTIONAL];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the fileUris at the given index.
-
getArchiveUrisList
List<String> getArchiveUrisList()
Optional. Cloud Storage URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
repeated string archive_uris = 6 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- A list containing the archiveUris.
-
getArchiveUrisCount
int getArchiveUrisCount()
Optional. Cloud Storage URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
repeated string archive_uris = 6 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The count of archiveUris.
-
getArchiveUris
String getArchiveUris(int index)
Optional. Cloud Storage URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
repeated string archive_uris = 6 [(.google.api.field_behavior) = OPTIONAL];
- Parameters:
index
- The index of the element to return.- Returns:
- The archiveUris at the given index.
-
getArchiveUrisBytes
com.google.protobuf.ByteString getArchiveUrisBytes(int index)
Optional. Cloud Storage URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
repeated string archive_uris = 6 [(.google.api.field_behavior) = OPTIONAL];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the archiveUris at the given index.
-
-