UNPKG

@pulumiverse/gandi

Version:

A Pulumi package for creating and managing gandi cloud resources.

51 lines (50 loc) 1.26 kB
import * as pulumi from "@pulumi/pulumi"; export declare function getGlueRecord(args: GetGlueRecordArgs, opts?: pulumi.InvokeOptions): Promise<GetGlueRecordResult>; /** * A collection of arguments for invoking getGlueRecord. */ export interface GetGlueRecordArgs { /** * Host name of the glue record */ name: string; /** * Domain name */ zone: string; } /** * A collection of values returned by getGlueRecord. */ export interface GetGlueRecordResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of the ip addresses provided for the glue record */ readonly ips: string[]; /** * Host name of the glue record */ readonly name: string; /** * Domain name */ readonly zone: string; } export declare function getGlueRecordOutput(args: GetGlueRecordOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGlueRecordResult>; /** * A collection of arguments for invoking getGlueRecord. */ export interface GetGlueRecordOutputArgs { /** * Host name of the glue record */ name: pulumi.Input<string>; /** * Domain name */ zone: pulumi.Input<string>; }