Show / Hide Table of Contents

Class CreateAutonomousSystemDataGuardReplicaDetails

Details required to create a system data guard replica.

Inheritance
object
CreateAutonomousSystemDataGuardReplicaDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.Distributeddatabasev26Service.Models
Assembly: OCI.DotNetSDK.Distributeddatabasev26.dll
Syntax
public class CreateAutonomousSystemDataGuardReplicaDetails

Properties

Databases

Declaration
[Required(ErrorMessage = "Databases is required.")]
[JsonProperty(PropertyName = "databases")]
public List<CreateDistributedAutonomousDatabaseShardDatabaseDetails> Databases { get; set; }
Property Value
Type Description
List<CreateDistributedAutonomousDatabaseShardDatabaseDetails>

Details of the databases associated with the system data guard replica.

Remarks

Required

Name

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

The name of the data guard replica. It must start with a letter and contain only letters, digits, and underscores. Maximum length is 40 characters.

Remarks

Required

In this article
Back to top