import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Stream Cdn Config resource in Oracle Cloud Infrastructure Media Services service. * * Gets a StreamCdnConfig by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamCdnConfig = oci.mediaservices.getStreamCdnConfig({ * streamCdnConfigId: testStreamCdnConfigOciMediaServicesStreamCdnConfig.id, * }); * ``` */ export declare function getStreamCdnConfig(args: GetStreamCdnConfigArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamCdnConfig. */ export interface GetStreamCdnConfigArgs { /** * Unique StreamCdnConfig identifier. */ streamCdnConfigId: string; } /** * A collection of values returned by getStreamCdnConfig. */ export interface GetStreamCdnConfigResult { /** * The compartment ID of the lock. */ readonly compartmentId: string; /** * Base fields of the StreamCdnConfig configuration object. */ readonly configs: outputs.MediaServices.GetStreamCdnConfigConfig[]; /** * 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 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; /** * 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; /** * Whether publishing to CDN is enabled. */ readonly isEnabled: boolean; readonly isLockOverride: boolean; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecyleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.MediaServices.GetStreamCdnConfigLock[]; /** * The current state of the CDN Configuration. */ readonly state: string; readonly streamCdnConfigId: 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 CDN Config was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time when the CDN Config was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Stream Cdn Config resource in Oracle Cloud Infrastructure Media Services service. * * Gets a StreamCdnConfig by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamCdnConfig = oci.mediaservices.getStreamCdnConfig({ * streamCdnConfigId: testStreamCdnConfigOciMediaServicesStreamCdnConfig.id, * }); * ``` */ export declare function getStreamCdnConfigOutput(args: GetStreamCdnConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamCdnConfig. */ export interface GetStreamCdnConfigOutputArgs { /** * Unique StreamCdnConfig identifier. */ streamCdnConfigId: pulumi.Input; } //# sourceMappingURL=getStreamCdnConfig.d.ts.map