import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Oci Cache Config Set resource in Oracle Cloud Infrastructure Redis service. * * Retrieves the specified Oracle Cloud Infrastructure Cache Config Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOciCacheConfigSet = oci.redis.getOciCacheConfigSet({ * ociCacheConfigSetId: testOciCacheConfigSetOciRedisOciCacheConfigSet.id, * }); * ``` */ export declare function getOciCacheConfigSet(args: GetOciCacheConfigSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOciCacheConfigSet. */ export interface GetOciCacheConfigSetArgs { /** * Unique Oracle Cloud Infrastructure Cache Config Set identifier. */ ociCacheConfigSetId: string; } /** * A collection of values returned by getOciCacheConfigSet. */ export interface GetOciCacheConfigSetResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set. */ readonly compartmentId: string; /** * List of Oracle Cloud Infrastructure Cache Config Set Values. */ readonly configurationDetails: outputs.Redis.GetOciCacheConfigSetConfigurationDetail[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon. */ readonly defaultConfigSetId: 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; }; /** * A description of the Oracle Cloud Infrastructure Cache Config Set. */ readonly description: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: 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; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Oracle Cloud Infrastructure Cache Config Set. */ readonly id: string; readonly ociCacheConfigSetId: string; /** * The Oracle Cloud Infrastructure Cache engine version that the cluster is running. */ readonly softwareVersion: string; /** * The current state of the Oracle Cloud Infrastructure Cache Config Set. */ readonly state: 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 date and time the Oracle Cloud Infrastructure Cache Config Set was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string. */ readonly timeCreated: string; /** * The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Oci Cache Config Set resource in Oracle Cloud Infrastructure Redis service. * * Retrieves the specified Oracle Cloud Infrastructure Cache Config Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOciCacheConfigSet = oci.redis.getOciCacheConfigSet({ * ociCacheConfigSetId: testOciCacheConfigSetOciRedisOciCacheConfigSet.id, * }); * ``` */ export declare function getOciCacheConfigSetOutput(args: GetOciCacheConfigSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOciCacheConfigSet. */ export interface GetOciCacheConfigSetOutputArgs { /** * Unique Oracle Cloud Infrastructure Cache Config Set identifier. */ ociCacheConfigSetId: pulumi.Input; } //# sourceMappingURL=getOciCacheConfigSet.d.ts.map