Show / Hide Table of Contents

Class LogListEndpoint

An endpoint used to fetch a list of log URLs.

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

Properties

Credentials

Declaration
[JsonProperty(PropertyName = "credentials")]
public EndpointCredentials Credentials { get; set; }
Property Value
Type Description
EndpointCredentials

Description

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

The endpoint description.

EndpointId

Declaration
[JsonProperty(PropertyName = "endpointId")]
public long? EndpointId { get; set; }
Property Value
Type Description
long?

The endpoint unique identifier.

EndpointProperties

Declaration
[JsonProperty(PropertyName = "endpointProperties")]
public List<LogAnalyticsProperty> EndpointProperties { get; set; }
Property Value
Type Description
List<LogAnalyticsProperty>

A list of endpoint properties.

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

A flag indicating whether or not the endpoint is enabled for log collection.

IsSystem

Declaration
[JsonProperty(PropertyName = "isSystem")]
public bool? IsSystem { get; set; }
Property Value
Type Description
bool?

The system flag. A value of false denotes a custom, or user defined endpoint. A value of true denotes an Oracle defined endpoint.

Model

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

The endpoint model.

Name

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

The endpoint name.

Remarks

Required

Proxy

Declaration
[JsonProperty(PropertyName = "proxy")]
public EndpointProxy Proxy { get; set; }
Property Value
Type Description
EndpointProxy

Request

Declaration
[Required(ErrorMessage = "Request is required.")]
[JsonProperty(PropertyName = "request")]
public EndpointRequest Request { get; set; }
Property Value
Type Description
EndpointRequest
Remarks

Required

Response

Declaration
[JsonProperty(PropertyName = "response")]
public EndpointResponse Response { get; set; }
Property Value
Type Description
EndpointResponse
In this article
Back to top