import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Stream Distribution Channels in Oracle Cloud Infrastructure Media Services service. * * Lists the Stream Distribution Channels. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamDistributionChannels = oci.mediaservices.getStreamDistributionChannels({ * compartmentId: compartmentId, * displayName: streamDistributionChannelDisplayName, * id: streamDistributionChannelId, * state: streamDistributionChannelState, * }); * ``` */ export declare function getStreamDistributionChannels(args?: GetStreamDistributionChannelsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamDistributionChannels. */ export interface GetStreamDistributionChannelsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only the resources that match the entire display name given. */ displayName?: string; filters?: inputs.MediaServices.GetStreamDistributionChannelsFilter[]; /** * Unique Stream Distribution Channel identifier. */ id?: string; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: string; } /** * A collection of values returned by getStreamDistributionChannels. */ export interface GetStreamDistributionChannelsResult { /** * The compartment ID of the lock. */ readonly compartmentId?: string; /** * Stream Distribution Channel display name. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.MediaServices.GetStreamDistributionChannelsFilter[]; /** * Unique identifier that is immutable on creation. */ readonly id?: string; /** * The current state of the Stream Distribution Channel. */ readonly state?: string; /** * The list of stream_distribution_channel_collection. */ readonly streamDistributionChannelCollections: outputs.MediaServices.GetStreamDistributionChannelsStreamDistributionChannelCollection[]; } /** * This data source provides the list of Stream Distribution Channels in Oracle Cloud Infrastructure Media Services service. * * Lists the Stream Distribution Channels. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamDistributionChannels = oci.mediaservices.getStreamDistributionChannels({ * compartmentId: compartmentId, * displayName: streamDistributionChannelDisplayName, * id: streamDistributionChannelId, * state: streamDistributionChannelState, * }); * ``` */ export declare function getStreamDistributionChannelsOutput(args?: GetStreamDistributionChannelsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamDistributionChannels. */ export interface GetStreamDistributionChannelsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only the resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Stream Distribution Channel identifier. */ id?: pulumi.Input; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getStreamDistributionChannels.d.ts.map