import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class EdgeWorker extends pulumi.CustomResource { /** * Get an existing EdgeWorker 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?: EdgeWorkerState, opts?: pulumi.CustomResourceOptions): EdgeWorker; /** * Returns true if the given object is an instance of EdgeWorker. 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 EdgeWorker; /** * The unique identifier of the EdgeWorker */ readonly edgeworkerId: pulumi.Output; /** * Defines the group association for the EdgeWorker */ readonly groupId: pulumi.Output; /** * The path to the EdgeWorkers tgz code bundle. If the value is not provided, the content of the `EW_DEFAULT_BUNDLE_URL` environment variable is used. If that is also not set, it falls back to the default hello-world package. */ readonly localBundle: pulumi.Output; /** * The local bundle hash for the EdgeWorker */ readonly localBundleHash: pulumi.Output; /** * The EdgeWorker name */ readonly name: pulumi.Output; /** * The unique identifier of a resource tier */ readonly resourceTierId: pulumi.Output; /** * Enables to set timeout for processing */ readonly timeouts: pulumi.Output; /** * The bundle version */ readonly version: pulumi.Output; /** * The list of warnings returned by EdgeWorker validation */ readonly warnings: pulumi.Output; /** * Create a EdgeWorker 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: EdgeWorkerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EdgeWorker resources. */ export interface EdgeWorkerState { /** * The unique identifier of the EdgeWorker */ edgeworkerId?: pulumi.Input; /** * Defines the group association for the EdgeWorker */ groupId?: pulumi.Input; /** * The path to the EdgeWorkers tgz code bundle. If the value is not provided, the content of the `EW_DEFAULT_BUNDLE_URL` environment variable is used. If that is also not set, it falls back to the default hello-world package. */ localBundle?: pulumi.Input; /** * The local bundle hash for the EdgeWorker */ localBundleHash?: pulumi.Input; /** * The EdgeWorker name */ name?: pulumi.Input; /** * The unique identifier of a resource tier */ resourceTierId?: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * The bundle version */ version?: pulumi.Input; /** * The list of warnings returned by EdgeWorker validation */ warnings?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a EdgeWorker resource. */ export interface EdgeWorkerArgs { /** * Defines the group association for the EdgeWorker */ groupId: pulumi.Input; /** * The path to the EdgeWorkers tgz code bundle. If the value is not provided, the content of the `EW_DEFAULT_BUNDLE_URL` environment variable is used. If that is also not set, it falls back to the default hello-world package. */ localBundle?: pulumi.Input; /** * The EdgeWorker name */ name?: pulumi.Input; /** * The unique identifier of a resource tier */ resourceTierId: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; } //# sourceMappingURL=edgeWorker.d.ts.map