Show / Hide Table of Contents

Class SummarizeJavaServerUsageRequest

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

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

Properties

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

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.

ServerKey

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

The server key.

ServerName

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

The server name.

ServerNameContains

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

Filter the list with server name contains the given value.

ServerVersion

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

The server version.

SortBy

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

The field to sort a Java Server. 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