/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 4f5435ca7745 */ import * as z from "zod/v4"; import * as models from "../index.js"; export type GetWorkspaceGatewayOverviewGlobals = { /** * 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 GetWorkspaceGatewayOverviewRequest = { /** * Alien Gateway a customer deployment runs */ gateway: models.GatewayKind; }; /** @internal */ export type GetWorkspaceGatewayOverviewRequest$Outbound = { gateway: string; }; /** @internal */ export const GetWorkspaceGatewayOverviewRequest$outboundSchema: z.ZodType< GetWorkspaceGatewayOverviewRequest$Outbound, GetWorkspaceGatewayOverviewRequest > = z.object({ gateway: models.GatewayKind$outboundSchema, }); export function getWorkspaceGatewayOverviewRequestToJSON( getWorkspaceGatewayOverviewRequest: GetWorkspaceGatewayOverviewRequest, ): string { return JSON.stringify( GetWorkspaceGatewayOverviewRequest$outboundSchema.parse( getWorkspaceGatewayOverviewRequest, ), ); }