import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Externalnoncontainerdatabase External Non 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/ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/databasemanagement * Enables Database Management feature for the specified external non-container database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement = new oci.databasemanagement.ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement("test_externalnoncontainerdatabase_external_non_container_dbm_features_management", { * externalNonContainerDatabaseId: testExternalNonContainerDatabase.id, * enableExternalNonContainerDbmFeature: enableExternalNonContainerDbmFeature === "true", * featureDetails: { * feature: externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsFeature, * enableExternalNonContainerDbmFeature: enableExternalNonContainerDbmFeature, * connectorDetails: { * connectorType: externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetailsConnectorType, * databaseConnectorId: testDatabaseConnector.id, * managementAgentId: testManagementAgent.id, * privateEndPointId: testPrivateEndPoint.id, * }, * canEnableAllCurrentPdbs: externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsCanEnableAllCurrentPdbs === "true", * isAutoEnablePluggableDatabase: externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsIsAutoEnablePluggableDatabase === "true", * licenseModel: externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsLicenseModel, * }, * }); * ``` */ export declare class ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement extends pulumi.CustomResource { /** * Get an existing ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement 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?: ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementState, opts?: pulumi.CustomResourceOptions): ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement; /** * Returns true if the given object is an instance of ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement. 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 ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement; /** * (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 enableExternalNonContainerDbmFeature: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database. */ readonly externalNonContainerDatabaseId: pulumi.Output; /** * The details required to enable the specified Database Management feature. */ readonly featureDetails: pulumi.Output; /** * Create a ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement 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: ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement resources. */ export interface ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementState { /** * (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 */ enableExternalNonContainerDbmFeature?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database. */ externalNonContainerDatabaseId?: pulumi.Input; /** * The details required to enable the specified Database Management feature. */ featureDetails?: pulumi.Input; } /** * The set of arguments for constructing a ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement resource. */ export interface ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs { /** * (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 */ enableExternalNonContainerDbmFeature: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database. */ externalNonContainerDatabaseId: pulumi.Input; /** * The details required to enable the specified Database Management feature. */ featureDetails?: pulumi.Input; } //# sourceMappingURL=externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement.d.ts.map