Show / Hide Table of Contents

Class SummarizeJreUsageRequest

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

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

Properties

ApplicationId

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

The Fleet-unique identifier of the related application.

Fields

Declaration
[HttpConverter(TargetEnum.Query, "fields", CollectionFormatType.Multi)]
public List<SummarizeJreUsageFields> Fields { get; set; }
Property Value
Type Description
List<SummarizeJreUsageFields>

Additional fields to include into the returned model on top of the required ones. This parameter can also include 'approximateApplicationCount', 'approximateInstallationCount' and 'approximateManagedInstanceCount'. For example 'approximateApplicationCount,approximateManagedInstanceCount'.

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

JreDistribution

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

The distribution of the Java Runtime.

JreId

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

The Fleet-unique identifier of the related Java Runtime.

JreSecurityStatus

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

The security status of the Java Runtime.

JreVendor

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

The vendor of the Java Runtime.

JreVersion

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

The version of the Java Runtime.

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 related 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.

OsFamily

Declaration
[HttpConverter(TargetEnum.Query, "osFamily", CollectionFormatType.Multi)]
public List<OsFamily> OsFamily { get; set; }
Property Value
Type Description
List<OsFamily>

The operating system type.

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

The field to sort JRE usages. Only one sort order may be provided. Default order for timeFirstSeen, timeLastSeen, and version is descending. Default order for timeFirstSeen, timeLastSeen, version, approximateInstallationCount, approximateApplicationCount and approximateManagedInstanceCount is descending. Default order for distribution, vendor, and osName is ascending. 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