Show / Hide Table of Contents

Class ConnectionValidationResult

The result of validating the credentials of a connection.

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

Properties

Message

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

A message describing the result of connection validation in more detail.

Result

Declaration
[JsonProperty(PropertyName = "result")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConnectionValidationResult.ResultEnum? Result { get; set; }
Property Value
Type Description
ConnectionValidationResult.ResultEnum?

The latest result of whether the credentials pass the validation.

TimeValidated

Declaration
[JsonProperty(PropertyName = "timeValidated")]
public DateTime? TimeValidated { get; set; }
Property Value
Type Description
DateTime?

The latest timestamp when the connection was validated. Format defined by RFC3339.

In this article
Back to top