import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Oci Cache Default Config Set resource in Oracle Cloud Infrastructure Redis service. * * Retrieves the specified Oracle Cloud Infrastructure Cache Default Config Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOciCacheDefaultConfigSet = oci.redis.getOciCacheDefaultConfigSet({ * compartmentId: compartmentId, * ociCacheDefaultConfigSetId: testOciCacheDefaultConfigSetOciRedisOciCacheDefaultConfigSet.id, * }); * ``` */ export declare function getOciCacheDefaultConfigSet(args: GetOciCacheDefaultConfigSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOciCacheDefaultConfigSet. */ export interface GetOciCacheDefaultConfigSetArgs { /** * The unique identifier for the compartment. */ compartmentId: string; /** * Unique Oracle Cloud Infrastructure Cache Default Config Set identifier. */ ociCacheDefaultConfigSetId: string; } /** * A collection of values returned by getOciCacheDefaultConfigSet. */ export interface GetOciCacheDefaultConfigSetResult { readonly compartmentId: string; /** * List of Oracle Cloud Infrastructure Cache Default Config Set Values. */ readonly defaultConfigurationDetails: outputs.Redis.GetOciCacheDefaultConfigSetDefaultConfigurationDetail[]; /** * Description of the Oracle Cloud Infrastructure Cache Default Config Set. */ readonly description: string; /** * A user-friendly name of the Oracle Cloud Infrastructure Cache Default Config Set. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ociCacheDefaultConfigSetId: string; /** * The engine version of the Oracle Cloud Infrastructure Cache Default Config Set. */ readonly softwareVersion: string; /** * The current state of the Oracle Cloud Infrastructure Cache Default Config Set. */ readonly state: string; /** * The date and time the Oracle Cloud Infrastructure Cache Default Config Set was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string. */ readonly timeCreated: string; } /** * This data source provides details about a specific Oci Cache Default Config Set resource in Oracle Cloud Infrastructure Redis service. * * Retrieves the specified Oracle Cloud Infrastructure Cache Default Config Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOciCacheDefaultConfigSet = oci.redis.getOciCacheDefaultConfigSet({ * compartmentId: compartmentId, * ociCacheDefaultConfigSetId: testOciCacheDefaultConfigSetOciRedisOciCacheDefaultConfigSet.id, * }); * ``` */ export declare function getOciCacheDefaultConfigSetOutput(args: GetOciCacheDefaultConfigSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOciCacheDefaultConfigSet. */ export interface GetOciCacheDefaultConfigSetOutputArgs { /** * The unique identifier for the compartment. */ compartmentId: pulumi.Input; /** * Unique Oracle Cloud Infrastructure Cache Default Config Set identifier. */ ociCacheDefaultConfigSetId: pulumi.Input; } //# sourceMappingURL=getOciCacheDefaultConfigSet.d.ts.map