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
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExternalNonContainerDatabase = new oci.database.ExternalNonContainerDatabase("test_external_non_container_database", {
compartmentId: compartmentId,
displayName: externalNonContainerDatabaseDisplayName,
definedTags: externalNonContainerDatabaseDefinedTags,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_external_non_container_database = oci.database.ExternalNonContainerDatabase("test_external_non_container_database",
compartment_id=compartment_id,
display_name=external_non_container_database_display_name,
defined_tags=external_non_container_database_defined_tags,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Database.NewExternalNonContainerDatabase(ctx, "test_external_non_container_database", &Database.ExternalNonContainerDatabaseArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(externalNonContainerDatabaseDisplayName),
DefinedTags: pulumi.Any(externalNonContainerDatabaseDefinedTags),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
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 testExternalNonContainerDatabase = new Oci.Database.ExternalNonContainerDatabase("test_external_non_container_database", new()
{
CompartmentId = compartmentId,
DisplayName = externalNonContainerDatabaseDisplayName,
DefinedTags = externalNonContainerDatabaseDefinedTags,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
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(compartmentId)
.displayName(externalNonContainerDatabaseDisplayName)
.definedTags(externalNonContainerDatabaseDefinedTags)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testExternalNonContainerDatabase:
type: oci:Database:ExternalNonContainerDatabase
name: test_external_non_container_database
properties:
compartmentId: ${compartmentId}
displayName: ${externalNonContainerDatabaseDisplayName}
definedTags: ${externalNonContainerDatabaseDefinedTags}
freeformTags:
Department: Finance
Create ExternalNonContainerDatabase Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalNonContainerDatabase(name: string, args: ExternalNonContainerDatabaseArgs, opts?: CustomResourceOptions);
@overload
def ExternalNonContainerDatabase(resource_name: str,
args: ExternalNonContainerDatabaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalNonContainerDatabase(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var externalNonContainerDatabaseResource = new Oci.Database.ExternalNonContainerDatabase("externalNonContainerDatabaseResource", new()
{
CompartmentId = "string",
DisplayName = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
});
example, err := Database.NewExternalNonContainerDatabase(ctx, "externalNonContainerDatabaseResource", &Database.ExternalNonContainerDatabaseArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var externalNonContainerDatabaseResource = new ExternalNonContainerDatabase("externalNonContainerDatabaseResource", ExternalNonContainerDatabaseArgs.builder()
.compartmentId("string")
.displayName("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.build());
external_non_container_database_resource = oci.database.ExternalNonContainerDatabase("externalNonContainerDatabaseResource",
compartment_id="string",
display_name="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
})
const externalNonContainerDatabaseResource = new oci.database.ExternalNonContainerDatabase("externalNonContainerDatabaseResource", {
compartmentId: "string",
displayName: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
});
type: oci:Database:ExternalNonContainerDatabase
properties:
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ExternalNonContainerDatabase resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, string>
(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 string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]string
(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 String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,String>
(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 string - (Updatable) The OCID of the compartment.
- display
Name string - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: string}
(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.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, str]
(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 String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String>
(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:
- Character
Set string - The character set of the external database.
- Database
Configuration string - The Oracle Database configuration
- Database
Edition string - The Oracle Database edition.
- Database
Management List<ExternalConfigs Non Container Database Database Management Config> - The configuration of the Database Management service.
- Database
Version string - The Oracle Database version.
- Db
Id string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- Db
Packs string - The database packs licensed for the external Oracle Database.
- Db
Unique stringName - The
DB_UNIQUE_NAME
of the external database. - Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Ncharacter
Set string - The national character of the external database.
- Operations
Insights List<ExternalConfigs Non Container Database Operations Insights Config> - The configuration of Operations Insights for the external database
- Stack
Monitoring List<ExternalConfigs Non Container Database Stack Monitoring Config> - The configuration of Stack Monitoring for the external database.
- State string
- The current state of the Oracle Cloud Infrastructure external database resource.
- Time
Created string - The date and time the database was created.
- Time
Zone 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 string - The character set of the external database.
- Database
Configuration string - The Oracle Database configuration
- Database
Edition string - The Oracle Database edition.
- Database
Management []ExternalConfigs Non Container Database Database Management Config - The configuration of the Database Management service.
- Database
Version string - The Oracle Database version.
- Db
Id string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- Db
Packs string - The database packs licensed for the external Oracle Database.
- Db
Unique stringName - The
DB_UNIQUE_NAME
of the external database. - Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Ncharacter
Set string - The national character of the external database.
- Operations
Insights []ExternalConfigs Non Container Database Operations Insights Config - The configuration of Operations Insights for the external database
- Stack
Monitoring []ExternalConfigs Non Container Database Stack Monitoring Config - The configuration of Stack Monitoring for the external database.
- State string
- The current state of the Oracle Cloud Infrastructure external database resource.
- Time
Created string - The date and time the database was created.
- Time
Zone 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 String - The character set of the external database.
- database
Configuration String - The Oracle Database configuration
- database
Edition String - The Oracle Database edition.
- database
Management List<ExternalConfigs Non Container Management Config> - The configuration of the Database Management service.
- database
Version String - The Oracle Database version.
- db
Id String - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs String - The database packs licensed for the external Oracle Database.
- db
Unique StringName - The
DB_UNIQUE_NAME
of the external database. - id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Additional information about the current lifecycle state.
- ncharacter
Set String - The national character of the external database.
- operations
Insights List<ExternalConfigs Non Container Operations Insights Config> - The configuration of Operations Insights for the external database
- stack
Monitoring List<ExternalConfigs Non Container Stack Monitoring Config> - The configuration of Stack Monitoring for the external database.
- state String
- The current state of the Oracle Cloud Infrastructure external database resource.
- time
Created String - The date and time the database was created.
- time
Zone 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 string - The character set of the external database.
- database
Configuration string - The Oracle Database configuration
- database
Edition string - The Oracle Database edition.
- database
Management ExternalConfigs Non Container Database Database Management Config[] - The configuration of the Database Management service.
- database
Version string - The Oracle Database version.
- db
Id string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs string - The database packs licensed for the external Oracle Database.
- db
Unique stringName - The
DB_UNIQUE_NAME
of the external database. - id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Additional information about the current lifecycle state.
- ncharacter
Set string - The national character of the external database.
- operations
Insights ExternalConfigs Non Container Database Operations Insights Config[] - The configuration of Operations Insights for the external database
- stack
Monitoring ExternalConfigs Non Container Database Stack Monitoring Config[] - The configuration of Stack Monitoring for the external database.
- state string
- The current state of the Oracle Cloud Infrastructure external database resource.
- time
Created string - The date and time the database was created.
- time
Zone 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_ Sequence[database.configs External Non Container Database Database Management Config] - 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_ strname - 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_ Sequence[database.configs External Non Container Database Operations Insights Config] - The configuration of Operations Insights for the external database
- stack_
monitoring_ Sequence[database.configs External Non Container Database Stack Monitoring Config] - 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.
- character
Set String - The character set of the external database.
- database
Configuration String - The Oracle Database configuration
- database
Edition String - The Oracle Database edition.
- database
Management List<Property Map>Configs - The configuration of the Database Management service.
- database
Version String - The Oracle Database version.
- db
Id String - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs String - The database packs licensed for the external Oracle Database.
- db
Unique StringName - The
DB_UNIQUE_NAME
of the external database. - id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Additional information about the current lifecycle state.
- ncharacter
Set String - The national character of the external database.
- operations
Insights List<Property Map>Configs - The configuration of Operations Insights for the external database
- stack
Monitoring List<Property Map>Configs - The configuration of Stack Monitoring for the external database.
- state String
- The current state of the Oracle Cloud Infrastructure external database resource.
- time
Created String - The date and time the database was created.
- time
Zone 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, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = 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.
- Character
Set string - The character set of the external database.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Configuration string - The Oracle Database configuration
- Database
Edition string - The Oracle Database edition.
- Database
Management List<ExternalConfigs Non Container Database Database Management Config> - The configuration of the Database Management service.
- Database
Version string - The Oracle Database version.
- Db
Id string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- Db
Packs string - The database packs licensed for the external Oracle Database.
- Db
Unique stringName - The
DB_UNIQUE_NAME
of the external database. - Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- Dictionary<string, string>
(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 string - Additional information about the current lifecycle state.
- Ncharacter
Set string - The national character of the external database.
- Operations
Insights List<ExternalConfigs Non Container Database Operations Insights Config> - The configuration of Operations Insights for the external database
- Stack
Monitoring List<ExternalConfigs Non Container Database Stack Monitoring Config> - The configuration of Stack Monitoring for the external database.
- State string
- The current state of the Oracle Cloud Infrastructure external database resource.
- Time
Created string - The date and time the database was created.
- Time
Zone 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 string - The character set of the external database.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Configuration string - The Oracle Database configuration
- Database
Edition string - The Oracle Database edition.
- Database
Management []ExternalConfigs Non Container Database Database Management Config Args - The configuration of the Database Management service.
- Database
Version string - The Oracle Database version.
- Db
Id string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- Db
Packs string - The database packs licensed for the external Oracle Database.
- Db
Unique stringName - The
DB_UNIQUE_NAME
of the external database. - map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- map[string]string
(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 string - Additional information about the current lifecycle state.
- Ncharacter
Set string - The national character of the external database.
- Operations
Insights []ExternalConfigs Non Container Database Operations Insights Config Args - The configuration of Operations Insights for the external database
- Stack
Monitoring []ExternalConfigs Non Container Database Stack Monitoring Config Args - The configuration of Stack Monitoring for the external database.
- State string
- The current state of the Oracle Cloud Infrastructure external database resource.
- Time
Created string - The date and time the database was created.
- Time
Zone 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 String - The character set of the external database.
- compartment
Id String - (Updatable) The OCID of the compartment.
- database
Configuration String - The Oracle Database configuration
- database
Edition String - The Oracle Database edition.
- database
Management List<ExternalConfigs Non Container Management Config> - The configuration of the Database Management service.
- database
Version String - The Oracle Database version.
- db
Id String - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs String - The database packs licensed for the external Oracle Database.
- db
Unique StringName - The
DB_UNIQUE_NAME
of the external database. - Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- Map<String,String>
(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 String - Additional information about the current lifecycle state.
- ncharacter
Set String - The national character of the external database.
- operations
Insights List<ExternalConfigs Non Container Operations Insights Config> - The configuration of Operations Insights for the external database
- stack
Monitoring List<ExternalConfigs Non Container Stack Monitoring Config> - The configuration of Stack Monitoring for the external database.
- state String
- The current state of the Oracle Cloud Infrastructure external database resource.
- time
Created String - The date and time the database was created.
- time
Zone 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 string - The character set of the external database.
- compartment
Id string - (Updatable) The OCID of the compartment.
- database
Configuration string - The Oracle Database configuration
- database
Edition string - The Oracle Database edition.
- database
Management ExternalConfigs Non Container Database Database Management Config[] - The configuration of the Database Management service.
- database
Version string - The Oracle Database version.
- db
Id string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs string - The database packs licensed for the external Oracle Database.
- db
Unique stringName - The
DB_UNIQUE_NAME
of the external database. - {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- {[key: string]: string}
(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 string - Additional information about the current lifecycle state.
- ncharacter
Set string - The national character of the external database.
- operations
Insights ExternalConfigs Non Container Database Operations Insights Config[] - The configuration of Operations Insights for the external database
- stack
Monitoring ExternalConfigs Non Container Database Stack Monitoring Config[] - The configuration of Stack Monitoring for the external database.
- state string
- The current state of the Oracle Cloud Infrastructure external database resource.
- time
Created string - The date and time the database was created.
- time
Zone 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_ Sequence[database.configs External Non Container Database Database Management Config Args] - 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_ strname - The
DB_UNIQUE_NAME
of the external database. - Mapping[str, str]
- (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.
- Mapping[str, str]
(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_ Sequence[database.configs External Non Container Database Operations Insights Config Args] - The configuration of Operations Insights for the external database
- stack_
monitoring_ Sequence[database.configs External Non Container Database Stack Monitoring Config Args] - 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.
- character
Set String - The character set of the external database.
- compartment
Id String - (Updatable) The OCID of the compartment.
- database
Configuration String - The Oracle Database configuration
- database
Edition String - The Oracle Database edition.
- database
Management List<Property Map>Configs - The configuration of the Database Management service.
- database
Version String - The Oracle Database version.
- db
Id String - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs String - The database packs licensed for the external Oracle Database.
- db
Unique StringName - The
DB_UNIQUE_NAME
of the external database. - Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - (Updatable) The user-friendly name for the external database. The name does not have to be unique.
- Map<String>
(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 String - Additional information about the current lifecycle state.
- ncharacter
Set String - The national character of the external database.
- operations
Insights List<Property Map>Configs - The configuration of Operations Insights for the external database
- stack
Monitoring List<Property Map>Configs - The configuration of Stack Monitoring for the external database.
- state String
- The current state of the Oracle Cloud Infrastructure external database resource.
- time
Created String - The date and time the database was created.
- time
Zone 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, ExternalNonContainerDatabaseDatabaseManagementConfigArgs
- Database
Management stringConnection Id - The OCID of the external database connector.
- Database
Management stringStatus - The status of the Database Management service.
- License
Model string - The Oracle license model that applies to the external database.
- Database
Management stringConnection Id - The OCID of the external database connector.
- Database
Management stringStatus - The status of the Database Management service.
- License
Model string - The Oracle license model that applies to the external database.
- database
Management StringConnection Id - The OCID of the external database connector.
- database
Management StringStatus - The status of the Database Management service.
- license
Model String - The Oracle license model that applies to the external database.
- database
Management stringConnection Id - The OCID of the external database connector.
- database
Management stringStatus - The status of the Database Management service.
- license
Model string - The Oracle license model that applies to the external database.
- database_
management_ strconnection_ id - The OCID of the external database connector.
- database_
management_ strstatus - The status of the Database Management service.
- license_
model str - The Oracle license model that applies to the external database.
- database
Management StringConnection Id - The OCID of the external database connector.
- database
Management StringStatus - The status of the Database Management service.
- license
Model String - The Oracle license model that applies to the external database.
ExternalNonContainerDatabaseOperationsInsightsConfig, ExternalNonContainerDatabaseOperationsInsightsConfigArgs
- Operations
Insights stringConnector Id - The OCID of the external database connector.
- Operations
Insights stringStatus - The status of Operations Insights
- Operations
Insights stringConnector Id - The OCID of the external database connector.
- Operations
Insights stringStatus - The status of Operations Insights
- operations
Insights StringConnector Id - The OCID of the external database connector.
- operations
Insights StringStatus - The status of Operations Insights
- operations
Insights stringConnector Id - The OCID of the external database connector.
- operations
Insights stringStatus - The status of Operations Insights
- operations_
insights_ strconnector_ id - The OCID of the external database connector.
- operations_
insights_ strstatus - The status of Operations Insights
- operations
Insights StringConnector Id - The OCID of the external database connector.
- operations
Insights StringStatus - The status of Operations Insights
ExternalNonContainerDatabaseStackMonitoringConfig, ExternalNonContainerDatabaseStackMonitoringConfigArgs
- Stack
Monitoring stringConnector Id - The OCID of the external database connector.
- Stack
Monitoring stringStatus - The status of Stack Monitoring.
- Stack
Monitoring stringConnector Id - The OCID of the external database connector.
- Stack
Monitoring stringStatus - The status of Stack Monitoring.
- stack
Monitoring StringConnector Id - The OCID of the external database connector.
- stack
Monitoring StringStatus - The status of Stack Monitoring.
- stack
Monitoring stringConnector Id - The OCID of the external database connector.
- stack
Monitoring stringStatus - The status of Stack Monitoring.
- stack_
monitoring_ strconnector_ id - The OCID of the external database connector.
- stack_
monitoring_ strstatus - The status of Stack Monitoring.
- stack
Monitoring StringConnector Id - The OCID of the external database connector.
- stack
Monitoring StringStatus - 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"
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
oci
Terraform Provider.