Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi
oci.MediaServices.getMediaAssets
Explore with Pulumi AI
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,
});
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)
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
})
}
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,
});
});
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());
}
}
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}
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)
public static Output<GetMediaAssetsResult> getMediaAssets(GetMediaAssetsArgs args, InvokeOptions options)
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.
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only the resources that match the entire display name given.
- Distribution
Channel stringId - Unique DistributionChannel identifier.
- Filters
Changes to this property will trigger replacement.
Media Assets Filter> - Master
Media stringAsset Id - Unique MediaAsset identifier of the first asset upload.
- Media
Workflow stringJob Id - 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.
- Parent
Media stringAsset Id - Unique MediaAsset identifier of the asset from which this asset is derived.
- Source
Media stringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- Source
Media stringWorkflow Version - 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.
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only the resources that match the entire display name given.
- Distribution
Channel stringId - Unique DistributionChannel identifier.
- Filters
Changes to this property will trigger replacement.
Media Assets Filter - Master
Media stringAsset Id - Unique MediaAsset identifier of the first asset upload.
- Media
Workflow stringJob Id - 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.
- Parent
Media stringAsset Id - Unique MediaAsset identifier of the asset from which this asset is derived.
- Source
Media stringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- Source
Media stringWorkflow Version - 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.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only the resources that match the entire display name given.
- distribution
Channel StringId - Unique DistributionChannel identifier.
- filters
Changes to this property will trigger replacement.
Media Assets Filter> - master
Media StringAsset Id - Unique MediaAsset identifier of the first asset upload.
- media
Workflow StringJob Id - 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.
- parent
Media StringAsset Id - Unique MediaAsset identifier of the asset from which this asset is derived.
- source
Media StringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- source
Media StringWorkflow Version - 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.
- compartment
Id string - The ID of the compartment in which to list resources.
- display
Name string - A filter to return only the resources that match the entire display name given.
- distribution
Channel stringId - Unique DistributionChannel identifier.
- filters
Changes to this property will trigger replacement.
Media Assets Filter[] - master
Media stringAsset Id - Unique MediaAsset identifier of the first asset upload.
- media
Workflow stringJob Id - 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.
- parent
Media stringAsset Id - Unique MediaAsset identifier of the asset from which this asset is derived.
- source
Media stringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- source
Media stringWorkflow Version - 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_ strid - Unique DistributionChannel identifier.
- filters
Changes to this property will trigger replacement.
Get Media Assets Filter] - master_
media_ strasset_ id - Unique MediaAsset identifier of the first asset upload.
- media_
workflow_ strjob_ id - 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_ strasset_ id - Unique MediaAsset identifier of the asset from which this asset is derived.
- source_
media_ strworkflow_ id - The ID of the MediaWorkflow used to produce this asset.
- source_
media_ strworkflow_ version - 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.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only the resources that match the entire display name given.
- distribution
Channel StringId - Unique DistributionChannel identifier.
- filters
Changes to this property will trigger replacement.
- master
Media StringAsset Id - Unique MediaAsset identifier of the first asset upload.
- media
Workflow StringJob Id - 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.
- parent
Media StringAsset Id - Unique MediaAsset identifier of the asset from which this asset is derived.
- source
Media StringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- source
Media StringWorkflow Version - 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.
- Media
Asset List<GetCollections Media Assets Media Asset Collection> - The list of media_asset_collection.
- Bucket string
- The name of the object storage bucket where this represented asset is located.
- Compartment
Id string - The compartment ID of the lock.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Distribution
Channel stringId - Filters
List<Get
Media Assets Filter> - Master
Media stringAsset Id - The ID of the senior most asset from which this asset is derived.
- Media
Workflow stringJob Id - The ID of the MediaWorkflowJob used to produce this asset.
- Object string
- The object storage object name that identifies this asset.
- Parent
Media stringAsset Id - The ID of the parent asset from which this asset is derived.
- Source
Media stringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- Source
Media stringWorkflow Version - 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.
- Media
Asset []GetCollections Media Assets Media Asset Collection - The list of media_asset_collection.
- Bucket string
- The name of the object storage bucket where this represented asset is located.
- Compartment
Id string - The compartment ID of the lock.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Distribution
Channel stringId - Filters
[]Get
Media Assets Filter - Master
Media stringAsset Id - The ID of the senior most asset from which this asset is derived.
- Media
Workflow stringJob Id - The ID of the MediaWorkflowJob used to produce this asset.
- Object string
- The object storage object name that identifies this asset.
- Parent
Media stringAsset Id - The ID of the parent asset from which this asset is derived.
- Source
Media stringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- Source
Media stringWorkflow Version - 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.
- media
Asset List<GetCollections Media Assets Media Asset Collection> - The list of media_asset_collection.
- bucket String
- The name of the object storage bucket where this represented asset is located.
- compartment
Id String - The compartment ID of the lock.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- distribution
Channel StringId - filters
List<Get
Media Assets Filter> - master
Media StringAsset Id - The ID of the senior most asset from which this asset is derived.
- media
Workflow StringJob Id - The ID of the MediaWorkflowJob used to produce this asset.
- object String
- The object storage object name that identifies this asset.
- parent
Media StringAsset Id - The ID of the parent asset from which this asset is derived.
- source
Media StringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- source
Media StringWorkflow Version - 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.
- media
Asset GetCollections Media Assets Media Asset Collection[] - The list of media_asset_collection.
- bucket string
- The name of the object storage bucket where this represented asset is located.
- compartment
Id string - The compartment ID of the lock.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- distribution
Channel stringId - filters
Get
Media Assets Filter[] - master
Media stringAsset Id - The ID of the senior most asset from which this asset is derived.
- media
Workflow stringJob Id - The ID of the MediaWorkflowJob used to produce this asset.
- object string
- The object storage object name that identifies this asset.
- parent
Media stringAsset Id - The ID of the parent asset from which this asset is derived.
- source
Media stringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- source
Media stringWorkflow Version - 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_ Sequence[mediaservices.collections Get Media Assets Media Asset Collection] - 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_ strid - filters
Sequence[mediaservices.
Get Media Assets Filter] - master_
media_ strasset_ id - The ID of the senior most asset from which this asset is derived.
- media_
workflow_ strjob_ id - The ID of the MediaWorkflowJob used to produce this asset.
- object str
- The object storage object name that identifies this asset.
- parent_
media_ strasset_ id - The ID of the parent asset from which this asset is derived.
- source_
media_ strworkflow_ id - The ID of the MediaWorkflow used to produce this asset.
- source_
media_ strworkflow_ version - 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.
- media
Asset List<Property Map>Collections - The list of media_asset_collection.
- bucket String
- The name of the object storage bucket where this represented asset is located.
- compartment
Id String - The compartment ID of the lock.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- distribution
Channel StringId - filters List<Property Map>
- master
Media StringAsset Id - The ID of the senior most asset from which this asset is derived.
- media
Workflow StringJob Id - The ID of the MediaWorkflowJob used to produce this asset.
- object String
- The object storage object name that identifies this asset.
- parent
Media StringAsset Id - The ID of the parent asset from which this asset is derived.
- source
Media StringWorkflow Id - The ID of the MediaWorkflow used to produce this asset.
- source
Media StringWorkflow Version - 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
GetMediaAssetsMediaAssetCollection
- Items
This property is required. List<GetMedia Assets Media Asset Collection Item>
- Items
This property is required. []GetMedia Assets Media Asset Collection Item
- items
This property is required. List<GetMedia Assets Media Asset Collection Item>
- items
This property is required. GetMedia Assets Media Asset Collection Item[]
- items
This property is required. Sequence[mediaservices.Get Media Assets Media Asset Collection Item]
- 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.
- Compartment
Id This property is required. string - The ID of the compartment in which to list resources.
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"}
- Display
Name This property is required. string - A filter to return only the resources that match the entire display name given.
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.
- Is
Lock Override This property is required. bool - Locks
This property is required. List<GetMedia Assets Media Asset Collection Item Lock> - Locks associated with this resource.
- Master
Media Asset Id This property is required. string - Unique MediaAsset identifier of the first asset upload.
This property is required. List<GetMedia Assets Media Asset Collection Item Media Asset Tag> - List of tags for the MediaAsset.
- Media
Workflow Job Id 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<GetMedia Assets Media Asset Collection Item Metadata> - 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.
- Object
Etag This property is required. string - eTag of the underlying object storage object.
- Parent
Media Asset Id This property is required. string - Unique MediaAsset identifier of the asset from which this asset is derived.
- Segment
Range End Index This property is required. string - The end index of video segment files.
- Segment
Range Start Index This property is required. string - The start index for video segment files.
- Source
Media Workflow Id This property is required. string - The ID of the MediaWorkflow used to produce this asset.
- Source
Media Workflow Version 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.
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"}
- Time
Created This property is required. string - The time when the MediaAsset was created. An RFC3339 formatted datetime string.
- Time
Updated 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.
- Compartment
Id This property is required. string - The ID of the compartment in which to list resources.
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"}
- Display
Name This property is required. string - A filter to return only the resources that match the entire display name given.
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.
- Is
Lock Override This property is required. bool - Locks
This property is required. []GetMedia Assets Media Asset Collection Item Lock - Locks associated with this resource.
- Master
Media Asset Id This property is required. string - Unique MediaAsset identifier of the first asset upload.
This property is required. []GetMedia Assets Media Asset Collection Item Media Asset Tag - List of tags for the MediaAsset.
- Media
Workflow Job Id 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. []GetMedia Assets Media Asset Collection Item Metadata - 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.
- Object
Etag This property is required. string - eTag of the underlying object storage object.
- Parent
Media Asset Id This property is required. string - Unique MediaAsset identifier of the asset from which this asset is derived.
- Segment
Range End Index This property is required. string - The end index of video segment files.
- Segment
Range Start Index This property is required. string - The start index for video segment files.
- Source
Media Workflow Id This property is required. string - The ID of the MediaWorkflow used to produce this asset.
- Source
Media Workflow Version 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.
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"}
- Time
Created This property is required. string - The time when the MediaAsset was created. An RFC3339 formatted datetime string.
- Time
Updated 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.
- compartment
Id This property is required. String - The ID of the compartment in which to list resources.
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"}
- display
Name This property is required. String - A filter to return only the resources that match the entire display name given.
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.
- is
Lock Override This property is required. Boolean - locks
This property is required. List<GetMedia Assets Media Asset Collection Item Lock> - Locks associated with this resource.
- master
Media Asset Id This property is required. String - Unique MediaAsset identifier of the first asset upload.
This property is required. List<GetMedia Assets Media Asset Collection Item Media Asset Tag> - List of tags for the MediaAsset.
- media
Workflow Job Id 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<GetMedia Assets Media Asset Collection Item Metadata> - 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.
- object
Etag This property is required. String - eTag of the underlying object storage object.
- parent
Media Asset Id This property is required. String - Unique MediaAsset identifier of the asset from which this asset is derived.
- segment
Range End Index This property is required. String - The end index of video segment files.
- segment
Range Start Index This property is required. String - The start index for video segment files.
- source
Media Workflow Id This property is required. String - The ID of the MediaWorkflow used to produce this asset.
- source
Media Workflow Version 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.
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"}
- time
Created This property is required. String - The time when the MediaAsset was created. An RFC3339 formatted datetime string.
- time
Updated 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.
- compartment
Id This property is required. string - The ID of the compartment in which to list resources.
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"}
- display
Name This property is required. string - A filter to return only the resources that match the entire display name given.
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.
- is
Lock Override This property is required. boolean - locks
This property is required. GetMedia Assets Media Asset Collection Item Lock[] - Locks associated with this resource.
- master
Media Asset Id This property is required. string - Unique MediaAsset identifier of the first asset upload.
This property is required. GetMedia Assets Media Asset Collection Item Media Asset Tag[] - List of tags for the MediaAsset.
- media
Workflow Job Id 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. GetMedia Assets Media Asset Collection Item Metadata[] - 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.
- object
Etag This property is required. string - eTag of the underlying object storage object.
- parent
Media Asset Id This property is required. string - Unique MediaAsset identifier of the asset from which this asset is derived.
- segment
Range End Index This property is required. string - The end index of video segment files.
- segment
Range Start Index This property is required. string - The start index for video segment files.
- source
Media Workflow Id This property is required. string - The ID of the MediaWorkflow used to produce this asset.
- source
Media Workflow Version 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.
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"}
- time
Created This property is required. string - The time when the MediaAsset was created. An RFC3339 formatted datetime string.
- time
Updated 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.
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.
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.Get Media Assets Media Asset Collection Item Lock] - Locks associated with this resource.
- master_
media_ asset_ id This property is required. str - Unique MediaAsset identifier of the first asset upload.
This property is required. Sequence[mediaservices.Get Media Assets Media Asset Collection Item Media Asset Tag] - 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.Get Media Assets Media Asset Collection Item Metadata] - 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.
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.
- compartment
Id This property is required. String - The ID of the compartment in which to list resources.
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"}
- display
Name This property is required. String - A filter to return only the resources that match the entire display name given.
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.
- is
Lock Override This property is required. Boolean - locks
This property is required. List<Property Map> - Locks associated with this resource.
- master
Media Asset Id This property is required. String - Unique MediaAsset identifier of the first asset upload.
This property is required. List<Property Map>- List of tags for the MediaAsset.
- media
Workflow Job Id 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.
- object
Etag This property is required. String - eTag of the underlying object storage object.
- parent
Media Asset Id This property is required. String - Unique MediaAsset identifier of the asset from which this asset is derived.
- segment
Range End Index This property is required. String - The end index of video segment files.
- segment
Range Start Index This property is required. String - The start index for video segment files.
- source
Media Workflow Id This property is required. String - The ID of the MediaWorkflow used to produce this asset.
- source
Media Workflow Version 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.
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"}
- time
Created This property is required. String - The time when the MediaAsset was created. An RFC3339 formatted datetime string.
- time
Updated 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
- Compartment
Id 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.
This property is required. string- 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. 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. 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.
This property is required. string- 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. 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. 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.
This property is required. String- 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. 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. 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.
This property is required. string- 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. 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.
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.
- compartment
Id 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.
This property is required. String- 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. 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
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.