1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. PluggableDatabaseManagementsManagement
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

oci.Database.PluggableDatabaseManagementsManagement

Explore with Pulumi AI

This resource provides the Pluggable Database Pluggabledatabasemanagements Management resource in Oracle Cloud Infrastructure Database service.

Enables the Database Management service for an Oracle Pluggable Database located in Oracle Cloud Infrastructure. This service allows the pluggable database to access tools including Metrics and Performance hub. Database Management is enabled at the pluggable database (PDB) level.

Example Usage

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

const testPluggableDatabasePluggabledatabasemanagementsManagement = new oci.database.PluggableDatabaseManagementsManagement("test_pluggable_database_pluggabledatabasemanagements_management", {
    pluggableDatabaseId: testPluggableDatabase.id,
    enablePluggabledatabasemanagement: enablePluggabledatabasemanagement,
    credentialDetails: {
        passwordSecretId: testSecret.id,
        userName: testUser.name,
    },
    privateEndPointId: testPrivateEndPoint.id,
    serviceName: testService.name,
    port: pluggableDatabasePluggabledatabasemanagementsManagementPort,
    protocol: pluggableDatabasePluggabledatabasemanagementsManagementProtocol,
    role: pluggableDatabasePluggabledatabasemanagementsManagementRole,
    sslSecretId: testSecret.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_pluggable_database_pluggabledatabasemanagements_management = oci.database.PluggableDatabaseManagementsManagement("test_pluggable_database_pluggabledatabasemanagements_management",
    pluggable_database_id=test_pluggable_database["id"],
    enable_pluggabledatabasemanagement=enable_pluggabledatabasemanagement,
    credential_details={
        "password_secret_id": test_secret["id"],
        "user_name": test_user["name"],
    },
    private_end_point_id=test_private_end_point["id"],
    service_name=test_service["name"],
    port=pluggable_database_pluggabledatabasemanagements_management_port,
    protocol=pluggable_database_pluggabledatabasemanagements_management_protocol,
    role=pluggable_database_pluggabledatabasemanagements_management_role,
    ssl_secret_id=test_secret["id"])
Copy
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.NewPluggableDatabaseManagementsManagement(ctx, "test_pluggable_database_pluggabledatabasemanagements_management", &database.PluggableDatabaseManagementsManagementArgs{
			PluggableDatabaseId:               pulumi.Any(testPluggableDatabase.Id),
			EnablePluggabledatabasemanagement: pulumi.Any(enablePluggabledatabasemanagement),
			CredentialDetails: &database.PluggableDatabaseManagementsManagementCredentialDetailsArgs{
				PasswordSecretId: pulumi.Any(testSecret.Id),
				UserName:         pulumi.Any(testUser.Name),
			},
			PrivateEndPointId: pulumi.Any(testPrivateEndPoint.Id),
			ServiceName:       pulumi.Any(testService.Name),
			Port:              pulumi.Any(pluggableDatabasePluggabledatabasemanagementsManagementPort),
			Protocol:          pulumi.Any(pluggableDatabasePluggabledatabasemanagementsManagementProtocol),
			Role:              pulumi.Any(pluggableDatabasePluggabledatabasemanagementsManagementRole),
			SslSecretId:       pulumi.Any(testSecret.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 testPluggableDatabasePluggabledatabasemanagementsManagement = new Oci.Database.PluggableDatabaseManagementsManagement("test_pluggable_database_pluggabledatabasemanagements_management", new()
    {
        PluggableDatabaseId = testPluggableDatabase.Id,
        EnablePluggabledatabasemanagement = enablePluggabledatabasemanagement,
        CredentialDetails = new Oci.Database.Inputs.PluggableDatabaseManagementsManagementCredentialDetailsArgs
        {
            PasswordSecretId = testSecret.Id,
            UserName = testUser.Name,
        },
        PrivateEndPointId = testPrivateEndPoint.Id,
        ServiceName = testService.Name,
        Port = pluggableDatabasePluggabledatabasemanagementsManagementPort,
        Protocol = pluggableDatabasePluggabledatabasemanagementsManagementProtocol,
        Role = pluggableDatabasePluggabledatabasemanagementsManagementRole,
        SslSecretId = testSecret.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.PluggableDatabaseManagementsManagement;
import com.pulumi.oci.Database.PluggableDatabaseManagementsManagementArgs;
import com.pulumi.oci.Database.inputs.PluggableDatabaseManagementsManagementCredentialDetailsArgs;
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 testPluggableDatabasePluggabledatabasemanagementsManagement = new PluggableDatabaseManagementsManagement("testPluggableDatabasePluggabledatabasemanagementsManagement", PluggableDatabaseManagementsManagementArgs.builder()
            .pluggableDatabaseId(testPluggableDatabase.id())
            .enablePluggabledatabasemanagement(enablePluggabledatabasemanagement)
            .credentialDetails(PluggableDatabaseManagementsManagementCredentialDetailsArgs.builder()
                .passwordSecretId(testSecret.id())
                .userName(testUser.name())
                .build())
            .privateEndPointId(testPrivateEndPoint.id())
            .serviceName(testService.name())
            .port(pluggableDatabasePluggabledatabasemanagementsManagementPort)
            .protocol(pluggableDatabasePluggabledatabasemanagementsManagementProtocol)
            .role(pluggableDatabasePluggabledatabasemanagementsManagementRole)
            .sslSecretId(testSecret.id())
            .build());

    }
}
Copy
resources:
  testPluggableDatabasePluggabledatabasemanagementsManagement:
    type: oci:Database:PluggableDatabaseManagementsManagement
    name: test_pluggable_database_pluggabledatabasemanagements_management
    properties:
      pluggableDatabaseId: ${testPluggableDatabase.id}
      enablePluggabledatabasemanagement: ${enablePluggabledatabasemanagement}
      credentialDetails:
        passwordSecretId: ${testSecret.id}
        userName: ${testUser.name}
      privateEndPointId: ${testPrivateEndPoint.id}
      serviceName: ${testService.name}
      port: ${pluggableDatabasePluggabledatabasemanagementsManagementPort}
      protocol: ${pluggableDatabasePluggabledatabasemanagementsManagementProtocol}
      role: ${pluggableDatabasePluggabledatabasemanagementsManagementRole}
      sslSecretId: ${testSecret.id}
Copy

Create PluggableDatabaseManagementsManagement Resource

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

Constructor syntax

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

@overload
def PluggableDatabaseManagementsManagement(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           credential_details: Optional[_database.PluggableDatabaseManagementsManagementCredentialDetailsArgs] = None,
                                           enable_pluggabledatabasemanagement: Optional[bool] = None,
                                           pluggable_database_id: Optional[str] = None,
                                           private_end_point_id: Optional[str] = None,
                                           service_name: Optional[str] = None,
                                           port: Optional[int] = None,
                                           protocol: Optional[str] = None,
                                           role: Optional[str] = None,
                                           ssl_secret_id: Optional[str] = None)
func NewPluggableDatabaseManagementsManagement(ctx *Context, name string, args PluggableDatabaseManagementsManagementArgs, opts ...ResourceOption) (*PluggableDatabaseManagementsManagement, error)
public PluggableDatabaseManagementsManagement(string name, PluggableDatabaseManagementsManagementArgs args, CustomResourceOptions? opts = null)
public PluggableDatabaseManagementsManagement(String name, PluggableDatabaseManagementsManagementArgs args)
public PluggableDatabaseManagementsManagement(String name, PluggableDatabaseManagementsManagementArgs args, CustomResourceOptions options)
type: oci:Database:PluggableDatabaseManagementsManagement
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. PluggableDatabaseManagementsManagementArgs
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. PluggableDatabaseManagementsManagementArgs
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. PluggableDatabaseManagementsManagementArgs
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. PluggableDatabaseManagementsManagementArgs
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. PluggableDatabaseManagementsManagementArgs
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 pluggableDatabaseManagementsManagementResource = new Oci.Database.PluggableDatabaseManagementsManagement("pluggableDatabaseManagementsManagementResource", new()
{
    CredentialDetails = new Oci.Database.Inputs.PluggableDatabaseManagementsManagementCredentialDetailsArgs
    {
        PasswordSecretId = "string",
        UserName = "string",
    },
    EnablePluggabledatabasemanagement = false,
    PluggableDatabaseId = "string",
    PrivateEndPointId = "string",
    ServiceName = "string",
    Port = 0,
    Protocol = "string",
    Role = "string",
    SslSecretId = "string",
});
Copy
example, err := Database.NewPluggableDatabaseManagementsManagement(ctx, "pluggableDatabaseManagementsManagementResource", &Database.PluggableDatabaseManagementsManagementArgs{
	CredentialDetails: &database.PluggableDatabaseManagementsManagementCredentialDetailsArgs{
		PasswordSecretId: pulumi.String("string"),
		UserName:         pulumi.String("string"),
	},
	EnablePluggabledatabasemanagement: pulumi.Bool(false),
	PluggableDatabaseId:               pulumi.String("string"),
	PrivateEndPointId:                 pulumi.String("string"),
	ServiceName:                       pulumi.String("string"),
	Port:                              pulumi.Int(0),
	Protocol:                          pulumi.String("string"),
	Role:                              pulumi.String("string"),
	SslSecretId:                       pulumi.String("string"),
})
Copy
var pluggableDatabaseManagementsManagementResource = new PluggableDatabaseManagementsManagement("pluggableDatabaseManagementsManagementResource", PluggableDatabaseManagementsManagementArgs.builder()
    .credentialDetails(PluggableDatabaseManagementsManagementCredentialDetailsArgs.builder()
        .passwordSecretId("string")
        .userName("string")
        .build())
    .enablePluggabledatabasemanagement(false)
    .pluggableDatabaseId("string")
    .privateEndPointId("string")
    .serviceName("string")
    .port(0)
    .protocol("string")
    .role("string")
    .sslSecretId("string")
    .build());
Copy
pluggable_database_managements_management_resource = oci.database.PluggableDatabaseManagementsManagement("pluggableDatabaseManagementsManagementResource",
    credential_details={
        "password_secret_id": "string",
        "user_name": "string",
    },
    enable_pluggabledatabasemanagement=False,
    pluggable_database_id="string",
    private_end_point_id="string",
    service_name="string",
    port=0,
    protocol="string",
    role="string",
    ssl_secret_id="string")
Copy
const pluggableDatabaseManagementsManagementResource = new oci.database.PluggableDatabaseManagementsManagement("pluggableDatabaseManagementsManagementResource", {
    credentialDetails: {
        passwordSecretId: "string",
        userName: "string",
    },
    enablePluggabledatabasemanagement: false,
    pluggableDatabaseId: "string",
    privateEndPointId: "string",
    serviceName: "string",
    port: 0,
    protocol: "string",
    role: "string",
    sslSecretId: "string",
});
Copy
type: oci:Database:PluggableDatabaseManagementsManagement
properties:
    credentialDetails:
        passwordSecretId: string
        userName: string
    enablePluggabledatabasemanagement: false
    pluggableDatabaseId: string
    port: 0
    privateEndPointId: string
    protocol: string
    role: string
    serviceName: string
    sslSecretId: string
Copy

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

CredentialDetails This property is required. PluggableDatabaseManagementsManagementCredentialDetails
Data for the credential used to connect to the database.
EnablePluggabledatabasemanagement 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

PluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The database OCID.
PrivateEndPointId This property is required. string
The OCID of the private endpoint.
ServiceName This property is required. string
The name of the Oracle Database service that will be used to connect to the database.
Port Changes to this property will trigger replacement. int
The port used to connect to the pluggable database.
Protocol Changes to this property will trigger replacement. string
Protocol used by the database connection.
Role Changes to this property will trigger replacement. string
The role of the user that will be connecting to the pluggable database.
SslSecretId Changes to this property will trigger replacement. string
The OCID of the Oracle Cloud Infrastructure secret.
CredentialDetails This property is required. PluggableDatabaseManagementsManagementCredentialDetailsArgs
Data for the credential used to connect to the database.
EnablePluggabledatabasemanagement 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

PluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The database OCID.
PrivateEndPointId This property is required. string
The OCID of the private endpoint.
ServiceName This property is required. string
The name of the Oracle Database service that will be used to connect to the database.
Port Changes to this property will trigger replacement. int
The port used to connect to the pluggable database.
Protocol Changes to this property will trigger replacement. string
Protocol used by the database connection.
Role Changes to this property will trigger replacement. string
The role of the user that will be connecting to the pluggable database.
SslSecretId Changes to this property will trigger replacement. string
The OCID of the Oracle Cloud Infrastructure secret.
credentialDetails This property is required. PluggableManagementsManagementCredentialDetails
Data for the credential used to connect to the database.
enablePluggabledatabasemanagement 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

pluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
String
The database OCID.
privateEndPointId This property is required. String
The OCID of the private endpoint.
serviceName This property is required. String
The name of the Oracle Database service that will be used to connect to the database.
port Changes to this property will trigger replacement. Integer
The port used to connect to the pluggable database.
protocol Changes to this property will trigger replacement. String
Protocol used by the database connection.
role Changes to this property will trigger replacement. String
The role of the user that will be connecting to the pluggable database.
sslSecretId Changes to this property will trigger replacement. String
The OCID of the Oracle Cloud Infrastructure secret.
credentialDetails This property is required. PluggableDatabaseManagementsManagementCredentialDetails
Data for the credential used to connect to the database.
enablePluggabledatabasemanagement 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

pluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The database OCID.
privateEndPointId This property is required. string
The OCID of the private endpoint.
serviceName This property is required. string
The name of the Oracle Database service that will be used to connect to the database.
port Changes to this property will trigger replacement. number
The port used to connect to the pluggable database.
protocol Changes to this property will trigger replacement. string
Protocol used by the database connection.
role Changes to this property will trigger replacement. string
The role of the user that will be connecting to the pluggable database.
sslSecretId Changes to this property will trigger replacement. string
The OCID of the Oracle Cloud Infrastructure secret.
credential_details This property is required. database.PluggableDatabaseManagementsManagementCredentialDetailsArgs
Data for the credential used to connect to the database.
enable_pluggabledatabasemanagement 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

pluggable_database_id
This property is required.
Changes to this property will trigger replacement.
str
The database OCID.
private_end_point_id This property is required. str
The OCID of the private endpoint.
service_name This property is required. str
The name of the Oracle Database service that will be used to connect to the database.
port Changes to this property will trigger replacement. int
The port used to connect to the pluggable database.
protocol Changes to this property will trigger replacement. str
Protocol used by the database connection.
role Changes to this property will trigger replacement. str
The role of the user that will be connecting to the pluggable database.
ssl_secret_id Changes to this property will trigger replacement. str
The OCID of the Oracle Cloud Infrastructure secret.
credentialDetails This property is required. Property Map
Data for the credential used to connect to the database.
enablePluggabledatabasemanagement 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

pluggableDatabaseId
This property is required.
Changes to this property will trigger replacement.
String
The database OCID.
privateEndPointId This property is required. String
The OCID of the private endpoint.
serviceName This property is required. String
The name of the Oracle Database service that will be used to connect to the database.
port Changes to this property will trigger replacement. Number
The port used to connect to the pluggable database.
protocol Changes to this property will trigger replacement. String
Protocol used by the database connection.
role Changes to this property will trigger replacement. String
The role of the user that will be connecting to the pluggable database.
sslSecretId Changes to this property will trigger replacement. String
The OCID of the Oracle Cloud Infrastructure secret.

Outputs

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

CompartmentId string
The OCID of the compartment.
ConnectionStrings List<PluggableDatabaseManagementsManagementConnectionString>
Connection strings to connect to an Oracle Pluggable Database.
ContainerDatabaseId string
The OCID of the CDB.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
FreeformTags Dictionary<string, string>
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"}
Id string
The provider-assigned unique ID for this managed resource.
IsRestricted bool
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
LifecycleDetails string
Detailed message for the lifecycle state.
OpenMode string
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
PdbName string
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
PluggableDatabaseManagementConfigs List<PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfig>
The configuration of the Pluggable Database Management service.
State string
The current state of the pluggable database.
TimeCreated string
The date and time the pluggable database was created.
CompartmentId string
The OCID of the compartment.
ConnectionStrings []PluggableDatabaseManagementsManagementConnectionString
Connection strings to connect to an Oracle Pluggable Database.
ContainerDatabaseId string
The OCID of the CDB.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
FreeformTags map[string]string
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"}
Id string
The provider-assigned unique ID for this managed resource.
IsRestricted bool
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
LifecycleDetails string
Detailed message for the lifecycle state.
OpenMode string
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
PdbName string
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
PluggableDatabaseManagementConfigs []PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfig
The configuration of the Pluggable Database Management service.
State string
The current state of the pluggable database.
TimeCreated string
The date and time the pluggable database was created.
compartmentId String
The OCID of the compartment.
connectionStrings List<PluggableManagementsManagementConnectionString>
Connection strings to connect to an Oracle Pluggable Database.
containerDatabaseId String
The OCID of the CDB.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeformTags Map<String,String>
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"}
id String
The provider-assigned unique ID for this managed resource.
isRestricted Boolean
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycleDetails String
Detailed message for the lifecycle state.
openMode String
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdbName String
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggableDatabaseManagementConfigs List<PluggableManagementsManagementPluggableManagementConfig>
The configuration of the Pluggable Database Management service.
state String
The current state of the pluggable database.
timeCreated String
The date and time the pluggable database was created.
compartmentId string
The OCID of the compartment.
connectionStrings PluggableDatabaseManagementsManagementConnectionString[]
Connection strings to connect to an Oracle Pluggable Database.
containerDatabaseId string
The OCID of the CDB.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeformTags {[key: string]: string}
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"}
id string
The provider-assigned unique ID for this managed resource.
isRestricted boolean
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycleDetails string
Detailed message for the lifecycle state.
openMode string
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdbName string
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggableDatabaseManagementConfigs PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfig[]
The configuration of the Pluggable Database Management service.
state string
The current state of the pluggable database.
timeCreated string
The date and time the pluggable database was created.
compartment_id str
The OCID of the compartment.
connection_strings Sequence[database.PluggableDatabaseManagementsManagementConnectionString]
Connection strings to connect to an Oracle Pluggable Database.
container_database_id str
The OCID of the CDB.
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeform_tags Mapping[str, str]
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"}
id str
The provider-assigned unique ID for this managed resource.
is_restricted bool
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycle_details str
Detailed message for the lifecycle state.
open_mode str
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdb_name str
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggable_database_management_configs Sequence[database.PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfig]
The configuration of the Pluggable Database Management service.
state str
The current state of the pluggable database.
time_created str
The date and time the pluggable database was created.
compartmentId String
The OCID of the compartment.
connectionStrings List<Property Map>
Connection strings to connect to an Oracle Pluggable Database.
containerDatabaseId String
The OCID of the CDB.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeformTags Map<String>
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"}
id String
The provider-assigned unique ID for this managed resource.
isRestricted Boolean
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycleDetails String
Detailed message for the lifecycle state.
openMode String
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdbName String
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggableDatabaseManagementConfigs List<Property Map>
The configuration of the Pluggable Database Management service.
state String
The current state of the pluggable database.
timeCreated String
The date and time the pluggable database was created.

Look up Existing PluggableDatabaseManagementsManagement Resource

Get an existing PluggableDatabaseManagementsManagement 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?: PluggableDatabaseManagementsManagementState, opts?: CustomResourceOptions): PluggableDatabaseManagementsManagement
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        connection_strings: Optional[Sequence[_database.PluggableDatabaseManagementsManagementConnectionStringArgs]] = None,
        container_database_id: Optional[str] = None,
        credential_details: Optional[_database.PluggableDatabaseManagementsManagementCredentialDetailsArgs] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        enable_pluggabledatabasemanagement: Optional[bool] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_restricted: Optional[bool] = None,
        lifecycle_details: Optional[str] = None,
        open_mode: Optional[str] = None,
        pdb_name: Optional[str] = None,
        pluggable_database_id: Optional[str] = None,
        pluggable_database_management_configs: Optional[Sequence[_database.PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfigArgs]] = None,
        port: Optional[int] = None,
        private_end_point_id: Optional[str] = None,
        protocol: Optional[str] = None,
        role: Optional[str] = None,
        service_name: Optional[str] = None,
        ssl_secret_id: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None) -> PluggableDatabaseManagementsManagement
func GetPluggableDatabaseManagementsManagement(ctx *Context, name string, id IDInput, state *PluggableDatabaseManagementsManagementState, opts ...ResourceOption) (*PluggableDatabaseManagementsManagement, error)
public static PluggableDatabaseManagementsManagement Get(string name, Input<string> id, PluggableDatabaseManagementsManagementState? state, CustomResourceOptions? opts = null)
public static PluggableDatabaseManagementsManagement get(String name, Output<String> id, PluggableDatabaseManagementsManagementState state, CustomResourceOptions options)
resources:  _:    type: oci:Database:PluggableDatabaseManagementsManagement    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:
CompartmentId string
The OCID of the compartment.
ConnectionStrings List<PluggableDatabaseManagementsManagementConnectionString>
Connection strings to connect to an Oracle Pluggable Database.
ContainerDatabaseId string
The OCID of the CDB.
CredentialDetails PluggableDatabaseManagementsManagementCredentialDetails
Data for the credential used to connect to the database.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
EnablePluggabledatabasemanagement 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

FreeformTags Dictionary<string, string>
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"}
IsRestricted bool
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
LifecycleDetails string
Detailed message for the lifecycle state.
OpenMode string
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
PdbName string
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
PluggableDatabaseId Changes to this property will trigger replacement. string
The database OCID.
PluggableDatabaseManagementConfigs List<PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfig>
The configuration of the Pluggable Database Management service.
Port Changes to this property will trigger replacement. int
The port used to connect to the pluggable database.
PrivateEndPointId string
The OCID of the private endpoint.
Protocol Changes to this property will trigger replacement. string
Protocol used by the database connection.
Role Changes to this property will trigger replacement. string
The role of the user that will be connecting to the pluggable database.
ServiceName string
The name of the Oracle Database service that will be used to connect to the database.
SslSecretId Changes to this property will trigger replacement. string
The OCID of the Oracle Cloud Infrastructure secret.
State string
The current state of the pluggable database.
TimeCreated string
The date and time the pluggable database was created.
CompartmentId string
The OCID of the compartment.
ConnectionStrings []PluggableDatabaseManagementsManagementConnectionStringArgs
Connection strings to connect to an Oracle Pluggable Database.
ContainerDatabaseId string
The OCID of the CDB.
CredentialDetails PluggableDatabaseManagementsManagementCredentialDetailsArgs
Data for the credential used to connect to the database.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
EnablePluggabledatabasemanagement 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

FreeformTags map[string]string
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"}
IsRestricted bool
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
LifecycleDetails string
Detailed message for the lifecycle state.
OpenMode string
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
PdbName string
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
PluggableDatabaseId Changes to this property will trigger replacement. string
The database OCID.
PluggableDatabaseManagementConfigs []PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfigArgs
The configuration of the Pluggable Database Management service.
Port Changes to this property will trigger replacement. int
The port used to connect to the pluggable database.
PrivateEndPointId string
The OCID of the private endpoint.
Protocol Changes to this property will trigger replacement. string
Protocol used by the database connection.
Role Changes to this property will trigger replacement. string
The role of the user that will be connecting to the pluggable database.
ServiceName string
The name of the Oracle Database service that will be used to connect to the database.
SslSecretId Changes to this property will trigger replacement. string
The OCID of the Oracle Cloud Infrastructure secret.
State string
The current state of the pluggable database.
TimeCreated string
The date and time the pluggable database was created.
compartmentId String
The OCID of the compartment.
connectionStrings List<PluggableManagementsManagementConnectionString>
Connection strings to connect to an Oracle Pluggable Database.
containerDatabaseId String
The OCID of the CDB.
credentialDetails PluggableManagementsManagementCredentialDetails
Data for the credential used to connect to the database.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
enablePluggabledatabasemanagement 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

freeformTags Map<String,String>
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"}
isRestricted Boolean
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycleDetails String
Detailed message for the lifecycle state.
openMode String
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdbName String
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggableDatabaseId Changes to this property will trigger replacement. String
The database OCID.
pluggableDatabaseManagementConfigs List<PluggableManagementsManagementPluggableManagementConfig>
The configuration of the Pluggable Database Management service.
port Changes to this property will trigger replacement. Integer
The port used to connect to the pluggable database.
privateEndPointId String
The OCID of the private endpoint.
protocol Changes to this property will trigger replacement. String
Protocol used by the database connection.
role Changes to this property will trigger replacement. String
The role of the user that will be connecting to the pluggable database.
serviceName String
The name of the Oracle Database service that will be used to connect to the database.
sslSecretId Changes to this property will trigger replacement. String
The OCID of the Oracle Cloud Infrastructure secret.
state String
The current state of the pluggable database.
timeCreated String
The date and time the pluggable database was created.
compartmentId string
The OCID of the compartment.
connectionStrings PluggableDatabaseManagementsManagementConnectionString[]
Connection strings to connect to an Oracle Pluggable Database.
containerDatabaseId string
The OCID of the CDB.
credentialDetails PluggableDatabaseManagementsManagementCredentialDetails
Data for the credential used to connect to the database.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
enablePluggabledatabasemanagement 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

freeformTags {[key: string]: string}
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"}
isRestricted boolean
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycleDetails string
Detailed message for the lifecycle state.
openMode string
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdbName string
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggableDatabaseId Changes to this property will trigger replacement. string
The database OCID.
pluggableDatabaseManagementConfigs PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfig[]
The configuration of the Pluggable Database Management service.
port Changes to this property will trigger replacement. number
The port used to connect to the pluggable database.
privateEndPointId string
The OCID of the private endpoint.
protocol Changes to this property will trigger replacement. string
Protocol used by the database connection.
role Changes to this property will trigger replacement. string
The role of the user that will be connecting to the pluggable database.
serviceName string
The name of the Oracle Database service that will be used to connect to the database.
sslSecretId Changes to this property will trigger replacement. string
The OCID of the Oracle Cloud Infrastructure secret.
state string
The current state of the pluggable database.
timeCreated string
The date and time the pluggable database was created.
compartment_id str
The OCID of the compartment.
connection_strings Sequence[database.PluggableDatabaseManagementsManagementConnectionStringArgs]
Connection strings to connect to an Oracle Pluggable Database.
container_database_id str
The OCID of the CDB.
credential_details database.PluggableDatabaseManagementsManagementCredentialDetailsArgs
Data for the credential used to connect to the database.
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
enable_pluggabledatabasemanagement 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

freeform_tags Mapping[str, str]
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"}
is_restricted bool
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycle_details str
Detailed message for the lifecycle state.
open_mode str
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdb_name str
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggable_database_id Changes to this property will trigger replacement. str
The database OCID.
pluggable_database_management_configs Sequence[database.PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfigArgs]
The configuration of the Pluggable Database Management service.
port Changes to this property will trigger replacement. int
The port used to connect to the pluggable database.
private_end_point_id str
The OCID of the private endpoint.
protocol Changes to this property will trigger replacement. str
Protocol used by the database connection.
role Changes to this property will trigger replacement. str
The role of the user that will be connecting to the pluggable database.
service_name str
The name of the Oracle Database service that will be used to connect to the database.
ssl_secret_id Changes to this property will trigger replacement. str
The OCID of the Oracle Cloud Infrastructure secret.
state str
The current state of the pluggable database.
time_created str
The date and time the pluggable database was created.
compartmentId String
The OCID of the compartment.
connectionStrings List<Property Map>
Connection strings to connect to an Oracle Pluggable Database.
containerDatabaseId String
The OCID of the CDB.
credentialDetails Property Map
Data for the credential used to connect to the database.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
enablePluggabledatabasemanagement 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

freeformTags Map<String>
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"}
isRestricted Boolean
The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
lifecycleDetails String
Detailed message for the lifecycle state.
openMode String
The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
pdbName String
The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
pluggableDatabaseId Changes to this property will trigger replacement. String
The database OCID.
pluggableDatabaseManagementConfigs List<Property Map>
The configuration of the Pluggable Database Management service.
port Changes to this property will trigger replacement. Number
The port used to connect to the pluggable database.
privateEndPointId String
The OCID of the private endpoint.
protocol Changes to this property will trigger replacement. String
Protocol used by the database connection.
role Changes to this property will trigger replacement. String
The role of the user that will be connecting to the pluggable database.
serviceName String
The name of the Oracle Database service that will be used to connect to the database.
sslSecretId Changes to this property will trigger replacement. String
The OCID of the Oracle Cloud Infrastructure secret.
state String
The current state of the pluggable database.
timeCreated String
The date and time the pluggable database was created.

Supporting Types

PluggableDatabaseManagementsManagementConnectionString
, PluggableDatabaseManagementsManagementConnectionStringArgs

EnablePluggabledatabasemanagement 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

AllConnectionStrings Dictionary<string, string>
All connection strings to use to connect to the pluggable database.
PdbDefault string
A host name-based PDB connection string.
PdbIpDefault string
An IP-based PDB connection string.
EnablePluggabledatabasemanagement 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

AllConnectionStrings map[string]string
All connection strings to use to connect to the pluggable database.
PdbDefault string
A host name-based PDB connection string.
PdbIpDefault string
An IP-based PDB connection string.
enablePluggabledatabasemanagement 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

allConnectionStrings Map<String,String>
All connection strings to use to connect to the pluggable database.
pdbDefault String
A host name-based PDB connection string.
pdbIpDefault String
An IP-based PDB connection string.
enablePluggabledatabasemanagement 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

allConnectionStrings {[key: string]: string}
All connection strings to use to connect to the pluggable database.
pdbDefault string
A host name-based PDB connection string.
pdbIpDefault string
An IP-based PDB connection string.
enable_pluggabledatabasemanagement 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

all_connection_strings Mapping[str, str]
All connection strings to use to connect to the pluggable database.
pdb_default str
A host name-based PDB connection string.
pdb_ip_default str
An IP-based PDB connection string.
enablePluggabledatabasemanagement 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

allConnectionStrings Map<String>
All connection strings to use to connect to the pluggable database.
pdbDefault String
A host name-based PDB connection string.
pdbIpDefault String
An IP-based PDB connection string.

PluggableDatabaseManagementsManagementCredentialDetails
, PluggableDatabaseManagementsManagementCredentialDetailsArgs

PasswordSecretId This property is required. string
The OCID of the Oracle Cloud Infrastructure secret.
UserName This property is required. string
The name of the Oracle Database user that will be used to connect to the database.
PasswordSecretId This property is required. string
The OCID of the Oracle Cloud Infrastructure secret.
UserName This property is required. string
The name of the Oracle Database user that will be used to connect to the database.
passwordSecretId This property is required. String
The OCID of the Oracle Cloud Infrastructure secret.
userName This property is required. String
The name of the Oracle Database user that will be used to connect to the database.
passwordSecretId This property is required. string
The OCID of the Oracle Cloud Infrastructure secret.
userName This property is required. string
The name of the Oracle Database user that will be used to connect to the database.
password_secret_id This property is required. str
The OCID of the Oracle Cloud Infrastructure secret.
user_name This property is required. str
The name of the Oracle Database user that will be used to connect to the database.
passwordSecretId This property is required. String
The OCID of the Oracle Cloud Infrastructure secret.
userName This property is required. String
The name of the Oracle Database user that will be used to connect to the database.

PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfig
, PluggableDatabaseManagementsManagementPluggableDatabaseManagementConfigArgs

EnablePluggabledatabasemanagement 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

ManagementStatus string
The status of the Pluggable Database Management service.
EnablePluggabledatabasemanagement 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

ManagementStatus string
The status of the Pluggable Database Management service.
enablePluggabledatabasemanagement 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

managementStatus String
The status of the Pluggable Database Management service.
enablePluggabledatabasemanagement 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

managementStatus string
The status of the Pluggable Database Management service.
enable_pluggabledatabasemanagement 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

management_status str
The status of the Pluggable Database Management service.
enablePluggabledatabasemanagement 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

managementStatus String
The status of the Pluggable Database Management service.

Package Details

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