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[_mediaservices.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=[oci.media_services.MediaWorkflowJobLockArgs(
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
The MediaWorkflowJob resource accepts the following input properties:
- Compartment
Id string - (Updatable) ID of the compartment in which the job should be created.
- Workflow
Identifier 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"}
- Display
Name 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"}
- Is
Lock boolOverride - Locks
List<Media
Workflow Job Lock> - Locks associated with this resource.
- Media
Workflow List<string>Configuration Ids - Configurations to be applied to this run of the workflow.
- Media
Workflow stringId - OCID of the MediaWorkflow that should be run.
- Media
Workflow 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 string - (Updatable) ID of the compartment in which the job should be created.
- Workflow
Identifier 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"}
- Display
Name 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"}
- Is
Lock boolOverride - Locks
[]Media
Workflow Job Lock Args - Locks associated with this resource.
- Media
Workflow []stringConfiguration Ids - Configurations to be applied to this run of the workflow.
- Media
Workflow stringId - OCID of the MediaWorkflow that should be run.
- Media
Workflow 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 String - (Updatable) ID of the compartment in which the job should be created.
- workflow
Identifier 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"}
- display
Name 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"}
- is
Lock BooleanOverride - locks
List<Media
Workflow Job Lock> - Locks associated with this resource.
- media
Workflow List<String>Configuration Ids - Configurations to be applied to this run of the workflow.
- media
Workflow StringId - OCID of the MediaWorkflow that should be run.
- media
Workflow 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 string - (Updatable) ID of the compartment in which the job should be created.
- workflow
Identifier 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"}
- display
Name 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"}
- is
Lock booleanOverride - locks
Media
Workflow Job Lock[] - Locks associated with this resource.
- media
Workflow string[]Configuration Ids - Configurations to be applied to this run of the workflow.
- media
Workflow stringId - OCID of the MediaWorkflow that should be run.
- media
Workflow 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[mediaservices.
Media Workflow 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.
- compartment
Id String - (Updatable) ID of the compartment in which the job should be created.
- workflow
Identifier 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"}
- display
Name 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"}
- is
Lock BooleanOverride - locks List<Property Map>
- Locks associated with this resource.
- media
Workflow List<String>Configuration Ids - Configurations to be applied to this run of the workflow.
- media
Workflow StringId - OCID of the MediaWorkflow that should be run.
- media
Workflow 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.
- Lifecycle
Details string - The lifecycle details of MediaWorkflowJob task.
- Outputs
List<Media
Workflow 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"}
- Task
Lifecycle List<MediaStates Workflow Job Task Lifecycle State> - Status of each task.
- Time
Created string - Creation time of the job. An RFC3339 formatted datetime string.
- Time
Ended string - Time when the job finished. An RFC3339 formatted datetime string.
- Time
Started string - Time when the job started to execute. An RFC3339 formatted datetime string.
- Time
Updated string - Updated time of the job. An RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - The lifecycle details of MediaWorkflowJob task.
- Outputs
[]Media
Workflow 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"}
- Task
Lifecycle []MediaStates Workflow Job Task Lifecycle State - Status of each task.
- Time
Created string - Creation time of the job. An RFC3339 formatted datetime string.
- Time
Ended string - Time when the job finished. An RFC3339 formatted datetime string.
- Time
Started string - Time when the job started to execute. An RFC3339 formatted datetime string.
- Time
Updated string - Updated time of the job. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - The lifecycle details of MediaWorkflowJob task.
- outputs
List<Media
Workflow 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"}
- task
Lifecycle List<MediaStates Workflow Job Task Lifecycle State> - Status of each task.
- time
Created String - Creation time of the job. An RFC3339 formatted datetime string.
- time
Ended String - Time when the job finished. An RFC3339 formatted datetime string.
- time
Started String - Time when the job started to execute. An RFC3339 formatted datetime string.
- time
Updated String - Updated time of the job. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - The lifecycle details of MediaWorkflowJob task.
- outputs
Media
Workflow 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"}
- task
Lifecycle MediaStates Workflow Job Task Lifecycle State[] - Status of each task.
- time
Created string - Creation time of the job. An RFC3339 formatted datetime string.
- time
Ended string - Time when the job finished. An RFC3339 formatted datetime string.
- time
Started string - Time when the job started to execute. An RFC3339 formatted datetime string.
- time
Updated 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[mediaservices.
Media Workflow 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[mediaservices.states Media 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.
- lifecycle
Details 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"}
- task
Lifecycle List<Property Map>States - Status of each task.
- time
Created String - Creation time of the job. An RFC3339 formatted datetime string.
- time
Ended String - Time when the job finished. An RFC3339 formatted datetime string.
- time
Started String - Time when the job started to execute. An RFC3339 formatted datetime string.
- time
Updated 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[_mediaservices.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[_mediaservices.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[_mediaservices.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) -> MediaWorkflowJob
func 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)
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.
- Compartment
Id 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"}
- Display
Name 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"}
- Is
Lock boolOverride - Lifecycle
Details string - The lifecycle details of MediaWorkflowJob task.
- Locks
List<Media
Workflow Job Lock> - Locks associated with this resource.
- Media
Workflow List<string>Configuration Ids - Configurations to be applied to this run of the workflow.
- Media
Workflow stringId - OCID of the MediaWorkflow that should be run.
- Media
Workflow stringName - Name of the system MediaWorkflow that should be run.
- Outputs
List<Media
Workflow 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"}
- Task
Lifecycle List<MediaStates Workflow Job Task Lifecycle State> - Status of each task.
- Time
Created string - Creation time of the job. An RFC3339 formatted datetime string.
- Time
Ended string - Time when the job finished. An RFC3339 formatted datetime string.
- Time
Started string - Time when the job started to execute. An RFC3339 formatted datetime string.
- Time
Updated string - Updated time of the job. An RFC3339 formatted datetime string.
- Workflow
Identifier 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 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"}
- Display
Name 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"}
- Is
Lock boolOverride - Lifecycle
Details string - The lifecycle details of MediaWorkflowJob task.
- Locks
[]Media
Workflow Job Lock Args - Locks associated with this resource.
- Media
Workflow []stringConfiguration Ids - Configurations to be applied to this run of the workflow.
- Media
Workflow stringId - OCID of the MediaWorkflow that should be run.
- Media
Workflow stringName - Name of the system MediaWorkflow that should be run.
- Outputs
[]Media
Workflow 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"}
- Task
Lifecycle []MediaStates Workflow Job Task Lifecycle State Args - Status of each task.
- Time
Created string - Creation time of the job. An RFC3339 formatted datetime string.
- Time
Ended string - Time when the job finished. An RFC3339 formatted datetime string.
- Time
Started string - Time when the job started to execute. An RFC3339 formatted datetime string.
- Time
Updated string - Updated time of the job. An RFC3339 formatted datetime string.
- Workflow
Identifier 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 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"}
- display
Name 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"}
- is
Lock BooleanOverride - lifecycle
Details String - The lifecycle details of MediaWorkflowJob task.
- locks
List<Media
Workflow Job Lock> - Locks associated with this resource.
- media
Workflow List<String>Configuration Ids - Configurations to be applied to this run of the workflow.
- media
Workflow StringId - OCID of the MediaWorkflow that should be run.
- media
Workflow StringName - Name of the system MediaWorkflow that should be run.
- outputs
List<Media
Workflow 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"}
- task
Lifecycle List<MediaStates Workflow Job Task Lifecycle State> - Status of each task.
- time
Created String - Creation time of the job. An RFC3339 formatted datetime string.
- time
Ended String - Time when the job finished. An RFC3339 formatted datetime string.
- time
Started String - Time when the job started to execute. An RFC3339 formatted datetime string.
- time
Updated String - Updated time of the job. An RFC3339 formatted datetime string.
- workflow
Identifier 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 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"}
- display
Name 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"}
- is
Lock booleanOverride - lifecycle
Details string - The lifecycle details of MediaWorkflowJob task.
- locks
Media
Workflow Job Lock[] - Locks associated with this resource.
- media
Workflow string[]Configuration Ids - Configurations to be applied to this run of the workflow.
- media
Workflow stringId - OCID of the MediaWorkflow that should be run.
- media
Workflow stringName - Name of the system MediaWorkflow that should be run.
- outputs
Media
Workflow 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"}
- task
Lifecycle MediaStates Workflow Job Task Lifecycle State[] - Status of each task.
- time
Created string - Creation time of the job. An RFC3339 formatted datetime string.
- time
Ended string - Time when the job finished. An RFC3339 formatted datetime string.
- time
Started string - Time when the job started to execute. An RFC3339 formatted datetime string.
- time
Updated string - Updated time of the job. An RFC3339 formatted datetime string.
- workflow
Identifier 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[mediaservices.
Media Workflow 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[mediaservices.
Media Workflow 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[mediaservices.states Media 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
- compartment
Id 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"}
- display
Name 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"}
- is
Lock BooleanOverride - lifecycle
Details String - The lifecycle details of MediaWorkflowJob task.
- locks List<Property Map>
- Locks associated with this resource.
- media
Workflow List<String>Configuration Ids - Configurations to be applied to this run of the workflow.
- media
Workflow StringId - OCID of the MediaWorkflow that should be run.
- media
Workflow 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"}
- task
Lifecycle List<Property Map>States - Status of each task.
- time
Created String - Creation time of the job. An RFC3339 formatted datetime string.
- time
Ended String - Time when the job finished. An RFC3339 formatted datetime string.
- time
Started String - Time when the job started to execute. An RFC3339 formatted datetime string.
- time
Updated String - Updated time of the job. An RFC3339 formatted datetime string.
- workflow
Identifier 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
- Compartment
Id 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.
- Time
Created string - When the lock was created.
- Compartment
Id 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.
- Time
Created string - When the lock was created.
- compartment
Id 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.
- time
Created String - When the lock was created.
- compartment
Id 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.
- time
Created 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.
- compartment
Id 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.
- time
Created 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.
- Lifecycle
Details 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.
- Lifecycle
Details 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.
- lifecycle
Details 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.
- lifecycle
Details 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.
- lifecycle
Details 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
oci
Terraform Provider.