Show / Hide Table of Contents

Class ListLogAnalyticsEntityTopologyRequest

Inheritance
object
ListLogAnalyticsEntityTopologyRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Requests
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class ListLogAnalyticsEntityTopologyRequest : IOciRequest
Examples

Click here to see an example of how to use ListLogAnalyticsEntityTopology request.

Properties

Context

Declaration
[HttpConverter(TargetEnum.Query, "context")]
public string Context { get; set; }
Property Value
Type Description
string

A filter to return log analytics entity toplogy whose context matches the specified string.

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public EntityLifecycleStates? LifecycleState { get; set; }
Property Value
Type Description
EntityLifecycleStates?

A filter to return only those log analytics entities with the specified lifecycle state. The state value is case-insensitive.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return.

LogAnalyticsEntityId

Declaration
[Required(ErrorMessage = "LogAnalyticsEntityId is required.")]
[HttpConverter(TargetEnum.Path, "logAnalyticsEntityId")]
public string LogAnalyticsEntityId { get; set; }
Property Value
Type Description
string

The log analytics entity OCID.

Remarks

Required

MetadataEquals

Declaration
[HttpConverter(TargetEnum.Query, "metadataEquals", CollectionFormatType.Multi)]
public List<string> MetadataEquals { get; set; }
Property Value
Type Description
List<string>

A filter to return only log analytics entities whose metadata name, value and type matches the specified string. Each item in the array has the format "{name}:{value}:{type}". All inputs are case-insensitive.

NamespaceName

Declaration
[Required(ErrorMessage = "NamespaceName is required.")]
[HttpConverter(TargetEnum.Path, "namespaceName")]
public string NamespaceName { get; set; }
Property Value
Type Description
string

The Logging Analytics namespace used for the request.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListLogAnalyticsEntityTopologyRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListLogAnalyticsEntityTopologyRequest.SortByEnum?

The field to sort entities by. Only one sort order may be provided. Default order for timeCreated and timeUpdated is descending. Default order for entity name is ascending. If no value is specified timeCreated is default.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListLogAnalyticsEntityTopologyRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListLogAnalyticsEntityTopologyRequest.SortOrderEnum?

The sort order to use, either ascending (ASC) or descending (DESC).

Implements

IOciRequest
In this article
Back to top