Show / Hide Table of Contents

Class ListPluginErrorsRequest

Inheritance
object
ListPluginErrorsRequest
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.JmsService.Requests
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class ListPluginErrorsRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

The OCID of the compartment in which to list resources.

CompartmentIdInSubtree

Declaration
[HttpConverter(TargetEnum.Query, "compartmentIdInSubtree")]
public bool? CompartmentIdInSubtree { get; set; }
Property Value
Type Description
bool?

Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.

Limit

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

The maximum number of items to return.

ManagedInstanceId

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

The Fleet-unique identifier of the managed instance.

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. The token is usually retrieved from a previous list call.

SortBy

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

The field to sort PluginError. Only one sort order may be provided. Default order is descending. If no value is specified timeLastSeen is default.

SortOrder

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

The sort order, either 'asc' or 'desc'.

TimeFirstSeenGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeFirstSeenGreaterThanOrEqualTo")]
public DateTime? TimeFirstSeenGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

If specified, only errors with a first seen time later than this parameter will be included in the search (formatted according to RFC3339).

TimeFirstSeenLessThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeFirstSeenLessThanOrEqualTo")]
public DateTime? TimeFirstSeenLessThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

If specified, only errors with a first seen time earlier than this parameter will be included in the search (formatted according to RFC3339).

TimeLastSeenGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeLastSeenGreaterThanOrEqualTo")]
public DateTime? TimeLastSeenGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

If specified, only errors with a last seen time later than this parameter will be included in the search (formatted according to RFC3339).

TimeLastSeenLessThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeLastSeenLessThanOrEqualTo")]
public DateTime? TimeLastSeenLessThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

If specified, only errors with a last seen time earlier than this parameter will be included in the search (formatted according to RFC3339).

Implements

IOciRequest
In this article
Back to top