oci-core 2.99.0 → 2.100.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 +20 -0
- package/lib/client.js +44 -0
- package/lib/client.js.map +1 -1
- package/lib/model/compute-bare-metal-host.d.ts +12 -2
- package/lib/model/compute-bare-metal-host.js +10 -0
- package/lib/model/compute-bare-metal-host.js.map +1 -1
- package/lib/model/compute-hpc-island.d.ts +6 -1
- package/lib/model/compute-hpc-island.js +5 -0
- package/lib/model/compute-hpc-island.js.map +1 -1
- package/lib/model/compute-network-block.d.ts +6 -1
- package/lib/model/compute-network-block.js +5 -0
- package/lib/model/compute-network-block.js.map +1 -1
- package/lib/model/index.d.ts +10 -0
- package/lib/model/index.js +17 -7
- package/lib/model/index.js.map +1 -1
- package/lib/model/instance-configuration-launch-instance-details.d.ts +4 -0
- package/lib/model/instance-configuration-launch-instance-details.js +10 -0
- package/lib/model/instance-configuration-launch-instance-details.js.map +1 -1
- package/lib/model/instance.d.ts +4 -0
- package/lib/model/instance.js +10 -0
- package/lib/model/instance.js.map +1 -1
- package/lib/model/launch-instance-details.d.ts +4 -0
- package/lib/model/launch-instance-details.js +10 -0
- package/lib/model/launch-instance-details.js.map +1 -1
- package/lib/model/launch-instance-licensing-config.d.ts +45 -0
- package/lib/model/launch-instance-licensing-config.js +85 -0
- package/lib/model/launch-instance-licensing-config.js.map +1 -0
- package/lib/model/launch-instance-windows-licensing-config.d.ts +31 -0
- package/lib/model/launch-instance-windows-licensing-config.js +61 -0
- package/lib/model/launch-instance-windows-licensing-config.js.map +1 -0
- package/lib/model/licensing-config.d.ts +60 -0
- package/lib/model/licensing-config.js +55 -0
- package/lib/model/licensing-config.js.map +1 -0
- package/lib/model/update-instance-details.d.ts +4 -0
- package/lib/model/update-instance-details.js +10 -0
- package/lib/model/update-instance-details.js.map +1 -1
- package/lib/model/update-instance-licensing-config.d.ts +41 -0
- package/lib/model/update-instance-licensing-config.js +80 -0
- package/lib/model/update-instance-licensing-config.js.map +1 -0
- package/lib/model/update-instance-windows-licensing-config.d.ts +32 -0
- package/lib/model/update-instance-windows-licensing-config.js +61 -0
- package/lib/model/update-instance-windows-licensing-config.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,61 @@
|
|
|
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](/iaas/Content/Network/Concepts/overview.htm),
|
|
7
|
+
[Compute](/iaas/Content/Compute/Concepts/computeoverview.htm), and
|
|
8
|
+
[Block Volume](/iaas/Content/Block/Concepts/overview.htm) services.
|
|
9
|
+
The required permissions are documented in the
|
|
10
|
+
[Details for the Core Services](/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, 2024, 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.UpdateInstanceWindowsLicensingConfig = void 0;
|
|
42
|
+
const model = __importStar(require("../model"));
|
|
43
|
+
var UpdateInstanceWindowsLicensingConfig;
|
|
44
|
+
(function (UpdateInstanceWindowsLicensingConfig) {
|
|
45
|
+
function getJsonObj(obj, isParentJsonObj) {
|
|
46
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
|
|
47
|
+
? obj
|
|
48
|
+
: model.UpdateInstanceLicensingConfig.getJsonObj(obj))), {});
|
|
49
|
+
return jsonObj;
|
|
50
|
+
}
|
|
51
|
+
UpdateInstanceWindowsLicensingConfig.getJsonObj = getJsonObj;
|
|
52
|
+
UpdateInstanceWindowsLicensingConfig.type = "WINDOWS";
|
|
53
|
+
function getDeserializedJsonObj(obj, isParentJsonObj) {
|
|
54
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
|
|
55
|
+
? obj
|
|
56
|
+
: model.UpdateInstanceLicensingConfig.getDeserializedJsonObj(obj))), {});
|
|
57
|
+
return jsonObj;
|
|
58
|
+
}
|
|
59
|
+
UpdateInstanceWindowsLicensingConfig.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
60
|
+
})(UpdateInstanceWindowsLicensingConfig = exports.UpdateInstanceWindowsLicensingConfig || (exports.UpdateInstanceWindowsLicensingConfig = {}));
|
|
61
|
+
//# sourceMappingURL=update-instance-windows-licensing-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-instance-windows-licensing-config.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/update-instance-windows-licensing-config.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAWlC,IAAiB,oCAAoC,CAgCpD;AAhCD,WAAiB,oCAAoC;IACnD,SAAgB,UAAU,CACxB,GAAyC,EACzC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,6BAA6B,CAAC,UAAU,CAC7C,GAAG,CACqC,CAAC,GAC5C,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,+CAAU,aAczB,CAAA;IACY,yCAAI,GAAG,SAAS,CAAC;IAC9B,SAAgB,sBAAsB,CACpC,GAAyC,EACzC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,6BAA6B,CAAC,sBAAsB,CACzD,GAAG,CACqC,CAAC,GAC5C,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,2DAAsB,yBAcrC,CAAA;AACH,CAAC,EAhCgB,oCAAoC,GAApC,4CAAoC,KAApC,4CAAoC,QAgCpD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.100.1",
|
|
4
4
|
"description": "OCI NodeJS client for Core",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.100.1",
|
|
19
|
+
"oci-workrequests": "2.100.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|