Show / Hide Table of Contents

Class ListCryptoAnalysisResultsRequest

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

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

Properties

AggregationMode

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

The aggregation mode of the crypto event analysis result.

FindingCount

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

FindingCount of CryptoAnalysis Report.

FindingCountGreaterThan

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

FindingCount of CryptoAnalysis Report.

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

HostName

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

The host OCID of the managed instance.

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.

NonCompliantFindingCount

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

Non Compliant Finding Count of CryptoAnalysis Report.

NonCompliantFindingCountGreaterThan

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

Non Compliant Finding Count of CryptoAnalysis Report.

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.

SortBy

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

The field to sort crypto event analysis results. Only one sort order can be provided. Default order for timeCreated, and jreVersion is descending. Default order for managedInstanceId, jreDistribution, jreVendor and osName is ascending. If no value is specified timeCreated 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