@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
93 lines (92 loc) • 2.96 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Gets information about a transactional email domain.
*/
/** @deprecated scaleway.index/gettemdomain.getTemDomain has been deprecated in favor of scaleway.tem/getdomain.getDomain */
export declare function getTemDomain(args?: GetTemDomainArgs, opts?: pulumi.InvokeOptions): Promise<GetTemDomainResult>;
/**
* 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.
*/
/** @deprecated scaleway.index/gettemdomain.getTemDomain has been deprecated in favor of scaleway.tem/getdomain.getDomain */
export declare function getTemDomainOutput(args?: GetTemDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTemDomainResult>;
/**
* 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<string>;
/**
* The domain name.
* Only one of `name` and `domainId` should be specified.
*/
name?: pulumi.Input<string>;
/**
* `projectId`) The ID of the project the domain is associated with.
*/
projectId?: pulumi.Input<string>;
/**
* `region`) The region in which the domain exists.
*/
region?: pulumi.Input<string>;
}