oci-blockchain 2.4.0 → 2.6.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/LICENSE.txt +6 -0
- package/lib/client.d.ts +53 -25
- package/lib/client.js +110 -50
- package/lib/client.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 +1 -1
- package/lib/request/delete-osn-request.d.ts +1 -1
- package/lib/request/delete-peer-request.d.ts +1 -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/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/package.json +3 -3
package/LICENSE.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
|
+
|
|
5
|
+
____________________________
|
|
6
|
+
|
|
1
7
|
The Universal Permissive License (UPL), Version 1.0
|
|
2
8
|
|
|
3
9
|
Subject to the condition set forth below, permission is hereby granted to any
|
package/lib/client.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ import * as responses from "./response";
|
|
|
16
16
|
import { BlockchainPlatformWaiter } from "./blockchainplatform-waiter";
|
|
17
17
|
export declare enum BlockchainPlatformApiKeys {
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
21
|
+
*/
|
|
19
22
|
export declare class BlockchainPlatformClient {
|
|
20
23
|
protected static serviceEndpointTemplate: string;
|
|
21
24
|
protected "_endpoint": string;
|
|
@@ -65,206 +68,231 @@ export declare class BlockchainPlatformClient {
|
|
|
65
68
|
getWaiters(): BlockchainPlatformWaiter;
|
|
66
69
|
/**
|
|
67
70
|
* Change Blockchain Platform Compartment
|
|
71
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
68
72
|
* @param ChangeBlockchainPlatformCompartmentRequest
|
|
69
73
|
* @return ChangeBlockchainPlatformCompartmentResponse
|
|
70
74
|
* @throws OciError when an error occurs
|
|
71
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
75
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ChangeBlockchainPlatformCompartment.ts.html |here} to see how to use ChangeBlockchainPlatformCompartment API.
|
|
72
76
|
*/
|
|
73
77
|
changeBlockchainPlatformCompartment(changeBlockchainPlatformCompartmentRequest: requests.ChangeBlockchainPlatformCompartmentRequest): Promise<responses.ChangeBlockchainPlatformCompartmentResponse>;
|
|
74
78
|
/**
|
|
75
79
|
* Creates a new Blockchain Platform.
|
|
76
80
|
*
|
|
81
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
77
82
|
* @param CreateBlockchainPlatformRequest
|
|
78
83
|
* @return CreateBlockchainPlatformResponse
|
|
79
84
|
* @throws OciError when an error occurs
|
|
80
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
85
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/CreateBlockchainPlatform.ts.html |here} to see how to use CreateBlockchainPlatform API.
|
|
81
86
|
*/
|
|
82
87
|
createBlockchainPlatform(createBlockchainPlatformRequest: requests.CreateBlockchainPlatformRequest): Promise<responses.CreateBlockchainPlatformResponse>;
|
|
83
88
|
/**
|
|
84
89
|
* Create Blockchain Platform Osn
|
|
90
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
85
91
|
* @param CreateOsnRequest
|
|
86
92
|
* @return CreateOsnResponse
|
|
87
93
|
* @throws OciError when an error occurs
|
|
88
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
94
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/CreateOsn.ts.html |here} to see how to use CreateOsn API.
|
|
89
95
|
*/
|
|
90
96
|
createOsn(createOsnRequest: requests.CreateOsnRequest): Promise<responses.CreateOsnResponse>;
|
|
91
97
|
/**
|
|
92
98
|
* Create Blockchain Platform Peer
|
|
99
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
93
100
|
* @param CreatePeerRequest
|
|
94
101
|
* @return CreatePeerResponse
|
|
95
102
|
* @throws OciError when an error occurs
|
|
96
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/CreatePeer.ts.html |here} to see how to use CreatePeer API.
|
|
97
104
|
*/
|
|
98
105
|
createPeer(createPeerRequest: requests.CreatePeerRequest): Promise<responses.CreatePeerResponse>;
|
|
99
106
|
/**
|
|
100
107
|
* Delete a particular of a Blockchain Platform
|
|
108
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
101
109
|
* @param DeleteBlockchainPlatformRequest
|
|
102
110
|
* @return DeleteBlockchainPlatformResponse
|
|
103
111
|
* @throws OciError when an error occurs
|
|
104
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/DeleteBlockchainPlatform.ts.html |here} to see how to use DeleteBlockchainPlatform API.
|
|
105
113
|
*/
|
|
106
114
|
deleteBlockchainPlatform(deleteBlockchainPlatformRequest: requests.DeleteBlockchainPlatformRequest): Promise<responses.DeleteBlockchainPlatformResponse>;
|
|
107
115
|
/**
|
|
108
116
|
* Delete a particular OSN of a Blockchain Platform
|
|
117
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
109
118
|
* @param DeleteOsnRequest
|
|
110
119
|
* @return DeleteOsnResponse
|
|
111
120
|
* @throws OciError when an error occurs
|
|
112
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/DeleteOsn.ts.html |here} to see how to use DeleteOsn API.
|
|
113
122
|
*/
|
|
114
123
|
deleteOsn(deleteOsnRequest: requests.DeleteOsnRequest): Promise<responses.DeleteOsnResponse>;
|
|
115
124
|
/**
|
|
116
125
|
* Delete a particular peer of a Blockchain Platform
|
|
126
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
117
127
|
* @param DeletePeerRequest
|
|
118
128
|
* @return DeletePeerResponse
|
|
119
129
|
* @throws OciError when an error occurs
|
|
120
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/DeletePeer.ts.html |here} to see how to use DeletePeer API.
|
|
121
131
|
*/
|
|
122
132
|
deletePeer(deletePeerRequest: requests.DeletePeerRequest): Promise<responses.DeletePeerResponse>;
|
|
123
133
|
/**
|
|
124
134
|
* Attempts to cancel the work request with the given ID.
|
|
135
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
125
136
|
* @param DeleteWorkRequestRequest
|
|
126
137
|
* @return DeleteWorkRequestResponse
|
|
127
138
|
* @throws OciError when an error occurs
|
|
128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
139
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
129
140
|
*/
|
|
130
141
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
131
142
|
/**
|
|
132
143
|
* Gets information about a Blockchain Platform identified by the specific id
|
|
144
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
133
145
|
* @param GetBlockchainPlatformRequest
|
|
134
146
|
* @return GetBlockchainPlatformResponse
|
|
135
147
|
* @throws OciError when an error occurs
|
|
136
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
148
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/GetBlockchainPlatform.ts.html |here} to see how to use GetBlockchainPlatform API.
|
|
137
149
|
*/
|
|
138
150
|
getBlockchainPlatform(getBlockchainPlatformRequest: requests.GetBlockchainPlatformRequest): Promise<responses.GetBlockchainPlatformResponse>;
|
|
139
151
|
/**
|
|
140
152
|
* Gets information about an OSN identified by the specific id
|
|
153
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
141
154
|
* @param GetOsnRequest
|
|
142
155
|
* @return GetOsnResponse
|
|
143
156
|
* @throws OciError when an error occurs
|
|
144
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/GetOsn.ts.html |here} to see how to use GetOsn API.
|
|
145
158
|
*/
|
|
146
159
|
getOsn(getOsnRequest: requests.GetOsnRequest): Promise<responses.GetOsnResponse>;
|
|
147
160
|
/**
|
|
148
161
|
* Gets information about a peer identified by the specific id
|
|
162
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
149
163
|
* @param GetPeerRequest
|
|
150
164
|
* @return GetPeerResponse
|
|
151
165
|
* @throws OciError when an error occurs
|
|
152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
166
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/GetPeer.ts.html |here} to see how to use GetPeer API.
|
|
153
167
|
*/
|
|
154
168
|
getPeer(getPeerRequest: requests.GetPeerRequest): Promise<responses.GetPeerResponse>;
|
|
155
169
|
/**
|
|
156
170
|
* Gets the status of the work request with the given ID.
|
|
171
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
157
172
|
* @param GetWorkRequestRequest
|
|
158
173
|
* @return GetWorkRequestResponse
|
|
159
174
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
161
176
|
*/
|
|
162
177
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
163
178
|
/**
|
|
164
179
|
* Returns a list Blockchain Platform Instances in a compartment
|
|
180
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
165
181
|
* @param ListBlockchainPlatformsRequest
|
|
166
182
|
* @return ListBlockchainPlatformsResponse
|
|
167
183
|
* @throws OciError when an error occurs
|
|
168
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
184
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ListBlockchainPlatforms.ts.html |here} to see how to use ListBlockchainPlatforms API.
|
|
169
185
|
*/
|
|
170
186
|
listBlockchainPlatforms(listBlockchainPlatformsRequest: requests.ListBlockchainPlatformsRequest): Promise<responses.ListBlockchainPlatformsResponse>;
|
|
171
187
|
/**
|
|
172
188
|
* List Blockchain Platform OSNs
|
|
189
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
173
190
|
* @param ListOsnsRequest
|
|
174
191
|
* @return ListOsnsResponse
|
|
175
192
|
* @throws OciError when an error occurs
|
|
176
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ListOsns.ts.html |here} to see how to use ListOsns API.
|
|
177
194
|
*/
|
|
178
195
|
listOsns(listOsnsRequest: requests.ListOsnsRequest): Promise<responses.ListOsnsResponse>;
|
|
179
196
|
/**
|
|
180
197
|
* List Blockchain Platform Peers
|
|
198
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
181
199
|
* @param ListPeersRequest
|
|
182
200
|
* @return ListPeersResponse
|
|
183
201
|
* @throws OciError when an error occurs
|
|
184
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ListPeers.ts.html |here} to see how to use ListPeers API.
|
|
185
203
|
*/
|
|
186
204
|
listPeers(listPeersRequest: requests.ListPeersRequest): Promise<responses.ListPeersResponse>;
|
|
187
205
|
/**
|
|
188
206
|
* Return a (paginated) list of errors for a given work request.
|
|
189
207
|
*
|
|
208
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
190
209
|
* @param ListWorkRequestErrorsRequest
|
|
191
210
|
* @return ListWorkRequestErrorsResponse
|
|
192
211
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
212
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
194
213
|
*/
|
|
195
214
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
196
215
|
/**
|
|
197
216
|
* Return a (paginated) list of logs for a given work request.
|
|
198
217
|
*
|
|
218
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
199
219
|
* @param ListWorkRequestLogsRequest
|
|
200
220
|
* @return ListWorkRequestLogsResponse
|
|
201
221
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
203
223
|
*/
|
|
204
224
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
205
225
|
/**
|
|
206
226
|
* Lists the work requests in a compartment.
|
|
207
227
|
*
|
|
228
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
208
229
|
* @param ListWorkRequestsRequest
|
|
209
230
|
* @return ListWorkRequestsResponse
|
|
210
231
|
* @throws OciError when an error occurs
|
|
211
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
212
233
|
*/
|
|
213
234
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
214
235
|
/**
|
|
215
236
|
* Preview Scale Blockchain Platform
|
|
237
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
216
238
|
* @param PreviewScaleBlockchainPlatformRequest
|
|
217
239
|
* @return PreviewScaleBlockchainPlatformResponse
|
|
218
240
|
* @throws OciError when an error occurs
|
|
219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/PreviewScaleBlockchainPlatform.ts.html |here} to see how to use PreviewScaleBlockchainPlatform API.
|
|
220
242
|
*/
|
|
221
243
|
previewScaleBlockchainPlatform(previewScaleBlockchainPlatformRequest: requests.PreviewScaleBlockchainPlatformRequest): Promise<responses.PreviewScaleBlockchainPlatformResponse>;
|
|
222
244
|
/**
|
|
223
245
|
* Scale Blockchain Platform
|
|
246
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
224
247
|
* @param ScaleBlockchainPlatformRequest
|
|
225
248
|
* @return ScaleBlockchainPlatformResponse
|
|
226
249
|
* @throws OciError when an error occurs
|
|
227
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/ScaleBlockchainPlatform.ts.html |here} to see how to use ScaleBlockchainPlatform API.
|
|
228
251
|
*/
|
|
229
252
|
scaleBlockchainPlatform(scaleBlockchainPlatformRequest: requests.ScaleBlockchainPlatformRequest): Promise<responses.ScaleBlockchainPlatformResponse>;
|
|
230
253
|
/**
|
|
231
254
|
* Start a Blockchain Platform
|
|
255
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
232
256
|
* @param StartBlockchainPlatformRequest
|
|
233
257
|
* @return StartBlockchainPlatformResponse
|
|
234
258
|
* @throws OciError when an error occurs
|
|
235
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/StartBlockchainPlatform.ts.html |here} to see how to use StartBlockchainPlatform API.
|
|
236
260
|
*/
|
|
237
261
|
startBlockchainPlatform(startBlockchainPlatformRequest: requests.StartBlockchainPlatformRequest): Promise<responses.StartBlockchainPlatformResponse>;
|
|
238
262
|
/**
|
|
239
263
|
* Stop a Blockchain Platform
|
|
264
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
240
265
|
* @param StopBlockchainPlatformRequest
|
|
241
266
|
* @return StopBlockchainPlatformResponse
|
|
242
267
|
* @throws OciError when an error occurs
|
|
243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/StopBlockchainPlatform.ts.html |here} to see how to use StopBlockchainPlatform API.
|
|
244
269
|
*/
|
|
245
270
|
stopBlockchainPlatform(stopBlockchainPlatformRequest: requests.StopBlockchainPlatformRequest): Promise<responses.StopBlockchainPlatformResponse>;
|
|
246
271
|
/**
|
|
247
272
|
* Update a particular of a Blockchain Platform
|
|
273
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
248
274
|
* @param UpdateBlockchainPlatformRequest
|
|
249
275
|
* @return UpdateBlockchainPlatformResponse
|
|
250
276
|
* @throws OciError when an error occurs
|
|
251
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
277
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/UpdateBlockchainPlatform.ts.html |here} to see how to use UpdateBlockchainPlatform API.
|
|
252
278
|
*/
|
|
253
279
|
updateBlockchainPlatform(updateBlockchainPlatformRequest: requests.UpdateBlockchainPlatformRequest): Promise<responses.UpdateBlockchainPlatformResponse>;
|
|
254
280
|
/**
|
|
255
281
|
* Update Blockchain Platform OSN
|
|
282
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
256
283
|
* @param UpdateOsnRequest
|
|
257
284
|
* @return UpdateOsnResponse
|
|
258
285
|
* @throws OciError when an error occurs
|
|
259
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/UpdateOsn.ts.html |here} to see how to use UpdateOsn API.
|
|
260
287
|
*/
|
|
261
288
|
updateOsn(updateOsnRequest: requests.UpdateOsnRequest): Promise<responses.UpdateOsnResponse>;
|
|
262
289
|
/**
|
|
263
290
|
* Update Blockchain Platform Peer
|
|
291
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
264
292
|
* @param UpdatePeerRequest
|
|
265
293
|
* @return UpdatePeerResponse
|
|
266
294
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/blockchain/UpdatePeer.ts.html |here} to see how to use UpdatePeer API.
|
|
268
296
|
*/
|
|
269
297
|
updatePeer(updatePeerRequest: requests.UpdatePeerRequest): Promise<responses.UpdatePeerResponse>;
|
|
270
298
|
}
|