oci-core 2.121.0 → 2.122.0

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 (51) hide show
  1. package/lib/client.d.ts +2 -1
  2. package/lib/client.js +5 -2
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/capacity-bin-preview.d.ts +49 -0
  5. package/lib/model/capacity-bin-preview.js +36 -0
  6. package/lib/model/capacity-bin-preview.js.map +1 -0
  7. package/lib/model/capacity-bin.d.ts +1 -1
  8. package/lib/model/capacity-config.d.ts +46 -0
  9. package/lib/model/capacity-config.js +74 -0
  10. package/lib/model/capacity-config.js.map +1 -0
  11. package/lib/model/compute-gpu-memory-fabric-summary.d.ts +37 -0
  12. package/lib/model/compute-gpu-memory-fabric-summary.js +41 -2
  13. package/lib/model/compute-gpu-memory-fabric-summary.js.map +1 -1
  14. package/lib/model/compute-gpu-memory-fabric.d.ts +42 -0
  15. package/lib/model/compute-gpu-memory-fabric.js +41 -2
  16. package/lib/model/compute-gpu-memory-fabric.js.map +1 -1
  17. package/lib/model/create-dedicated-vm-host-details.d.ts +11 -0
  18. package/lib/model/create-dedicated-vm-host-details.js.map +1 -1
  19. package/lib/model/create-vcn-details.d.ts +1 -1
  20. package/lib/model/dedicated-vm-host-instance-shape-summary.d.ts +2 -0
  21. package/lib/model/dedicated-vm-host-instance-shape-summary.js +30 -2
  22. package/lib/model/dedicated-vm-host-instance-shape-summary.js.map +1 -1
  23. package/lib/model/dedicated-vm-host-instance-summary.d.ts +5 -0
  24. package/lib/model/dedicated-vm-host-instance-summary.js.map +1 -1
  25. package/lib/model/dedicated-vm-host-shape-summary.d.ts +7 -1
  26. package/lib/model/dedicated-vm-host-shape-summary.js +34 -2
  27. package/lib/model/dedicated-vm-host-shape-summary.js.map +1 -1
  28. package/lib/model/dedicated-vm-host-summary.d.ts +5 -0
  29. package/lib/model/dedicated-vm-host-summary.js.map +1 -1
  30. package/lib/model/dedicated-vm-host.d.ts +12 -1
  31. package/lib/model/dedicated-vm-host.js.map +1 -1
  32. package/lib/model/index.d.ts +8 -0
  33. package/lib/model/index.js +21 -13
  34. package/lib/model/index.js.map +1 -1
  35. package/lib/model/instance-configuration-launch-instance-details.d.ts +4 -4
  36. package/lib/model/memory-fabric-preferences-descriptor.d.ts +49 -0
  37. package/lib/model/memory-fabric-preferences-descriptor.js +47 -0
  38. package/lib/model/memory-fabric-preferences-descriptor.js.map +1 -0
  39. package/lib/model/supported-capabilities.d.ts +34 -0
  40. package/lib/model/supported-capabilities.js +36 -0
  41. package/lib/model/supported-capabilities.js.map +1 -0
  42. package/lib/model/update-compute-gpu-memory-fabric-details.d.ts +2 -0
  43. package/lib/model/update-compute-gpu-memory-fabric-details.js +30 -2
  44. package/lib/model/update-compute-gpu-memory-fabric-details.js.map +1 -1
  45. package/lib/model/update-vcn-details.d.ts +1 -1
  46. package/lib/model/vcn.d.ts +1 -1
  47. package/lib/request/list-dedicated-vm-host-instances-request.d.ts +5 -0
  48. package/lib/request/list-dedicated-vm-host-instances-request.js.map +1 -1
  49. package/lib/request/list-dedicated-vm-hosts-request.d.ts +5 -0
  50. package/lib/request/list-dedicated-vm-hosts-request.js.map +1 -1
  51. 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"}
@@ -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
  * Summary information for a compute GPU memory fabric.
22
23
  *
@@ -70,6 +71,32 @@ export interface ComputeGpuMemoryFabricSummary {
70
71
  * The total number of healthy bare metal hosts located in this compute GPU memory fabric. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
71
72
  */
72
73
  "healthyHostCount"?: number;
74
+ /**
75
+ * The host platform identifier used for bundle queries
76
+ *
77
+ */
78
+ "hostPlatformName"?: string;
79
+ /**
80
+ * The switch platform identifier used for bundle queries
81
+ *
82
+ */
83
+ "switchPlatformName"?: string;
84
+ /**
85
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for current firmware bundle
86
+ *
87
+ */
88
+ "currentFirmwareBundleId"?: string;
89
+ /**
90
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for targeted firmware bundle
91
+ *
92
+ */
93
+ "targetFirmwareBundleId"?: string;
94
+ /**
95
+ * The state of Memory Fabric Firmware update
96
+ *
97
+ */
98
+ "firmwareUpdateState"?: ComputeGpuMemoryFabricSummary.FirmwareUpdateState;
99
+ "memoryFabricPreferences"?: model.MemoryFabricPreferencesDescriptor;
73
100
  /**
74
101
  * The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339]
75
102
  * (https://tools.ietf.org/html/rfc3339).
@@ -118,6 +145,16 @@ export interface ComputeGpuMemoryFabricSummary {
118
145
  "displayName"?: string;
119
146
  }
120
147
  export declare namespace ComputeGpuMemoryFabricSummary {
148
+ enum FirmwareUpdateState {
149
+ WillUpdate = "WILL_UPDATE",
150
+ NoUpdate = "NO_UPDATE",
151
+ SkipRecycleEnabled = "SKIP_RECYCLE_ENABLED",
152
+ /**
153
+ * This value is used if a service returns a value for this enum that is not recognized by this
154
+ * version of the SDK.
155
+ */
156
+ UnknownValue = "UNKNOWN_VALUE"
157
+ }
121
158
  function getJsonObj(obj: ComputeGpuMemoryFabricSummary): object;
122
159
  function getDeserializedJsonObj(obj: ComputeGpuMemoryFabricSummary): object;
123
160
  }
@@ -18,17 +18,56 @@ 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.ComputeGpuMemoryFabricSummary = void 0;
42
+ const model = __importStar(require("../model"));
23
43
  var ComputeGpuMemoryFabricSummary;
24
44
  (function (ComputeGpuMemoryFabricSummary) {
45
+ let FirmwareUpdateState;
46
+ (function (FirmwareUpdateState) {
47
+ FirmwareUpdateState["WillUpdate"] = "WILL_UPDATE";
48
+ FirmwareUpdateState["NoUpdate"] = "NO_UPDATE";
49
+ FirmwareUpdateState["SkipRecycleEnabled"] = "SKIP_RECYCLE_ENABLED";
50
+ /**
51
+ * This value is used if a service returns a value for this enum that is not recognized by this
52
+ * version of the SDK.
53
+ */
54
+ FirmwareUpdateState["UnknownValue"] = "UNKNOWN_VALUE";
55
+ })(FirmwareUpdateState = ComputeGpuMemoryFabricSummary.FirmwareUpdateState || (ComputeGpuMemoryFabricSummary.FirmwareUpdateState = {}));
25
56
  function getJsonObj(obj) {
26
- const jsonObj = Object.assign(Object.assign({}, obj), {});
57
+ const jsonObj = Object.assign(Object.assign({}, obj), {
58
+ "memoryFabricPreferences": obj.memoryFabricPreferences
59
+ ? model.MemoryFabricPreferencesDescriptor.getJsonObj(obj.memoryFabricPreferences)
60
+ : undefined
61
+ });
27
62
  return jsonObj;
28
63
  }
29
64
  ComputeGpuMemoryFabricSummary.getJsonObj = getJsonObj;
30
65
  function getDeserializedJsonObj(obj) {
31
- const jsonObj = Object.assign(Object.assign({}, obj), {});
66
+ const jsonObj = Object.assign(Object.assign({}, obj), {
67
+ "memoryFabricPreferences": obj.memoryFabricPreferences
68
+ ? model.MemoryFabricPreferencesDescriptor.getDeserializedJsonObj(obj.memoryFabricPreferences)
69
+ : undefined
70
+ });
32
71
  return jsonObj;
33
72
  }
34
73
  ComputeGpuMemoryFabricSummary.getDeserializedJsonObj = getDeserializedJsonObj;
@@ -1 +1 @@
1
- {"version":3,"file":"compute-gpu-memory-fabric-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/compute-gpu-memory-fabric-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAgGH,IAAiB,6BAA6B,CAW7C;AAXD,WAAiB,6BAA6B;IAC5C,SAAgB,UAAU,CAAC,GAAkC;QAC3D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkC;QACvE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,6BAA6B,GAA7B,qCAA6B,KAA7B,qCAA6B,QAW7C"}
1
+ {"version":3,"file":"compute-gpu-memory-fabric-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/compute-gpu-memory-fabric-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAwHlC,IAAiB,6BAA6B,CAsC7C;AAtCD,WAAiB,6BAA6B;IAC5C,IAAY,mBASX;IATD,WAAY,mBAAmB;QAC7B,iDAA0B,CAAA;QAC1B,6CAAsB,CAAA;QACtB,kEAA2C,CAAA;QAC3C;;;WAGG;QACH,qDAA8B,CAAA;IAChC,CAAC,EATW,mBAAmB,GAAnB,iDAAmB,KAAnB,iDAAmB,QAS9B;IAED,SAAgB,UAAU,CAAC,GAAkC;QAC3D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,yBAAyB,EAAE,GAAG,CAAC,uBAAuB;gBACpD,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,UAAU,CAAC,GAAG,CAAC,uBAAuB,CAAC;gBACjF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,wCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkC;QACvE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,yBAAyB,EAAE,GAAG,CAAC,uBAAuB;gBACpD,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,sBAAsB,CAC5D,GAAG,CAAC,uBAAuB,CAC5B;gBACH,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,oDAAsB,yBAarC,CAAA;AACH,CAAC,EAtCgB,6BAA6B,GAA7B,qCAA6B,KAA7B,qCAA6B,QAsC7C"}
@@ -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 customer facing object includes GPU memory fabric details.
22
23
  *
@@ -77,6 +78,37 @@ export interface ComputeGpuMemoryFabric {
77
78
  * The total number of bare metal hosts located in this compute GPU memory fabric. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
78
79
  */
79
80
  "totalHostCount": number;
81
+ /**
82
+ * The host platform identifier used for bundle queries
83
+ *
84
+ */
85
+ "hostPlatformName"?: string;
86
+ /**
87
+ * The switch platform identifier used for bundle queries
88
+ *
89
+ */
90
+ "switchPlatformName"?: string;
91
+ /**
92
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for current firmware bundle
93
+ *
94
+ */
95
+ "currentFirmwareBundleId"?: string;
96
+ /**
97
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for targeted firmware bundle
98
+ *
99
+ */
100
+ "targetFirmwareBundleId"?: string;
101
+ /**
102
+ * The state of Memory Fabric Firmware update
103
+ *
104
+ */
105
+ "firmwareUpdateState"?: ComputeGpuMemoryFabric.FirmwareUpdateState;
106
+ /**
107
+ * The reason for updating firmware bundle version of the GPU memory fabric.
108
+ *
109
+ */
110
+ "firmwareUpdateReason"?: string;
111
+ "memoryFabricPreferences"?: model.MemoryFabricPreferencesDescriptor;
80
112
  /**
81
113
  * The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339]
82
114
  * (https://tools.ietf.org/html/rfc3339).
@@ -146,6 +178,16 @@ export declare namespace ComputeGpuMemoryFabric {
146
178
  */
147
179
  UnknownValue = "UNKNOWN_VALUE"
148
180
  }
181
+ enum FirmwareUpdateState {
182
+ WillUpdate = "WILL_UPDATE",
183
+ NoUpdate = "NO_UPDATE",
184
+ SkipRecycleEnabled = "SKIP_RECYCLE_ENABLED",
185
+ /**
186
+ * This value is used if a service returns a value for this enum that is not recognized by this
187
+ * version of the SDK.
188
+ */
189
+ UnknownValue = "UNKNOWN_VALUE"
190
+ }
149
191
  function getJsonObj(obj: ComputeGpuMemoryFabric): object;
150
192
  function getDeserializedJsonObj(obj: ComputeGpuMemoryFabric): object;
151
193
  }
@@ -18,8 +18,28 @@ 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.ComputeGpuMemoryFabric = void 0;
42
+ const model = __importStar(require("../model"));
23
43
  var ComputeGpuMemoryFabric;
24
44
  (function (ComputeGpuMemoryFabric) {
25
45
  let LifecycleState;
@@ -45,13 +65,32 @@ var ComputeGpuMemoryFabric;
45
65
  */
46
66
  FabricHealth["UnknownValue"] = "UNKNOWN_VALUE";
47
67
  })(FabricHealth = ComputeGpuMemoryFabric.FabricHealth || (ComputeGpuMemoryFabric.FabricHealth = {}));
68
+ let FirmwareUpdateState;
69
+ (function (FirmwareUpdateState) {
70
+ FirmwareUpdateState["WillUpdate"] = "WILL_UPDATE";
71
+ FirmwareUpdateState["NoUpdate"] = "NO_UPDATE";
72
+ FirmwareUpdateState["SkipRecycleEnabled"] = "SKIP_RECYCLE_ENABLED";
73
+ /**
74
+ * This value is used if a service returns a value for this enum that is not recognized by this
75
+ * version of the SDK.
76
+ */
77
+ FirmwareUpdateState["UnknownValue"] = "UNKNOWN_VALUE";
78
+ })(FirmwareUpdateState = ComputeGpuMemoryFabric.FirmwareUpdateState || (ComputeGpuMemoryFabric.FirmwareUpdateState = {}));
48
79
  function getJsonObj(obj) {
49
- const jsonObj = Object.assign(Object.assign({}, obj), {});
80
+ const jsonObj = Object.assign(Object.assign({}, obj), {
81
+ "memoryFabricPreferences": obj.memoryFabricPreferences
82
+ ? model.MemoryFabricPreferencesDescriptor.getJsonObj(obj.memoryFabricPreferences)
83
+ : undefined
84
+ });
50
85
  return jsonObj;
51
86
  }
52
87
  ComputeGpuMemoryFabric.getJsonObj = getJsonObj;
53
88
  function getDeserializedJsonObj(obj) {
54
- const jsonObj = Object.assign(Object.assign({}, obj), {});
89
+ const jsonObj = Object.assign(Object.assign({}, obj), {
90
+ "memoryFabricPreferences": obj.memoryFabricPreferences
91
+ ? model.MemoryFabricPreferencesDescriptor.getDeserializedJsonObj(obj.memoryFabricPreferences)
92
+ : undefined
93
+ });
55
94
  return jsonObj;
56
95
  }
57
96
  ComputeGpuMemoryFabric.getDeserializedJsonObj = getDeserializedJsonObj;
@@ -1 +1 @@
1
- {"version":3,"file":"compute-gpu-memory-fabric.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/compute-gpu-memory-fabric.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAqGH,IAAiB,sBAAsB,CAkCtC;AAlCD,WAAiB,sBAAsB;IACrC,IAAY,cAWX;IAXD,WAAY,cAAc;QACxB,yCAAuB,CAAA;QACvB,uCAAqB,CAAA;QACrB,+CAA6B,CAAA;QAC7B,uCAAqB,CAAA;QACrB,6CAA2B,CAAA;QAC3B;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAXW,cAAc,GAAd,qCAAc,KAAd,qCAAc,QAWzB;IAED,IAAY,YAQX;IARD,WAAY,YAAY;QACtB,mCAAmB,CAAA;QACnB,uCAAuB,CAAA;QACvB;;;WAGG;QACH,8CAA8B,CAAA;IAChC,CAAC,EARW,YAAY,GAAZ,mCAAY,KAAZ,mCAAY,QAQvB;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,EAlCgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAkCtC"}
1
+ {"version":3,"file":"compute-gpu-memory-fabric.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/compute-gpu-memory-fabric.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAkIlC,IAAiB,sBAAsB,CA6DtC;AA7DD,WAAiB,sBAAsB;IACrC,IAAY,cAWX;IAXD,WAAY,cAAc;QACxB,yCAAuB,CAAA;QACvB,uCAAqB,CAAA;QACrB,+CAA6B,CAAA;QAC7B,uCAAqB,CAAA;QACrB,6CAA2B,CAAA;QAC3B;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAXW,cAAc,GAAd,qCAAc,KAAd,qCAAc,QAWzB;IAED,IAAY,YAQX;IARD,WAAY,YAAY;QACtB,mCAAmB,CAAA;QACnB,uCAAuB,CAAA;QACvB;;;WAGG;QACH,8CAA8B,CAAA;IAChC,CAAC,EARW,YAAY,GAAZ,mCAAY,KAAZ,mCAAY,QAQvB;IAED,IAAY,mBASX;IATD,WAAY,mBAAmB;QAC7B,iDAA0B,CAAA;QAC1B,6CAAsB,CAAA;QACtB,kEAA2C,CAAA;QAC3C;;;WAGG;QACH,qDAA8B,CAAA;IAChC,CAAC,EATW,mBAAmB,GAAnB,0CAAmB,KAAnB,0CAAmB,QAS9B;IAED,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,yBAAyB,EAAE,GAAG,CAAC,uBAAuB;gBACpD,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,UAAU,CAAC,GAAG,CAAC,uBAAuB,CAAC;gBACjF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,iCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,yBAAyB,EAAE,GAAG,CAAC,uBAAuB;gBACpD,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,sBAAsB,CAC5D,GAAG,CAAC,uBAAuB,CAC5B;gBACH,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,6CAAsB,yBAarC,CAAA;AACH,CAAC,EA7DgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QA6DtC"}
@@ -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"}
@@ -131,7 +131,7 @@ export interface CreateVcnDetails {
131
131
  */
132
132
  "isIpv6Enabled"?: boolean;
133
133
  /**
134
- * Indicates whether Zpr Only Mode is enforced.
134
+ * Indicates whether ZPR Only mode is enforced.
135
135
  *
136
136
  */
137
137
  "isZprOnly"?: boolean;
@@ -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;