Show / Hide Table of Contents

Class SummarizeLibraryUsageRequest

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

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

Properties

ApplicationKey

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

The deployed application key.

CvssScoreGreaterThan

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

Total Common Vulnerability Scoring System (CVSS) Score reported by the analysis.

CvssScoreLessThan

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

Total Common Vulnerability Scoring System (CVSS) Score reported by the analysis.

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.

LibraryName

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

The library name.

LibraryNameContains

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

Filter the list with library name contains the given value.

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.

SortBy

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

The field to sort libraries. Only one sort order may 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