Show / Hide Table of Contents

Class ValidateEndpointResult

The result of the endpoint configuration validation

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

Properties

Status

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

The validation status.

Remarks

Required

StatusDescription

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

The validation status description.

ValidationResults

Declaration
[JsonProperty(PropertyName = "validationResults")]
public List<EndpointResult> ValidationResults { get; set; }
Property Value
Type Description
List<EndpointResult>

Validation results for each specified endpoint.

In this article
Back to top