import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Stream Packaging Config resource in Oracle Cloud Infrastructure Media Services service. * * Gets a Stream Packaging Configuration by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamPackagingConfig = oci.mediaservices.getStreamPackagingConfig({ * streamPackagingConfigId: testStreamPackagingConfigOciMediaServicesStreamPackagingConfig.id, * }); * ``` */ export declare function getStreamPackagingConfig(args: GetStreamPackagingConfigArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamPackagingConfig. */ export interface GetStreamPackagingConfigArgs { /** * Unique Stream Packaging Configuration path identifier. */ streamPackagingConfigId: string; } /** * A collection of values returned by getStreamPackagingConfig. */ export interface GetStreamPackagingConfigResult { /** * The compartment ID of the lock. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * 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; /** * The encryption used by the stream packaging configuration. */ readonly encryptions: outputs.MediaServices.GetStreamPackagingConfigEncryption[]; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier that is immutable on creation. */ readonly id: string; readonly isLockOverride: boolean; /** * Locks associated with this resource. */ readonly locks: outputs.MediaServices.GetStreamPackagingConfigLock[]; /** * The duration in seconds for each fragment. */ readonly segmentTimeInSeconds: number; /** * The current state of the Packaging Configuration. */ readonly state: string; readonly streamPackagingConfigId: string; /** * The output format for the package. */ readonly streamPackagingFormat: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time when the Packaging Configuration was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time when the Packaging Configuration was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Stream Packaging Config resource in Oracle Cloud Infrastructure Media Services service. * * Gets a Stream Packaging Configuration by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamPackagingConfig = oci.mediaservices.getStreamPackagingConfig({ * streamPackagingConfigId: testStreamPackagingConfigOciMediaServicesStreamPackagingConfig.id, * }); * ``` */ export declare function getStreamPackagingConfigOutput(args: GetStreamPackagingConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamPackagingConfig. */ export interface GetStreamPackagingConfigOutputArgs { /** * Unique Stream Packaging Configuration path identifier. */ streamPackagingConfigId: pulumi.Input; } //# sourceMappingURL=getStreamPackagingConfig.d.ts.map