Show / Hide Table of Contents

Class TestNamedCredentialStatus

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

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

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 named credential test. The response is 'null' if the named 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 named credential test. The response is 'null' if the named credential test was successful.

Status

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

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

Remarks

Required

In this article
Back to top