//#region src/types/staticwebsite.generated.d.ts export type StaticWebsite = { /** Static website name */ name: string; /** Static website description */ description?: string | undefined; /** IP addresses allowed to access the website */ allowedIpAddresses?: string[] | undefined; /** Custom domains for the static website */ customDomains?: string[] | undefined; }; export type StaticWebsiteInput = StaticWebsite; //#endregion