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 GetServiceRequest = { id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type GetServiceResponse = components.ComputeService | components.ComputeErrorEnvelope; /** @internal */ export declare const GetServiceRequest$inboundSchema: z.ZodType; /** @internal */ export type GetServiceRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetServiceRequest$outboundSchema: z.ZodType; export declare function getServiceRequestToJSON(getServiceRequest: GetServiceRequest): string; export declare function getServiceRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetServiceResponse$inboundSchema: z.ZodType; /** @internal */ export type GetServiceResponse$Outbound = components.ComputeService$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const GetServiceResponse$outboundSchema: z.ZodType; export declare function getServiceResponseToJSON(getServiceResponse: GetServiceResponse): string; export declare function getServiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getservice.d.ts.map