@dolbyio/dolbyio-rest-apis-client - v6.0.0
    Preparing search index...

    Interface ListTranscodersSortOptions

    Represents the options to sort the response for listing transcoders.

    interface ListTranscodersSortOptions {
        cluster?: string[];
        isDescending?: boolean;
        itemsOnPage: number;
        page: number;
        sortBy: "CreatedDate";
        status?: TranscoderStatus;
        transcoderName?: string;
    }

    Hierarchy

    • ListSortOptions<"CreatedDate">
      • ListTranscodersSortOptions
    Index

    Properties

    cluster?: string[]

    Returns only Transcoders for the given cluster(s).

    isDescending?: boolean

    Sort by descending order.

    itemsOnPage: number

    Number of items per page. Must be between 1 and 100.

    page: number

    Number of the page to retrieve. Minimum is 1.

    sortBy: "CreatedDate"

    How to sort the response.

    List the transcoders with this status.

    transcoderName?: string

    Returns only Transcoders that match the given string. Will include partial sub-string matches.