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 Oci Cache Default Config Sets in Oracle Cloud Infrastructure Redis service. * * Lists the Oracle Cloud Infrastructure Cache Default Config Sets in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOciCacheDefaultConfigSets = oci.redis.getOciCacheDefaultConfigSets({ * compartmentId: compartmentId, * displayName: ociCacheDefaultConfigSetDisplayName, * id: ociCacheDefaultConfigSetId, * softwareVersion: ociCacheDefaultConfigSetSoftwareVersion, * state: ociCacheDefaultConfigSetState, * }); * ``` */ export declare function getOciCacheDefaultConfigSets(args: GetOciCacheDefaultConfigSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOciCacheDefaultConfigSets. */ export interface GetOciCacheDefaultConfigSetsArgs { /** * The unique identifier for the compartment. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.Redis.GetOciCacheDefaultConfigSetsFilter[]; /** * Unique Oracle Cloud Infrastructure Cache Default Config Set identifier. */ id?: string; /** * A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version. */ softwareVersion?: string; /** * A filter to return the Oracle Cloud Infrastructure Cache Default Config Set resources, whose lifecycle state matches with the given lifecycle state. */ state?: string; } /** * A collection of values returned by getOciCacheDefaultConfigSets. */ export interface GetOciCacheDefaultConfigSetsResult { readonly compartmentId: string; /** * A user-friendly name of the Oracle Cloud Infrastructure Cache Default Config Set. */ readonly displayName?: string; readonly filters?: outputs.Redis.GetOciCacheDefaultConfigSetsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Oracle Cloud Infrastructure Cache Default Config Set. */ readonly id?: string; /** * The list of oci_cache_default_config_set_collection. */ readonly ociCacheDefaultConfigSetCollections: outputs.Redis.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollection[]; /** * 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; } /** * This data source provides the list of Oci Cache Default Config Sets in Oracle Cloud Infrastructure Redis service. * * Lists the Oracle Cloud Infrastructure Cache Default Config Sets in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOciCacheDefaultConfigSets = oci.redis.getOciCacheDefaultConfigSets({ * compartmentId: compartmentId, * displayName: ociCacheDefaultConfigSetDisplayName, * id: ociCacheDefaultConfigSetId, * softwareVersion: ociCacheDefaultConfigSetSoftwareVersion, * state: ociCacheDefaultConfigSetState, * }); * ``` */ export declare function getOciCacheDefaultConfigSetsOutput(args: GetOciCacheDefaultConfigSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOciCacheDefaultConfigSets. */ export interface GetOciCacheDefaultConfigSetsOutputArgs { /** * The unique identifier for the compartment. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Oracle Cloud Infrastructure Cache Default Config Set identifier. */ id?: pulumi.Input; /** * A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version. */ softwareVersion?: pulumi.Input; /** * A filter to return the Oracle Cloud Infrastructure Cache Default Config Set resources, whose lifecycle state matches with the given lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getOciCacheDefaultConfigSets.d.ts.map