import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Fleet Crypto Analysis Results in Oracle Cloud Infrastructure Jms service. * * Lists the results of a Crypto event analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetCryptoAnalysisResults = oci.jms.getFleetCryptoAnalysisResults({ * fleetId: testFleet.id, * aggregationMode: fleetCryptoAnalysisResultAggregationMode, * findingCount: Number(fleetCryptoAnalysisResultFindingCount), * findingCountGreaterThan: Number(fleetCryptoAnalysisResultFindingCountGreaterThan), * hostName: fleetCryptoAnalysisResultHostName, * managedInstanceId: fleetCryptoAnalysisResultManagedInstanceOcid, * nonCompliantFindingCount: Number(fleetCryptoAnalysisResultNonCompliantFindingCount), * nonCompliantFindingCountGreaterThan: Number(fleetCryptoAnalysisResultNonCompliantFindingCountGreaterThan), * timeEnd: fleetCryptoAnalysisResultTimeEnd, * timeStart: fleetCryptoAnalysisResultTimeStart, * }); * ``` */ export declare function getFleetCryptoAnalysisResults(args: GetFleetCryptoAnalysisResultsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetCryptoAnalysisResults. */ export interface GetFleetCryptoAnalysisResultsArgs { /** * The aggregation mode of the crypto event analysis result. */ aggregationMode?: string; filters?: inputs.Jms.GetFleetCryptoAnalysisResultsFilter[]; /** * FindingCount of CryptoAnalysis Report. */ findingCount?: number; /** * FindingCount of CryptoAnalysis Report. */ findingCountGreaterThan?: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; /** * The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostName?: string; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: string; /** * Non Compliant Finding Count of CryptoAnalysis Report. */ nonCompliantFindingCount?: number; /** * Non Compliant Finding Count of CryptoAnalysis Report. */ nonCompliantFindingCountGreaterThan?: number; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: string; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: string; } /** * A collection of values returned by getFleetCryptoAnalysisResults. */ export interface GetFleetCryptoAnalysisResultsResult { /** * The result aggregation mode */ readonly aggregationMode?: string; /** * The list of crypto_analysis_result_collection. */ readonly cryptoAnalysisResultCollections: outputs.Jms.GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection[]; readonly filters?: outputs.Jms.GetFleetCryptoAnalysisResultsFilter[]; /** * Total number of findings with the analysis. */ readonly findingCount?: number; readonly findingCountGreaterThan?: number; /** * The fleet OCID. */ readonly fleetId: string; /** * The hostname of the managed instance. */ readonly hostName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The managed instance OCID. */ readonly managedInstanceId?: string; /** * Total number of non-compliant findings with the analysis. A non-compliant finding means the application won't work properly with the changes introduced by the Crypto Roadmap version used by the analysis. */ readonly nonCompliantFindingCount?: number; readonly nonCompliantFindingCountGreaterThan?: number; readonly timeEnd?: string; readonly timeStart?: string; } /** * This data source provides the list of Fleet Crypto Analysis Results in Oracle Cloud Infrastructure Jms service. * * Lists the results of a Crypto event analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetCryptoAnalysisResults = oci.jms.getFleetCryptoAnalysisResults({ * fleetId: testFleet.id, * aggregationMode: fleetCryptoAnalysisResultAggregationMode, * findingCount: Number(fleetCryptoAnalysisResultFindingCount), * findingCountGreaterThan: Number(fleetCryptoAnalysisResultFindingCountGreaterThan), * hostName: fleetCryptoAnalysisResultHostName, * managedInstanceId: fleetCryptoAnalysisResultManagedInstanceOcid, * nonCompliantFindingCount: Number(fleetCryptoAnalysisResultNonCompliantFindingCount), * nonCompliantFindingCountGreaterThan: Number(fleetCryptoAnalysisResultNonCompliantFindingCountGreaterThan), * timeEnd: fleetCryptoAnalysisResultTimeEnd, * timeStart: fleetCryptoAnalysisResultTimeStart, * }); * ``` */ export declare function getFleetCryptoAnalysisResultsOutput(args: GetFleetCryptoAnalysisResultsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetCryptoAnalysisResults. */ export interface GetFleetCryptoAnalysisResultsOutputArgs { /** * The aggregation mode of the crypto event analysis result. */ aggregationMode?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * FindingCount of CryptoAnalysis Report. */ findingCount?: pulumi.Input; /** * FindingCount of CryptoAnalysis Report. */ findingCountGreaterThan?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: pulumi.Input; /** * The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostName?: pulumi.Input; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: pulumi.Input; /** * Non Compliant Finding Count of CryptoAnalysis Report. */ nonCompliantFindingCount?: pulumi.Input; /** * Non Compliant Finding Count of CryptoAnalysis Report. */ nonCompliantFindingCountGreaterThan?: pulumi.Input; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: pulumi.Input; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: pulumi.Input; } //# sourceMappingURL=getFleetCryptoAnalysisResults.d.ts.map