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) => {
57
57
emailAccountsQuota : data . email_accounts_quota ,
58
58
emailStorageQuota : data . email_storage_quota ,
59
59
hostingStorageQuota : data . hosting_storage_quota ,
60
+ maxAddonDomains : data . max_addon_domains ,
60
61
name : data . name ,
61
62
option : data . option ,
62
63
ram : data . ram ,
Original file line number Diff line number Diff line change @@ -168,13 +168,22 @@ export interface OfferProduct {
168
168
name : string
169
169
/** Product option. */
170
170
option : boolean
171
+ /** Limit number of email accounts. */
171
172
emailAccountsQuota : number
173
+ /** Limit quantity of email storage in gigabytes. */
172
174
emailStorageQuota : number
175
+ /** Limit number of databases. */
173
176
databasesQuota : number
177
+ /** Limit quantity of hosting storage in gigabytes. */
174
178
hostingStorageQuota : number
179
+ /** Whether or not support is included. */
175
180
supportIncluded : boolean
181
+ /** Limit number of virtual CPU. */
176
182
vCpu : number
183
+ /** Limit quantity of memory in gigabytes. */
177
184
ram : number
185
+ /** Limit number of add-on domains. */
186
+ maxAddonDomains : number
178
187
}
179
188
180
189
export type CreateHostingRequest = {
You can’t perform that action at this time.
0 commit comments