import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Gets information about a transactional email domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myDomain = scaleway.getTemDomain({ * domainId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getTemDomain(args?: GetTemDomainArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTemDomain. */ export interface GetTemDomainArgs { /** * The domain id. * Only one of `name` and `domainId` should be specified. */ domainId?: string; /** * The domain name. * Only one of `name` and `domainId` should be specified. */ name?: string; /** * `projectId`) The ID of the project the domain is associated with. */ projectId?: string; /** * `region`) The region in which the domain exists. */ region?: string; } /** * A collection of values returned by getTemDomain. */ export interface GetTemDomainResult { readonly acceptTos: boolean; readonly autoconfig: boolean; readonly createdAt: string; readonly dkimConfig: string; readonly dmarcConfig: string; readonly dmarcName: string; readonly domainId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly lastError: string; readonly lastValidAt: string; readonly mxBlackhole: string; readonly name?: string; readonly nextCheckAt: string; readonly projectId?: string; readonly region?: string; readonly reputations: outputs.GetTemDomainReputation[]; readonly revokedAt: string; readonly smtpHost: string; readonly smtpPort: number; readonly smtpPortAlternative: number; readonly smtpPortUnsecure: number; readonly smtpsAuthUser: string; readonly smtpsPort: number; readonly smtpsPortAlternative: number; readonly spfConfig: string; readonly status: string; } /** * Gets information about a transactional email domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myDomain = scaleway.getTemDomain({ * domainId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getTemDomainOutput(args?: GetTemDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTemDomain. */ export interface GetTemDomainOutputArgs { /** * The domain id. * Only one of `name` and `domainId` should be specified. */ domainId?: pulumi.Input; /** * The domain name. * Only one of `name` and `domainId` should be specified. */ name?: pulumi.Input; /** * `projectId`) The ID of the project the domain is associated with. */ projectId?: pulumi.Input; /** * `region`) The region in which the domain exists. */ region?: pulumi.Input; }