import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class DeploymentsV1 extends ClientSDK { /** * GetDeploymentsV1Deprecated * * @remarks * Returns an array of [deployments](https://hathora.dev/docs/concepts/hathora-entities#deployment) for an [application](https://hathora.dev/docs/concepts/hathora-entities#application). * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getDeploymentsV1Deprecated(appId?: string | undefined, options?: RequestOptions): Promise>; /** * GetLatestDeploymentV1Deprecated * * @remarks * Get the latest [deployment](https://hathora.dev/docs/concepts/hathora-entities#deployment) for an [application](https://hathora.dev/docs/concepts/hathora-entities#application). * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getLatestDeploymentV1Deprecated(appId?: string | undefined, options?: RequestOptions): Promise; /** * GetDeploymentInfoV1Deprecated * * @remarks * Get details for a [deployment](https://hathora.dev/docs/concepts/hathora-entities#deployment). * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getDeploymentInfoV1Deprecated(deploymentId: number, appId?: string | undefined, options?: RequestOptions): Promise; /** * CreateDeploymentV1Deprecated * * @remarks * Create a new [deployment](https://hathora.dev/docs/concepts/hathora-entities#deployment). Creating a new deployment means all new rooms created will use the latest deployment configuration, but existing games in progress will not be affected. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ createDeploymentV1Deprecated(buildId: number, deploymentConfig: components.DeploymentConfig, appId?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=deploymentsv1.d.ts.map