UNPKG

@vercel/sdk

Version:

<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>

47 lines 1.63 kB
import * as z from "zod/v3"; export type CreateNetworkRequestBody = { awsAvailabilityZoneIds?: Array<string> | undefined; /** * The CIDR block of the network */ cidr: string; /** * The name of the network */ name: string; /** * The region where the network will be created */ region: string; }; export type CreateNetworkRequest = { /** * The Team identifier to perform the request on behalf of. */ teamId?: string | undefined; /** * The Team slug to perform the request on behalf of. */ slug?: string | undefined; requestBody?: CreateNetworkRequestBody | undefined; }; /** @internal */ export type CreateNetworkRequestBody$Outbound = { awsAvailabilityZoneIds?: Array<string> | undefined; cidr: string; name: string; region: string; }; /** @internal */ export declare const CreateNetworkRequestBody$outboundSchema: z.ZodType<CreateNetworkRequestBody$Outbound, z.ZodTypeDef, CreateNetworkRequestBody>; export declare function createNetworkRequestBodyToJSON(createNetworkRequestBody: CreateNetworkRequestBody): string; /** @internal */ export type CreateNetworkRequest$Outbound = { teamId?: string | undefined; slug?: string | undefined; RequestBody?: CreateNetworkRequestBody$Outbound | undefined; }; /** @internal */ export declare const CreateNetworkRequest$outboundSchema: z.ZodType<CreateNetworkRequest$Outbound, z.ZodTypeDef, CreateNetworkRequest>; export declare function createNetworkRequestToJSON(createNetworkRequest: CreateNetworkRequest): string; //# sourceMappingURL=createnetworkop.d.ts.map