1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. MediaServices
  5. getMediaAssets
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.MediaServices.getMediaAssets

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

This data source provides the list of Media Assets in Oracle Cloud Infrastructure Media Services service.

Returns a list of MediaAssetSummary.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testMediaAssets = oci.MediaServices.getMediaAssets({
    bucket: mediaAssetBucket,
    compartmentId: compartmentId,
    displayName: mediaAssetDisplayName,
    distributionChannelId: testChannel.id,
    masterMediaAssetId: testMediaAsset.id,
    mediaWorkflowJobId: testMediaWorkflowJob.id,
    object: mediaAssetObject,
    parentMediaAssetId: testMediaAsset.id,
    sourceMediaWorkflowId: testMediaWorkflow.id,
    sourceMediaWorkflowVersion: mediaAssetSourceMediaWorkflowVersion,
    state: mediaAssetState,
    type: mediaAssetType,
});
Copy
import pulumi
import pulumi_oci as oci

test_media_assets = oci.MediaServices.get_media_assets(bucket=media_asset_bucket,
    compartment_id=compartment_id,
    display_name=media_asset_display_name,
    distribution_channel_id=test_channel["id"],
    master_media_asset_id=test_media_asset["id"],
    media_workflow_job_id=test_media_workflow_job["id"],
    object=media_asset_object,
    parent_media_asset_id=test_media_asset["id"],
    source_media_workflow_id=test_media_workflow["id"],
    source_media_workflow_version=media_asset_source_media_workflow_version,
    state=media_asset_state,
    type=media_asset_type)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/mediaservices"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mediaservices.GetMediaAssets(ctx, &mediaservices.GetMediaAssetsArgs{
			Bucket:                     pulumi.StringRef(mediaAssetBucket),
			CompartmentId:              pulumi.StringRef(compartmentId),
			DisplayName:                pulumi.StringRef(mediaAssetDisplayName),
			DistributionChannelId:      pulumi.StringRef(testChannel.Id),
			MasterMediaAssetId:         pulumi.StringRef(testMediaAsset.Id),
			MediaWorkflowJobId:         pulumi.StringRef(testMediaWorkflowJob.Id),
			Object:                     pulumi.StringRef(mediaAssetObject),
			ParentMediaAssetId:         pulumi.StringRef(testMediaAsset.Id),
			SourceMediaWorkflowId:      pulumi.StringRef(testMediaWorkflow.Id),
			SourceMediaWorkflowVersion: pulumi.StringRef(mediaAssetSourceMediaWorkflowVersion),
			State:                      pulumi.StringRef(mediaAssetState),
			Type:                       pulumi.StringRef(mediaAssetType),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testMediaAssets = Oci.MediaServices.GetMediaAssets.Invoke(new()
    {
        Bucket = mediaAssetBucket,
        CompartmentId = compartmentId,
        DisplayName = mediaAssetDisplayName,
        DistributionChannelId = testChannel.Id,
        MasterMediaAssetId = testMediaAsset.Id,
        MediaWorkflowJobId = testMediaWorkflowJob.Id,
        Object = mediaAssetObject,
        ParentMediaAssetId = testMediaAsset.Id,
        SourceMediaWorkflowId = testMediaWorkflow.Id,
        SourceMediaWorkflowVersion = mediaAssetSourceMediaWorkflowVersion,
        State = mediaAssetState,
        Type = mediaAssetType,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.MediaServices.MediaServicesFunctions;
import com.pulumi.oci.MediaServices.inputs.GetMediaAssetsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testMediaAssets = MediaServicesFunctions.getMediaAssets(GetMediaAssetsArgs.builder()
            .bucket(mediaAssetBucket)
            .compartmentId(compartmentId)
            .displayName(mediaAssetDisplayName)
            .distributionChannelId(testChannel.id())
            .masterMediaAssetId(testMediaAsset.id())
            .mediaWorkflowJobId(testMediaWorkflowJob.id())
            .object(mediaAssetObject)
            .parentMediaAssetId(testMediaAsset.id())
            .sourceMediaWorkflowId(testMediaWorkflow.id())
            .sourceMediaWorkflowVersion(mediaAssetSourceMediaWorkflowVersion)
            .state(mediaAssetState)
            .type(mediaAssetType)
            .build());

    }
}
Copy
variables:
  testMediaAssets:
    fn::invoke:
      function: oci:MediaServices:getMediaAssets
      arguments:
        bucket: ${mediaAssetBucket}
        compartmentId: ${compartmentId}
        displayName: ${mediaAssetDisplayName}
        distributionChannelId: ${testChannel.id}
        masterMediaAssetId: ${testMediaAsset.id}
        mediaWorkflowJobId: ${testMediaWorkflowJob.id}
        object: ${mediaAssetObject}
        parentMediaAssetId: ${testMediaAsset.id}
        sourceMediaWorkflowId: ${testMediaWorkflow.id}
        sourceMediaWorkflowVersion: ${mediaAssetSourceMediaWorkflowVersion}
        state: ${mediaAssetState}
        type: ${mediaAssetType}
Copy

Using getMediaAssets

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getMediaAssets(args: GetMediaAssetsArgs, opts?: InvokeOptions): Promise<GetMediaAssetsResult>
function getMediaAssetsOutput(args: GetMediaAssetsOutputArgs, opts?: InvokeOptions): Output<GetMediaAssetsResult>
Copy
def get_media_assets(bucket: Optional[str] = None,
                     compartment_id: Optional[str] = None,
                     display_name: Optional[str] = None,
                     distribution_channel_id: Optional[str] = None,
                     filters: Optional[Sequence[_mediaservices.GetMediaAssetsFilter]] = None,
                     master_media_asset_id: Optional[str] = None,
                     media_workflow_job_id: Optional[str] = None,
                     object: Optional[str] = None,
                     parent_media_asset_id: Optional[str] = None,
                     source_media_workflow_id: Optional[str] = None,
                     source_media_workflow_version: Optional[str] = None,
                     state: Optional[str] = None,
                     type: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetMediaAssetsResult
def get_media_assets_output(bucket: Optional[pulumi.Input[str]] = None,
                     compartment_id: Optional[pulumi.Input[str]] = None,
                     display_name: Optional[pulumi.Input[str]] = None,
                     distribution_channel_id: Optional[pulumi.Input[str]] = None,
                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[_mediaservices.GetMediaAssetsFilterArgs]]]] = None,
                     master_media_asset_id: Optional[pulumi.Input[str]] = None,
                     media_workflow_job_id: Optional[pulumi.Input[str]] = None,
                     object: Optional[pulumi.Input[str]] = None,
                     parent_media_asset_id: Optional[pulumi.Input[str]] = None,
                     source_media_workflow_id: Optional[pulumi.Input[str]] = None,
                     source_media_workflow_version: Optional[pulumi.Input[str]] = None,
                     state: Optional[pulumi.Input[str]] = None,
                     type: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetMediaAssetsResult]
Copy
func GetMediaAssets(ctx *Context, args *GetMediaAssetsArgs, opts ...InvokeOption) (*GetMediaAssetsResult, error)
func GetMediaAssetsOutput(ctx *Context, args *GetMediaAssetsOutputArgs, opts ...InvokeOption) GetMediaAssetsResultOutput
Copy

> Note: This function is named GetMediaAssets in the Go SDK.

public static class GetMediaAssets 
{
    public static Task<GetMediaAssetsResult> InvokeAsync(GetMediaAssetsArgs args, InvokeOptions? opts = null)
    public static Output<GetMediaAssetsResult> Invoke(GetMediaAssetsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetMediaAssetsResult> getMediaAssets(GetMediaAssetsArgs args, InvokeOptions options)
public static Output<GetMediaAssetsResult> getMediaAssets(GetMediaAssetsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:MediaServices/getMediaAssets:getMediaAssets
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Bucket string
Filter MediaAsset by the bucket where the object is stored.
CompartmentId string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only the resources that match the entire display name given.
DistributionChannelId string
Unique DistributionChannel identifier.
Filters Changes to this property will trigger replacement. List<GetMediaAssetsFilter>
MasterMediaAssetId string
Unique MediaAsset identifier of the first asset upload.
MediaWorkflowJobId string
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
Object string
Filter MediaAsset by the name of the object in object storage.
ParentMediaAssetId string
Unique MediaAsset identifier of the asset from which this asset is derived.
SourceMediaWorkflowId string
The ID of the MediaWorkflow used to produce this asset.
SourceMediaWorkflowVersion string
The version of the MediaWorkflow used to produce this asset.
State string
A filter to return only the resources with lifecycleState matching the given lifecycleState.
Type string
Filter MediaAsset by the asset type.
Bucket string
Filter MediaAsset by the bucket where the object is stored.
CompartmentId string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only the resources that match the entire display name given.
DistributionChannelId string
Unique DistributionChannel identifier.
Filters Changes to this property will trigger replacement. []GetMediaAssetsFilter
MasterMediaAssetId string
Unique MediaAsset identifier of the first asset upload.
MediaWorkflowJobId string
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
Object string
Filter MediaAsset by the name of the object in object storage.
ParentMediaAssetId string
Unique MediaAsset identifier of the asset from which this asset is derived.
SourceMediaWorkflowId string
The ID of the MediaWorkflow used to produce this asset.
SourceMediaWorkflowVersion string
The version of the MediaWorkflow used to produce this asset.
State string
A filter to return only the resources with lifecycleState matching the given lifecycleState.
Type string
Filter MediaAsset by the asset type.
bucket String
Filter MediaAsset by the bucket where the object is stored.
compartmentId String
The ID of the compartment in which to list resources.
displayName String
A filter to return only the resources that match the entire display name given.
distributionChannelId String
Unique DistributionChannel identifier.
filters Changes to this property will trigger replacement. List<GetMediaAssetsFilter>
masterMediaAssetId String
Unique MediaAsset identifier of the first asset upload.
mediaWorkflowJobId String
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
object String
Filter MediaAsset by the name of the object in object storage.
parentMediaAssetId String
Unique MediaAsset identifier of the asset from which this asset is derived.
sourceMediaWorkflowId String
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion String
The version of the MediaWorkflow used to produce this asset.
state String
A filter to return only the resources with lifecycleState matching the given lifecycleState.
type String
Filter MediaAsset by the asset type.
bucket string
Filter MediaAsset by the bucket where the object is stored.
compartmentId string
The ID of the compartment in which to list resources.
displayName string
A filter to return only the resources that match the entire display name given.
distributionChannelId string
Unique DistributionChannel identifier.
filters Changes to this property will trigger replacement. GetMediaAssetsFilter[]
masterMediaAssetId string
Unique MediaAsset identifier of the first asset upload.
mediaWorkflowJobId string
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
object string
Filter MediaAsset by the name of the object in object storage.
parentMediaAssetId string
Unique MediaAsset identifier of the asset from which this asset is derived.
sourceMediaWorkflowId string
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion string
The version of the MediaWorkflow used to produce this asset.
state string
A filter to return only the resources with lifecycleState matching the given lifecycleState.
type string
Filter MediaAsset by the asset type.
bucket str
Filter MediaAsset by the bucket where the object is stored.
compartment_id str
The ID of the compartment in which to list resources.
display_name str
A filter to return only the resources that match the entire display name given.
distribution_channel_id str
Unique DistributionChannel identifier.
filters Changes to this property will trigger replacement. Sequence[mediaservices.GetMediaAssetsFilter]
master_media_asset_id str
Unique MediaAsset identifier of the first asset upload.
media_workflow_job_id str
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
object str
Filter MediaAsset by the name of the object in object storage.
parent_media_asset_id str
Unique MediaAsset identifier of the asset from which this asset is derived.
source_media_workflow_id str
The ID of the MediaWorkflow used to produce this asset.
source_media_workflow_version str
The version of the MediaWorkflow used to produce this asset.
state str
A filter to return only the resources with lifecycleState matching the given lifecycleState.
type str
Filter MediaAsset by the asset type.
bucket String
Filter MediaAsset by the bucket where the object is stored.
compartmentId String
The ID of the compartment in which to list resources.
displayName String
A filter to return only the resources that match the entire display name given.
distributionChannelId String
Unique DistributionChannel identifier.
filters Changes to this property will trigger replacement. List<Property Map>
masterMediaAssetId String
Unique MediaAsset identifier of the first asset upload.
mediaWorkflowJobId String
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
object String
Filter MediaAsset by the name of the object in object storage.
parentMediaAssetId String
Unique MediaAsset identifier of the asset from which this asset is derived.
sourceMediaWorkflowId String
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion String
The version of the MediaWorkflow used to produce this asset.
state String
A filter to return only the resources with lifecycleState matching the given lifecycleState.
type String
Filter MediaAsset by the asset type.

getMediaAssets Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
MediaAssetCollections List<GetMediaAssetsMediaAssetCollection>
The list of media_asset_collection.
Bucket string
The name of the object storage bucket where this represented asset is located.
CompartmentId string
The compartment ID of the lock.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
DistributionChannelId string
Filters List<GetMediaAssetsFilter>
MasterMediaAssetId string
The ID of the senior most asset from which this asset is derived.
MediaWorkflowJobId string
The ID of the MediaWorkflowJob used to produce this asset.
Object string
The object storage object name that identifies this asset.
ParentMediaAssetId string
The ID of the parent asset from which this asset is derived.
SourceMediaWorkflowId string
The ID of the MediaWorkflow used to produce this asset.
SourceMediaWorkflowVersion string
The version of the MediaWorkflow used to produce this asset.
State string
The current state of the MediaAsset.
Type string
The type of the media asset.
Id string
The provider-assigned unique ID for this managed resource.
MediaAssetCollections []GetMediaAssetsMediaAssetCollection
The list of media_asset_collection.
Bucket string
The name of the object storage bucket where this represented asset is located.
CompartmentId string
The compartment ID of the lock.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
DistributionChannelId string
Filters []GetMediaAssetsFilter
MasterMediaAssetId string
The ID of the senior most asset from which this asset is derived.
MediaWorkflowJobId string
The ID of the MediaWorkflowJob used to produce this asset.
Object string
The object storage object name that identifies this asset.
ParentMediaAssetId string
The ID of the parent asset from which this asset is derived.
SourceMediaWorkflowId string
The ID of the MediaWorkflow used to produce this asset.
SourceMediaWorkflowVersion string
The version of the MediaWorkflow used to produce this asset.
State string
The current state of the MediaAsset.
Type string
The type of the media asset.
id String
The provider-assigned unique ID for this managed resource.
mediaAssetCollections List<GetMediaAssetsMediaAssetCollection>
The list of media_asset_collection.
bucket String
The name of the object storage bucket where this represented asset is located.
compartmentId String
The compartment ID of the lock.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
distributionChannelId String
filters List<GetMediaAssetsFilter>
masterMediaAssetId String
The ID of the senior most asset from which this asset is derived.
mediaWorkflowJobId String
The ID of the MediaWorkflowJob used to produce this asset.
object String
The object storage object name that identifies this asset.
parentMediaAssetId String
The ID of the parent asset from which this asset is derived.
sourceMediaWorkflowId String
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion String
The version of the MediaWorkflow used to produce this asset.
state String
The current state of the MediaAsset.
type String
The type of the media asset.
id string
The provider-assigned unique ID for this managed resource.
mediaAssetCollections GetMediaAssetsMediaAssetCollection[]
The list of media_asset_collection.
bucket string
The name of the object storage bucket where this represented asset is located.
compartmentId string
The compartment ID of the lock.
displayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
distributionChannelId string
filters GetMediaAssetsFilter[]
masterMediaAssetId string
The ID of the senior most asset from which this asset is derived.
mediaWorkflowJobId string
The ID of the MediaWorkflowJob used to produce this asset.
object string
The object storage object name that identifies this asset.
parentMediaAssetId string
The ID of the parent asset from which this asset is derived.
sourceMediaWorkflowId string
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion string
The version of the MediaWorkflow used to produce this asset.
state string
The current state of the MediaAsset.
type string
The type of the media asset.
id str
The provider-assigned unique ID for this managed resource.
media_asset_collections Sequence[mediaservices.GetMediaAssetsMediaAssetCollection]
The list of media_asset_collection.
bucket str
The name of the object storage bucket where this represented asset is located.
compartment_id str
The compartment ID of the lock.
display_name str
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
distribution_channel_id str
filters Sequence[mediaservices.GetMediaAssetsFilter]
master_media_asset_id str
The ID of the senior most asset from which this asset is derived.
media_workflow_job_id str
The ID of the MediaWorkflowJob used to produce this asset.
object str
The object storage object name that identifies this asset.
parent_media_asset_id str
The ID of the parent asset from which this asset is derived.
source_media_workflow_id str
The ID of the MediaWorkflow used to produce this asset.
source_media_workflow_version str
The version of the MediaWorkflow used to produce this asset.
state str
The current state of the MediaAsset.
type str
The type of the media asset.
id String
The provider-assigned unique ID for this managed resource.
mediaAssetCollections List<Property Map>
The list of media_asset_collection.
bucket String
The name of the object storage bucket where this represented asset is located.
compartmentId String
The compartment ID of the lock.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
distributionChannelId String
filters List<Property Map>
masterMediaAssetId String
The ID of the senior most asset from which this asset is derived.
mediaWorkflowJobId String
The ID of the MediaWorkflowJob used to produce this asset.
object String
The object storage object name that identifies this asset.
parentMediaAssetId String
The ID of the parent asset from which this asset is derived.
sourceMediaWorkflowId String
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion String
The version of the MediaWorkflow used to produce this asset.
state String
The current state of the MediaAsset.
type String
The type of the media asset.

Supporting Types

GetMediaAssetsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetMediaAssetsMediaAssetCollection

items This property is required. List<Property Map>

GetMediaAssetsMediaAssetCollectionItem

Bucket This property is required. string
Filter MediaAsset by the bucket where the object is stored.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName This property is required. string
A filter to return only the resources that match the entire display name given.
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier that is immutable on creation.
IsLockOverride This property is required. bool
Locks This property is required. List<GetMediaAssetsMediaAssetCollectionItemLock>
Locks associated with this resource.
MasterMediaAssetId This property is required. string
Unique MediaAsset identifier of the first asset upload.
MediaAssetTags This property is required. List<GetMediaAssetsMediaAssetCollectionItemMediaAssetTag>
List of tags for the MediaAsset.
MediaWorkflowJobId This property is required. string
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
Metadatas This property is required. List<GetMediaAssetsMediaAssetCollectionItemMetadata>
JSON string containing the technial metadata for the media asset.
Namespace This property is required. string
The object storage namespace where this asset is located.
Object This property is required. string
Filter MediaAsset by the name of the object in object storage.
ObjectEtag This property is required. string
eTag of the underlying object storage object.
ParentMediaAssetId This property is required. string
Unique MediaAsset identifier of the asset from which this asset is derived.
SegmentRangeEndIndex This property is required. string
The end index of video segment files.
SegmentRangeStartIndex This property is required. string
The start index for video segment files.
SourceMediaWorkflowId This property is required. string
The ID of the MediaWorkflow used to produce this asset.
SourceMediaWorkflowVersion This property is required. string
The version of the MediaWorkflow used to produce this asset.
State This property is required. string
A filter to return only the resources with lifecycleState matching the given lifecycleState.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
TimeUpdated This property is required. string
The time when the MediaAsset was updated. An RFC3339 formatted datetime string.
Type This property is required. string
Filter MediaAsset by the asset type.
Bucket This property is required. string
Filter MediaAsset by the bucket where the object is stored.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName This property is required. string
A filter to return only the resources that match the entire display name given.
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier that is immutable on creation.
IsLockOverride This property is required. bool
Locks This property is required. []GetMediaAssetsMediaAssetCollectionItemLock
Locks associated with this resource.
MasterMediaAssetId This property is required. string
Unique MediaAsset identifier of the first asset upload.
MediaAssetTags This property is required. []GetMediaAssetsMediaAssetCollectionItemMediaAssetTag
List of tags for the MediaAsset.
MediaWorkflowJobId This property is required. string
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
Metadatas This property is required. []GetMediaAssetsMediaAssetCollectionItemMetadata
JSON string containing the technial metadata for the media asset.
Namespace This property is required. string
The object storage namespace where this asset is located.
Object This property is required. string
Filter MediaAsset by the name of the object in object storage.
ObjectEtag This property is required. string
eTag of the underlying object storage object.
ParentMediaAssetId This property is required. string
Unique MediaAsset identifier of the asset from which this asset is derived.
SegmentRangeEndIndex This property is required. string
The end index of video segment files.
SegmentRangeStartIndex This property is required. string
The start index for video segment files.
SourceMediaWorkflowId This property is required. string
The ID of the MediaWorkflow used to produce this asset.
SourceMediaWorkflowVersion This property is required. string
The version of the MediaWorkflow used to produce this asset.
State This property is required. string
A filter to return only the resources with lifecycleState matching the given lifecycleState.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
TimeUpdated This property is required. string
The time when the MediaAsset was updated. An RFC3339 formatted datetime string.
Type This property is required. string
Filter MediaAsset by the asset type.
bucket This property is required. String
Filter MediaAsset by the bucket where the object is stored.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. String
A filter to return only the resources that match the entire display name given.
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier that is immutable on creation.
isLockOverride This property is required. Boolean
locks This property is required. List<GetMediaAssetsMediaAssetCollectionItemLock>
Locks associated with this resource.
masterMediaAssetId This property is required. String
Unique MediaAsset identifier of the first asset upload.
mediaAssetTags This property is required. List<GetMediaAssetsMediaAssetCollectionItemMediaAssetTag>
List of tags for the MediaAsset.
mediaWorkflowJobId This property is required. String
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
metadatas This property is required. List<GetMediaAssetsMediaAssetCollectionItemMetadata>
JSON string containing the technial metadata for the media asset.
namespace This property is required. String
The object storage namespace where this asset is located.
object This property is required. String
Filter MediaAsset by the name of the object in object storage.
objectEtag This property is required. String
eTag of the underlying object storage object.
parentMediaAssetId This property is required. String
Unique MediaAsset identifier of the asset from which this asset is derived.
segmentRangeEndIndex This property is required. String
The end index of video segment files.
segmentRangeStartIndex This property is required. String
The start index for video segment files.
sourceMediaWorkflowId This property is required. String
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion This property is required. String
The version of the MediaWorkflow used to produce this asset.
state This property is required. String
A filter to return only the resources with lifecycleState matching the given lifecycleState.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
timeUpdated This property is required. String
The time when the MediaAsset was updated. An RFC3339 formatted datetime string.
type This property is required. String
Filter MediaAsset by the asset type.
bucket This property is required. string
Filter MediaAsset by the bucket where the object is stored.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. string
A filter to return only the resources that match the entire display name given.
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. string
Unique identifier that is immutable on creation.
isLockOverride This property is required. boolean
locks This property is required. GetMediaAssetsMediaAssetCollectionItemLock[]
Locks associated with this resource.
masterMediaAssetId This property is required. string
Unique MediaAsset identifier of the first asset upload.
mediaAssetTags This property is required. GetMediaAssetsMediaAssetCollectionItemMediaAssetTag[]
List of tags for the MediaAsset.
mediaWorkflowJobId This property is required. string
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
metadatas This property is required. GetMediaAssetsMediaAssetCollectionItemMetadata[]
JSON string containing the technial metadata for the media asset.
namespace This property is required. string
The object storage namespace where this asset is located.
object This property is required. string
Filter MediaAsset by the name of the object in object storage.
objectEtag This property is required. string
eTag of the underlying object storage object.
parentMediaAssetId This property is required. string
Unique MediaAsset identifier of the asset from which this asset is derived.
segmentRangeEndIndex This property is required. string
The end index of video segment files.
segmentRangeStartIndex This property is required. string
The start index for video segment files.
sourceMediaWorkflowId This property is required. string
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion This property is required. string
The version of the MediaWorkflow used to produce this asset.
state This property is required. string
A filter to return only the resources with lifecycleState matching the given lifecycleState.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
timeUpdated This property is required. string
The time when the MediaAsset was updated. An RFC3339 formatted datetime string.
type This property is required. string
Filter MediaAsset by the asset type.
bucket This property is required. str
Filter MediaAsset by the bucket where the object is stored.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name This property is required. str
A filter to return only the resources that match the entire display name given.
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. str
Unique identifier that is immutable on creation.
is_lock_override This property is required. bool
locks This property is required. Sequence[mediaservices.GetMediaAssetsMediaAssetCollectionItemLock]
Locks associated with this resource.
master_media_asset_id This property is required. str
Unique MediaAsset identifier of the first asset upload.
media_asset_tags This property is required. Sequence[mediaservices.GetMediaAssetsMediaAssetCollectionItemMediaAssetTag]
List of tags for the MediaAsset.
media_workflow_job_id This property is required. str
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
metadatas This property is required. Sequence[mediaservices.GetMediaAssetsMediaAssetCollectionItemMetadata]
JSON string containing the technial metadata for the media asset.
namespace This property is required. str
The object storage namespace where this asset is located.
object This property is required. str
Filter MediaAsset by the name of the object in object storage.
object_etag This property is required. str
eTag of the underlying object storage object.
parent_media_asset_id This property is required. str
Unique MediaAsset identifier of the asset from which this asset is derived.
segment_range_end_index This property is required. str
The end index of video segment files.
segment_range_start_index This property is required. str
The start index for video segment files.
source_media_workflow_id This property is required. str
The ID of the MediaWorkflow used to produce this asset.
source_media_workflow_version This property is required. str
The version of the MediaWorkflow used to produce this asset.
state This property is required. str
A filter to return only the resources with lifecycleState matching the given lifecycleState.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
time_updated This property is required. str
The time when the MediaAsset was updated. An RFC3339 formatted datetime string.
type This property is required. str
Filter MediaAsset by the asset type.
bucket This property is required. String
Filter MediaAsset by the bucket where the object is stored.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. String
A filter to return only the resources that match the entire display name given.
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier that is immutable on creation.
isLockOverride This property is required. Boolean
locks This property is required. List<Property Map>
Locks associated with this resource.
masterMediaAssetId This property is required. String
Unique MediaAsset identifier of the first asset upload.
mediaAssetTags This property is required. List<Property Map>
List of tags for the MediaAsset.
mediaWorkflowJobId This property is required. String
The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.
metadatas This property is required. List<Property Map>
JSON string containing the technial metadata for the media asset.
namespace This property is required. String
The object storage namespace where this asset is located.
object This property is required. String
Filter MediaAsset by the name of the object in object storage.
objectEtag This property is required. String
eTag of the underlying object storage object.
parentMediaAssetId This property is required. String
Unique MediaAsset identifier of the asset from which this asset is derived.
segmentRangeEndIndex This property is required. String
The end index of video segment files.
segmentRangeStartIndex This property is required. String
The start index for video segment files.
sourceMediaWorkflowId This property is required. String
The ID of the MediaWorkflow used to produce this asset.
sourceMediaWorkflowVersion This property is required. String
The version of the MediaWorkflow used to produce this asset.
state This property is required. String
A filter to return only the resources with lifecycleState matching the given lifecycleState.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
timeUpdated This property is required. String
The time when the MediaAsset was updated. An RFC3339 formatted datetime string.
type This property is required. String
Filter MediaAsset by the asset type.

GetMediaAssetsMediaAssetCollectionItemLock

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId This property is required. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated This property is required. string
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
Type This property is required. string
Filter MediaAsset by the asset type.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId This property is required. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated This property is required. string
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
Type This property is required. string
Filter MediaAsset by the asset type.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
message This property is required. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. String
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. String
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
type This property is required. String
Filter MediaAsset by the asset type.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. string
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
type This property is required. string
Filter MediaAsset by the asset type.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
message This property is required. str
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
related_resource_id This property is required. str
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
time_created This property is required. str
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
type This property is required. str
Filter MediaAsset by the asset type.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
message This property is required. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. String
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. String
The time when the MediaAsset was created. An RFC3339 formatted datetime string.
type This property is required. String
Filter MediaAsset by the asset type.

GetMediaAssetsMediaAssetCollectionItemMediaAssetTag

Type This property is required. string
Filter MediaAsset by the asset type.
Value This property is required. string
Tag of the MediaAsset.
Type This property is required. string
Filter MediaAsset by the asset type.
Value This property is required. string
Tag of the MediaAsset.
type This property is required. String
Filter MediaAsset by the asset type.
value This property is required. String
Tag of the MediaAsset.
type This property is required. string
Filter MediaAsset by the asset type.
value This property is required. string
Tag of the MediaAsset.
type This property is required. str
Filter MediaAsset by the asset type.
value This property is required. str
Tag of the MediaAsset.
type This property is required. String
Filter MediaAsset by the asset type.
value This property is required. String
Tag of the MediaAsset.

GetMediaAssetsMediaAssetCollectionItemMetadata

Metadata This property is required. string
JSON string containing the technial metadata for the media asset.
Metadata This property is required. string
JSON string containing the technial metadata for the media asset.
metadata This property is required. String
JSON string containing the technial metadata for the media asset.
metadata This property is required. string
JSON string containing the technial metadata for the media asset.
metadata This property is required. str
JSON string containing the technial metadata for the media asset.
metadata This property is required. String
JSON string containing the technial metadata for the media asset.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi