import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class ProcessesV3 extends ClientSDK { /** * GetLatestProcesses * * @remarks * Retrieve the 10 most recent [processes](https://hathora.dev/docs/concepts/hathora-entities#process) objects for an [application](https://hathora.dev/docs/concepts/hathora-entities#application). Filter the array by optionally passing in a `status` or `region`. */ getLatestProcesses(appId?: string | undefined, status?: Array | undefined, region?: Array | undefined, before?: number | undefined, options?: RequestOptions): Promise>; /** * GetProcessesCountExperimental * * @remarks * Count the number of [processes](https://hathora.dev/docs/concepts/hathora-entities#process) objects for an [application](https://hathora.dev/docs/concepts/hathora-entities#application). Filter by optionally passing in a `status` or `region`. */ getProcessesCountExperimental(appId?: string | undefined, status?: Array | undefined, region?: Array | undefined, before?: number | undefined, options?: RequestOptions): Promise; /** * CreateProcess * * @remarks * Creates a [process](https://hathora.dev/docs/concepts/hathora-entities#process) without a room. Use this to pre-allocate processes ahead of time so that subsequent room assignment via [CreateRoom()](https://hathora.dev/api#tag/RoomV2/operation/CreateRoom) can be instant. */ createProcess(region: components.Region, appId?: string | undefined, options?: RequestOptions): Promise; /** * GetProcess * * @remarks * Get details for a [process](https://hathora.dev/docs/concepts/hathora-entities#process). */ getProcess(processId: string, appId?: string | undefined, options?: RequestOptions): Promise; /** * StopProcess * * @remarks * Stops a [process](https://hathora.dev/docs/concepts/hathora-entities#process) immediately. */ stopProcess(processId: string, appId?: string | undefined, options?: RequestOptions): Promise; /** * GetProcessMetrics */ getProcessMetrics(request: operations.GetProcessMetricsRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=processesv3.d.ts.map