import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Fleet Performance Tuning Analysis Results in Oracle Cloud Infrastructure Jms service. * * List Performance Tuning Analysis results. * * ## Example Usage * * ```typescript * 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, * }); * ``` */ export declare function getFleetPerformanceTuningAnalysisResults(args: GetFleetPerformanceTuningAnalysisResultsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetPerformanceTuningAnalysisResults. */ export interface GetFleetPerformanceTuningAnalysisResultsArgs { /** * The Fleet-unique identifier of the related application. */ applicationId?: string; /** * The name of the application. */ applicationName?: string; filters?: inputs.Jms.GetFleetPerformanceTuningAnalysisResultsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; /** * The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostName?: string; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: string; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: string; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: string; } /** * A collection of values returned by getFleetPerformanceTuningAnalysisResults. */ export interface GetFleetPerformanceTuningAnalysisResultsResult { /** * The OCID of the application for which the report has been generated. */ readonly applicationId?: string; /** * The name of the application for which the report has been generated. */ readonly applicationName?: string; readonly filters?: outputs.Jms.GetFleetPerformanceTuningAnalysisResultsFilter[]; /** * The fleet OCID. */ readonly fleetId: string; /** * The hostname of the managed instance. */ readonly hostName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The managed instance OCID. */ readonly managedInstanceId?: string; /** * The list of performance_tuning_analysis_result_collection. */ readonly performanceTuningAnalysisResultCollections: outputs.Jms.GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCollection[]; readonly timeEnd?: string; readonly timeStart?: string; } /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getFleetPerformanceTuningAnalysisResultsOutput(args: GetFleetPerformanceTuningAnalysisResultsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetPerformanceTuningAnalysisResults. */ export interface GetFleetPerformanceTuningAnalysisResultsOutputArgs { /** * The Fleet-unique identifier of the related application. */ applicationId?: pulumi.Input; /** * The name of the application. */ applicationName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: pulumi.Input; /** * The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostName?: pulumi.Input; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: pulumi.Input; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: pulumi.Input; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: pulumi.Input; } //# sourceMappingURL=getFleetPerformanceTuningAnalysisResults.d.ts.map