oci-blockchain 2.79.1 → 2.80.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 (31) hide show
  1. package/lib/client.d.ts +29 -28
  2. package/lib/client.js +143 -57
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-blockchain-platform-compartment-request.d.ts +1 -1
  5. package/lib/request/create-blockchain-platform-request.d.ts +1 -1
  6. package/lib/request/create-osn-request.d.ts +1 -1
  7. package/lib/request/create-peer-request.d.ts +1 -1
  8. package/lib/request/delete-blockchain-platform-request.d.ts +1 -1
  9. package/lib/request/delete-osn-request.d.ts +1 -1
  10. package/lib/request/delete-peer-request.d.ts +1 -1
  11. package/lib/request/delete-work-request-request.d.ts +1 -1
  12. package/lib/request/get-blockchain-platform-request.d.ts +1 -1
  13. package/lib/request/get-osn-request.d.ts +1 -1
  14. package/lib/request/get-peer-request.d.ts +1 -1
  15. package/lib/request/get-work-request-request.d.ts +1 -1
  16. package/lib/request/list-blockchain-platform-patches-request.d.ts +1 -1
  17. package/lib/request/list-blockchain-platforms-request.d.ts +1 -1
  18. package/lib/request/list-osns-request.d.ts +1 -1
  19. package/lib/request/list-peers-request.d.ts +1 -1
  20. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  21. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  22. package/lib/request/list-work-requests-request.d.ts +1 -1
  23. package/lib/request/preview-scale-blockchain-platform-request.d.ts +1 -1
  24. package/lib/request/scale-blockchain-platform-request.d.ts +1 -1
  25. package/lib/request/start-blockchain-platform-request.d.ts +1 -1
  26. package/lib/request/stop-blockchain-platform-request.d.ts +1 -1
  27. package/lib/request/update-blockchain-platform-request.d.ts +1 -1
  28. package/lib/request/update-osn-request.d.ts +1 -1
  29. package/lib/request/update-peer-request.d.ts +1 -1
  30. package/lib/request/upgrade-blockchain-platform-request.d.ts +1 -1
  31. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -23,7 +23,7 @@ export declare enum BlockchainPlatformApiKeys {
23
23
  export declare class BlockchainPlatformClient {
24
24
  protected static serviceEndpointTemplate: string;
25
25
  protected static endpointServiceName: string;
26
- protected "_realmSpecificEndpointTemplateEnabled": boolean;
26
+ protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined;
27
27
  protected "_endpoint": string;
28
28
  protected "_defaultHeaders": any;
29
29
  protected "_waiters": BlockchainPlatformWaiter;
@@ -46,6 +46,7 @@ export declare class BlockchainPlatformClient {
46
46
  * @param endpoint The endpoint of the service.
47
47
  */
48
48
  set endpoint(endpoint: string);
49
+ get logger(): import("oci-common/lib/log").Logger;
49
50
  /**
50
51
  * Determines whether realm specific endpoint should be used or not.
51
52
  * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
@@ -90,7 +91,7 @@ export declare class BlockchainPlatformClient {
90
91
  * @param ChangeBlockchainPlatformCompartmentRequest
91
92
  * @return ChangeBlockchainPlatformCompartmentResponse
92
93
  * @throws OciError when an error occurs
93
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ChangeBlockchainPlatformCompartment.ts.html |here} to see how to use ChangeBlockchainPlatformCompartment API.
94
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ChangeBlockchainPlatformCompartment.ts.html |here} to see how to use ChangeBlockchainPlatformCompartment API.
94
95
  */
95
96
  changeBlockchainPlatformCompartment(changeBlockchainPlatformCompartmentRequest: requests.ChangeBlockchainPlatformCompartmentRequest): Promise<responses.ChangeBlockchainPlatformCompartmentResponse>;
96
97
  /**
@@ -100,7 +101,7 @@ export declare class BlockchainPlatformClient {
100
101
  * @param CreateBlockchainPlatformRequest
101
102
  * @return CreateBlockchainPlatformResponse
102
103
  * @throws OciError when an error occurs
103
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/CreateBlockchainPlatform.ts.html |here} to see how to use CreateBlockchainPlatform API.
104
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/CreateBlockchainPlatform.ts.html |here} to see how to use CreateBlockchainPlatform API.
104
105
  */
105
106
  createBlockchainPlatform(createBlockchainPlatformRequest: requests.CreateBlockchainPlatformRequest): Promise<responses.CreateBlockchainPlatformResponse>;
106
107
  /**
@@ -109,7 +110,7 @@ export declare class BlockchainPlatformClient {
109
110
  * @param CreateOsnRequest
110
111
  * @return CreateOsnResponse
111
112
  * @throws OciError when an error occurs
112
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/CreateOsn.ts.html |here} to see how to use CreateOsn API.
113
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/CreateOsn.ts.html |here} to see how to use CreateOsn API.
113
114
  */
114
115
  createOsn(createOsnRequest: requests.CreateOsnRequest): Promise<responses.CreateOsnResponse>;
115
116
  /**
@@ -118,7 +119,7 @@ export declare class BlockchainPlatformClient {
118
119
  * @param CreatePeerRequest
119
120
  * @return CreatePeerResponse
120
121
  * @throws OciError when an error occurs
121
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/CreatePeer.ts.html |here} to see how to use CreatePeer API.
122
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/CreatePeer.ts.html |here} to see how to use CreatePeer API.
122
123
  */
123
124
  createPeer(createPeerRequest: requests.CreatePeerRequest): Promise<responses.CreatePeerResponse>;
124
125
  /**
@@ -127,7 +128,7 @@ export declare class BlockchainPlatformClient {
127
128
  * @param DeleteBlockchainPlatformRequest
128
129
  * @return DeleteBlockchainPlatformResponse
129
130
  * @throws OciError when an error occurs
130
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/DeleteBlockchainPlatform.ts.html |here} to see how to use DeleteBlockchainPlatform API.
131
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/DeleteBlockchainPlatform.ts.html |here} to see how to use DeleteBlockchainPlatform API.
131
132
  */
132
133
  deleteBlockchainPlatform(deleteBlockchainPlatformRequest: requests.DeleteBlockchainPlatformRequest): Promise<responses.DeleteBlockchainPlatformResponse>;
133
134
  /**
@@ -136,7 +137,7 @@ export declare class BlockchainPlatformClient {
136
137
  * @param DeleteOsnRequest
137
138
  * @return DeleteOsnResponse
138
139
  * @throws OciError when an error occurs
139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/DeleteOsn.ts.html |here} to see how to use DeleteOsn API.
140
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/DeleteOsn.ts.html |here} to see how to use DeleteOsn API.
140
141
  */
141
142
  deleteOsn(deleteOsnRequest: requests.DeleteOsnRequest): Promise<responses.DeleteOsnResponse>;
142
143
  /**
@@ -145,7 +146,7 @@ export declare class BlockchainPlatformClient {
145
146
  * @param DeletePeerRequest
146
147
  * @return DeletePeerResponse
147
148
  * @throws OciError when an error occurs
148
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/DeletePeer.ts.html |here} to see how to use DeletePeer API.
149
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/DeletePeer.ts.html |here} to see how to use DeletePeer API.
149
150
  */
150
151
  deletePeer(deletePeerRequest: requests.DeletePeerRequest): Promise<responses.DeletePeerResponse>;
151
152
  /**
@@ -154,7 +155,7 @@ export declare class BlockchainPlatformClient {
154
155
  * @param DeleteWorkRequestRequest
155
156
  * @return DeleteWorkRequestResponse
156
157
  * @throws OciError when an error occurs
157
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
158
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
158
159
  */
159
160
  deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
160
161
  /**
@@ -163,7 +164,7 @@ export declare class BlockchainPlatformClient {
163
164
  * @param GetBlockchainPlatformRequest
164
165
  * @return GetBlockchainPlatformResponse
165
166
  * @throws OciError when an error occurs
166
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/GetBlockchainPlatform.ts.html |here} to see how to use GetBlockchainPlatform API.
167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/GetBlockchainPlatform.ts.html |here} to see how to use GetBlockchainPlatform API.
167
168
  */
168
169
  getBlockchainPlatform(getBlockchainPlatformRequest: requests.GetBlockchainPlatformRequest): Promise<responses.GetBlockchainPlatformResponse>;
169
170
  /**
@@ -172,7 +173,7 @@ export declare class BlockchainPlatformClient {
172
173
  * @param GetOsnRequest
173
174
  * @return GetOsnResponse
174
175
  * @throws OciError when an error occurs
175
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/GetOsn.ts.html |here} to see how to use GetOsn API.
176
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/GetOsn.ts.html |here} to see how to use GetOsn API.
176
177
  */
177
178
  getOsn(getOsnRequest: requests.GetOsnRequest): Promise<responses.GetOsnResponse>;
178
179
  /**
@@ -181,7 +182,7 @@ export declare class BlockchainPlatformClient {
181
182
  * @param GetPeerRequest
182
183
  * @return GetPeerResponse
183
184
  * @throws OciError when an error occurs
184
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/GetPeer.ts.html |here} to see how to use GetPeer API.
185
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/GetPeer.ts.html |here} to see how to use GetPeer API.
185
186
  */
186
187
  getPeer(getPeerRequest: requests.GetPeerRequest): Promise<responses.GetPeerResponse>;
187
188
  /**
@@ -190,7 +191,7 @@ export declare class BlockchainPlatformClient {
190
191
  * @param GetWorkRequestRequest
191
192
  * @return GetWorkRequestResponse
192
193
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
194
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
194
195
  */
195
196
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
196
197
  /**
@@ -199,7 +200,7 @@ export declare class BlockchainPlatformClient {
199
200
  * @param ListBlockchainPlatformPatchesRequest
200
201
  * @return ListBlockchainPlatformPatchesResponse
201
202
  * @throws OciError when an error occurs
202
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ListBlockchainPlatformPatches.ts.html |here} to see how to use ListBlockchainPlatformPatches API.
203
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ListBlockchainPlatformPatches.ts.html |here} to see how to use ListBlockchainPlatformPatches API.
203
204
  */
204
205
  listBlockchainPlatformPatches(listBlockchainPlatformPatchesRequest: requests.ListBlockchainPlatformPatchesRequest): Promise<responses.ListBlockchainPlatformPatchesResponse>;
205
206
  /**
@@ -208,7 +209,7 @@ export declare class BlockchainPlatformClient {
208
209
  * @param ListBlockchainPlatformsRequest
209
210
  * @return ListBlockchainPlatformsResponse
210
211
  * @throws OciError when an error occurs
211
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ListBlockchainPlatforms.ts.html |here} to see how to use ListBlockchainPlatforms API.
212
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ListBlockchainPlatforms.ts.html |here} to see how to use ListBlockchainPlatforms API.
212
213
  */
213
214
  listBlockchainPlatforms(listBlockchainPlatformsRequest: requests.ListBlockchainPlatformsRequest): Promise<responses.ListBlockchainPlatformsResponse>;
214
215
  /**
@@ -217,7 +218,7 @@ export declare class BlockchainPlatformClient {
217
218
  * @param ListOsnsRequest
218
219
  * @return ListOsnsResponse
219
220
  * @throws OciError when an error occurs
220
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ListOsns.ts.html |here} to see how to use ListOsns API.
221
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ListOsns.ts.html |here} to see how to use ListOsns API.
221
222
  */
222
223
  listOsns(listOsnsRequest: requests.ListOsnsRequest): Promise<responses.ListOsnsResponse>;
223
224
  /**
@@ -226,7 +227,7 @@ export declare class BlockchainPlatformClient {
226
227
  * @param ListPeersRequest
227
228
  * @return ListPeersResponse
228
229
  * @throws OciError when an error occurs
229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ListPeers.ts.html |here} to see how to use ListPeers API.
230
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ListPeers.ts.html |here} to see how to use ListPeers API.
230
231
  */
231
232
  listPeers(listPeersRequest: requests.ListPeersRequest): Promise<responses.ListPeersResponse>;
232
233
  /**
@@ -236,7 +237,7 @@ export declare class BlockchainPlatformClient {
236
237
  * @param ListWorkRequestErrorsRequest
237
238
  * @return ListWorkRequestErrorsResponse
238
239
  * @throws OciError when an error occurs
239
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
240
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
240
241
  */
241
242
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
242
243
  /**
@@ -246,7 +247,7 @@ export declare class BlockchainPlatformClient {
246
247
  * @param ListWorkRequestLogsRequest
247
248
  * @return ListWorkRequestLogsResponse
248
249
  * @throws OciError when an error occurs
249
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
250
251
  */
251
252
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
252
253
  /**
@@ -256,7 +257,7 @@ export declare class BlockchainPlatformClient {
256
257
  * @param ListWorkRequestsRequest
257
258
  * @return ListWorkRequestsResponse
258
259
  * @throws OciError when an error occurs
259
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
260
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
260
261
  */
261
262
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
262
263
  /**
@@ -265,7 +266,7 @@ export declare class BlockchainPlatformClient {
265
266
  * @param PreviewScaleBlockchainPlatformRequest
266
267
  * @return PreviewScaleBlockchainPlatformResponse
267
268
  * @throws OciError when an error occurs
268
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/PreviewScaleBlockchainPlatform.ts.html |here} to see how to use PreviewScaleBlockchainPlatform API.
269
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/PreviewScaleBlockchainPlatform.ts.html |here} to see how to use PreviewScaleBlockchainPlatform API.
269
270
  */
270
271
  previewScaleBlockchainPlatform(previewScaleBlockchainPlatformRequest: requests.PreviewScaleBlockchainPlatformRequest): Promise<responses.PreviewScaleBlockchainPlatformResponse>;
271
272
  /**
@@ -274,7 +275,7 @@ export declare class BlockchainPlatformClient {
274
275
  * @param ScaleBlockchainPlatformRequest
275
276
  * @return ScaleBlockchainPlatformResponse
276
277
  * @throws OciError when an error occurs
277
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/ScaleBlockchainPlatform.ts.html |here} to see how to use ScaleBlockchainPlatform API.
278
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/ScaleBlockchainPlatform.ts.html |here} to see how to use ScaleBlockchainPlatform API.
278
279
  */
279
280
  scaleBlockchainPlatform(scaleBlockchainPlatformRequest: requests.ScaleBlockchainPlatformRequest): Promise<responses.ScaleBlockchainPlatformResponse>;
280
281
  /**
@@ -283,7 +284,7 @@ export declare class BlockchainPlatformClient {
283
284
  * @param StartBlockchainPlatformRequest
284
285
  * @return StartBlockchainPlatformResponse
285
286
  * @throws OciError when an error occurs
286
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/StartBlockchainPlatform.ts.html |here} to see how to use StartBlockchainPlatform API.
287
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/StartBlockchainPlatform.ts.html |here} to see how to use StartBlockchainPlatform API.
287
288
  */
288
289
  startBlockchainPlatform(startBlockchainPlatformRequest: requests.StartBlockchainPlatformRequest): Promise<responses.StartBlockchainPlatformResponse>;
289
290
  /**
@@ -292,7 +293,7 @@ export declare class BlockchainPlatformClient {
292
293
  * @param StopBlockchainPlatformRequest
293
294
  * @return StopBlockchainPlatformResponse
294
295
  * @throws OciError when an error occurs
295
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/StopBlockchainPlatform.ts.html |here} to see how to use StopBlockchainPlatform API.
296
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/StopBlockchainPlatform.ts.html |here} to see how to use StopBlockchainPlatform API.
296
297
  */
297
298
  stopBlockchainPlatform(stopBlockchainPlatformRequest: requests.StopBlockchainPlatformRequest): Promise<responses.StopBlockchainPlatformResponse>;
298
299
  /**
@@ -301,7 +302,7 @@ export declare class BlockchainPlatformClient {
301
302
  * @param UpdateBlockchainPlatformRequest
302
303
  * @return UpdateBlockchainPlatformResponse
303
304
  * @throws OciError when an error occurs
304
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/UpdateBlockchainPlatform.ts.html |here} to see how to use UpdateBlockchainPlatform API.
305
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/UpdateBlockchainPlatform.ts.html |here} to see how to use UpdateBlockchainPlatform API.
305
306
  */
306
307
  updateBlockchainPlatform(updateBlockchainPlatformRequest: requests.UpdateBlockchainPlatformRequest): Promise<responses.UpdateBlockchainPlatformResponse>;
307
308
  /**
@@ -310,7 +311,7 @@ export declare class BlockchainPlatformClient {
310
311
  * @param UpdateOsnRequest
311
312
  * @return UpdateOsnResponse
312
313
  * @throws OciError when an error occurs
313
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/UpdateOsn.ts.html |here} to see how to use UpdateOsn API.
314
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/UpdateOsn.ts.html |here} to see how to use UpdateOsn API.
314
315
  */
315
316
  updateOsn(updateOsnRequest: requests.UpdateOsnRequest): Promise<responses.UpdateOsnResponse>;
316
317
  /**
@@ -319,7 +320,7 @@ export declare class BlockchainPlatformClient {
319
320
  * @param UpdatePeerRequest
320
321
  * @return UpdatePeerResponse
321
322
  * @throws OciError when an error occurs
322
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/UpdatePeer.ts.html |here} to see how to use UpdatePeer API.
323
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/UpdatePeer.ts.html |here} to see how to use UpdatePeer API.
323
324
  */
324
325
  updatePeer(updatePeerRequest: requests.UpdatePeerRequest): Promise<responses.UpdatePeerResponse>;
325
326
  /**
@@ -328,7 +329,7 @@ export declare class BlockchainPlatformClient {
328
329
  * @param UpgradeBlockchainPlatformRequest
329
330
  * @return UpgradeBlockchainPlatformResponse
330
331
  * @throws OciError when an error occurs
331
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/blockchain/UpgradeBlockchainPlatform.ts.html |here} to see how to use UpgradeBlockchainPlatform API.
332
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/blockchain/UpgradeBlockchainPlatform.ts.html |here} to see how to use UpgradeBlockchainPlatform API.
332
333
  */
333
334
  upgradeBlockchainPlatform(upgradeBlockchainPlatformRequest: requests.UpgradeBlockchainPlatformRequest): Promise<responses.UpgradeBlockchainPlatformResponse>;
334
335
  }