Show / Hide Table of Contents

Class DomainReplicationStates

(For tenancies that support identity domains) The identity domain replication log for all identity domains for a given region.

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

Properties

DomainId

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

The OCID of the identity domain.

Remarks

Required

ReplicaRegion

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

The replica region for the identity domain.

Remarks

Required

State

Declaration
[Required(ErrorMessage = "State is required.")]
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(StringEnumConverter))]
public ReplicatedRegionDetails.StateEnum? State { get; set; }
Property Value
Type Description
ReplicatedRegionDetails.StateEnum?

The IDCS-replicated region state.

Remarks

Required

In this article
Back to top