import * as pulumi from "@pulumi/pulumi"; export declare function getDomainZone(args?: GetDomainZoneArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDomainZone. */ export interface GetDomainZoneArgs { /** * The primary domain name where the DNS zone is located. This is a mandatory field. */ domain?: string; /** * The subdomain (or zone name) within the primary domain. This is a mandatory field. */ subdomain?: string; } /** * A collection of values returned by getDomainZone. */ export interface GetDomainZoneResult { readonly domain?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Message associated with the domain zone (typically used for status or error messages). */ readonly message: string; /** * The list of name servers for the zone. */ readonly ns: string[]; /** * The default list of name servers for the zone. */ readonly nsDefaults: string[]; /** * The master list of name servers for the zone. */ readonly nsMasters: string[]; readonly projectId: string; /** * The status of the domain zone. */ readonly status: string; readonly subdomain?: string; /** * The date and time of the last update to the DNS zone. */ readonly updatedAt: string; } export declare function getDomainZoneOutput(args?: GetDomainZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDomainZone. */ export interface GetDomainZoneOutputArgs { /** * The primary domain name where the DNS zone is located. This is a mandatory field. */ domain?: pulumi.Input; /** * The subdomain (or zone name) within the primary domain. This is a mandatory field. */ subdomain?: pulumi.Input; }