import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Email service. * * Returns email configuration associated with the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.email.getConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getConfiguration(args: GetConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConfiguration. */ export interface GetConfigurationArgs { /** * The OCID for the compartment. */ compartmentId: string; } /** * A collection of values returned by getConfiguration. */ export interface GetConfigurationResult { /** * The root compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) (same as the tenancy OCID) */ readonly compartmentId: string; /** * Endpoint used to submit emails via the HTTP email submission API */ readonly httpSubmitEndpoint: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Endpoint used to submit emails via the standard SMTP submission protocol. Note that TLS 1.2 and standard SMTP authentication is required for submission. */ readonly smtpSubmitEndpoint: string; } /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Email service. * * Returns email configuration associated with the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.email.getConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getConfigurationOutput(args: GetConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConfiguration. */ export interface GetConfigurationOutputArgs { /** * The OCID for the compartment. */ compartmentId: pulumi.Input; } //# sourceMappingURL=getConfiguration.d.ts.map