Show / Hide Table of Contents

Class DiagnosticsResult

Result from Database Connection Diagnostic action.

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

Properties

Error

Declaration
[JsonProperty(PropertyName = "error")]
public ResultError Error { get; set; }
Property Value
Type Description
ResultError

ResultType

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

Type of the Result (i.e. Success or Failure).

Remarks

Required

In this article
Back to top