@pulumiverse/gandi
Version:
A Pulumi package for creating and managing gandi cloud resources.
39 lines (38 loc) • 998 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare function getDomain(args: GetDomainArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainResult>;
/**
* A collection of arguments for invoking getDomain.
*/
export interface GetDomainArgs {
/**
* The FQDN of the domain
*/
name: string;
}
/**
* A collection of values returned by getDomain.
*/
export interface GetDomainResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The FQDN of the domain
*/
readonly name: string;
/**
* A list of nameservers for the domain
*/
readonly nameservers: string[];
}
export declare function getDomainOutput(args: GetDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDomainResult>;
/**
* A collection of arguments for invoking getDomain.
*/
export interface GetDomainOutputArgs {
/**
* The FQDN of the domain
*/
name: pulumi.Input<string>;
}