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 Packaging Configs in Oracle Cloud Infrastructure Media Services service. * * Lists the Stream Packaging Configurations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamPackagingConfigs = oci.mediaservices.getStreamPackagingConfigs({ * distributionChannelId: testChannel.id, * displayName: streamPackagingConfigDisplayName, * state: streamPackagingConfigState, * streamPackagingConfigId: testStreamPackagingConfig.id, * }); * ``` */ export declare function getStreamPackagingConfigs(args: GetStreamPackagingConfigsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamPackagingConfigs. */ export interface GetStreamPackagingConfigsArgs { /** * A filter to return only the resources that match the entire display name given. */ displayName?: string; /** * Unique Stream Distribution Channel identifier. */ distributionChannelId: string; filters?: inputs.MediaServices.GetStreamPackagingConfigsFilter[]; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: string; /** * Unique Stream Packaging Configuration identifier. */ streamPackagingConfigId?: string; } /** * A collection of values returned by getStreamPackagingConfigs. */ export interface GetStreamPackagingConfigsResult { /** * The name of the stream packaging configuration. Avoid entering confidential information. */ readonly displayName?: string; /** * Unique identifier of the Distribution Channel that this stream packaging configuration belongs to. */ readonly distributionChannelId: string; readonly filters?: outputs.MediaServices.GetStreamPackagingConfigsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Packaging Configuration. */ readonly state?: string; /** * The list of stream_packaging_config_collection. */ readonly streamPackagingConfigCollections: outputs.MediaServices.GetStreamPackagingConfigsStreamPackagingConfigCollection[]; readonly streamPackagingConfigId?: string; } /** * This data source provides the list of Stream Packaging Configs in Oracle Cloud Infrastructure Media Services service. * * Lists the Stream Packaging Configurations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamPackagingConfigs = oci.mediaservices.getStreamPackagingConfigs({ * distributionChannelId: testChannel.id, * displayName: streamPackagingConfigDisplayName, * state: streamPackagingConfigState, * streamPackagingConfigId: testStreamPackagingConfig.id, * }); * ``` */ export declare function getStreamPackagingConfigsOutput(args: GetStreamPackagingConfigsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamPackagingConfigs. */ export interface GetStreamPackagingConfigsOutputArgs { /** * A filter to return only the resources that match the entire display name given. */ displayName?: pulumi.Input; /** * Unique Stream Distribution Channel identifier. */ distributionChannelId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: pulumi.Input; /** * Unique Stream Packaging Configuration identifier. */ streamPackagingConfigId?: pulumi.Input; } //# sourceMappingURL=getStreamPackagingConfigs.d.ts.map