oci.Jms.getFleetCryptoAnalysisResults
This data source provides the list of Fleet Crypto Analysis Results in Oracle Cloud Infrastructure Jms service.
List Crypto Event Analysis results.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testFleetCryptoAnalysisResults = Oci.Jms.GetFleetCryptoAnalysisResults.Invoke(new()
{
FleetId = oci_jms_fleet.Test_fleet.Id,
AggregationMode = @var.Fleet_crypto_analysis_result_aggregation_mode,
ManagedInstanceId = oci_osmanagement_managed_instance.Test_managed_instance.Id,
TimeEnd = @var.Fleet_crypto_analysis_result_time_end,
TimeStart = @var.Fleet_crypto_analysis_result_time_start,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/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: oci_jms_fleet.Test_fleet.Id,
AggregationMode: pulumi.StringRef(_var.Fleet_crypto_analysis_result_aggregation_mode),
ManagedInstanceId: pulumi.StringRef(oci_osmanagement_managed_instance.Test_managed_instance.Id),
TimeEnd: pulumi.StringRef(_var.Fleet_crypto_analysis_result_time_end),
TimeStart: pulumi.StringRef(_var.Fleet_crypto_analysis_result_time_start),
}, nil)
if err != nil {
return err
}
return nil
})
}
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(oci_jms_fleet.test_fleet().id())
.aggregationMode(var_.fleet_crypto_analysis_result_aggregation_mode())
.managedInstanceId(oci_osmanagement_managed_instance.test_managed_instance().id())
.timeEnd(var_.fleet_crypto_analysis_result_time_end())
.timeStart(var_.fleet_crypto_analysis_result_time_start())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_fleet_crypto_analysis_results = oci.Jms.get_fleet_crypto_analysis_results(fleet_id=oci_jms_fleet["test_fleet"]["id"],
aggregation_mode=var["fleet_crypto_analysis_result_aggregation_mode"],
managed_instance_id=oci_osmanagement_managed_instance["test_managed_instance"]["id"],
time_end=var["fleet_crypto_analysis_result_time_end"],
time_start=var["fleet_crypto_analysis_result_time_start"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFleetCryptoAnalysisResults = oci.Jms.getFleetCryptoAnalysisResults({
fleetId: oci_jms_fleet.test_fleet.id,
aggregationMode: _var.fleet_crypto_analysis_result_aggregation_mode,
managedInstanceId: oci_osmanagement_managed_instance.test_managed_instance.id,
timeEnd: _var.fleet_crypto_analysis_result_time_end,
timeStart: _var.fleet_crypto_analysis_result_time_start,
});
variables:
testFleetCryptoAnalysisResults:
fn::invoke:
Function: oci:Jms:getFleetCryptoAnalysisResults
Arguments:
fleetId: ${oci_jms_fleet.test_fleet.id}
aggregationMode: ${var.fleet_crypto_analysis_result_aggregation_mode}
managedInstanceId: ${oci_osmanagement_managed_instance.test_managed_instance.id}
timeEnd: ${var.fleet_crypto_analysis_result_time_end}
timeStart: ${var.fleet_crypto_analysis_result_time_start}
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>
def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
filters: Optional[Sequence[_jms.GetFleetCryptoAnalysisResultsFilter]] = None,
fleet_id: Optional[str] = None,
managed_instance_id: Optional[str] = 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,
fleet_id: Optional[pulumi.Input[str]] = None,
managed_instance_id: Optional[pulumi.Input[str]] = None,
time_end: Optional[pulumi.Input[str]] = None,
time_start: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFleetCryptoAnalysisResultsResult]
func GetFleetCryptoAnalysisResults(ctx *Context, args *GetFleetCryptoAnalysisResultsArgs, opts ...InvokeOption) (*GetFleetCryptoAnalysisResultsResult, error)
func GetFleetCryptoAnalysisResultsOutput(ctx *Context, args *GetFleetCryptoAnalysisResultsOutputArgs, opts ...InvokeOption) GetFleetCryptoAnalysisResultsResultOutput
> 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)
}
public static CompletableFuture<GetFleetCryptoAnalysisResultsResult> getFleetCryptoAnalysisResults(GetFleetCryptoAnalysisResultsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Jms/getFleetCryptoAnalysisResults:getFleetCryptoAnalysisResults
arguments:
# arguments dictionary
The following arguments are supported:
- Fleet
Id string The OCID of the Fleet.
- Aggregation
Mode string The aggregation mode of the crypto event analysis result.
- Filters
List<Get
Fleet Crypto Analysis Results Filter> - Managed
Instance stringId The Fleet-unique identifier of the related managed instance.
- Time
End string The end of the time period during which resources are searched (formatted according to RFC3339).
- Time
Start string The start of the time period during which resources are searched (formatted according to RFC3339).
- Fleet
Id string The OCID of the Fleet.
- Aggregation
Mode string The aggregation mode of the crypto event analysis result.
- Filters
[]Get
Fleet Crypto Analysis Results Filter - Managed
Instance stringId The Fleet-unique identifier of the related managed instance.
- Time
End string The end of the time period during which resources are searched (formatted according to RFC3339).
- Time
Start string The start of the time period during which resources are searched (formatted according to RFC3339).
- fleet
Id String The OCID of the Fleet.
- aggregation
Mode String The aggregation mode of the crypto event analysis result.
- filters
List<Get
Fleet Crypto Analysis Results Filter> - managed
Instance StringId The Fleet-unique identifier of the related managed instance.
- time
End String The end of the time period during which resources are searched (formatted according to RFC3339).
- time
Start String The start of the time period during which resources are searched (formatted according to RFC3339).
- fleet
Id string The OCID of the Fleet.
- aggregation
Mode string The aggregation mode of the crypto event analysis result.
- filters
Get
Fleet Crypto Analysis Results Filter[] - managed
Instance stringId The Fleet-unique identifier of the related managed instance.
- time
End string The end of the time period during which resources are searched (formatted according to RFC3339).
- time
Start string The start of the time period during which resources are searched (formatted according to RFC3339).
- fleet_
id str The OCID of the Fleet.
- aggregation_
mode str The aggregation mode of the crypto event analysis result.
- filters
Get
Fleet Crypto Analysis Results Filter] - managed_
instance_ strid The Fleet-unique identifier of the related managed instance.
- 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).
- fleet
Id String The OCID of the Fleet.
- aggregation
Mode String The aggregation mode of the crypto event analysis result.
- filters List<Property Map>
- managed
Instance StringId The Fleet-unique identifier of the related managed instance.
- time
End String The end of the time period during which resources are searched (formatted according to RFC3339).
- time
Start String The start of the time period during which resources are searched (formatted according to RFC3339).
getFleetCryptoAnalysisResults Result
The following output properties are available:
- Crypto
Analysis List<GetResult Collections Fleet Crypto Analysis Results Crypto Analysis Result Collection> The list of crypto_analysis_result_collection.
- Fleet
Id string The fleet OCID.
- Id string
The provider-assigned unique ID for this managed resource.
- Aggregation
Mode string The result aggregation mode
- Filters
List<Get
Fleet Crypto Analysis Results Filter> - Managed
Instance stringId The managed instance OCID.
- Time
End string - Time
Start string
- Crypto
Analysis []GetResult Collections Fleet Crypto Analysis Results Crypto Analysis Result Collection The list of crypto_analysis_result_collection.
- Fleet
Id string The fleet OCID.
- Id string
The provider-assigned unique ID for this managed resource.
- Aggregation
Mode string The result aggregation mode
- Filters
[]Get
Fleet Crypto Analysis Results Filter - Managed
Instance stringId The managed instance OCID.
- Time
End string - Time
Start string
- crypto
Analysis List<GetResult Collections Fleet Crypto Analysis Results Crypto Analysis Result Collection> The list of crypto_analysis_result_collection.
- fleet
Id String The fleet OCID.
- id String
The provider-assigned unique ID for this managed resource.
- aggregation
Mode String The result aggregation mode
- filters
List<Get
Fleet Crypto Analysis Results Filter> - managed
Instance StringId The managed instance OCID.
- time
End String - time
Start String
- crypto
Analysis GetResult Collections Fleet Crypto Analysis Results Crypto Analysis Result Collection[] The list of crypto_analysis_result_collection.
- fleet
Id string The fleet OCID.
- id string
The provider-assigned unique ID for this managed resource.
- aggregation
Mode string The result aggregation mode
- filters
Get
Fleet Crypto Analysis Results Filter[] - managed
Instance stringId The managed instance OCID.
- time
End string - time
Start string
- crypto_
analysis_ Getresult_ collections Fleet Crypto Analysis Results Crypto Analysis Result Collection] 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
Get
Fleet Crypto Analysis Results Filter] - managed_
instance_ strid The managed instance OCID.
- time_
end str - time_
start str
- crypto
Analysis List<Property Map>Result Collections The list of crypto_analysis_result_collection.
- fleet
Id String The fleet OCID.
- id String
The provider-assigned unique ID for this managed resource.
- aggregation
Mode String The result aggregation mode
- filters List<Property Map>
- managed
Instance StringId The managed instance OCID.
- time
End String - time
Start String
Supporting Types
GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollection
GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItem
- Aggregation
Mode string The aggregation mode of the crypto event analysis result.
- Bucket string
The Object Storage bucket name of this analysis result.
- Crypto
Roadmap stringVersion The Crypto Roadmap version used to perform the analysis.
- Finding
Count int Total number of findings with the analysis.
- Fleet
Id string The OCID of the Fleet.
- Host
Name string The hostname of the managed instance.
- Id string
The OCID to identify this analysis results.
- Managed
Instance stringId The Fleet-unique identifier of the related managed instance.
- Namespace string
The Object Storage namespace of this analysis result.
- Non
Compliant intFinding Count 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 the the analysis.
- Object string
The Object Storage object name of this analysis result.
- Summarized
Event intCount Total number of summarized events. Summarized events are deduplicated events of interest.
- Time
Created string The time the result is compiled.
- Time
First stringEvent Time of the first event in the analysis.
- Time
Last stringEvent Time of the last event in the analysis.
- Total
Event intCount Total number of events in the analysis.
- Work
Request stringId The OCID of the work request to start the analysis.
- Aggregation
Mode string The aggregation mode of the crypto event analysis result.
- Bucket string
The Object Storage bucket name of this analysis result.
- Crypto
Roadmap stringVersion The Crypto Roadmap version used to perform the analysis.
- Finding
Count int Total number of findings with the analysis.
- Fleet
Id string The OCID of the Fleet.
- Host
Name string The hostname of the managed instance.
- Id string
The OCID to identify this analysis results.
- Managed
Instance stringId The Fleet-unique identifier of the related managed instance.
- Namespace string
The Object Storage namespace of this analysis result.
- Non
Compliant intFinding Count 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 the the analysis.
- Object string
The Object Storage object name of this analysis result.
- Summarized
Event intCount Total number of summarized events. Summarized events are deduplicated events of interest.
- Time
Created string The time the result is compiled.
- Time
First stringEvent Time of the first event in the analysis.
- Time
Last stringEvent Time of the last event in the analysis.
- Total
Event intCount Total number of events in the analysis.
- Work
Request stringId The OCID of the work request to start the analysis.
- aggregation
Mode String The aggregation mode of the crypto event analysis result.
- bucket String
The Object Storage bucket name of this analysis result.
- crypto
Roadmap StringVersion The Crypto Roadmap version used to perform the analysis.
- finding
Count Integer Total number of findings with the analysis.
- fleet
Id String The OCID of the Fleet.
- host
Name String The hostname of the managed instance.
- id String
The OCID to identify this analysis results.
- managed
Instance StringId The Fleet-unique identifier of the related managed instance.
- namespace String
The Object Storage namespace of this analysis result.
- non
Compliant IntegerFinding Count 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 the the analysis.
- object String
The Object Storage object name of this analysis result.
- summarized
Event IntegerCount Total number of summarized events. Summarized events are deduplicated events of interest.
- time
Created String The time the result is compiled.
- time
First StringEvent Time of the first event in the analysis.
- time
Last StringEvent Time of the last event in the analysis.
- total
Event IntegerCount Total number of events in the analysis.
- work
Request StringId The OCID of the work request to start the analysis.
- aggregation
Mode string The aggregation mode of the crypto event analysis result.
- bucket string
The Object Storage bucket name of this analysis result.
- crypto
Roadmap stringVersion The Crypto Roadmap version used to perform the analysis.
- finding
Count number Total number of findings with the analysis.
- fleet
Id string The OCID of the Fleet.
- host
Name string The hostname of the managed instance.
- id string
The OCID to identify this analysis results.
- managed
Instance stringId The Fleet-unique identifier of the related managed instance.
- namespace string
The Object Storage namespace of this analysis result.
- non
Compliant numberFinding Count 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 the the analysis.
- object string
The Object Storage object name of this analysis result.
- summarized
Event numberCount Total number of summarized events. Summarized events are deduplicated events of interest.
- time
Created string The time the result is compiled.
- time
First stringEvent Time of the first event in the analysis.
- time
Last stringEvent Time of the last event in the analysis.
- total
Event numberCount Total number of events in the analysis.
- work
Request stringId The OCID of the work request to start the analysis.
- aggregation_
mode str The aggregation mode of the crypto event analysis result.
- bucket str
The Object Storage bucket name of this analysis result.
- crypto_
roadmap_ strversion The Crypto Roadmap version used to perform the analysis.
- finding_
count int Total number of findings with the analysis.
- fleet_
id str The OCID of the Fleet.
- host_
name str The hostname of the managed instance.
- id str
The OCID to identify this analysis results.
- managed_
instance_ strid The Fleet-unique identifier of the related managed instance.
- namespace str
The Object Storage namespace of this analysis result.
- non_
compliant_ intfinding_ count 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 the the analysis.
- object str
The Object Storage object name of this analysis result.
- summarized_
event_ intcount Total number of summarized events. Summarized events are deduplicated events of interest.
- time_
created str The time the result is compiled.
- time_
first_ strevent Time of the first event in the analysis.
- time_
last_ strevent Time of the last event in the analysis.
- total_
event_ intcount Total number of events in the analysis.
- work_
request_ strid The OCID of the work request to start the analysis.
- aggregation
Mode String The aggregation mode of the crypto event analysis result.
- bucket String
The Object Storage bucket name of this analysis result.
- crypto
Roadmap StringVersion The Crypto Roadmap version used to perform the analysis.
- finding
Count Number Total number of findings with the analysis.
- fleet
Id String The OCID of the Fleet.
- host
Name String The hostname of the managed instance.
- id String
The OCID to identify this analysis results.
- managed
Instance StringId The Fleet-unique identifier of the related managed instance.
- namespace String
The Object Storage namespace of this analysis result.
- non
Compliant NumberFinding Count 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 the the analysis.
- object String
The Object Storage object name of this analysis result.
- summarized
Event NumberCount Total number of summarized events. Summarized events are deduplicated events of interest.
- time
Created String The time the result is compiled.
- time
First StringEvent Time of the first event in the analysis.
- time
Last StringEvent Time of the last event in the analysis.
- total
Event NumberCount Total number of events in the analysis.
- work
Request StringId The OCID of the work request to start the analysis.
GetFleetCryptoAnalysisResultsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.