import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Performance Tuning Analysi resource in Oracle Cloud Infrastructure Jms Utils service. * * Gets information about a Performance Tuning Analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPerformanceTuningAnalysi = oci.jms.getUtilsPerformanceTuningAnalysi({ * performanceTuningAnalysisId: testPerformanceTuningAnalysiOciJmsUtilsPerformanceTuningAnalysi.id, * }); * ``` */ export declare function getUtilsPerformanceTuningAnalysi(args: GetUtilsPerformanceTuningAnalysiArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUtilsPerformanceTuningAnalysi. */ export interface GetUtilsPerformanceTuningAnalysiArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis. */ performanceTuningAnalysisId: string; } /** * A collection of values returned by getUtilsPerformanceTuningAnalysi. */ export interface GetUtilsPerformanceTuningAnalysiResult { /** * Name of the analysis project. */ readonly analysisProjectName: string; /** * Object storage path to the artifact. */ readonly artifactObjectStoragePath: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * An authorized principal. */ readonly createdBies: outputs.Jms.GetUtilsPerformanceTuningAnalysiCreatedBy[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly performanceTuningAnalysisId: string; /** * Possible Performance Tuning Result statuses. */ readonly result: string; /** * Object storage path to the analysis. */ readonly resultObjectStoragePath: string; /** * The date and time the Performance Tuning Analysis was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the Performance Tuning Analysis was finished, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeFinished: string; /** * The date and time the Performance Tuning Analysis was started, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeStarted: string; /** * Number of warnings in the Performance Tuning Analysis. */ readonly warningCount: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Work Request. */ readonly workRequestId: string; } /** * This data source provides details about a specific Performance Tuning Analysi resource in Oracle Cloud Infrastructure Jms Utils service. * * Gets information about a Performance Tuning Analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPerformanceTuningAnalysi = oci.jms.getUtilsPerformanceTuningAnalysi({ * performanceTuningAnalysisId: testPerformanceTuningAnalysiOciJmsUtilsPerformanceTuningAnalysi.id, * }); * ``` */ export declare function getUtilsPerformanceTuningAnalysiOutput(args: GetUtilsPerformanceTuningAnalysiOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUtilsPerformanceTuningAnalysi. */ export interface GetUtilsPerformanceTuningAnalysiOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis. */ performanceTuningAnalysisId: pulumi.Input; } //# sourceMappingURL=getUtilsPerformanceTuningAnalysi.d.ts.map