import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class DnsZone extends pulumi.CustomResource { /** * Get an existing DnsZone resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DnsZoneState, opts?: pulumi.CustomResourceOptions): DnsZone; /** * Returns true if the given object is an instance of DnsZone. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DnsZone; readonly activationState: pulumi.Output; readonly aliasCount: pulumi.Output; readonly comment: pulumi.Output; readonly contract: pulumi.Output; readonly endCustomerId: pulumi.Output; readonly group: pulumi.Output; readonly masters: pulumi.Output; /** * Multi-signer DNSSEC properties. */ readonly multiProviderDnssec: pulumi.Output; /** * Outbound zone transfer properties. */ readonly outboundZoneTransfer: pulumi.Output; readonly signAndServe: pulumi.Output; readonly signAndServeAlgorithm: pulumi.Output; readonly target: pulumi.Output; readonly tsigKey: pulumi.Output; readonly type: pulumi.Output; readonly versionId: pulumi.Output; readonly zone: pulumi.Output; /** * Create a DnsZone resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DnsZoneArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DnsZone resources. */ export interface DnsZoneState { activationState?: pulumi.Input; aliasCount?: pulumi.Input; comment?: pulumi.Input; contract?: pulumi.Input; endCustomerId?: pulumi.Input; group?: pulumi.Input; masters?: pulumi.Input[] | undefined>; /** * Multi-signer DNSSEC properties. */ multiProviderDnssec?: pulumi.Input; /** * Outbound zone transfer properties. */ outboundZoneTransfer?: pulumi.Input; signAndServe?: pulumi.Input; signAndServeAlgorithm?: pulumi.Input; target?: pulumi.Input; tsigKey?: pulumi.Input; type?: pulumi.Input; versionId?: pulumi.Input; zone?: pulumi.Input; } /** * The set of arguments for constructing a DnsZone resource. */ export interface DnsZoneArgs { comment?: pulumi.Input; contract: pulumi.Input; endCustomerId?: pulumi.Input; group?: pulumi.Input; masters?: pulumi.Input[] | undefined>; /** * Multi-signer DNSSEC properties. */ multiProviderDnssec?: pulumi.Input; /** * Outbound zone transfer properties. */ outboundZoneTransfer?: pulumi.Input; signAndServe?: pulumi.Input; signAndServeAlgorithm?: pulumi.Input; target?: pulumi.Input; tsigKey?: pulumi.Input; type: pulumi.Input; zone: pulumi.Input; } //# sourceMappingURL=dnsZone.d.ts.map