Show / Hide Table of Contents

Class ExternalExadataStorageConnectorStatus

The status of an Exadata storage server connector.

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

Properties

ErrorMessage

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

The error message indicating the reason for failure or null if the connection was successful.

Id

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

The OCID of the Exadata storage server connector.

Status

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

The connection status of the connector.

Remarks

Required

In this article
Back to top