import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Externalcontainerdatabase External Container 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/ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement * * 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 container database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalcontainerdatabaseExternalContainerDbmFeaturesManagement = new oci.databasemanagement.ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement("test_externalcontainerdatabase_external_container_dbm_features_management", { * externalContainerDatabaseId: testExternalContainerDatabase.id, * enableExternalContainerDbmFeature: enableExternalContainerDbmFeature === "true", * featureDetails: { * feature: externalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsFeature, * enableExternalContainerDbmFeature: enableExternalContainerDbmFeature, * connectorDetails: { * connectorType: externalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetailsConnectorType, * databaseConnectorId: testDatabaseConnector.id, * managementAgentId: testManagementAgent.id, * privateEndPointId: testPrivateEndPoint.id, * }, * canEnableAllCurrentPdbs: externalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsCanEnableAllCurrentPdbs === "true", * isAutoEnablePluggableDatabase: externalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsIsAutoEnablePluggableDatabase === "true", * licenseModel: externalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsLicenseModel, * }, * }); * ``` */ export declare class ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement extends pulumi.CustomResource { /** * Get an existing ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement 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?: ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementState, opts?: pulumi.CustomResourceOptions): ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement; /** * Returns true if the given object is an instance of ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement. 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 ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement; readonly canDisableAllPdbs: pulumi.Output; /** * (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 enableExternalContainerDbmFeature: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database. */ readonly externalContainerDatabaseId: pulumi.Output; readonly feature: pulumi.Output; /** * The details required to enable the specified Database Management feature. */ readonly featureDetails: pulumi.Output; /** * Create a ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement 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: ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement resources. */ export interface ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementState { canDisableAllPdbs?: pulumi.Input; /** * (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 */ enableExternalContainerDbmFeature?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database. */ externalContainerDatabaseId?: 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 ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement resource. */ export interface ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs { canDisableAllPdbs?: pulumi.Input; /** * (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 */ enableExternalContainerDbmFeature: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database. */ externalContainerDatabaseId: pulumi.Input; feature?: pulumi.Input; /** * The details required to enable the specified Database Management feature. */ featureDetails?: pulumi.Input; } //# sourceMappingURL=externalcontainerdatabaseExternalContainerDbmFeaturesManagement.d.ts.map