Show / Hide Table of Contents

Class SummarizeDeployedApplicationUsageRequest

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

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

Properties

ApplicationKey

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

The deployed application key.

ApplicationName

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

The deployed application name.

ApplicationNameContains

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

Filter the list with deployed application name contains the given value.

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.

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

The field to sort the deployed applications. 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