import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Externalpluggabledatabase External Pluggable Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database-management/latest/ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/databasemanagement * Enables a Database Management feature for the specified external pluggable database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement = new oci.databasemanagement.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement("test_externalpluggabledatabase_external_pluggable_dbm_features_management", { * externalPluggableDatabaseId: testExternalPluggableDatabase.id, * enableExternalPluggableDbmFeature: enableExternalPluggableDbmFeature === "true", * featureDetails: { * feature: externalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsFeature, * enableExternalPluggableDbmFeature: enableExternalPluggableDbmFeature, * connectorDetails: { * connectorType: externalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsConnectorType, * databaseConnectorId: testDatabaseConnector.id, * managementAgentId: testManagementAgent.id, * privateEndPointId: testPrivateEndPoint.id, * }, * }, * }); * ``` */ export declare class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement extends pulumi.CustomResource { /** * Get an existing ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState, opts?: pulumi.CustomResourceOptions): ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement; /** * Returns true if the given object is an instance of ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement; /** * (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 */ readonly enableExternalPluggableDbmFeature: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database. */ readonly externalPluggableDatabaseId: pulumi.Output; readonly feature: pulumi.Output; /** * The details required to enable the specified Database Management feature. */ readonly featureDetails: pulumi.Output; /** * Create a ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement resources. */ export interface ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState { /** * (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 */ enableExternalPluggableDbmFeature?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database. */ externalPluggableDatabaseId?: pulumi.Input; feature?: pulumi.Input; /** * The details required to enable the specified Database Management feature. */ featureDetails?: pulumi.Input; } /** * The set of arguments for constructing a ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement resource. */ export interface ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs { /** * (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 */ enableExternalPluggableDbmFeature: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database. */ externalPluggableDatabaseId: pulumi.Input; feature?: pulumi.Input; /** * The details required to enable the specified Database Management feature. */ featureDetails?: pulumi.Input; } //# sourceMappingURL=externalpluggabledatabaseExternalPluggableDbmFeaturesManagement.d.ts.map