1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Jms
  5. getFleetCryptoAnalysisResults
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Jms.getFleetCryptoAnalysisResults

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testFleetCryptoAnalysisResults = oci.Jms.getFleetCryptoAnalysisResults({
    fleetId: testFleet.id,
    aggregationMode: fleetCryptoAnalysisResultAggregationMode,
    findingCount: fleetCryptoAnalysisResultFindingCount,
    findingCountGreaterThan: fleetCryptoAnalysisResultFindingCountGreaterThan,
    hostName: fleetCryptoAnalysisResultHostName,
    managedInstanceId: fleetCryptoAnalysisResultManagedInstanceOcid,
    nonCompliantFindingCount: fleetCryptoAnalysisResultNonCompliantFindingCount,
    nonCompliantFindingCountGreaterThan: fleetCryptoAnalysisResultNonCompliantFindingCountGreaterThan,
    timeEnd: fleetCryptoAnalysisResultTimeEnd,
    timeStart: fleetCryptoAnalysisResultTimeStart,
});
Copy
import pulumi
import pulumi_oci as oci

test_fleet_crypto_analysis_results = oci.Jms.get_fleet_crypto_analysis_results(fleet_id=test_fleet["id"],
    aggregation_mode=fleet_crypto_analysis_result_aggregation_mode,
    finding_count=fleet_crypto_analysis_result_finding_count,
    finding_count_greater_than=fleet_crypto_analysis_result_finding_count_greater_than,
    host_name=fleet_crypto_analysis_result_host_name,
    managed_instance_id=fleet_crypto_analysis_result_managed_instance_ocid,
    non_compliant_finding_count=fleet_crypto_analysis_result_non_compliant_finding_count,
    non_compliant_finding_count_greater_than=fleet_crypto_analysis_result_non_compliant_finding_count_greater_than,
    time_end=fleet_crypto_analysis_result_time_end,
    time_start=fleet_crypto_analysis_result_time_start)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/jms"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := jms.GetFleetCryptoAnalysisResults(ctx, &jms.GetFleetCryptoAnalysisResultsArgs{
			FleetId:                             testFleet.Id,
			AggregationMode:                     pulumi.StringRef(fleetCryptoAnalysisResultAggregationMode),
			FindingCount:                        pulumi.IntRef(fleetCryptoAnalysisResultFindingCount),
			FindingCountGreaterThan:             pulumi.IntRef(fleetCryptoAnalysisResultFindingCountGreaterThan),
			HostName:                            pulumi.StringRef(fleetCryptoAnalysisResultHostName),
			ManagedInstanceId:                   pulumi.StringRef(fleetCryptoAnalysisResultManagedInstanceOcid),
			NonCompliantFindingCount:            pulumi.IntRef(fleetCryptoAnalysisResultNonCompliantFindingCount),
			NonCompliantFindingCountGreaterThan: pulumi.IntRef(fleetCryptoAnalysisResultNonCompliantFindingCountGreaterThan),
			TimeEnd:                             pulumi.StringRef(fleetCryptoAnalysisResultTimeEnd),
			TimeStart:                           pulumi.StringRef(fleetCryptoAnalysisResultTimeStart),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testFleetCryptoAnalysisResults = Oci.Jms.GetFleetCryptoAnalysisResults.Invoke(new()
    {
        FleetId = testFleet.Id,
        AggregationMode = fleetCryptoAnalysisResultAggregationMode,
        FindingCount = fleetCryptoAnalysisResultFindingCount,
        FindingCountGreaterThan = fleetCryptoAnalysisResultFindingCountGreaterThan,
        HostName = fleetCryptoAnalysisResultHostName,
        ManagedInstanceId = fleetCryptoAnalysisResultManagedInstanceOcid,
        NonCompliantFindingCount = fleetCryptoAnalysisResultNonCompliantFindingCount,
        NonCompliantFindingCountGreaterThan = fleetCryptoAnalysisResultNonCompliantFindingCountGreaterThan,
        TimeEnd = fleetCryptoAnalysisResultTimeEnd,
        TimeStart = fleetCryptoAnalysisResultTimeStart,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Jms.JmsFunctions;
import com.pulumi.oci.Jms.inputs.GetFleetCryptoAnalysisResultsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testFleetCryptoAnalysisResults = JmsFunctions.getFleetCryptoAnalysisResults(GetFleetCryptoAnalysisResultsArgs.builder()
            .fleetId(testFleet.id())
            .aggregationMode(fleetCryptoAnalysisResultAggregationMode)
            .findingCount(fleetCryptoAnalysisResultFindingCount)
            .findingCountGreaterThan(fleetCryptoAnalysisResultFindingCountGreaterThan)
            .hostName(fleetCryptoAnalysisResultHostName)
            .managedInstanceId(fleetCryptoAnalysisResultManagedInstanceOcid)
            .nonCompliantFindingCount(fleetCryptoAnalysisResultNonCompliantFindingCount)
            .nonCompliantFindingCountGreaterThan(fleetCryptoAnalysisResultNonCompliantFindingCountGreaterThan)
            .timeEnd(fleetCryptoAnalysisResultTimeEnd)
            .timeStart(fleetCryptoAnalysisResultTimeStart)
            .build());

    }
}
Copy
variables:
  testFleetCryptoAnalysisResults:
    fn::invoke:
      function: oci:Jms:getFleetCryptoAnalysisResults
      arguments:
        fleetId: ${testFleet.id}
        aggregationMode: ${fleetCryptoAnalysisResultAggregationMode}
        findingCount: ${fleetCryptoAnalysisResultFindingCount}
        findingCountGreaterThan: ${fleetCryptoAnalysisResultFindingCountGreaterThan}
        hostName: ${fleetCryptoAnalysisResultHostName}
        managedInstanceId: ${fleetCryptoAnalysisResultManagedInstanceOcid}
        nonCompliantFindingCount: ${fleetCryptoAnalysisResultNonCompliantFindingCount}
        nonCompliantFindingCountGreaterThan: ${fleetCryptoAnalysisResultNonCompliantFindingCountGreaterThan}
        timeEnd: ${fleetCryptoAnalysisResultTimeEnd}
        timeStart: ${fleetCryptoAnalysisResultTimeStart}
Copy

Using getFleetCryptoAnalysisResults

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getFleetCryptoAnalysisResults(args: GetFleetCryptoAnalysisResultsArgs, opts?: InvokeOptions): Promise<GetFleetCryptoAnalysisResultsResult>
function getFleetCryptoAnalysisResultsOutput(args: GetFleetCryptoAnalysisResultsOutputArgs, opts?: InvokeOptions): Output<GetFleetCryptoAnalysisResultsResult>
Copy
def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
                                      filters: Optional[Sequence[_jms.GetFleetCryptoAnalysisResultsFilter]] = None,
                                      finding_count: Optional[int] = None,
                                      finding_count_greater_than: Optional[int] = None,
                                      fleet_id: Optional[str] = None,
                                      host_name: Optional[str] = None,
                                      managed_instance_id: Optional[str] = None,
                                      non_compliant_finding_count: Optional[int] = None,
                                      non_compliant_finding_count_greater_than: Optional[int] = None,
                                      time_end: Optional[str] = None,
                                      time_start: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetFleetCryptoAnalysisResultsResult
def get_fleet_crypto_analysis_results_output(aggregation_mode: Optional[pulumi.Input[str]] = None,
                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_jms.GetFleetCryptoAnalysisResultsFilterArgs]]]] = None,
                                      finding_count: Optional[pulumi.Input[int]] = None,
                                      finding_count_greater_than: Optional[pulumi.Input[int]] = None,
                                      fleet_id: Optional[pulumi.Input[str]] = None,
                                      host_name: Optional[pulumi.Input[str]] = None,
                                      managed_instance_id: Optional[pulumi.Input[str]] = None,
                                      non_compliant_finding_count: Optional[pulumi.Input[int]] = None,
                                      non_compliant_finding_count_greater_than: Optional[pulumi.Input[int]] = None,
                                      time_end: Optional[pulumi.Input[str]] = None,
                                      time_start: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetFleetCryptoAnalysisResultsResult]
Copy
func GetFleetCryptoAnalysisResults(ctx *Context, args *GetFleetCryptoAnalysisResultsArgs, opts ...InvokeOption) (*GetFleetCryptoAnalysisResultsResult, error)
func GetFleetCryptoAnalysisResultsOutput(ctx *Context, args *GetFleetCryptoAnalysisResultsOutputArgs, opts ...InvokeOption) GetFleetCryptoAnalysisResultsResultOutput
Copy

> Note: This function is named GetFleetCryptoAnalysisResults in the Go SDK.

public static class GetFleetCryptoAnalysisResults 
{
    public static Task<GetFleetCryptoAnalysisResultsResult> InvokeAsync(GetFleetCryptoAnalysisResultsArgs args, InvokeOptions? opts = null)
    public static Output<GetFleetCryptoAnalysisResultsResult> Invoke(GetFleetCryptoAnalysisResultsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetFleetCryptoAnalysisResultsResult> getFleetCryptoAnalysisResults(GetFleetCryptoAnalysisResultsArgs args, InvokeOptions options)
public static Output<GetFleetCryptoAnalysisResultsResult> getFleetCryptoAnalysisResults(GetFleetCryptoAnalysisResultsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Jms/getFleetCryptoAnalysisResults:getFleetCryptoAnalysisResults
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

FleetId This property is required. string
The OCID of the Fleet.
AggregationMode string
The aggregation mode of the crypto event analysis result.
Filters Changes to this property will trigger replacement. List<GetFleetCryptoAnalysisResultsFilter>
FindingCount int
FindingCount of CryptoAnalysis Report.
FindingCountGreaterThan int
FindingCount of CryptoAnalysis Report.
HostName string
The host OCID of the managed instance.
ManagedInstanceId string
The Fleet-unique identifier of the related managed instance.
NonCompliantFindingCount int
Non Compliant Finding Count of CryptoAnalysis Report.
NonCompliantFindingCountGreaterThan int
Non Compliant Finding Count of CryptoAnalysis Report.
TimeEnd string
The end of the time period during which resources are searched (formatted according to RFC3339).
TimeStart string
The start of the time period during which resources are searched (formatted according to RFC3339).
FleetId This property is required. string
The OCID of the Fleet.
AggregationMode string
The aggregation mode of the crypto event analysis result.
Filters Changes to this property will trigger replacement. []GetFleetCryptoAnalysisResultsFilter
FindingCount int
FindingCount of CryptoAnalysis Report.
FindingCountGreaterThan int
FindingCount of CryptoAnalysis Report.
HostName string
The host OCID of the managed instance.
ManagedInstanceId string
The Fleet-unique identifier of the related managed instance.
NonCompliantFindingCount int
Non Compliant Finding Count of CryptoAnalysis Report.
NonCompliantFindingCountGreaterThan int
Non Compliant Finding Count of CryptoAnalysis Report.
TimeEnd string
The end of the time period during which resources are searched (formatted according to RFC3339).
TimeStart string
The start of the time period during which resources are searched (formatted according to RFC3339).
fleetId This property is required. String
The OCID of the Fleet.
aggregationMode String
The aggregation mode of the crypto event analysis result.
filters Changes to this property will trigger replacement. List<GetFleetCryptoAnalysisResultsFilter>
findingCount Integer
FindingCount of CryptoAnalysis Report.
findingCountGreaterThan Integer
FindingCount of CryptoAnalysis Report.
hostName String
The host OCID of the managed instance.
managedInstanceId String
The Fleet-unique identifier of the related managed instance.
nonCompliantFindingCount Integer
Non Compliant Finding Count of CryptoAnalysis Report.
nonCompliantFindingCountGreaterThan Integer
Non Compliant Finding Count of CryptoAnalysis Report.
timeEnd String
The end of the time period during which resources are searched (formatted according to RFC3339).
timeStart String
The start of the time period during which resources are searched (formatted according to RFC3339).
fleetId This property is required. string
The OCID of the Fleet.
aggregationMode string
The aggregation mode of the crypto event analysis result.
filters Changes to this property will trigger replacement. GetFleetCryptoAnalysisResultsFilter[]
findingCount number
FindingCount of CryptoAnalysis Report.
findingCountGreaterThan number
FindingCount of CryptoAnalysis Report.
hostName string
The host OCID of the managed instance.
managedInstanceId string
The Fleet-unique identifier of the related managed instance.
nonCompliantFindingCount number
Non Compliant Finding Count of CryptoAnalysis Report.
nonCompliantFindingCountGreaterThan number
Non Compliant Finding Count of CryptoAnalysis Report.
timeEnd string
The end of the time period during which resources are searched (formatted according to RFC3339).
timeStart string
The start of the time period during which resources are searched (formatted according to RFC3339).
fleet_id This property is required. str
The OCID of the Fleet.
aggregation_mode str
The aggregation mode of the crypto event analysis result.
filters Changes to this property will trigger replacement. Sequence[jms.GetFleetCryptoAnalysisResultsFilter]
finding_count int
FindingCount of CryptoAnalysis Report.
finding_count_greater_than int
FindingCount of CryptoAnalysis Report.
host_name str
The host OCID of the managed instance.
managed_instance_id str
The Fleet-unique identifier of the related managed instance.
non_compliant_finding_count int
Non Compliant Finding Count of CryptoAnalysis Report.
non_compliant_finding_count_greater_than int
Non Compliant Finding Count of CryptoAnalysis Report.
time_end str
The end of the time period during which resources are searched (formatted according to RFC3339).
time_start str
The start of the time period during which resources are searched (formatted according to RFC3339).
fleetId This property is required. String
The OCID of the Fleet.
aggregationMode String
The aggregation mode of the crypto event analysis result.
filters Changes to this property will trigger replacement. List<Property Map>
findingCount Number
FindingCount of CryptoAnalysis Report.
findingCountGreaterThan Number
FindingCount of CryptoAnalysis Report.
hostName String
The host OCID of the managed instance.
managedInstanceId String
The Fleet-unique identifier of the related managed instance.
nonCompliantFindingCount Number
Non Compliant Finding Count of CryptoAnalysis Report.
nonCompliantFindingCountGreaterThan Number
Non Compliant Finding Count of CryptoAnalysis Report.
timeEnd String
The end of the time period during which resources are searched (formatted according to RFC3339).
timeStart String
The start of the time period during which resources are searched (formatted according to RFC3339).

getFleetCryptoAnalysisResults Result

The following output properties are available:

CryptoAnalysisResultCollections List<GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection>
The list of crypto_analysis_result_collection.
FleetId string
The fleet OCID.
Id string
The provider-assigned unique ID for this managed resource.
AggregationMode string
The result aggregation mode
Filters List<GetFleetCryptoAnalysisResultsFilter>
FindingCount int
Total number of findings with the analysis.
FindingCountGreaterThan int
HostName string
The hostname of the managed instance.
ManagedInstanceId string
The managed instance OCID.
NonCompliantFindingCount int
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.
NonCompliantFindingCountGreaterThan int
TimeEnd string
TimeStart string
CryptoAnalysisResultCollections []GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection
The list of crypto_analysis_result_collection.
FleetId string
The fleet OCID.
Id string
The provider-assigned unique ID for this managed resource.
AggregationMode string
The result aggregation mode
Filters []GetFleetCryptoAnalysisResultsFilter
FindingCount int
Total number of findings with the analysis.
FindingCountGreaterThan int
HostName string
The hostname of the managed instance.
ManagedInstanceId string
The managed instance OCID.
NonCompliantFindingCount int
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.
NonCompliantFindingCountGreaterThan int
TimeEnd string
TimeStart string
cryptoAnalysisResultCollections List<GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection>
The list of crypto_analysis_result_collection.
fleetId String
The fleet OCID.
id String
The provider-assigned unique ID for this managed resource.
aggregationMode String
The result aggregation mode
filters List<GetFleetCryptoAnalysisResultsFilter>
findingCount Integer
Total number of findings with the analysis.
findingCountGreaterThan Integer
hostName String
The hostname of the managed instance.
managedInstanceId String
The managed instance OCID.
nonCompliantFindingCount Integer
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.
nonCompliantFindingCountGreaterThan Integer
timeEnd String
timeStart String
cryptoAnalysisResultCollections GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection[]
The list of crypto_analysis_result_collection.
fleetId string
The fleet OCID.
id string
The provider-assigned unique ID for this managed resource.
aggregationMode string
The result aggregation mode
filters GetFleetCryptoAnalysisResultsFilter[]
findingCount number
Total number of findings with the analysis.
findingCountGreaterThan number
hostName string
The hostname of the managed instance.
managedInstanceId string
The managed instance OCID.
nonCompliantFindingCount number
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.
nonCompliantFindingCountGreaterThan number
timeEnd string
timeStart string
crypto_analysis_result_collections Sequence[jms.GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection]
The list of crypto_analysis_result_collection.
fleet_id str
The fleet OCID.
id str
The provider-assigned unique ID for this managed resource.
aggregation_mode str
The result aggregation mode
filters Sequence[jms.GetFleetCryptoAnalysisResultsFilter]
finding_count int
Total number of findings with the analysis.
finding_count_greater_than int
host_name str
The hostname of the managed instance.
managed_instance_id str
The managed instance OCID.
non_compliant_finding_count int
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.
non_compliant_finding_count_greater_than int
time_end str
time_start str
cryptoAnalysisResultCollections List<Property Map>
The list of crypto_analysis_result_collection.
fleetId String
The fleet OCID.
id String
The provider-assigned unique ID for this managed resource.
aggregationMode String
The result aggregation mode
filters List<Property Map>
findingCount Number
Total number of findings with the analysis.
findingCountGreaterThan Number
hostName String
The hostname of the managed instance.
managedInstanceId String
The managed instance OCID.
nonCompliantFindingCount Number
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.
nonCompliantFindingCountGreaterThan Number
timeEnd String
timeStart String

Supporting Types

GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection

items This property is required. List<Property Map>

GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItem

AggregationMode This property is required. string
The aggregation mode of the crypto event analysis result.
Bucket This property is required. string
The Object Storage bucket name of this analysis result.
CryptoRoadmapVersion This property is required. string
The Crypto Roadmap version used to perform the analysis.
FindingCount This property is required. int
FindingCount of CryptoAnalysis Report.
FleetId This property is required. string
The OCID of the Fleet.
HostName This property is required. string
The host OCID of the managed instance.
Id This property is required. string
The OCID to identify this analysis results.
ManagedInstanceId This property is required. string
The Fleet-unique identifier of the related managed instance.
Namespace This property is required. string
The Object Storage namespace of this analysis result.
NonCompliantFindingCount This property is required. int
Non Compliant Finding Count of CryptoAnalysis Report.
Object This property is required. string
The Object Storage object name of this analysis result.
SummarizedEventCount This property is required. int
Total number of summarized events. Summarized events are deduplicated events of interest.
TimeCreated This property is required. string
The time the result is compiled.
TimeFinished This property is required. string
The time the JFR recording has finished.
TimeFirstEvent This property is required. string
Time of the first event in the analysis.
TimeLastEvent This property is required. string
Time of the last event in the analysis.
TimeStarted This property is required. string
The time the JFR recording has started.
TotalEventCount This property is required. int
Total number of events in the analysis.
WorkRequestId This property is required. string
The OCID of the work request to start the analysis.
AggregationMode This property is required. string
The aggregation mode of the crypto event analysis result.
Bucket This property is required. string
The Object Storage bucket name of this analysis result.
CryptoRoadmapVersion This property is required. string
The Crypto Roadmap version used to perform the analysis.
FindingCount This property is required. int
FindingCount of CryptoAnalysis Report.
FleetId This property is required. string
The OCID of the Fleet.
HostName This property is required. string
The host OCID of the managed instance.
Id This property is required. string
The OCID to identify this analysis results.
ManagedInstanceId This property is required. string
The Fleet-unique identifier of the related managed instance.
Namespace This property is required. string
The Object Storage namespace of this analysis result.
NonCompliantFindingCount This property is required. int
Non Compliant Finding Count of CryptoAnalysis Report.
Object This property is required. string
The Object Storage object name of this analysis result.
SummarizedEventCount This property is required. int
Total number of summarized events. Summarized events are deduplicated events of interest.
TimeCreated This property is required. string
The time the result is compiled.
TimeFinished This property is required. string
The time the JFR recording has finished.
TimeFirstEvent This property is required. string
Time of the first event in the analysis.
TimeLastEvent This property is required. string
Time of the last event in the analysis.
TimeStarted This property is required. string
The time the JFR recording has started.
TotalEventCount This property is required. int
Total number of events in the analysis.
WorkRequestId This property is required. string
The OCID of the work request to start the analysis.
aggregationMode This property is required. String
The aggregation mode of the crypto event analysis result.
bucket This property is required. String
The Object Storage bucket name of this analysis result.
cryptoRoadmapVersion This property is required. String
The Crypto Roadmap version used to perform the analysis.
findingCount This property is required. Integer
FindingCount of CryptoAnalysis Report.
fleetId This property is required. String
The OCID of the Fleet.
hostName This property is required. String
The host OCID of the managed instance.
id This property is required. String
The OCID to identify this analysis results.
managedInstanceId This property is required. String
The Fleet-unique identifier of the related managed instance.
namespace This property is required. String
The Object Storage namespace of this analysis result.
nonCompliantFindingCount This property is required. Integer
Non Compliant Finding Count of CryptoAnalysis Report.
object This property is required. String
The Object Storage object name of this analysis result.
summarizedEventCount This property is required. Integer
Total number of summarized events. Summarized events are deduplicated events of interest.
timeCreated This property is required. String
The time the result is compiled.
timeFinished This property is required. String
The time the JFR recording has finished.
timeFirstEvent This property is required. String
Time of the first event in the analysis.
timeLastEvent This property is required. String
Time of the last event in the analysis.
timeStarted This property is required. String
The time the JFR recording has started.
totalEventCount This property is required. Integer
Total number of events in the analysis.
workRequestId This property is required. String
The OCID of the work request to start the analysis.
aggregationMode This property is required. string
The aggregation mode of the crypto event analysis result.
bucket This property is required. string
The Object Storage bucket name of this analysis result.
cryptoRoadmapVersion This property is required. string
The Crypto Roadmap version used to perform the analysis.
findingCount This property is required. number
FindingCount of CryptoAnalysis Report.
fleetId This property is required. string
The OCID of the Fleet.
hostName This property is required. string
The host OCID of the managed instance.
id This property is required. string
The OCID to identify this analysis results.
managedInstanceId This property is required. string
The Fleet-unique identifier of the related managed instance.
namespace This property is required. string
The Object Storage namespace of this analysis result.
nonCompliantFindingCount This property is required. number
Non Compliant Finding Count of CryptoAnalysis Report.
object This property is required. string
The Object Storage object name of this analysis result.
summarizedEventCount This property is required. number
Total number of summarized events. Summarized events are deduplicated events of interest.
timeCreated This property is required. string
The time the result is compiled.
timeFinished This property is required. string
The time the JFR recording has finished.
timeFirstEvent This property is required. string
Time of the first event in the analysis.
timeLastEvent This property is required. string
Time of the last event in the analysis.
timeStarted This property is required. string
The time the JFR recording has started.
totalEventCount This property is required. number
Total number of events in the analysis.
workRequestId This property is required. string
The OCID of the work request to start the analysis.
aggregation_mode This property is required. str
The aggregation mode of the crypto event analysis result.
bucket This property is required. str
The Object Storage bucket name of this analysis result.
crypto_roadmap_version This property is required. str
The Crypto Roadmap version used to perform the analysis.
finding_count This property is required. int
FindingCount of CryptoAnalysis Report.
fleet_id This property is required. str
The OCID of the Fleet.
host_name This property is required. str
The host OCID of the managed instance.
id This property is required. str
The OCID to identify this analysis results.
managed_instance_id This property is required. str
The Fleet-unique identifier of the related managed instance.
namespace This property is required. str
The Object Storage namespace of this analysis result.
non_compliant_finding_count This property is required. int
Non Compliant Finding Count of CryptoAnalysis Report.
object This property is required. str
The Object Storage object name of this analysis result.
summarized_event_count This property is required. int
Total number of summarized events. Summarized events are deduplicated events of interest.
time_created This property is required. str
The time the result is compiled.
time_finished This property is required. str
The time the JFR recording has finished.
time_first_event This property is required. str
Time of the first event in the analysis.
time_last_event This property is required. str
Time of the last event in the analysis.
time_started This property is required. str
The time the JFR recording has started.
total_event_count This property is required. int
Total number of events in the analysis.
work_request_id This property is required. str
The OCID of the work request to start the analysis.
aggregationMode This property is required. String
The aggregation mode of the crypto event analysis result.
bucket This property is required. String
The Object Storage bucket name of this analysis result.
cryptoRoadmapVersion This property is required. String
The Crypto Roadmap version used to perform the analysis.
findingCount This property is required. Number
FindingCount of CryptoAnalysis Report.
fleetId This property is required. String
The OCID of the Fleet.
hostName This property is required. String
The host OCID of the managed instance.
id This property is required. String
The OCID to identify this analysis results.
managedInstanceId This property is required. String
The Fleet-unique identifier of the related managed instance.
namespace This property is required. String
The Object Storage namespace of this analysis result.
nonCompliantFindingCount This property is required. Number
Non Compliant Finding Count of CryptoAnalysis Report.
object This property is required. String
The Object Storage object name of this analysis result.
summarizedEventCount This property is required. Number
Total number of summarized events. Summarized events are deduplicated events of interest.
timeCreated This property is required. String
The time the result is compiled.
timeFinished This property is required. String
The time the JFR recording has finished.
timeFirstEvent This property is required. String
Time of the first event in the analysis.
timeLastEvent This property is required. String
Time of the last event in the analysis.
timeStarted This property is required. String
The time the JFR recording has started.
totalEventCount This property is required. Number
Total number of events in the analysis.
workRequestId This property is required. String
The OCID of the work request to start the analysis.

GetFleetCryptoAnalysisResultsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi