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 Cdn Configs in Oracle Cloud Infrastructure Media Services service. * * Lists the StreamCdnConfig. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamCdnConfigs = oci.mediaservices.getStreamCdnConfigs({ * distributionChannelId: testChannel.id, * displayName: streamCdnConfigDisplayName, * id: streamCdnConfigId, * state: streamCdnConfigState, * }); * ``` */ export declare function getStreamCdnConfigs(args: GetStreamCdnConfigsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamCdnConfigs. */ export interface GetStreamCdnConfigsArgs { /** * A filter to return only the resources that match the entire display name given. */ displayName?: string; /** * The Stream Distribution Channel identifier this CdnConfig belongs to. */ distributionChannelId: string; filters?: inputs.MediaServices.GetStreamCdnConfigsFilter[]; /** * Unique StreamCdnConfig identifier. */ id?: string; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: string; } /** * A collection of values returned by getStreamCdnConfigs. */ export interface GetStreamCdnConfigsResult { /** * The CDN Configuration identifier or display name, which can be renamed and is not necessarily unique. Avoid entering confidential information. */ readonly displayName?: string; /** * Distribution Channel Identifier. */ readonly distributionChannelId: string; readonly filters?: outputs.MediaServices.GetStreamCdnConfigsFilter[]; /** * Unique identifier that is immutable on creation. */ readonly id?: string; /** * The current state of the CDN Configuration. */ readonly state?: string; /** * The list of stream_cdn_config_collection. */ readonly streamCdnConfigCollections: outputs.MediaServices.GetStreamCdnConfigsStreamCdnConfigCollection[]; } /** * This data source provides the list of Stream Cdn Configs in Oracle Cloud Infrastructure Media Services service. * * Lists the StreamCdnConfig. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamCdnConfigs = oci.mediaservices.getStreamCdnConfigs({ * distributionChannelId: testChannel.id, * displayName: streamCdnConfigDisplayName, * id: streamCdnConfigId, * state: streamCdnConfigState, * }); * ``` */ export declare function getStreamCdnConfigsOutput(args: GetStreamCdnConfigsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamCdnConfigs. */ export interface GetStreamCdnConfigsOutputArgs { /** * A filter to return only the resources that match the entire display name given. */ displayName?: pulumi.Input; /** * The Stream Distribution Channel identifier this CdnConfig belongs to. */ distributionChannelId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique StreamCdnConfig identifier. */ id?: pulumi.Input; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getStreamCdnConfigs.d.ts.map