import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetProjectTemplateUrlsGlobals = { /** * 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 GetProjectTemplateUrlsRequest = { /** * Project ID or name. */ idOrName: string; }; /** * Template URLs for deploying an AWS setup stack */ export type GetProjectTemplateUrlsAws = { /** * URL to download the CloudFormation template */ templateUrl: string; /** * URL to launch the template in the AWS CloudFormation console */ launchStackUrl: string; }; /** * Template URLs retrieved successfully. */ export type GetProjectTemplateUrlsResponse = { /** * Template URLs for deploying an AWS setup stack */ aws?: GetProjectTemplateUrlsAws | null | undefined; }; /** @internal */ export type GetProjectTemplateUrlsRequest$Outbound = { idOrName: string; }; /** @internal */ export declare const GetProjectTemplateUrlsRequest$outboundSchema: z.ZodType; export declare function getProjectTemplateUrlsRequestToJSON(getProjectTemplateUrlsRequest: GetProjectTemplateUrlsRequest): string; /** @internal */ export declare const GetProjectTemplateUrlsAws$inboundSchema: z.ZodType; export declare function getProjectTemplateUrlsAwsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetProjectTemplateUrlsResponse$inboundSchema: z.ZodType; export declare function getProjectTemplateUrlsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getprojecttemplateurls.d.ts.map