Class CreatePluggableDatabaseFromRemoteCloneDetails
Specifies the creation type Remote Clone.
Additional input 'dblinkUsernameand
dblinkUserPassword` can be provided for RemoteClone/Create RefreshableClone Operation.
If not provided, Backend will create a temporary user to perform RemoteClone operation. It is a required input parameter in case of creating Refreshable Clone PDB.
Inheritance
CreatePluggableDatabaseFromRemoteCloneDetails
Inherited Members
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class CreatePluggableDatabaseFromRemoteCloneDetails : CreatePluggableDatabaseCreationTypeDetails
Properties
DblinkUserPassword
Declaration
[JsonProperty(PropertyName = "dblinkUserPassword")]
public string DblinkUserPassword { get; set; }
Property Value
Type | Description |
---|---|
string | The DB link user password. |
DblinkUsername
Declaration
[JsonProperty(PropertyName = "dblinkUsername")]
public string DblinkUsername { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the DB link user. |
IsThinClone
Declaration
[JsonProperty(PropertyName = "isThinClone")]
public bool? IsThinClone { get; set; }
Property Value
Type | Description |
---|---|
bool? | True if Pluggable Database needs to be thin cloned and false if Pluggable Database needs to be thick cloned. |
RefreshableCloneDetails
Declaration
[JsonProperty(PropertyName = "refreshableCloneDetails")]
public CreatePluggableDatabaseRefreshableCloneDetails RefreshableCloneDetails { get; set; }
Property Value
Type | Description |
---|---|
CreatePluggableDatabaseRefreshableCloneDetails |
SourceContainerDatabaseAdminPassword
Declaration
[Required(ErrorMessage = "SourceContainerDatabaseAdminPassword is required.")]
[JsonProperty(PropertyName = "sourceContainerDatabaseAdminPassword")]
public string SourceContainerDatabaseAdminPassword { get; set; }
Property Value
Type | Description |
---|---|
string | The DB system administrator password of the source Container Database. |
Remarks
Required
SourcePluggableDatabaseId
Declaration
[Required(ErrorMessage = "SourcePluggableDatabaseId is required.")]
[JsonProperty(PropertyName = "sourcePluggableDatabaseId")]
public string SourcePluggableDatabaseId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the Source Pluggable Database. |
Remarks
Required