oci-core 2.120.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.
- package/lib/client.d.ts +10 -0
- package/lib/client.js +61 -2
- package/lib/client.js.map +1 -1
- package/lib/model/capacity-bin-preview.d.ts +49 -0
- package/lib/model/capacity-bin-preview.js +36 -0
- package/lib/model/capacity-bin-preview.js.map +1 -0
- package/lib/model/capacity-bin.d.ts +1 -1
- package/lib/model/capacity-config.d.ts +46 -0
- package/lib/model/capacity-config.js +74 -0
- package/lib/model/capacity-config.js.map +1 -0
- package/lib/model/create-dedicated-vm-host-details.d.ts +11 -0
- package/lib/model/create-dedicated-vm-host-details.js.map +1 -1
- package/lib/model/create-instance-pool-details.d.ts +1 -0
- package/lib/model/create-instance-pool-details.js +6 -0
- package/lib/model/create-instance-pool-details.js.map +1 -1
- package/lib/model/dedicated-vm-host-instance-shape-summary.d.ts +2 -0
- package/lib/model/dedicated-vm-host-instance-shape-summary.js +30 -2
- package/lib/model/dedicated-vm-host-instance-shape-summary.js.map +1 -1
- package/lib/model/dedicated-vm-host-instance-summary.d.ts +5 -0
- package/lib/model/dedicated-vm-host-instance-summary.js.map +1 -1
- package/lib/model/dedicated-vm-host-shape-summary.d.ts +7 -1
- package/lib/model/dedicated-vm-host-shape-summary.js +34 -2
- package/lib/model/dedicated-vm-host-shape-summary.js.map +1 -1
- package/lib/model/dedicated-vm-host-summary.d.ts +5 -0
- package/lib/model/dedicated-vm-host-summary.js.map +1 -1
- package/lib/model/dedicated-vm-host.d.ts +12 -1
- package/lib/model/dedicated-vm-host.js.map +1 -1
- package/lib/model/index.d.ts +16 -0
- package/lib/model/index.js +29 -13
- package/lib/model/index.js.map +1 -1
- package/lib/model/instance-configuration-launch-instance-details.d.ts +4 -4
- package/lib/model/instance-pool-instance.d.ts +2 -0
- package/lib/model/instance-pool-instance.js +2 -0
- package/lib/model/instance-pool-instance.js.map +1 -1
- package/lib/model/instance-pool-lifecycle-actions-details.d.ts +31 -0
- package/lib/model/instance-pool-lifecycle-actions-details.js +64 -0
- package/lib/model/instance-pool-lifecycle-actions-details.js.map +1 -0
- package/lib/model/instance-pool-lifecycle-management-details.d.ts +31 -0
- package/lib/model/instance-pool-lifecycle-management-details.js +64 -0
- package/lib/model/instance-pool-lifecycle-management-details.js.map +1 -0
- package/lib/model/instance-pool-pre-termination-action-details.d.ts +41 -0
- package/lib/model/instance-pool-pre-termination-action-details.js +64 -0
- package/lib/model/instance-pool-pre-termination-action-details.js.map +1 -0
- package/lib/model/instance-pool-pre-termination-action-handle-timeout-details.d.ts +59 -0
- package/lib/model/instance-pool-pre-termination-action-handle-timeout-details.js +58 -0
- package/lib/model/instance-pool-pre-termination-action-handle-timeout-details.js.map +1 -0
- package/lib/model/instance-pool.d.ts +1 -0
- package/lib/model/instance-pool.js +6 -0
- package/lib/model/instance-pool.js.map +1 -1
- package/lib/model/supported-capabilities.d.ts +34 -0
- package/lib/model/supported-capabilities.js +36 -0
- package/lib/model/supported-capabilities.js.map +1 -0
- package/lib/model/termination-proceed-instance-pool-instance-details.d.ts +34 -0
- package/lib/model/termination-proceed-instance-pool-instance-details.js +36 -0
- package/lib/model/termination-proceed-instance-pool-instance-details.js.map +1 -0
- package/lib/model/update-instance-pool-details.d.ts +1 -0
- package/lib/model/update-instance-pool-details.js +6 -0
- package/lib/model/update-instance-pool-details.js.map +1 -1
- package/lib/request/index.d.ts +2 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-dedicated-vm-host-instances-request.d.ts +5 -0
- package/lib/request/list-dedicated-vm-host-instances-request.js.map +1 -1
- package/lib/request/list-dedicated-vm-hosts-request.d.ts +5 -0
- package/lib/request/list-dedicated-vm-hosts-request.js.map +1 -1
- package/lib/request/termination-proceed-instance-pool-instance-request.d.ts +36 -0
- package/lib/request/termination-proceed-instance-pool-instance-request.js +15 -0
- package/lib/request/termination-proceed-instance-pool-instance-request.js.map +1 -0
- package/lib/request/update-volume-kms-key-request.d.ts +6 -0
- package/lib/response/index.d.ts +2 -0
- package/lib/response/termination-proceed-instance-pool-instance-response.d.ts +20 -0
- package/lib/response/termination-proceed-instance-pool-instance-response.js +15 -0
- package/lib/response/termination-proceed-instance-pool-instance-response.js.map +1 -0
- 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
|
|
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;
|
|
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"}
|
|
@@ -92,6 +92,7 @@ export interface CreateInstancePoolDetails {
|
|
|
92
92
|
*
|
|
93
93
|
*/
|
|
94
94
|
"instanceHostnameFormatter"?: string;
|
|
95
|
+
"lifecycleManagement"?: model.InstancePoolLifecycleManagementDetails;
|
|
95
96
|
}
|
|
96
97
|
export declare namespace CreateInstancePoolDetails {
|
|
97
98
|
function getJsonObj(obj: CreateInstancePoolDetails): object;
|
|
@@ -53,6 +53,9 @@ var CreateInstancePoolDetails;
|
|
|
53
53
|
? obj.loadBalancers.map(item => {
|
|
54
54
|
return model.AttachLoadBalancerDetails.getJsonObj(item);
|
|
55
55
|
})
|
|
56
|
+
: undefined,
|
|
57
|
+
"lifecycleManagement": obj.lifecycleManagement
|
|
58
|
+
? model.InstancePoolLifecycleManagementDetails.getJsonObj(obj.lifecycleManagement)
|
|
56
59
|
: undefined
|
|
57
60
|
});
|
|
58
61
|
return jsonObj;
|
|
@@ -69,6 +72,9 @@ var CreateInstancePoolDetails;
|
|
|
69
72
|
? obj.loadBalancers.map(item => {
|
|
70
73
|
return model.AttachLoadBalancerDetails.getDeserializedJsonObj(item);
|
|
71
74
|
})
|
|
75
|
+
: undefined,
|
|
76
|
+
"lifecycleManagement": obj.lifecycleManagement
|
|
77
|
+
? model.InstancePoolLifecycleManagementDetails.getDeserializedJsonObj(obj.lifecycleManagement)
|
|
72
78
|
: undefined
|
|
73
79
|
});
|
|
74
80
|
return jsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-instance-pool-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-instance-pool-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"create-instance-pool-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-instance-pool-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA0ElC,IAAiB,yBAAyB,CAqDzC;AArDD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,yBAAyB,EAAE,GAAG,CAAC,uBAAuB;gBACpD,CAAC,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrC,OAAO,KAAK,CAAC,+CAA+C,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAChF,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,yBAAyB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,qBAAqB,EAAE,GAAG,CAAC,mBAAmB;gBAC5C,CAAC,CAAC,KAAK,CAAC,sCAAsC,CAAC,UAAU,CAAC,GAAG,CAAC,mBAAmB,CAAC;gBAClF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAvBe,oCAAU,aAuBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,yBAAyB,EAAE,GAAG,CAAC,uBAAuB;gBACpD,CAAC,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrC,OAAO,KAAK,CAAC,+CAA+C,CAAC,sBAAsB,CACjF,IAAI,CACL,CAAC;gBACJ,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,yBAAyB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACtE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,qBAAqB,EAAE,GAAG,CAAC,mBAAmB;gBAC5C,CAAC,CAAC,KAAK,CAAC,sCAAsC,CAAC,sBAAsB,CACjE,GAAG,CAAC,mBAAmB,CACxB;gBACH,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IA3Be,gDAAsB,yBA2BrC,CAAA;AACH,CAAC,EArDgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAqDzC"}
|
|
@@ -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
|
|
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"}
|
|
@@ -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;;;
|
|
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
|
|
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
|
|
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;;;
|
|
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
|
|
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;
|
|
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"}
|
package/lib/model/index.d.ts
CHANGED
|
@@ -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";
|
|
@@ -681,6 +685,10 @@ import * as InstancePoolInstance from "./instance-pool-instance";
|
|
|
681
685
|
export import InstancePoolInstance = InstancePoolInstance.InstancePoolInstance;
|
|
682
686
|
import * as InstancePoolInstanceLoadBalancerBackend from "./instance-pool-instance-load-balancer-backend";
|
|
683
687
|
export import InstancePoolInstanceLoadBalancerBackend = InstancePoolInstanceLoadBalancerBackend.InstancePoolInstanceLoadBalancerBackend;
|
|
688
|
+
import * as InstancePoolLifecycleActionsDetails from "./instance-pool-lifecycle-actions-details";
|
|
689
|
+
export import InstancePoolLifecycleActionsDetails = InstancePoolLifecycleActionsDetails.InstancePoolLifecycleActionsDetails;
|
|
690
|
+
import * as InstancePoolLifecycleManagementDetails from "./instance-pool-lifecycle-management-details";
|
|
691
|
+
export import InstancePoolLifecycleManagementDetails = InstancePoolLifecycleManagementDetails.InstancePoolLifecycleManagementDetails;
|
|
684
692
|
import * as InstancePoolLoadBalancerAttachment from "./instance-pool-load-balancer-attachment";
|
|
685
693
|
export import InstancePoolLoadBalancerAttachment = InstancePoolLoadBalancerAttachment.InstancePoolLoadBalancerAttachment;
|
|
686
694
|
import * as InstancePoolPlacementConfiguration from "./instance-pool-placement-configuration";
|
|
@@ -693,6 +701,10 @@ import * as InstancePoolPlacementSecondaryVnicSubnet from "./instance-pool-place
|
|
|
693
701
|
export import InstancePoolPlacementSecondaryVnicSubnet = InstancePoolPlacementSecondaryVnicSubnet.InstancePoolPlacementSecondaryVnicSubnet;
|
|
694
702
|
import * as InstancePoolPlacementSubnetDetails from "./instance-pool-placement-subnet-details";
|
|
695
703
|
export import InstancePoolPlacementSubnetDetails = InstancePoolPlacementSubnetDetails.InstancePoolPlacementSubnetDetails;
|
|
704
|
+
import * as InstancePoolPreTerminationActionDetails from "./instance-pool-pre-termination-action-details";
|
|
705
|
+
export import InstancePoolPreTerminationActionDetails = InstancePoolPreTerminationActionDetails.InstancePoolPreTerminationActionDetails;
|
|
706
|
+
import * as InstancePoolPreTerminationActionHandleTimeoutDetails from "./instance-pool-pre-termination-action-handle-timeout-details";
|
|
707
|
+
export import InstancePoolPreTerminationActionHandleTimeoutDetails = InstancePoolPreTerminationActionHandleTimeoutDetails.InstancePoolPreTerminationActionHandleTimeoutDetails;
|
|
696
708
|
import * as InstancePoolSummary from "./instance-pool-summary";
|
|
697
709
|
export import InstancePoolSummary = InstancePoolSummary.InstancePoolSummary;
|
|
698
710
|
import * as InstancePowerActionDetails from "./instance-power-action-details";
|
|
@@ -899,8 +911,12 @@ import * as ShapeVirtualInstructionsEnabledPlatformOptions from "./shape-virtual
|
|
|
899
911
|
export import ShapeVirtualInstructionsEnabledPlatformOptions = ShapeVirtualInstructionsEnabledPlatformOptions.ShapeVirtualInstructionsEnabledPlatformOptions;
|
|
900
912
|
import * as Subnet from "./subnet";
|
|
901
913
|
export import Subnet = Subnet.Subnet;
|
|
914
|
+
import * as SupportedCapabilities from "./supported-capabilities";
|
|
915
|
+
export import SupportedCapabilities = SupportedCapabilities.SupportedCapabilities;
|
|
902
916
|
import * as TcpOptions from "./tcp-options";
|
|
903
917
|
export import TcpOptions = TcpOptions.TcpOptions;
|
|
918
|
+
import * as TerminationProceedInstancePoolInstanceDetails from "./termination-proceed-instance-pool-instance-details";
|
|
919
|
+
export import TerminationProceedInstancePoolInstanceDetails = TerminationProceedInstancePoolInstanceDetails.TerminationProceedInstancePoolInstanceDetails;
|
|
904
920
|
import * as Topology from "./topology";
|
|
905
921
|
export import Topology = Topology.Topology;
|
|
906
922
|
import * as TopologyAssociatedWithRelationshipDetails from "./topology-associated-with-relationship-details";
|