oci.MediaServices.MediaWorkflowJob
Explore with Pulumi AI
This resource provides the Media Workflow Job resource in Oracle Cloud Infrastructure Media Services service.
Run the MediaWorkflow according to the given mediaWorkflow definition and configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMediaWorkflowJob = new oci.mediaservices.MediaWorkflowJob("test_media_workflow_job", {
    compartmentId: compartmentId,
    workflowIdentifierType: mediaWorkflowJobWorkflowIdentifierType,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    displayName: mediaWorkflowJobDisplayName,
    freeformTags: {
        "bar-key": "value",
    },
    locks: [{
        compartmentId: compartmentId,
        type: mediaWorkflowJobLocksType,
        message: mediaWorkflowJobLocksMessage,
        relatedResourceId: testResource.id,
        timeCreated: mediaWorkflowJobLocksTimeCreated,
    }],
    mediaWorkflowConfigurationIds: mediaWorkflowJobMediaWorkflowConfigurationIds,
    mediaWorkflowId: testMediaWorkflow.id,
    mediaWorkflowName: testMediaWorkflow.name,
    parameters: mediaWorkflowJobParameters,
});
import pulumi
import pulumi_oci as oci
test_media_workflow_job = oci.media_services.MediaWorkflowJob("test_media_workflow_job",
    compartment_id=compartment_id,
    workflow_identifier_type=media_workflow_job_workflow_identifier_type,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    display_name=media_workflow_job_display_name,
    freeform_tags={
        "bar-key": "value",
    },
    locks=[{
        "compartment_id": compartment_id,
        "type": media_workflow_job_locks_type,
        "message": media_workflow_job_locks_message,
        "related_resource_id": test_resource["id"],
        "time_created": media_workflow_job_locks_time_created,
    }],
    media_workflow_configuration_ids=media_workflow_job_media_workflow_configuration_ids,
    media_workflow_id=test_media_workflow["id"],
    media_workflow_name=test_media_workflow["name"],
    parameters=media_workflow_job_parameters)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/mediaservices"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mediaservices.NewMediaWorkflowJob(ctx, "test_media_workflow_job", &mediaservices.MediaWorkflowJobArgs{
			CompartmentId:          pulumi.Any(compartmentId),
			WorkflowIdentifierType: pulumi.Any(mediaWorkflowJobWorkflowIdentifierType),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			DisplayName: pulumi.Any(mediaWorkflowJobDisplayName),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			Locks: mediaservices.MediaWorkflowJobLockArray{
				&mediaservices.MediaWorkflowJobLockArgs{
					CompartmentId:     pulumi.Any(compartmentId),
					Type:              pulumi.Any(mediaWorkflowJobLocksType),
					Message:           pulumi.Any(mediaWorkflowJobLocksMessage),
					RelatedResourceId: pulumi.Any(testResource.Id),
					TimeCreated:       pulumi.Any(mediaWorkflowJobLocksTimeCreated),
				},
			},
			MediaWorkflowConfigurationIds: pulumi.Any(mediaWorkflowJobMediaWorkflowConfigurationIds),
			MediaWorkflowId:               pulumi.Any(testMediaWorkflow.Id),
			MediaWorkflowName:             pulumi.Any(testMediaWorkflow.Name),
			Parameters:                    pulumi.Any(mediaWorkflowJobParameters),
		})
		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 testMediaWorkflowJob = new Oci.MediaServices.MediaWorkflowJob("test_media_workflow_job", new()
    {
        CompartmentId = compartmentId,
        WorkflowIdentifierType = mediaWorkflowJobWorkflowIdentifierType,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        DisplayName = mediaWorkflowJobDisplayName,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        Locks = new[]
        {
            new Oci.MediaServices.Inputs.MediaWorkflowJobLockArgs
            {
                CompartmentId = compartmentId,
                Type = mediaWorkflowJobLocksType,
                Message = mediaWorkflowJobLocksMessage,
                RelatedResourceId = testResource.Id,
                TimeCreated = mediaWorkflowJobLocksTimeCreated,
            },
        },
        MediaWorkflowConfigurationIds = mediaWorkflowJobMediaWorkflowConfigurationIds,
        MediaWorkflowId = testMediaWorkflow.Id,
        MediaWorkflowName = testMediaWorkflow.Name,
        Parameters = mediaWorkflowJobParameters,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.MediaServices.MediaWorkflowJob;
import com.pulumi.oci.MediaServices.MediaWorkflowJobArgs;
import com.pulumi.oci.MediaServices.inputs.MediaWorkflowJobLockArgs;
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 testMediaWorkflowJob = new MediaWorkflowJob("testMediaWorkflowJob", MediaWorkflowJobArgs.builder()
            .compartmentId(compartmentId)
            .workflowIdentifierType(mediaWorkflowJobWorkflowIdentifierType)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .displayName(mediaWorkflowJobDisplayName)
            .freeformTags(Map.of("bar-key", "value"))
            .locks(MediaWorkflowJobLockArgs.builder()
                .compartmentId(compartmentId)
                .type(mediaWorkflowJobLocksType)
                .message(mediaWorkflowJobLocksMessage)
                .relatedResourceId(testResource.id())
                .timeCreated(mediaWorkflowJobLocksTimeCreated)
                .build())
            .mediaWorkflowConfigurationIds(mediaWorkflowJobMediaWorkflowConfigurationIds)
            .mediaWorkflowId(testMediaWorkflow.id())
            .mediaWorkflowName(testMediaWorkflow.name())
            .parameters(mediaWorkflowJobParameters)
            .build());
    }
}
resources:
  testMediaWorkflowJob:
    type: oci:MediaServices:MediaWorkflowJob
    name: test_media_workflow_job
    properties:
      compartmentId: ${compartmentId}
      workflowIdentifierType: ${mediaWorkflowJobWorkflowIdentifierType}
      definedTags:
        foo-namespace.bar-key: value
      displayName: ${mediaWorkflowJobDisplayName}
      freeformTags:
        bar-key: value
      locks:
        - compartmentId: ${compartmentId}
          type: ${mediaWorkflowJobLocksType}
          message: ${mediaWorkflowJobLocksMessage}
          relatedResourceId: ${testResource.id}
          timeCreated: ${mediaWorkflowJobLocksTimeCreated}
      mediaWorkflowConfigurationIds: ${mediaWorkflowJobMediaWorkflowConfigurationIds}
      mediaWorkflowId: ${testMediaWorkflow.id}
      mediaWorkflowName: ${testMediaWorkflow.name}
      parameters: ${mediaWorkflowJobParameters}
Create MediaWorkflowJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MediaWorkflowJob(name: string, args: MediaWorkflowJobArgs, opts?: CustomResourceOptions);@overload
def MediaWorkflowJob(resource_name: str,
                     args: MediaWorkflowJobArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def MediaWorkflowJob(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     compartment_id: Optional[str] = None,
                     workflow_identifier_type: Optional[str] = None,
                     defined_tags: Optional[Mapping[str, str]] = None,
                     display_name: Optional[str] = None,
                     freeform_tags: Optional[Mapping[str, str]] = None,
                     is_lock_override: Optional[bool] = None,
                     locks: Optional[Sequence[MediaWorkflowJobLockArgs]] = None,
                     media_workflow_configuration_ids: Optional[Sequence[str]] = None,
                     media_workflow_id: Optional[str] = None,
                     media_workflow_name: Optional[str] = None,
                     parameters: Optional[str] = None)func NewMediaWorkflowJob(ctx *Context, name string, args MediaWorkflowJobArgs, opts ...ResourceOption) (*MediaWorkflowJob, error)public MediaWorkflowJob(string name, MediaWorkflowJobArgs args, CustomResourceOptions? opts = null)
public MediaWorkflowJob(String name, MediaWorkflowJobArgs args)
public MediaWorkflowJob(String name, MediaWorkflowJobArgs args, CustomResourceOptions options)
type: oci:MediaServices:MediaWorkflowJob
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 MediaWorkflowJobArgs
- 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 MediaWorkflowJobArgs
- 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 MediaWorkflowJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MediaWorkflowJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MediaWorkflowJobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var mediaWorkflowJobResource = new Oci.MediaServices.MediaWorkflowJob("mediaWorkflowJobResource", new()
{
    CompartmentId = "string",
    WorkflowIdentifierType = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    IsLockOverride = false,
    Locks = new[]
    {
        new Oci.MediaServices.Inputs.MediaWorkflowJobLockArgs
        {
            CompartmentId = "string",
            Type = "string",
            Message = "string",
            RelatedResourceId = "string",
            TimeCreated = "string",
        },
    },
    MediaWorkflowConfigurationIds = new[]
    {
        "string",
    },
    MediaWorkflowId = "string",
    MediaWorkflowName = "string",
    Parameters = "string",
});
example, err := mediaservices.NewMediaWorkflowJob(ctx, "mediaWorkflowJobResource", &mediaservices.MediaWorkflowJobArgs{
	CompartmentId:          pulumi.String("string"),
	WorkflowIdentifierType: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	IsLockOverride: pulumi.Bool(false),
	Locks: mediaservices.MediaWorkflowJobLockArray{
		&mediaservices.MediaWorkflowJobLockArgs{
			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"),
	},
	MediaWorkflowId:   pulumi.String("string"),
	MediaWorkflowName: pulumi.String("string"),
	Parameters:        pulumi.String("string"),
})
var mediaWorkflowJobResource = new MediaWorkflowJob("mediaWorkflowJobResource", MediaWorkflowJobArgs.builder()
    .compartmentId("string")
    .workflowIdentifierType("string")
    .definedTags(Map.of("string", "string"))
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .isLockOverride(false)
    .locks(MediaWorkflowJobLockArgs.builder()
        .compartmentId("string")
        .type("string")
        .message("string")
        .relatedResourceId("string")
        .timeCreated("string")
        .build())
    .mediaWorkflowConfigurationIds("string")
    .mediaWorkflowId("string")
    .mediaWorkflowName("string")
    .parameters("string")
    .build());
media_workflow_job_resource = oci.media_services.MediaWorkflowJob("mediaWorkflowJobResource",
    compartment_id="string",
    workflow_identifier_type="string",
    defined_tags={
        "string": "string",
    },
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    is_lock_override=False,
    locks=[{
        "compartment_id": "string",
        "type": "string",
        "message": "string",
        "related_resource_id": "string",
        "time_created": "string",
    }],
    media_workflow_configuration_ids=["string"],
    media_workflow_id="string",
    media_workflow_name="string",
    parameters="string")
const mediaWorkflowJobResource = new oci.mediaservices.MediaWorkflowJob("mediaWorkflowJobResource", {
    compartmentId: "string",
    workflowIdentifierType: "string",
    definedTags: {
        string: "string",
    },
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    isLockOverride: false,
    locks: [{
        compartmentId: "string",
        type: "string",
        message: "string",
        relatedResourceId: "string",
        timeCreated: "string",
    }],
    mediaWorkflowConfigurationIds: ["string"],
    mediaWorkflowId: "string",
    mediaWorkflowName: "string",
    parameters: "string",
});
type: oci:MediaServices:MediaWorkflowJob
properties:
    compartmentId: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    isLockOverride: false
    locks:
        - compartmentId: string
          message: string
          relatedResourceId: string
          timeCreated: string
          type: string
    mediaWorkflowConfigurationIds:
        - string
    mediaWorkflowId: string
    mediaWorkflowName: string
    parameters: string
    workflowIdentifierType: string
MediaWorkflowJob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MediaWorkflowJob resource accepts the following input properties:
- CompartmentId string
- (Updatable) ID of the compartment in which the job should be created.
- WorkflowIdentifier stringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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 
- Dictionary<string, string>
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsLock boolOverride 
- Locks
List<MediaWorkflow Job Lock> 
- Locks associated with this resource.
- MediaWorkflow List<string>Configuration Ids 
- Configurations to be applied to this run of the workflow.
- MediaWorkflow stringId 
- OCID of the MediaWorkflow that should be run.
- MediaWorkflow stringName 
- Name of the system MediaWorkflow that should be run.
- Parameters string
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- CompartmentId string
- (Updatable) ID of the compartment in which the job should be created.
- WorkflowIdentifier stringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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 
- map[string]string
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsLock boolOverride 
- Locks
[]MediaWorkflow Job Lock Args 
- Locks associated with this resource.
- MediaWorkflow []stringConfiguration Ids 
- Configurations to be applied to this run of the workflow.
- MediaWorkflow stringId 
- OCID of the MediaWorkflow that should be run.
- MediaWorkflow stringName 
- Name of the system MediaWorkflow that should be run.
- Parameters string
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- compartmentId String
- (Updatable) ID of the compartment in which the job should be created.
- workflowIdentifier StringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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 
- Map<String,String>
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isLock BooleanOverride 
- locks
List<MediaWorkflow Job Lock> 
- Locks associated with this resource.
- mediaWorkflow List<String>Configuration Ids 
- Configurations to be applied to this run of the workflow.
- mediaWorkflow StringId 
- OCID of the MediaWorkflow that should be run.
- mediaWorkflow StringName 
- Name of the system MediaWorkflow that should be run.
- parameters String
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- compartmentId string
- (Updatable) ID of the compartment in which the job should be created.
- workflowIdentifier stringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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 
- {[key: string]: string}
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isLock booleanOverride 
- locks
MediaWorkflow Job Lock[] 
- Locks associated with this resource.
- mediaWorkflow string[]Configuration Ids 
- Configurations to be applied to this run of the workflow.
- mediaWorkflow stringId 
- OCID of the MediaWorkflow that should be run.
- mediaWorkflow stringName 
- Name of the system MediaWorkflow that should be run.
- parameters string
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- compartment_id str
- (Updatable) ID of the compartment in which the job should be created.
- workflow_identifier_ strtype 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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 
- Mapping[str, str]
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Mapping[str, str]
- (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_ booloverride 
- locks
Sequence[MediaWorkflow Job Lock Args] 
- Locks associated with this resource.
- media_workflow_ Sequence[str]configuration_ ids 
- Configurations to be applied to this run of the workflow.
- media_workflow_ strid 
- OCID of the MediaWorkflow that should be run.
- media_workflow_ strname 
- Name of the system MediaWorkflow that should be run.
- parameters str
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- compartmentId String
- (Updatable) ID of the compartment in which the job should be created.
- workflowIdentifier StringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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 
- Map<String>
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isLock BooleanOverride 
- locks List<Property Map>
- Locks associated with this resource.
- mediaWorkflow List<String>Configuration Ids 
- Configurations to be applied to this run of the workflow.
- mediaWorkflow StringId 
- OCID of the MediaWorkflow that should be run.
- mediaWorkflow StringName 
- Name of the system MediaWorkflow that should be run.
- parameters String
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
Outputs
All input properties are implicitly available as output properties. Additionally, the MediaWorkflowJob resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- Outputs
List<MediaWorkflow Job Output> 
- A list of JobOutput for the workflowJob.
- Runnable string
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- State string
- The current state of the MediaWorkflowJob task.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TaskLifecycle List<MediaStates Workflow Job Task Lifecycle State> 
- Status of each task.
- TimeCreated string
- Creation time of the job. An RFC3339 formatted datetime string.
- TimeEnded string
- Time when the job finished. An RFC3339 formatted datetime string.
- TimeStarted string
- Time when the job started to execute. An RFC3339 formatted datetime string.
- TimeUpdated string
- Updated time of the job. An RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- Outputs
[]MediaWorkflow Job Output Type 
- A list of JobOutput for the workflowJob.
- Runnable string
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- State string
- The current state of the MediaWorkflowJob task.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TaskLifecycle []MediaStates Workflow Job Task Lifecycle State 
- Status of each task.
- TimeCreated string
- Creation time of the job. An RFC3339 formatted datetime string.
- TimeEnded string
- Time when the job finished. An RFC3339 formatted datetime string.
- TimeStarted string
- Time when the job started to execute. An RFC3339 formatted datetime string.
- TimeUpdated string
- Updated time of the job. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- The lifecycle details of MediaWorkflowJob task.
- outputs
List<MediaWorkflow Job Output> 
- A list of JobOutput for the workflowJob.
- runnable String
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state String
- The current state of the MediaWorkflowJob task.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- taskLifecycle List<MediaStates Workflow Job Task Lifecycle State> 
- Status of each task.
- timeCreated String
- Creation time of the job. An RFC3339 formatted datetime string.
- timeEnded String
- Time when the job finished. An RFC3339 formatted datetime string.
- timeStarted String
- Time when the job started to execute. An RFC3339 formatted datetime string.
- timeUpdated String
- Updated time of the job. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- outputs
MediaWorkflow Job Output[] 
- A list of JobOutput for the workflowJob.
- runnable string
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state string
- The current state of the MediaWorkflowJob task.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- taskLifecycle MediaStates Workflow Job Task Lifecycle State[] 
- Status of each task.
- timeCreated string
- Creation time of the job. An RFC3339 formatted datetime string.
- timeEnded string
- Time when the job finished. An RFC3339 formatted datetime string.
- timeStarted string
- Time when the job started to execute. An RFC3339 formatted datetime string.
- timeUpdated string
- Updated time of the job. An RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_details str
- The lifecycle details of MediaWorkflowJob task.
- outputs
Sequence[MediaWorkflow Job Output] 
- A list of JobOutput for the workflowJob.
- runnable str
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state str
- The current state of the MediaWorkflowJob task.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- task_lifecycle_ Sequence[Mediastates Workflow Job Task Lifecycle State] 
- Status of each task.
- time_created str
- Creation time of the job. An RFC3339 formatted datetime string.
- time_ended str
- Time when the job finished. An RFC3339 formatted datetime string.
- time_started str
- Time when the job started to execute. An RFC3339 formatted datetime string.
- time_updated str
- Updated time of the job. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- The lifecycle details of MediaWorkflowJob task.
- outputs List<Property Map>
- A list of JobOutput for the workflowJob.
- runnable String
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state String
- The current state of the MediaWorkflowJob task.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- taskLifecycle List<Property Map>States 
- Status of each task.
- timeCreated String
- Creation time of the job. An RFC3339 formatted datetime string.
- timeEnded String
- Time when the job finished. An RFC3339 formatted datetime string.
- timeStarted String
- Time when the job started to execute. An RFC3339 formatted datetime string.
- timeUpdated String
- Updated time of the job. An RFC3339 formatted datetime string.
Look up Existing MediaWorkflowJob Resource
Get an existing MediaWorkflowJob 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?: MediaWorkflowJobState, opts?: CustomResourceOptions): MediaWorkflowJob@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_lock_override: Optional[bool] = None,
        lifecycle_details: Optional[str] = None,
        locks: Optional[Sequence[MediaWorkflowJobLockArgs]] = None,
        media_workflow_configuration_ids: Optional[Sequence[str]] = None,
        media_workflow_id: Optional[str] = None,
        media_workflow_name: Optional[str] = None,
        outputs: Optional[Sequence[MediaWorkflowJobOutputArgs]] = None,
        parameters: Optional[str] = None,
        runnable: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        task_lifecycle_states: Optional[Sequence[MediaWorkflowJobTaskLifecycleStateArgs]] = None,
        time_created: Optional[str] = None,
        time_ended: Optional[str] = None,
        time_started: Optional[str] = None,
        time_updated: Optional[str] = None,
        workflow_identifier_type: Optional[str] = None) -> MediaWorkflowJobfunc GetMediaWorkflowJob(ctx *Context, name string, id IDInput, state *MediaWorkflowJobState, opts ...ResourceOption) (*MediaWorkflowJob, error)public static MediaWorkflowJob Get(string name, Input<string> id, MediaWorkflowJobState? state, CustomResourceOptions? opts = null)public static MediaWorkflowJob get(String name, Output<String> id, MediaWorkflowJobState state, CustomResourceOptions options)resources:  _:    type: oci:MediaServices:MediaWorkflowJob    get:      id: ${id}- 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.
- CompartmentId string
- (Updatable) ID of the compartment in which the job should be created.
- Dictionary<string, string>
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsLock boolOverride 
- LifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- Locks
List<MediaWorkflow Job Lock> 
- Locks associated with this resource.
- MediaWorkflow List<string>Configuration Ids 
- Configurations to be applied to this run of the workflow.
- MediaWorkflow stringId 
- OCID of the MediaWorkflow that should be run.
- MediaWorkflow stringName 
- Name of the system MediaWorkflow that should be run.
- Outputs
List<MediaWorkflow Job Output> 
- A list of JobOutput for the workflowJob.
- Parameters string
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- Runnable string
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- State string
- The current state of the MediaWorkflowJob task.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TaskLifecycle List<MediaStates Workflow Job Task Lifecycle State> 
- Status of each task.
- TimeCreated string
- Creation time of the job. An RFC3339 formatted datetime string.
- TimeEnded string
- Time when the job finished. An RFC3339 formatted datetime string.
- TimeStarted string
- Time when the job started to execute. An RFC3339 formatted datetime string.
- TimeUpdated string
- Updated time of the job. An RFC3339 formatted datetime string.
- WorkflowIdentifier stringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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) ID of the compartment in which the job should be created.
- map[string]string
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsLock boolOverride 
- LifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- Locks
[]MediaWorkflow Job Lock Args 
- Locks associated with this resource.
- MediaWorkflow []stringConfiguration Ids 
- Configurations to be applied to this run of the workflow.
- MediaWorkflow stringId 
- OCID of the MediaWorkflow that should be run.
- MediaWorkflow stringName 
- Name of the system MediaWorkflow that should be run.
- Outputs
[]MediaWorkflow Job Output Type Args 
- A list of JobOutput for the workflowJob.
- Parameters string
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- Runnable string
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- State string
- The current state of the MediaWorkflowJob task.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TaskLifecycle []MediaStates Workflow Job Task Lifecycle State Args 
- Status of each task.
- TimeCreated string
- Creation time of the job. An RFC3339 formatted datetime string.
- TimeEnded string
- Time when the job finished. An RFC3339 formatted datetime string.
- TimeStarted string
- Time when the job started to execute. An RFC3339 formatted datetime string.
- TimeUpdated string
- Updated time of the job. An RFC3339 formatted datetime string.
- WorkflowIdentifier stringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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) ID of the compartment in which the job should be created.
- Map<String,String>
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isLock BooleanOverride 
- lifecycleDetails String
- The lifecycle details of MediaWorkflowJob task.
- locks
List<MediaWorkflow Job Lock> 
- Locks associated with this resource.
- mediaWorkflow List<String>Configuration Ids 
- Configurations to be applied to this run of the workflow.
- mediaWorkflow StringId 
- OCID of the MediaWorkflow that should be run.
- mediaWorkflow StringName 
- Name of the system MediaWorkflow that should be run.
- outputs
List<MediaWorkflow Job Output> 
- A list of JobOutput for the workflowJob.
- parameters String
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- runnable String
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state String
- The current state of the MediaWorkflowJob task.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- taskLifecycle List<MediaStates Workflow Job Task Lifecycle State> 
- Status of each task.
- timeCreated String
- Creation time of the job. An RFC3339 formatted datetime string.
- timeEnded String
- Time when the job finished. An RFC3339 formatted datetime string.
- timeStarted String
- Time when the job started to execute. An RFC3339 formatted datetime string.
- timeUpdated String
- Updated time of the job. An RFC3339 formatted datetime string.
- workflowIdentifier StringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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) ID of the compartment in which the job should be created.
- {[key: string]: string}
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isLock booleanOverride 
- lifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- locks
MediaWorkflow Job Lock[] 
- Locks associated with this resource.
- mediaWorkflow string[]Configuration Ids 
- Configurations to be applied to this run of the workflow.
- mediaWorkflow stringId 
- OCID of the MediaWorkflow that should be run.
- mediaWorkflow stringName 
- Name of the system MediaWorkflow that should be run.
- outputs
MediaWorkflow Job Output[] 
- A list of JobOutput for the workflowJob.
- parameters string
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- runnable string
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state string
- The current state of the MediaWorkflowJob task.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- taskLifecycle MediaStates Workflow Job Task Lifecycle State[] 
- Status of each task.
- timeCreated string
- Creation time of the job. An RFC3339 formatted datetime string.
- timeEnded string
- Time when the job finished. An RFC3339 formatted datetime string.
- timeStarted string
- Time when the job started to execute. An RFC3339 formatted datetime string.
- timeUpdated string
- Updated time of the job. An RFC3339 formatted datetime string.
- workflowIdentifier stringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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) ID of the compartment in which the job should be created.
- Mapping[str, str]
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Mapping[str, str]
- (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_ booloverride 
- lifecycle_details str
- The lifecycle details of MediaWorkflowJob task.
- locks
Sequence[MediaWorkflow Job Lock Args] 
- Locks associated with this resource.
- media_workflow_ Sequence[str]configuration_ ids 
- Configurations to be applied to this run of the workflow.
- media_workflow_ strid 
- OCID of the MediaWorkflow that should be run.
- media_workflow_ strname 
- Name of the system MediaWorkflow that should be run.
- outputs
Sequence[MediaWorkflow Job Output Args] 
- A list of JobOutput for the workflowJob.
- parameters str
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- runnable str
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state str
- The current state of the MediaWorkflowJob task.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- task_lifecycle_ Sequence[Mediastates Workflow Job Task Lifecycle State Args] 
- Status of each task.
- time_created str
- Creation time of the job. An RFC3339 formatted datetime string.
- time_ended str
- Time when the job finished. An RFC3339 formatted datetime string.
- time_started str
- Time when the job started to execute. An RFC3339 formatted datetime string.
- time_updated str
- Updated time of the job. An RFC3339 formatted datetime string.
- workflow_identifier_ strtype 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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) ID of the compartment in which the job should be created.
- Map<String>
- (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 of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isLock BooleanOverride 
- lifecycleDetails String
- The lifecycle details of MediaWorkflowJob task.
- locks List<Property Map>
- Locks associated with this resource.
- mediaWorkflow List<String>Configuration Ids 
- Configurations to be applied to this run of the workflow.
- mediaWorkflow StringId 
- OCID of the MediaWorkflow that should be run.
- mediaWorkflow StringName 
- Name of the system MediaWorkflow that should be run.
- outputs List<Property Map>
- A list of JobOutput for the workflowJob.
- parameters String
- Parameters that override parameters specified in MediaWorkflowTaskDeclarations, the MediaWorkflow, the MediaWorkflow's MediaWorkflowConfigurations and the MediaWorkflowConfigurations of this MediaWorkflowJob. The parameters are given as JSON. The top level and 2nd level elements must be JSON objects (vs arrays, scalars, etc). The top level keys refer to a task's key and the 2nd level keys refer to a parameter's name.
- runnable String
- A JSON representation of the job as it will be run by the system. All the task declarations, configurations and parameters are merged. Parameter values are all fully resolved.
- state String
- The current state of the MediaWorkflowJob task.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- taskLifecycle List<Property Map>States 
- Status of each task.
- timeCreated String
- Creation time of the job. An RFC3339 formatted datetime string.
- timeEnded String
- Time when the job finished. An RFC3339 formatted datetime string.
- timeStarted String
- Time when the job started to execute. An RFC3339 formatted datetime string.
- timeUpdated String
- Updated time of the job. An RFC3339 formatted datetime string.
- workflowIdentifier StringType 
- Discriminate identification of a workflow by name versus a workflow by ID. - ** 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
MediaWorkflowJobLock, MediaWorkflowJobLockArgs        
- CompartmentId string
- (Updatable) The compartment ID of the lock.
- Type string
- Type of the lock.
- 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.
- 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
- Type of the lock.
- 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.
- 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
- Type of the lock.
- 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.
- 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
- Type of the lock.
- 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.
- 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
- Type of the lock.
- 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.
- 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
- Type of the lock.
- 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.
- 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.
MediaWorkflowJobOutput, MediaWorkflowJobOutputArgs        
- asset_type str
- Type of job output.
- bucket str
- The bucket name of the job output.
- id str
- The ID associated with the job output.
- namespace str
- The namespace name of the job output.
- object str
- The object name of the job output.
MediaWorkflowJobTaskLifecycleState, MediaWorkflowJobTaskLifecycleStateArgs            
- Key string
- Unique key within a MediaWorkflowJob for the task.
- LifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- State string
- The current state of the MediaWorkflowJob task.
- Key string
- Unique key within a MediaWorkflowJob for the task.
- LifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- State string
- The current state of the MediaWorkflowJob task.
- key String
- Unique key within a MediaWorkflowJob for the task.
- lifecycleDetails String
- The lifecycle details of MediaWorkflowJob task.
- state String
- The current state of the MediaWorkflowJob task.
- key string
- Unique key within a MediaWorkflowJob for the task.
- lifecycleDetails string
- The lifecycle details of MediaWorkflowJob task.
- state string
- The current state of the MediaWorkflowJob task.
- key str
- Unique key within a MediaWorkflowJob for the task.
- lifecycle_details str
- The lifecycle details of MediaWorkflowJob task.
- state str
- The current state of the MediaWorkflowJob task.
- key String
- Unique key within a MediaWorkflowJob for the task.
- lifecycleDetails String
- The lifecycle details of MediaWorkflowJob task.
- state String
- The current state of the MediaWorkflowJob task.
Import
MediaWorkflowJobs can be imported using the id, e.g.
$ pulumi import oci:MediaServices/mediaWorkflowJob:MediaWorkflowJob test_media_workflow_job "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 ociTerraform Provider.