Show / Hide Table of Contents

Class CreatePluggableDatabaseFromRemoteCloneDetails

Specifies the creation type Remote Clone. Additional input 'dblinkUsernameanddblinkUserPassword` 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
object
CreatePluggableDatabaseCreationTypeDetails
CreatePluggableDatabaseFromRemoteCloneDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top