Show / Hide Table of Contents

Class SummarizeApplicationUsageRequest

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

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

Properties

ApplicationId

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

The Fleet-unique identifier of the application.

ApplicationType

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

The type of the application.

DisplayName

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

The display name.

DisplayNameContains

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

Filter the list with displayName contains the given value.

Fields

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

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

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

InstallationPath

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

The file system path of the Java Runtime installation.

JreDistribution

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

The distribution of the related Java Runtime.

JreVendor

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

The vendor of the related Java Runtime.

JreVersion

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

The version of the related Java Runtime.

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

The field to sort application views. Only one sort order may be provided. Default order for timeFirstSeen, timeLastSeen, approximateJreCount, approximateInstallationCount and approximateManagedInstanceCount is descending. Default order for displayName 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