oci.DatabaseManagement.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement
Explore with Pulumi AI
This resource provides the Externalpluggabledatabase External Pluggable Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
Enables a Database Management feature for the specified external pluggable database.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  testExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement:
    type: oci:DatabaseManagement:ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement
    name: test_externalpluggabledatabase_external_pluggable_dbm_features_management
    properties:
      externalPluggableDatabaseId: ${testExternalPluggableDatabase.id}
      enableExternalPluggableDbmFeature: ${enableExternalPluggableDbmFeature}
      featureDetails:
        feature: ${externalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsFeature}
        enableExternalPluggableDbmFeature: ${enableExternalPluggableDbmFeature}
        connectorDetails:
          connectorType: ${externalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsConnectorType}
          databaseConnectorId: ${testDatabaseConnector.id}
          managementAgentId: ${testManagementAgent.id}
          privateEndPointId: ${testPrivateEndPoint.id}
Create ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(name: string, args: ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs, opts?: CustomResourceOptions);@overload
def ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(resource_name: str,
                                                                    args: ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs,
                                                                    opts: Optional[ResourceOptions] = None)
@overload
def ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(resource_name: str,
                                                                    opts: Optional[ResourceOptions] = None,
                                                                    enable_external_pluggable_dbm_feature: Optional[bool] = None,
                                                                    external_pluggable_database_id: Optional[str] = None,
                                                                    feature_details: Optional[ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs] = None)func NewExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(ctx *Context, name string, args ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs, opts ...ResourceOption) (*ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement, error)public ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(string name, ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs args, CustomResourceOptions? opts = null)
public ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(String name, ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs args)
public ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(String name, ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs args, CustomResourceOptions options)
type: oci:DatabaseManagement:ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement
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 ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs
- 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 ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs
- 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 ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs
- 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 externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource = new Oci.DatabaseManagement.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement("externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource", new()
{
    EnableExternalPluggableDbmFeature = false,
    ExternalPluggableDatabaseId = "string",
    FeatureDetails = new Oci.DatabaseManagement.Inputs.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs
    {
        Feature = "string",
        ConnectorDetails = new Oci.DatabaseManagement.Inputs.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs
        {
            ConnectorType = "string",
            DatabaseConnectorId = "string",
            ManagementAgentId = "string",
            PrivateEndPointId = "string",
        },
    },
});
example, err := databasemanagement.NewExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(ctx, "externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource", &databasemanagement.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs{
	EnableExternalPluggableDbmFeature: pulumi.Bool(false),
	ExternalPluggableDatabaseId:       pulumi.String("string"),
	FeatureDetails: &databasemanagement.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs{
		Feature: pulumi.String("string"),
		ConnectorDetails: &databasemanagement.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs{
			ConnectorType:       pulumi.String("string"),
			DatabaseConnectorId: pulumi.String("string"),
			ManagementAgentId:   pulumi.String("string"),
			PrivateEndPointId:   pulumi.String("string"),
		},
	},
})
var externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource = new ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement("externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource", ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs.builder()
    .enableExternalPluggableDbmFeature(false)
    .externalPluggableDatabaseId("string")
    .featureDetails(ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs.builder()
        .feature("string")
        .connectorDetails(ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs.builder()
            .connectorType("string")
            .databaseConnectorId("string")
            .managementAgentId("string")
            .privateEndPointId("string")
            .build())
        .build())
    .build());
externalpluggabledatabase_external_pluggable_dbm_features_management_resource = oci.database_management.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement("externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource",
    enable_external_pluggable_dbm_feature=False,
    external_pluggable_database_id="string",
    feature_details={
        "feature": "string",
        "connector_details": {
            "connector_type": "string",
            "database_connector_id": "string",
            "management_agent_id": "string",
            "private_end_point_id": "string",
        },
    })
const externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource = new oci.databasemanagement.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement("externalpluggabledatabaseExternalPluggableDbmFeaturesManagementResource", {
    enableExternalPluggableDbmFeature: false,
    externalPluggableDatabaseId: "string",
    featureDetails: {
        feature: "string",
        connectorDetails: {
            connectorType: "string",
            databaseConnectorId: "string",
            managementAgentId: "string",
            privateEndPointId: "string",
        },
    },
});
type: oci:DatabaseManagement:ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement
properties:
    enableExternalPluggableDbmFeature: false
    externalPluggableDatabaseId: string
    featureDetails:
        connectorDetails:
            connectorType: string
            databaseConnectorId: string
            managementAgentId: string
            privateEndPointId: string
        feature: string
ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement 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 ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement resource accepts the following input properties:
- EnableExternal boolPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- ExternalPluggable stringDatabase Id 
- The OCID of the external pluggable database.
- FeatureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details 
- The details required to enable the specified Database Management feature.
- EnableExternal boolPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- ExternalPluggable stringDatabase Id 
- The OCID of the external pluggable database.
- FeatureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Args 
- The details required to enable the specified Database Management feature.
- enableExternal BooleanPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- externalPluggable StringDatabase Id 
- The OCID of the external pluggable database.
- featureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details 
- The details required to enable the specified Database Management feature.
- enableExternal booleanPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- externalPluggable stringDatabase Id 
- The OCID of the external pluggable database.
- featureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details 
- The details required to enable the specified Database Management feature.
- enable_external_ boolpluggable_ dbm_ feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls disable action.- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- external_pluggable_ strdatabase_ id 
- The OCID of the external pluggable database.
- feature_details ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Args 
- The details required to enable the specified Database Management feature.
- enableExternal BooleanPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- externalPluggable StringDatabase Id 
- The OCID of the external pluggable database.
- 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 ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement 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 ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement Resource
Get an existing ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement 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?: ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState, opts?: CustomResourceOptions): ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        enable_external_pluggable_dbm_feature: Optional[bool] = None,
        external_pluggable_database_id: Optional[str] = None,
        feature_details: Optional[ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs] = None) -> ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementfunc GetExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(ctx *Context, name string, id IDInput, state *ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState, opts ...ResourceOption) (*ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement, error)public static ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement Get(string name, Input<string> id, ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState? state, CustomResourceOptions? opts = null)public static ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement get(String name, Output<String> id, ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState state, CustomResourceOptions options)resources:  _:    type: oci:DatabaseManagement:ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement    get:      id: ${id}- 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.
- EnableExternal boolPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- ExternalPluggable stringDatabase Id 
- The OCID of the external pluggable database.
- FeatureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details 
- The details required to enable the specified Database Management feature.
- EnableExternal boolPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- ExternalPluggable stringDatabase Id 
- The OCID of the external pluggable database.
- FeatureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Args 
- The details required to enable the specified Database Management feature.
- enableExternal BooleanPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- externalPluggable StringDatabase Id 
- The OCID of the external pluggable database.
- featureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details 
- The details required to enable the specified Database Management feature.
- enableExternal booleanPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- externalPluggable stringDatabase Id 
- The OCID of the external pluggable database.
- featureDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details 
- The details required to enable the specified Database Management feature.
- enable_external_ boolpluggable_ dbm_ feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls disable action.- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- external_pluggable_ strdatabase_ id 
- The OCID of the external pluggable database.
- feature_details ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Args 
- The details required to enable the specified Database Management feature.
- enableExternal BooleanPluggable Dbm Feature 
- (Updatable) A required field when set to - truecalls enable action and when set to- falsecalls 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 
- externalPluggable StringDatabase Id 
- The OCID of the external pluggable database.
- featureDetails Property Map
- The details required to enable the specified Database Management feature.
Supporting Types
ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetails, ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs                
- Feature string
- The name of the Database Management feature.
- ConnectorDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Connector Details 
- The connector details required to connect to an Oracle cloud database.
- Feature string
- The name of the Database Management feature.
- ConnectorDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Connector Details 
- The connector details required to connect to an Oracle cloud database.
- feature String
- The name of the Database Management feature.
- connectorDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Connector Details 
- The connector details required to connect to an Oracle cloud database.
- feature string
- The name of the Database Management feature.
- connectorDetails ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Connector Details 
- The connector details required to connect to an Oracle cloud database.
- feature str
- The name of the Database Management feature.
- connector_details ExternalpluggabledatabaseExternal Pluggable Dbm Features Management Feature Details Connector Details 
- The connector details required to connect to an Oracle cloud database.
- feature String
- The name of the Database Management feature.
- connectorDetails Property Map
- The connector details required to connect to an Oracle cloud database.
ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails, ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs                    
- ConnectorType string
- The list of supported connection types:- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- DIRECT: Direct connection
 
- DatabaseConnector stringId 
- The OCID of the external database connector.
- ManagementAgent stringId 
- The OCID of the management agent.
- PrivateEnd stringPoint Id 
- The OCID of the private endpoint.
- ConnectorType string
- The list of supported connection types:- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- DIRECT: Direct connection
 
- DatabaseConnector stringId 
- The OCID of the external database connector.
- ManagementAgent stringId 
- The OCID of the management agent.
- PrivateEnd stringPoint Id 
- The OCID of the private endpoint.
- connectorType String
- The list of supported connection types:- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- DIRECT: Direct connection
 
- databaseConnector StringId 
- The OCID of the external database connector.
- managementAgent StringId 
- The OCID of the management agent.
- privateEnd StringPoint Id 
- The OCID of the private endpoint.
- connectorType string
- The list of supported connection types:- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- DIRECT: Direct connection
 
- databaseConnector stringId 
- The OCID of the external database connector.
- managementAgent stringId 
- The OCID of the management agent.
- privateEnd stringPoint Id 
- 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
- DIRECT: Direct connection
 
- database_connector_ strid 
- The OCID of the external database connector.
- management_agent_ strid 
- The OCID of the management agent.
- private_end_ strpoint_ id 
- The OCID of the private endpoint.
- connectorType String
- The list of supported connection types:- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- DIRECT: Direct connection
 
- databaseConnector StringId 
- The OCID of the external database connector.
- managementAgent StringId 
- The OCID of the management agent.
- privateEnd StringPoint Id 
- The OCID of the private endpoint.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.