Interface WorkflowRunsCreateBatchRequest._FinalStage
-
- All Known Implementing Classes:
WorkflowRunsCreateBatchRequest.Builder
- Enclosing class:
- WorkflowRunsCreateBatchRequest
public static interface WorkflowRunsCreateBatchRequest._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowRunsCreateBatchRequest._FinalStageaddAllInputs(java.util.List<WorkflowRunsCreateBatchRequestInputsItem> inputs)WorkflowRunsCreateBatchRequest._FinalStageaddInputs(WorkflowRunsCreateBatchRequestInputsItem inputs)WorkflowRunsCreateBatchRequestbuild()WorkflowRunsCreateBatchRequest._FinalStageinputs(java.util.List<WorkflowRunsCreateBatchRequestInputsItem> inputs)An array of input objects to be processed by the workflow.WorkflowRunsCreateBatchRequest._FinalStagepriority(java.lang.Integer priority)WorkflowRunsCreateBatchRequest._FinalStagepriority(java.util.Optional<java.lang.Integer> priority)An optional value used to determine the relative order of runs when rate limiting is in effect.
-
-
-
Method Detail
-
build
WorkflowRunsCreateBatchRequest build()
-
inputs
WorkflowRunsCreateBatchRequest._FinalStage inputs(java.util.List<WorkflowRunsCreateBatchRequestInputsItem> inputs)
An array of input objects to be processed by the workflow. Each object represents a single workflow run to be created. The array must contain at least 1 input and at most 1000 inputs.
-
addInputs
WorkflowRunsCreateBatchRequest._FinalStage addInputs(WorkflowRunsCreateBatchRequestInputsItem inputs)
-
addAllInputs
WorkflowRunsCreateBatchRequest._FinalStage addAllInputs(java.util.List<WorkflowRunsCreateBatchRequestInputsItem> inputs)
-
priority
WorkflowRunsCreateBatchRequest._FinalStage priority(java.util.Optional<java.lang.Integer> priority)
An optional value used to determine the relative order of runs when rate limiting is in effect. Lower values will be prioritized before higher values. Defaults to 90 if not specified.
-
priority
WorkflowRunsCreateBatchRequest._FinalStage priority(java.lang.Integer priority)
-
-