Show / Hide Table of Contents

Class EndpointResult

The validation status of a specified endpoint.

Inheritance
object
EndpointResult
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 EndpointResult

Properties

EndpointName

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

The endpoint name.

LogEndpoints

Declaration
[JsonProperty(PropertyName = "logEndpoints")]
public List<string> LogEndpoints { get; set; }
Property Value
Type Description
List<string>

The resolved log endpoints based on the specified list endpoint response.

Status

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

The endpoint validation status.

Url

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

The endpoint URL.

Violations

Declaration
[JsonProperty(PropertyName = "violations")]
public List<Violation> Violations { get; set; }
Property Value
Type Description
List<Violation>

The list of violations (if any).

In this article
Back to top