Class DiagnosticsResult
Result from Database Connection Diagnostic action.
Inherited Members
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class DiagnosticsResult
Properties
DatabaseInformation
Declaration
[JsonProperty(PropertyName = "databaseInformation")]
public DatabaseInformation DatabaseInformation { get; set; }
Property Value
| Type | Description |
|---|---|
| DatabaseInformation |
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