Show / Hide Table of Contents

Class ListResourceCategoriesRequest

Inheritance
object
ListResourceCategoriesRequest
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 ListResourceCategoriesRequest : IOciRequest
Examples

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

Properties

Categories

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

A comma-separated list of categories used for filtering

CompartmentId

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

The compartment id

Limit

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

The maximum number of items to return.

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.

ResourceIds

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

A comma-separated list of resource unique identifiers used for filtering. Only resources with matching unique identifiers will be returned.

ResourceTypes

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

A comma-separated list of resource types used for filtering. Only resources of the types specified will be returned. Examples include SOURCE, PARSER, LOOKUP, etc.

SortBy

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

The attribute used to sort the returned category resources.

SortOrder

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

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

Implements

IOciRequest
In this article
Back to top