import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleWorkersCustomDomain = new cloudflare.WorkersCustomDomain("example_workers_custom_domain", { * accountId: "9a7806061c88ada191ed06f989cc3dac", * environment: "production", * hostname: "foo.example.com", * service: "foo", * zoneId: "593c9c94de529bbbfaac7c53ced0447d", * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/workersCustomDomain:WorkersCustomDomain example '/' * ``` */ export declare class WorkersCustomDomain extends pulumi.CustomResource { /** * Get an existing WorkersCustomDomain 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?: WorkersCustomDomainState, opts?: pulumi.CustomResourceOptions): WorkersCustomDomain; /** * Returns true if the given object is an instance of WorkersCustomDomain. 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 WorkersCustomDomain; /** * Identifer of the account. */ readonly accountId: pulumi.Output; /** * Worker environment associated with the zone and hostname. */ readonly environment: pulumi.Output; /** * Hostname of the Worker Domain. */ readonly hostname: pulumi.Output; /** * Worker service associated with the zone and hostname. */ readonly service: pulumi.Output; /** * Identifier of the zone. */ readonly zoneId: pulumi.Output; /** * Name of the zone. */ readonly zoneName: pulumi.Output; /** * Create a WorkersCustomDomain 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: WorkersCustomDomainArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering WorkersCustomDomain resources. */ export interface WorkersCustomDomainState { /** * Identifer of the account. */ accountId?: pulumi.Input; /** * Worker environment associated with the zone and hostname. */ environment?: pulumi.Input; /** * Hostname of the Worker Domain. */ hostname?: pulumi.Input; /** * Worker service associated with the zone and hostname. */ service?: pulumi.Input; /** * Identifier of the zone. */ zoneId?: pulumi.Input; /** * Name of the zone. */ zoneName?: pulumi.Input; } /** * The set of arguments for constructing a WorkersCustomDomain resource. */ export interface WorkersCustomDomainArgs { /** * Identifer of the account. */ accountId: pulumi.Input; /** * Worker environment associated with the zone and hostname. */ environment: pulumi.Input; /** * Hostname of the Worker Domain. */ hostname: pulumi.Input; /** * Worker service associated with the zone and hostname. */ service: pulumi.Input; /** * Identifier of the zone. */ zoneId: pulumi.Input; }