import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PutComputeTenantRequest = { orgId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; computeTenantUpdate: components.ComputeTenantUpdate; }; export type PutComputeTenantResponse = components.ComputeTenant | components.ComputeErrorEnvelope; /** @internal */ export declare const PutComputeTenantRequest$inboundSchema: z.ZodType; /** @internal */ export type PutComputeTenantRequest$Outbound = { org_id: string; "X-On-Behalf-Of"?: string | undefined; ComputeTenantUpdate: components.ComputeTenantUpdate$Outbound; }; /** @internal */ export declare const PutComputeTenantRequest$outboundSchema: z.ZodType; export declare function putComputeTenantRequestToJSON(putComputeTenantRequest: PutComputeTenantRequest): string; export declare function putComputeTenantRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutComputeTenantResponse$inboundSchema: z.ZodType; /** @internal */ export type PutComputeTenantResponse$Outbound = components.ComputeTenant$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const PutComputeTenantResponse$outboundSchema: z.ZodType; export declare function putComputeTenantResponseToJSON(putComputeTenantResponse: PutComputeTenantResponse): string; export declare function putComputeTenantResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putcomputetenant.d.ts.map