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

oci.MediaServices.getMediaAssets

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 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: _var.media_asset_bucket,
        compartmentId: _var.compartment_id,
        displayName: _var.media_asset_display_name,
        distributionChannelId: oci_mysql_channel.test_channel.id,
        masterMediaAssetId: oci_media_services_media_asset.test_media_asset.id,
        mediaWorkflowJobId: oci_media_services_media_workflow_job.test_media_workflow_job.id,
        object: _var.media_asset_object,
        parentMediaAssetId: oci_media_services_media_asset.test_media_asset.id,
        sourceMediaWorkflowId: oci_media_services_media_workflow.test_media_workflow.id,
        sourceMediaWorkflowVersion: _var.media_asset_source_media_workflow_version,
        state: _var.media_asset_state,
        type: _var.media_asset_type,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_media_assets = oci.MediaServices.get_media_assets(bucket=var["media_asset_bucket"],
        compartment_id=var["compartment_id"],
        display_name=var["media_asset_display_name"],
        distribution_channel_id=oci_mysql_channel["test_channel"]["id"],
        master_media_asset_id=oci_media_services_media_asset["test_media_asset"]["id"],
        media_workflow_job_id=oci_media_services_media_workflow_job["test_media_workflow_job"]["id"],
        object=var["media_asset_object"],
        parent_media_asset_id=oci_media_services_media_asset["test_media_asset"]["id"],
        source_media_workflow_id=oci_media_services_media_workflow["test_media_workflow"]["id"],
        source_media_workflow_version=var["media_asset_source_media_workflow_version"],
        state=var["media_asset_state"],
        type=var["media_asset_type"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/MediaServices"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := MediaServices.GetMediaAssets(ctx, &mediaservices.GetMediaAssetsArgs{
    			Bucket:                     pulumi.StringRef(_var.Media_asset_bucket),
    			CompartmentId:              pulumi.StringRef(_var.Compartment_id),
    			DisplayName:                pulumi.StringRef(_var.Media_asset_display_name),
    			DistributionChannelId:      pulumi.StringRef(oci_mysql_channel.Test_channel.Id),
    			MasterMediaAssetId:         pulumi.StringRef(oci_media_services_media_asset.Test_media_asset.Id),
    			MediaWorkflowJobId:         pulumi.StringRef(oci_media_services_media_workflow_job.Test_media_workflow_job.Id),
    			Object:                     pulumi.StringRef(_var.Media_asset_object),
    			ParentMediaAssetId:         pulumi.StringRef(oci_media_services_media_asset.Test_media_asset.Id),
    			SourceMediaWorkflowId:      pulumi.StringRef(oci_media_services_media_workflow.Test_media_workflow.Id),
    			SourceMediaWorkflowVersion: pulumi.StringRef(_var.Media_asset_source_media_workflow_version),
    			State:                      pulumi.StringRef(_var.Media_asset_state),
    			Type:                       pulumi.StringRef(_var.Media_asset_type),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testMediaAssets = Oci.MediaServices.GetMediaAssets.Invoke(new()
        {
            Bucket = @var.Media_asset_bucket,
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Media_asset_display_name,
            DistributionChannelId = oci_mysql_channel.Test_channel.Id,
            MasterMediaAssetId = oci_media_services_media_asset.Test_media_asset.Id,
            MediaWorkflowJobId = oci_media_services_media_workflow_job.Test_media_workflow_job.Id,
            Object = @var.Media_asset_object,
            ParentMediaAssetId = oci_media_services_media_asset.Test_media_asset.Id,
            SourceMediaWorkflowId = oci_media_services_media_workflow.Test_media_workflow.Id,
            SourceMediaWorkflowVersion = @var.Media_asset_source_media_workflow_version,
            State = @var.Media_asset_state,
            Type = @var.Media_asset_type,
        });
    
    });
    
    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(var_.media_asset_bucket())
                .compartmentId(var_.compartment_id())
                .displayName(var_.media_asset_display_name())
                .distributionChannelId(oci_mysql_channel.test_channel().id())
                .masterMediaAssetId(oci_media_services_media_asset.test_media_asset().id())
                .mediaWorkflowJobId(oci_media_services_media_workflow_job.test_media_workflow_job().id())
                .object(var_.media_asset_object())
                .parentMediaAssetId(oci_media_services_media_asset.test_media_asset().id())
                .sourceMediaWorkflowId(oci_media_services_media_workflow.test_media_workflow().id())
                .sourceMediaWorkflowVersion(var_.media_asset_source_media_workflow_version())
                .state(var_.media_asset_state())
                .type(var_.media_asset_type())
                .build());
    
        }
    }
    
    variables:
      testMediaAssets:
        fn::invoke:
          Function: oci:MediaServices:getMediaAssets
          Arguments:
            bucket: ${var.media_asset_bucket}
            compartmentId: ${var.compartment_id}
            displayName: ${var.media_asset_display_name}
            distributionChannelId: ${oci_mysql_channel.test_channel.id}
            masterMediaAssetId: ${oci_media_services_media_asset.test_media_asset.id}
            mediaWorkflowJobId: ${oci_media_services_media_workflow_job.test_media_workflow_job.id}
            object: ${var.media_asset_object}
            parentMediaAssetId: ${oci_media_services_media_asset.test_media_asset.id}
            sourceMediaWorkflowId: ${oci_media_services_media_workflow.test_media_workflow.id}
            sourceMediaWorkflowVersion: ${var.media_asset_source_media_workflow_version}
            state: ${var.media_asset_state}
            type: ${var.media_asset_type}
    

    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>
    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]
    func GetMediaAssets(ctx *Context, args *GetMediaAssetsArgs, opts ...InvokeOption) (*GetMediaAssetsResult, error)
    func GetMediaAssetsOutput(ctx *Context, args *GetMediaAssetsOutputArgs, opts ...InvokeOption) GetMediaAssetsResultOutput

    > 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)
    }
    public static CompletableFuture<GetMediaAssetsResult> getMediaAssets(GetMediaAssetsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:MediaServices/getMediaAssets:getMediaAssets
      arguments:
        # arguments dictionary

    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 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 []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 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 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 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 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 string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetMediaAssetsMediaAssetCollection

    GetMediaAssetsMediaAssetCollectionItem

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

    GetMediaAssetsMediaAssetCollectionItemLock

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

    GetMediaAssetsMediaAssetCollectionItemMediaAssetTag

    Type string
    Filter MediaAsset by the asset type.
    Value string
    Tag of the MediaAsset.
    Type string
    Filter MediaAsset by the asset type.
    Value string
    Tag of the MediaAsset.
    type String
    Filter MediaAsset by the asset type.
    value String
    Tag of the MediaAsset.
    type string
    Filter MediaAsset by the asset type.
    value string
    Tag of the MediaAsset.
    type str
    Filter MediaAsset by the asset type.
    value str
    Tag of the MediaAsset.
    type String
    Filter MediaAsset by the asset type.
    value String
    Tag of the MediaAsset.

    GetMediaAssetsMediaAssetCollectionItemMetadata

    Metadata string
    JSON string containing the technial metadata for the media asset.
    Metadata string
    JSON string containing the technial metadata for the media asset.
    metadata String
    JSON string containing the technial metadata for the media asset.
    metadata string
    JSON string containing the technial metadata for the media asset.
    metadata str
    JSON string containing the technial metadata for the media asset.
    metadata 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.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi