UNPKG

@vercel/sdk

Version:

<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>

19 lines 1.73 kB
import { VercelCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { CreateSandboxesSessionsBySessionIdSnapshotV2Request, CreateSandboxesSessionsBySessionIdSnapshotV2ResponseBody } from "../models/createsandboxessessionsbysessionidsnapshotv2op.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/httpclienterrors.js"; import { ResponseValidationError } from "../models/responsevalidationerror.js"; import { SDKValidationError } from "../models/sdkvalidationerror.js"; import { VercelError } from "../models/vercelerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Create a snapshot * * @remarks * Creates a point-in-time snapshot of a running session's filesystem. Snapshots can be used to quickly restore a session to a previous state or to create new sessions with pre-configured environments. The session must be running and able to accept commands for a snapshot to be created. The session will be terminated after the snapshot is created. * * If set, this operation will use {@link Security.bearerToken} from the global security. */ export declare function sandboxesCreateSandboxesSessionsBySessionIdSnapshotV2(client: VercelCore, request: CreateSandboxesSessionsBySessionIdSnapshotV2Request, options?: RequestOptions): APIPromise<Result<CreateSandboxesSessionsBySessionIdSnapshotV2ResponseBody, VercelError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>; //# sourceMappingURL=sandboxesCreateSandboxesSessionsBySessionIdSnapshotV2.d.ts.map