import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleEmailRoutingDns = new cloudflare.EmailRoutingDns("example_email_routing_dns", { * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * name: "example.net", * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/emailRoutingDns:EmailRoutingDns example '' * ``` */ export declare class EmailRoutingDns extends pulumi.CustomResource { /** * Get an existing EmailRoutingDns resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: EmailRoutingDnsState, opts?: pulumi.CustomResourceOptions): EmailRoutingDns; /** * Returns true if the given object is an instance of EmailRoutingDns. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is EmailRoutingDns; /** * The date and time the settings have been created. */ readonly created: pulumi.Output; /** * State of the zone settings for Email Routing. */ readonly enabled: pulumi.Output; readonly errors: pulumi.Output; readonly messages: pulumi.Output; /** * The date and time the settings have been modified. */ readonly modified: pulumi.Output; /** * Domain of your zone. */ readonly name: pulumi.Output; readonly result: pulumi.Output; readonly resultInfo: pulumi.Output; /** * Flag to check if the user skipped the configuration wizard. */ readonly skipWizard: pulumi.Output; /** * Show the state of your account, and the type or configuration error. * Available values: "ready", "unconfigured", "misconfigured", "misconfigured/locked", "unlocked". */ readonly status: pulumi.Output; /** * Whether the API call was successful. */ readonly success: pulumi.Output; /** * Email Routing settings tag. (Deprecated, replaced by Email Routing settings identifier) * * @deprecated This attribute is deprecated. */ readonly tag: pulumi.Output; /** * Identifier. */ readonly zoneId: pulumi.Output; /** * Create a EmailRoutingDns resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: EmailRoutingDnsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EmailRoutingDns resources. */ export interface EmailRoutingDnsState { /** * The date and time the settings have been created. */ created?: pulumi.Input; /** * State of the zone settings for Email Routing. */ enabled?: pulumi.Input; errors?: pulumi.Input[]>; messages?: pulumi.Input[]>; /** * The date and time the settings have been modified. */ modified?: pulumi.Input; /** * Domain of your zone. */ name?: pulumi.Input; result?: pulumi.Input; resultInfo?: pulumi.Input; /** * Flag to check if the user skipped the configuration wizard. */ skipWizard?: pulumi.Input; /** * Show the state of your account, and the type or configuration error. * Available values: "ready", "unconfigured", "misconfigured", "misconfigured/locked", "unlocked". */ status?: pulumi.Input; /** * Whether the API call was successful. */ success?: pulumi.Input; /** * Email Routing settings tag. (Deprecated, replaced by Email Routing settings identifier) * * @deprecated This attribute is deprecated. */ tag?: pulumi.Input; /** * Identifier. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a EmailRoutingDns resource. */ export interface EmailRoutingDnsArgs { /** * Domain of your zone. */ name: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; }