1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. MediaServices
  5. MediaWorkflow
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.MediaServices.MediaWorkflow

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This resource provides the Media Workflow resource in Oracle Cloud Infrastructure Media Services service.

    Creates a new MediaWorkflow.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testMediaWorkflow = new oci.mediaservices.MediaWorkflow("testMediaWorkflow", {
        compartmentId: _var.compartment_id,
        displayName: _var.media_workflow_display_name,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        locks: [{
            compartmentId: _var.compartment_id,
            type: _var.media_workflow_locks_type,
            message: _var.media_workflow_locks_message,
            relatedResourceId: oci_usage_proxy_resource.test_resource.id,
            timeCreated: _var.media_workflow_locks_time_created,
        }],
        mediaWorkflowConfigurationIds: _var.media_workflow_media_workflow_configuration_ids,
        parameters: _var.media_workflow_parameters,
        tasks: [{
            key: _var.media_workflow_tasks_key,
            parameters: _var.media_workflow_tasks_parameters,
            type: _var.media_workflow_tasks_type,
            version: _var.media_workflow_tasks_version,
            enableParameterReference: _var.media_workflow_tasks_enable_parameter_reference,
            enableWhenReferencedParameterEquals: _var.media_workflow_tasks_enable_when_referenced_parameter_equals,
            prerequisites: _var.media_workflow_tasks_prerequisites,
        }],
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_media_workflow = oci.media_services.MediaWorkflow("testMediaWorkflow",
        compartment_id=var["compartment_id"],
        display_name=var["media_workflow_display_name"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        locks=[oci.media_services.MediaWorkflowLockArgs(
            compartment_id=var["compartment_id"],
            type=var["media_workflow_locks_type"],
            message=var["media_workflow_locks_message"],
            related_resource_id=oci_usage_proxy_resource["test_resource"]["id"],
            time_created=var["media_workflow_locks_time_created"],
        )],
        media_workflow_configuration_ids=var["media_workflow_media_workflow_configuration_ids"],
        parameters=var["media_workflow_parameters"],
        tasks=[oci.media_services.MediaWorkflowTaskArgs(
            key=var["media_workflow_tasks_key"],
            parameters=var["media_workflow_tasks_parameters"],
            type=var["media_workflow_tasks_type"],
            version=var["media_workflow_tasks_version"],
            enable_parameter_reference=var["media_workflow_tasks_enable_parameter_reference"],
            enable_when_referenced_parameter_equals=var["media_workflow_tasks_enable_when_referenced_parameter_equals"],
            prerequisites=var["media_workflow_tasks_prerequisites"],
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/MediaServices"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := MediaServices.NewMediaWorkflow(ctx, "testMediaWorkflow", &MediaServices.MediaWorkflowArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			DisplayName:   pulumi.Any(_var.Media_workflow_display_name),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			Locks: mediaservices.MediaWorkflowLockArray{
    				&mediaservices.MediaWorkflowLockArgs{
    					CompartmentId:     pulumi.Any(_var.Compartment_id),
    					Type:              pulumi.Any(_var.Media_workflow_locks_type),
    					Message:           pulumi.Any(_var.Media_workflow_locks_message),
    					RelatedResourceId: pulumi.Any(oci_usage_proxy_resource.Test_resource.Id),
    					TimeCreated:       pulumi.Any(_var.Media_workflow_locks_time_created),
    				},
    			},
    			MediaWorkflowConfigurationIds: pulumi.Any(_var.Media_workflow_media_workflow_configuration_ids),
    			Parameters:                    pulumi.Any(_var.Media_workflow_parameters),
    			Tasks: mediaservices.MediaWorkflowTaskArray{
    				&mediaservices.MediaWorkflowTaskArgs{
    					Key:                                 pulumi.Any(_var.Media_workflow_tasks_key),
    					Parameters:                          pulumi.Any(_var.Media_workflow_tasks_parameters),
    					Type:                                pulumi.Any(_var.Media_workflow_tasks_type),
    					Version:                             pulumi.Any(_var.Media_workflow_tasks_version),
    					EnableParameterReference:            pulumi.Any(_var.Media_workflow_tasks_enable_parameter_reference),
    					EnableWhenReferencedParameterEquals: pulumi.Any(_var.Media_workflow_tasks_enable_when_referenced_parameter_equals),
    					Prerequisites:                       pulumi.Any(_var.Media_workflow_tasks_prerequisites),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testMediaWorkflow = new Oci.MediaServices.MediaWorkflow("testMediaWorkflow", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Media_workflow_display_name,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            Locks = new[]
            {
                new Oci.MediaServices.Inputs.MediaWorkflowLockArgs
                {
                    CompartmentId = @var.Compartment_id,
                    Type = @var.Media_workflow_locks_type,
                    Message = @var.Media_workflow_locks_message,
                    RelatedResourceId = oci_usage_proxy_resource.Test_resource.Id,
                    TimeCreated = @var.Media_workflow_locks_time_created,
                },
            },
            MediaWorkflowConfigurationIds = @var.Media_workflow_media_workflow_configuration_ids,
            Parameters = @var.Media_workflow_parameters,
            Tasks = new[]
            {
                new Oci.MediaServices.Inputs.MediaWorkflowTaskArgs
                {
                    Key = @var.Media_workflow_tasks_key,
                    Parameters = @var.Media_workflow_tasks_parameters,
                    Type = @var.Media_workflow_tasks_type,
                    Version = @var.Media_workflow_tasks_version,
                    EnableParameterReference = @var.Media_workflow_tasks_enable_parameter_reference,
                    EnableWhenReferencedParameterEquals = @var.Media_workflow_tasks_enable_when_referenced_parameter_equals,
                    Prerequisites = @var.Media_workflow_tasks_prerequisites,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.MediaServices.MediaWorkflow;
    import com.pulumi.oci.MediaServices.MediaWorkflowArgs;
    import com.pulumi.oci.MediaServices.inputs.MediaWorkflowLockArgs;
    import com.pulumi.oci.MediaServices.inputs.MediaWorkflowTaskArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testMediaWorkflow = new MediaWorkflow("testMediaWorkflow", MediaWorkflowArgs.builder()        
                .compartmentId(var_.compartment_id())
                .displayName(var_.media_workflow_display_name())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .locks(MediaWorkflowLockArgs.builder()
                    .compartmentId(var_.compartment_id())
                    .type(var_.media_workflow_locks_type())
                    .message(var_.media_workflow_locks_message())
                    .relatedResourceId(oci_usage_proxy_resource.test_resource().id())
                    .timeCreated(var_.media_workflow_locks_time_created())
                    .build())
                .mediaWorkflowConfigurationIds(var_.media_workflow_media_workflow_configuration_ids())
                .parameters(var_.media_workflow_parameters())
                .tasks(MediaWorkflowTaskArgs.builder()
                    .key(var_.media_workflow_tasks_key())
                    .parameters(var_.media_workflow_tasks_parameters())
                    .type(var_.media_workflow_tasks_type())
                    .version(var_.media_workflow_tasks_version())
                    .enableParameterReference(var_.media_workflow_tasks_enable_parameter_reference())
                    .enableWhenReferencedParameterEquals(var_.media_workflow_tasks_enable_when_referenced_parameter_equals())
                    .prerequisites(var_.media_workflow_tasks_prerequisites())
                    .build())
                .build());
    
        }
    }
    
    resources:
      testMediaWorkflow:
        type: oci:MediaServices:MediaWorkflow
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.media_workflow_display_name}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          locks:
            - compartmentId: ${var.compartment_id}
              type: ${var.media_workflow_locks_type}
              message: ${var.media_workflow_locks_message}
              relatedResourceId: ${oci_usage_proxy_resource.test_resource.id}
              timeCreated: ${var.media_workflow_locks_time_created}
          mediaWorkflowConfigurationIds: ${var.media_workflow_media_workflow_configuration_ids}
          parameters: ${var.media_workflow_parameters}
          tasks:
            - key: ${var.media_workflow_tasks_key}
              parameters: ${var.media_workflow_tasks_parameters}
              type: ${var.media_workflow_tasks_type}
              version: ${var.media_workflow_tasks_version}
              enableParameterReference: ${var.media_workflow_tasks_enable_parameter_reference}
              enableWhenReferencedParameterEquals: ${var.media_workflow_tasks_enable_when_referenced_parameter_equals}
              prerequisites: ${var.media_workflow_tasks_prerequisites}
    

    Create MediaWorkflow Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MediaWorkflow(name: string, args: MediaWorkflowArgs, opts?: CustomResourceOptions);
    @overload
    def MediaWorkflow(resource_name: str,
                      args: MediaWorkflowArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def MediaWorkflow(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      compartment_id: Optional[str] = None,
                      display_name: Optional[str] = None,
                      defined_tags: Optional[Mapping[str, Any]] = None,
                      freeform_tags: Optional[Mapping[str, Any]] = None,
                      is_lock_override: Optional[bool] = None,
                      locks: Optional[Sequence[_mediaservices.MediaWorkflowLockArgs]] = None,
                      media_workflow_configuration_ids: Optional[Sequence[str]] = None,
                      parameters: Optional[str] = None,
                      tasks: Optional[Sequence[_mediaservices.MediaWorkflowTaskArgs]] = None)
    func NewMediaWorkflow(ctx *Context, name string, args MediaWorkflowArgs, opts ...ResourceOption) (*MediaWorkflow, error)
    public MediaWorkflow(string name, MediaWorkflowArgs args, CustomResourceOptions? opts = null)
    public MediaWorkflow(String name, MediaWorkflowArgs args)
    public MediaWorkflow(String name, MediaWorkflowArgs args, CustomResourceOptions options)
    
    type: oci:MediaServices:MediaWorkflow
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MediaWorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MediaWorkflowArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MediaWorkflowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MediaWorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MediaWorkflowArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var mediaWorkflowResource = new Oci.MediaServices.MediaWorkflow("mediaWorkflowResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
        IsLockOverride = false,
        Locks = new[]
        {
            new Oci.MediaServices.Inputs.MediaWorkflowLockArgs
            {
                CompartmentId = "string",
                Type = "string",
                Message = "string",
                RelatedResourceId = "string",
                TimeCreated = "string",
            },
        },
        MediaWorkflowConfigurationIds = new[]
        {
            "string",
        },
        Parameters = "string",
        Tasks = new[]
        {
            new Oci.MediaServices.Inputs.MediaWorkflowTaskArgs
            {
                Key = "string",
                Parameters = "string",
                Type = "string",
                Version = "string",
                EnableParameterReference = "string",
                EnableWhenReferencedParameterEquals = 
                {
                    { "string", "any" },
                },
                Prerequisites = new[]
                {
                    "string",
                },
            },
        },
    });
    
    example, err := MediaServices.NewMediaWorkflow(ctx, "mediaWorkflowResource", &MediaServices.MediaWorkflowArgs{
    	CompartmentId: pulumi.String("string"),
    	DisplayName:   pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	IsLockOverride: pulumi.Bool(false),
    	Locks: mediaservices.MediaWorkflowLockArray{
    		&mediaservices.MediaWorkflowLockArgs{
    			CompartmentId:     pulumi.String("string"),
    			Type:              pulumi.String("string"),
    			Message:           pulumi.String("string"),
    			RelatedResourceId: pulumi.String("string"),
    			TimeCreated:       pulumi.String("string"),
    		},
    	},
    	MediaWorkflowConfigurationIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parameters: pulumi.String("string"),
    	Tasks: mediaservices.MediaWorkflowTaskArray{
    		&mediaservices.MediaWorkflowTaskArgs{
    			Key:                      pulumi.String("string"),
    			Parameters:               pulumi.String("string"),
    			Type:                     pulumi.String("string"),
    			Version:                  pulumi.String("string"),
    			EnableParameterReference: pulumi.String("string"),
    			EnableWhenReferencedParameterEquals: pulumi.Map{
    				"string": pulumi.Any("any"),
    			},
    			Prerequisites: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var mediaWorkflowResource = new MediaWorkflow("mediaWorkflowResource", MediaWorkflowArgs.builder()        
        .compartmentId("string")
        .displayName("string")
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .isLockOverride(false)
        .locks(MediaWorkflowLockArgs.builder()
            .compartmentId("string")
            .type("string")
            .message("string")
            .relatedResourceId("string")
            .timeCreated("string")
            .build())
        .mediaWorkflowConfigurationIds("string")
        .parameters("string")
        .tasks(MediaWorkflowTaskArgs.builder()
            .key("string")
            .parameters("string")
            .type("string")
            .version("string")
            .enableParameterReference("string")
            .enableWhenReferencedParameterEquals(Map.of("string", "any"))
            .prerequisites("string")
            .build())
        .build());
    
    media_workflow_resource = oci.media_services.MediaWorkflow("mediaWorkflowResource",
        compartment_id="string",
        display_name="string",
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        },
        is_lock_override=False,
        locks=[oci.media_services.MediaWorkflowLockArgs(
            compartment_id="string",
            type="string",
            message="string",
            related_resource_id="string",
            time_created="string",
        )],
        media_workflow_configuration_ids=["string"],
        parameters="string",
        tasks=[oci.media_services.MediaWorkflowTaskArgs(
            key="string",
            parameters="string",
            type="string",
            version="string",
            enable_parameter_reference="string",
            enable_when_referenced_parameter_equals={
                "string": "any",
            },
            prerequisites=["string"],
        )])
    
    const mediaWorkflowResource = new oci.mediaservices.MediaWorkflow("mediaWorkflowResource", {
        compartmentId: "string",
        displayName: "string",
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
        isLockOverride: false,
        locks: [{
            compartmentId: "string",
            type: "string",
            message: "string",
            relatedResourceId: "string",
            timeCreated: "string",
        }],
        mediaWorkflowConfigurationIds: ["string"],
        parameters: "string",
        tasks: [{
            key: "string",
            parameters: "string",
            type: "string",
            version: "string",
            enableParameterReference: "string",
            enableWhenReferencedParameterEquals: {
                string: "any",
            },
            prerequisites: ["string"],
        }],
    });
    
    type: oci:MediaServices:MediaWorkflow
    properties:
        compartmentId: string
        definedTags:
            string: any
        displayName: string
        freeformTags:
            string: any
        isLockOverride: false
        locks:
            - compartmentId: string
              message: string
              relatedResourceId: string
              timeCreated: string
              type: string
        mediaWorkflowConfigurationIds:
            - string
        parameters: string
        tasks:
            - enableParameterReference: string
              enableWhenReferencedParameterEquals:
                string: any
              key: string
              parameters: string
              prerequisites:
                - string
              type: string
              version: string
    

    MediaWorkflow Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The MediaWorkflow resource accepts the following input properties:

    CompartmentId string
    (Updatable) The compartment ID of the lock.
    DisplayName string
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsLockOverride bool
    Locks List<MediaWorkflowLock>
    Locks associated with this resource.
    MediaWorkflowConfigurationIds List<string>
    (Updatable) 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.
    Parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    Tasks List<MediaWorkflowTask>
    (Updatable) 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.
    CompartmentId string
    (Updatable) The compartment ID of the lock.
    DisplayName string
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsLockOverride bool
    Locks []MediaWorkflowLockArgs
    Locks associated with this resource.
    MediaWorkflowConfigurationIds []string
    (Updatable) 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.
    Parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    Tasks []MediaWorkflowTaskArgs
    (Updatable) 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.
    compartmentId String
    (Updatable) The compartment ID of the lock.
    displayName String
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isLockOverride Boolean
    locks List<MediaWorkflowLock>
    Locks associated with this resource.
    mediaWorkflowConfigurationIds List<String>
    (Updatable) 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.
    parameters String
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    tasks List<MediaWorkflowTask>
    (Updatable) 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.
    compartmentId string
    (Updatable) The compartment ID of the lock.
    displayName string
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isLockOverride boolean
    locks MediaWorkflowLock[]
    Locks associated with this resource.
    mediaWorkflowConfigurationIds string[]
    (Updatable) 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.
    parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    tasks MediaWorkflowTask[]
    (Updatable) 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.
    compartment_id str
    (Updatable) The compartment ID of the lock.
    display_name str
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    is_lock_override bool
    locks Sequence[mediaservices.MediaWorkflowLockArgs]
    Locks associated with this resource.
    media_workflow_configuration_ids Sequence[str]
    (Updatable) 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.
    parameters str
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    tasks Sequence[mediaservices.MediaWorkflowTaskArgs]
    (Updatable) 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.
    compartmentId String
    (Updatable) The compartment ID of the lock.
    displayName String
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isLockOverride Boolean
    locks List<Property Map>
    Locks associated with this resource.
    mediaWorkflowConfigurationIds List<String>
    (Updatable) 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.
    parameters String
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    tasks List<Property Map>
    (Updatable) 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.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MediaWorkflow resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    State string
    The current state of the MediaWorkflow.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    When the lock was created.
    TimeUpdated string
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    Version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    State string
    The current state of the MediaWorkflow.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    When the lock was created.
    TimeUpdated string
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    Version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state String
    The current state of the MediaWorkflow.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    When the lock was created.
    timeUpdated String
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version String

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    id string
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state string
    The current state of the MediaWorkflow.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    When the lock was created.
    timeUpdated string
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    id str
    The provider-assigned unique ID for this managed resource.
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state str
    The current state of the MediaWorkflow.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    When the lock was created.
    time_updated str
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version str

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state String
    The current state of the MediaWorkflow.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    When the lock was created.
    timeUpdated String
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version String

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Look up Existing MediaWorkflow Resource

    Get an existing MediaWorkflow resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: MediaWorkflowState, opts?: CustomResourceOptions): MediaWorkflow
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            is_lock_override: Optional[bool] = None,
            lifecyle_details: Optional[str] = None,
            locks: Optional[Sequence[_mediaservices.MediaWorkflowLockArgs]] = None,
            media_workflow_configuration_ids: Optional[Sequence[str]] = None,
            parameters: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            tasks: Optional[Sequence[_mediaservices.MediaWorkflowTaskArgs]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            version: Optional[str] = None) -> MediaWorkflow
    func GetMediaWorkflow(ctx *Context, name string, id IDInput, state *MediaWorkflowState, opts ...ResourceOption) (*MediaWorkflow, error)
    public static MediaWorkflow Get(string name, Input<string> id, MediaWorkflowState? state, CustomResourceOptions? opts = null)
    public static MediaWorkflow get(String name, Output<String> id, MediaWorkflowState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The compartment ID of the lock.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsLockOverride bool
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Locks List<MediaWorkflowLock>
    Locks associated with this resource.
    MediaWorkflowConfigurationIds List<string>
    (Updatable) 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.
    Parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    State string
    The current state of the MediaWorkflow.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    Tasks List<MediaWorkflowTask>
    (Updatable) 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.
    TimeCreated string
    When the lock was created.
    TimeUpdated string
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    Version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    (Updatable) The compartment ID of the lock.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsLockOverride bool
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Locks []MediaWorkflowLockArgs
    Locks associated with this resource.
    MediaWorkflowConfigurationIds []string
    (Updatable) 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.
    Parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    State string
    The current state of the MediaWorkflow.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    Tasks []MediaWorkflowTaskArgs
    (Updatable) 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.
    TimeCreated string
    When the lock was created.
    TimeUpdated string
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    Version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The compartment ID of the lock.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isLockOverride Boolean
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks List<MediaWorkflowLock>
    Locks associated with this resource.
    mediaWorkflowConfigurationIds List<String>
    (Updatable) 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.
    parameters String
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    state String
    The current state of the MediaWorkflow.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    tasks List<MediaWorkflowTask>
    (Updatable) 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.
    timeCreated String
    When the lock was created.
    timeUpdated String
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version String

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId string
    (Updatable) The compartment ID of the lock.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isLockOverride boolean
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks MediaWorkflowLock[]
    Locks associated with this resource.
    mediaWorkflowConfigurationIds string[]
    (Updatable) 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.
    parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    state string
    The current state of the MediaWorkflow.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    tasks MediaWorkflowTask[]
    (Updatable) 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.
    timeCreated string
    When the lock was created.
    timeUpdated string
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id str
    (Updatable) The compartment ID of the lock.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    display_name str
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    is_lock_override bool
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks Sequence[mediaservices.MediaWorkflowLockArgs]
    Locks associated with this resource.
    media_workflow_configuration_ids Sequence[str]
    (Updatable) 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.
    parameters str
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    state str
    The current state of the MediaWorkflow.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    tasks Sequence[mediaservices.MediaWorkflowTaskArgs]
    (Updatable) 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.
    time_created str
    When the lock was created.
    time_updated str
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version str

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The compartment ID of the lock.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isLockOverride Boolean
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    locks List<Property Map>
    Locks associated with this resource.
    mediaWorkflowConfigurationIds List<String>
    (Updatable) 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.
    parameters String
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    state String
    The current state of the MediaWorkflow.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    tasks List<Property Map>
    (Updatable) 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.
    timeCreated String
    When the lock was created.
    timeUpdated String
    The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.
    version String

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Supporting Types

    MediaWorkflowLock, MediaWorkflowLockArgs

    CompartmentId string
    (Updatable) The compartment ID of the lock.
    Type string
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    Message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    RelatedResourceId string
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    When the lock was created.
    CompartmentId string
    (Updatable) The compartment ID of the lock.
    Type string
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    Message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    RelatedResourceId string
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    When the lock was created.
    compartmentId String
    (Updatable) The compartment ID of the lock.
    type String
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    message String
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId String
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    When the lock was created.
    compartmentId string
    (Updatable) The compartment ID of the lock.
    type string
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId string
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated string
    When the lock was created.
    compartment_id str
    (Updatable) The compartment ID of the lock.
    type str
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    message str
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    related_resource_id str
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    time_created str
    When the lock was created.
    compartmentId String
    (Updatable) The compartment ID of the lock.
    type String
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    message String
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId String
    The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    When the lock was created.

    MediaWorkflowTask, MediaWorkflowTaskArgs

    Key string
    (Updatable) A unique identifier for this task within its workflow. Keys are used to reference a task within workflows and MediaWorkflowJobs. Tasks are referenced as prerequisites and to track output and state.
    Parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    Type string
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    Version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    EnableParameterReference string
    (Updatable) Allows this task to be conditionally enabled. If no value or a blank value is given, the task is unconditionally enbled. Otherwise the given string specifies a parameter of the job created for this task's workflow using the JSON pointer syntax. The JSON pointer is validated when a job is created from the workflow of this task.
    EnableWhenReferencedParameterEquals Dictionary<string, object>
    (Updatable) Used in conjunction with enableParameterReference to conditionally enable a task. When a job is created from the workflow of this task, the task will only be enabled if the value of the parameter specified by enableParameterReference is equal to the value of this property. This property must be prenset if and only if a enableParameterReference is given. The value is a JSON node.
    Prerequisites List<string>
    (Updatable) Keys to the other tasks in this workflow that must be completed before execution of this task can begin.
    Key string
    (Updatable) A unique identifier for this task within its workflow. Keys are used to reference a task within workflows and MediaWorkflowJobs. Tasks are referenced as prerequisites and to track output and state.
    Parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    Type string
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    Version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    EnableParameterReference string
    (Updatable) Allows this task to be conditionally enabled. If no value or a blank value is given, the task is unconditionally enbled. Otherwise the given string specifies a parameter of the job created for this task's workflow using the JSON pointer syntax. The JSON pointer is validated when a job is created from the workflow of this task.
    EnableWhenReferencedParameterEquals map[string]interface{}
    (Updatable) Used in conjunction with enableParameterReference to conditionally enable a task. When a job is created from the workflow of this task, the task will only be enabled if the value of the parameter specified by enableParameterReference is equal to the value of this property. This property must be prenset if and only if a enableParameterReference is given. The value is a JSON node.
    Prerequisites []string
    (Updatable) Keys to the other tasks in this workflow that must be completed before execution of this task can begin.
    key String
    (Updatable) A unique identifier for this task within its workflow. Keys are used to reference a task within workflows and MediaWorkflowJobs. Tasks are referenced as prerequisites and to track output and state.
    parameters String
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    type String
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    version String

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    enableParameterReference String
    (Updatable) Allows this task to be conditionally enabled. If no value or a blank value is given, the task is unconditionally enbled. Otherwise the given string specifies a parameter of the job created for this task's workflow using the JSON pointer syntax. The JSON pointer is validated when a job is created from the workflow of this task.
    enableWhenReferencedParameterEquals Map<String,Object>
    (Updatable) Used in conjunction with enableParameterReference to conditionally enable a task. When a job is created from the workflow of this task, the task will only be enabled if the value of the parameter specified by enableParameterReference is equal to the value of this property. This property must be prenset if and only if a enableParameterReference is given. The value is a JSON node.
    prerequisites List<String>
    (Updatable) Keys to the other tasks in this workflow that must be completed before execution of this task can begin.
    key string
    (Updatable) A unique identifier for this task within its workflow. Keys are used to reference a task within workflows and MediaWorkflowJobs. Tasks are referenced as prerequisites and to track output and state.
    parameters string
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    type string
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    version string

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    enableParameterReference string
    (Updatable) Allows this task to be conditionally enabled. If no value or a blank value is given, the task is unconditionally enbled. Otherwise the given string specifies a parameter of the job created for this task's workflow using the JSON pointer syntax. The JSON pointer is validated when a job is created from the workflow of this task.
    enableWhenReferencedParameterEquals {[key: string]: any}
    (Updatable) Used in conjunction with enableParameterReference to conditionally enable a task. When a job is created from the workflow of this task, the task will only be enabled if the value of the parameter specified by enableParameterReference is equal to the value of this property. This property must be prenset if and only if a enableParameterReference is given. The value is a JSON node.
    prerequisites string[]
    (Updatable) Keys to the other tasks in this workflow that must be completed before execution of this task can begin.
    key str
    (Updatable) A unique identifier for this task within its workflow. Keys are used to reference a task within workflows and MediaWorkflowJobs. Tasks are referenced as prerequisites and to track output and state.
    parameters str
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    type str
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    version str

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    enable_parameter_reference str
    (Updatable) Allows this task to be conditionally enabled. If no value or a blank value is given, the task is unconditionally enbled. Otherwise the given string specifies a parameter of the job created for this task's workflow using the JSON pointer syntax. The JSON pointer is validated when a job is created from the workflow of this task.
    enable_when_referenced_parameter_equals Mapping[str, Any]
    (Updatable) Used in conjunction with enableParameterReference to conditionally enable a task. When a job is created from the workflow of this task, the task will only be enabled if the value of the parameter specified by enableParameterReference is equal to the value of this property. This property must be prenset if and only if a enableParameterReference is given. The value is a JSON node.
    prerequisites Sequence[str]
    (Updatable) Keys to the other tasks in this workflow that must be completed before execution of this task can begin.
    key String
    (Updatable) A unique identifier for this task within its workflow. Keys are used to reference a task within workflows and MediaWorkflowJobs. Tasks are referenced as prerequisites and to track output and state.
    parameters String
    (Updatable) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.
    type String
    (Updatable) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.
    version String

    (Updatable) The version of the MediaWorkflowTaskDeclaration.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    enableParameterReference String
    (Updatable) Allows this task to be conditionally enabled. If no value or a blank value is given, the task is unconditionally enbled. Otherwise the given string specifies a parameter of the job created for this task's workflow using the JSON pointer syntax. The JSON pointer is validated when a job is created from the workflow of this task.
    enableWhenReferencedParameterEquals Map<Any>
    (Updatable) Used in conjunction with enableParameterReference to conditionally enable a task. When a job is created from the workflow of this task, the task will only be enabled if the value of the parameter specified by enableParameterReference is equal to the value of this property. This property must be prenset if and only if a enableParameterReference is given. The value is a JSON node.
    prerequisites List<String>
    (Updatable) Keys to the other tasks in this workflow that must be completed before execution of this task can begin.

    Import

    MediaWorkflows can be imported using the id, e.g.

    $ pulumi import oci:MediaServices/mediaWorkflow:MediaWorkflow test_media_workflow "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi