import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Java Migration Analysi resource in Oracle Cloud Infrastructure Jms Utils service. * * Gets information about a Java Migration Analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaMigrationAnalysi = oci.jms.getUtilsJavaMigrationAnalysi({ * javaMigrationAnalysisId: testJavaMigrationAnalysiOciJmsUtilsJavaMigrationAnalysi.id, * }); * ``` */ export declare function getUtilsJavaMigrationAnalysi(args: GetUtilsJavaMigrationAnalysiArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUtilsJavaMigrationAnalysi. */ export interface GetUtilsJavaMigrationAnalysiArgs { /** * 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 Java Migration Analysis. */ javaMigrationAnalysisId: string; } /** * A collection of values returned by getUtilsJavaMigrationAnalysi. */ export interface GetUtilsJavaMigrationAnalysiResult { /** * Name of the analysis project. */ readonly analysisProjectName: string; /** * The analysis application file names result in the Object Storage. */ readonly analysisResultFiles: string[]; /** * Path to the Object Storage analysis application result. */ readonly analysisResultObjectStoragePath: string; /** * Object storage bucket name. */ readonly bucket: 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.GetUtilsJavaMigrationAnalysiCreatedBy[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Object storage paths to the input files applications to be analysed. */ readonly inputApplicationsObjectStoragePaths: string[]; readonly javaMigrationAnalysisId: string; /** * Additional info reserved for future use. */ readonly metadata: string; /** * Object storage namespace. */ readonly namespace: string; /** * Jdk Version of the Java Migration Analysis target. */ readonly targetJdkVersion: string; /** * The date and time the Java Migration 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 Java Migration 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 Java Migration 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; /** * 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 Java Migration Analysi resource in Oracle Cloud Infrastructure Jms Utils service. * * Gets information about a Java Migration Analysis. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaMigrationAnalysi = oci.jms.getUtilsJavaMigrationAnalysi({ * javaMigrationAnalysisId: testJavaMigrationAnalysiOciJmsUtilsJavaMigrationAnalysi.id, * }); * ``` */ export declare function getUtilsJavaMigrationAnalysiOutput(args: GetUtilsJavaMigrationAnalysiOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUtilsJavaMigrationAnalysi. */ export interface GetUtilsJavaMigrationAnalysiOutputArgs { /** * 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 Java Migration Analysis. */ javaMigrationAnalysisId: pulumi.Input; } //# sourceMappingURL=getUtilsJavaMigrationAnalysi.d.ts.map