Show / Hide Table of Contents

Class CreateDbSystemSourceFromDbSystemDetails

The source DB System identifier (OCID) and region from which the new DB system will be cloned by copying its data. Optionally, channel properties can be provided to create a replication channel between the newly created DB system and the source DB system.

Inheritance
object
CreateDbSystemSourceDetails
CreateDbSystemSourceFromDbSystemDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class CreateDbSystemSourceFromDbSystemDetails : CreateDbSystemSourceDetails

Properties

Channel

Declaration
[JsonProperty(PropertyName = "channel")]
public CreateDbSystemSourceFromDbSystemChannelDetails Channel { get; set; }
Property Value
Type Description
CreateDbSystemSourceFromDbSystemChannelDetails

DbSystemId

Declaration
[Required(ErrorMessage = "DbSystemId is required.")]
[JsonProperty(PropertyName = "dbSystemId")]
public string DbSystemId { get; set; }
Property Value
Type Description
string

The OCID of the DB system to be used as the source for the new DB System.

Remarks

Required

Region

Declaration
[JsonProperty(PropertyName = "region")]
public string Region { get; set; }
Property Value
Type Description
string

The region identifier of the source region where the DB system exists, only if it is in a different region. If the source DB system is in the same region, then no region must be specified. For more information, please see Regions and Availability Domains.

In this article
Back to top