Media Services Common Types

DBMS_CLOUD_OCI_MEDIA_SERVICES_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_CDN_CONFIG_SECTION_T Type

Base fields of the StreamCdnConfig configuration object.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_cdn_config_section_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_section_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_section_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) The name of the CDN configuration type.

Allowed values are: 'EDGE', 'AKAMAI_MANUAL'

DBMS_CLOUD_OCI_MEDIA_SERVICES_AKAMAI_MANUAL_STREAM_CDN_CONFIG_T Type

Configuration fields for manual Akamai configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_akamai_manual_stream_cdn_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_stream_cdn_config_section_t (
  origin_auth_sign_type varchar2(32767),
  origin_auth_sign_encryption varchar2(32767),
  origin_auth_secret_key_a varchar2(32767),
  origin_auth_secret_key_nonce_a varchar2(32767),
  origin_auth_secret_key_b varchar2(32767),
  origin_auth_secret_key_nonce_b varchar2(32767),
  edge_hostname varchar2(32767),
  edge_path_prefix varchar2(32767),
  is_edge_token_auth number,
  edge_token_key varchar2(32767),
  edge_token_salt varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_akamai_manual_stream_cdn_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_akamai_manual_stream_cdn_config_t (
    l_type varchar2,
    origin_auth_sign_type varchar2,
    origin_auth_sign_encryption varchar2,
    origin_auth_secret_key_a varchar2,
    origin_auth_secret_key_nonce_a varchar2,
    origin_auth_secret_key_b varchar2,
    origin_auth_secret_key_nonce_b varchar2,
    edge_hostname varchar2,
    edge_path_prefix varchar2,
    is_edge_token_auth number,
    edge_token_key varchar2,
    edge_token_salt varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_akamai_manual_stream_cdn_config_t is a subtype of the dbms_cloud_oci_media_services_stream_cdn_config_section_t type.

Fields

Field Description

origin_auth_sign_type

(optional) The type of data used to compute the signature.

Allowed values are: 'ForwardURL'

origin_auth_sign_encryption

(optional) The type of encryption used to compute the signature.

Allowed values are: 'SHA256-HMAC'

origin_auth_secret_key_a

(optional) The shared secret key A, two for errorless key rotation.

origin_auth_secret_key_nonce_a

(optional) Nonce identifier for originAuthSecretKeyA (used to determine key used to sign).

origin_auth_secret_key_b

(optional) The shared secret key B, two for errorless key rotation.

origin_auth_secret_key_nonce_b

(optional) Nonce identifier for originAuthSecretKeyB (used to determine key used to sign).

edge_hostname

(optional) The hostname of the CDN edge server to use when building CDN URLs.

edge_path_prefix

(optional) The path to prepend when building CDN URLs.

is_edge_token_auth

(optional) Whether token authentication should be used at the CDN edge.

edge_token_key

(optional) The encryption key to use for edge token authentication.

edge_token_salt

(optional) Salt to use when encrypting authentication token.

DBMS_CLOUD_OCI_MEDIA_SERVICES_INGEST_STREAM_DISTRIBUTION_CHANNEL_DETAILS_T Type

Ingest Payload Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_ingest_stream_distribution_channel_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ingest_payload_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_ingest_stream_distribution_channel_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_ingest_stream_distribution_channel_details_t (
    ingest_payload_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

ingest_payload_type

(required) Ingest Payload Type

Allowed values are: 'ASSET_METADATA_MEDIA_ASSET'

DBMS_CLOUD_OCI_MEDIA_SERVICES_ASSET_METADATA_ENTRY_DETAILS_T Type

Asset Metadata entry information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_asset_metadata_entry_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_ingest_stream_distribution_channel_details_t (
  media_asset_id varchar2(32767),
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_asset_metadata_entry_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_asset_metadata_entry_details_t (
    ingest_payload_type varchar2,
    media_asset_id varchar2,
    compartment_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_asset_metadata_entry_details_t is a subtype of the dbms_cloud_oci_media_services_ingest_stream_distribution_channel_details_t type.

Fields

Field Description

media_asset_id

(required) The Media Asset ID to ingest into the Distribution Channel.

compartment_id

(optional) The compartment ID where the Ingest Workflow Job will be run.

DBMS_CLOUD_OCI_MEDIA_SERVICES_CHANGE_MEDIA_ASSET_COMPARTMENT_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_change_media_asset_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_asset_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_asset_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) Compartment Identifier.

DBMS_CLOUD_OCI_MEDIA_SERVICES_CHANGE_MEDIA_WORKFLOW_COMPARTMENT_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_change_media_workflow_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_workflow_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_workflow_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_MEDIA_SERVICES_CHANGE_MEDIA_WORKFLOW_CONFIGURATION_COMPARTMENT_DETAILS_T Type

The details of the compartment to which the MediaWorkflowConfiguration will be moved.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_change_media_workflow_configuration_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_workflow_configuration_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_workflow_configuration_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_MEDIA_SERVICES_CHANGE_MEDIA_WORKFLOW_JOB_COMPARTMENT_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_change_media_workflow_job_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_workflow_job_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_media_workflow_job_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_MEDIA_SERVICES_CHANGE_STREAM_DISTRIBUTION_CHANNEL_COMPARTMENT_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_change_stream_distribution_channel_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_stream_distribution_channel_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_change_stream_distribution_channel_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_MEDIA_SERVICES_METADATA_T Type

Technical metadata for this asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
  metadata varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_metadata_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_metadata_t (
    metadata varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

metadata

(required) JSON string containing the technial metadata for the media asset.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_TAG_T Type

Tags of the MediaAsset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_tag_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  value varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_tag_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_tag_t (
    l_type varchar2,
    value varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_type

(optional) Type of the tag.

Allowed values are: 'USER', 'SYSTEM'

value

(required) Tag of the MediaAsset.

DBMS_CLOUD_OCI_MEDIA_SERVICES_METADATA_TBL Type

Nested table type of dbms_cloud_oci_media_services_metadata_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_metadata_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_metadata_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_TAG_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_asset_tag_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_tag_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_asset_tag_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_MEDIA_ASSET_DETAILS_T Type

The information about new MediaAsset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_media_asset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_media_workflow_id varchar2(32767),
  media_workflow_job_id varchar2(32767),
  source_media_workflow_version number,
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  parent_media_asset_id varchar2(32767),
  master_media_asset_id varchar2(32767),
  bucket_name varchar2(32767),
  namespace_name varchar2(32767),
  object_name varchar2(32767),
  object_etag varchar2(32767),
  metadata dbms_cloud_oci_media_services_metadata_tbl,
  segment_range_start_index number,
  segment_range_end_index number,
  media_asset_tags dbms_cloud_oci_media_services_media_asset_tag_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_asset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_asset_details_t (
    source_media_workflow_id varchar2,
    media_workflow_job_id varchar2,
    source_media_workflow_version number,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    parent_media_asset_id varchar2,
    master_media_asset_id varchar2,
    bucket_name varchar2,
    namespace_name varchar2,
    object_name varchar2,
    object_etag varchar2,
    metadata dbms_cloud_oci_media_services_metadata_tbl,
    segment_range_start_index number,
    segment_range_end_index number,
    media_asset_tags dbms_cloud_oci_media_services_media_asset_tag_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_media_workflow_id

(optional) The ID of the MediaWorkflow used to produce this asset.

media_workflow_job_id

(optional) The ID of the MediaWorkflowJob used to produce this asset.

source_media_workflow_version

(optional) The version of the MediaWorkflow used to produce this asset.

display_name

(optional) Display name for the Media Asset. Does not have to be unique. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

l_type

(required) The type of the media asset.

Allowed values are: 'AUDIO', 'VIDEO', 'PLAYLIST', 'IMAGE', 'CAPTION_FILE', 'UNKNOWN'

parent_media_asset_id

(optional) The ID of the parent asset from which this asset is derived.

master_media_asset_id

(optional) The ID of the senior most asset from which this asset is derived.

bucket_name

(optional) The name of the object storage bucket where this asset is located.

namespace_name

(optional) The object storage namespace where this asset is located.

object_name

(optional) The object storage object name that identifies this asset.

object_etag

(optional) eTag of the underlying object storage object.

metadata

(optional) List of Metadata.

segment_range_start_index

(optional) The start index for video segment files.

segment_range_end_index

(optional) The end index for video segment files.

media_asset_tags

(optional) list of tags for the MediaAsset.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_MEDIA_WORKFLOW_CONFIGURATION_DETAILS_T Type

The information needed to create a new MediaWorkflowConfiguration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_media_workflow_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  parameters json_element_t,
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_configuration_details_t (
    display_name varchar2,
    parameters json_element_t,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) MediaWorkflowConfiguration identifier. Avoid entering confidential information.

parameters

(required) Reuseable parameter values encoded as a JSON; the top and second level JSON elements are objects. Each key of the top level object refers to a task key that is unqiue to the workflow, each of the second level objects' keys refer to the name of a parameter that is unique to the task. taskKey -> parameterName -> parameterValue

compartment_id

(required) Compartment Identifier.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_TASK_T Type

Defines the type of processing to be run at a given point in the workflow, parameters to configure the processing, and any processing that must be completed before this processing begins.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_task_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  version number,
  key varchar2(32767),
  prerequisites dbms_cloud_oci_media_services_varchar2_tbl,
  enable_parameter_reference varchar2(32767),
  enable_when_referenced_parameter_equals json_element_t,
  parameters json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_t (
    l_type varchar2,
    version number,
    key varchar2,
    prerequisites dbms_cloud_oci_media_services_varchar2_tbl,
    enable_parameter_reference varchar2,
    enable_when_referenced_parameter_equals json_element_t,
    parameters json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_type

(optional) The type of process to run at this task. Refers to the name of a MediaWorkflowTaskDeclaration.

version

(required) The version of the MediaWorkflowTaskDeclaration.

key

(required) A unique identifier for this task within its workflow. Keys are used to reference a task within workflows and MediaWorkflowJobs. Tasks are referenced as prerequisites and to track output and state.

prerequisites

(optional) Keys to the other tasks in this workflow that must be completed before execution of this task can begin.

enable_parameter_reference

(optional) Allows this task to be conditionally enabled. If no value or a blank value is given, the task is unconditionally enbled. Otherwise the given string specifies a parameter of the job created for this task's workflow using the JSON pointer syntax. The JSON pointer is validated when a job is created from the workflow of this task.

enable_when_referenced_parameter_equals

(optional) Used in conjunction with enableParameterReference to conditionally enable a task. When a job is created from the workflow of this task, the task will only be enabled if the value of the parameter specified by enableParameterReference is equal to the value of this property. This property must be prenset if and only if a enableParameterReference is given. The value is a JSON node.

parameters

(optional) Data specifiying how this task is to be run. The data is a JSON object that must conform to the JSON Schema specified by the parameters of the MediaWorkflowTaskDeclaration this task references. The parameters may contain values or references to other parameters.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_TASK_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_workflow_task_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_task_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_workflow_task_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_MEDIA_WORKFLOW_DETAILS_T Type

The information about new MediaWorkflow.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_media_workflow_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  tasks dbms_cloud_oci_media_services_media_workflow_task_tbl,
  media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
  parameters json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_details_t (
    display_name varchar2,
    compartment_id varchar2,
    tasks dbms_cloud_oci_media_services_media_workflow_task_tbl,
    media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
    parameters json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

tasks

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

media_workflow_configuration_ids

(optional) Configurations to be applied to all the jobs for this workflow. Parameters in these configurations are overridden by parameters in the MediaWorkflowConfigurations of the MediaWorkflowJob and the parameters of the MediaWorkflowJob.

parameters

(optional) JSON object representing named parameters and their default values that can be referenced throughout this workflow. The values declared here can be overridden by the MediaWorkflowConfigurations or parameters supplied when creating MediaWorkflowJobs from this MediaWorkflow.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_MEDIA_WORKFLOW_JOB_DETAILS_T Type

Information to run the MediaWorkflow.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_media_workflow_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  workflow_identifier_type varchar2(32767),
  media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  parameters json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_job_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_job_details_t (
    workflow_identifier_type varchar2,
    media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
    compartment_id varchar2,
    display_name varchar2,
    parameters json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

workflow_identifier_type

(required) Discriminate identification of a workflow by name versus a workflow by ID.

Allowed values are: 'ID', 'NAME'

media_workflow_configuration_ids

(optional) Configurations to be applied to this run of the workflow.

compartment_id

(required) ID of the compartment in which the job should be created.

display_name

(optional) Name of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.

parameters

(optional) 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.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_MEDIA_WORKFLOW_JOB_BY_ID_DETAILS_T Type

Information to run a MediaWorkflow identified by its OCID.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_media_workflow_job_by_id_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_create_media_workflow_job_details_t (
  media_workflow_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_job_by_id_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_job_by_id_details_t (
    workflow_identifier_type varchar2,
    media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
    compartment_id varchar2,
    display_name varchar2,
    parameters json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    media_workflow_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_create_media_workflow_job_by_id_details_t is a subtype of the dbms_cloud_oci_media_services_create_media_workflow_job_details_t type.

Fields

Field Description

media_workflow_id

(optional) OCID of the MediaWorkflow that should be run.

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_MEDIA_WORKFLOW_JOB_BY_NAME_DETAILS_T Type

Information to run a system MediaWorkflow identified by its name.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_media_workflow_job_by_name_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_create_media_workflow_job_details_t (
  media_workflow_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_job_by_name_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_media_workflow_job_by_name_details_t (
    workflow_identifier_type varchar2,
    media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
    compartment_id varchar2,
    display_name varchar2,
    parameters json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    media_workflow_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_create_media_workflow_job_by_name_details_t is a subtype of the dbms_cloud_oci_media_services_create_media_workflow_job_details_t type.

Fields

Field Description

media_workflow_name

(optional) Name of the system MediaWorkflow that should be run.

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_STREAM_CDN_CONFIG_DETAILS_T Type

The information about the new CDN Configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_stream_cdn_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  distribution_channel_id varchar2(32767),
  is_enabled number,
  config dbms_cloud_oci_media_services_stream_cdn_config_section_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_stream_cdn_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_stream_cdn_config_details_t (
    display_name varchar2,
    distribution_channel_id varchar2,
    is_enabled number,
    config dbms_cloud_oci_media_services_stream_cdn_config_section_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) CDN Config display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

distribution_channel_id

(required) Distribution Channel Identifier.

is_enabled

(optional) Whether publishing to CDN is enabled.

config

(required)

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_STREAM_DISTRIBUTION_CHANNEL_DETAILS_T Type

The information about the new Stream Distribution Channel.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_stream_distribution_channel_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_stream_distribution_channel_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_stream_distribution_channel_details_t (
    display_name varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Stream Distribution Channel display name. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_PACKAGING_CONFIG_ENCRYPTION_T Type

The encryption used by the stream packaging configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_packaging_config_encryption_t FORCE AUTHID CURRENT_USER IS OBJECT (
  algorithm varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_encryption_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_encryption_t (
    algorithm varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

algorithm

(required) The encryption algorithm for the stream packaging configuration.

Allowed values are: 'NONE', 'AES128'

DBMS_CLOUD_OCI_MEDIA_SERVICES_CREATE_STREAM_PACKAGING_CONFIG_DETAILS_T Type

The information about the new Packaging Configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_create_stream_packaging_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  distribution_channel_id varchar2(32767),
  display_name varchar2(32767),
  stream_packaging_format varchar2(32767),
  segment_time_in_seconds number,
  encryption dbms_cloud_oci_media_services_stream_packaging_config_encryption_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_stream_packaging_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_create_stream_packaging_config_details_t (
    distribution_channel_id varchar2,
    display_name varchar2,
    stream_packaging_format varchar2,
    segment_time_in_seconds number,
    encryption dbms_cloud_oci_media_services_stream_packaging_config_encryption_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

distribution_channel_id

(required) Unique identifier of the Distribution Channel that this stream packaging configuration belongs to.

display_name

(required) The name of the stream Packaging Configuration. Avoid entering confidential information.

stream_packaging_format

(required) The output format for the package.

Allowed values are: 'HLS', 'DASH'

segment_time_in_seconds

(required) The duration in seconds for each fragment.

encryption

(optional)

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_PACKAGING_CONFIG_T Type

A stream packaging configuration for a Distribution Channel.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_packaging_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  distribution_channel_id varchar2(32767),
  display_name varchar2(32767),
  stream_packaging_format varchar2(32767),
  segment_time_in_seconds number,
  encryption dbms_cloud_oci_media_services_stream_packaging_config_encryption_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_t (
    id varchar2,
    compartment_id varchar2,
    distribution_channel_id varchar2,
    display_name varchar2,
    stream_packaging_format varchar2,
    segment_time_in_seconds number,
    encryption dbms_cloud_oci_media_services_stream_packaging_config_encryption_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

compartment_id

(required) Compartment Identifier

distribution_channel_id

(required) Unique identifier of the Distribution Channel that this stream packaging configuration belongs to.

display_name

(required) The name of the stream packaging configuration. Avoid entering confidential information.

stream_packaging_format

(required) The output format for the package.

Allowed values are: 'HLS', 'DASH'

segment_time_in_seconds

(required) The duration in seconds for each fragment.

encryption

(optional)

time_created

(optional) The time when the Packaging Configuration was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the Packaging Configuration was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the Packaging Configuration.

Allowed values are: 'ACTIVE', 'NEEDS_ATTENTION', 'DELETED'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_DASH_STREAM_PACKAGING_CONFIG_T Type

Configuration fields for a DASH Packaging Configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_dash_stream_packaging_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_stream_packaging_config_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_dash_stream_packaging_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_dash_stream_packaging_config_t (
    id varchar2,
    compartment_id varchar2,
    distribution_channel_id varchar2,
    display_name varchar2,
    stream_packaging_format varchar2,
    segment_time_in_seconds number,
    encryption dbms_cloud_oci_media_services_stream_packaging_config_encryption_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_dash_stream_packaging_config_t is a subtype of the dbms_cloud_oci_media_services_stream_packaging_config_t type.

DBMS_CLOUD_OCI_MEDIA_SERVICES_EDGE_STREAM_CDN_CONFIG_T Type

Configuration fields for Edge configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_edge_stream_cdn_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_stream_cdn_config_section_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_edge_stream_cdn_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_edge_stream_cdn_config_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_edge_stream_cdn_config_t is a subtype of the dbms_cloud_oci_media_services_stream_cdn_config_section_t type.

DBMS_CLOUD_OCI_MEDIA_SERVICES_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_MEDIA_SERVICES_GENERATE_SESSION_TOKEN_DETAILS_T Type

Information about the new session token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_generate_session_token_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_expires timestamp with time zone,
  scopes dbms_cloud_oci_media_services_varchar2_tbl,
  packaging_config_id varchar2(32767),
  asset_ids dbms_cloud_oci_media_services_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_generate_session_token_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_generate_session_token_details_t (
    time_expires timestamp with time zone,
    scopes dbms_cloud_oci_media_services_varchar2_tbl,
    packaging_config_id varchar2,
    asset_ids dbms_cloud_oci_media_services_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_expires

(optional) Token expiry time. An RFC3339 formatted datetime string.

scopes

(required) Array of scopes the token can act upon.

Allowed values are: 'PLAYLIST', 'EDGE'

packaging_config_id

(required) The packaging config resource identifier used to limit the scope of the token.

asset_ids

(optional) Array of asset resource IDs used to limit the scope of the token.

DBMS_CLOUD_OCI_MEDIA_SERVICES_HLS_STREAM_PACKAGING_CONFIG_T Type

Configuration fields for a HLS Packaging Configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_hls_stream_packaging_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_stream_packaging_config_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_hls_stream_packaging_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_hls_stream_packaging_config_t (
    id varchar2,
    compartment_id varchar2,
    distribution_channel_id varchar2,
    display_name varchar2,
    stream_packaging_format varchar2,
    segment_time_in_seconds number,
    encryption dbms_cloud_oci_media_services_stream_packaging_config_encryption_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_hls_stream_packaging_config_t is a subtype of the dbms_cloud_oci_media_services_stream_packaging_config_t type.

DBMS_CLOUD_OCI_MEDIA_SERVICES_INGEST_STREAM_DISTRIBUTION_CHANNEL_RESULT_T Type

The Ingest Workflow Job information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_ingest_stream_distribution_channel_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  media_workflow_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_ingest_stream_distribution_channel_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_ingest_stream_distribution_channel_result_t (
    media_workflow_job_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

media_workflow_job_id

(required) Identifier of the Ingest Workflow Job created.

DBMS_CLOUD_OCI_MEDIA_SERVICES_JOB_OUTPUT_T Type

The output result of an executed MediaWorkflowJob.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_job_output_t FORCE AUTHID CURRENT_USER IS OBJECT (
  asset_type varchar2(32767),
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_job_output_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_job_output_t (
    asset_type varchar2,
    namespace_name varchar2,
    bucket_name varchar2,
    object_name varchar2,
    id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

asset_type

(optional) Type of job output.

Allowed values are: 'AUDIO', 'VIDEO', 'PLAYLIST', 'IMAGE', 'CAPTION_FILE', 'TRANSCRIPTION_JOB', 'VISION_JOB', 'TEXT_ANALYSIS', 'OTHER'

namespace_name

(optional) The namespace name of the job output.

bucket_name

(optional) The bucket name of the job output.

object_name

(optional) The object name of the job output.

id

(optional) The ID associated with the job output.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_T Type

Represents the metadata associated with an asset that has been either produced by or registered with Media Services.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  source_media_workflow_id varchar2(32767),
  media_workflow_job_id varchar2(32767),
  source_media_workflow_version number,
  display_name varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  l_type varchar2(32767),
  parent_media_asset_id varchar2(32767),
  master_media_asset_id varchar2(32767),
  bucket_name varchar2(32767),
  namespace_name varchar2(32767),
  object_name varchar2(32767),
  object_etag varchar2(32767),
  time_updated timestamp with time zone,
  segment_range_start_index number,
  segment_range_end_index number,
  metadata dbms_cloud_oci_media_services_metadata_tbl,
  media_asset_tags dbms_cloud_oci_media_services_media_asset_tag_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_t (
    id varchar2,
    compartment_id varchar2,
    source_media_workflow_id varchar2,
    media_workflow_job_id varchar2,
    source_media_workflow_version number,
    display_name varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    l_type varchar2,
    parent_media_asset_id varchar2,
    master_media_asset_id varchar2,
    bucket_name varchar2,
    namespace_name varchar2,
    object_name varchar2,
    object_etag varchar2,
    time_updated timestamp with time zone,
    segment_range_start_index number,
    segment_range_end_index number,
    metadata dbms_cloud_oci_media_services_metadata_tbl,
    media_asset_tags dbms_cloud_oci_media_services_media_asset_tag_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

compartment_id

(required) The ID of the compartment containing the MediaAsset.

source_media_workflow_id

(optional) The ID of the MediaWorkflow used to produce this asset.

media_workflow_job_id

(optional) The ID of the MediaWorkflowJob used to produce this asset.

source_media_workflow_version

(optional) The version of the MediaWorkflow used to produce this asset.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

time_created

(optional) The time when the MediaAsset was created. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the MediaAsset.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

l_type

(required) The type of the media asset.

Allowed values are: 'AUDIO', 'VIDEO', 'PLAYLIST', 'IMAGE', 'CAPTION_FILE', 'UNKNOWN'

parent_media_asset_id

(optional) The ID of the parent asset from which this asset is derived.

master_media_asset_id

(optional) The ID of the senior most asset from which this asset is derived.

bucket_name

(optional) The name of the object storage bucket where this represented asset is located.

namespace_name

(optional) The object storage namespace where this asset is located.

object_name

(optional) The object storage object name that identifies this asset.

object_etag

(optional) eTag of the underlying object storage object.

time_updated

(optional) The time when the MediaAsset was updated. An RFC3339 formatted datetime string.

segment_range_start_index

(optional) The start index for video segment files.

segment_range_end_index

(optional) The end index of video segment files.

metadata

(optional) List of Metadata.

media_asset_tags

(optional) List of tags for the MediaAsset.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_SUMMARY_T Type

Summary of the MediaAsset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  l_type varchar2(32767),
  time_updated timestamp with time zone,
  master_media_asset_id varchar2(32767),
  parent_media_asset_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    l_type varchar2,
    time_updated timestamp with time zone,
    master_media_asset_id varchar2,
    parent_media_asset_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

compartment_id

(required) The ID of the compartment containing the MediaAsset.

display_name

(optional) MediaAsset name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

time_created

(optional) The time the the MediaAsset was created. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the MediaAsset.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

l_type

(required) The type of the media asset.

Allowed values are: 'AUDIO', 'VIDEO', 'PLAYLIST', 'IMAGE', 'CAPTION_FILE', 'UNKNOWN'

time_updated

(optional) The time the MediaAsset was updated. An RFC3339 formatted datetime string.

master_media_asset_id

(optional) The ID of the senior most asset from which this asset is derived.

parent_media_asset_id

(optional) The ID of the parent asset from which this asset is derived.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_asset_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_asset_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_COLLECTION_T Type

Results of a mediaAsset search. Contains both MediaAssetSummary items and other data.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_media_asset_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_collection_t (
    items dbms_cloud_oci_media_services_media_asset_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of mediaAssets.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_DISTRIBUTION_CHANNEL_ATTACHMENT_T Type

Attachment between MediaAsset and streaming DistributionChannel.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  distribution_channel_id varchar2(32767),
  display_name varchar2(32767),
  version number,
  lifecycle_state varchar2(32767),
  metadata_ref varchar2(32767),
  media_workflow_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_t (
    distribution_channel_id varchar2,
    display_name varchar2,
    version number,
    lifecycle_state varchar2,
    metadata_ref varchar2,
    media_workflow_job_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

distribution_channel_id

(required) OCID of associated Distribution Channel.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

version

(required) Version of the attachment.

lifecycle_state

(required) Lifecycle state of the attachment.

Allowed values are: 'CREATING', 'ACTIVE', 'NEEDS_ATTENTION', 'UPDATING'

metadata_ref

(required) The identifier for the metadata.

media_workflow_job_id

(optional) The ingest MediaWorkflowJob ID that created this attachment.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_DISTRIBUTION_CHANNEL_ATTACHMENT_SUMMARY_T Type

Summary of the MediaAssetDistributionChannelAttachment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  media_asset_id varchar2(32767),
  display_name varchar2(32767),
  distribution_channel_id varchar2(32767),
  version number,
  lifecycle_state varchar2(32767),
  metadata_ref varchar2(32767),
  media_workflow_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_t (
    media_asset_id varchar2,
    display_name varchar2,
    distribution_channel_id varchar2,
    version number,
    lifecycle_state varchar2,
    metadata_ref varchar2,
    media_workflow_job_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

media_asset_id

(required) OCID of associated media asset.

display_name

(optional) Display name for the MediaAssetDistributionChannelAttachment. Does not have to be unique, and it's changeable. Avoid entering confidential information.

distribution_channel_id

(required) OCID of associated Distribution Channel.

version

(required) Version number of the attachment.

lifecycle_state

(required) Lifecycle state of the attachment.

Allowed values are: 'CREATING', 'ACTIVE', 'NEEDS_ATTENTION', 'UPDATING'

metadata_ref

(required) The identifier for the metadata.

media_workflow_job_id

(optional) The ingest MediaWorkflowJob ID that created this attachment.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_DISTRIBUTION_CHANNEL_ATTACHMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_ASSET_DISTRIBUTION_CHANNEL_ATTACHMENT_COLLECTION_T Type

Results of a MediaAssetDistributionChannelAttachment search. Contains the MediaAssetDistributionChannelAttachmentSummary items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_collection_t (
    items dbms_cloud_oci_media_services_media_asset_distribution_channel_attachment_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of Distribution Channel attachments.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_T Type

Configurable workflows that define the series of tasks that will be used to process video files.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  tasks dbms_cloud_oci_media_services_media_workflow_task_tbl,
  media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
  parameters json_element_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecyle_details varchar2(32767),
  version number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    tasks dbms_cloud_oci_media_services_media_workflow_task_tbl,
    media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
    parameters json_element_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecyle_details varchar2,
    version number,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) Name of the Media Workflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

tasks

(optional) The processing to be done in this workflow. Each key of the MediaWorkflowTasks in this array is unique within the array. The order of the items is preserved from the order of the tasks array in CreateMediaWorkflowDetails or UpdateMediaWorkflowDetails.

media_workflow_configuration_ids

(optional) Configurations to be applied to all the runs of this workflow. Parameters in these configurations are overridden by parameters in the MediaWorkflowConfigurations of the MediaWorkflowJob and the parameters of the MediaWorkflowJob. If the same parameter appears in multiple configurations, the values that appear in the configuration at the highest index will be used.

parameters

(optional) JSON object representing named parameters and their default values that can be referenced throughout this workflow. The values declared here can be overridden by the MediaWorkflowConfigurations or parameters supplied when creating MediaWorkflowJobs from this MediaWorkflow.

time_created

(optional) The time when the MediaWorkflow was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the MediaWorkflow.

Allowed values are: 'ACTIVE', 'NEEDS_ATTENTION', 'DELETED'

lifecyle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

version

(optional) The version of the MediaWorkflow.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_SUMMARY_T Type

Summary of the MediaWorkflow.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  version number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    version number,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(optional) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

time_created

(optional) The time when the MediaWorkflow was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the MediaWorkflow was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the MediaWorkflow.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

version

(optional) The version of MediaWorkflow.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_workflow_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_workflow_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_COLLECTION_T Type

Results of a MediaWorkflow search. Contains both MediaWorkflowSummary items and other information, such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_media_workflow_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_collection_t (
    items dbms_cloud_oci_media_services_media_workflow_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of all MediaWorkflows.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_CONFIGURATION_T Type

Resusable set of values that can be referenced either in a MediaWorkflow or when running a MediaWorkflowJob.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  parameters json_element_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecyle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_configuration_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    parameters json_element_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecyle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) Display name for the MediaWorkflowConfiguration. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

parameters

(required) Reuseable parameter values encoded as a JSON; the top and second level JSON elements are objects. Each key of the top level object refer to a task key that is unqiue to the workflow, each of the second level objects' keys refer to the name of a parameter that is unique to the task. taskKey -> parameterName -> parameterValue

time_created

(optional) The time when the the MediaWorkflowConfiguration was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the MediaWorkflowConfiguration was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the MediaWorkflowConfiguration.

Allowed values are: 'ACTIVE', 'DELETED'

lifecyle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_CONFIGURATION_SUMMARY_T Type

Summary of the MediaWorkflowConfiguration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_configuration_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_configuration_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_configuration_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Immutable unique identifier for the MediaWorkflowConfiguration.

display_name

(required) Name of the MediaWorkflowConfiguration. Avoid entering confidential information.

compartment_id

(required) Compartment identifier

time_created

(optional) The time when the MediaWorkflowConfiguration was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the MediaWorkflowConfiguration was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the MediaWorkflowConfiguration.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_CONFIGURATION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_workflow_configuration_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_configuration_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_workflow_configuration_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_CONFIGURATION_COLLECTION_T Type

Results of a mediaWorkflowConfiguration search. Contains boh MediaWorkflowConfigurationSummary items and other information, such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_configuration_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_media_workflow_configuration_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_configuration_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_configuration_collection_t (
    items dbms_cloud_oci_media_services_media_workflow_configuration_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of the mediaWorkflowConfigurationSummary objects.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_TASK_STATE_T Type

Status of a task in a workflow job being run.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_task_state_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_state_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_state_t (
    key varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(optional) Unique key within a MediaWorkflowJob for the task.

lifecycle_state

(optional) The current state of the MediaWorkflowJob task.

lifecycle_details

(optional) The lifecycle details of MediaWorkflowJob task.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_TASK_STATE_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_workflow_task_state_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_task_state_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_workflow_task_state_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_JOB_OUTPUT_TBL Type

Nested table type of dbms_cloud_oci_media_services_job_output_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_job_output_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_job_output_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_T Type

A MediaWorkflowJob represents a run of a MediaWorkflow for a specific set of parameters and configurations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_t FORCE AUTHID CURRENT_USER IS OBJECT (
  media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
  media_workflow_id varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  task_lifecycle_state dbms_cloud_oci_media_services_media_workflow_task_state_tbl,
  parameters json_element_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  runnable json_element_t,
  outputs dbms_cloud_oci_media_services_job_output_tbl,
  time_started timestamp with time zone,
  time_ended timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_t (
    media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
    media_workflow_id varchar2,
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    task_lifecycle_state dbms_cloud_oci_media_services_media_workflow_task_state_tbl,
    parameters json_element_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    runnable json_element_t,
    outputs dbms_cloud_oci_media_services_job_output_tbl,
    time_started timestamp with time zone,
    time_ended timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

media_workflow_configuration_ids

(optional) Configurations to be applied to this run of the workflow.

media_workflow_id

(required) The workflow to execute.

id

(required) Unique identifier for this run of the workflow.

compartment_id

(required) Compartment Identifier.

display_name

(optional) Name of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.

lifecycle_state

(optional) The current state of the MediaWorkflowJob.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

lifecycle_details

(optional) The lifecyle details.

task_lifecycle_state

(optional) Status of each task.

parameters

(optional) 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.

time_created

(optional) Creation time of the job. An RFC3339 formatted datetime string.

time_updated

(optional) Updated time of the job. An RFC3339 formatted datetime string.

runnable

(optional) 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.

outputs

(optional) A list of JobOutput for the workflowJob.

time_started

(optional) Time when the job started to execute. An RFC3339 formatted datetime string.

time_ended

(optional) Time when the job finished. An RFC3339 formatted datetime string.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_SUMMARY_T Type

Summary of a MediaWorkflowJob.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  media_workflow_id varchar2(32767),
  id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_summary_t (
    media_workflow_id varchar2,
    id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

media_workflow_id

(optional) The workflow to execute.

id

(optional) Unique identifier for this job.

display_name

(optional) Name of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information.

time_created

(optional) Creation time of the job. An RFC3339 formatted datetime string.

time_updated

(optional) Updated time of the job. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the MediaWorkflowJob.

lifecycle_details

(optional) The lifecyle details.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_workflow_job_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_workflow_job_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_COLLECTION_T Type

Results of a mediaWorkflowJob search, a list of MediaWorkflowJobSummary items and metadata of the search.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_media_workflow_job_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_collection_t (
    items dbms_cloud_oci_media_services_media_workflow_job_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of mediaWorkflowJob items.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_FACT_T Type

One fact of a list of facts associated to a MediaWorkflowJob that presents a point-in-time snapshot of the resources, data and events that were composed to generate a runnable job. This information will be used internally to trouble-shoot problematic workflows or jobs.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_fact_t FORCE AUTHID CURRENT_USER IS OBJECT (
  media_workflow_job_id varchar2(32767),
  key number,
  name varchar2(32767),
  l_type varchar2(32767),
  detail json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_fact_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_fact_t (
    media_workflow_job_id varchar2,
    key number,
    name varchar2,
    l_type varchar2,
    detail json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

media_workflow_job_id

(required) Reference to the parent job.

key

(required) System generated serial number to uniquely identify a detail in order within a MediaWorkflowJob.

name

(required) Unique name. It is read-only and generated for the fact.

l_type

(required) The type of information contained in this detail.

detail

(required) The body of the detail captured as JSON.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_FACT_SUMMARY_T Type

Summary of a MediaWorkflowJobFact

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_fact_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  media_workflow_job_id varchar2(32767),
  key number,
  name varchar2(32767),
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_fact_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_fact_summary_t (
    media_workflow_job_id varchar2,
    key number,
    name varchar2,
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

media_workflow_job_id

(required) Reference to the parent job.

key

(required) System generated serial number to uniquely identify a detail in order within a MediaWorkflowJob.

name

(required) Unique name. It is read-only and generated for the fact.

l_type

(required) The type of information contained in this detail.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_FACT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_workflow_job_fact_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_fact_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_workflow_job_fact_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_JOB_FACT_COLLECTION_T Type

Results of a jobDetail search, a list of MediaWorkflowJobFacts items and metadata of the search.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_job_fact_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_media_workflow_job_fact_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_fact_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_job_fact_collection_t (
    items dbms_cloud_oci_media_services_media_workflow_job_fact_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of mediaWorkflowJob items.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_TASK_DECLARATION_T Type

The declaration of a type of task that can be used in a MediaWorkflow.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_task_declaration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  version number,
  parameters_schema json_element_t,
  parameters_schema_allowing_references json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_declaration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_declaration_t (
    name varchar2,
    version number,
    parameters_schema json_element_t,
    parameters_schema_allowing_references json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) MediaWorkflowTaskDeclaration identifier. The name and version should be unique among MediaWorkflowTaskDeclarations.

version

(required) The version of MediaWorkflowTaskDeclaration, incremented whenever the team implementing the task processor modifies the JSON schema of this declaration's definitions, parameters or list of required parameters.

parameters_schema

(required) JSON schema specifying the parameters supported by this type of task. This is used to validate tasks' parameters when jobs are created.

parameters_schema_allowing_references

(required) JSON schema similar to the parameterSchema, but permits parameter values to refer to other parameters using the ${/path/to/another/parmeter} syntax. This is used to validate task parameters when workflows are created.

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_TASK_DECLARATION_TBL Type

Nested table type of dbms_cloud_oci_media_services_media_workflow_task_declaration_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_task_declaration_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_media_workflow_task_declaration_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_MEDIA_WORKFLOW_TASK_DECLARATION_COLLECTION_T Type

Results of the ListMediaWorkflowTaskDeclaration operation, a list of MediaWorkflowTaskDeclarations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_media_workflow_task_declaration_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_media_workflow_task_declaration_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_declaration_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_media_workflow_task_declaration_collection_t (
    items dbms_cloud_oci_media_services_media_workflow_task_declaration_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of MediaWorkflowTaskDeclaration objects.

DBMS_CLOUD_OCI_MEDIA_SERVICES_SESSION_TOKEN_T Type

The generated sessionToken details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_session_token_t FORCE AUTHID CURRENT_USER IS OBJECT (
  token varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_session_token_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_session_token_t (
    token varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

token

(required) The generated session token.

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_CDN_CONFIG_T Type

Configuration used for integrating with a CDN.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_cdn_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  distribution_channel_id varchar2(32767),
  is_enabled number,
  config dbms_cloud_oci_media_services_stream_cdn_config_section_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecyle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    distribution_channel_id varchar2,
    is_enabled number,
    config dbms_cloud_oci_media_services_stream_cdn_config_section_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecyle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) The CDN Configuration identifier or display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

distribution_channel_id

(required) Distribution Channel Identifier.

is_enabled

(required) Whether publishing to CDN is enabled.

config

(required)

time_created

(optional) The time when the CDN Config was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the CDN Config was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the CDN Configuration.

Allowed values are: 'ACTIVE', 'NEEDS_ATTENTION', 'DELETED'

lifecyle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_CDN_CONFIG_SUMMARY_T Type

Summary of the StreamCdnConfig.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_cdn_config_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  distribution_channel_id varchar2(32767),
  is_enabled number,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    distribution_channel_id varchar2,
    is_enabled number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) The CDN Configuration identifier or display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

distribution_channel_id

(required) Distribution Channel Identifier.

is_enabled

(required) Whether publishing to CDN is enabled.

time_created

(optional) The time when the the CDN Configuration was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the CDN Configuration was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the CDN Configuration.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_CDN_CONFIG_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_stream_cdn_config_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_cdn_config_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_stream_cdn_config_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_CDN_CONFIG_COLLECTION_T Type

Results of a streamCdnConfig search. Contains both StreamCdnConfigSummary items and other information, such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_cdn_config_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_stream_cdn_config_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_cdn_config_collection_t (
    items dbms_cloud_oci_media_services_stream_cdn_config_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of streamCdnConfigs.

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_DISTRIBUTION_CHANNEL_T Type

Channel used for delivering video streams to the end-users.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_distribution_channel_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  domain_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_distribution_channel_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_distribution_channel_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    domain_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) Stream Distribution Channel display name. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

domain_name

(optional) Unique domain name of the Distribution Channel.

time_created

(optional) The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the Stream Distribution Channel.

Allowed values are: 'ACTIVE', 'NEEDS_ATTENTION', 'DELETED'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_DISTRIBUTION_CHANNEL_SUMMARY_T Type

Summary of the Stream Distribution Channel.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_distribution_channel_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  domain_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_distribution_channel_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_distribution_channel_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    domain_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) Stream Distribution Channel display name. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier.

domain_name

(optional) The unique domain name of the Distribution Channel.

time_created

(optional) The time when the Stream Distribution Channel was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the Stream Distribution Channel was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the Stream Distribution Channel.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_DISTRIBUTION_CHANNEL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_stream_distribution_channel_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_distribution_channel_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_stream_distribution_channel_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_DISTRIBUTION_CHANNEL_COLLECTION_T Type

Results of a Stream Distribution Channel search. Contains both StreamDistributionChannelSummary items and other information, such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_distribution_channel_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_stream_distribution_channel_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_distribution_channel_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_distribution_channel_collection_t (
    items dbms_cloud_oci_media_services_stream_distribution_channel_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of Stream Distribution Channels.

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_PACKAGING_CONFIG_SUMMARY_T Type

Summary of the Packaging Configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_packaging_config_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  distribution_channel_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_summary_t (
    id varchar2,
    compartment_id varchar2,
    distribution_channel_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

compartment_id

(required) Compartment Identifier.

distribution_channel_id

(required) Unique identifier of the distribution channel that this stream packaging configuration belongs to.

display_name

(required) Stream Packaging Configuration display name. Avoid entering confidential information.

time_created

(optional) The time when the Distribution Channel was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the Distribution Channel was updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the Distribution Channel.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_PACKAGING_CONFIG_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_media_services_stream_packaging_config_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_packaging_config_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_stream_packaging_config_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_PACKAGING_CONFIG_COLLECTION_T Type

Results of a Packaging Configuration search. Contains both StreamPackagingConfigSummary items and other information, such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_packaging_config_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_stream_packaging_config_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_collection_t (
    items dbms_cloud_oci_media_services_stream_packaging_config_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of Packaging Configurations.

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_PACKAGING_CONFIG_ENCRYPTION_AES128_T Type

AES128 encryption type (enabled by default).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_packaging_config_encryption_aes128_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_stream_packaging_config_encryption_t (
  kms_key_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_encryption_aes128_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_encryption_aes128_t (
    algorithm varchar2,
    kms_key_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_stream_packaging_config_encryption_aes128_t is a subtype of the dbms_cloud_oci_media_services_stream_packaging_config_encryption_t type.

Fields

Field Description

kms_key_id

(optional) The identifier of the customer managed Vault KMS symmetric encryption key (null if Oracle managed).

DBMS_CLOUD_OCI_MEDIA_SERVICES_STREAM_PACKAGING_CONFIG_ENCRYPTION_NONE_T Type

Disables encryption.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_stream_packaging_config_encryption_none_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_media_services_stream_packaging_config_encryption_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_encryption_none_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_stream_packaging_config_encryption_none_t (
    algorithm varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_media_services_stream_packaging_config_encryption_none_t is a subtype of the dbms_cloud_oci_media_services_stream_packaging_config_encryption_t type.

DBMS_CLOUD_OCI_MEDIA_SERVICES_SYSTEM_MEDIA_WORKFLOW_T Type

A named list of tasks to be used to run a job or as a template to create a MediaWorkflow.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_system_media_workflow_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  description varchar2(32767),
  parameters json_element_t,
  tasks dbms_cloud_oci_media_services_media_workflow_task_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_system_media_workflow_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_system_media_workflow_t (
    name varchar2,
    description varchar2,
    parameters json_element_t,
    tasks dbms_cloud_oci_media_services_media_workflow_task_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) System provided unique identifier for this static media workflow.

description

(optional) Description of this workflow's processing and how that processing can be customized by specifying parameter values.

parameters

(optional) JSON object representing named parameters and their default values that can be referenced throughout this workflow. The values declared here can be overridden by the MediaWorkflowConfigurations or parameters supplied when creating MediaWorkflowJobs from this MediaWorkflow.

tasks

(required) The processing to be done in this workflow. Each key of the MediaWorkflowTasks in this array is unique within the array. The order of the items is preserved from the order of the tasks array in CreateMediaWorkflowDetails or UpdateMediaWorkflowDetails.

DBMS_CLOUD_OCI_MEDIA_SERVICES_SYSTEM_MEDIA_WORKFLOW_TBL Type

Nested table type of dbms_cloud_oci_media_services_system_media_workflow_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_system_media_workflow_tbl FORCE IS TABLE OF (dbms_cloud_oci_media_services_system_media_workflow_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MEDIA_SERVICES_SYSTEM_MEDIA_WORKFLOW_COLLECTION_T Type

Result for the ListSystemMediaWorkflows operation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_system_media_workflow_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_media_services_system_media_workflow_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_system_media_workflow_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_system_media_workflow_collection_t (
    items dbms_cloud_oci_media_services_system_media_workflow_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of SytemMediaWorkflow items.

DBMS_CLOUD_OCI_MEDIA_SERVICES_UPDATE_MEDIA_ASSET_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_update_media_asset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  l_type varchar2(32767),
  parent_media_asset_id varchar2(32767),
  master_media_asset_id varchar2(32767),
  metadata dbms_cloud_oci_media_services_metadata_tbl,
  media_asset_tags dbms_cloud_oci_media_services_media_asset_tag_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_asset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_asset_details_t (
    display_name varchar2,
    l_type varchar2,
    parent_media_asset_id varchar2,
    master_media_asset_id varchar2,
    metadata dbms_cloud_oci_media_services_metadata_tbl,
    media_asset_tags dbms_cloud_oci_media_services_media_asset_tag_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Display name for the Media Asset. Does not have to be unique. Avoid entering confidential information.

l_type

(optional) The type of the media asset.

Allowed values are: 'AUDIO', 'VIDEO', 'PLAYLIST', 'IMAGE', 'CAPTION_FILE', 'UNKNOWN'

parent_media_asset_id

(optional) The ID of the parent asset from which this asset is derived.

master_media_asset_id

(optional) The ID of the senior most asset from which this asset is derived.

metadata

(optional) List of Metadata.

media_asset_tags

(optional) List of tags for the MediaAsset.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_UPDATE_MEDIA_WORKFLOW_CONFIGURATION_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_update_media_workflow_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  parameters json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_workflow_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_workflow_configuration_details_t (
    display_name varchar2,
    parameters json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Name for the MediaWorkflowConfiguration. Does not have to be unique, and it's changeable. Avoid entering confidential information.

parameters

(optional) Reuseable parameter values encoded as a JSON; the top and second level JSON elements are objects. Each key of the top level object refer to a task key that is unqiue to the workflow, each of the second level objects' keys refer to the name of a parameter that is unique to the task. taskKey -> parameterName -> parameterValue

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_UPDATE_MEDIA_WORKFLOW_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_update_media_workflow_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  tasks dbms_cloud_oci_media_services_media_workflow_task_tbl,
  media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
  parameters json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_workflow_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_workflow_details_t (
    display_name varchar2,
    tasks dbms_cloud_oci_media_services_media_workflow_task_tbl,
    media_workflow_configuration_ids dbms_cloud_oci_media_services_varchar2_tbl,
    parameters json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Name for the MediaWorkflow. Does not have to be unique, and it's changeable. Avoid entering confidential information.

tasks

(optional) The processing to be done in this workflow. Each key of the MediaWorkflowTasks in this array must be unique within the array.

media_workflow_configuration_ids

(optional) Configurations to be applied to all jobs for this workflow. Parameters in these configurations are overridden by parameters in the MediaWorkflowConfigurations of the MediaWorkflogJob and the parameters of the MediaWorkflowJob.

parameters

(optional) JSON object representing named parameters and their default values that can be referenced throughout this workflow. The values declared here can be overridden by the MediaWorkflowConfigurations or parameters supplied when creating MediaWorkflowJobs from this MediaWorkflow.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_UPDATE_MEDIA_WORKFLOW_JOB_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_update_media_workflow_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_workflow_job_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_media_workflow_job_details_t (
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Name for the MediaWorkflowJob. Does not have to be unique. Avoid entering confidential information.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_UPDATE_STREAM_CDN_CONFIG_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_update_stream_cdn_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  is_enabled number,
  config dbms_cloud_oci_media_services_stream_cdn_config_section_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_stream_cdn_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_stream_cdn_config_details_t (
    display_name varchar2,
    is_enabled number,
    config dbms_cloud_oci_media_services_stream_cdn_config_section_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) CDN Config display name.

is_enabled

(optional) Whether CDN is enabled for publishing.

config

(optional)

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_UPDATE_STREAM_DISTRIBUTION_CHANNEL_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_update_stream_distribution_channel_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_stream_distribution_channel_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_stream_distribution_channel_details_t (
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Stream Distribution channel display name. Avoid entering confidential information.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_MEDIA_SERVICES_UPDATE_STREAM_PACKAGING_CONFIG_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_media_services_update_stream_packaging_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_stream_packaging_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_media_services_update_stream_packaging_config_details_t (
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The name of the stream Packaging Configuration. Avoid entering confidential information.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

Was this article helpful?