Show / Hide Table of Contents

Class ValidateConnectionResult

Details regarding the validation of a connection resource.

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

Properties

Message

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

The message from the connection validation.

Status

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

The status returned from the connection validation.

Remarks

Required

In this article
Back to top