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 GetComputeTenantRequest = { orgId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type GetComputeTenantResponse = components.ComputeTenant | components.ComputeErrorEnvelope; /** @internal */ export declare const GetComputeTenantRequest$inboundSchema: z.ZodType; /** @internal */ export type GetComputeTenantRequest$Outbound = { org_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetComputeTenantRequest$outboundSchema: z.ZodType; export declare function getComputeTenantRequestToJSON(getComputeTenantRequest: GetComputeTenantRequest): string; export declare function getComputeTenantRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetComputeTenantResponse$inboundSchema: z.ZodType; /** @internal */ export type GetComputeTenantResponse$Outbound = components.ComputeTenant$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const GetComputeTenantResponse$outboundSchema: z.ZodType; export declare function getComputeTenantResponseToJSON(getComputeTenantResponse: GetComputeTenantResponse): string; export declare function getComputeTenantResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcomputetenant.d.ts.map