import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getWorker(args: GetWorkerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWorker. */ export interface GetWorkerArgs { accountId: string; workerId: string; } /** * A collection of values returned by getWorker. */ export interface GetWorkerResult { readonly accountId: string; readonly createdOn: string; readonly id: string; readonly logpush: boolean; readonly name: string; readonly observability: outputs.GetWorkerObservability; readonly references: outputs.GetWorkerReferences; readonly subdomain: outputs.GetWorkerSubdomain; readonly tags: string[]; readonly tailConsumers: outputs.GetWorkerTailConsumer[]; readonly updatedOn: string; readonly workerId: string; } export declare function getWorkerOutput(args: GetWorkerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWorker. */ export interface GetWorkerOutputArgs { accountId: pulumi.Input; workerId: pulumi.Input; } //# sourceMappingURL=getWorker.d.ts.map