Show / Hide Table of Contents

Class CreatePluggableDatabaseFromRelocateDetails

Specifies the creation type Relocate. Additional input 'dblinkUsernameanddblinkUserPassword` can be provided for Relocate Operation. If not provided, Backend will create a temporary user to perform Relocate operation.

Inheritance
object
CreatePluggableDatabaseCreationTypeDetails
CreatePluggableDatabaseFromRelocateDetails
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 CreatePluggableDatabaseFromRelocateDetails : 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.

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