@unkey/api
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.
29 lines • 1.28 kB
TypeScript
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
import * as components from "../models/components/index.js";
export declare class Internal extends ClientSDK {
/**
* Create deployment
*
* @remarks
* **INTERNAL** - This endpoint is internal and may change without notice.
* Not recommended for production use.
*
* Creates a new deployment for a project using either a pre-built Docker image or build context.
*
* **Authentication**: Requires a valid root key with appropriate permissions.
*/
createDeployment(request: components.V2DeployCreateDeploymentRequestBody, options?: RequestOptions): Promise<components.V2DeployCreateDeploymentResponseBody>;
/**
* Get deployment
*
* @remarks
* **INTERNAL** - This endpoint is internal and may change without notice.
* Not recommended for production use.
*
* Retrieves deployment information including status, error messages, and steps.
*
* **Authentication**: Requires a valid root key with appropriate permissions.
*/
getDeployment(request: components.V2DeployGetDeploymentRequestBody, options?: RequestOptions): Promise<components.V2DeployGetDeploymentResponseBody>;
}
//# sourceMappingURL=internal.d.ts.map