Show / Hide Table of Contents

Class ListJmsPluginsRequest

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

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

Properties

AgentId

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

The ManagementAgent (OMA) or Instance (OCA) OCID that identifies the Agent.

AgentType

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

Filter JmsPlugin with agent type.

AvailabilityStatus

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

Filter JmsPlugin with its availability status.

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.

FleetId

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

The ID of the Fleet.

HostnameContains

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

Filter the list with hostname contains the given value.

Id

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

The OCID of the JmsPlugin.

LifecycleState

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

Filter JmsPlugin with its lifecycle state.

Limit

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

The maximum number of items to return.

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 JmsPluginSortBy? SortBy { get; set; }
Property Value
Type Description
JmsPluginSortBy?

The field to sort JmsPlugin. 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'.

TimeLastSeenLessThanOrEqualTo

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

If present, only plugins with a last seen time before this parameter are searched (formatted according to RFC3339).

TimeRegisteredLessThanOrEqualTo

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

If present, only plugins with a registration time before this parameter are searched (formatted according to RFC3339).

Implements

IOciRequest
In this article
Back to top