1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. ExternalMySqlDatabaseExternalMysqlDatabasesManagement
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.DatabaseManagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagement

Explore with Pulumi AI

This resource provides the External My Sql Database External Mysql Databases Management resource in Oracle Cloud Infrastructure Database Management service.

Enables Database Management for an external MySQL Database.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testExternalMySqlDatabaseExternalMysqlDatabasesManagement = new oci.databasemanagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagement("test_external_my_sql_database_external_mysql_databases_management", {
    externalMySqlDatabaseId: testExternalMySqlDatabase.id,
    enableExternalMysqlDatabase: enableExternalMysqlDatabase,
    connectorId: testConnector.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_external_my_sql_database_external_mysql_databases_management = oci.database_management.ExternalMySqlDatabaseExternalMysqlDatabasesManagement("test_external_my_sql_database_external_mysql_databases_management",
    external_my_sql_database_id=test_external_my_sql_database["id"],
    enable_external_mysql_database=enable_external_mysql_database,
    connector_id=test_connector["id"])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.NewExternalMySqlDatabaseExternalMysqlDatabasesManagement(ctx, "test_external_my_sql_database_external_mysql_databases_management", &databasemanagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs{
			ExternalMySqlDatabaseId:     pulumi.Any(testExternalMySqlDatabase.Id),
			EnableExternalMysqlDatabase: pulumi.Any(enableExternalMysqlDatabase),
			ConnectorId:                 pulumi.Any(testConnector.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExternalMySqlDatabaseExternalMysqlDatabasesManagement = new Oci.DatabaseManagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagement("test_external_my_sql_database_external_mysql_databases_management", new()
    {
        ExternalMySqlDatabaseId = testExternalMySqlDatabase.Id,
        EnableExternalMysqlDatabase = enableExternalMysqlDatabase,
        ConnectorId = testConnector.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagement;
import com.pulumi.oci.DatabaseManagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs;
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 testExternalMySqlDatabaseExternalMysqlDatabasesManagement = new ExternalMySqlDatabaseExternalMysqlDatabasesManagement("testExternalMySqlDatabaseExternalMysqlDatabasesManagement", ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs.builder()
            .externalMySqlDatabaseId(testExternalMySqlDatabase.id())
            .enableExternalMysqlDatabase(enableExternalMysqlDatabase)
            .connectorId(testConnector.id())
            .build());

    }
}
Copy
resources:
  testExternalMySqlDatabaseExternalMysqlDatabasesManagement:
    type: oci:DatabaseManagement:ExternalMySqlDatabaseExternalMysqlDatabasesManagement
    name: test_external_my_sql_database_external_mysql_databases_management
    properties:
      externalMySqlDatabaseId: ${testExternalMySqlDatabase.id}
      enableExternalMysqlDatabase: ${enableExternalMysqlDatabase}
      connectorId: ${testConnector.id}
Copy

Create ExternalMySqlDatabaseExternalMysqlDatabasesManagement Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ExternalMySqlDatabaseExternalMysqlDatabasesManagement(name: string, args: ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs, opts?: CustomResourceOptions);
@overload
def ExternalMySqlDatabaseExternalMysqlDatabasesManagement(resource_name: str,
                                                          args: ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs,
                                                          opts: Optional[ResourceOptions] = None)

@overload
def ExternalMySqlDatabaseExternalMysqlDatabasesManagement(resource_name: str,
                                                          opts: Optional[ResourceOptions] = None,
                                                          enable_external_mysql_database: Optional[bool] = None,
                                                          external_my_sql_database_id: Optional[str] = None,
                                                          connector_id: Optional[str] = None)
func NewExternalMySqlDatabaseExternalMysqlDatabasesManagement(ctx *Context, name string, args ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs, opts ...ResourceOption) (*ExternalMySqlDatabaseExternalMysqlDatabasesManagement, error)
public ExternalMySqlDatabaseExternalMysqlDatabasesManagement(string name, ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs args, CustomResourceOptions? opts = null)
public ExternalMySqlDatabaseExternalMysqlDatabasesManagement(String name, ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs args)
public ExternalMySqlDatabaseExternalMysqlDatabasesManagement(String name, ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs args, CustomResourceOptions options)
type: oci:DatabaseManagement:ExternalMySqlDatabaseExternalMysqlDatabasesManagement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs
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 externalMySqlDatabaseExternalMysqlDatabasesManagementResource = new Oci.DatabaseManagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagement("externalMySqlDatabaseExternalMysqlDatabasesManagementResource", new()
{
    EnableExternalMysqlDatabase = false,
    ExternalMySqlDatabaseId = "string",
    ConnectorId = "string",
});
Copy
example, err := DatabaseManagement.NewExternalMySqlDatabaseExternalMysqlDatabasesManagement(ctx, "externalMySqlDatabaseExternalMysqlDatabasesManagementResource", &DatabaseManagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs{
	EnableExternalMysqlDatabase: pulumi.Bool(false),
	ExternalMySqlDatabaseId:     pulumi.String("string"),
	ConnectorId:                 pulumi.String("string"),
})
Copy
var externalMySqlDatabaseExternalMysqlDatabasesManagementResource = new ExternalMySqlDatabaseExternalMysqlDatabasesManagement("externalMySqlDatabaseExternalMysqlDatabasesManagementResource", ExternalMySqlDatabaseExternalMysqlDatabasesManagementArgs.builder()
    .enableExternalMysqlDatabase(false)
    .externalMySqlDatabaseId("string")
    .connectorId("string")
    .build());
Copy
external_my_sql_database_external_mysql_databases_management_resource = oci.database_management.ExternalMySqlDatabaseExternalMysqlDatabasesManagement("externalMySqlDatabaseExternalMysqlDatabasesManagementResource",
    enable_external_mysql_database=False,
    external_my_sql_database_id="string",
    connector_id="string")
Copy
const externalMySqlDatabaseExternalMysqlDatabasesManagementResource = new oci.databasemanagement.ExternalMySqlDatabaseExternalMysqlDatabasesManagement("externalMySqlDatabaseExternalMysqlDatabasesManagementResource", {
    enableExternalMysqlDatabase: false,
    externalMySqlDatabaseId: "string",
    connectorId: "string",
});
Copy
type: oci:DatabaseManagement:ExternalMySqlDatabaseExternalMysqlDatabasesManagement
properties:
    connectorId: string
    enableExternalMysqlDatabase: false
    externalMySqlDatabaseId: string
Copy

ExternalMySqlDatabaseExternalMysqlDatabasesManagement 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 ExternalMySqlDatabaseExternalMysqlDatabasesManagement resource accepts the following input properties:

EnableExternalMysqlDatabase This property is required. bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalMySqlDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the External MySQL Database.
ConnectorId Changes to this property will trigger replacement. string
OCID of External MySQL Database connector.
EnableExternalMysqlDatabase This property is required. bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalMySqlDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the External MySQL Database.
ConnectorId Changes to this property will trigger replacement. string
OCID of External MySQL Database connector.
enableExternalMysqlDatabase This property is required. Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalMySqlDatabaseId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the External MySQL Database.
connectorId Changes to this property will trigger replacement. String
OCID of External MySQL Database connector.
enableExternalMysqlDatabase This property is required. boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalMySqlDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the External MySQL Database.
connectorId Changes to this property will trigger replacement. string
OCID of External MySQL Database connector.
enable_external_mysql_database This property is required. bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

external_my_sql_database_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the External MySQL Database.
connector_id Changes to this property will trigger replacement. str
OCID of External MySQL Database connector.
enableExternalMysqlDatabase This property is required. Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalMySqlDatabaseId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the External MySQL Database.
connectorId Changes to this property will trigger replacement. String
OCID of External MySQL Database connector.

Outputs

All input properties are implicitly available as output properties. Additionally, the ExternalMySqlDatabaseExternalMysqlDatabasesManagement resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ExternalMySqlDatabaseExternalMysqlDatabasesManagement Resource

Get an existing ExternalMySqlDatabaseExternalMysqlDatabasesManagement 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?: ExternalMySqlDatabaseExternalMysqlDatabasesManagementState, opts?: CustomResourceOptions): ExternalMySqlDatabaseExternalMysqlDatabasesManagement
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        connector_id: Optional[str] = None,
        enable_external_mysql_database: Optional[bool] = None,
        external_my_sql_database_id: Optional[str] = None) -> ExternalMySqlDatabaseExternalMysqlDatabasesManagement
func GetExternalMySqlDatabaseExternalMysqlDatabasesManagement(ctx *Context, name string, id IDInput, state *ExternalMySqlDatabaseExternalMysqlDatabasesManagementState, opts ...ResourceOption) (*ExternalMySqlDatabaseExternalMysqlDatabasesManagement, error)
public static ExternalMySqlDatabaseExternalMysqlDatabasesManagement Get(string name, Input<string> id, ExternalMySqlDatabaseExternalMysqlDatabasesManagementState? state, CustomResourceOptions? opts = null)
public static ExternalMySqlDatabaseExternalMysqlDatabasesManagement get(String name, Output<String> id, ExternalMySqlDatabaseExternalMysqlDatabasesManagementState state, CustomResourceOptions options)
resources:  _:    type: oci:DatabaseManagement:ExternalMySqlDatabaseExternalMysqlDatabasesManagement    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ConnectorId Changes to this property will trigger replacement. string
OCID of External MySQL Database connector.
EnableExternalMysqlDatabase bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalMySqlDatabaseId Changes to this property will trigger replacement. string
The OCID of the External MySQL Database.
ConnectorId Changes to this property will trigger replacement. string
OCID of External MySQL Database connector.
EnableExternalMysqlDatabase bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalMySqlDatabaseId Changes to this property will trigger replacement. string
The OCID of the External MySQL Database.
connectorId Changes to this property will trigger replacement. String
OCID of External MySQL Database connector.
enableExternalMysqlDatabase Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalMySqlDatabaseId Changes to this property will trigger replacement. String
The OCID of the External MySQL Database.
connectorId Changes to this property will trigger replacement. string
OCID of External MySQL Database connector.
enableExternalMysqlDatabase boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalMySqlDatabaseId Changes to this property will trigger replacement. string
The OCID of the External MySQL Database.
connector_id Changes to this property will trigger replacement. str
OCID of External MySQL Database connector.
enable_external_mysql_database bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

external_my_sql_database_id Changes to this property will trigger replacement. str
The OCID of the External MySQL Database.
connectorId Changes to this property will trigger replacement. String
OCID of External MySQL Database connector.
enableExternalMysqlDatabase Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalMySqlDatabaseId Changes to this property will trigger replacement. String
The OCID of the External MySQL Database.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.