import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Email Return Path resource in Oracle Cloud Infrastructure Email service. * * Retrieves the specified email return path. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEmailReturnPath = oci.email.getEmailReturnPath({ * emailReturnPathId: testEmailReturnPathOciEmailEmailReturnPath.id, * }); * ``` */ export declare function getEmailReturnPath(args: GetEmailReturnPathArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEmailReturnPath. */ export interface GetEmailReturnPathArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this email return path. */ emailReturnPathId: string; } /** * A collection of values returned by getEmailReturnPath. */ export interface GetEmailReturnPathResult { /** * The DNS CNAME record value to provision to the Return Patn DNS subdomain, when using the CNAME method for Email Return Path setup (preferred). */ readonly cnameRecordValue: string; /** * The lock compartment ID. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the email return path. Avoid entering confidential information. */ readonly description: string; /** * The name of the DNS subdomain that must be provisioned to enable email recipients to verify Email Return Path. It is usually created with a CNAME record set to the cnameRecordValue. */ readonly dnsSubdomainName: string; readonly emailReturnPathId: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the email return path. */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state. */ readonly lifecycleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.Email.GetEmailReturnPathLock[]; /** * The email return path domain in the Internet Domain Name System (DNS). Example: `iad1.rp.example.com` */ readonly name: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain that this email return path belongs to. */ readonly parentResourceId: string; /** * The current state of the email return path. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the email return path was created. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z` */ readonly timeCreated: string; /** * The time of the last change to the Email Return Path configuration, due to a state change or an update operation. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". */ readonly timeUpdated: string; } /** * This data source provides details about a specific Email Return Path resource in Oracle Cloud Infrastructure Email service. * * Retrieves the specified email return path. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEmailReturnPath = oci.email.getEmailReturnPath({ * emailReturnPathId: testEmailReturnPathOciEmailEmailReturnPath.id, * }); * ``` */ export declare function getEmailReturnPathOutput(args: GetEmailReturnPathOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEmailReturnPath. */ export interface GetEmailReturnPathOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this email return path. */ emailReturnPathId: pulumi.Input; } //# sourceMappingURL=getEmailReturnPath.d.ts.map