@@ -185,6 +185,17 @@ export interface PublicCatalogProductPropertiesAppleSilicon {
185185 range : string
186186}
187187
188+ export interface PublicCatalogProductPropertiesBlockStorage {
189+ /**
190+ * The minimum size of storage volume for this product in bytes.
191+ */
192+ minVolumeSize : number
193+ /**
194+ * The maximum size of storage volume for this product in bytes.
195+ */
196+ maxVolumeSize : number
197+ }
198+
188199export interface PublicCatalogProductPropertiesDedibox {
189200 /**
190201 * The range of the Dedibox server.
@@ -284,27 +295,33 @@ export interface PublicCatalogProductProperties {
284295 /**
285296 * The properties of Dedibox products.
286297 *
287- * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance' could be set.
298+ * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance', 'blockStorage' could be set.
288299 */
289300 dedibox ?: PublicCatalogProductPropertiesDedibox
290301 /**
291302 * The properties of Elastic Metal products.
292303 *
293- * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance' could be set.
304+ * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance', 'blockStorage' could be set.
294305 */
295306 elasticMetal ?: PublicCatalogProductPropertiesElasticMetal
296307 /**
297308 * The properties of Apple Silicon products.
298309 *
299- * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance' could be set.
310+ * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance', 'blockStorage' could be set.
300311 */
301312 appleSilicon ?: PublicCatalogProductPropertiesAppleSilicon
302313 /**
303314 * The properties of Instance products.
304315 *
305- * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance' could be set.
316+ * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance', 'blockStorage' could be set.
306317 */
307318 instance ?: PublicCatalogProductPropertiesInstance
319+ /**
320+ * The properties of Block Storage products.
321+ *
322+ * One-of ('properties'): at most one of 'dedibox', 'elasticMetal', 'appleSilicon', 'instance', 'blockStorage' could be set.
323+ */
324+ blockStorage ?: PublicCatalogProductPropertiesBlockStorage
308325}
309326
310327export interface PublicCatalogProductUnitOfMeasure {
0 commit comments