Show / Hide Table of Contents

Class ManagedMySqlDatabaseOutboundReplicationCollection

The collection of outbound replication records of a MySQL server.

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

Properties

Items

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

The list of ManagedMySqlDatabaseOutboundReplicationSummary records.

Remarks

Required

OutboundReplicationsCount

Declaration
[JsonProperty(PropertyName = "outboundReplicationsCount")]
public int? OutboundReplicationsCount { get; set; }
Property Value
Type Description
int?

The number of outbound replications from this server.

In this article
Back to top