File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
packages/clients/src/api/webhosting/v1alpha1 Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ const unmarshalOfferProduct = (data: unknown) => {
5757 emailAccountsQuota : data . email_accounts_quota ,
5858 emailStorageQuota : data . email_storage_quota ,
5959 hostingStorageQuota : data . hosting_storage_quota ,
60+ maxAddonDomains : data . max_addon_domains ,
6061 name : data . name ,
6162 option : data . option ,
6263 ram : data . ram ,
Original file line number Diff line number Diff line change @@ -168,13 +168,22 @@ export interface OfferProduct {
168168 name : string
169169 /** Product option. */
170170 option : boolean
171+ /** Limit number of email accounts. */
171172 emailAccountsQuota : number
173+ /** Limit quantity of email storage in gigabytes. */
172174 emailStorageQuota : number
175+ /** Limit number of databases. */
173176 databasesQuota : number
177+ /** Limit quantity of hosting storage in gigabytes. */
174178 hostingStorageQuota : number
179+ /** Whether or not support is included. */
175180 supportIncluded : boolean
181+ /** Limit number of virtual CPU. */
176182 vCpu : number
183+ /** Limit quantity of memory in gigabytes. */
177184 ram : number
185+ /** Limit number of add-on domains. */
186+ maxAddonDomains : number
178187}
179188
180189export type CreateHostingRequest = {
You can’t perform that action at this time.
0 commit comments