@aws-sdk/client-managedblockchain 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ManagedBlockchainServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +144 -2
- package/dist-cjs/protocols/Aws_restJson1.js +296 -1064
- package/dist-es/index.js +1 -0
- package/dist-es/models/ManagedBlockchainServiceException.js +12 -0
- package/dist-es/models/models_0.js +132 -1
- package/dist-es/protocols/Aws_restJson1.js +587 -1167
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ManagedBlockchainServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -31
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ManagedBlockchainServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -31
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ManagedBlockchain service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ManagedBlockchainServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
export declare enum ThresholdComparator {
|
|
11
16
|
GREATER_THAN = "GREATER_THAN",
|
|
@@ -221,72 +226,104 @@ export declare namespace CreateMemberOutput {
|
|
|
221
226
|
/**
|
|
222
227
|
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
223
228
|
*/
|
|
224
|
-
export
|
|
225
|
-
name: "InternalServiceErrorException";
|
|
226
|
-
$fault: "server";
|
|
229
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
230
|
+
readonly name: "InternalServiceErrorException";
|
|
231
|
+
readonly $fault: "server";
|
|
232
|
+
/**
|
|
233
|
+
* @internal
|
|
234
|
+
*/
|
|
235
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
227
236
|
}
|
|
228
237
|
/**
|
|
229
238
|
* <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
|
|
230
239
|
*/
|
|
231
|
-
export
|
|
232
|
-
name: "InvalidRequestException";
|
|
233
|
-
$fault: "client";
|
|
240
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
241
|
+
readonly name: "InvalidRequestException";
|
|
242
|
+
readonly $fault: "client";
|
|
234
243
|
Message?: string;
|
|
244
|
+
/**
|
|
245
|
+
* @internal
|
|
246
|
+
*/
|
|
247
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
235
248
|
}
|
|
236
249
|
/**
|
|
237
250
|
* <p>A resource request is issued for a resource that already exists.</p>
|
|
238
251
|
*/
|
|
239
|
-
export
|
|
240
|
-
name: "ResourceAlreadyExistsException";
|
|
241
|
-
$fault: "client";
|
|
252
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
253
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
254
|
+
readonly $fault: "client";
|
|
242
255
|
Message?: string;
|
|
256
|
+
/**
|
|
257
|
+
* @internal
|
|
258
|
+
*/
|
|
259
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
243
260
|
}
|
|
244
261
|
/**
|
|
245
262
|
* <p>The maximum number of resources of that type already exist. Ensure the resources requested are within the boundaries of the service edition and your account limits.</p>
|
|
246
263
|
*/
|
|
247
|
-
export
|
|
248
|
-
name: "ResourceLimitExceededException";
|
|
249
|
-
$fault: "client";
|
|
264
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
265
|
+
readonly name: "ResourceLimitExceededException";
|
|
266
|
+
readonly $fault: "client";
|
|
250
267
|
Message?: string;
|
|
268
|
+
/**
|
|
269
|
+
* @internal
|
|
270
|
+
*/
|
|
271
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
251
272
|
}
|
|
252
273
|
/**
|
|
253
274
|
* <p>A requested resource does not exist. It may have been deleted or referenced inaccurately.</p>
|
|
254
275
|
*/
|
|
255
|
-
export
|
|
256
|
-
name: "ResourceNotFoundException";
|
|
257
|
-
$fault: "client";
|
|
276
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
277
|
+
readonly name: "ResourceNotFoundException";
|
|
278
|
+
readonly $fault: "client";
|
|
258
279
|
Message?: string;
|
|
259
280
|
/**
|
|
260
281
|
* <p>A requested resource does not exist. It may have been deleted or referenced inaccurately.</p>
|
|
261
282
|
*/
|
|
262
283
|
ResourceName?: string;
|
|
284
|
+
/**
|
|
285
|
+
* @internal
|
|
286
|
+
*/
|
|
287
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
263
288
|
}
|
|
264
289
|
/**
|
|
265
290
|
* <p>The requested resource exists but is not in a status that can complete the operation.</p>
|
|
266
291
|
*/
|
|
267
|
-
export
|
|
268
|
-
name: "ResourceNotReadyException";
|
|
269
|
-
$fault: "client";
|
|
292
|
+
export declare class ResourceNotReadyException extends __BaseException {
|
|
293
|
+
readonly name: "ResourceNotReadyException";
|
|
294
|
+
readonly $fault: "client";
|
|
270
295
|
Message?: string;
|
|
296
|
+
/**
|
|
297
|
+
* @internal
|
|
298
|
+
*/
|
|
299
|
+
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
271
300
|
}
|
|
272
301
|
/**
|
|
273
302
|
* <p>The request or operation could not be performed because a service is throttling requests. The most common source of throttling errors is launching EC2 instances such that your service limit for EC2 instances is exceeded. Request a limit increase or delete unused resources if possible.</p>
|
|
274
303
|
*/
|
|
275
|
-
export
|
|
276
|
-
name: "ThrottlingException";
|
|
277
|
-
$fault: "client";
|
|
304
|
+
export declare class ThrottlingException extends __BaseException {
|
|
305
|
+
readonly name: "ThrottlingException";
|
|
306
|
+
readonly $fault: "client";
|
|
307
|
+
/**
|
|
308
|
+
* @internal
|
|
309
|
+
*/
|
|
310
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
278
311
|
}
|
|
279
312
|
/**
|
|
280
313
|
* <p></p>
|
|
281
314
|
*/
|
|
282
|
-
export
|
|
283
|
-
name: "TooManyTagsException";
|
|
284
|
-
$fault: "client";
|
|
315
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
316
|
+
readonly name: "TooManyTagsException";
|
|
317
|
+
readonly $fault: "client";
|
|
285
318
|
Message?: string;
|
|
286
319
|
/**
|
|
287
320
|
* <p></p>
|
|
288
321
|
*/
|
|
289
322
|
ResourceName?: string;
|
|
323
|
+
/**
|
|
324
|
+
* @internal
|
|
325
|
+
*/
|
|
326
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
290
327
|
}
|
|
291
328
|
export declare enum Framework {
|
|
292
329
|
ETHEREUM = "ETHEREUM",
|
|
@@ -1396,10 +1433,14 @@ export declare namespace GetProposalOutput {
|
|
|
1396
1433
|
/**
|
|
1397
1434
|
* <p></p>
|
|
1398
1435
|
*/
|
|
1399
|
-
export
|
|
1400
|
-
name: "IllegalActionException";
|
|
1401
|
-
$fault: "client";
|
|
1436
|
+
export declare class IllegalActionException extends __BaseException {
|
|
1437
|
+
readonly name: "IllegalActionException";
|
|
1438
|
+
readonly $fault: "client";
|
|
1402
1439
|
Message?: string;
|
|
1440
|
+
/**
|
|
1441
|
+
* @internal
|
|
1442
|
+
*/
|
|
1443
|
+
constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
|
|
1403
1444
|
}
|
|
1404
1445
|
/**
|
|
1405
1446
|
* <p>A summary of network configuration properties.</p>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ManagedBlockchainServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
export declare enum ThresholdComparator {
|
|
9
12
|
GREATER_THAN = "GREATER_THAN",
|
|
@@ -122,54 +125,70 @@ export declare namespace CreateMemberOutput {
|
|
|
122
125
|
const filterSensitiveLog: (obj: CreateMemberOutput) => any;
|
|
123
126
|
}
|
|
124
127
|
|
|
125
|
-
export
|
|
126
|
-
name: "InternalServiceErrorException";
|
|
127
|
-
$fault: "server";
|
|
128
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
129
|
+
readonly name: "InternalServiceErrorException";
|
|
130
|
+
readonly $fault: "server";
|
|
131
|
+
|
|
132
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
128
133
|
}
|
|
129
134
|
|
|
130
|
-
export
|
|
131
|
-
name: "InvalidRequestException";
|
|
132
|
-
$fault: "client";
|
|
135
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
136
|
+
readonly name: "InvalidRequestException";
|
|
137
|
+
readonly $fault: "client";
|
|
133
138
|
Message?: string;
|
|
139
|
+
|
|
140
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
134
141
|
}
|
|
135
142
|
|
|
136
|
-
export
|
|
137
|
-
name: "ResourceAlreadyExistsException";
|
|
138
|
-
$fault: "client";
|
|
143
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
144
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
145
|
+
readonly $fault: "client";
|
|
139
146
|
Message?: string;
|
|
147
|
+
|
|
148
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
140
149
|
}
|
|
141
150
|
|
|
142
|
-
export
|
|
143
|
-
name: "ResourceLimitExceededException";
|
|
144
|
-
$fault: "client";
|
|
151
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
152
|
+
readonly name: "ResourceLimitExceededException";
|
|
153
|
+
readonly $fault: "client";
|
|
145
154
|
Message?: string;
|
|
155
|
+
|
|
156
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
146
157
|
}
|
|
147
158
|
|
|
148
|
-
export
|
|
149
|
-
name: "ResourceNotFoundException";
|
|
150
|
-
$fault: "client";
|
|
159
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
160
|
+
readonly name: "ResourceNotFoundException";
|
|
161
|
+
readonly $fault: "client";
|
|
151
162
|
Message?: string;
|
|
152
163
|
|
|
153
164
|
ResourceName?: string;
|
|
165
|
+
|
|
166
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
154
167
|
}
|
|
155
168
|
|
|
156
|
-
export
|
|
157
|
-
name: "ResourceNotReadyException";
|
|
158
|
-
$fault: "client";
|
|
169
|
+
export declare class ResourceNotReadyException extends __BaseException {
|
|
170
|
+
readonly name: "ResourceNotReadyException";
|
|
171
|
+
readonly $fault: "client";
|
|
159
172
|
Message?: string;
|
|
173
|
+
|
|
174
|
+
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
160
175
|
}
|
|
161
176
|
|
|
162
|
-
export
|
|
163
|
-
name: "ThrottlingException";
|
|
164
|
-
$fault: "client";
|
|
177
|
+
export declare class ThrottlingException extends __BaseException {
|
|
178
|
+
readonly name: "ThrottlingException";
|
|
179
|
+
readonly $fault: "client";
|
|
180
|
+
|
|
181
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
165
182
|
}
|
|
166
183
|
|
|
167
|
-
export
|
|
168
|
-
name: "TooManyTagsException";
|
|
169
|
-
$fault: "client";
|
|
184
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
185
|
+
readonly name: "TooManyTagsException";
|
|
186
|
+
readonly $fault: "client";
|
|
170
187
|
Message?: string;
|
|
171
188
|
|
|
172
189
|
ResourceName?: string;
|
|
190
|
+
|
|
191
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
173
192
|
}
|
|
174
193
|
export declare enum Framework {
|
|
175
194
|
ETHEREUM = "ETHEREUM",
|
|
@@ -725,10 +744,12 @@ export declare namespace GetProposalOutput {
|
|
|
725
744
|
const filterSensitiveLog: (obj: GetProposalOutput) => any;
|
|
726
745
|
}
|
|
727
746
|
|
|
728
|
-
export
|
|
729
|
-
name: "IllegalActionException";
|
|
730
|
-
$fault: "client";
|
|
747
|
+
export declare class IllegalActionException extends __BaseException {
|
|
748
|
+
readonly name: "IllegalActionException";
|
|
749
|
+
readonly $fault: "client";
|
|
731
750
|
Message?: string;
|
|
751
|
+
|
|
752
|
+
constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
|
|
732
753
|
}
|
|
733
754
|
|
|
734
755
|
export interface NetworkSummary {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-managedblockchain",
|
|
3
3
|
"description": "AWS SDK for JavaScript Managedblockchain Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|