oci-blockchain 2.7.0 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/lib/client.d.ts +44 -26
  2. package/lib/client.js +155 -29
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/blockchain-platform-patch-collection.d.ts +26 -0
  5. package/lib/model/blockchain-platform-patch-collection.js +61 -0
  6. package/lib/model/blockchain-platform-patch-collection.js.map +1 -0
  7. package/lib/model/blockchain-platform-patch-summary.d.ts +37 -0
  8. package/lib/model/blockchain-platform-patch-summary.js +29 -0
  9. package/lib/model/blockchain-platform-patch-summary.js.map +1 -0
  10. package/lib/model/blockchain-platform.d.ts +4 -0
  11. package/lib/model/blockchain-platform.js.map +1 -1
  12. package/lib/model/create-blockchain-platform-details.d.ts +4 -0
  13. package/lib/model/create-blockchain-platform-details.js.map +1 -1
  14. package/lib/model/index.d.ts +6 -0
  15. package/lib/model/index.js +7 -1
  16. package/lib/model/index.js.map +1 -1
  17. package/lib/model/upgrade-blockchain-platform-details.d.ts +27 -0
  18. package/lib/model/upgrade-blockchain-platform-details.js +29 -0
  19. package/lib/model/upgrade-blockchain-platform-details.js.map +1 -0
  20. package/lib/model/work-request-summary.d.ts +1 -0
  21. package/lib/model/work-request-summary.js +1 -0
  22. package/lib/model/work-request-summary.js.map +1 -1
  23. package/lib/model/work-request.d.ts +1 -0
  24. package/lib/model/work-request.js +1 -0
  25. package/lib/model/work-request.js.map +1 -1
  26. package/lib/request/change-blockchain-platform-compartment-request.d.ts +1 -1
  27. package/lib/request/create-blockchain-platform-request.d.ts +1 -1
  28. package/lib/request/create-osn-request.d.ts +1 -1
  29. package/lib/request/create-peer-request.d.ts +1 -1
  30. package/lib/request/delete-blockchain-platform-request.d.ts +10 -1
  31. package/lib/request/delete-osn-request.d.ts +1 -1
  32. package/lib/request/delete-peer-request.d.ts +10 -1
  33. package/lib/request/delete-work-request-request.d.ts +1 -1
  34. package/lib/request/get-blockchain-platform-request.d.ts +1 -1
  35. package/lib/request/get-osn-request.d.ts +1 -1
  36. package/lib/request/get-peer-request.d.ts +1 -1
  37. package/lib/request/get-work-request-request.d.ts +1 -1
  38. package/lib/request/index.d.ts +4 -0
  39. package/lib/request/index.js.map +1 -1
  40. package/lib/request/list-blockchain-platform-patches-request.d.ts +34 -0
  41. package/lib/request/list-blockchain-platform-patches-request.js +15 -0
  42. package/lib/request/list-blockchain-platform-patches-request.js.map +1 -0
  43. package/lib/request/list-blockchain-platforms-request.d.ts +1 -1
  44. package/lib/request/list-osns-request.d.ts +1 -1
  45. package/lib/request/list-peers-request.d.ts +1 -1
  46. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  47. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  48. package/lib/request/list-work-requests-request.d.ts +1 -1
  49. package/lib/request/preview-scale-blockchain-platform-request.d.ts +1 -1
  50. package/lib/request/scale-blockchain-platform-request.d.ts +1 -1
  51. package/lib/request/start-blockchain-platform-request.d.ts +1 -1
  52. package/lib/request/stop-blockchain-platform-request.d.ts +1 -1
  53. package/lib/request/update-blockchain-platform-request.d.ts +1 -1
  54. package/lib/request/update-osn-request.d.ts +1 -1
  55. package/lib/request/update-peer-request.d.ts +1 -1
  56. package/lib/request/upgrade-blockchain-platform-request.d.ts +49 -0
  57. package/lib/request/upgrade-blockchain-platform-request.js +15 -0
  58. package/lib/request/upgrade-blockchain-platform-request.js.map +1 -0
  59. package/lib/response/index.d.ts +4 -0
  60. package/lib/response/list-blockchain-platform-patches-response.d.ts +32 -0
  61. package/lib/response/list-blockchain-platform-patches-response.js +15 -0
  62. package/lib/response/list-blockchain-platform-patches-response.js.map +1 -0
  63. package/lib/response/upgrade-blockchain-platform-response.d.ts +25 -0
  64. package/lib/response/upgrade-blockchain-platform-response.js +15 -0
  65. package/lib/response/upgrade-blockchain-platform-response.js.map +1 -0
  66. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -17,7 +17,7 @@ import { BlockchainPlatformWaiter } from "./blockchainplatform-waiter";
17
17
  export declare enum BlockchainPlatformApiKeys {
18
18
  }
19
19
  /**
20
- * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
20
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
21
21
  */
22
22
  export declare class BlockchainPlatformClient {
23
23
  protected static serviceEndpointTemplate: string;
@@ -72,7 +72,7 @@ export declare class BlockchainPlatformClient {
72
72
  * @param ChangeBlockchainPlatformCompartmentRequest
73
73
  * @return ChangeBlockchainPlatformCompartmentResponse
74
74
  * @throws OciError when an error occurs
75
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ChangeBlockchainPlatformCompartment.ts.html |here} to see how to use ChangeBlockchainPlatformCompartment API.
75
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ChangeBlockchainPlatformCompartment.ts.html |here} to see how to use ChangeBlockchainPlatformCompartment API.
76
76
  */
77
77
  changeBlockchainPlatformCompartment(changeBlockchainPlatformCompartmentRequest: requests.ChangeBlockchainPlatformCompartmentRequest): Promise<responses.ChangeBlockchainPlatformCompartmentResponse>;
78
78
  /**
@@ -82,7 +82,7 @@ export declare class BlockchainPlatformClient {
82
82
  * @param CreateBlockchainPlatformRequest
83
83
  * @return CreateBlockchainPlatformResponse
84
84
  * @throws OciError when an error occurs
85
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/CreateBlockchainPlatform.ts.html |here} to see how to use CreateBlockchainPlatform API.
85
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/CreateBlockchainPlatform.ts.html |here} to see how to use CreateBlockchainPlatform API.
86
86
  */
87
87
  createBlockchainPlatform(createBlockchainPlatformRequest: requests.CreateBlockchainPlatformRequest): Promise<responses.CreateBlockchainPlatformResponse>;
88
88
  /**
@@ -91,7 +91,7 @@ export declare class BlockchainPlatformClient {
91
91
  * @param CreateOsnRequest
92
92
  * @return CreateOsnResponse
93
93
  * @throws OciError when an error occurs
94
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/CreateOsn.ts.html |here} to see how to use CreateOsn API.
94
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/CreateOsn.ts.html |here} to see how to use CreateOsn API.
95
95
  */
96
96
  createOsn(createOsnRequest: requests.CreateOsnRequest): Promise<responses.CreateOsnResponse>;
97
97
  /**
@@ -100,7 +100,7 @@ export declare class BlockchainPlatformClient {
100
100
  * @param CreatePeerRequest
101
101
  * @return CreatePeerResponse
102
102
  * @throws OciError when an error occurs
103
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/CreatePeer.ts.html |here} to see how to use CreatePeer API.
103
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/CreatePeer.ts.html |here} to see how to use CreatePeer API.
104
104
  */
105
105
  createPeer(createPeerRequest: requests.CreatePeerRequest): Promise<responses.CreatePeerResponse>;
106
106
  /**
@@ -109,7 +109,7 @@ export declare class BlockchainPlatformClient {
109
109
  * @param DeleteBlockchainPlatformRequest
110
110
  * @return DeleteBlockchainPlatformResponse
111
111
  * @throws OciError when an error occurs
112
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/DeleteBlockchainPlatform.ts.html |here} to see how to use DeleteBlockchainPlatform API.
112
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/DeleteBlockchainPlatform.ts.html |here} to see how to use DeleteBlockchainPlatform API.
113
113
  */
114
114
  deleteBlockchainPlatform(deleteBlockchainPlatformRequest: requests.DeleteBlockchainPlatformRequest): Promise<responses.DeleteBlockchainPlatformResponse>;
115
115
  /**
@@ -118,7 +118,7 @@ export declare class BlockchainPlatformClient {
118
118
  * @param DeleteOsnRequest
119
119
  * @return DeleteOsnResponse
120
120
  * @throws OciError when an error occurs
121
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/DeleteOsn.ts.html |here} to see how to use DeleteOsn API.
121
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/DeleteOsn.ts.html |here} to see how to use DeleteOsn API.
122
122
  */
123
123
  deleteOsn(deleteOsnRequest: requests.DeleteOsnRequest): Promise<responses.DeleteOsnResponse>;
124
124
  /**
@@ -127,7 +127,7 @@ export declare class BlockchainPlatformClient {
127
127
  * @param DeletePeerRequest
128
128
  * @return DeletePeerResponse
129
129
  * @throws OciError when an error occurs
130
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/DeletePeer.ts.html |here} to see how to use DeletePeer API.
130
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/DeletePeer.ts.html |here} to see how to use DeletePeer API.
131
131
  */
132
132
  deletePeer(deletePeerRequest: requests.DeletePeerRequest): Promise<responses.DeletePeerResponse>;
133
133
  /**
@@ -136,7 +136,7 @@ export declare class BlockchainPlatformClient {
136
136
  * @param DeleteWorkRequestRequest
137
137
  * @return DeleteWorkRequestResponse
138
138
  * @throws OciError when an error occurs
139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
139
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
140
140
  */
141
141
  deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
142
142
  /**
@@ -145,7 +145,7 @@ export declare class BlockchainPlatformClient {
145
145
  * @param GetBlockchainPlatformRequest
146
146
  * @return GetBlockchainPlatformResponse
147
147
  * @throws OciError when an error occurs
148
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/GetBlockchainPlatform.ts.html |here} to see how to use GetBlockchainPlatform API.
148
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/GetBlockchainPlatform.ts.html |here} to see how to use GetBlockchainPlatform API.
149
149
  */
150
150
  getBlockchainPlatform(getBlockchainPlatformRequest: requests.GetBlockchainPlatformRequest): Promise<responses.GetBlockchainPlatformResponse>;
151
151
  /**
@@ -154,7 +154,7 @@ export declare class BlockchainPlatformClient {
154
154
  * @param GetOsnRequest
155
155
  * @return GetOsnResponse
156
156
  * @throws OciError when an error occurs
157
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/GetOsn.ts.html |here} to see how to use GetOsn API.
157
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/GetOsn.ts.html |here} to see how to use GetOsn API.
158
158
  */
159
159
  getOsn(getOsnRequest: requests.GetOsnRequest): Promise<responses.GetOsnResponse>;
160
160
  /**
@@ -163,7 +163,7 @@ export declare class BlockchainPlatformClient {
163
163
  * @param GetPeerRequest
164
164
  * @return GetPeerResponse
165
165
  * @throws OciError when an error occurs
166
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/GetPeer.ts.html |here} to see how to use GetPeer API.
166
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/GetPeer.ts.html |here} to see how to use GetPeer API.
167
167
  */
168
168
  getPeer(getPeerRequest: requests.GetPeerRequest): Promise<responses.GetPeerResponse>;
169
169
  /**
@@ -172,16 +172,25 @@ export declare class BlockchainPlatformClient {
172
172
  * @param GetWorkRequestRequest
173
173
  * @return GetWorkRequestResponse
174
174
  * @throws OciError when an error occurs
175
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
175
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
176
176
  */
177
177
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
178
+ /**
179
+ * List Blockchain Platform Patches
180
+ * This operation does not retry by default if the user has not defined a retry configuration.
181
+ * @param ListBlockchainPlatformPatchesRequest
182
+ * @return ListBlockchainPlatformPatchesResponse
183
+ * @throws OciError when an error occurs
184
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ListBlockchainPlatformPatches.ts.html |here} to see how to use ListBlockchainPlatformPatches API.
185
+ */
186
+ listBlockchainPlatformPatches(listBlockchainPlatformPatchesRequest: requests.ListBlockchainPlatformPatchesRequest): Promise<responses.ListBlockchainPlatformPatchesResponse>;
178
187
  /**
179
188
  * Returns a list Blockchain Platform Instances in a compartment
180
189
  * This operation does not retry by default if the user has not defined a retry configuration.
181
190
  * @param ListBlockchainPlatformsRequest
182
191
  * @return ListBlockchainPlatformsResponse
183
192
  * @throws OciError when an error occurs
184
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ListBlockchainPlatforms.ts.html |here} to see how to use ListBlockchainPlatforms API.
193
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ListBlockchainPlatforms.ts.html |here} to see how to use ListBlockchainPlatforms API.
185
194
  */
186
195
  listBlockchainPlatforms(listBlockchainPlatformsRequest: requests.ListBlockchainPlatformsRequest): Promise<responses.ListBlockchainPlatformsResponse>;
187
196
  /**
@@ -190,7 +199,7 @@ export declare class BlockchainPlatformClient {
190
199
  * @param ListOsnsRequest
191
200
  * @return ListOsnsResponse
192
201
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ListOsns.ts.html |here} to see how to use ListOsns API.
202
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ListOsns.ts.html |here} to see how to use ListOsns API.
194
203
  */
195
204
  listOsns(listOsnsRequest: requests.ListOsnsRequest): Promise<responses.ListOsnsResponse>;
196
205
  /**
@@ -199,7 +208,7 @@ export declare class BlockchainPlatformClient {
199
208
  * @param ListPeersRequest
200
209
  * @return ListPeersResponse
201
210
  * @throws OciError when an error occurs
202
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ListPeers.ts.html |here} to see how to use ListPeers API.
211
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ListPeers.ts.html |here} to see how to use ListPeers API.
203
212
  */
204
213
  listPeers(listPeersRequest: requests.ListPeersRequest): Promise<responses.ListPeersResponse>;
205
214
  /**
@@ -209,7 +218,7 @@ export declare class BlockchainPlatformClient {
209
218
  * @param ListWorkRequestErrorsRequest
210
219
  * @return ListWorkRequestErrorsResponse
211
220
  * @throws OciError when an error occurs
212
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
221
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
213
222
  */
214
223
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
215
224
  /**
@@ -219,7 +228,7 @@ export declare class BlockchainPlatformClient {
219
228
  * @param ListWorkRequestLogsRequest
220
229
  * @return ListWorkRequestLogsResponse
221
230
  * @throws OciError when an error occurs
222
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
231
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
223
232
  */
224
233
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
225
234
  /**
@@ -229,7 +238,7 @@ export declare class BlockchainPlatformClient {
229
238
  * @param ListWorkRequestsRequest
230
239
  * @return ListWorkRequestsResponse
231
240
  * @throws OciError when an error occurs
232
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
241
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
233
242
  */
234
243
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
235
244
  /**
@@ -238,7 +247,7 @@ export declare class BlockchainPlatformClient {
238
247
  * @param PreviewScaleBlockchainPlatformRequest
239
248
  * @return PreviewScaleBlockchainPlatformResponse
240
249
  * @throws OciError when an error occurs
241
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/PreviewScaleBlockchainPlatform.ts.html |here} to see how to use PreviewScaleBlockchainPlatform API.
250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/PreviewScaleBlockchainPlatform.ts.html |here} to see how to use PreviewScaleBlockchainPlatform API.
242
251
  */
243
252
  previewScaleBlockchainPlatform(previewScaleBlockchainPlatformRequest: requests.PreviewScaleBlockchainPlatformRequest): Promise<responses.PreviewScaleBlockchainPlatformResponse>;
244
253
  /**
@@ -247,7 +256,7 @@ export declare class BlockchainPlatformClient {
247
256
  * @param ScaleBlockchainPlatformRequest
248
257
  * @return ScaleBlockchainPlatformResponse
249
258
  * @throws OciError when an error occurs
250
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/ScaleBlockchainPlatform.ts.html |here} to see how to use ScaleBlockchainPlatform API.
259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/ScaleBlockchainPlatform.ts.html |here} to see how to use ScaleBlockchainPlatform API.
251
260
  */
252
261
  scaleBlockchainPlatform(scaleBlockchainPlatformRequest: requests.ScaleBlockchainPlatformRequest): Promise<responses.ScaleBlockchainPlatformResponse>;
253
262
  /**
@@ -256,7 +265,7 @@ export declare class BlockchainPlatformClient {
256
265
  * @param StartBlockchainPlatformRequest
257
266
  * @return StartBlockchainPlatformResponse
258
267
  * @throws OciError when an error occurs
259
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/StartBlockchainPlatform.ts.html |here} to see how to use StartBlockchainPlatform API.
268
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/StartBlockchainPlatform.ts.html |here} to see how to use StartBlockchainPlatform API.
260
269
  */
261
270
  startBlockchainPlatform(startBlockchainPlatformRequest: requests.StartBlockchainPlatformRequest): Promise<responses.StartBlockchainPlatformResponse>;
262
271
  /**
@@ -265,7 +274,7 @@ export declare class BlockchainPlatformClient {
265
274
  * @param StopBlockchainPlatformRequest
266
275
  * @return StopBlockchainPlatformResponse
267
276
  * @throws OciError when an error occurs
268
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/StopBlockchainPlatform.ts.html |here} to see how to use StopBlockchainPlatform API.
277
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/StopBlockchainPlatform.ts.html |here} to see how to use StopBlockchainPlatform API.
269
278
  */
270
279
  stopBlockchainPlatform(stopBlockchainPlatformRequest: requests.StopBlockchainPlatformRequest): Promise<responses.StopBlockchainPlatformResponse>;
271
280
  /**
@@ -274,7 +283,7 @@ export declare class BlockchainPlatformClient {
274
283
  * @param UpdateBlockchainPlatformRequest
275
284
  * @return UpdateBlockchainPlatformResponse
276
285
  * @throws OciError when an error occurs
277
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/UpdateBlockchainPlatform.ts.html |here} to see how to use UpdateBlockchainPlatform API.
286
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/UpdateBlockchainPlatform.ts.html |here} to see how to use UpdateBlockchainPlatform API.
278
287
  */
279
288
  updateBlockchainPlatform(updateBlockchainPlatformRequest: requests.UpdateBlockchainPlatformRequest): Promise<responses.UpdateBlockchainPlatformResponse>;
280
289
  /**
@@ -283,7 +292,7 @@ export declare class BlockchainPlatformClient {
283
292
  * @param UpdateOsnRequest
284
293
  * @return UpdateOsnResponse
285
294
  * @throws OciError when an error occurs
286
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/UpdateOsn.ts.html |here} to see how to use UpdateOsn API.
295
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/UpdateOsn.ts.html |here} to see how to use UpdateOsn API.
287
296
  */
288
297
  updateOsn(updateOsnRequest: requests.UpdateOsnRequest): Promise<responses.UpdateOsnResponse>;
289
298
  /**
@@ -292,7 +301,16 @@ export declare class BlockchainPlatformClient {
292
301
  * @param UpdatePeerRequest
293
302
  * @return UpdatePeerResponse
294
303
  * @throws OciError when an error occurs
295
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/blockchain/UpdatePeer.ts.html |here} to see how to use UpdatePeer API.
304
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/UpdatePeer.ts.html |here} to see how to use UpdatePeer API.
296
305
  */
297
306
  updatePeer(updatePeerRequest: requests.UpdatePeerRequest): Promise<responses.UpdatePeerResponse>;
307
+ /**
308
+ * Upgrade a Blockchain Platform version
309
+ * This operation does not retry by default if the user has not defined a retry configuration.
310
+ * @param UpgradeBlockchainPlatformRequest
311
+ * @return UpgradeBlockchainPlatformResponse
312
+ * @throws OciError when an error occurs
313
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/blockchain/UpgradeBlockchainPlatform.ts.html |here} to see how to use UpgradeBlockchainPlatform API.
314
+ */
315
+ upgradeBlockchainPlatform(upgradeBlockchainPlatformRequest: requests.UpgradeBlockchainPlatformRequest): Promise<responses.UpgradeBlockchainPlatformResponse>;
298
316
  }