oci.Psql.Configuration
Explore with Pulumi AI
This resource provides the Configuration resource in Oracle Cloud Infrastructure Psql service.
Creates a new configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testConfiguration = new oci.psql.Configuration("test_configuration", {
    compartmentId: compartmentId,
    dbConfigurationOverrides: {
        items: [{
            configKey: configurationDbConfigurationOverridesItemsConfigKey,
            overridenConfigValue: configurationDbConfigurationOverridesItemsOverridenConfigValue,
        }],
    },
    dbVersion: configurationDbVersion,
    displayName: configurationDisplayName,
    shape: configurationShape,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: configurationDescription,
    freeformTags: {
        "bar-key": "value",
    },
    instanceMemorySizeInGbs: configurationInstanceMemorySizeInGbs,
    instanceOcpuCount: configurationInstanceOcpuCount,
    isFlexible: configurationIsFlexible,
    systemTags: configurationSystemTags,
});
import pulumi
import pulumi_oci as oci
test_configuration = oci.psql.Configuration("test_configuration",
    compartment_id=compartment_id,
    db_configuration_overrides={
        "items": [{
            "config_key": configuration_db_configuration_overrides_items_config_key,
            "overriden_config_value": configuration_db_configuration_overrides_items_overriden_config_value,
        }],
    },
    db_version=configuration_db_version,
    display_name=configuration_display_name,
    shape=configuration_shape,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=configuration_description,
    freeform_tags={
        "bar-key": "value",
    },
    instance_memory_size_in_gbs=configuration_instance_memory_size_in_gbs,
    instance_ocpu_count=configuration_instance_ocpu_count,
    is_flexible=configuration_is_flexible,
    system_tags=configuration_system_tags)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/psql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := psql.NewConfiguration(ctx, "test_configuration", &psql.ConfigurationArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DbConfigurationOverrides: &psql.ConfigurationDbConfigurationOverridesArgs{
				Items: psql.ConfigurationDbConfigurationOverridesItemArray{
					&psql.ConfigurationDbConfigurationOverridesItemArgs{
						ConfigKey:            pulumi.Any(configurationDbConfigurationOverridesItemsConfigKey),
						OverridenConfigValue: pulumi.Any(configurationDbConfigurationOverridesItemsOverridenConfigValue),
					},
				},
			},
			DbVersion:   pulumi.Any(configurationDbVersion),
			DisplayName: pulumi.Any(configurationDisplayName),
			Shape:       pulumi.Any(configurationShape),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			Description: pulumi.Any(configurationDescription),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			InstanceMemorySizeInGbs: pulumi.Any(configurationInstanceMemorySizeInGbs),
			InstanceOcpuCount:       pulumi.Any(configurationInstanceOcpuCount),
			IsFlexible:              pulumi.Any(configurationIsFlexible),
			SystemTags:              pulumi.Any(configurationSystemTags),
		})
		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 testConfiguration = new Oci.Psql.Configuration("test_configuration", new()
    {
        CompartmentId = compartmentId,
        DbConfigurationOverrides = new Oci.Psql.Inputs.ConfigurationDbConfigurationOverridesArgs
        {
            Items = new[]
            {
                new Oci.Psql.Inputs.ConfigurationDbConfigurationOverridesItemArgs
                {
                    ConfigKey = configurationDbConfigurationOverridesItemsConfigKey,
                    OverridenConfigValue = configurationDbConfigurationOverridesItemsOverridenConfigValue,
                },
            },
        },
        DbVersion = configurationDbVersion,
        DisplayName = configurationDisplayName,
        Shape = configurationShape,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = configurationDescription,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        InstanceMemorySizeInGbs = configurationInstanceMemorySizeInGbs,
        InstanceOcpuCount = configurationInstanceOcpuCount,
        IsFlexible = configurationIsFlexible,
        SystemTags = configurationSystemTags,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Psql.Configuration;
import com.pulumi.oci.Psql.ConfigurationArgs;
import com.pulumi.oci.Psql.inputs.ConfigurationDbConfigurationOverridesArgs;
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) {
        var testConfiguration = new Configuration("testConfiguration", ConfigurationArgs.builder()
            .compartmentId(compartmentId)
            .dbConfigurationOverrides(ConfigurationDbConfigurationOverridesArgs.builder()
                .items(ConfigurationDbConfigurationOverridesItemArgs.builder()
                    .configKey(configurationDbConfigurationOverridesItemsConfigKey)
                    .overridenConfigValue(configurationDbConfigurationOverridesItemsOverridenConfigValue)
                    .build())
                .build())
            .dbVersion(configurationDbVersion)
            .displayName(configurationDisplayName)
            .shape(configurationShape)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(configurationDescription)
            .freeformTags(Map.of("bar-key", "value"))
            .instanceMemorySizeInGbs(configurationInstanceMemorySizeInGbs)
            .instanceOcpuCount(configurationInstanceOcpuCount)
            .isFlexible(configurationIsFlexible)
            .systemTags(configurationSystemTags)
            .build());
    }
}
resources:
  testConfiguration:
    type: oci:Psql:Configuration
    name: test_configuration
    properties:
      compartmentId: ${compartmentId}
      dbConfigurationOverrides:
        items:
          - configKey: ${configurationDbConfigurationOverridesItemsConfigKey}
            overridenConfigValue: ${configurationDbConfigurationOverridesItemsOverridenConfigValue}
      dbVersion: ${configurationDbVersion}
      displayName: ${configurationDisplayName}
      shape: ${configurationShape}
      definedTags:
        foo-namespace.bar-key: value
      description: ${configurationDescription}
      freeformTags:
        bar-key: value
      instanceMemorySizeInGbs: ${configurationInstanceMemorySizeInGbs}
      instanceOcpuCount: ${configurationInstanceOcpuCount}
      isFlexible: ${configurationIsFlexible}
      systemTags: ${configurationSystemTags}
Create Configuration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Configuration(name: string, args: ConfigurationArgs, opts?: CustomResourceOptions);@overload
def Configuration(resource_name: str,
                  args: ConfigurationArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def Configuration(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  compartment_id: Optional[str] = None,
                  db_configuration_overrides: Optional[ConfigurationDbConfigurationOverridesArgs] = None,
                  db_version: Optional[str] = None,
                  display_name: Optional[str] = None,
                  shape: Optional[str] = None,
                  defined_tags: Optional[Mapping[str, str]] = None,
                  description: Optional[str] = None,
                  freeform_tags: Optional[Mapping[str, str]] = None,
                  instance_memory_size_in_gbs: Optional[int] = None,
                  instance_ocpu_count: Optional[int] = None,
                  is_flexible: Optional[bool] = None,
                  system_tags: Optional[Mapping[str, str]] = None)func NewConfiguration(ctx *Context, name string, args ConfigurationArgs, opts ...ResourceOption) (*Configuration, error)public Configuration(string name, ConfigurationArgs args, CustomResourceOptions? opts = null)
public Configuration(String name, ConfigurationArgs args)
public Configuration(String name, ConfigurationArgs args, CustomResourceOptions options)
type: oci:Psql:Configuration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConfigurationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleconfigurationResourceResourceFromPsqlconfiguration = new Oci.Psql.Configuration("exampleconfigurationResourceResourceFromPsqlconfiguration", new()
{
    CompartmentId = "string",
    DbConfigurationOverrides = new Oci.Psql.Inputs.ConfigurationDbConfigurationOverridesArgs
    {
        Items = new[]
        {
            new Oci.Psql.Inputs.ConfigurationDbConfigurationOverridesItemArgs
            {
                ConfigKey = "string",
                OverridenConfigValue = "string",
            },
        },
    },
    DbVersion = "string",
    DisplayName = "string",
    Shape = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    InstanceMemorySizeInGbs = 0,
    InstanceOcpuCount = 0,
    IsFlexible = false,
    SystemTags = 
    {
        { "string", "string" },
    },
});
example, err := psql.NewConfiguration(ctx, "exampleconfigurationResourceResourceFromPsqlconfiguration", &psql.ConfigurationArgs{
	CompartmentId: pulumi.String("string"),
	DbConfigurationOverrides: &psql.ConfigurationDbConfigurationOverridesArgs{
		Items: psql.ConfigurationDbConfigurationOverridesItemArray{
			&psql.ConfigurationDbConfigurationOverridesItemArgs{
				ConfigKey:            pulumi.String("string"),
				OverridenConfigValue: pulumi.String("string"),
			},
		},
	},
	DbVersion:   pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	Shape:       pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	InstanceMemorySizeInGbs: pulumi.Int(0),
	InstanceOcpuCount:       pulumi.Int(0),
	IsFlexible:              pulumi.Bool(false),
	SystemTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var exampleconfigurationResourceResourceFromPsqlconfiguration = new com.pulumi.oci.Psql.Configuration("exampleconfigurationResourceResourceFromPsqlconfiguration", com.pulumi.oci.Psql.ConfigurationArgs.builder()
    .compartmentId("string")
    .dbConfigurationOverrides(ConfigurationDbConfigurationOverridesArgs.builder()
        .items(ConfigurationDbConfigurationOverridesItemArgs.builder()
            .configKey("string")
            .overridenConfigValue("string")
            .build())
        .build())
    .dbVersion("string")
    .displayName("string")
    .shape("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .instanceMemorySizeInGbs(0)
    .instanceOcpuCount(0)
    .isFlexible(false)
    .systemTags(Map.of("string", "string"))
    .build());
exampleconfiguration_resource_resource_from_psqlconfiguration = oci.psql.Configuration("exampleconfigurationResourceResourceFromPsqlconfiguration",
    compartment_id="string",
    db_configuration_overrides={
        "items": [{
            "config_key": "string",
            "overriden_config_value": "string",
        }],
    },
    db_version="string",
    display_name="string",
    shape="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    freeform_tags={
        "string": "string",
    },
    instance_memory_size_in_gbs=0,
    instance_ocpu_count=0,
    is_flexible=False,
    system_tags={
        "string": "string",
    })
const exampleconfigurationResourceResourceFromPsqlconfiguration = new oci.psql.Configuration("exampleconfigurationResourceResourceFromPsqlconfiguration", {
    compartmentId: "string",
    dbConfigurationOverrides: {
        items: [{
            configKey: "string",
            overridenConfigValue: "string",
        }],
    },
    dbVersion: "string",
    displayName: "string",
    shape: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    freeformTags: {
        string: "string",
    },
    instanceMemorySizeInGbs: 0,
    instanceOcpuCount: 0,
    isFlexible: false,
    systemTags: {
        string: "string",
    },
});
type: oci:Psql:Configuration
properties:
    compartmentId: string
    dbConfigurationOverrides:
        items:
            - configKey: string
              overridenConfigValue: string
    dbVersion: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    instanceMemorySizeInGbs: 0
    instanceOcpuCount: 0
    isFlexible: false
    shape: string
    systemTags:
        string: string
Configuration Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Configuration resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the configuration.
- DbConfiguration ConfigurationOverrides Db Configuration Overrides 
- Configuration overrides for a PostgreSQL instance.
- DbVersion string
- Version of the PostgreSQL database.
- DisplayName string
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- Shape string
- The name of the shape for the configuration. Example: VM.Standard.E4.Flex
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Details about the configuration set.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- InstanceMemory intSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- InstanceOcpu intCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- IsFlexible bool
- Whether the configuration supports flexible shapes.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the configuration.
- DbConfiguration ConfigurationOverrides Db Configuration Overrides Args 
- Configuration overrides for a PostgreSQL instance.
- DbVersion string
- Version of the PostgreSQL database.
- DisplayName string
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- Shape string
- The name of the shape for the configuration. Example: VM.Standard.E4.Flex
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Details about the configuration set.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- InstanceMemory intSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- InstanceOcpu intCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- IsFlexible bool
- Whether the configuration supports flexible shapes.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- compartmentId String
- (Updatable) The OCID of the compartment that contains the configuration.
- dbConfiguration ConfigurationOverrides Db Configuration Overrides 
- Configuration overrides for a PostgreSQL instance.
- dbVersion String
- Version of the PostgreSQL database.
- displayName String
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- shape String
- The name of the shape for the configuration. Example: VM.Standard.E4.Flex
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Details about the configuration set.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instanceMemory IntegerSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instanceOcpu IntegerCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- isFlexible Boolean
- Whether the configuration supports flexible shapes.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- compartmentId string
- (Updatable) The OCID of the compartment that contains the configuration.
- dbConfiguration ConfigurationOverrides Db Configuration Overrides 
- Configuration overrides for a PostgreSQL instance.
- dbVersion string
- Version of the PostgreSQL database.
- displayName string
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- shape string
- The name of the shape for the configuration. Example: VM.Standard.E4.Flex
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Details about the configuration set.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instanceMemory numberSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instanceOcpu numberCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- isFlexible boolean
- Whether the configuration supports flexible shapes.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- compartment_id str
- (Updatable) The OCID of the compartment that contains the configuration.
- db_configuration_ Configurationoverrides Db Configuration Overrides Args 
- Configuration overrides for a PostgreSQL instance.
- db_version str
- Version of the PostgreSQL database.
- display_name str
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- shape str
- The name of the shape for the configuration. Example: VM.Standard.E4.Flex
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Details about the configuration set.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instance_memory_ intsize_ in_ gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instance_ocpu_ intcount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- is_flexible bool
- Whether the configuration supports flexible shapes.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- compartmentId String
- (Updatable) The OCID of the compartment that contains the configuration.
- dbConfiguration Property MapOverrides 
- Configuration overrides for a PostgreSQL instance.
- dbVersion String
- Version of the PostgreSQL database.
- displayName String
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- shape String
- The name of the shape for the configuration. Example: VM.Standard.E4.Flex
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Details about the configuration set.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instanceMemory NumberSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instanceOcpu NumberCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- isFlexible Boolean
- Whether the configuration supports flexible shapes.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
Outputs
All input properties are implicitly available as output properties. Additionally, the Configuration resource produces the following output properties:
- ConfigType string
- The type of configuration. Either user-created or a default configuration.
- ConfigurationDetails List<ConfigurationConfiguration Detail> 
- List of configuration details.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- State string
- The current state of the configuration.
- TimeCreated string
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- ConfigType string
- The type of configuration. Either user-created or a default configuration.
- ConfigurationDetails []ConfigurationConfiguration Detail 
- List of configuration details.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- State string
- The current state of the configuration.
- TimeCreated string
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- configType String
- The type of configuration. Either user-created or a default configuration.
- configurationDetails List<ConfigurationConfiguration Detail> 
- List of configuration details.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- state String
- The current state of the configuration.
- timeCreated String
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- configType string
- The type of configuration. Either user-created or a default configuration.
- configurationDetails ConfigurationConfiguration Detail[] 
- List of configuration details.
- id string
- The provider-assigned unique ID for this managed resource.
- 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.
- state string
- The current state of the configuration.
- timeCreated string
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
- config_type str
- The type of configuration. Either user-created or a default configuration.
- configuration_details Sequence[ConfigurationConfiguration Detail] 
- List of configuration details.
- id str
- The provider-assigned unique ID for this managed resource.
- 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.
- state str
- The current state of the configuration.
- 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
- configType String
- The type of configuration. Either user-created or a default configuration.
- configurationDetails List<Property Map>
- List of configuration details.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- state String
- The current state of the configuration.
- timeCreated String
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
Look up Existing Configuration Resource
Get an existing Configuration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ConfigurationState, opts?: CustomResourceOptions): Configuration@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        config_type: Optional[str] = None,
        configuration_details: Optional[Sequence[ConfigurationConfigurationDetailArgs]] = None,
        db_configuration_overrides: Optional[ConfigurationDbConfigurationOverridesArgs] = None,
        db_version: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        instance_memory_size_in_gbs: Optional[int] = None,
        instance_ocpu_count: Optional[int] = None,
        is_flexible: Optional[bool] = None,
        lifecycle_details: Optional[str] = None,
        shape: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None) -> Configurationfunc GetConfiguration(ctx *Context, name string, id IDInput, state *ConfigurationState, opts ...ResourceOption) (*Configuration, error)public static Configuration Get(string name, Input<string> id, ConfigurationState? state, CustomResourceOptions? opts = null)public static Configuration get(String name, Output<String> id, ConfigurationState state, CustomResourceOptions options)resources:  _:    type: oci:Psql:Configuration    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the configuration.
- ConfigType string
- The type of configuration. Either user-created or a default configuration.
- ConfigurationDetails List<ConfigurationConfiguration Detail> 
- List of configuration details.
- DbConfiguration ConfigurationOverrides Db Configuration Overrides 
- Configuration overrides for a PostgreSQL instance.
- DbVersion string
- Version of the PostgreSQL database.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Details about the configuration set.
- DisplayName string
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- InstanceMemory intSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- InstanceOcpu intCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- 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 name of the shape for the configuration. Example: VM.Standard.E4.Flex
- State string
- The current state of the configuration.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- 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
- (Updatable) The OCID of the compartment that contains the configuration.
- ConfigType string
- The type of configuration. Either user-created or a default configuration.
- ConfigurationDetails []ConfigurationConfiguration Detail Args 
- List of configuration details.
- DbConfiguration ConfigurationOverrides Db Configuration Overrides Args 
- Configuration overrides for a PostgreSQL instance.
- DbVersion string
- Version of the PostgreSQL database.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Details about the configuration set.
- DisplayName string
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- InstanceMemory intSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- InstanceOcpu intCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- 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 name of the shape for the configuration. Example: VM.Standard.E4.Flex
- State string
- The current state of the configuration.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- 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
- (Updatable) The OCID of the compartment that contains the configuration.
- configType String
- The type of configuration. Either user-created or a default configuration.
- configurationDetails List<ConfigurationConfiguration Detail> 
- List of configuration details.
- dbConfiguration ConfigurationOverrides Db Configuration Overrides 
- Configuration overrides for a PostgreSQL instance.
- dbVersion String
- Version of the PostgreSQL database.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Details about the configuration set.
- displayName String
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instanceMemory IntegerSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instanceOcpu IntegerCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- 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 name of the shape for the configuration. Example: VM.Standard.E4.Flex
- state String
- The current state of the configuration.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- 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
- (Updatable) The OCID of the compartment that contains the configuration.
- configType string
- The type of configuration. Either user-created or a default configuration.
- configurationDetails ConfigurationConfiguration Detail[] 
- List of configuration details.
- dbConfiguration ConfigurationOverrides Db Configuration Overrides 
- Configuration overrides for a PostgreSQL instance.
- dbVersion string
- Version of the PostgreSQL database.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Details about the configuration set.
- displayName string
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instanceMemory numberSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instanceOcpu numberCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- 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 name of the shape for the configuration. Example: VM.Standard.E4.Flex
- state string
- The current state of the configuration.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- 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
- (Updatable) The OCID of the compartment that contains the configuration.
- config_type str
- The type of configuration. Either user-created or a default configuration.
- configuration_details Sequence[ConfigurationConfiguration Detail Args] 
- List of configuration details.
- db_configuration_ Configurationoverrides Db Configuration Overrides Args 
- Configuration overrides for a PostgreSQL instance.
- db_version str
- Version of the PostgreSQL database.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Details about the configuration set.
- display_name str
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instance_memory_ intsize_ in_ gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instance_ocpu_ intcount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- 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 name of the shape for the configuration. Example: VM.Standard.E4.Flex
- state str
- The current state of the configuration.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- 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
- (Updatable) The OCID of the compartment that contains the configuration.
- configType String
- The type of configuration. Either user-created or a default configuration.
- configurationDetails List<Property Map>
- List of configuration details.
- dbConfiguration Property MapOverrides 
- Configuration overrides for a PostgreSQL instance.
- dbVersion String
- Version of the PostgreSQL database.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Details about the configuration set.
- displayName String
- (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- instanceMemory NumberSize In Gbs 
- Memory size in gigabytes with 1GB increment. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- instanceOcpu NumberCount 
- CPU core count. - Skip or set it's value to 0 if configuration is for a flexible shape. 
- 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 name of the shape for the configuration. Example: VM.Standard.E4.Flex
- state String
- The current state of the configuration.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: - {"orcl-cloud.free-tier-retained": "true"}- ** 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 
- timeCreated String
- The date and time that the configuration was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
Supporting Types
ConfigurationConfigurationDetail, ConfigurationConfigurationDetailArgs      
- Items
List<ConfigurationConfiguration Detail Item> 
- List of ConfigParms object.
- Items
[]ConfigurationConfiguration Detail Item 
- List of ConfigParms object.
- items
List<ConfigurationConfiguration Detail Item> 
- List of ConfigParms object.
- items
ConfigurationConfiguration Detail Item[] 
- List of ConfigParms object.
- items
Sequence[ConfigurationConfiguration Detail Item] 
- List of ConfigParms object.
- items List<Property Map>
- List of ConfigParms object.
ConfigurationConfigurationDetailItem, ConfigurationConfigurationDetailItemArgs        
- 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
- (Updatable) Details about the configuration set.
- 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
- (Updatable) Details about the configuration set.
- 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
- (Updatable) Details about the configuration set.
- 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
- (Updatable) Details about the configuration set.
- 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
- (Updatable) Details about the configuration set.
- 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
- (Updatable) Details about the configuration set.
- 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.
ConfigurationDbConfigurationOverrides, ConfigurationDbConfigurationOverridesArgs        
- Items
List<ConfigurationDb Configuration Overrides Item> 
- List of configuration overridden values.
- Items
[]ConfigurationDb Configuration Overrides Item 
- List of configuration overridden values.
- items
List<ConfigurationDb Configuration Overrides Item> 
- List of configuration overridden values.
- items
ConfigurationDb Configuration Overrides Item[] 
- List of configuration overridden values.
- items
Sequence[ConfigurationDb Configuration Overrides Item] 
- List of configuration overridden values.
- items List<Property Map>
- List of configuration overridden values.
ConfigurationDbConfigurationOverridesItem, ConfigurationDbConfigurationOverridesItemArgs          
- ConfigKey string
- Configuration variable name.
- OverridenConfig stringValue 
- User-selected variable value.
- ConfigKey string
- Configuration variable name.
- OverridenConfig stringValue 
- User-selected variable value.
- configKey String
- Configuration variable name.
- overridenConfig StringValue 
- User-selected variable value.
- configKey string
- Configuration variable name.
- overridenConfig stringValue 
- User-selected variable value.
- config_key str
- Configuration variable name.
- overriden_config_ strvalue 
- User-selected variable value.
- configKey String
- Configuration variable name.
- overridenConfig StringValue 
- User-selected variable value.
Import
Configurations can be imported using the id, e.g.
$ pulumi import oci:Psql/configuration:Configuration test_configuration "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.