import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Message resource in Oracle Cloud Infrastructure Golden Gate service. * * Lists the DeploymentMessages for a deployment. The sorting order is not important. By default first will be Upgrade message, next Exception message and then Storage Utilization message. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMessage = oci.goldengate.getMessage({ * deploymentId: testDeployment.id, * }); * ``` */ export declare function getMessage(args: GetMessageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMessage. */ export interface GetMessageArgs { /** * A unique Deployment identifier. */ deploymentId: string; } /** * A collection of values returned by getMessage. */ export interface GetMessageResult { readonly deploymentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An array of DeploymentMessages. */ readonly items: outputs.GoldenGate.GetMessageItem[]; } /** * This data source provides details about a specific Message resource in Oracle Cloud Infrastructure Golden Gate service. * * Lists the DeploymentMessages for a deployment. The sorting order is not important. By default first will be Upgrade message, next Exception message and then Storage Utilization message. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMessage = oci.goldengate.getMessage({ * deploymentId: testDeployment.id, * }); * ``` */ export declare function getMessageOutput(args: GetMessageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMessage. */ export interface GetMessageOutputArgs { /** * A unique Deployment identifier. */ deploymentId: pulumi.Input; } //# sourceMappingURL=getMessage.d.ts.map