Show / Hide Table of Contents

Class TestPreferredCredentialStatus

The status of the preferred credential test. The status is 'SUCCEEDED' if the preferred credential is working else the status is 'FAILED'.

Inheritance
object
TestPreferredCredentialStatus
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 TestPreferredCredentialStatus

Properties

ErrorCode

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

An error code that defines the failure of the preferred credential test. The response is 'null' if the preferred credential test was successful.

ErrorMessage

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

The error message that indicates the reason for the failure of the preferred credential test. The response is 'null' if the preferred credential test was successful.

Status

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

The status of the preferred credential test. The status is 'SUCCEEDED' if the preferred credential is working else the status is 'FAILED'.

In this article
Back to top