public static interface DatasetAction.Builder extends SdkPojo, CopyableBuilder<DatasetAction.Builder,DatasetAction>
| Modifier and Type | Method and Description |
|---|---|
DatasetAction.Builder |
actionName(String actionName)
The name of the dataset action by which dataset contents are automatically created.
|
default DatasetAction.Builder |
containerAction(Consumer<ContainerDatasetAction.Builder> containerAction)
Information that allows the system to run a containerized application to create the dataset contents.
|
DatasetAction.Builder |
containerAction(ContainerDatasetAction containerAction)
Information that allows the system to run a containerized application to create the dataset contents.
|
default DatasetAction.Builder |
queryAction(Consumer<SqlQueryDatasetAction.Builder> queryAction)
An
SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents. |
DatasetAction.Builder |
queryAction(SqlQueryDatasetAction queryAction)
An
SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents. |
equalsBySdkFields, sdkFieldscopyapplyMutation, buildDatasetAction.Builder actionName(String actionName)
The name of the dataset action by which dataset contents are automatically created.
actionName - The name of the dataset action by which dataset contents are automatically created.DatasetAction.Builder queryAction(SqlQueryDatasetAction queryAction)
An SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents.
queryAction - An SqlQueryDatasetAction object that uses an SQL query to automatically create dataset
contents.default DatasetAction.Builder queryAction(Consumer<SqlQueryDatasetAction.Builder> queryAction)
An SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents.
SqlQueryDatasetAction.Builder avoiding
the need to create one manually via SqlQueryDatasetAction.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to queryAction(SqlQueryDatasetAction).
queryAction - a consumer that will call methods on SqlQueryDatasetAction.BuilderqueryAction(SqlQueryDatasetAction)DatasetAction.Builder containerAction(ContainerDatasetAction containerAction)
Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.
containerAction - Information that allows the system to run a containerized application to create the dataset contents.
The application must be in a Docker container along with any required support libraries.default DatasetAction.Builder containerAction(Consumer<ContainerDatasetAction.Builder> containerAction)
Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.
This is a convenience method that creates an instance of theContainerDatasetAction.Builder avoiding
the need to create one manually via ContainerDatasetAction.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to containerAction(ContainerDatasetAction).
containerAction - a consumer that will call methods on ContainerDatasetAction.BuildercontainerAction(ContainerDatasetAction)Copyright © 2023. All rights reserved.