import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class DeploymentsV2 extends ClientSDK { /** * GetDeploymentsV2Deprecated * * @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. */ getDeploymentsV2Deprecated(appId?: string | undefined, options?: RequestOptions): Promise>; /** * GetLatestDeploymentV2Deprecated * * @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. */ getLatestDeploymentV2Deprecated(appId?: string | undefined, options?: RequestOptions): Promise; /** * GetDeploymentInfoV2Deprecated * * @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. */ getDeploymentInfoV2Deprecated(deploymentId: number, appId?: string | undefined, options?: RequestOptions): Promise; /** * CreateDeploymentV2Deprecated * * @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. */ createDeploymentV2Deprecated(buildId: number, deploymentConfigV2: components.DeploymentConfigV2, appId?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=deploymentsv2.d.ts.map