import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "./types"; /** * Provides a Cloudflare Fallback Domain resource. Fallback domains are used to ignore DNS requests to a given list of domains. These DNS requests will be passed back to other DNS servers configured on existing network interfaces on the device. * * ## Import * * Fallback Domains can be imported using the account identifer. * * ```sh * $ pulumi import cloudflare:index/fallbackDomain:FallbackDomain example 1d5fdc9e88c8a8c4518b068cd94331fe * ``` */ export declare class FallbackDomain extends pulumi.CustomResource { /** * Get an existing FallbackDomain 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?: FallbackDomainState, opts?: pulumi.CustomResourceOptions): FallbackDomain; /** * Returns true if the given object is an instance of FallbackDomain. 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 FallbackDomain; /** * The account to which the device posture rule should be added. */ readonly accountId: pulumi.Output; /** * The value of the domain attributes (refer to the nested schema). */ readonly domains: pulumi.Output; /** * Create a FallbackDomain 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: FallbackDomainArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FallbackDomain resources. */ export interface FallbackDomainState { /** * The account to which the device posture rule should be added. */ accountId?: pulumi.Input; /** * The value of the domain attributes (refer to the nested schema). */ domains?: pulumi.Input[]>; } /** * The set of arguments for constructing a FallbackDomain resource. */ export interface FallbackDomainArgs { /** * The account to which the device posture rule should be added. */ accountId: pulumi.Input; /** * The value of the domain attributes (refer to the nested schema). */ domains: pulumi.Input[]>; }