oci-core 2.121.0 → 2.121.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/lib/client.js +5 -2
  2. package/lib/client.js.map +1 -1
  3. package/lib/model/capacity-bin-preview.d.ts +49 -0
  4. package/lib/model/capacity-bin-preview.js +36 -0
  5. package/lib/model/capacity-bin-preview.js.map +1 -0
  6. package/lib/model/capacity-bin.d.ts +1 -1
  7. package/lib/model/capacity-config.d.ts +46 -0
  8. package/lib/model/capacity-config.js +74 -0
  9. package/lib/model/capacity-config.js.map +1 -0
  10. package/lib/model/create-dedicated-vm-host-details.d.ts +11 -0
  11. package/lib/model/create-dedicated-vm-host-details.js.map +1 -1
  12. package/lib/model/dedicated-vm-host-instance-shape-summary.d.ts +2 -0
  13. package/lib/model/dedicated-vm-host-instance-shape-summary.js +30 -2
  14. package/lib/model/dedicated-vm-host-instance-shape-summary.js.map +1 -1
  15. package/lib/model/dedicated-vm-host-instance-summary.d.ts +5 -0
  16. package/lib/model/dedicated-vm-host-instance-summary.js.map +1 -1
  17. package/lib/model/dedicated-vm-host-shape-summary.d.ts +7 -1
  18. package/lib/model/dedicated-vm-host-shape-summary.js +34 -2
  19. package/lib/model/dedicated-vm-host-shape-summary.js.map +1 -1
  20. package/lib/model/dedicated-vm-host-summary.d.ts +5 -0
  21. package/lib/model/dedicated-vm-host-summary.js.map +1 -1
  22. package/lib/model/dedicated-vm-host.d.ts +12 -1
  23. package/lib/model/dedicated-vm-host.js.map +1 -1
  24. package/lib/model/index.d.ts +6 -0
  25. package/lib/model/index.js +19 -13
  26. package/lib/model/index.js.map +1 -1
  27. package/lib/model/instance-configuration-launch-instance-details.d.ts +4 -4
  28. package/lib/model/supported-capabilities.d.ts +34 -0
  29. package/lib/model/supported-capabilities.js +36 -0
  30. package/lib/model/supported-capabilities.js.map +1 -0
  31. package/lib/request/list-dedicated-vm-host-instances-request.d.ts +5 -0
  32. package/lib/request/list-dedicated-vm-host-instances-request.js.map +1 -1
  33. package/lib/request/list-dedicated-vm-hosts-request.d.ts +5 -0
  34. package/lib/request/list-dedicated-vm-hosts-request.js.map +1 -1
  35. package/lib/request/update-volume-kms-key-request.d.ts +6 -0
  36. package/package.json +3 -3
@@ -0,0 +1,49 @@
1
+ /**
2
+ * Core Services API
3
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
4
+ compute instances, and block storage volumes. For more information, see the console
5
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
6
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
7
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
8
+ The required permissions are documented in the
9
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
10
+
11
+ * OpenAPI spec version: 20160918
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OracleSDKGenerator.
15
+ * Do not edit the class manually.
16
+ *
17
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
18
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
19
+ */
20
+ /**
21
+ * Total CPU and memory capacity for each capacity bucket.
22
+ *
23
+ */
24
+ export interface CapacityBinPreview {
25
+ /**
26
+ * Zero-based index for the corresponding capacity bucket.
27
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
28
+ */
29
+ "capacityIndex": number;
30
+ /**
31
+ * The total OCPUs of the capacity bucket.
32
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
33
+ */
34
+ "totalOcpus": number;
35
+ /**
36
+ * The total memory of the capacity bucket, in GBs.
37
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
38
+ */
39
+ "totalMemoryInGBs": number;
40
+ /**
41
+ * List of VMI shapes supported on each capacity bucket.
42
+ *
43
+ */
44
+ "supportedShapes": Array<string>;
45
+ }
46
+ export declare namespace CapacityBinPreview {
47
+ function getJsonObj(obj: CapacityBinPreview): object;
48
+ function getDeserializedJsonObj(obj: CapacityBinPreview): object;
49
+ }
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ /**
3
+ * Core Services API
4
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
5
+ compute instances, and block storage volumes. For more information, see the console
6
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
7
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
8
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
9
+ The required permissions are documented in the
10
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
11
+
12
+ * OpenAPI spec version: 20160918
13
+ *
14
+ *
15
+ * NOTE: This class is auto generated by OracleSDKGenerator.
16
+ * Do not edit the class manually.
17
+ *
18
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
19
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.CapacityBinPreview = void 0;
23
+ var CapacityBinPreview;
24
+ (function (CapacityBinPreview) {
25
+ function getJsonObj(obj) {
26
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
27
+ return jsonObj;
28
+ }
29
+ CapacityBinPreview.getJsonObj = getJsonObj;
30
+ function getDeserializedJsonObj(obj) {
31
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
32
+ return jsonObj;
33
+ }
34
+ CapacityBinPreview.getDeserializedJsonObj = getDeserializedJsonObj;
35
+ })(CapacityBinPreview = exports.CapacityBinPreview || (exports.CapacityBinPreview = {}));
36
+ //# sourceMappingURL=capacity-bin-preview.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"capacity-bin-preview.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/capacity-bin-preview.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAgCH,IAAiB,kBAAkB,CAWlC;AAXD,WAAiB,kBAAkB;IACjC,SAAgB,UAAU,CAAC,GAAuB;QAChD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuB;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAWlC"}
@@ -18,7 +18,7 @@ The required permissions are documented in the
18
18
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
19
19
  */
20
20
  /**
21
- * Total and remaining CPU & memory capacity for each capacity bucket.
21
+ * Total and remaining CPU and memory capacity for each capacity bucket.
22
22
  *
23
23
  */
24
24
  export interface CapacityBin {
@@ -0,0 +1,46 @@
1
+ /**
2
+ * Core Services API
3
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
4
+ compute instances, and block storage volumes. For more information, see the console
5
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
6
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
7
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
8
+ The required permissions are documented in the
9
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
10
+
11
+ * OpenAPI spec version: 20160918
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OracleSDKGenerator.
15
+ * Do not edit the class manually.
16
+ *
17
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
18
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
19
+ */
20
+ import * as model from "../model";
21
+ /**
22
+ * Specifies the capacity configs that the Dedicated Virtual Machine Host (DVMH) Shape could support.
23
+ *
24
+ */
25
+ export interface CapacityConfig {
26
+ /**
27
+ * The name of each capacity config.
28
+ *
29
+ */
30
+ "capacityConfigName"?: string;
31
+ "supportedCapabilities"?: model.SupportedCapabilities;
32
+ /**
33
+ * Whether this capacity config is the default config.
34
+ *
35
+ */
36
+ "isDefault"?: boolean;
37
+ /**
38
+ * A list of total CPU and memory per capacity bucket.
39
+ *
40
+ */
41
+ "capacityBins"?: Array<model.CapacityBinPreview>;
42
+ }
43
+ export declare namespace CapacityConfig {
44
+ function getJsonObj(obj: CapacityConfig): object;
45
+ function getDeserializedJsonObj(obj: CapacityConfig): object;
46
+ }
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ /**
3
+ * Core Services API
4
+ * Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
5
+ compute instances, and block storage volumes. For more information, see the console
6
+ documentation for the [Networking](https://docs.oracle.com/iaas/Content/Network/Concepts/overview.htm),
7
+ [Compute](https://docs.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
8
+ [Block Volume](https://docs.oracle.com/iaas/Content/Block/Concepts/overview.htm) services.
9
+ The required permissions are documented in the
10
+ [Details for the Core Services](https://docs.oracle.com/iaas/Content/Identity/Reference/corepolicyreference.htm) article.
11
+
12
+ * OpenAPI spec version: 20160918
13
+ *
14
+ *
15
+ * NOTE: This class is auto generated by OracleSDKGenerator.
16
+ * Do not edit the class manually.
17
+ *
18
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
19
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
20
+ */
21
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.CapacityConfig = void 0;
42
+ const model = __importStar(require("../model"));
43
+ var CapacityConfig;
44
+ (function (CapacityConfig) {
45
+ function getJsonObj(obj) {
46
+ const jsonObj = Object.assign(Object.assign({}, obj), {
47
+ "supportedCapabilities": obj.supportedCapabilities
48
+ ? model.SupportedCapabilities.getJsonObj(obj.supportedCapabilities)
49
+ : undefined,
50
+ "capacityBins": obj.capacityBins
51
+ ? obj.capacityBins.map(item => {
52
+ return model.CapacityBinPreview.getJsonObj(item);
53
+ })
54
+ : undefined
55
+ });
56
+ return jsonObj;
57
+ }
58
+ CapacityConfig.getJsonObj = getJsonObj;
59
+ function getDeserializedJsonObj(obj) {
60
+ const jsonObj = Object.assign(Object.assign({}, obj), {
61
+ "supportedCapabilities": obj.supportedCapabilities
62
+ ? model.SupportedCapabilities.getDeserializedJsonObj(obj.supportedCapabilities)
63
+ : undefined,
64
+ "capacityBins": obj.capacityBins
65
+ ? obj.capacityBins.map(item => {
66
+ return model.CapacityBinPreview.getDeserializedJsonObj(item);
67
+ })
68
+ : undefined
69
+ });
70
+ return jsonObj;
71
+ }
72
+ CapacityConfig.getDeserializedJsonObj = getDeserializedJsonObj;
73
+ })(CapacityConfig = exports.CapacityConfig || (exports.CapacityConfig = {}));
74
+ //# sourceMappingURL=capacity-config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"capacity-config.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/capacity-config.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA0BlC,IAAiB,cAAc,CAqC9B;AArCD,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB;QAC5C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,uBAAuB,EAAE,GAAG,CAAC,qBAAqB;gBAChD,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAC,qBAAqB,CAAC;gBACnE,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,kBAAkB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACnD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,yBAAU,aAiBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmB;QACxD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,uBAAuB,EAAE,GAAG,CAAC,qBAAqB;gBAChD,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CAAC,GAAG,CAAC,qBAAqB,CAAC;gBAC/E,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC/D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,qCAAsB,yBAiBrC,CAAA;AACH,CAAC,EArCgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAqC9B"}
@@ -82,6 +82,17 @@ export interface CreateDedicatedVmHostDetails {
82
82
  [key: string]: string;
83
83
  };
84
84
  "placementConstraintDetails"?: model.HostGroupPlacementConstraintDetails | model.ComputeBareMetalHostPlacementConstraintDetails;
85
+ /**
86
+ * The capacity configuration selected to be configured for the Dedicated Virtual Machine host.
87
+ * Run {@link #listDedicatedVmHostShapes(ListDedicatedVmHostShapesRequest) listDedicatedVmHostShapes} API first to see the capacity configuration options.
88
+ *
89
+ */
90
+ "capacityConfig"?: string;
91
+ /**
92
+ * Specifies if the Dedicated Virtual Machine Host (DVMH) is restricted to running only Confidential VMs. If {@code true}, only Confidential VMs can be launched. If {@code false}, Confidential VMs cannot be launched.
93
+ *
94
+ */
95
+ "isMemoryEncryptionEnabled"?: boolean;
85
96
  }
86
97
  export declare namespace CreateDedicatedVmHostDetails {
87
98
  function getJsonObj(obj: CreateDedicatedVmHostDetails): object;
@@ -1 +1 @@
1
- {"version":3,"file":"create-dedicated-vm-host-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-dedicated-vm-host-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAiElC,IAAiB,4BAA4B,CAyB5C;AAzBD,WAAiB,4BAA4B;IAC3C,SAAgB,UAAU,CAAC,GAAiC;QAC1D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,UAAU,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBAC7E,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,uCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiC;QACtE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBACzF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,mDAAsB,yBAWrC,CAAA;AACH,CAAC,EAzBgB,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAyB5C"}
1
+ {"version":3,"file":"create-dedicated-vm-host-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-dedicated-vm-host-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA4ElC,IAAiB,4BAA4B,CAyB5C;AAzBD,WAAiB,4BAA4B;IAC3C,SAAgB,UAAU,CAAC,GAAiC;QAC1D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,UAAU,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBAC7E,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,uCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiC;QACtE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBACzF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,mDAAsB,yBAWrC,CAAA;AACH,CAAC,EAzBgB,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAyB5C"}
@@ -17,6 +17,7 @@ The required permissions are documented in the
17
17
  * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
18
18
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
19
19
  */
20
+ import * as model from "../model";
20
21
  /**
21
22
  * The shape used to launch instances associated with the dedicated VM host.
22
23
  *
@@ -32,6 +33,7 @@ export interface DedicatedVmHostInstanceShapeSummary {
32
33
  *
33
34
  */
34
35
  "instanceShapeName": string;
36
+ "supportedCapabilities"?: model.SupportedCapabilities;
35
37
  }
36
38
  export declare namespace DedicatedVmHostInstanceShapeSummary {
37
39
  function getJsonObj(obj: DedicatedVmHostInstanceShapeSummary): object;
@@ -18,17 +18,45 @@ The required permissions are documented in the
18
18
  * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
19
19
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
20
20
  */
21
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
21
40
  Object.defineProperty(exports, "__esModule", { value: true });
22
41
  exports.DedicatedVmHostInstanceShapeSummary = void 0;
42
+ const model = __importStar(require("../model"));
23
43
  var DedicatedVmHostInstanceShapeSummary;
24
44
  (function (DedicatedVmHostInstanceShapeSummary) {
25
45
  function getJsonObj(obj) {
26
- const jsonObj = Object.assign(Object.assign({}, obj), {});
46
+ const jsonObj = Object.assign(Object.assign({}, obj), {
47
+ "supportedCapabilities": obj.supportedCapabilities
48
+ ? model.SupportedCapabilities.getJsonObj(obj.supportedCapabilities)
49
+ : undefined
50
+ });
27
51
  return jsonObj;
28
52
  }
29
53
  DedicatedVmHostInstanceShapeSummary.getJsonObj = getJsonObj;
30
54
  function getDeserializedJsonObj(obj) {
31
- const jsonObj = Object.assign(Object.assign({}, obj), {});
55
+ const jsonObj = Object.assign(Object.assign({}, obj), {
56
+ "supportedCapabilities": obj.supportedCapabilities
57
+ ? model.SupportedCapabilities.getDeserializedJsonObj(obj.supportedCapabilities)
58
+ : undefined
59
+ });
32
60
  return jsonObj;
33
61
  }
34
62
  DedicatedVmHostInstanceShapeSummary.getDeserializedJsonObj = getDeserializedJsonObj;
@@ -1 +1 @@
1
- {"version":3,"file":"dedicated-vm-host-instance-shape-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-instance-shape-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAsBH,IAAiB,mCAAmC,CAWnD;AAXD,WAAiB,mCAAmC;IAClD,SAAgB,UAAU,CAAC,GAAwC;QACjE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwC;QAC7E,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0DAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,mCAAmC,GAAnC,2CAAmC,KAAnC,2CAAmC,QAWnD"}
1
+ {"version":3,"file":"dedicated-vm-host-instance-shape-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-instance-shape-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAqBlC,IAAiB,mCAAmC,CAyBnD;AAzBD,WAAiB,mCAAmC;IAClD,SAAgB,UAAU,CAAC,GAAwC;QACjE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,uBAAuB,EAAE,GAAG,CAAC,qBAAqB;gBAChD,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAC,qBAAqB,CAAC;gBACnE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,8CAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwC;QAC7E,MAAM,OAAO,mCACR,GAAG,GACH;YACD,uBAAuB,EAAE,GAAG,CAAC,qBAAqB;gBAChD,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CAAC,GAAG,CAAC,qBAAqB,CAAC;gBAC/E,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,0DAAsB,yBAWrC,CAAA;AACH,CAAC,EAzBgB,mCAAmC,GAAnC,2CAAmC,KAAnC,2CAAmC,QAyBnD"}
@@ -39,6 +39,11 @@ export interface DedicatedVmHostInstanceSummary {
39
39
  *
40
40
  */
41
41
  "instanceId": string;
42
+ /**
43
+ * Specifies whether the VM instance is confidential.
44
+ *
45
+ */
46
+ "isMemoryEncryptionEnabled"?: boolean;
42
47
  /**
43
48
  * The shape of the VM instance.
44
49
  *
@@ -1 +1 @@
1
- {"version":3,"file":"dedicated-vm-host-instance-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-instance-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAyCH,IAAiB,8BAA8B,CAW9C;AAXD,WAAiB,8BAA8B;IAC7C,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAW9C"}
1
+ {"version":3,"file":"dedicated-vm-host-instance-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-instance-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AA8CH,IAAiB,8BAA8B,CAW9C;AAXD,WAAiB,8BAA8B;IAC7C,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAW9C"}
@@ -17,6 +17,7 @@ The required permissions are documented in the
17
17
  * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
18
18
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
19
19
  */
20
+ import * as model from "../model";
20
21
  /**
21
22
  * The shape used to launch the dedicated virtual machine (VM) host.
22
23
  *
@@ -29,10 +30,15 @@ export interface DedicatedVmHostShapeSummary {
29
30
  "availabilityDomain"?: string;
30
31
  /**
31
32
  * The name of the dedicated VM host shape. You can enumerate all available shapes by calling
32
- * {@link DedicatedVmHostShapes}.
33
+ * {@link #listDedicatedVmHostShapes(ListDedicatedVmHostShapesRequest) listDedicatedVmHostShapes}.
33
34
  *
34
35
  */
35
36
  "dedicatedVmHostShape": string;
37
+ /**
38
+ * A list of capacity configs that are supported by this dedicated VM host shape.
39
+ *
40
+ */
41
+ "capacityConfigs"?: Array<model.CapacityConfig>;
36
42
  }
37
43
  export declare namespace DedicatedVmHostShapeSummary {
38
44
  function getJsonObj(obj: DedicatedVmHostShapeSummary): object;
@@ -18,17 +18,49 @@ The required permissions are documented in the
18
18
  * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
19
19
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
20
20
  */
21
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
21
40
  Object.defineProperty(exports, "__esModule", { value: true });
22
41
  exports.DedicatedVmHostShapeSummary = void 0;
42
+ const model = __importStar(require("../model"));
23
43
  var DedicatedVmHostShapeSummary;
24
44
  (function (DedicatedVmHostShapeSummary) {
25
45
  function getJsonObj(obj) {
26
- const jsonObj = Object.assign(Object.assign({}, obj), {});
46
+ const jsonObj = Object.assign(Object.assign({}, obj), {
47
+ "capacityConfigs": obj.capacityConfigs
48
+ ? obj.capacityConfigs.map(item => {
49
+ return model.CapacityConfig.getJsonObj(item);
50
+ })
51
+ : undefined
52
+ });
27
53
  return jsonObj;
28
54
  }
29
55
  DedicatedVmHostShapeSummary.getJsonObj = getJsonObj;
30
56
  function getDeserializedJsonObj(obj) {
31
- const jsonObj = Object.assign(Object.assign({}, obj), {});
57
+ const jsonObj = Object.assign(Object.assign({}, obj), {
58
+ "capacityConfigs": obj.capacityConfigs
59
+ ? obj.capacityConfigs.map(item => {
60
+ return model.CapacityConfig.getDeserializedJsonObj(item);
61
+ })
62
+ : undefined
63
+ });
32
64
  return jsonObj;
33
65
  }
34
66
  DedicatedVmHostShapeSummary.getDeserializedJsonObj = getDeserializedJsonObj;
@@ -1 +1 @@
1
- {"version":3,"file":"dedicated-vm-host-shape-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-shape-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAuBH,IAAiB,2BAA2B,CAW3C;AAXD,WAAiB,2BAA2B;IAC1C,SAAgB,UAAU,CAAC,GAAgC;QACzD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgC;QACrE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAW3C"}
1
+ {"version":3,"file":"dedicated-vm-host-shape-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-shape-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA0BlC,IAAiB,2BAA2B,CA6B3C;AA7BD,WAAiB,2BAA2B;IAC1C,SAAgB,UAAU,CAAC,GAAgC;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,GAAG,CAAC,eAAe,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC7B,OAAO,KAAK,CAAC,cAAc,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC/C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,sCAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgC;QACrE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,GAAG,CAAC,eAAe,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC7B,OAAO,KAAK,CAAC,cAAc,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC3D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,kDAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QA6B3C"}
@@ -63,6 +63,11 @@ export interface DedicatedVmHostSummary {
63
63
  *
64
64
  */
65
65
  "id": string;
66
+ /**
67
+ * Specifies if the Dedicated Virtual Machine Host is restricted to running only Confidential VMs. If {@code true}, only Confidential VMs can be launched. If {@code false}, Confidential VMs cannot be launched.
68
+ *
69
+ */
70
+ "isMemoryEncryptionEnabled"?: boolean;
66
71
  /**
67
72
  * The current state of the dedicated VM host.
68
73
  *
@@ -1 +1 @@
1
- {"version":3,"file":"dedicated-vm-host-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAqFH,IAAiB,sBAAsB,CAyBtC;AAzBD,WAAiB,sBAAsB;IACrC,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,qCAAc,KAAd,qCAAc,QAYzB;IAED,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAsB,yBAIrC,CAAA;AACH,CAAC,EAzBgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAyBtC"}
1
+ {"version":3,"file":"dedicated-vm-host-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AA0FH,IAAiB,sBAAsB,CAyBtC;AAzBD,WAAiB,sBAAsB;IACrC,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,qCAAc,KAAd,qCAAc,QAYzB;IAED,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAsB,yBAIrC,CAAA;AACH,CAAC,EAzBgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAyBtC"}
@@ -87,6 +87,17 @@ export interface DedicatedVmHost {
87
87
  * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated VM host.
88
88
  */
89
89
  "id": string;
90
+ /**
91
+ * The capacity configuration selected to be configured for the Dedicated Virtual Machine host.
92
+ * Run {@link #listDedicatedVmHostShapes(ListDedicatedVmHostShapesRequest) listDedicatedVmHostShapes} API to see details of this capacity configuration.
93
+ *
94
+ */
95
+ "capacityConfig"?: string;
96
+ /**
97
+ * Specifies if the Dedicated Virtual Machine Host (DVMH) is restricted to running only Confidential VMs. If {@code true}, only Confidential VMs can be launched. If {@code false}, Confidential VMs cannot be launched.
98
+ *
99
+ */
100
+ "isMemoryEncryptionEnabled"?: boolean;
90
101
  /**
91
102
  * The current state of the dedicated VM host.
92
103
  *
@@ -120,7 +131,7 @@ export interface DedicatedVmHost {
120
131
  */
121
132
  "remainingMemoryInGBs"?: number;
122
133
  /**
123
- * A list of total and remaining CPU & memory per capacity bucket.
134
+ * A list of total and remaining CPU and memory per capacity bucket.
124
135
  *
125
136
  */
126
137
  "capacityBins"?: Array<model.CapacityBin>;
@@ -1 +1 @@
1
- {"version":3,"file":"dedicated-vm-host.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAgHlC,IAAiB,eAAe,CAmD/B;AAnDD,WAAiB,eAAe;IAC9B,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,8BAAc,KAAd,8BAAc,QAYzB;IAED,SAAgB,UAAU,CAAC,GAAoB;QAC7C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,UAAU,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBAC7E,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC5C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,0BAAU,aAiBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBACzF,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,WAAW,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACxD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,sCAAsB,yBAiBrC,CAAA;AACH,CAAC,EAnDgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAmD/B"}
1
+ {"version":3,"file":"dedicated-vm-host.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA2HlC,IAAiB,eAAe,CAmD/B;AAnDD,WAAiB,eAAe;IAC9B,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,8BAAc,KAAd,8BAAc,QAYzB;IAED,SAAgB,UAAU,CAAC,GAAoB;QAC7C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,UAAU,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBAC7E,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC5C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,0BAAU,aAiBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBACzF,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,WAAW,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACxD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,sCAAsB,yBAiBrC,CAAA;AACH,CAAC,EAnDgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAmD/B"}
@@ -133,6 +133,10 @@ import * as Byoipv6CidrDetails from "./byoipv6-cidr-details";
133
133
  export import Byoipv6CidrDetails = Byoipv6CidrDetails.Byoipv6CidrDetails;
134
134
  import * as CapacityBin from "./capacity-bin";
135
135
  export import CapacityBin = CapacityBin.CapacityBin;
136
+ import * as CapacityBinPreview from "./capacity-bin-preview";
137
+ export import CapacityBinPreview = CapacityBinPreview.CapacityBinPreview;
138
+ import * as CapacityConfig from "./capacity-config";
139
+ export import CapacityConfig = CapacityConfig.CapacityConfig;
136
140
  import * as CapacityReportInstanceShapeConfig from "./capacity-report-instance-shape-config";
137
141
  export import CapacityReportInstanceShapeConfig = CapacityReportInstanceShapeConfig.CapacityReportInstanceShapeConfig;
138
142
  import * as CapacityReportShapeAvailability from "./capacity-report-shape-availability";
@@ -907,6 +911,8 @@ import * as ShapeVirtualInstructionsEnabledPlatformOptions from "./shape-virtual
907
911
  export import ShapeVirtualInstructionsEnabledPlatformOptions = ShapeVirtualInstructionsEnabledPlatformOptions.ShapeVirtualInstructionsEnabledPlatformOptions;
908
912
  import * as Subnet from "./subnet";
909
913
  export import Subnet = Subnet.Subnet;
914
+ import * as SupportedCapabilities from "./supported-capabilities";
915
+ export import SupportedCapabilities = SupportedCapabilities.SupportedCapabilities;
910
916
  import * as TcpOptions from "./tcp-options";
911
917
  export import TcpOptions = TcpOptions.TcpOptions;
912
918
  import * as TerminationProceedInstancePoolInstanceDetails from "./termination-proceed-instance-pool-instance-details";