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 Performance Tuning Analysis in Oracle Cloud Infrastructure Jms Utils service. * * Gets a list of Performance tuning Analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPerformanceTuningAnalysis = oci.jms.getUtilsPerformanceTuningAnalysis({ * analysisProjectName: testProject.name, * compartmentId: compartmentId, * id: performanceTuningAnalysiId, * performanceTuningAnalysisResult: performanceTuningAnalysiPerformanceTuningAnalysisResult, * }); * ``` */ export declare function getUtilsPerformanceTuningAnalysis(args?: GetUtilsPerformanceTuningAnalysisArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUtilsPerformanceTuningAnalysis. */ export interface GetUtilsPerformanceTuningAnalysisArgs { /** * The project name of the Performance Tuning Analysis to query for. */ analysisProjectName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; filters?: inputs.Jms.GetUtilsPerformanceTuningAnalysisFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis. */ id?: string; /** * The result of the Performance Tuning Analysis to query for. */ performanceTuningAnalysisResult?: string; } /** * A collection of values returned by getUtilsPerformanceTuningAnalysis. */ export interface GetUtilsPerformanceTuningAnalysisResult { /** * Name of the analysis project. */ readonly analysisProjectName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; readonly filters?: outputs.Jms.GetUtilsPerformanceTuningAnalysisFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis. */ readonly id?: string; /** * The list of performance_tuning_analysis_collection. */ readonly performanceTuningAnalysisCollections: outputs.Jms.GetUtilsPerformanceTuningAnalysisPerformanceTuningAnalysisCollection[]; readonly performanceTuningAnalysisResult?: string; } /** * This data source provides the list of Performance Tuning Analysis in Oracle Cloud Infrastructure Jms Utils service. * * Gets a list of Performance tuning Analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPerformanceTuningAnalysis = oci.jms.getUtilsPerformanceTuningAnalysis({ * analysisProjectName: testProject.name, * compartmentId: compartmentId, * id: performanceTuningAnalysiId, * performanceTuningAnalysisResult: performanceTuningAnalysiPerformanceTuningAnalysisResult, * }); * ``` */ export declare function getUtilsPerformanceTuningAnalysisOutput(args?: GetUtilsPerformanceTuningAnalysisOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUtilsPerformanceTuningAnalysis. */ export interface GetUtilsPerformanceTuningAnalysisOutputArgs { /** * The project name of the Performance Tuning Analysis to query for. */ analysisProjectName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis. */ id?: pulumi.Input; /** * The result of the Performance Tuning Analysis to query for. */ performanceTuningAnalysisResult?: pulumi.Input; } //# sourceMappingURL=getUtilsPerformanceTuningAnalysis.d.ts.map