Show / Hide Table of Contents

Class EntityStatus

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

Properties

InactiveBitMask

Declaration
[Required(ErrorMessage = "InactiveBitMask is required.")]
[JsonProperty(PropertyName = "inactiveBitMask")]
public long? InactiveBitMask { get; set; }
Property Value
Type Description
long?

A bit mask showing the reason why the entity is inactive:

  • bit 0: ACTIVE
  • bit 1: SUSPENDED
  • bit 2: DISABLED
  • bit 3: BLOCKED
  • bit 4: LOCKED
Remarks

Required

Status

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

The entity status.

Remarks

Required

In this article
Back to top