Show / Hide Table of Contents

Class ListMediaAssetsRequest

Inheritance
object
ListMediaAssetsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MediaservicesService.Requests
Assembly: OCI.DotNetSDK.Mediaservices.dll
Syntax
public class ListMediaAssetsRequest : IOciRequest
Examples

Click here to see an example of how to use ListMediaAssets request.

Properties

BucketName

Declaration
[HttpConverter(TargetEnum.Query, "bucketName")]
public string BucketName { get; set; }
Property Value
Type Description
string

Filter MediaAsset by the bucket where the object is stored.

CompartmentId

Declaration
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The ID of the compartment in which to list resources.

DisplayName

Declaration
[HttpConverter(TargetEnum.Query, "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A filter to return only the resources that match the entire display name given.

DistributionChannelId

Declaration
[HttpConverter(TargetEnum.Query, "distributionChannelId")]
public string DistributionChannelId { get; set; }
Property Value
Type Description
string

Unique DistributionChannel identifier.

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public LifecycleState? LifecycleState { get; set; }
Property Value
Type Description
LifecycleState?

A filter to return only the resources with lifecycleState matching the given lifecycleState.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return.

MasterMediaAssetId

Declaration
[HttpConverter(TargetEnum.Query, "masterMediaAssetId")]
public string MasterMediaAssetId { get; set; }
Property Value
Type Description
string

Unique MediaAsset identifier of the first asset upload.

MediaWorkflowJobId

Declaration
[HttpConverter(TargetEnum.Query, "mediaWorkflowJobId")]
public string MediaWorkflowJobId { get; set; }
Property Value
Type Description
string

The ID of the MediaWorkflowJob used to produce this asset, if this parameter is supplied then the workflow ID must also be supplied.

ObjectName

Declaration
[HttpConverter(TargetEnum.Query, "objectName")]
public string ObjectName { get; set; }
Property Value
Type Description
string

Filter MediaAsset by the name of the object in object storage.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

A token representing the position at which to start retrieving results. This must come from the opc-next-page header field of a previous response.

ParentMediaAssetId

Declaration
[HttpConverter(TargetEnum.Query, "parentMediaAssetId")]
public string ParentMediaAssetId { get; set; }
Property Value
Type Description
string

Unique MediaAsset identifier of the asset from which this asset is derived.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public MediaAssetSortBy? SortBy { get; set; }
Property Value
Type Description
MediaAssetSortBy?

The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for displayName is ascending.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public SortOrder? SortOrder { get; set; }
Property Value
Type Description
SortOrder?

The sort order to use, either 'ASC' or 'DESC'.

SourceMediaWorkflowId

Declaration
[HttpConverter(TargetEnum.Query, "sourceMediaWorkflowId")]
public string SourceMediaWorkflowId { get; set; }
Property Value
Type Description
string

The ID of the MediaWorkflow used to produce this asset.

SourceMediaWorkflowVersion

Declaration
[HttpConverter(TargetEnum.Query, "sourceMediaWorkflowVersion")]
public long? SourceMediaWorkflowVersion { get; set; }
Property Value
Type Description
long?

The version of the MediaWorkflow used to produce this asset.

Type

Declaration
[HttpConverter(TargetEnum.Query, "type")]
public AssetType? Type { get; set; }
Property Value
Type Description
AssetType?

Filter MediaAsset by the asset type.

Implements

IOciRequest
In this article
Back to top