Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.Psql.getConfigurations
This data source provides the list of Configurations in Oracle Cloud Infrastructure Psql service.
Returns a list of configurations.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testConfigurations = oci.Psql.getConfigurations({
    compartmentId: compartmentId,
    configType: configurationConfigType,
    configurationId: testConfiguration.id,
    dbVersion: configurationDbVersion,
    displayName: configurationDisplayName,
    instanceMemorySizeInGbs: configurationInstanceMemorySizeInGbs,
    instanceOcpuCount: configurationInstanceOcpuCount,
    shape: configurationShape,
    state: configurationState,
});
import pulumi
import pulumi_oci as oci
test_configurations = oci.Psql.get_configurations(compartment_id=compartment_id,
    config_type=configuration_config_type,
    configuration_id=test_configuration["id"],
    db_version=configuration_db_version,
    display_name=configuration_display_name,
    instance_memory_size_in_gbs=configuration_instance_memory_size_in_gbs,
    instance_ocpu_count=configuration_instance_ocpu_count,
    shape=configuration_shape,
    state=configuration_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/psql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := psql.GetConfigurations(ctx, &psql.GetConfigurationsArgs{
			CompartmentId:           pulumi.StringRef(compartmentId),
			ConfigType:              pulumi.StringRef(configurationConfigType),
			ConfigurationId:         pulumi.StringRef(testConfiguration.Id),
			DbVersion:               pulumi.StringRef(configurationDbVersion),
			DisplayName:             pulumi.StringRef(configurationDisplayName),
			InstanceMemorySizeInGbs: pulumi.IntRef(configurationInstanceMemorySizeInGbs),
			InstanceOcpuCount:       pulumi.IntRef(configurationInstanceOcpuCount),
			Shape:                   pulumi.StringRef(configurationShape),
			State:                   pulumi.StringRef(configurationState),
		}, 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 testConfigurations = Oci.Psql.GetConfigurations.Invoke(new()
    {
        CompartmentId = compartmentId,
        ConfigType = configurationConfigType,
        ConfigurationId = testConfiguration.Id,
        DbVersion = configurationDbVersion,
        DisplayName = configurationDisplayName,
        InstanceMemorySizeInGbs = configurationInstanceMemorySizeInGbs,
        InstanceOcpuCount = configurationInstanceOcpuCount,
        Shape = configurationShape,
        State = configurationState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Psql.PsqlFunctions;
import com.pulumi.oci.Psql.inputs.GetConfigurationsArgs;
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 testConfigurations = PsqlFunctions.getConfigurations(GetConfigurationsArgs.builder()
            .compartmentId(compartmentId)
            .configType(configurationConfigType)
            .configurationId(testConfiguration.id())
            .dbVersion(configurationDbVersion)
            .displayName(configurationDisplayName)
            .instanceMemorySizeInGbs(configurationInstanceMemorySizeInGbs)
            .instanceOcpuCount(configurationInstanceOcpuCount)
            .shape(configurationShape)
            .state(configurationState)
            .build());
    }
}
variables:
  testConfigurations:
    fn::invoke:
      function: oci:Psql:getConfigurations
      arguments:
        compartmentId: ${compartmentId}
        configType: ${configurationConfigType}
        configurationId: ${testConfiguration.id}
        dbVersion: ${configurationDbVersion}
        displayName: ${configurationDisplayName}
        instanceMemorySizeInGbs: ${configurationInstanceMemorySizeInGbs}
        instanceOcpuCount: ${configurationInstanceOcpuCount}
        shape: ${configurationShape}
        state: ${configurationState}
Using getConfigurations
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 getConfigurations(args: GetConfigurationsArgs, opts?: InvokeOptions): Promise<GetConfigurationsResult>
function getConfigurationsOutput(args: GetConfigurationsOutputArgs, opts?: InvokeOptions): Output<GetConfigurationsResult>def get_configurations(compartment_id: Optional[str] = None,
                       config_type: Optional[str] = None,
                       configuration_id: Optional[str] = None,
                       db_version: Optional[str] = None,
                       display_name: Optional[str] = None,
                       filters: Optional[Sequence[GetConfigurationsFilter]] = None,
                       instance_memory_size_in_gbs: Optional[int] = None,
                       instance_ocpu_count: Optional[int] = None,
                       shape: Optional[str] = None,
                       state: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetConfigurationsResult
def get_configurations_output(compartment_id: Optional[pulumi.Input[str]] = None,
                       config_type: Optional[pulumi.Input[str]] = None,
                       configuration_id: Optional[pulumi.Input[str]] = None,
                       db_version: Optional[pulumi.Input[str]] = None,
                       display_name: Optional[pulumi.Input[str]] = None,
                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetConfigurationsFilterArgs]]]] = None,
                       instance_memory_size_in_gbs: Optional[pulumi.Input[int]] = None,
                       instance_ocpu_count: Optional[pulumi.Input[int]] = None,
                       shape: Optional[pulumi.Input[str]] = None,
                       state: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetConfigurationsResult]func GetConfigurations(ctx *Context, args *GetConfigurationsArgs, opts ...InvokeOption) (*GetConfigurationsResult, error)
func GetConfigurationsOutput(ctx *Context, args *GetConfigurationsOutputArgs, opts ...InvokeOption) GetConfigurationsResultOutput> Note: This function is named GetConfigurations in the Go SDK.
public static class GetConfigurations 
{
    public static Task<GetConfigurationsResult> InvokeAsync(GetConfigurationsArgs args, InvokeOptions? opts = null)
    public static Output<GetConfigurationsResult> Invoke(GetConfigurationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetConfigurationsResult> getConfigurations(GetConfigurationsArgs args, InvokeOptions options)
public static Output<GetConfigurationsResult> getConfigurations(GetConfigurationsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Psql/getConfigurations:getConfigurations
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The ID of the compartment in which to list resources.
- ConfigType string
- A filter to return only resources if their configTypematches the givenconfigType.
- ConfigurationId string
- A unique identifier for the configuration.
- DbVersion string
- Version of the PostgreSQL database, such as 14.9.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetConfigurations Filter> 
- InstanceMemory intSize In Gbs 
- The instance memory size in GBs for the configuration.
- InstanceOcpu intCount 
- The instance ocpu count for the configuration.
- Shape string
- The compute name of the shape for the configuration.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- CompartmentId string
- The ID of the compartment in which to list resources.
- ConfigType string
- A filter to return only resources if their configTypematches the givenconfigType.
- ConfigurationId string
- A unique identifier for the configuration.
- DbVersion string
- Version of the PostgreSQL database, such as 14.9.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetConfigurations Filter 
- InstanceMemory intSize In Gbs 
- The instance memory size in GBs for the configuration.
- InstanceOcpu intCount 
- The instance ocpu count for the configuration.
- Shape string
- The compute name of the shape for the configuration.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- compartmentId String
- The ID of the compartment in which to list resources.
- configType String
- A filter to return only resources if their configTypematches the givenconfigType.
- configurationId String
- A unique identifier for the configuration.
- dbVersion String
- Version of the PostgreSQL database, such as 14.9.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetConfigurations Filter> 
- instanceMemory IntegerSize In Gbs 
- The instance memory size in GBs for the configuration.
- instanceOcpu IntegerCount 
- The instance ocpu count for the configuration.
- shape String
- The compute name of the shape for the configuration.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- compartmentId string
- The ID of the compartment in which to list resources.
- configType string
- A filter to return only resources if their configTypematches the givenconfigType.
- configurationId string
- A unique identifier for the configuration.
- dbVersion string
- Version of the PostgreSQL database, such as 14.9.
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetConfigurations Filter[] 
- instanceMemory numberSize In Gbs 
- The instance memory size in GBs for the configuration.
- instanceOcpu numberCount 
- The instance ocpu count for the configuration.
- shape string
- The compute name of the shape for the configuration.
- state string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- compartment_id str
- The ID of the compartment in which to list resources.
- config_type str
- A filter to return only resources if their configTypematches the givenconfigType.
- configuration_id str
- A unique identifier for the configuration.
- db_version str
- Version of the PostgreSQL database, such as 14.9.
- display_name str
- A filter to return only resources that match the entire display name given.
- filters
Sequence[GetConfigurations Filter] 
- instance_memory_ intsize_ in_ gbs 
- The instance memory size in GBs for the configuration.
- instance_ocpu_ intcount 
- The instance ocpu count for the configuration.
- shape str
- The compute name of the shape for the configuration.
- state str
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- compartmentId String
- The ID of the compartment in which to list resources.
- configType String
- A filter to return only resources if their configTypematches the givenconfigType.
- configurationId String
- A unique identifier for the configuration.
- dbVersion String
- Version of the PostgreSQL database, such as 14.9.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- instanceMemory NumberSize In Gbs 
- The instance memory size in GBs for the configuration.
- instanceOcpu NumberCount 
- The instance ocpu count for the configuration.
- shape String
- The compute name of the shape for the configuration.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
getConfigurations Result
The following output properties are available:
- ConfigurationCollections List<GetConfigurations Configuration Collection> 
- The list of configuration_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Shape string
- The name of the shape for the configuration.
- CompartmentId string
- The OCID of the compartment that contains the configuration.
- ConfigType string
- The type of configuration. Either user-created or a default configuration.
- ConfigurationId string
- DbVersion string
- Version of the PostgreSQL database.
- DisplayName string
- A user-friendly display name for the configuration. Avoid entering confidential information.
- Filters
List<GetConfigurations Filter> 
- InstanceMemory intSize In Gbs 
- Memory size in gigabytes with 1GB increment.
- InstanceOcpu intCount 
- CPU core count.
- State string
- The current state of the configuration.
- ConfigurationCollections []GetConfigurations Configuration Collection 
- The list of configuration_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Shape string
- The name of the shape for the configuration.
- CompartmentId string
- The OCID of the compartment that contains the configuration.
- ConfigType string
- The type of configuration. Either user-created or a default configuration.
- ConfigurationId string
- DbVersion string
- Version of the PostgreSQL database.
- DisplayName string
- A user-friendly display name for the configuration. Avoid entering confidential information.
- Filters
[]GetConfigurations Filter 
- InstanceMemory intSize In Gbs 
- Memory size in gigabytes with 1GB increment.
- InstanceOcpu intCount 
- CPU core count.
- State string
- The current state of the configuration.
- configurationCollections List<GetConfigurations Configuration Collection> 
- The list of configuration_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- shape String
- The name of the shape for the configuration.
- compartmentId String
- The OCID of the compartment that contains the configuration.
- configType String
- The type of configuration. Either user-created or a default configuration.
- configurationId String
- dbVersion String
- Version of the PostgreSQL database.
- displayName String
- A user-friendly display name for the configuration. Avoid entering confidential information.
- filters
List<GetConfigurations Filter> 
- instanceMemory IntegerSize In Gbs 
- Memory size in gigabytes with 1GB increment.
- instanceOcpu IntegerCount 
- CPU core count.
- state String
- The current state of the configuration.
- configurationCollections GetConfigurations Configuration Collection[] 
- The list of configuration_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- shape string
- The name of the shape for the configuration.
- compartmentId string
- The OCID of the compartment that contains the configuration.
- configType string
- The type of configuration. Either user-created or a default configuration.
- configurationId string
- dbVersion string
- Version of the PostgreSQL database.
- displayName string
- A user-friendly display name for the configuration. Avoid entering confidential information.
- filters
GetConfigurations Filter[] 
- instanceMemory numberSize In Gbs 
- Memory size in gigabytes with 1GB increment.
- instanceOcpu numberCount 
- CPU core count.
- state string
- The current state of the configuration.
- configuration_collections Sequence[GetConfigurations Configuration Collection] 
- The list of configuration_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- shape str
- The name of the shape for the configuration.
- compartment_id str
- The OCID of the compartment that contains the configuration.
- config_type str
- The type of configuration. Either user-created or a default configuration.
- configuration_id str
- db_version str
- Version of the PostgreSQL database.
- display_name str
- A user-friendly display name for the configuration. Avoid entering confidential information.
- filters
Sequence[GetConfigurations Filter] 
- instance_memory_ intsize_ in_ gbs 
- Memory size in gigabytes with 1GB increment.
- instance_ocpu_ intcount 
- CPU core count.
- state str
- The current state of the configuration.
- configurationCollections List<Property Map>
- The list of configuration_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- shape String
- The name of the shape for the configuration.
- compartmentId String
- The OCID of the compartment that contains the configuration.
- configType String
- The type of configuration. Either user-created or a default configuration.
- configurationId String
- dbVersion String
- Version of the PostgreSQL database.
- displayName String
- A user-friendly display name for the configuration. Avoid entering confidential information.
- filters List<Property Map>
- instanceMemory NumberSize In Gbs 
- Memory size in gigabytes with 1GB increment.
- instanceOcpu NumberCount 
- CPU core count.
- state String
- The current state of the configuration.
Supporting Types
GetConfigurationsConfigurationCollection   
- Items
List<GetConfigurations Configuration Collection Item> 
- List of ConfigParms object.
- Items
[]GetConfigurations Configuration Collection Item 
- List of ConfigParms object.
- items
List<GetConfigurations Configuration Collection Item> 
- List of ConfigParms object.
- items
GetConfigurations Configuration Collection Item[] 
- List of ConfigParms object.
- items
Sequence[GetConfigurations Configuration Collection Item] 
- List of ConfigParms object.
- items List<Property Map>
- List of ConfigParms object.
GetConfigurationsConfigurationCollectionItem    
- CompartmentId string
- The ID of the compartment in which to list resources.
- CompatibleShapes List<string>
- Indicates the collection of compatible shapes for this configuration.
- ConfigType string
- A filter to return only resources if their configTypematches the givenconfigType.
- ConfigurationDetails List<GetConfigurations Configuration Collection Item Configuration Detail> 
- List of configuration details.
- DbConfiguration List<GetOverrides Configurations Configuration Collection Item Db Configuration Override> 
- DbVersion string
- Version of the PostgreSQL database, such as 14.9.
- DefaultConfig stringId 
- The Default configuration used for this configuration.
- 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 for the configuration.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the configuration. Immutable on creation.
- InstanceMemory intSize In Gbs 
- The instance memory size in GBs for the configuration.
- InstanceOcpu intCount 
- The instance ocpu count for the configuration.
- IsFlexible bool
- Whether the configuration supports flexible shapes.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Shape string
- The compute name of the shape for the configuration.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- CompartmentId string
- The ID of the compartment in which to list resources.
- CompatibleShapes []string
- Indicates the collection of compatible shapes for this configuration.
- ConfigType string
- A filter to return only resources if their configTypematches the givenconfigType.
- ConfigurationDetails []GetConfigurations Configuration Collection Item Configuration Detail 
- List of configuration details.
- DbConfiguration []GetOverrides Configurations Configuration Collection Item Db Configuration Override 
- DbVersion string
- Version of the PostgreSQL database, such as 14.9.
- DefaultConfig stringId 
- The Default configuration used for this configuration.
- 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 for the configuration.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the configuration. Immutable on creation.
- InstanceMemory intSize In Gbs 
- The instance memory size in GBs for the configuration.
- InstanceOcpu intCount 
- The instance ocpu count for the configuration.
- IsFlexible bool
- Whether the configuration supports flexible shapes.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Shape string
- The compute name of the shape for the configuration.
- State string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- compartmentId String
- The ID of the compartment in which to list resources.
- compatibleShapes List<String>
- Indicates the collection of compatible shapes for this configuration.
- configType String
- A filter to return only resources if their configTypematches the givenconfigType.
- configurationDetails List<GetConfigurations Configuration Collection Item Configuration Detail> 
- List of configuration details.
- dbConfiguration List<GetOverrides Configurations Configuration Collection Item Db Configuration Override> 
- dbVersion String
- Version of the PostgreSQL database, such as 14.9.
- defaultConfig StringId 
- The Default configuration used for this configuration.
- 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 for the configuration.
- displayName String
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the configuration. Immutable on creation.
- instanceMemory IntegerSize In Gbs 
- The instance memory size in GBs for the configuration.
- instanceOcpu IntegerCount 
- The instance ocpu count for the configuration.
- isFlexible Boolean
- Whether the configuration supports flexible shapes.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- shape String
- The compute name of the shape for the configuration.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- compartmentId string
- The ID of the compartment in which to list resources.
- compatibleShapes string[]
- Indicates the collection of compatible shapes for this configuration.
- configType string
- A filter to return only resources if their configTypematches the givenconfigType.
- configurationDetails GetConfigurations Configuration Collection Item Configuration Detail[] 
- List of configuration details.
- dbConfiguration GetOverrides Configurations Configuration Collection Item Db Configuration Override[] 
- dbVersion string
- Version of the PostgreSQL database, such as 14.9.
- defaultConfig stringId 
- The Default configuration used for this configuration.
- {[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 for the configuration.
- displayName string
- A filter to return only resources that match the entire display name given.
- {[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
- A unique identifier for the configuration. Immutable on creation.
- instanceMemory numberSize In Gbs 
- The instance memory size in GBs for the configuration.
- instanceOcpu numberCount 
- The instance ocpu count for the configuration.
- isFlexible boolean
- Whether the configuration supports flexible shapes.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- shape string
- The compute name of the shape for the configuration.
- state string
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- compartment_id str
- The ID of the compartment in which to list resources.
- compatible_shapes Sequence[str]
- Indicates the collection of compatible shapes for this configuration.
- config_type str
- A filter to return only resources if their configTypematches the givenconfigType.
- configuration_details Sequence[GetConfigurations Configuration Collection Item Configuration Detail] 
- List of configuration details.
- db_configuration_ Sequence[Getoverrides Configurations Configuration Collection Item Db Configuration Override] 
- db_version str
- Version of the PostgreSQL database, such as 14.9.
- default_config_ strid 
- The Default configuration used for this configuration.
- 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 for the configuration.
- display_name str
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the configuration. Immutable on creation.
- instance_memory_ intsize_ in_ gbs 
- The instance memory size in GBs for the configuration.
- instance_ocpu_ intcount 
- The instance ocpu count for the configuration.
- is_flexible bool
- Whether the configuration supports flexible shapes.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- shape str
- The compute name of the shape for the configuration.
- state str
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- compartmentId String
- The ID of the compartment in which to list resources.
- compatibleShapes List<String>
- Indicates the collection of compatible shapes for this configuration.
- configType String
- A filter to return only resources if their configTypematches the givenconfigType.
- configurationDetails List<Property Map>
- List of configuration details.
- dbConfiguration List<Property Map>Overrides 
- dbVersion String
- Version of the PostgreSQL database, such as 14.9.
- defaultConfig StringId 
- The Default configuration used for this configuration.
- 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 for the configuration.
- displayName String
- A filter to return only resources that match the entire display name given.
- 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
- A unique identifier for the configuration. Immutable on creation.
- instanceMemory NumberSize In Gbs 
- The instance memory size in GBs for the configuration.
- instanceOcpu NumberCount 
- The instance ocpu count for the configuration.
- isFlexible Boolean
- Whether the configuration supports flexible shapes.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- shape String
- The compute name of the shape for the configuration.
- state String
- A filter to return only resources if their lifecycleStatematches the givenlifecycleState.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
GetConfigurationsConfigurationCollectionItemConfigurationDetail      
- Items
List<GetConfigurations Configuration Collection Item Configuration Detail Item> 
- List of ConfigParms object.
- Items
[]GetConfigurations Configuration Collection Item Configuration Detail Item 
- List of ConfigParms object.
- items
List<GetConfigurations Configuration Collection Item Configuration Detail Item> 
- List of ConfigParms object.
- items
GetConfigurations Configuration Collection Item Configuration Detail Item[] 
- List of ConfigParms object.
- items
Sequence[GetConfigurations Configuration Collection Item Configuration Detail Item] 
- List of ConfigParms object.
- items List<Property Map>
- List of ConfigParms object.
GetConfigurationsConfigurationCollectionItemConfigurationDetailItem       
- AllowedValues string
- Range or list of allowed values.
- ConfigKey string
- The configuration variable name.
- DataType string
- Data type of the variable.
- DefaultConfig stringValue 
- Default value for the configuration variable.
- Description string
- A description for the configuration.
- IsOverridable bool
- Whether the value can be overridden or not.
- IsRestart boolRequired 
- If true, modifying this configuration value will require a restart of the database.
- OverridenConfig stringValue 
- User-selected configuration variable value.
- AllowedValues string
- Range or list of allowed values.
- ConfigKey string
- The configuration variable name.
- DataType string
- Data type of the variable.
- DefaultConfig stringValue 
- Default value for the configuration variable.
- Description string
- A description for the configuration.
- IsOverridable bool
- Whether the value can be overridden or not.
- IsRestart boolRequired 
- If true, modifying this configuration value will require a restart of the database.
- OverridenConfig stringValue 
- User-selected configuration variable value.
- allowedValues String
- Range or list of allowed values.
- configKey String
- The configuration variable name.
- dataType String
- Data type of the variable.
- defaultConfig StringValue 
- Default value for the configuration variable.
- description String
- A description for the configuration.
- isOverridable Boolean
- Whether the value can be overridden or not.
- isRestart BooleanRequired 
- If true, modifying this configuration value will require a restart of the database.
- overridenConfig StringValue 
- User-selected configuration variable value.
- allowedValues string
- Range or list of allowed values.
- configKey string
- The configuration variable name.
- dataType string
- Data type of the variable.
- defaultConfig stringValue 
- Default value for the configuration variable.
- description string
- A description for the configuration.
- isOverridable boolean
- Whether the value can be overridden or not.
- isRestart booleanRequired 
- If true, modifying this configuration value will require a restart of the database.
- overridenConfig stringValue 
- User-selected configuration variable value.
- allowed_values str
- Range or list of allowed values.
- config_key str
- The configuration variable name.
- data_type str
- Data type of the variable.
- default_config_ strvalue 
- Default value for the configuration variable.
- description str
- A description for the configuration.
- is_overridable bool
- Whether the value can be overridden or not.
- is_restart_ boolrequired 
- If true, modifying this configuration value will require a restart of the database.
- overriden_config_ strvalue 
- User-selected configuration variable value.
- allowedValues String
- Range or list of allowed values.
- configKey String
- The configuration variable name.
- dataType String
- Data type of the variable.
- defaultConfig StringValue 
- Default value for the configuration variable.
- description String
- A description for the configuration.
- isOverridable Boolean
- Whether the value can be overridden or not.
- isRestart BooleanRequired 
- If true, modifying this configuration value will require a restart of the database.
- overridenConfig StringValue 
- User-selected configuration variable value.
GetConfigurationsConfigurationCollectionItemDbConfigurationOverride       
- Items
List<GetConfigurations Configuration Collection Item Db Configuration Override Item> 
- List of ConfigParms object.
- Items
[]GetConfigurations Configuration Collection Item Db Configuration Override Item 
- List of ConfigParms object.
- items
List<GetConfigurations Configuration Collection Item Db Configuration Override Item> 
- List of ConfigParms object.
- items
GetConfigurations Configuration Collection Item Db Configuration Override Item[] 
- List of ConfigParms object.
- items
Sequence[GetConfigurations Configuration Collection Item Db Configuration Override Item] 
- List of ConfigParms object.
- items List<Property Map>
- List of ConfigParms object.
GetConfigurationsConfigurationCollectionItemDbConfigurationOverrideItem        
- ConfigKey string
- The configuration variable name.
- OverridenConfig stringValue 
- User-selected configuration variable value.
- ConfigKey string
- The configuration variable name.
- OverridenConfig stringValue 
- User-selected configuration variable value.
- configKey String
- The configuration variable name.
- overridenConfig StringValue 
- User-selected configuration variable value.
- configKey string
- The configuration variable name.
- overridenConfig stringValue 
- User-selected configuration variable value.
- config_key str
- The configuration variable name.
- overriden_config_ strvalue 
- User-selected configuration variable value.
- configKey String
- The configuration variable name.
- overridenConfig StringValue 
- User-selected configuration variable value.
GetConfigurationsFilter  
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.
