import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Oci Cache Config Setlist Associated Oci Cache Cluster resource in Oracle Cloud Infrastructure Redis service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/redis/latest/OciCacheConfigSetlistAssociatedOciCacheCluster * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/redis * * Gets a list of associated Oracle Cloud Infrastructure Cache clusters for an Oracle Cloud Infrastructure Cache Config Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOciCacheConfigSetlistAssociatedOciCacheCluster = new oci.redis.OciCacheConfigSetlistAssociatedOciCacheCluster("test_oci_cache_config_setlist_associated_oci_cache_cluster", {ociCacheConfigSetId: testOciCacheConfigSet.id}); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class OciCacheConfigSetlistAssociatedOciCacheCluster extends pulumi.CustomResource { /** * Get an existing OciCacheConfigSetlistAssociatedOciCacheCluster resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: OciCacheConfigSetlistAssociatedOciCacheClusterState, opts?: pulumi.CustomResourceOptions): OciCacheConfigSetlistAssociatedOciCacheCluster; /** * Returns true if the given object is an instance of OciCacheConfigSetlistAssociatedOciCacheCluster. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is OciCacheConfigSetlistAssociatedOciCacheCluster; /** * List of clusters with the same Oracle Cloud Infrastructure Cache Config Set ID. */ readonly items: pulumi.Output; /** * Unique Oracle Cloud Infrastructure Cache Config Set identifier. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly ociCacheConfigSetId: pulumi.Output; /** * Create a OciCacheConfigSetlistAssociatedOciCacheCluster resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: OciCacheConfigSetlistAssociatedOciCacheClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OciCacheConfigSetlistAssociatedOciCacheCluster resources. */ export interface OciCacheConfigSetlistAssociatedOciCacheClusterState { /** * List of clusters with the same Oracle Cloud Infrastructure Cache Config Set ID. */ items?: pulumi.Input[] | undefined>; /** * Unique Oracle Cloud Infrastructure Cache Config Set identifier. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ ociCacheConfigSetId?: pulumi.Input; } /** * The set of arguments for constructing a OciCacheConfigSetlistAssociatedOciCacheCluster resource. */ export interface OciCacheConfigSetlistAssociatedOciCacheClusterArgs { /** * Unique Oracle Cloud Infrastructure Cache Config Set identifier. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ ociCacheConfigSetId: pulumi.Input; } //# sourceMappingURL=ociCacheConfigSetlistAssociatedOciCacheCluster.d.ts.map