import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Pluggable Databases Remote Clone resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/PluggableDatabasesRemoteClone * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * **Deprecated.** Use [CreatePluggableDatabase](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/PluggableDatabase/CreatePluggableDatabase) for Pluggable Database RemoteClone Operation. * Clones a pluggable database (PDB) to a different database from the source PDB. The cloned PDB will be started upon completion of the clone operation. The source PDB must be in the `READ_WRITE` openMode when performing the clone. * For Exadata Cloud@Customer instances, the source pluggable database (PDB) must be on the same Exadata Infrastructure as the target container database (CDB) to create a remote clone. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPluggableDatabasesRemoteClone = new oci.database.PluggableDatabasesRemoteClone("test_pluggable_databases_remote_clone", { * clonedPdbName: pluggableDatabasesRemoteCloneClonedPdbName, * pluggableDatabaseId: testPluggableDatabase.id, * sourceContainerDbAdminPassword: pluggableDatabasesRemoteCloneSourceContainerDbAdminPassword, * targetContainerDatabaseId: testDatabase.id, * pdbAdminPassword: pluggableDatabasesRemoteClonePdbAdminPassword, * shouldPdbAdminAccountBeLocked: pluggableDatabasesRemoteCloneShouldPdbAdminAccountBeLocked === "true", * targetTdeWalletPassword: pluggableDatabasesRemoteCloneTargetTdeWalletPassword, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class PluggableDatabasesRemoteClone extends pulumi.CustomResource { /** * Get an existing PluggableDatabasesRemoteClone 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?: PluggableDatabasesRemoteCloneState, opts?: pulumi.CustomResourceOptions): PluggableDatabasesRemoteClone; /** * Returns true if the given object is an instance of PluggableDatabasesRemoteClone. 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 PluggableDatabasesRemoteClone; /** * The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name. */ readonly clonedPdbName: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: pulumi.Output; /** * Connection strings to connect to an Oracle Pluggable Database. */ readonly connectionStrings: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CDB. */ readonly containerDatabaseId: pulumi.Output; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it. */ readonly isRestricted: pulumi.Output; /** * Detailed message for the lifecycle state. */ readonly lifecycleDetails: pulumi.Output; /** * The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software). */ readonly openMode: pulumi.Output; /** * A strong password for PDB Admin of the newly cloned PDB. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \#, or -. */ readonly pdbAdminPassword: pulumi.Output; /** * The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name. */ readonly pdbName: pulumi.Output; /** * Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}] */ readonly pdbNodeLevelDetails: pulumi.Output; /** * The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly pluggableDatabaseId: pulumi.Output; /** * The configuration of the Pluggable Database Management service. */ readonly pluggableDatabaseManagementConfigs: pulumi.Output; /** * Pluggable Database Refreshable Clone Configuration. */ readonly refreshableCloneConfigs: pulumi.Output; /** * The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it. */ readonly shouldPdbAdminAccountBeLocked: pulumi.Output; /** * The DB system administrator password of the source CDB. */ readonly sourceContainerDbAdminPassword: pulumi.Output; /** * The current state of the pluggable database. */ readonly state: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target CDB */ readonly targetContainerDatabaseId: pulumi.Output; /** * The existing TDE wallet password of the target CDB. * * ** 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 targetTdeWalletPassword: pulumi.Output; /** * The date and time the pluggable database was created. */ readonly timeCreated: pulumi.Output; /** * Create a PluggableDatabasesRemoteClone 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: PluggableDatabasesRemoteCloneArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PluggableDatabasesRemoteClone resources. */ export interface PluggableDatabasesRemoteCloneState { /** * The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name. */ clonedPdbName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * Connection strings to connect to an Oracle Pluggable Database. */ connectionStrings?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CDB. */ containerDatabaseId?: pulumi.Input; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it. */ isRestricted?: pulumi.Input; /** * Detailed message for the lifecycle state. */ lifecycleDetails?: pulumi.Input; /** * The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software). */ openMode?: pulumi.Input; /** * A strong password for PDB Admin of the newly cloned PDB. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \#, or -. */ pdbAdminPassword?: pulumi.Input; /** * The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name. */ pdbName?: pulumi.Input; /** * Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}] */ pdbNodeLevelDetails?: pulumi.Input[] | undefined>; /** * The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ pluggableDatabaseId?: pulumi.Input; /** * The configuration of the Pluggable Database Management service. */ pluggableDatabaseManagementConfigs?: pulumi.Input[] | undefined>; /** * Pluggable Database Refreshable Clone Configuration. */ refreshableCloneConfigs?: pulumi.Input[] | undefined>; /** * The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it. */ shouldPdbAdminAccountBeLocked?: pulumi.Input; /** * The DB system administrator password of the source CDB. */ sourceContainerDbAdminPassword?: pulumi.Input; /** * The current state of the pluggable database. */ state?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target CDB */ targetContainerDatabaseId?: pulumi.Input; /** * The existing TDE wallet password of the target CDB. * * ** 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 */ targetTdeWalletPassword?: pulumi.Input; /** * The date and time the pluggable database was created. */ timeCreated?: pulumi.Input; } /** * The set of arguments for constructing a PluggableDatabasesRemoteClone resource. */ export interface PluggableDatabasesRemoteCloneArgs { /** * The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name. */ clonedPdbName: pulumi.Input; /** * A strong password for PDB Admin of the newly cloned PDB. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \#, or -. */ pdbAdminPassword?: pulumi.Input; /** * The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ pluggableDatabaseId: pulumi.Input; /** * The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it. */ shouldPdbAdminAccountBeLocked?: pulumi.Input; /** * The DB system administrator password of the source CDB. */ sourceContainerDbAdminPassword: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target CDB */ targetContainerDatabaseId: pulumi.Input; /** * The existing TDE wallet password of the target CDB. * * ** 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 */ targetTdeWalletPassword?: pulumi.Input; } //# sourceMappingURL=pluggableDatabasesRemoteClone.d.ts.map