1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Redis
  5. getOciCacheConfigSets
Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi

oci.Redis.getOciCacheConfigSets

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi

    This data source provides the list of Oci Cache Config Sets in Oracle Cloud Infrastructure Redis service.

    Lists the Oracle Cloud Infrastructure Cache Config Sets in the specified compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOciCacheConfigSets = oci.Redis.getOciCacheConfigSets({
        compartmentId: compartmentId,
        displayName: ociCacheConfigSetDisplayName,
        id: ociCacheConfigSetId,
        softwareVersion: ociCacheConfigSetSoftwareVersion,
        state: ociCacheConfigSetState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oci_cache_config_sets = oci.Redis.get_oci_cache_config_sets(compartment_id=compartment_id,
        display_name=oci_cache_config_set_display_name,
        id=oci_cache_config_set_id,
        software_version=oci_cache_config_set_software_version,
        state=oci_cache_config_set_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/redis"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := redis.GetOciCacheConfigSets(ctx, &redis.GetOciCacheConfigSetsArgs{
    			CompartmentId:   pulumi.StringRef(compartmentId),
    			DisplayName:     pulumi.StringRef(ociCacheConfigSetDisplayName),
    			Id:              pulumi.StringRef(ociCacheConfigSetId),
    			SoftwareVersion: pulumi.StringRef(ociCacheConfigSetSoftwareVersion),
    			State:           pulumi.StringRef(ociCacheConfigSetState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testOciCacheConfigSets = Oci.Redis.GetOciCacheConfigSets.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = ociCacheConfigSetDisplayName,
            Id = ociCacheConfigSetId,
            SoftwareVersion = ociCacheConfigSetSoftwareVersion,
            State = ociCacheConfigSetState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Redis.RedisFunctions;
    import com.pulumi.oci.Redis.inputs.GetOciCacheConfigSetsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testOciCacheConfigSets = RedisFunctions.getOciCacheConfigSets(GetOciCacheConfigSetsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(ociCacheConfigSetDisplayName)
                .id(ociCacheConfigSetId)
                .softwareVersion(ociCacheConfigSetSoftwareVersion)
                .state(ociCacheConfigSetState)
                .build());
    
        }
    }
    
    variables:
      testOciCacheConfigSets:
        fn::invoke:
          function: oci:Redis:getOciCacheConfigSets
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${ociCacheConfigSetDisplayName}
            id: ${ociCacheConfigSetId}
            softwareVersion: ${ociCacheConfigSetSoftwareVersion}
            state: ${ociCacheConfigSetState}
    

    Using getOciCacheConfigSets

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getOciCacheConfigSets(args: GetOciCacheConfigSetsArgs, opts?: InvokeOptions): Promise<GetOciCacheConfigSetsResult>
    function getOciCacheConfigSetsOutput(args: GetOciCacheConfigSetsOutputArgs, opts?: InvokeOptions): Output<GetOciCacheConfigSetsResult>
    def get_oci_cache_config_sets(compartment_id: Optional[str] = None,
                                  display_name: Optional[str] = None,
                                  filters: Optional[Sequence[GetOciCacheConfigSetsFilter]] = None,
                                  id: Optional[str] = None,
                                  software_version: Optional[str] = None,
                                  state: Optional[str] = None,
                                  opts: Optional[InvokeOptions] = None) -> GetOciCacheConfigSetsResult
    def get_oci_cache_config_sets_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                  display_name: Optional[pulumi.Input[str]] = None,
                                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetOciCacheConfigSetsFilterArgs]]]] = None,
                                  id: Optional[pulumi.Input[str]] = None,
                                  software_version: Optional[pulumi.Input[str]] = None,
                                  state: Optional[pulumi.Input[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[GetOciCacheConfigSetsResult]
    func GetOciCacheConfigSets(ctx *Context, args *GetOciCacheConfigSetsArgs, opts ...InvokeOption) (*GetOciCacheConfigSetsResult, error)
    func GetOciCacheConfigSetsOutput(ctx *Context, args *GetOciCacheConfigSetsOutputArgs, opts ...InvokeOption) GetOciCacheConfigSetsResultOutput

    > Note: This function is named GetOciCacheConfigSets in the Go SDK.

    public static class GetOciCacheConfigSets 
    {
        public static Task<GetOciCacheConfigSetsResult> InvokeAsync(GetOciCacheConfigSetsArgs args, InvokeOptions? opts = null)
        public static Output<GetOciCacheConfigSetsResult> Invoke(GetOciCacheConfigSetsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOciCacheConfigSetsResult> getOciCacheConfigSets(GetOciCacheConfigSetsArgs args, InvokeOptions options)
    public static Output<GetOciCacheConfigSetsResult> getOciCacheConfigSets(GetOciCacheConfigSetsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Redis/getOciCacheConfigSets:getOciCacheConfigSets
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetOciCacheConfigSetsFilter>
    Id string
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    SoftwareVersion string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetOciCacheConfigSetsFilter
    Id string
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    SoftwareVersion string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetOciCacheConfigSetsFilter>
    id String
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    softwareVersion String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetOciCacheConfigSetsFilter[]
    id string
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    softwareVersion string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    compartment_id str
    The ID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetOciCacheConfigSetsFilter]
    id str
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    software_version str
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state str
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    id String
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    softwareVersion String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.

    getOciCacheConfigSets Result

    The following output properties are available:

    OciCacheConfigSetCollections List<GetOciCacheConfigSetsOciCacheConfigSetCollection>
    The list of oci_cache_config_set_collection.
    CompartmentId string
    The OCID of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetOciCacheConfigSetsFilter>
    Id string
    The OCID of the Oracle Cloud Infrastructure Cache Config Set.
    SoftwareVersion string
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    State string
    The current state of the Oracle Cloud Infrastructure Cache Config Set.
    OciCacheConfigSetCollections []GetOciCacheConfigSetsOciCacheConfigSetCollection
    The list of oci_cache_config_set_collection.
    CompartmentId string
    The OCID of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetOciCacheConfigSetsFilter
    Id string
    The OCID of the Oracle Cloud Infrastructure Cache Config Set.
    SoftwareVersion string
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    State string
    The current state of the Oracle Cloud Infrastructure Cache Config Set.
    ociCacheConfigSetCollections List<GetOciCacheConfigSetsOciCacheConfigSetCollection>
    The list of oci_cache_config_set_collection.
    compartmentId String
    The OCID of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetOciCacheConfigSetsFilter>
    id String
    The OCID of the Oracle Cloud Infrastructure Cache Config Set.
    softwareVersion String
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    state String
    The current state of the Oracle Cloud Infrastructure Cache Config Set.
    ociCacheConfigSetCollections GetOciCacheConfigSetsOciCacheConfigSetCollection[]
    The list of oci_cache_config_set_collection.
    compartmentId string
    The OCID of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetOciCacheConfigSetsFilter[]
    id string
    The OCID of the Oracle Cloud Infrastructure Cache Config Set.
    softwareVersion string
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    state string
    The current state of the Oracle Cloud Infrastructure Cache Config Set.
    oci_cache_config_set_collections Sequence[GetOciCacheConfigSetsOciCacheConfigSetCollection]
    The list of oci_cache_config_set_collection.
    compartment_id str
    The OCID of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[GetOciCacheConfigSetsFilter]
    id str
    The OCID of the Oracle Cloud Infrastructure Cache Config Set.
    software_version str
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    state str
    The current state of the Oracle Cloud Infrastructure Cache Config Set.
    ociCacheConfigSetCollections List<Property Map>
    The list of oci_cache_config_set_collection.
    compartmentId String
    The OCID of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    id String
    The OCID of the Oracle Cloud Infrastructure Cache Config Set.
    softwareVersion String
    The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
    state String
    The current state of the Oracle Cloud Infrastructure Cache Config Set.

    Supporting Types

    GetOciCacheConfigSetsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetOciCacheConfigSetsOciCacheConfigSetCollection

    items List<Property Map>
    List of ConfigurationInfo objects.

    GetOciCacheConfigSetsOciCacheConfigSetCollectionItem

    CompartmentId string
    The ID of the compartment in which to list resources.
    ConfigurationDetails List<GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetail>
    List of Oracle Cloud Infrastructure Cache Config Set Values.
    DefaultConfigSetId string
    The OCID of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A description of the Oracle Cloud Infrastructure Cache Config Set.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags Dictionary<string, string>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    SoftwareVersion string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An RFC3339 formatted datetime string.
    CompartmentId string
    The ID of the compartment in which to list resources.
    ConfigurationDetails []GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetail
    List of Oracle Cloud Infrastructure Cache Config Set Values.
    DefaultConfigSetId string
    The OCID of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A description of the Oracle Cloud Infrastructure Cache Config Set.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags map[string]string
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    SoftwareVersion string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    State string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An RFC3339 formatted datetime string.
    compartmentId String
    The ID of the compartment in which to list resources.
    configurationDetails List<GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetail>
    List of Oracle Cloud Infrastructure Cache Config Set Values.
    defaultConfigSetId String
    The OCID of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A description of the Oracle Cloud Infrastructure Cache Config Set.
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<String,String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    softwareVersion String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An RFC3339 formatted datetime string.
    compartmentId string
    The ID of the compartment in which to list resources.
    configurationDetails GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetail[]
    List of Oracle Cloud Infrastructure Cache Config Set Values.
    defaultConfigSetId string
    The OCID of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    A description of the Oracle Cloud Infrastructure Cache Config Set.
    displayName string
    A filter to return only resources that match the entire display name given.
    freeformTags {[key: string]: string}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    softwareVersion string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state string
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An RFC3339 formatted datetime string.
    compartment_id str
    The ID of the compartment in which to list resources.
    configuration_details Sequence[GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetail]
    List of Oracle Cloud Infrastructure Cache Config Set Values.
    default_config_set_id str
    The OCID of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    A description of the Oracle Cloud Infrastructure Cache Config Set.
    display_name str
    A filter to return only resources that match the entire display name given.
    freeform_tags Mapping[str, str]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    software_version str
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state str
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An RFC3339 formatted datetime string.
    time_updated str
    The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An RFC3339 formatted datetime string.
    compartmentId String
    The ID of the compartment in which to list resources.
    configurationDetails List<Property Map>
    List of Oracle Cloud Infrastructure Cache Config Set Values.
    defaultConfigSetId String
    The OCID of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A description of the Oracle Cloud Infrastructure Cache Config Set.
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique Oracle Cloud Infrastructure Cache Config Set identifier.
    softwareVersion String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
    state String
    A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An RFC3339 formatted datetime string.

    GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetail

    items List<Property Map>
    List of ConfigurationInfo objects.

    GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailItem

    ConfigKey string
    Key is the configuration key.
    ConfigValue string
    Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
    ConfigKey string
    Key is the configuration key.
    ConfigValue string
    Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
    configKey String
    Key is the configuration key.
    configValue String
    Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
    configKey string
    Key is the configuration key.
    configValue string
    Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
    config_key str
    Key is the configuration key.
    config_value str
    Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
    configKey String
    Key is the configuration key.
    configValue String
    Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi