Class SystemMediaWorkflow.Builder
- java.lang.Object
-
- com.oracle.bmc.mediaservices.model.SystemMediaWorkflow.Builder
-
- Enclosing class:
- SystemMediaWorkflow
public static class SystemMediaWorkflow.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SystemMediaWorkflow
build()
SystemMediaWorkflow.Builder
copy(SystemMediaWorkflow model)
SystemMediaWorkflow.Builder
description(String description)
Description of this workflow’s processing and how that processing can be customized by specifying parameter values.SystemMediaWorkflow.Builder
locks(List<ResourceLock> locks)
Locks associated with this resource.SystemMediaWorkflow.Builder
name(String name)
System provided unique identifier for this static media workflow.SystemMediaWorkflow.Builder
parameters(Map<String,Object> parameters)
JSON object representing named parameters and their default values that can be referenced throughout this workflow.SystemMediaWorkflow.Builder
tasks(List<MediaWorkflowTask> tasks)
The processing to be done in this workflow.
-
-
-
Method Detail
-
name
public SystemMediaWorkflow.Builder name(String name)
System provided unique identifier for this static media workflow.- Parameters:
name
- the value to set- Returns:
- this builder
-
description
public SystemMediaWorkflow.Builder description(String description)
Description of this workflow’s processing and how that processing can be customized by specifying parameter values.- Parameters:
description
- the value to set- Returns:
- this builder
-
parameters
public SystemMediaWorkflow.Builder parameters(Map<String,Object> parameters)
JSON object representing named parameters and their default values that can be referenced throughout this workflow.The values declared here can be overridden by the MediaWorkflowConfigurations or parameters supplied when creating MediaWorkflowJobs from this MediaWorkflow.
- Parameters:
parameters
- the value to set- Returns:
- this builder
-
tasks
public SystemMediaWorkflow.Builder tasks(List<MediaWorkflowTask> tasks)
The processing to be done in this workflow.Each key of the MediaWorkflowTasks in this array is unique within the array. The order of the items is preserved from the order of the tasks array in CreateMediaWorkflowDetails or UpdateMediaWorkflowDetails.
- Parameters:
tasks
- the value to set- Returns:
- this builder
-
locks
public SystemMediaWorkflow.Builder locks(List<ResourceLock> locks)
Locks associated with this resource.- Parameters:
locks
- the value to set- Returns:
- this builder
-
build
public SystemMediaWorkflow build()
-
copy
public SystemMediaWorkflow.Builder copy(SystemMediaWorkflow model)
-
-