oci-blockchain 2.6.0 → 2.9.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.
- package/lib/client.d.ts +44 -26
- package/lib/client.js +155 -29
- package/lib/client.js.map +1 -1
- package/lib/model/blockchain-platform-patch-collection.d.ts +26 -0
- package/lib/model/blockchain-platform-patch-collection.js +61 -0
- package/lib/model/blockchain-platform-patch-collection.js.map +1 -0
- package/lib/model/blockchain-platform-patch-summary.d.ts +37 -0
- package/lib/model/blockchain-platform-patch-summary.js +29 -0
- package/lib/model/blockchain-platform-patch-summary.js.map +1 -0
- package/lib/model/blockchain-platform.d.ts +4 -0
- package/lib/model/blockchain-platform.js.map +1 -1
- package/lib/model/create-blockchain-platform-details.d.ts +4 -0
- package/lib/model/create-blockchain-platform-details.js.map +1 -1
- package/lib/model/index.d.ts +6 -0
- package/lib/model/index.js +7 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/upgrade-blockchain-platform-details.d.ts +27 -0
- package/lib/model/upgrade-blockchain-platform-details.js +29 -0
- package/lib/model/upgrade-blockchain-platform-details.js.map +1 -0
- package/lib/model/work-request-summary.d.ts +1 -0
- package/lib/model/work-request-summary.js +1 -0
- package/lib/model/work-request-summary.js.map +1 -1
- package/lib/model/work-request.d.ts +1 -0
- package/lib/model/work-request.js +1 -0
- package/lib/model/work-request.js.map +1 -1
- package/lib/request/change-blockchain-platform-compartment-request.d.ts +1 -1
- package/lib/request/create-blockchain-platform-request.d.ts +1 -1
- package/lib/request/create-osn-request.d.ts +1 -1
- package/lib/request/create-peer-request.d.ts +1 -1
- package/lib/request/delete-blockchain-platform-request.d.ts +10 -1
- package/lib/request/delete-osn-request.d.ts +1 -1
- package/lib/request/delete-peer-request.d.ts +10 -1
- package/lib/request/delete-work-request-request.d.ts +1 -1
- package/lib/request/get-blockchain-platform-request.d.ts +1 -1
- package/lib/request/get-osn-request.d.ts +1 -1
- package/lib/request/get-peer-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/index.d.ts +4 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-blockchain-platform-patches-request.d.ts +34 -0
- package/lib/request/list-blockchain-platform-patches-request.js +15 -0
- package/lib/request/list-blockchain-platform-patches-request.js.map +1 -0
- package/lib/request/list-blockchain-platforms-request.d.ts +1 -1
- package/lib/request/list-osns-request.d.ts +1 -1
- package/lib/request/list-peers-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/preview-scale-blockchain-platform-request.d.ts +1 -1
- package/lib/request/scale-blockchain-platform-request.d.ts +1 -1
- package/lib/request/start-blockchain-platform-request.d.ts +1 -1
- package/lib/request/stop-blockchain-platform-request.d.ts +1 -1
- package/lib/request/update-blockchain-platform-request.d.ts +1 -1
- package/lib/request/update-osn-request.d.ts +1 -1
- package/lib/request/update-peer-request.d.ts +1 -1
- package/lib/request/upgrade-blockchain-platform-request.d.ts +49 -0
- package/lib/request/upgrade-blockchain-platform-request.js +15 -0
- package/lib/request/upgrade-blockchain-platform-request.js.map +1 -0
- package/lib/response/index.d.ts +4 -0
- package/lib/response/list-blockchain-platform-patches-response.d.ts +32 -0
- package/lib/response/list-blockchain-platform-patches-response.js +15 -0
- package/lib/response/list-blockchain-platform-patches-response.js.map +1 -0
- package/lib/response/upgrade-blockchain-platform-response.d.ts +25 -0
- package/lib/response/upgrade-blockchain-platform-response.js +15 -0
- package/lib/response/upgrade-blockchain-platform-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Blockchain Platform Control Plane API
|
|
4
|
+
* Blockchain Platform Control Plane API
|
|
5
|
+
* OpenAPI spec version: 20191010
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.BlockchainPlatformPatchCollection = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var BlockchainPlatformPatchCollection;
|
|
37
|
+
(function (BlockchainPlatformPatchCollection) {
|
|
38
|
+
function getJsonObj(obj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"items": obj.items
|
|
41
|
+
? obj.items.map(item => {
|
|
42
|
+
return model.BlockchainPlatformPatchSummary.getJsonObj(item);
|
|
43
|
+
})
|
|
44
|
+
: undefined
|
|
45
|
+
});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
BlockchainPlatformPatchCollection.getJsonObj = getJsonObj;
|
|
49
|
+
function getDeserializedJsonObj(obj) {
|
|
50
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
"items": obj.items
|
|
52
|
+
? obj.items.map(item => {
|
|
53
|
+
return model.BlockchainPlatformPatchSummary.getDeserializedJsonObj(item);
|
|
54
|
+
})
|
|
55
|
+
: undefined
|
|
56
|
+
});
|
|
57
|
+
return jsonObj;
|
|
58
|
+
}
|
|
59
|
+
BlockchainPlatformPatchCollection.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
60
|
+
})(BlockchainPlatformPatchCollection = exports.BlockchainPlatformPatchCollection || (exports.BlockchainPlatformPatchCollection = {}));
|
|
61
|
+
//# sourceMappingURL=blockchain-platform-patch-collection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blockchain-platform-patch-collection.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/blockchain-platform-patch-collection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAalC,IAAiB,iCAAiC,CA6BjD;AA7BD,WAAiB,iCAAiC;IAChD,SAAgB,UAAU,CAAC,GAAsC;QAC/D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,8BAA8B,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC/D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,4CAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAsC;QAC3E,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,8BAA8B,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC3E,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,wDAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,iCAAiC,GAAjC,yCAAiC,KAAjC,yCAAiC,QA6BjD"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Blockchain Platform Control Plane API
|
|
3
|
+
* Blockchain Platform Control Plane API
|
|
4
|
+
* OpenAPI spec version: 20191010
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Patch Details
|
|
15
|
+
*/
|
|
16
|
+
export interface BlockchainPlatformPatchSummary {
|
|
17
|
+
/**
|
|
18
|
+
* patch id
|
|
19
|
+
*/
|
|
20
|
+
"id"?: string;
|
|
21
|
+
/**
|
|
22
|
+
* patch service version
|
|
23
|
+
*/
|
|
24
|
+
"serviceVersion"?: string;
|
|
25
|
+
/**
|
|
26
|
+
* A URL for the patch specific documentation
|
|
27
|
+
*/
|
|
28
|
+
"patchInfoUrl"?: string;
|
|
29
|
+
/**
|
|
30
|
+
* patch due date for customer initiated patching
|
|
31
|
+
*/
|
|
32
|
+
"timePatchDue"?: Date;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace BlockchainPlatformPatchSummary {
|
|
35
|
+
function getJsonObj(obj: BlockchainPlatformPatchSummary): object;
|
|
36
|
+
function getDeserializedJsonObj(obj: BlockchainPlatformPatchSummary): object;
|
|
37
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Blockchain Platform Control Plane API
|
|
4
|
+
* Blockchain Platform Control Plane API
|
|
5
|
+
* OpenAPI spec version: 20191010
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.BlockchainPlatformPatchSummary = void 0;
|
|
16
|
+
var BlockchainPlatformPatchSummary;
|
|
17
|
+
(function (BlockchainPlatformPatchSummary) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
BlockchainPlatformPatchSummary.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
BlockchainPlatformPatchSummary.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(BlockchainPlatformPatchSummary = exports.BlockchainPlatformPatchSummary || (exports.BlockchainPlatformPatchSummary = {}));
|
|
29
|
+
//# sourceMappingURL=blockchain-platform-patch-summary.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blockchain-platform-patch-summary.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/blockchain-platform-patch-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA2BH,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"}
|
|
@@ -43,6 +43,10 @@ export interface BlockchainPlatform {
|
|
|
43
43
|
* The time the Platform Instance was updated. An RFC3339 formatted datetime string
|
|
44
44
|
*/
|
|
45
45
|
"timeUpdated"?: Date;
|
|
46
|
+
/**
|
|
47
|
+
* Platform Version
|
|
48
|
+
*/
|
|
49
|
+
"platformVersion"?: string;
|
|
46
50
|
/**
|
|
47
51
|
* The version of the Platform Instance.
|
|
48
52
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blockchain-platform.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/blockchain-platform.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"blockchain-platform.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/blockchain-platform.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-blockchain-platform-details.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/create-blockchain-platform-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"create-blockchain-platform-details.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/create-blockchain-platform-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAsEH,IAAiB,+BAA+B,CAW/C;AAXD,WAAiB,+BAA+B;IAC9C,SAAgB,UAAU,CAAC,GAAoC;QAC7D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoC;QACzE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAW/C"}
|
package/lib/model/index.d.ts
CHANGED
|
@@ -20,6 +20,10 @@ import * as BlockchainPlatformCollection from "./blockchain-platform-collection"
|
|
|
20
20
|
export import BlockchainPlatformCollection = BlockchainPlatformCollection.BlockchainPlatformCollection;
|
|
21
21
|
import * as BlockchainPlatformComponentDetails from "./blockchain-platform-component-details";
|
|
22
22
|
export import BlockchainPlatformComponentDetails = BlockchainPlatformComponentDetails.BlockchainPlatformComponentDetails;
|
|
23
|
+
import * as BlockchainPlatformPatchCollection from "./blockchain-platform-patch-collection";
|
|
24
|
+
export import BlockchainPlatformPatchCollection = BlockchainPlatformPatchCollection.BlockchainPlatformPatchCollection;
|
|
25
|
+
import * as BlockchainPlatformPatchSummary from "./blockchain-platform-patch-summary";
|
|
26
|
+
export import BlockchainPlatformPatchSummary = BlockchainPlatformPatchSummary.BlockchainPlatformPatchSummary;
|
|
23
27
|
import * as BlockchainPlatformSummary from "./blockchain-platform-summary";
|
|
24
28
|
export import BlockchainPlatformSummary = BlockchainPlatformSummary.BlockchainPlatformSummary;
|
|
25
29
|
import * as ChangeBlockchainPlatformCompartmentDetails from "./change-blockchain-platform-compartment-details";
|
|
@@ -68,6 +72,8 @@ import * as UpdateOsnDetails from "./update-osn-details";
|
|
|
68
72
|
export import UpdateOsnDetails = UpdateOsnDetails.UpdateOsnDetails;
|
|
69
73
|
import * as UpdatePeerDetails from "./update-peer-details";
|
|
70
74
|
export import UpdatePeerDetails = UpdatePeerDetails.UpdatePeerDetails;
|
|
75
|
+
import * as UpgradeBlockchainPlatformDetails from "./upgrade-blockchain-platform-details";
|
|
76
|
+
export import UpgradeBlockchainPlatformDetails = UpgradeBlockchainPlatformDetails.UpgradeBlockchainPlatformDetails;
|
|
71
77
|
import * as WorkRequest from "./work-request";
|
|
72
78
|
export import WorkRequest = WorkRequest.WorkRequest;
|
|
73
79
|
import * as WorkRequestCollection from "./work-request-collection";
|
package/lib/model/index.js
CHANGED
|
@@ -31,7 +31,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.WorkRequestSummary = exports.WorkRequestResourceSubTypeDetail = exports.WorkRequestResource = exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequestCollection = exports.WorkRequest = exports.UpdatePeerDetails = exports.UpdateOsnDetails = exports.UpdateBlockchainPlatformDetails = exports.ScaledPlatformMeteringPreview = exports.ScaledBlockchainPlatformPreview = exports.ScaleStorageDetails = exports.ScaleBlockchainPlatformDetails = exports.ReplicaDetails = exports.PeerSummary = exports.PeerRole = exports.PeerCollection = exports.Peer = exports.OsnSummary = exports.OsnCollection = exports.Osn = exports.OcpuUtilizationInfo = exports.OcpuAllocationNumberParam = exports.ModifyPeerDetails = exports.MetadataDetails = exports.CreatePeerDetails = exports.CreateOsnDetails = exports.CreateBlockchainPlatformDetails = exports.ChangeBlockchainPlatformCompartmentDetails = exports.BlockchainPlatformSummary = exports.BlockchainPlatformComponentDetails = exports.BlockchainPlatformCollection = exports.BlockchainPlatformByHostname = exports.BlockchainPlatform = exports.AvailabilityDomain = void 0;
|
|
34
|
+
exports.WorkRequestSummary = exports.WorkRequestResourceSubTypeDetail = exports.WorkRequestResource = exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequestCollection = exports.WorkRequest = exports.UpgradeBlockchainPlatformDetails = exports.UpdatePeerDetails = exports.UpdateOsnDetails = exports.UpdateBlockchainPlatformDetails = exports.ScaledPlatformMeteringPreview = exports.ScaledBlockchainPlatformPreview = exports.ScaleStorageDetails = exports.ScaleBlockchainPlatformDetails = exports.ReplicaDetails = exports.PeerSummary = exports.PeerRole = exports.PeerCollection = exports.Peer = exports.OsnSummary = exports.OsnCollection = exports.Osn = exports.OcpuUtilizationInfo = exports.OcpuAllocationNumberParam = exports.ModifyPeerDetails = exports.MetadataDetails = exports.CreatePeerDetails = exports.CreateOsnDetails = exports.CreateBlockchainPlatformDetails = exports.ChangeBlockchainPlatformCompartmentDetails = exports.BlockchainPlatformSummary = exports.BlockchainPlatformPatchSummary = exports.BlockchainPlatformPatchCollection = exports.BlockchainPlatformComponentDetails = exports.BlockchainPlatformCollection = exports.BlockchainPlatformByHostname = exports.BlockchainPlatform = exports.AvailabilityDomain = void 0;
|
|
35
35
|
const AvailabilityDomain = __importStar(require("./availability-domain"));
|
|
36
36
|
exports.AvailabilityDomain = AvailabilityDomain.AvailabilityDomain;
|
|
37
37
|
const BlockchainPlatform = __importStar(require("./blockchain-platform"));
|
|
@@ -42,6 +42,10 @@ const BlockchainPlatformCollection = __importStar(require("./blockchain-platform
|
|
|
42
42
|
exports.BlockchainPlatformCollection = BlockchainPlatformCollection.BlockchainPlatformCollection;
|
|
43
43
|
const BlockchainPlatformComponentDetails = __importStar(require("./blockchain-platform-component-details"));
|
|
44
44
|
exports.BlockchainPlatformComponentDetails = BlockchainPlatformComponentDetails.BlockchainPlatformComponentDetails;
|
|
45
|
+
const BlockchainPlatformPatchCollection = __importStar(require("./blockchain-platform-patch-collection"));
|
|
46
|
+
exports.BlockchainPlatformPatchCollection = BlockchainPlatformPatchCollection.BlockchainPlatformPatchCollection;
|
|
47
|
+
const BlockchainPlatformPatchSummary = __importStar(require("./blockchain-platform-patch-summary"));
|
|
48
|
+
exports.BlockchainPlatformPatchSummary = BlockchainPlatformPatchSummary.BlockchainPlatformPatchSummary;
|
|
45
49
|
const BlockchainPlatformSummary = __importStar(require("./blockchain-platform-summary"));
|
|
46
50
|
exports.BlockchainPlatformSummary = BlockchainPlatformSummary.BlockchainPlatformSummary;
|
|
47
51
|
const ChangeBlockchainPlatformCompartmentDetails = __importStar(require("./change-blockchain-platform-compartment-details"));
|
|
@@ -90,6 +94,8 @@ const UpdateOsnDetails = __importStar(require("./update-osn-details"));
|
|
|
90
94
|
exports.UpdateOsnDetails = UpdateOsnDetails.UpdateOsnDetails;
|
|
91
95
|
const UpdatePeerDetails = __importStar(require("./update-peer-details"));
|
|
92
96
|
exports.UpdatePeerDetails = UpdatePeerDetails.UpdatePeerDetails;
|
|
97
|
+
const UpgradeBlockchainPlatformDetails = __importStar(require("./upgrade-blockchain-platform-details"));
|
|
98
|
+
exports.UpgradeBlockchainPlatformDetails = UpgradeBlockchainPlatformDetails.UpgradeBlockchainPlatformDetails;
|
|
93
99
|
const WorkRequest = __importStar(require("./work-request"));
|
|
94
100
|
exports.WorkRequest = WorkRequest.WorkRequest;
|
|
95
101
|
const WorkRequestCollection = __importStar(require("./work-request-collection"));
|
package/lib/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Blockchain Platform Control Plane API
|
|
3
|
+
* Blockchain Platform Control Plane API
|
|
4
|
+
* OpenAPI spec version: 20191010
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Input payload to upgrade the blockchain platform.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export interface UpgradeBlockchainPlatformDetails {
|
|
18
|
+
/**
|
|
19
|
+
* The patch ID corresponding to the version to which platform will be upgraded.
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
22
|
+
"patchId": string;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace UpgradeBlockchainPlatformDetails {
|
|
25
|
+
function getJsonObj(obj: UpgradeBlockchainPlatformDetails): object;
|
|
26
|
+
function getDeserializedJsonObj(obj: UpgradeBlockchainPlatformDetails): object;
|
|
27
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Blockchain Platform Control Plane API
|
|
4
|
+
* Blockchain Platform Control Plane API
|
|
5
|
+
* OpenAPI spec version: 20191010
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.UpgradeBlockchainPlatformDetails = void 0;
|
|
16
|
+
var UpgradeBlockchainPlatformDetails;
|
|
17
|
+
(function (UpgradeBlockchainPlatformDetails) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
UpgradeBlockchainPlatformDetails.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
UpgradeBlockchainPlatformDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(UpgradeBlockchainPlatformDetails = exports.UpgradeBlockchainPlatformDetails || (exports.UpgradeBlockchainPlatformDetails = {}));
|
|
29
|
+
//# sourceMappingURL=upgrade-blockchain-platform-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"upgrade-blockchain-platform-details.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/upgrade-blockchain-platform-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAiBH,IAAiB,gCAAgC,CAWhD;AAXD,WAAiB,gCAAgC;IAC/C,SAAgB,UAAU,CAAC,GAAqC;QAC9D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqC;QAC1E,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,gCAAgC,GAAhC,wCAAgC,KAAhC,wCAAgC,QAWhD"}
|
|
@@ -65,6 +65,7 @@ export declare namespace WorkRequestSummary {
|
|
|
65
65
|
enum OperationType {
|
|
66
66
|
CreatePlatform = "CREATE_PLATFORM",
|
|
67
67
|
UpdatePlatform = "UPDATE_PLATFORM",
|
|
68
|
+
UpgradePlatform = "UPGRADE_PLATFORM",
|
|
68
69
|
DeletePlatform = "DELETE_PLATFORM",
|
|
69
70
|
ScalePlatform = "SCALE_PLATFORM",
|
|
70
71
|
StartPlatform = "START_PLATFORM",
|
|
@@ -39,6 +39,7 @@ var WorkRequestSummary;
|
|
|
39
39
|
(function (OperationType) {
|
|
40
40
|
OperationType["CreatePlatform"] = "CREATE_PLATFORM";
|
|
41
41
|
OperationType["UpdatePlatform"] = "UPDATE_PLATFORM";
|
|
42
|
+
OperationType["UpgradePlatform"] = "UPGRADE_PLATFORM";
|
|
42
43
|
OperationType["DeletePlatform"] = "DELETE_PLATFORM";
|
|
43
44
|
OperationType["ScalePlatform"] = "SCALE_PLATFORM";
|
|
44
45
|
OperationType["StartPlatform"] = "START_PLATFORM";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-request-summary.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/work-request-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAsDlC,IAAiB,kBAAkB,
|
|
1
|
+
{"version":3,"file":"work-request-summary.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/work-request-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAsDlC,IAAiB,kBAAkB,CA8ClC;AA9CD,WAAiB,kBAAkB;IACjC,IAAY,aAeX;IAfD,WAAY,aAAa;QACvB,mDAAkC,CAAA;QAClC,mDAAkC,CAAA;QAClC,qDAAoC,CAAA;QACpC,mDAAkC,CAAA;QAClC,iDAAgC,CAAA;QAChC,iDAAgC,CAAA;QAChC,+CAA8B,CAAA;QAC9B,yDAAwC,CAAA;QACxC,+CAA8B,CAAA;QAC9B;;;WAGG;QACH,+CAA8B,CAAA;IAChC,CAAC,EAfW,aAAa,GAAb,gCAAa,KAAb,gCAAa,QAexB;IAED,SAAgB,UAAU,CAAC,GAAuB;QAChD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACpD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,6BAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuB;QAC5D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAChE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,yCAAsB,yBAarC,CAAA;AACH,CAAC,EA9CgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QA8ClC"}
|
|
@@ -65,6 +65,7 @@ export declare namespace WorkRequest {
|
|
|
65
65
|
enum OperationType {
|
|
66
66
|
CreatePlatform = "CREATE_PLATFORM",
|
|
67
67
|
UpdatePlatform = "UPDATE_PLATFORM",
|
|
68
|
+
UpgradePlatform = "UPGRADE_PLATFORM",
|
|
68
69
|
DeletePlatform = "DELETE_PLATFORM",
|
|
69
70
|
ScalePlatform = "SCALE_PLATFORM",
|
|
70
71
|
StartPlatform = "START_PLATFORM",
|
|
@@ -39,6 +39,7 @@ var WorkRequest;
|
|
|
39
39
|
(function (OperationType) {
|
|
40
40
|
OperationType["CreatePlatform"] = "CREATE_PLATFORM";
|
|
41
41
|
OperationType["UpdatePlatform"] = "UPDATE_PLATFORM";
|
|
42
|
+
OperationType["UpgradePlatform"] = "UPGRADE_PLATFORM";
|
|
42
43
|
OperationType["DeletePlatform"] = "DELETE_PLATFORM";
|
|
43
44
|
OperationType["ScalePlatform"] = "SCALE_PLATFORM";
|
|
44
45
|
OperationType["StartPlatform"] = "START_PLATFORM";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-request.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/work-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAsDlC,IAAiB,WAAW,
|
|
1
|
+
{"version":3,"file":"work-request.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/model/work-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAsDlC,IAAiB,WAAW,CA4D3B;AA5DD,WAAiB,WAAW;IAC1B,IAAY,aAeX;IAfD,WAAY,aAAa;QACvB,mDAAkC,CAAA;QAClC,mDAAkC,CAAA;QAClC,qDAAoC,CAAA;QACpC,mDAAkC,CAAA;QAClC,iDAAgC,CAAA;QAChC,iDAAgC,CAAA;QAChC,+CAA8B,CAAA;QAC9B,yDAAwC,CAAA;QACxC,+CAA8B,CAAA;QAC9B;;;WAGG;QACH,+CAA8B,CAAA;IAChC,CAAC,EAfW,aAAa,GAAb,yBAAa,KAAb,yBAAa,QAexB;IAED,IAAY,MAYX;IAZD,WAAY,MAAM;QAChB,+BAAqB,CAAA;QACrB,oCAA0B,CAAA;QAC1B,2BAAiB,CAAA;QACjB,iCAAuB,CAAA;QACvB,iCAAuB,CAAA;QACvB,+BAAqB,CAAA;QACrB;;;WAGG;QACH,wCAA8B,CAAA;IAChC,CAAC,EAZW,MAAM,GAAN,kBAAM,KAAN,kBAAM,QAYjB;IAED,SAAgB,UAAU,CAAC,GAAgB;QACzC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACpD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,sBAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgB;QACrD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAChE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,kCAAsB,yBAarC,CAAA;AACH,CAAC,EA5DgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QA4D3B"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/ChangeBlockchainPlatformCompartment.ts.html |here} to see how to use ChangeBlockchainPlatformCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeBlockchainPlatformCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/CreateBlockchainPlatform.ts.html |here} to see how to use CreateBlockchainPlatformRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateBlockchainPlatformRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/CreateOsn.ts.html |here} to see how to use CreateOsnRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateOsnRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/CreatePeer.ts.html |here} to see how to use CreatePeerRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreatePeerRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/DeleteBlockchainPlatform.ts.html |here} to see how to use DeleteBlockchainPlatformRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteBlockchainPlatformRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -32,4 +32,13 @@ export interface DeleteBlockchainPlatformRequest extends common.BaseRequest {
|
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
"ifMatch"?: string;
|
|
35
|
+
/**
|
|
36
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
37
|
+
* server error without risk of executing that same action again. Retry tokens expire after 24
|
|
38
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
39
|
+
* has been deleted and purged from the system, then a retry of the original creation request
|
|
40
|
+
* might be rejected.
|
|
41
|
+
*
|
|
42
|
+
*/
|
|
43
|
+
"opcRetryToken"?: string;
|
|
35
44
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/DeleteOsn.ts.html |here} to see how to use DeleteOsnRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteOsnRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/DeletePeer.ts.html |here} to see how to use DeletePeerRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeletePeerRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -36,4 +36,13 @@ export interface DeletePeerRequest extends common.BaseRequest {
|
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
38
38
|
"ifMatch"?: string;
|
|
39
|
+
/**
|
|
40
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
41
|
+
* server error without risk of executing that same action again. Retry tokens expire after 24
|
|
42
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
43
|
+
* has been deleted and purged from the system, then a retry of the original creation request
|
|
44
|
+
* might be rejected.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
"opcRetryToken"?: string;
|
|
39
48
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/GetBlockchainPlatform.ts.html |here} to see how to use GetBlockchainPlatformRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetBlockchainPlatformRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/GetOsn.ts.html |here} to see how to use GetOsnRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetOsnRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/GetPeer.ts.html |here} to see how to use GetPeerRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetPeerRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/lib/request/index.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ import * as GetPeerRequest from "./get-peer-request";
|
|
|
34
34
|
export import GetPeerRequest = GetPeerRequest.GetPeerRequest;
|
|
35
35
|
import * as GetWorkRequestRequest from "./get-work-request-request";
|
|
36
36
|
export import GetWorkRequestRequest = GetWorkRequestRequest.GetWorkRequestRequest;
|
|
37
|
+
import * as ListBlockchainPlatformPatchesRequest from "./list-blockchain-platform-patches-request";
|
|
38
|
+
export import ListBlockchainPlatformPatchesRequest = ListBlockchainPlatformPatchesRequest.ListBlockchainPlatformPatchesRequest;
|
|
37
39
|
import * as ListBlockchainPlatformsRequest from "./list-blockchain-platforms-request";
|
|
38
40
|
export import ListBlockchainPlatformsRequest = ListBlockchainPlatformsRequest.ListBlockchainPlatformsRequest;
|
|
39
41
|
import * as ListOsnsRequest from "./list-osns-request";
|
|
@@ -60,3 +62,5 @@ import * as UpdateOsnRequest from "./update-osn-request";
|
|
|
60
62
|
export import UpdateOsnRequest = UpdateOsnRequest.UpdateOsnRequest;
|
|
61
63
|
import * as UpdatePeerRequest from "./update-peer-request";
|
|
62
64
|
export import UpdatePeerRequest = UpdatePeerRequest.UpdatePeerRequest;
|
|
65
|
+
import * as UpgradeBlockchainPlatformRequest from "./upgrade-blockchain-platform-request";
|
|
66
|
+
export import UpgradeBlockchainPlatformRequest = UpgradeBlockchainPlatformRequest.UpgradeBlockchainPlatformRequest;
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AA4BH,oGAAsF;AACxE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AAKnE,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20191010
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
import common = require("oci-common");
|
|
14
|
+
/**
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/ListBlockchainPlatformPatches.ts.html |here} to see how to use ListBlockchainPlatformPatchesRequest.
|
|
16
|
+
*/
|
|
17
|
+
export interface ListBlockchainPlatformPatchesRequest extends common.BaseRequest {
|
|
18
|
+
/**
|
|
19
|
+
* Unique service identifier.
|
|
20
|
+
*/
|
|
21
|
+
"blockchainPlatformId": string;
|
|
22
|
+
/**
|
|
23
|
+
* The page at which to start retrieving results.
|
|
24
|
+
*/
|
|
25
|
+
"page"?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The maximum number of items to return.
|
|
28
|
+
*/
|
|
29
|
+
"limit"?: number;
|
|
30
|
+
/**
|
|
31
|
+
* The client request ID for tracing.
|
|
32
|
+
*/
|
|
33
|
+
"opcRequestId"?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20191010
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=list-blockchain-platform-patches-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-blockchain-platform-patches-request.js","sourceRoot":"","sources":["../../../../../lib/blockchain/lib/request/list-blockchain-platform-patches-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.0/blockchain/ListBlockchainPlatforms.ts.html |here} to see how to use ListBlockchainPlatformsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListBlockchainPlatformsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|