Show / Hide Table of Contents

Class CreatePluggableDatabaseFromLocalCloneDetails

Specifies the creation type Local Clone.

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

Properties

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.

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