1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. DatabaseDbmFeaturesManagement
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

oci.DatabaseManagement.DatabaseDbmFeaturesManagement

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

    This resource provides the Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.

    Enables a Database Management feature for the specified cloud database.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.DatabaseDbmFeaturesManagement;
    import com.pulumi.oci.DatabaseManagement.DatabaseDbmFeaturesManagementArgs;
    import com.pulumi.oci.DatabaseManagement.inputs.DatabaseDbmFeaturesManagementFeatureDetailsArgs;
    import com.pulumi.oci.DatabaseManagement.inputs.DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs;
    import com.pulumi.oci.DatabaseManagement.inputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs;
    import com.pulumi.oci.DatabaseManagement.inputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs;
    import com.pulumi.oci.DatabaseManagement.inputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs;
    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 testDatabaseDbmFeaturesManagement = new DatabaseDbmFeaturesManagement("testDatabaseDbmFeaturesManagement", DatabaseDbmFeaturesManagementArgs.builder()
                .databaseId(testDatabase.id())
                .enableDatabaseDbmFeature(enableDatabaseDbmFeature)
                .featureDetails(DatabaseDbmFeaturesManagementFeatureDetailsArgs.builder()
                    .feature(databaseDbmFeaturesManagementFeatureDetailsFeature)
                    .enableDatabaseDbmFeature(enableDatabaseDbmFeature)
                    .connectorDetails(DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs.builder()
                        .connectorType(databaseDbmFeaturesManagementFeatureDetailsConnectorDetailsConnectorType)
                        .databaseConnectorId(testDatabaseConnector.id())
                        .managementAgentId(testManagementAgent.id())
                        .privateEndPointId(testPrivateEndPoint.id())
                        .build())
                    .databaseConnectionDetails(DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs.builder()
                        .connectionCredentials(DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs.builder()
                            .credentialName(databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsCredentialName)
                            .credentialType(databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsCredentialType)
                            .passwordSecretId(testSecret.id())
                            .role(databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsRole)
                            .sslSecretId(testSecret.id())
                            .userName(testUser.name())
                            .build())
                        .connectionString(DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs.builder()
                            .connectionType(databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringConnectionType)
                            .port(databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringPort)
                            .protocol(databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringProtocol)
                            .service(databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringService)
                            .build())
                        .build())
                    .managementType(databaseDbmFeaturesManagementFeatureDetailsManagementType)
                    .isAutoEnablePluggableDatabase(databaseDbmFeaturesManagementFeatureDetailsIsAutoEnablePluggableDatabase)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testDatabaseDbmFeaturesManagement:
        type: oci:DatabaseManagement:DatabaseDbmFeaturesManagement
        name: test_database_dbm_features_management
        properties:
          databaseId: ${testDatabase.id}
          enableDatabaseDbmFeature: ${enableDatabaseDbmFeature}
          featureDetails:
            feature: ${databaseDbmFeaturesManagementFeatureDetailsFeature}
            enableDatabaseDbmFeature: ${enableDatabaseDbmFeature}
            connectorDetails:
              connectorType: ${databaseDbmFeaturesManagementFeatureDetailsConnectorDetailsConnectorType}
              databaseConnectorId: ${testDatabaseConnector.id}
              managementAgentId: ${testManagementAgent.id}
              privateEndPointId: ${testPrivateEndPoint.id}
            databaseConnectionDetails:
              connectionCredentials:
                credentialName: ${databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsCredentialName}
                credentialType: ${databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsCredentialType}
                passwordSecretId: ${testSecret.id}
                role: ${databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsRole}
                sslSecretId: ${testSecret.id}
                userName: ${testUser.name}
              connectionString:
                connectionType: ${databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringConnectionType}
                port: ${databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringPort}
                protocol: ${databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringProtocol}
                service: ${databaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringService}
            managementType: ${databaseDbmFeaturesManagementFeatureDetailsManagementType}
            isAutoEnablePluggableDatabase: ${databaseDbmFeaturesManagementFeatureDetailsIsAutoEnablePluggableDatabase}
    

    Create DatabaseDbmFeaturesManagement Resource

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

    Constructor syntax

    new DatabaseDbmFeaturesManagement(name: string, args: DatabaseDbmFeaturesManagementArgs, opts?: CustomResourceOptions);
    @overload
    def DatabaseDbmFeaturesManagement(resource_name: str,
                                      args: DatabaseDbmFeaturesManagementArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def DatabaseDbmFeaturesManagement(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      database_id: Optional[str] = None,
                                      enable_database_dbm_feature: Optional[bool] = None,
                                      feature_details: Optional[_databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsArgs] = None)
    func NewDatabaseDbmFeaturesManagement(ctx *Context, name string, args DatabaseDbmFeaturesManagementArgs, opts ...ResourceOption) (*DatabaseDbmFeaturesManagement, error)
    public DatabaseDbmFeaturesManagement(string name, DatabaseDbmFeaturesManagementArgs args, CustomResourceOptions? opts = null)
    public DatabaseDbmFeaturesManagement(String name, DatabaseDbmFeaturesManagementArgs args)
    public DatabaseDbmFeaturesManagement(String name, DatabaseDbmFeaturesManagementArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseManagement:DatabaseDbmFeaturesManagement
    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 DatabaseDbmFeaturesManagementArgs
    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 DatabaseDbmFeaturesManagementArgs
    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 DatabaseDbmFeaturesManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatabaseDbmFeaturesManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatabaseDbmFeaturesManagementArgs
    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 databaseDbmFeaturesManagementResource = new Oci.DatabaseManagement.DatabaseDbmFeaturesManagement("databaseDbmFeaturesManagementResource", new()
    {
        DatabaseId = "string",
        EnableDatabaseDbmFeature = false,
        FeatureDetails = new Oci.DatabaseManagement.Inputs.DatabaseDbmFeaturesManagementFeatureDetailsArgs
        {
            Feature = "string",
            ConnectorDetails = new Oci.DatabaseManagement.Inputs.DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs
            {
                ConnectorType = "string",
                DatabaseConnectorId = "string",
                ManagementAgentId = "string",
                PrivateEndPointId = "string",
            },
            DatabaseConnectionDetails = new Oci.DatabaseManagement.Inputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs
            {
                ConnectionCredentials = new Oci.DatabaseManagement.Inputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs
                {
                    CredentialName = "string",
                    CredentialType = "string",
                    PasswordSecretId = "string",
                    Role = "string",
                    SslSecretId = "string",
                    UserName = "string",
                },
                ConnectionString = new Oci.DatabaseManagement.Inputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs
                {
                    ConnectionType = "string",
                    Port = 0,
                    Protocol = "string",
                    Service = "string",
                },
            },
            IsAutoEnablePluggableDatabase = false,
            ManagementType = "string",
        },
    });
    
    example, err := DatabaseManagement.NewDatabaseDbmFeaturesManagement(ctx, "databaseDbmFeaturesManagementResource", &DatabaseManagement.DatabaseDbmFeaturesManagementArgs{
    	DatabaseId:               pulumi.String("string"),
    	EnableDatabaseDbmFeature: pulumi.Bool(false),
    	FeatureDetails: &databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsArgs{
    		Feature: pulumi.String("string"),
    		ConnectorDetails: &databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs{
    			ConnectorType:       pulumi.String("string"),
    			DatabaseConnectorId: pulumi.String("string"),
    			ManagementAgentId:   pulumi.String("string"),
    			PrivateEndPointId:   pulumi.String("string"),
    		},
    		DatabaseConnectionDetails: &databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs{
    			ConnectionCredentials: &databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs{
    				CredentialName:   pulumi.String("string"),
    				CredentialType:   pulumi.String("string"),
    				PasswordSecretId: pulumi.String("string"),
    				Role:             pulumi.String("string"),
    				SslSecretId:      pulumi.String("string"),
    				UserName:         pulumi.String("string"),
    			},
    			ConnectionString: &databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs{
    				ConnectionType: pulumi.String("string"),
    				Port:           pulumi.Int(0),
    				Protocol:       pulumi.String("string"),
    				Service:        pulumi.String("string"),
    			},
    		},
    		IsAutoEnablePluggableDatabase: pulumi.Bool(false),
    		ManagementType:                pulumi.String("string"),
    	},
    })
    
    var databaseDbmFeaturesManagementResource = new DatabaseDbmFeaturesManagement("databaseDbmFeaturesManagementResource", DatabaseDbmFeaturesManagementArgs.builder()
        .databaseId("string")
        .enableDatabaseDbmFeature(false)
        .featureDetails(DatabaseDbmFeaturesManagementFeatureDetailsArgs.builder()
            .feature("string")
            .connectorDetails(DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs.builder()
                .connectorType("string")
                .databaseConnectorId("string")
                .managementAgentId("string")
                .privateEndPointId("string")
                .build())
            .databaseConnectionDetails(DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs.builder()
                .connectionCredentials(DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs.builder()
                    .credentialName("string")
                    .credentialType("string")
                    .passwordSecretId("string")
                    .role("string")
                    .sslSecretId("string")
                    .userName("string")
                    .build())
                .connectionString(DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs.builder()
                    .connectionType("string")
                    .port(0)
                    .protocol("string")
                    .service("string")
                    .build())
                .build())
            .isAutoEnablePluggableDatabase(false)
            .managementType("string")
            .build())
        .build());
    
    database_dbm_features_management_resource = oci.database_management.DatabaseDbmFeaturesManagement("databaseDbmFeaturesManagementResource",
        database_id="string",
        enable_database_dbm_feature=False,
        feature_details=oci.database_management.DatabaseDbmFeaturesManagementFeatureDetailsArgs(
            feature="string",
            connector_details=oci.database_management.DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs(
                connector_type="string",
                database_connector_id="string",
                management_agent_id="string",
                private_end_point_id="string",
            ),
            database_connection_details=oci.database_management.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs(
                connection_credentials=oci.database_management.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs(
                    credential_name="string",
                    credential_type="string",
                    password_secret_id="string",
                    role="string",
                    ssl_secret_id="string",
                    user_name="string",
                ),
                connection_string=oci.database_management.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs(
                    connection_type="string",
                    port=0,
                    protocol="string",
                    service="string",
                ),
            ),
            is_auto_enable_pluggable_database=False,
            management_type="string",
        ))
    
    const databaseDbmFeaturesManagementResource = new oci.databasemanagement.DatabaseDbmFeaturesManagement("databaseDbmFeaturesManagementResource", {
        databaseId: "string",
        enableDatabaseDbmFeature: false,
        featureDetails: {
            feature: "string",
            connectorDetails: {
                connectorType: "string",
                databaseConnectorId: "string",
                managementAgentId: "string",
                privateEndPointId: "string",
            },
            databaseConnectionDetails: {
                connectionCredentials: {
                    credentialName: "string",
                    credentialType: "string",
                    passwordSecretId: "string",
                    role: "string",
                    sslSecretId: "string",
                    userName: "string",
                },
                connectionString: {
                    connectionType: "string",
                    port: 0,
                    protocol: "string",
                    service: "string",
                },
            },
            isAutoEnablePluggableDatabase: false,
            managementType: "string",
        },
    });
    
    type: oci:DatabaseManagement:DatabaseDbmFeaturesManagement
    properties:
        databaseId: string
        enableDatabaseDbmFeature: false
        featureDetails:
            connectorDetails:
                connectorType: string
                databaseConnectorId: string
                managementAgentId: string
                privateEndPointId: string
            databaseConnectionDetails:
                connectionCredentials:
                    credentialName: string
                    credentialType: string
                    passwordSecretId: string
                    role: string
                    sslSecretId: string
                    userName: string
                connectionString:
                    connectionType: string
                    port: 0
                    protocol: string
                    service: string
            feature: string
            isAutoEnablePluggableDatabase: false
            managementType: string
    

    DatabaseDbmFeaturesManagement Resource Properties

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

    Inputs

    The DatabaseDbmFeaturesManagement resource accepts the following input properties:

    DatabaseId string
    The OCID of the Database.
    EnableDatabaseDbmFeature 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

    FeatureDetails DatabaseDbmFeaturesManagementFeatureDetails
    The details required to enable the specified Database Management feature.
    DatabaseId string
    The OCID of the Database.
    EnableDatabaseDbmFeature 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

    FeatureDetails DatabaseDbmFeaturesManagementFeatureDetailsArgs
    The details required to enable the specified Database Management feature.
    databaseId String
    The OCID of the Database.
    enableDatabaseDbmFeature 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

    featureDetails DatabaseDbmFeaturesManagementFeatureDetails
    The details required to enable the specified Database Management feature.
    databaseId string
    The OCID of the Database.
    enableDatabaseDbmFeature 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

    featureDetails DatabaseDbmFeaturesManagementFeatureDetails
    The details required to enable the specified Database Management feature.
    database_id str
    The OCID of the Database.
    enable_database_dbm_feature 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

    feature_details databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsArgs
    The details required to enable the specified Database Management feature.
    databaseId String
    The OCID of the Database.
    enableDatabaseDbmFeature 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

    featureDetails Property Map
    The details required to enable the specified Database Management feature.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DatabaseDbmFeaturesManagement 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 DatabaseDbmFeaturesManagement Resource

    Get an existing DatabaseDbmFeaturesManagement 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?: DatabaseDbmFeaturesManagementState, opts?: CustomResourceOptions): DatabaseDbmFeaturesManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            database_id: Optional[str] = None,
            enable_database_dbm_feature: Optional[bool] = None,
            feature_details: Optional[_databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsArgs] = None) -> DatabaseDbmFeaturesManagement
    func GetDatabaseDbmFeaturesManagement(ctx *Context, name string, id IDInput, state *DatabaseDbmFeaturesManagementState, opts ...ResourceOption) (*DatabaseDbmFeaturesManagement, error)
    public static DatabaseDbmFeaturesManagement Get(string name, Input<string> id, DatabaseDbmFeaturesManagementState? state, CustomResourceOptions? opts = null)
    public static DatabaseDbmFeaturesManagement get(String name, Output<String> id, DatabaseDbmFeaturesManagementState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DatabaseId string
    The OCID of the Database.
    EnableDatabaseDbmFeature 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

    FeatureDetails DatabaseDbmFeaturesManagementFeatureDetails
    The details required to enable the specified Database Management feature.
    DatabaseId string
    The OCID of the Database.
    EnableDatabaseDbmFeature 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

    FeatureDetails DatabaseDbmFeaturesManagementFeatureDetailsArgs
    The details required to enable the specified Database Management feature.
    databaseId String
    The OCID of the Database.
    enableDatabaseDbmFeature 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

    featureDetails DatabaseDbmFeaturesManagementFeatureDetails
    The details required to enable the specified Database Management feature.
    databaseId string
    The OCID of the Database.
    enableDatabaseDbmFeature 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

    featureDetails DatabaseDbmFeaturesManagementFeatureDetails
    The details required to enable the specified Database Management feature.
    database_id str
    The OCID of the Database.
    enable_database_dbm_feature 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

    feature_details databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsArgs
    The details required to enable the specified Database Management feature.
    databaseId String
    The OCID of the Database.
    enableDatabaseDbmFeature 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

    featureDetails Property Map
    The details required to enable the specified Database Management feature.

    Supporting Types

    DatabaseDbmFeaturesManagementFeatureDetails, DatabaseDbmFeaturesManagementFeatureDetailsArgs

    Feature string
    The name of the Database Management feature.
    ConnectorDetails DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails
    The connector details required to connect to an Oracle cloud database.
    DatabaseConnectionDetails DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails
    The connection details required to connect to the database.
    IsAutoEnablePluggableDatabase bool
    Indicates whether the pluggable database can be enabled automatically.
    ManagementType string
    The management type for the database.
    Feature string
    The name of the Database Management feature.
    ConnectorDetails DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails
    The connector details required to connect to an Oracle cloud database.
    DatabaseConnectionDetails DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails
    The connection details required to connect to the database.
    IsAutoEnablePluggableDatabase bool
    Indicates whether the pluggable database can be enabled automatically.
    ManagementType string
    The management type for the database.
    feature String
    The name of the Database Management feature.
    connectorDetails DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails
    The connector details required to connect to an Oracle cloud database.
    databaseConnectionDetails DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails
    The connection details required to connect to the database.
    isAutoEnablePluggableDatabase Boolean
    Indicates whether the pluggable database can be enabled automatically.
    managementType String
    The management type for the database.
    feature string
    The name of the Database Management feature.
    connectorDetails DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails
    The connector details required to connect to an Oracle cloud database.
    databaseConnectionDetails DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails
    The connection details required to connect to the database.
    isAutoEnablePluggableDatabase boolean
    Indicates whether the pluggable database can be enabled automatically.
    managementType string
    The management type for the database.
    feature str
    The name of the Database Management feature.
    connector_details databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails
    The connector details required to connect to an Oracle cloud database.
    database_connection_details databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails
    The connection details required to connect to the database.
    is_auto_enable_pluggable_database bool
    Indicates whether the pluggable database can be enabled automatically.
    management_type str
    The management type for the database.
    feature String
    The name of the Database Management feature.
    connectorDetails Property Map
    The connector details required to connect to an Oracle cloud database.
    databaseConnectionDetails Property Map
    The connection details required to connect to the database.
    isAutoEnablePluggableDatabase Boolean
    Indicates whether the pluggable database can be enabled automatically.
    managementType String
    The management type for the database.

    DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails, DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs

    ConnectorType string
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    DatabaseConnectorId string
    The OCID of the external database connector.
    ManagementAgentId string
    The OCID of the management agent.
    PrivateEndPointId string
    The OCID of the private endpoint.
    ConnectorType string
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    DatabaseConnectorId string
    The OCID of the external database connector.
    ManagementAgentId string
    The OCID of the management agent.
    PrivateEndPointId string
    The OCID of the private endpoint.
    connectorType String
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    databaseConnectorId String
    The OCID of the external database connector.
    managementAgentId String
    The OCID of the management agent.
    privateEndPointId String
    The OCID of the private endpoint.
    connectorType string
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    databaseConnectorId string
    The OCID of the external database connector.
    managementAgentId string
    The OCID of the management agent.
    privateEndPointId string
    The OCID of the private endpoint.
    connector_type str
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    database_connector_id str
    The OCID of the external database connector.
    management_agent_id str
    The OCID of the management agent.
    private_end_point_id str
    The OCID of the private endpoint.
    connectorType String
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    databaseConnectorId String
    The OCID of the external database connector.
    managementAgentId String
    The OCID of the management agent.
    privateEndPointId String
    The OCID of the private endpoint.

    DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails, DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs

    ConnectionCredentials DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    ConnectionString DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString
    The details of the Oracle Database connection string.
    ConnectionCredentials DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    ConnectionString DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString
    The details of the Oracle Database connection string.
    connectionCredentials DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionString DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString
    The details of the Oracle Database connection string.
    connectionCredentials DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionString DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString
    The details of the Oracle Database connection string.
    connection_credentials databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connection_string databasemanagement.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString
    The details of the Oracle Database connection string.
    connectionCredentials Property Map
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionString Property Map
    The details of the Oracle Database connection string.

    DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials, DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs

    CredentialName string

    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.

    For example: inventorydb.abc112233445566778899

    CredentialType string
    The type of credential used to connect to the database.
    PasswordSecretId string
    The OCID of the secret containing the user password.
    Role string
    The role of the user connecting to the database.
    SslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    UserName string
    The user name used to connect to the database.
    CredentialName string

    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.

    For example: inventorydb.abc112233445566778899

    CredentialType string
    The type of credential used to connect to the database.
    PasswordSecretId string
    The OCID of the secret containing the user password.
    Role string
    The role of the user connecting to the database.
    SslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    UserName string
    The user name used to connect to the database.
    credentialName String

    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.

    For example: inventorydb.abc112233445566778899

    credentialType String
    The type of credential used to connect to the database.
    passwordSecretId String
    The OCID of the secret containing the user password.
    role String
    The role of the user connecting to the database.
    sslSecretId String
    The OCID of the secret containing the SSL keystore and truststore details.
    userName String
    The user name used to connect to the database.
    credentialName string

    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.

    For example: inventorydb.abc112233445566778899

    credentialType string
    The type of credential used to connect to the database.
    passwordSecretId string
    The OCID of the secret containing the user password.
    role string
    The role of the user connecting to the database.
    sslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    userName string
    The user name used to connect to the database.
    credential_name str

    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.

    For example: inventorydb.abc112233445566778899

    credential_type str
    The type of credential used to connect to the database.
    password_secret_id str
    The OCID of the secret containing the user password.
    role str
    The role of the user connecting to the database.
    ssl_secret_id str
    The OCID of the secret containing the SSL keystore and truststore details.
    user_name str
    The user name used to connect to the database.
    credentialName String

    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.

    For example: inventorydb.abc112233445566778899

    credentialType String
    The type of credential used to connect to the database.
    passwordSecretId String
    The OCID of the secret containing the user password.
    role String
    The role of the user connecting to the database.
    sslSecretId String
    The OCID of the secret containing the SSL keystore and truststore details.
    userName String
    The user name used to connect to the database.

    DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString, DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs

    ConnectionType string
    The list of supported connection types:

    • BASIC: Basic connection details
    Port int
    The port number used to connect to the database.
    Protocol string
    The protocol used to connect to the database.
    Service string
    The service name of the database.
    ConnectionType string
    The list of supported connection types:

    • BASIC: Basic connection details
    Port int
    The port number used to connect to the database.
    Protocol string
    The protocol used to connect to the database.
    Service string
    The service name of the database.
    connectionType String
    The list of supported connection types:

    • BASIC: Basic connection details
    port Integer
    The port number used to connect to the database.
    protocol String
    The protocol used to connect to the database.
    service String
    The service name of the database.
    connectionType string
    The list of supported connection types:

    • BASIC: Basic connection details
    port number
    The port number used to connect to the database.
    protocol string
    The protocol used to connect to the database.
    service string
    The service name of the database.
    connection_type str
    The list of supported connection types:

    • BASIC: Basic connection details
    port int
    The port number used to connect to the database.
    protocol str
    The protocol used to connect to the database.
    service str
    The service name of the database.
    connectionType String
    The list of supported connection types:

    • BASIC: Basic connection details
    port Number
    The port number used to connect to the database.
    protocol String
    The protocol used to connect to the database.
    service String
    The service name of the database.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi