Show / Hide Table of Contents

Class ReplicationDetails

Replication metadata details, targeted regions and respective replication state, time created or time when it was updated.

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

Properties

ReplicationState

Declaration
[JsonProperty(PropertyName = "replicationState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReplicationDetails.ReplicationStateEnum? ReplicationState { get; set; }
Property Value
Type Description
ReplicationDetails.ReplicationStateEnum?

The lifecycle state of the Oracle DB Azure Vault resource.

TargetRegion

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

The target region, where resource is replicated.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Time when the Replication was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

Time when the Replication was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'

In this article
Back to top