oci logo
Oracle Cloud Infrastructure v0.20.0, May 31 23

oci.Database.ExternalNonContainerDatabase

Explore with Pulumi AI

This resource provides the External Non Container Database resource in Oracle Cloud Infrastructure Database service.

Creates a new ExternalNonContainerDatabase resource

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExternalNonContainerDatabase = new Oci.Database.ExternalNonContainerDatabase("testExternalNonContainerDatabase", new()
    {
        CompartmentId = @var.Compartment_id,
        DisplayName = @var.External_non_container_database_display_name,
        DefinedTags = @var.External_non_container_database_defined_tags,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Database.NewExternalNonContainerDatabase(ctx, "testExternalNonContainerDatabase", &Database.ExternalNonContainerDatabaseArgs{
			CompartmentId: pulumi.Any(_var.Compartment_id),
			DisplayName:   pulumi.Any(_var.External_non_container_database_display_name),
			DefinedTags:   pulumi.Any(_var.External_non_container_database_defined_tags),
			FreeformTags: pulumi.AnyMap{
				"Department": pulumi.Any("Finance"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.ExternalNonContainerDatabase;
import com.pulumi.oci.Database.ExternalNonContainerDatabaseArgs;
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 testExternalNonContainerDatabase = new ExternalNonContainerDatabase("testExternalNonContainerDatabase", ExternalNonContainerDatabaseArgs.builder()        
            .compartmentId(var_.compartment_id())
            .displayName(var_.external_non_container_database_display_name())
            .definedTags(var_.external_non_container_database_defined_tags())
            .freeformTags(Map.of("Department", "Finance"))
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_external_non_container_database = oci.database.ExternalNonContainerDatabase("testExternalNonContainerDatabase",
    compartment_id=var["compartment_id"],
    display_name=var["external_non_container_database_display_name"],
    defined_tags=var["external_non_container_database_defined_tags"],
    freeform_tags={
        "Department": "Finance",
    })
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testExternalNonContainerDatabase = new oci.database.ExternalNonContainerDatabase("testExternalNonContainerDatabase", {
    compartmentId: _var.compartment_id,
    displayName: _var.external_non_container_database_display_name,
    definedTags: _var.external_non_container_database_defined_tags,
    freeformTags: {
        Department: "Finance",
    },
});
resources:
  testExternalNonContainerDatabase:
    type: oci:Database:ExternalNonContainerDatabase
    properties:
      #Required
      compartmentId: ${var.compartment_id}
      displayName: ${var.external_non_container_database_display_name}
      #Optional
      definedTags: ${var.external_non_container_database_defined_tags}
      freeformTags:
        Department: Finance

Create ExternalNonContainerDatabase Resource

new ExternalNonContainerDatabase(name: string, args: ExternalNonContainerDatabaseArgs, opts?: CustomResourceOptions);
@overload
def ExternalNonContainerDatabase(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 compartment_id: Optional[str] = None,
                                 defined_tags: Optional[Mapping[str, Any]] = None,
                                 display_name: Optional[str] = None,
                                 freeform_tags: Optional[Mapping[str, Any]] = None)
@overload
def ExternalNonContainerDatabase(resource_name: str,
                                 args: ExternalNonContainerDatabaseArgs,
                                 opts: Optional[ResourceOptions] = None)
func NewExternalNonContainerDatabase(ctx *Context, name string, args ExternalNonContainerDatabaseArgs, opts ...ResourceOption) (*ExternalNonContainerDatabase, error)
public ExternalNonContainerDatabase(string name, ExternalNonContainerDatabaseArgs args, CustomResourceOptions? opts = null)
public ExternalNonContainerDatabase(String name, ExternalNonContainerDatabaseArgs args)
public ExternalNonContainerDatabase(String name, ExternalNonContainerDatabaseArgs args, CustomResourceOptions options)
type: oci:Database:ExternalNonContainerDatabase
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ExternalNonContainerDatabaseArgs
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 ExternalNonContainerDatabaseArgs
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 ExternalNonContainerDatabaseArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ExternalNonContainerDatabaseArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ExternalNonContainerDatabaseArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

ExternalNonContainerDatabase Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The ExternalNonContainerDatabase resource accepts the following input properties:

CompartmentId string

(Updatable) The OCID of the compartment.

DisplayName string

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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.

DisplayName string

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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.

displayName String

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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.

displayName string

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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.

display_name str

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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.

displayName String

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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 ExternalNonContainerDatabase resource produces the following output properties:

CharacterSet string

The character set of the external database.

DatabaseConfiguration string

The Oracle Database configuration

DatabaseEdition string

The Oracle Database edition.

DatabaseManagementConfigs List<ExternalNonContainerDatabaseDatabaseManagementConfig>

The configuration of the Database Management service.

DatabaseVersion string

The Oracle Database version.

DbId string

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

DbPacks string

The database packs licensed for the external Oracle Database.

DbUniqueName string

The DB_UNIQUE_NAME of the external database.

Id string

The provider-assigned unique ID for this managed resource.

LifecycleDetails string

Additional information about the current lifecycle state.

NcharacterSet string

The national character of the external database.

OperationsInsightsConfigs List<ExternalNonContainerDatabaseOperationsInsightsConfig>

The configuration of Operations Insights for the external database

StackMonitoringConfigs List<ExternalNonContainerDatabaseStackMonitoringConfig>

The configuration of Stack Monitoring for the external database.

State string

The current state of the Oracle Cloud Infrastructure external database resource.

TimeCreated string

The date and time the database was created.

TimeZone string

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

CharacterSet string

The character set of the external database.

DatabaseConfiguration string

The Oracle Database configuration

DatabaseEdition string

The Oracle Database edition.

DatabaseManagementConfigs []ExternalNonContainerDatabaseDatabaseManagementConfig

The configuration of the Database Management service.

DatabaseVersion string

The Oracle Database version.

DbId string

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

DbPacks string

The database packs licensed for the external Oracle Database.

DbUniqueName string

The DB_UNIQUE_NAME of the external database.

Id string

The provider-assigned unique ID for this managed resource.

LifecycleDetails string

Additional information about the current lifecycle state.

NcharacterSet string

The national character of the external database.

OperationsInsightsConfigs []ExternalNonContainerDatabaseOperationsInsightsConfig

The configuration of Operations Insights for the external database

StackMonitoringConfigs []ExternalNonContainerDatabaseStackMonitoringConfig

The configuration of Stack Monitoring for the external database.

State string

The current state of the Oracle Cloud Infrastructure external database resource.

TimeCreated string

The date and time the database was created.

TimeZone string

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

characterSet String

The character set of the external database.

databaseConfiguration String

The Oracle Database configuration

databaseEdition String

The Oracle Database edition.

databaseManagementConfigs List<ExternalNonContainerManagementConfig>

The configuration of the Database Management service.

databaseVersion String

The Oracle Database version.

dbId String

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

dbPacks String

The database packs licensed for the external Oracle Database.

dbUniqueName String

The DB_UNIQUE_NAME of the external database.

id String

The provider-assigned unique ID for this managed resource.

lifecycleDetails String

Additional information about the current lifecycle state.

ncharacterSet String

The national character of the external database.

operationsInsightsConfigs List<ExternalNonContainerOperationsInsightsConfig>

The configuration of Operations Insights for the external database

stackMonitoringConfigs List<ExternalNonContainerStackMonitoringConfig>

The configuration of Stack Monitoring for the external database.

state String

The current state of the Oracle Cloud Infrastructure external database resource.

timeCreated String

The date and time the database was created.

timeZone String

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

characterSet string

The character set of the external database.

databaseConfiguration string

The Oracle Database configuration

databaseEdition string

The Oracle Database edition.

databaseManagementConfigs ExternalNonContainerDatabaseDatabaseManagementConfig[]

The configuration of the Database Management service.

databaseVersion string

The Oracle Database version.

dbId string

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

dbPacks string

The database packs licensed for the external Oracle Database.

dbUniqueName string

The DB_UNIQUE_NAME of the external database.

id string

The provider-assigned unique ID for this managed resource.

lifecycleDetails string

Additional information about the current lifecycle state.

ncharacterSet string

The national character of the external database.

operationsInsightsConfigs ExternalNonContainerDatabaseOperationsInsightsConfig[]

The configuration of Operations Insights for the external database

stackMonitoringConfigs ExternalNonContainerDatabaseStackMonitoringConfig[]

The configuration of Stack Monitoring for the external database.

state string

The current state of the Oracle Cloud Infrastructure external database resource.

timeCreated string

The date and time the database was created.

timeZone string

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

character_set str

The character set of the external database.

database_configuration str

The Oracle Database configuration

database_edition str

The Oracle Database edition.

database_management_configs ExternalNonContainerDatabaseDatabaseManagementConfig]

The configuration of the Database Management service.

database_version str

The Oracle Database version.

db_id str

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

db_packs str

The database packs licensed for the external Oracle Database.

db_unique_name str

The DB_UNIQUE_NAME of the external database.

id str

The provider-assigned unique ID for this managed resource.

lifecycle_details str

Additional information about the current lifecycle state.

ncharacter_set str

The national character of the external database.

operations_insights_configs ExternalNonContainerDatabaseOperationsInsightsConfig]

The configuration of Operations Insights for the external database

stack_monitoring_configs ExternalNonContainerDatabaseStackMonitoringConfig]

The configuration of Stack Monitoring for the external database.

state str

The current state of the Oracle Cloud Infrastructure external database resource.

time_created str

The date and time the database was created.

time_zone str

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

characterSet String

The character set of the external database.

databaseConfiguration String

The Oracle Database configuration

databaseEdition String

The Oracle Database edition.

databaseManagementConfigs List<Property Map>

The configuration of the Database Management service.

databaseVersion String

The Oracle Database version.

dbId String

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

dbPacks String

The database packs licensed for the external Oracle Database.

dbUniqueName String

The DB_UNIQUE_NAME of the external database.

id String

The provider-assigned unique ID for this managed resource.

lifecycleDetails String

Additional information about the current lifecycle state.

ncharacterSet String

The national character of the external database.

operationsInsightsConfigs List<Property Map>

The configuration of Operations Insights for the external database

stackMonitoringConfigs List<Property Map>

The configuration of Stack Monitoring for the external database.

state String

The current state of the Oracle Cloud Infrastructure external database resource.

timeCreated String

The date and time the database was created.

timeZone String

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

Look up Existing ExternalNonContainerDatabase Resource

Get an existing ExternalNonContainerDatabase 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?: ExternalNonContainerDatabaseState, opts?: CustomResourceOptions): ExternalNonContainerDatabase
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        character_set: Optional[str] = None,
        compartment_id: Optional[str] = None,
        database_configuration: Optional[str] = None,
        database_edition: Optional[str] = None,
        database_management_configs: Optional[Sequence[_database.ExternalNonContainerDatabaseDatabaseManagementConfigArgs]] = None,
        database_version: Optional[str] = None,
        db_id: Optional[str] = None,
        db_packs: Optional[str] = None,
        db_unique_name: Optional[str] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        lifecycle_details: Optional[str] = None,
        ncharacter_set: Optional[str] = None,
        operations_insights_configs: Optional[Sequence[_database.ExternalNonContainerDatabaseOperationsInsightsConfigArgs]] = None,
        stack_monitoring_configs: Optional[Sequence[_database.ExternalNonContainerDatabaseStackMonitoringConfigArgs]] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None) -> ExternalNonContainerDatabase
func GetExternalNonContainerDatabase(ctx *Context, name string, id IDInput, state *ExternalNonContainerDatabaseState, opts ...ResourceOption) (*ExternalNonContainerDatabase, error)
public static ExternalNonContainerDatabase Get(string name, Input<string> id, ExternalNonContainerDatabaseState? state, CustomResourceOptions? opts = null)
public static ExternalNonContainerDatabase get(String name, Output<String> id, ExternalNonContainerDatabaseState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
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.
The following state arguments are supported:
CharacterSet string

The character set of the external database.

CompartmentId string

(Updatable) The OCID of the compartment.

DatabaseConfiguration string

The Oracle Database configuration

DatabaseEdition string

The Oracle Database edition.

DatabaseManagementConfigs List<ExternalNonContainerDatabaseDatabaseManagementConfigArgs>

The configuration of the Database Management service.

DatabaseVersion string

The Oracle Database version.

DbId string

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

DbPacks string

The database packs licensed for the external Oracle Database.

DbUniqueName string

The DB_UNIQUE_NAME of the external database.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName string

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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

LifecycleDetails string

Additional information about the current lifecycle state.

NcharacterSet string

The national character of the external database.

OperationsInsightsConfigs List<ExternalNonContainerDatabaseOperationsInsightsConfigArgs>

The configuration of Operations Insights for the external database

StackMonitoringConfigs List<ExternalNonContainerDatabaseStackMonitoringConfigArgs>

The configuration of Stack Monitoring for the external database.

State string

The current state of the Oracle Cloud Infrastructure external database resource.

TimeCreated string

The date and time the database was created.

TimeZone string

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

CharacterSet string

The character set of the external database.

CompartmentId string

(Updatable) The OCID of the compartment.

DatabaseConfiguration string

The Oracle Database configuration

DatabaseEdition string

The Oracle Database edition.

DatabaseManagementConfigs []ExternalNonContainerDatabaseDatabaseManagementConfigArgs

The configuration of the Database Management service.

DatabaseVersion string

The Oracle Database version.

DbId string

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

DbPacks string

The database packs licensed for the external Oracle Database.

DbUniqueName string

The DB_UNIQUE_NAME of the external database.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName string

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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

LifecycleDetails string

Additional information about the current lifecycle state.

NcharacterSet string

The national character of the external database.

OperationsInsightsConfigs []ExternalNonContainerDatabaseOperationsInsightsConfigArgs

The configuration of Operations Insights for the external database

StackMonitoringConfigs []ExternalNonContainerDatabaseStackMonitoringConfigArgs

The configuration of Stack Monitoring for the external database.

State string

The current state of the Oracle Cloud Infrastructure external database resource.

TimeCreated string

The date and time the database was created.

TimeZone string

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

characterSet String

The character set of the external database.

compartmentId String

(Updatable) The OCID of the compartment.

databaseConfiguration String

The Oracle Database configuration

databaseEdition String

The Oracle Database edition.

databaseManagementConfigs List<ExternalNonContainerManagementConfigArgs>

The configuration of the Database Management service.

databaseVersion String

The Oracle Database version.

dbId String

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

dbPacks String

The database packs licensed for the external Oracle Database.

dbUniqueName String

The DB_UNIQUE_NAME of the external database.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

displayName String

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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

lifecycleDetails String

Additional information about the current lifecycle state.

ncharacterSet String

The national character of the external database.

operationsInsightsConfigs List<ExternalNonContainerOperationsInsightsConfigArgs>

The configuration of Operations Insights for the external database

stackMonitoringConfigs List<ExternalNonContainerStackMonitoringConfigArgs>

The configuration of Stack Monitoring for the external database.

state String

The current state of the Oracle Cloud Infrastructure external database resource.

timeCreated String

The date and time the database was created.

timeZone String

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

characterSet string

The character set of the external database.

compartmentId string

(Updatable) The OCID of the compartment.

databaseConfiguration string

The Oracle Database configuration

databaseEdition string

The Oracle Database edition.

databaseManagementConfigs ExternalNonContainerDatabaseDatabaseManagementConfigArgs[]

The configuration of the Database Management service.

databaseVersion string

The Oracle Database version.

dbId string

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

dbPacks string

The database packs licensed for the external Oracle Database.

dbUniqueName string

The DB_UNIQUE_NAME of the external database.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

displayName string

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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

lifecycleDetails string

Additional information about the current lifecycle state.

ncharacterSet string

The national character of the external database.

operationsInsightsConfigs ExternalNonContainerDatabaseOperationsInsightsConfigArgs[]

The configuration of Operations Insights for the external database

stackMonitoringConfigs ExternalNonContainerDatabaseStackMonitoringConfigArgs[]

The configuration of Stack Monitoring for the external database.

state string

The current state of the Oracle Cloud Infrastructure external database resource.

timeCreated string

The date and time the database was created.

timeZone string

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

character_set str

The character set of the external database.

compartment_id str

(Updatable) The OCID of the compartment.

database_configuration str

The Oracle Database configuration

database_edition str

The Oracle Database edition.

database_management_configs ExternalNonContainerDatabaseDatabaseManagementConfigArgs]

The configuration of the Database Management service.

database_version str

The Oracle Database version.

db_id str

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

db_packs str

The database packs licensed for the external Oracle Database.

db_unique_name str

The DB_UNIQUE_NAME of the external database.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

display_name str

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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

lifecycle_details str

Additional information about the current lifecycle state.

ncharacter_set str

The national character of the external database.

operations_insights_configs ExternalNonContainerDatabaseOperationsInsightsConfigArgs]

The configuration of Operations Insights for the external database

stack_monitoring_configs ExternalNonContainerDatabaseStackMonitoringConfigArgs]

The configuration of Stack Monitoring for the external database.

state str

The current state of the Oracle Cloud Infrastructure external database resource.

time_created str

The date and time the database was created.

time_zone str

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

characterSet String

The character set of the external database.

compartmentId String

(Updatable) The OCID of the compartment.

databaseConfiguration String

The Oracle Database configuration

databaseEdition String

The Oracle Database edition.

databaseManagementConfigs List<Property Map>

The configuration of the Database Management service.

databaseVersion String

The Oracle Database version.

dbId String

The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.

dbPacks String

The database packs licensed for the external Oracle Database.

dbUniqueName String

The DB_UNIQUE_NAME of the external database.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

displayName String

(Updatable) The user-friendly name for the external database. The name does not have to be unique.

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

** 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

lifecycleDetails String

Additional information about the current lifecycle state.

ncharacterSet String

The national character of the external database.

operationsInsightsConfigs List<Property Map>

The configuration of Operations Insights for the external database

stackMonitoringConfigs List<Property Map>

The configuration of Stack Monitoring for the external database.

state String

The current state of the Oracle Cloud Infrastructure external database resource.

timeCreated String

The date and time the database was created.

timeZone String

The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.

Supporting Types

ExternalNonContainerDatabaseDatabaseManagementConfig

DatabaseManagementConnectionId string

The OCID of the external database connector.

DatabaseManagementStatus string

The status of the Database Management service.

LicenseModel string

The Oracle license model that applies to the external database.

DatabaseManagementConnectionId string

The OCID of the external database connector.

DatabaseManagementStatus string

The status of the Database Management service.

LicenseModel string

The Oracle license model that applies to the external database.

databaseManagementConnectionId String

The OCID of the external database connector.

databaseManagementStatus String

The status of the Database Management service.

licenseModel String

The Oracle license model that applies to the external database.

databaseManagementConnectionId string

The OCID of the external database connector.

databaseManagementStatus string

The status of the Database Management service.

licenseModel string

The Oracle license model that applies to the external database.

database_management_connection_id str

The OCID of the external database connector.

database_management_status str

The status of the Database Management service.

license_model str

The Oracle license model that applies to the external database.

databaseManagementConnectionId String

The OCID of the external database connector.

databaseManagementStatus String

The status of the Database Management service.

licenseModel String

The Oracle license model that applies to the external database.

ExternalNonContainerDatabaseOperationsInsightsConfig

OperationsInsightsConnectorId string

The OCID of the external database connector.

OperationsInsightsStatus string

The status of Operations Insights

OperationsInsightsConnectorId string

The OCID of the external database connector.

OperationsInsightsStatus string

The status of Operations Insights

operationsInsightsConnectorId String

The OCID of the external database connector.

operationsInsightsStatus String

The status of Operations Insights

operationsInsightsConnectorId string

The OCID of the external database connector.

operationsInsightsStatus string

The status of Operations Insights

operationsInsightsConnectorId String

The OCID of the external database connector.

operationsInsightsStatus String

The status of Operations Insights

ExternalNonContainerDatabaseStackMonitoringConfig

StackMonitoringConnectorId string

The OCID of the external database connector.

StackMonitoringStatus string

The status of Stack Monitoring.

StackMonitoringConnectorId string

The OCID of the external database connector.

StackMonitoringStatus string

The status of Stack Monitoring.

stackMonitoringConnectorId String

The OCID of the external database connector.

stackMonitoringStatus String

The status of Stack Monitoring.

stackMonitoringConnectorId string

The OCID of the external database connector.

stackMonitoringStatus string

The status of Stack Monitoring.

stackMonitoringConnectorId String

The OCID of the external database connector.

stackMonitoringStatus String

The status of Stack Monitoring.

Import

ExternalNonContainerDatabases can be imported using the id, e.g.

 $ pulumi import oci:Database/externalNonContainerDatabase:ExternalNonContainerDatabase test_external_non_container_database "id"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.