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 data set action by which data set 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 data set
contents. |
DatasetAction.Builder |
queryAction(SqlQueryDatasetAction queryAction)
An
SqlQueryDatasetAction object that uses an SQL query to automatically create data set
contents. |
equalsBySdkFields, sdkFields
copy
applyMutation, build
DatasetAction.Builder actionName(String actionName)
The name of the data set action by which data set contents are automatically created.
actionName
- The name of the data set action by which data set contents are automatically created.DatasetAction.Builder queryAction(SqlQueryDatasetAction queryAction)
An SqlQueryDatasetAction
object that uses an SQL query to automatically create data set
contents.
queryAction
- An SqlQueryDatasetAction
object that uses an SQL query to automatically create data set
contents.default DatasetAction.Builder queryAction(Consumer<SqlQueryDatasetAction.Builder> queryAction)
An SqlQueryDatasetAction
object that uses an SQL query to automatically create data set
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.Builder
queryAction(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 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.Builder
containerAction(ContainerDatasetAction)