Show / Hide Table of Contents

Class ValidationIdentityStatus

Status details for an identity type

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

Properties

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseToolsIdentityStatus? Status { get; set; }
Property Value
Type Description
DatabaseToolsIdentityStatus?

The status of the identity. AVAILABLE if the identity type can be used with this connection. UNAVAILABLE if not.

StatusDetails

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

If the status is UNAVAILABLE this displays the cause.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IdentityType? Type { get; set; }
Property Value
Type Description
IdentityType?

The Database Tools identity type.

In this article
Back to top