Show / Hide Table of Contents

Class SummarizeManagedInstanceUsageRequest

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

Click here to see an example of how to use SummarizeManagedInstanceUsage 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<SummarizeManagedInstanceUsageFields> Fields { get; set; }
Property Value
Type Description
List<SummarizeManagedInstanceUsageFields>

Additional fields to include into the returned model on top of the required ones. This parameter can also include 'approximateJreCount', 'approximateInstallationCount' and 'approximateApplicationCount'. 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

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.

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 managed instance.

ManagedInstanceType

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

The type 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.

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

The field to sort managed instance views. Only one sort order may be provided. Default order for timeFirstSeen, timeLastSeen, approximateJreCount_, approximateInstallationCount and approximateApplicationCount is descending. Default order for 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