CreateMediaWorkflowDetails

class oci.media_services.models.CreateMediaWorkflowDetails(**kwargs)

Bases: object

The information about new MediaWorkflow.

Methods

__init__(**kwargs) Initializes a new CreateMediaWorkflowDetails object with values from keyword arguments.

Attributes

compartment_id [Required] Gets the compartment_id of this CreateMediaWorkflowDetails.
defined_tags Gets the defined_tags of this CreateMediaWorkflowDetails.
display_name [Required] Gets the display_name of this CreateMediaWorkflowDetails.
freeform_tags Gets the freeform_tags of this CreateMediaWorkflowDetails.
locks Gets the locks of this CreateMediaWorkflowDetails.
media_workflow_configuration_ids Gets the media_workflow_configuration_ids of this CreateMediaWorkflowDetails.
parameters Gets the parameters of this CreateMediaWorkflowDetails.
tasks Gets the tasks of this CreateMediaWorkflowDetails.
__init__(**kwargs)

Initializes a new CreateMediaWorkflowDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • display_name (str) – The value to assign to the display_name property of this CreateMediaWorkflowDetails.
  • compartment_id (str) – The value to assign to the compartment_id property of this CreateMediaWorkflowDetails.
  • tasks (list[oci.media_services.models.MediaWorkflowTask]) – The value to assign to the tasks property of this CreateMediaWorkflowDetails.
  • media_workflow_configuration_ids (list[str]) – The value to assign to the media_workflow_configuration_ids property of this CreateMediaWorkflowDetails.
  • parameters (dict(str, object)) – The value to assign to the parameters property of this CreateMediaWorkflowDetails.
  • freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this CreateMediaWorkflowDetails.
  • defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this CreateMediaWorkflowDetails.
  • locks (list[oci.media_services.models.ResourceLock]) – The value to assign to the locks property of this CreateMediaWorkflowDetails.
compartment_id

[Required] Gets the compartment_id of this CreateMediaWorkflowDetails. Compartment Identifier.

Returns:The compartment_id of this CreateMediaWorkflowDetails.
Return type:str
defined_tags

Gets the defined_tags of this CreateMediaWorkflowDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {“foo-namespace”: {“bar-key”: “value”}}

Returns:The defined_tags of this CreateMediaWorkflowDetails.
Return type:dict(str, dict(str, object))
display_name

[Required] Gets the display_name of this CreateMediaWorkflowDetails. Name for the MediaWorkflow. Does not have to be unique, and it’s changeable. Avoid entering confidential information.

Returns:The display_name of this CreateMediaWorkflowDetails.
Return type:str
freeform_tags

Gets the freeform_tags of this CreateMediaWorkflowDetails. Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {“bar-key”: “value”}

Returns:The freeform_tags of this CreateMediaWorkflowDetails.
Return type:dict(str, str)
locks

Gets the locks of this CreateMediaWorkflowDetails. Locks associated with this resource.

Returns:The locks of this CreateMediaWorkflowDetails.
Return type:list[oci.media_services.models.ResourceLock]
media_workflow_configuration_ids

Gets the media_workflow_configuration_ids of this CreateMediaWorkflowDetails. Configurations to be applied to all the jobs for this workflow. Parameters in these configurations are overridden by parameters in the MediaWorkflowConfigurations of the MediaWorkflowJob and the parameters of the MediaWorkflowJob.

Returns:The media_workflow_configuration_ids of this CreateMediaWorkflowDetails.
Return type:list[str]
parameters

Gets the parameters of this CreateMediaWorkflowDetails. 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.

Returns:The parameters of this CreateMediaWorkflowDetails.
Return type:dict(str, object)
tasks

Gets the tasks of this CreateMediaWorkflowDetails. The processing to be done in this workflow. Each key of the MediaWorkflowTasks in this array must be unique within the array. The order of tasks given here will be preserved.

Returns:The tasks of this CreateMediaWorkflowDetails.
Return type:list[oci.media_services.models.MediaWorkflowTask]