Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Jms.getFleetPerformanceTuningAnalysisResults
Explore with Pulumi AI
This data source provides the list of Fleet Performance Tuning Analysis Results in Oracle Cloud Infrastructure Jms service.
List Performance Tuning Analysis results.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFleetPerformanceTuningAnalysisResults = oci.Jms.getFleetPerformanceTuningAnalysisResults({
    fleetId: testFleet.id,
    applicationId: fleetPerformanceTuningAnalysisResultApplicationId,
    applicationName: fleetPerformanceTuningAnalysisResultApplicationName,
    hostName: fleetPerformanceTuningAnalysisResultHostName,
    managedInstanceId: fleetPerformanceTuningAnalysisResultManagedInstanceId,
    timeEnd: fleetPerformanceTuningAnalysisResultTimeEnd,
    timeStart: fleetPerformanceTuningAnalysisResultTimeStart,
});
import pulumi
import pulumi_oci as oci
test_fleet_performance_tuning_analysis_results = oci.Jms.get_fleet_performance_tuning_analysis_results(fleet_id=test_fleet["id"],
    application_id=fleet_performance_tuning_analysis_result_application_id,
    application_name=fleet_performance_tuning_analysis_result_application_name,
    host_name=fleet_performance_tuning_analysis_result_host_name,
    managed_instance_id=fleet_performance_tuning_analysis_result_managed_instance_id,
    time_end=fleet_performance_tuning_analysis_result_time_end,
    time_start=fleet_performance_tuning_analysis_result_time_start)
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.GetFleetPerformanceTuningAnalysisResults(ctx, &jms.GetFleetPerformanceTuningAnalysisResultsArgs{
			FleetId:           testFleet.Id,
			ApplicationId:     pulumi.StringRef(fleetPerformanceTuningAnalysisResultApplicationId),
			ApplicationName:   pulumi.StringRef(fleetPerformanceTuningAnalysisResultApplicationName),
			HostName:          pulumi.StringRef(fleetPerformanceTuningAnalysisResultHostName),
			ManagedInstanceId: pulumi.StringRef(fleetPerformanceTuningAnalysisResultManagedInstanceId),
			TimeEnd:           pulumi.StringRef(fleetPerformanceTuningAnalysisResultTimeEnd),
			TimeStart:         pulumi.StringRef(fleetPerformanceTuningAnalysisResultTimeStart),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testFleetPerformanceTuningAnalysisResults = Oci.Jms.GetFleetPerformanceTuningAnalysisResults.Invoke(new()
    {
        FleetId = testFleet.Id,
        ApplicationId = fleetPerformanceTuningAnalysisResultApplicationId,
        ApplicationName = fleetPerformanceTuningAnalysisResultApplicationName,
        HostName = fleetPerformanceTuningAnalysisResultHostName,
        ManagedInstanceId = fleetPerformanceTuningAnalysisResultManagedInstanceId,
        TimeEnd = fleetPerformanceTuningAnalysisResultTimeEnd,
        TimeStart = fleetPerformanceTuningAnalysisResultTimeStart,
    });
});
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.GetFleetPerformanceTuningAnalysisResultsArgs;
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 testFleetPerformanceTuningAnalysisResults = JmsFunctions.getFleetPerformanceTuningAnalysisResults(GetFleetPerformanceTuningAnalysisResultsArgs.builder()
            .fleetId(testFleet.id())
            .applicationId(fleetPerformanceTuningAnalysisResultApplicationId)
            .applicationName(fleetPerformanceTuningAnalysisResultApplicationName)
            .hostName(fleetPerformanceTuningAnalysisResultHostName)
            .managedInstanceId(fleetPerformanceTuningAnalysisResultManagedInstanceId)
            .timeEnd(fleetPerformanceTuningAnalysisResultTimeEnd)
            .timeStart(fleetPerformanceTuningAnalysisResultTimeStart)
            .build());
    }
}
variables:
  testFleetPerformanceTuningAnalysisResults:
    fn::invoke:
      function: oci:Jms:getFleetPerformanceTuningAnalysisResults
      arguments:
        fleetId: ${testFleet.id}
        applicationId: ${fleetPerformanceTuningAnalysisResultApplicationId}
        applicationName: ${fleetPerformanceTuningAnalysisResultApplicationName}
        hostName: ${fleetPerformanceTuningAnalysisResultHostName}
        managedInstanceId: ${fleetPerformanceTuningAnalysisResultManagedInstanceId}
        timeEnd: ${fleetPerformanceTuningAnalysisResultTimeEnd}
        timeStart: ${fleetPerformanceTuningAnalysisResultTimeStart}
Using getFleetPerformanceTuningAnalysisResults
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 getFleetPerformanceTuningAnalysisResults(args: GetFleetPerformanceTuningAnalysisResultsArgs, opts?: InvokeOptions): Promise<GetFleetPerformanceTuningAnalysisResultsResult>
function getFleetPerformanceTuningAnalysisResultsOutput(args: GetFleetPerformanceTuningAnalysisResultsOutputArgs, opts?: InvokeOptions): Output<GetFleetPerformanceTuningAnalysisResultsResult>def get_fleet_performance_tuning_analysis_results(application_id: Optional[str] = None,
                                                  application_name: Optional[str] = None,
                                                  filters: Optional[Sequence[GetFleetPerformanceTuningAnalysisResultsFilter]] = None,
                                                  fleet_id: Optional[str] = None,
                                                  host_name: Optional[str] = None,
                                                  managed_instance_id: Optional[str] = None,
                                                  time_end: Optional[str] = None,
                                                  time_start: Optional[str] = None,
                                                  opts: Optional[InvokeOptions] = None) -> GetFleetPerformanceTuningAnalysisResultsResult
def get_fleet_performance_tuning_analysis_results_output(application_id: Optional[pulumi.Input[str]] = None,
                                                  application_name: Optional[pulumi.Input[str]] = None,
                                                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFleetPerformanceTuningAnalysisResultsFilterArgs]]]] = None,
                                                  fleet_id: Optional[pulumi.Input[str]] = None,
                                                  host_name: 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[GetFleetPerformanceTuningAnalysisResultsResult]func GetFleetPerformanceTuningAnalysisResults(ctx *Context, args *GetFleetPerformanceTuningAnalysisResultsArgs, opts ...InvokeOption) (*GetFleetPerformanceTuningAnalysisResultsResult, error)
func GetFleetPerformanceTuningAnalysisResultsOutput(ctx *Context, args *GetFleetPerformanceTuningAnalysisResultsOutputArgs, opts ...InvokeOption) GetFleetPerformanceTuningAnalysisResultsResultOutput> Note: This function is named GetFleetPerformanceTuningAnalysisResults in the Go SDK.
public static class GetFleetPerformanceTuningAnalysisResults 
{
    public static Task<GetFleetPerformanceTuningAnalysisResultsResult> InvokeAsync(GetFleetPerformanceTuningAnalysisResultsArgs args, InvokeOptions? opts = null)
    public static Output<GetFleetPerformanceTuningAnalysisResultsResult> Invoke(GetFleetPerformanceTuningAnalysisResultsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetFleetPerformanceTuningAnalysisResultsResult> getFleetPerformanceTuningAnalysisResults(GetFleetPerformanceTuningAnalysisResultsArgs args, InvokeOptions options)
public static Output<GetFleetPerformanceTuningAnalysisResultsResult> getFleetPerformanceTuningAnalysisResults(GetFleetPerformanceTuningAnalysisResultsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Jms/getFleetPerformanceTuningAnalysisResults:getFleetPerformanceTuningAnalysisResults
  arguments:
    # arguments dictionaryThe following arguments are supported:
- FleetId string
- The OCID of the Fleet.
- ApplicationId string
- The Fleet-unique identifier of the related application.
- ApplicationName string
- The name of the application.
- Filters
List<GetFleet Performance Tuning Analysis Results Filter> 
- HostName string
- The host OCID of the managed instance.
- ManagedInstance stringId 
- The Fleet-unique identifier of the related managed instance.
- 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 string
- The OCID of the Fleet.
- ApplicationId string
- The Fleet-unique identifier of the related application.
- ApplicationName string
- The name of the application.
- Filters
[]GetFleet Performance Tuning Analysis Results Filter 
- HostName string
- The host OCID of the managed instance.
- ManagedInstance stringId 
- The Fleet-unique identifier of the related managed instance.
- 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 String
- The OCID of the Fleet.
- applicationId String
- The Fleet-unique identifier of the related application.
- applicationName String
- The name of the application.
- filters
List<GetFleet Performance Tuning Analysis Results Filter> 
- hostName String
- The host OCID of the managed instance.
- managedInstance StringId 
- The Fleet-unique identifier of the related managed instance.
- 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 string
- The OCID of the Fleet.
- applicationId string
- The Fleet-unique identifier of the related application.
- applicationName string
- The name of the application.
- filters
GetFleet Performance Tuning Analysis Results Filter[] 
- hostName string
- The host OCID of the managed instance.
- managedInstance stringId 
- The Fleet-unique identifier of the related managed instance.
- 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 str
- The OCID of the Fleet.
- application_id str
- The Fleet-unique identifier of the related application.
- application_name str
- The name of the application.
- filters
Sequence[GetFleet Performance Tuning Analysis Results Filter] 
- host_name str
- The host OCID of the managed instance.
- 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).
- fleetId String
- The OCID of the Fleet.
- applicationId String
- The Fleet-unique identifier of the related application.
- applicationName String
- The name of the application.
- filters List<Property Map>
- hostName String
- The host OCID of the managed instance.
- managedInstance StringId 
- The Fleet-unique identifier of the related managed instance.
- 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).
getFleetPerformanceTuningAnalysisResults Result
The following output properties are available:
- FleetId string
- The fleet OCID.
- Id string
- The provider-assigned unique ID for this managed resource.
- PerformanceTuning List<GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection> 
- The list of performance_tuning_analysis_result_collection.
- ApplicationId string
- The OCID of the application for which the report has been generated.
- ApplicationName string
- The name of the application for which the report has been generated.
- Filters
List<GetFleet Performance Tuning Analysis Results Filter> 
- HostName string
- The hostname of the managed instance.
- ManagedInstance stringId 
- The managed instance OCID.
- TimeEnd string
- TimeStart string
- FleetId string
- The fleet OCID.
- Id string
- The provider-assigned unique ID for this managed resource.
- PerformanceTuning []GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection 
- The list of performance_tuning_analysis_result_collection.
- ApplicationId string
- The OCID of the application for which the report has been generated.
- ApplicationName string
- The name of the application for which the report has been generated.
- Filters
[]GetFleet Performance Tuning Analysis Results Filter 
- HostName string
- The hostname of the managed instance.
- ManagedInstance stringId 
- The managed instance OCID.
- TimeEnd string
- TimeStart string
- fleetId String
- The fleet OCID.
- id String
- The provider-assigned unique ID for this managed resource.
- performanceTuning List<GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection> 
- The list of performance_tuning_analysis_result_collection.
- applicationId String
- The OCID of the application for which the report has been generated.
- applicationName String
- The name of the application for which the report has been generated.
- filters
List<GetFleet Performance Tuning Analysis Results Filter> 
- hostName String
- The hostname of the managed instance.
- managedInstance StringId 
- The managed instance OCID.
- timeEnd String
- timeStart String
- fleetId string
- The fleet OCID.
- id string
- The provider-assigned unique ID for this managed resource.
- performanceTuning GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection[] 
- The list of performance_tuning_analysis_result_collection.
- applicationId string
- The OCID of the application for which the report has been generated.
- applicationName string
- The name of the application for which the report has been generated.
- filters
GetFleet Performance Tuning Analysis Results Filter[] 
- hostName string
- The hostname of the managed instance.
- managedInstance stringId 
- The managed instance OCID.
- timeEnd string
- timeStart string
- fleet_id str
- The fleet OCID.
- id str
- The provider-assigned unique ID for this managed resource.
- performance_tuning_ Sequence[Getanalysis_ result_ collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection] 
- The list of performance_tuning_analysis_result_collection.
- application_id str
- The OCID of the application for which the report has been generated.
- application_name str
- The name of the application for which the report has been generated.
- filters
Sequence[GetFleet Performance Tuning Analysis Results Filter] 
- host_name str
- The hostname of the managed instance.
- managed_instance_ strid 
- The managed instance OCID.
- time_end str
- time_start str
- fleetId String
- The fleet OCID.
- id String
- The provider-assigned unique ID for this managed resource.
- performanceTuning List<Property Map>Analysis Result Collections 
- The list of performance_tuning_analysis_result_collection.
- applicationId String
- The OCID of the application for which the report has been generated.
- applicationName String
- The name of the application for which the report has been generated.
- filters List<Property Map>
- hostName String
- The hostname of the managed instance.
- managedInstance StringId 
- The managed instance OCID.
- timeEnd String
- timeStart String
Supporting Types
GetFleetPerformanceTuningAnalysisResultsFilter      
GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCollection          
GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCollectionItem           
- ApplicationId string
- The Fleet-unique identifier of the related application.
- ApplicationInstallation stringId 
- The internal identifier of the application installation for which the report has been generated.
- ApplicationInstallation stringPath 
- The installation path of the application for which the report has been generated.
- ApplicationName string
- The name of the application.
- Bucket string
- The Object Storage bucket name of this analysis result.
- FleetId string
- The OCID of the Fleet.
- HostName string
- The host OCID of the managed instance.
- Id string
- The OCID to identify this analysis results.
- ManagedInstance stringId 
- The Fleet-unique identifier of the related managed instance.
- Namespace string
- The Object Storage namespace of this analysis result.
- Object string
- The Object Storage object name of this analysis result.
- Result string
- Result of the analysis based on whether warnings have been found or not.
- TimeCreated string
- The time the result is compiled.
- TimeFinished string
- The time the JFR recording has finished.
- TimeStarted string
- The time the JFR recording has started.
- WarningCount int
- Total number of warnings reported by the analysis.
- WorkRequest stringId 
- The OCID of the work request to start the analysis.
- ApplicationId string
- The Fleet-unique identifier of the related application.
- ApplicationInstallation stringId 
- The internal identifier of the application installation for which the report has been generated.
- ApplicationInstallation stringPath 
- The installation path of the application for which the report has been generated.
- ApplicationName string
- The name of the application.
- Bucket string
- The Object Storage bucket name of this analysis result.
- FleetId string
- The OCID of the Fleet.
- HostName string
- The host OCID of the managed instance.
- Id string
- The OCID to identify this analysis results.
- ManagedInstance stringId 
- The Fleet-unique identifier of the related managed instance.
- Namespace string
- The Object Storage namespace of this analysis result.
- Object string
- The Object Storage object name of this analysis result.
- Result string
- Result of the analysis based on whether warnings have been found or not.
- TimeCreated string
- The time the result is compiled.
- TimeFinished string
- The time the JFR recording has finished.
- TimeStarted string
- The time the JFR recording has started.
- WarningCount int
- Total number of warnings reported by the analysis.
- WorkRequest stringId 
- The OCID of the work request to start the analysis.
- applicationId String
- The Fleet-unique identifier of the related application.
- applicationInstallation StringId 
- The internal identifier of the application installation for which the report has been generated.
- applicationInstallation StringPath 
- The installation path of the application for which the report has been generated.
- applicationName String
- The name of the application.
- bucket String
- The Object Storage bucket name of this analysis result.
- fleetId String
- The OCID of the Fleet.
- hostName String
- The host OCID of the managed instance.
- id String
- The OCID to identify this analysis results.
- managedInstance StringId 
- The Fleet-unique identifier of the related managed instance.
- namespace String
- The Object Storage namespace of this analysis result.
- object String
- The Object Storage object name of this analysis result.
- result String
- Result of the analysis based on whether warnings have been found or not.
- timeCreated String
- The time the result is compiled.
- timeFinished String
- The time the JFR recording has finished.
- timeStarted String
- The time the JFR recording has started.
- warningCount Integer
- Total number of warnings reported by the analysis.
- workRequest StringId 
- The OCID of the work request to start the analysis.
- applicationId string
- The Fleet-unique identifier of the related application.
- applicationInstallation stringId 
- The internal identifier of the application installation for which the report has been generated.
- applicationInstallation stringPath 
- The installation path of the application for which the report has been generated.
- applicationName string
- The name of the application.
- bucket string
- The Object Storage bucket name of this analysis result.
- fleetId string
- The OCID of the Fleet.
- hostName string
- The host OCID of the managed instance.
- id string
- The OCID to identify this analysis results.
- managedInstance stringId 
- The Fleet-unique identifier of the related managed instance.
- namespace string
- The Object Storage namespace of this analysis result.
- object string
- The Object Storage object name of this analysis result.
- result string
- Result of the analysis based on whether warnings have been found or not.
- timeCreated string
- The time the result is compiled.
- timeFinished string
- The time the JFR recording has finished.
- timeStarted string
- The time the JFR recording has started.
- warningCount number
- Total number of warnings reported by the analysis.
- workRequest stringId 
- The OCID of the work request to start the analysis.
- application_id str
- The Fleet-unique identifier of the related application.
- application_installation_ strid 
- The internal identifier of the application installation for which the report has been generated.
- application_installation_ strpath 
- The installation path of the application for which the report has been generated.
- application_name str
- The name of the application.
- bucket str
- The Object Storage bucket name of this analysis result.
- fleet_id str
- The OCID of the Fleet.
- host_name str
- The host OCID 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.
- object str
- The Object Storage object name of this analysis result.
- result str
- Result of the analysis based on whether warnings have been found or not.
- time_created str
- The time the result is compiled.
- time_finished str
- The time the JFR recording has finished.
- time_started str
- The time the JFR recording has started.
- warning_count int
- Total number of warnings reported by the analysis.
- work_request_ strid 
- The OCID of the work request to start the analysis.
- applicationId String
- The Fleet-unique identifier of the related application.
- applicationInstallation StringId 
- The internal identifier of the application installation for which the report has been generated.
- applicationInstallation StringPath 
- The installation path of the application for which the report has been generated.
- applicationName String
- The name of the application.
- bucket String
- The Object Storage bucket name of this analysis result.
- fleetId String
- The OCID of the Fleet.
- hostName String
- The host OCID of the managed instance.
- id String
- The OCID to identify this analysis results.
- managedInstance StringId 
- The Fleet-unique identifier of the related managed instance.
- namespace String
- The Object Storage namespace of this analysis result.
- object String
- The Object Storage object name of this analysis result.
- result String
- Result of the analysis based on whether warnings have been found or not.
- timeCreated String
- The time the result is compiled.
- timeFinished String
- The time the JFR recording has finished.
- timeStarted String
- The time the JFR recording has started.
- warningCount Number
- Total number of warnings reported by the analysis.
- workRequest StringId 
- The OCID of the work request to start the analysis.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.