Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 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,
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,
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),
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,
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)
.hostName(fleetPerformanceTuningAnalysisResultHostName)
.managedInstanceId(fleetPerformanceTuningAnalysisResultManagedInstanceId)
.timeEnd(fleetPerformanceTuningAnalysisResultTimeEnd)
.timeStart(fleetPerformanceTuningAnalysisResultTimeStart)
.build());
}
}
variables:
testFleetPerformanceTuningAnalysisResults:
fn::invoke:
Function: oci:Jms:getFleetPerformanceTuningAnalysisResults
Arguments:
fleetId: ${testFleet.id}
applicationId: ${fleetPerformanceTuningAnalysisResultApplicationId}
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,
filters: Optional[Sequence[_jms.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,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_jms.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)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Jms/getFleetPerformanceTuningAnalysisResults:getFleetPerformanceTuningAnalysisResults
arguments:
# arguments dictionary
The following arguments are supported:
- Fleet
Id string - The OCID of the Fleet.
- Application
Id string - The Fleet-unique identifier of the related application.
- Filters
List<Get
Fleet Performance Tuning Analysis Results Filter> - Host
Name string - The host OCID of the managed instance.
- 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.
- Application
Id string - The Fleet-unique identifier of the related application.
- Filters
[]Get
Fleet Performance Tuning Analysis Results Filter - Host
Name string - The host OCID of the managed instance.
- 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.
- application
Id String - The Fleet-unique identifier of the related application.
- filters
List<Get
Fleet Performance Tuning Analysis Results Filter> - host
Name String - The host OCID of the managed instance.
- 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.
- application
Id string - The Fleet-unique identifier of the related application.
- filters
Get
Fleet Performance Tuning Analysis Results Filter[] - host
Name string - The host OCID of the managed instance.
- 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.
- application_
id str - The Fleet-unique identifier of the related application.
- filters
Sequence[jms.
Get Fleet 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).
- fleet
Id String - The OCID of the Fleet.
- application
Id String - The Fleet-unique identifier of the related application.
- filters List<Property Map>
- host
Name String - The host OCID of the managed instance.
- 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).
getFleetPerformanceTuningAnalysisResults Result
The following output properties are available:
- Fleet
Id string - The fleet OCID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Performance
Tuning List<GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection> - The list of performance_tuning_analysis_result_collection.
- Application
Id string - The OCID of the application for which the report has been generated.
- Filters
List<Get
Fleet Performance Tuning Analysis Results Filter> - Host
Name string - The hostname of the managed instance.
- Managed
Instance stringId - The managed instance OCID.
- Time
End string - Time
Start string
- Fleet
Id string - The fleet OCID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Performance
Tuning []GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection - The list of performance_tuning_analysis_result_collection.
- Application
Id string - The OCID of the application for which the report has been generated.
- Filters
[]Get
Fleet Performance Tuning Analysis Results Filter - Host
Name string - The hostname of the managed instance.
- Managed
Instance stringId - The managed instance OCID.
- Time
End string - Time
Start string
- fleet
Id String - The fleet OCID.
- id String
- The provider-assigned unique ID for this managed resource.
- performance
Tuning List<GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection> - The list of performance_tuning_analysis_result_collection.
- application
Id String - The OCID of the application for which the report has been generated.
- filters
List<Get
Fleet Performance Tuning Analysis Results Filter> - host
Name String - The hostname of the managed instance.
- managed
Instance StringId - The managed instance OCID.
- time
End String - time
Start String
- fleet
Id string - The fleet OCID.
- id string
- The provider-assigned unique ID for this managed resource.
- performance
Tuning GetAnalysis Result Collections Fleet Performance Tuning Analysis Results Performance Tuning Analysis Result Collection[] - The list of performance_tuning_analysis_result_collection.
- application
Id string - The OCID of the application for which the report has been generated.
- filters
Get
Fleet Performance Tuning Analysis Results Filter[] - host
Name string - The hostname of the managed instance.
- managed
Instance stringId - The managed instance OCID.
- time
End string - time
Start string
- fleet_
id str - The fleet OCID.
- id str
- The provider-assigned unique ID for this managed resource.
- performance_
tuning_ Sequence[jms.analysis_ result_ collections Get 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.
- filters
Sequence[jms.
Get Fleet 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
- fleet
Id String - The fleet OCID.
- id String
- The provider-assigned unique ID for this managed resource.
- performance
Tuning List<Property Map>Analysis Result Collections - The list of performance_tuning_analysis_result_collection.
- application
Id String - The OCID of the application for which the report has been generated.
- filters List<Property Map>
- host
Name String - The hostname of the managed instance.
- managed
Instance StringId - The managed instance OCID.
- time
End String - time
Start String
Supporting Types
GetFleetPerformanceTuningAnalysisResultsFilter
GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCollection
GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCollectionItem
- Application
Id string - The Fleet-unique identifier of the related application.
- Application
Installation stringId - The internal identifier of the application installation for which the report has been generated.
- Application
Installation stringPath - The installation path of the application for which the report has been generated.
- Application
Name string - The name of the application for which the report has been generated.
- Bucket string
- The Object Storage bucket name of this analysis result.
- Fleet
Id string - The OCID of the Fleet.
- Host
Name string - The host OCID 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.
- 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.
- Time
Created string - The time the result is compiled.
- Time
Finished string - The time the JFR recording has finished.
- Time
Started string - The time the JFR recording has started.
- Warning
Count int - Total number of warnings reported by the analysis.
- Work
Request stringId - The OCID of the work request to start the analysis.
- Application
Id string - The Fleet-unique identifier of the related application.
- Application
Installation stringId - The internal identifier of the application installation for which the report has been generated.
- Application
Installation stringPath - The installation path of the application for which the report has been generated.
- Application
Name string - The name of the application for which the report has been generated.
- Bucket string
- The Object Storage bucket name of this analysis result.
- Fleet
Id string - The OCID of the Fleet.
- Host
Name string - The host OCID 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.
- 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.
- Time
Created string - The time the result is compiled.
- Time
Finished string - The time the JFR recording has finished.
- Time
Started string - The time the JFR recording has started.
- Warning
Count int - Total number of warnings reported by the analysis.
- Work
Request stringId - The OCID of the work request to start the analysis.
- application
Id String - The Fleet-unique identifier of the related application.
- application
Installation StringId - The internal identifier of the application installation for which the report has been generated.
- application
Installation StringPath - The installation path of the application for which the report has been generated.
- application
Name String - The name of the application for which the report has been generated.
- bucket String
- The Object Storage bucket name of this analysis result.
- fleet
Id String - The OCID of the Fleet.
- host
Name String - The host OCID 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.
- 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.
- time
Created String - The time the result is compiled.
- time
Finished String - The time the JFR recording has finished.
- time
Started String - The time the JFR recording has started.
- warning
Count Integer - Total number of warnings reported by the analysis.
- work
Request StringId - The OCID of the work request to start the analysis.
- application
Id string - The Fleet-unique identifier of the related application.
- application
Installation stringId - The internal identifier of the application installation for which the report has been generated.
- application
Installation stringPath - The installation path of the application for which the report has been generated.
- application
Name string - The name of the application for which the report has been generated.
- bucket string
- The Object Storage bucket name of this analysis result.
- fleet
Id string - The OCID of the Fleet.
- host
Name string - The host OCID 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.
- 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.
- time
Created string - The time the result is compiled.
- time
Finished string - The time the JFR recording has finished.
- time
Started string - The time the JFR recording has started.
- warning
Count number - Total number of warnings reported by the analysis.
- work
Request 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 for which the report has been generated.
- 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.
- application
Id String - The Fleet-unique identifier of the related application.
- application
Installation StringId - The internal identifier of the application installation for which the report has been generated.
- application
Installation StringPath - The installation path of the application for which the report has been generated.
- application
Name String - The name of the application for which the report has been generated.
- bucket String
- The Object Storage bucket name of this analysis result.
- fleet
Id String - The OCID of the Fleet.
- host
Name String - The host OCID 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.
- 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.
- time
Created String - The time the result is compiled.
- time
Finished String - The time the JFR recording has finished.
- time
Started String - The time the JFR recording has started.
- warning
Count Number - Total number of warnings reported by the analysis.
- work
Request 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
oci
Terraform Provider.