import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type UpdateDeploymentComputeGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type UpdateDeploymentComputeRequest = { /** * Unique identifier for the deployment. */ id: string; updateDeploymentComputeRequest?: models.UpdateDeploymentComputeRequest | undefined; }; export declare const Outcome: { readonly Accepted: "accepted"; readonly Unchanged: "unchanged"; }; export type Outcome = ClosedEnum; /** * Compute settings saved or already current. */ export type UpdateDeploymentComputeResponse = { outcome: Outcome; operation: models.DeploymentUpdateOperationSummary | null; }; /** @internal */ export type UpdateDeploymentComputeRequest$Outbound = { id: string; UpdateDeploymentComputeRequest?: models.UpdateDeploymentComputeRequest$Outbound | undefined; }; /** @internal */ export declare const UpdateDeploymentComputeRequest$outboundSchema: z.ZodType; export declare function updateDeploymentComputeRequestToJSON(updateDeploymentComputeRequest: UpdateDeploymentComputeRequest): string; /** @internal */ export declare const Outcome$inboundSchema: z.ZodEnum; /** @internal */ export declare const UpdateDeploymentComputeResponse$inboundSchema: z.ZodType; export declare function updateDeploymentComputeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatedeploymentcompute.d.ts.map