Show / Hide Table of Contents

Class SummarizeJavaServerInstanceUsageRequest

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

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

Properties

ApplicationKey

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

The deployed application key.

FleetId

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

The OCID of the Fleet.

Remarks

Required

LibraryKey

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

The library key.

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.

ServerInstanceKey

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

The Java Server instance key.

ServerInstanceName

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

The Java Server instance name.

ServerInstanceNameContains

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

Filter the list with the Java Server instance name contains the given value.

ServerKey

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

The server key.

SortBy

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

The field to sort the Java Server instances. Only one sort order can be provided. 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'.

TimeEnd

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

The end of the time period during which resources are searched (formatted according to RFC3339).

TimeStart

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

The start of the time period during which resources are searched (formatted according to RFC3339).

Implements

IOciRequest
In this article
Back to top