@aws-sdk/client-managedblockchain 3.933.0 → 3.935.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.
@@ -1,57 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
3
- /**
4
- * <p>You don't have sufficient access to perform this action.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- Message?: string | undefined;
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
- }
16
- /**
17
- * @public
18
- * @enum
19
- */
20
- export declare const AccessorNetworkType: {
21
- readonly ETHEREUM_GOERLI: "ETHEREUM_GOERLI";
22
- readonly ETHEREUM_MAINNET: "ETHEREUM_MAINNET";
23
- readonly ETHEREUM_MAINNET_AND_GOERLI: "ETHEREUM_MAINNET_AND_GOERLI";
24
- readonly POLYGON_MAINNET: "POLYGON_MAINNET";
25
- readonly POLYGON_MUMBAI: "POLYGON_MUMBAI";
26
- };
27
- /**
28
- * @public
29
- */
30
- export type AccessorNetworkType = (typeof AccessorNetworkType)[keyof typeof AccessorNetworkType];
31
- /**
32
- * @public
33
- * @enum
34
- */
35
- export declare const AccessorStatus: {
36
- readonly AVAILABLE: "AVAILABLE";
37
- readonly DELETED: "DELETED";
38
- readonly PENDING_DELETION: "PENDING_DELETION";
39
- };
40
- /**
41
- * @public
42
- */
43
- export type AccessorStatus = (typeof AccessorStatus)[keyof typeof AccessorStatus];
44
- /**
45
- * @public
46
- * @enum
47
- */
48
- export declare const AccessorType: {
49
- readonly BILLING_TOKEN: "BILLING_TOKEN";
50
- };
51
- /**
52
- * @public
53
- */
54
- export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType];
1
+ import { AccessorNetworkType, AccessorStatus, AccessorType, Edition, Framework, InvitationStatus, MemberStatus, NetworkStatus, NodeStatus, ProposalStatus, StateDBType, ThresholdComparator, VoteValue } from "./enums";
55
2
  /**
56
3
  * <p>The properties of the Accessor.</p>
57
4
  * @public
@@ -147,18 +94,6 @@ export interface AccessorSummary {
147
94
  */
148
95
  NetworkType?: AccessorNetworkType | undefined;
149
96
  }
150
- /**
151
- * @public
152
- * @enum
153
- */
154
- export declare const ThresholdComparator: {
155
- readonly GREATER_THAN: "GREATER_THAN";
156
- readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
157
- };
158
- /**
159
- * @public
160
- */
161
- export type ThresholdComparator = (typeof ThresholdComparator)[keyof typeof ThresholdComparator];
162
97
  /**
163
98
  * <p>A policy type that defines the voting rules for the network. The rules decide if a proposal is approved. Approval may be based on criteria such as the percentage of <code>YES</code> votes and the duration of the proposal. The policy applies to all proposals and is specified when the network is created.</p>
164
99
  * <p>Applies only to Hyperledger Fabric.</p>
@@ -273,91 +208,6 @@ export interface CreateAccessorOutput {
273
208
  */
274
209
  NetworkType?: AccessorNetworkType | undefined;
275
210
  }
276
- /**
277
- * <p>The request processing has failed because of an unknown error, exception or failure.</p>
278
- * @public
279
- */
280
- export declare class InternalServiceErrorException extends __BaseException {
281
- readonly name: "InternalServiceErrorException";
282
- readonly $fault: "server";
283
- /**
284
- * @internal
285
- */
286
- constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
287
- }
288
- /**
289
- * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
290
- * @public
291
- */
292
- export declare class InvalidRequestException extends __BaseException {
293
- readonly name: "InvalidRequestException";
294
- readonly $fault: "client";
295
- Message?: string | undefined;
296
- /**
297
- * @internal
298
- */
299
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
300
- }
301
- /**
302
- * <p>A resource request is issued for a resource that already exists.</p>
303
- * @public
304
- */
305
- export declare class ResourceAlreadyExistsException extends __BaseException {
306
- readonly name: "ResourceAlreadyExistsException";
307
- readonly $fault: "client";
308
- Message?: string | undefined;
309
- /**
310
- * @internal
311
- */
312
- constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
313
- }
314
- /**
315
- * <p>The maximum number of resources of that type already exist. Ensure the resources requested
316
- * are within the boundaries of the service edition and your account limits.</p>
317
- * @public
318
- */
319
- export declare class ResourceLimitExceededException extends __BaseException {
320
- readonly name: "ResourceLimitExceededException";
321
- readonly $fault: "client";
322
- Message?: string | undefined;
323
- /**
324
- * @internal
325
- */
326
- constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
327
- }
328
- /**
329
- * <p>The request or operation couldn't be performed because a service is
330
- * throttling requests. The most common source of throttling errors is
331
- * creating resources that exceed your service limit for this resource type.
332
- * Request a limit increase or delete unused resources if possible.</p>
333
- * @public
334
- */
335
- export declare class ThrottlingException extends __BaseException {
336
- readonly name: "ThrottlingException";
337
- readonly $fault: "client";
338
- /**
339
- * @internal
340
- */
341
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
342
- }
343
- /**
344
- * <p></p>
345
- * @public
346
- */
347
- export declare class TooManyTagsException extends __BaseException {
348
- readonly name: "TooManyTagsException";
349
- readonly $fault: "client";
350
- Message?: string | undefined;
351
- /**
352
- * <p></p>
353
- * @public
354
- */
355
- ResourceName?: string | undefined;
356
- /**
357
- * @internal
358
- */
359
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
360
- }
361
211
  /**
362
212
  * <p>Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.</p>
363
213
  * @public
@@ -517,61 +367,6 @@ export interface CreateMemberOutput {
517
367
  */
518
368
  MemberId?: string | undefined;
519
369
  }
520
- /**
521
- * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
522
- * @public
523
- */
524
- export declare class ResourceNotFoundException extends __BaseException {
525
- readonly name: "ResourceNotFoundException";
526
- readonly $fault: "client";
527
- Message?: string | undefined;
528
- /**
529
- * <p>A requested resource doesn't exist. It may have been deleted or referenced inaccurately.</p>
530
- * @public
531
- */
532
- ResourceName?: string | undefined;
533
- /**
534
- * @internal
535
- */
536
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
537
- }
538
- /**
539
- * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
540
- * @public
541
- */
542
- export declare class ResourceNotReadyException extends __BaseException {
543
- readonly name: "ResourceNotReadyException";
544
- readonly $fault: "client";
545
- Message?: string | undefined;
546
- /**
547
- * @internal
548
- */
549
- constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
550
- }
551
- /**
552
- * @public
553
- * @enum
554
- */
555
- export declare const Framework: {
556
- readonly ETHEREUM: "ETHEREUM";
557
- readonly HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC";
558
- };
559
- /**
560
- * @public
561
- */
562
- export type Framework = (typeof Framework)[keyof typeof Framework];
563
- /**
564
- * @public
565
- * @enum
566
- */
567
- export declare const Edition: {
568
- readonly STANDARD: "STANDARD";
569
- readonly STARTER: "STARTER";
570
- };
571
- /**
572
- * @public
573
- */
574
- export type Edition = (typeof Edition)[keyof typeof Edition];
575
370
  /**
576
371
  * <p>Hyperledger Fabric configuration properties for the network.</p>
577
372
  * @public
@@ -716,18 +511,6 @@ export interface NodeLogPublishingConfiguration {
716
511
  */
717
512
  Fabric?: NodeFabricLogPublishingConfiguration | undefined;
718
513
  }
719
- /**
720
- * @public
721
- * @enum
722
- */
723
- export declare const StateDBType: {
724
- readonly CouchDB: "CouchDB";
725
- readonly LevelDB: "LevelDB";
726
- };
727
- /**
728
- * @public
729
- */
730
- export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType];
731
514
  /**
732
515
  * <p>Configuration properties of a node.</p>
733
516
  * @public
@@ -1039,23 +822,6 @@ export interface MemberFrameworkAttributes {
1039
822
  */
1040
823
  Fabric?: MemberFabricAttributes | undefined;
1041
824
  }
1042
- /**
1043
- * @public
1044
- * @enum
1045
- */
1046
- export declare const MemberStatus: {
1047
- readonly AVAILABLE: "AVAILABLE";
1048
- readonly CREATE_FAILED: "CREATE_FAILED";
1049
- readonly CREATING: "CREATING";
1050
- readonly DELETED: "DELETED";
1051
- readonly DELETING: "DELETING";
1052
- readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
1053
- readonly UPDATING: "UPDATING";
1054
- };
1055
- /**
1056
- * @public
1057
- */
1058
- export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
1059
825
  /**
1060
826
  * <p>Member configuration properties.</p>
1061
827
  * <p>Applies only to Hyperledger Fabric.</p>
@@ -1222,21 +988,6 @@ export interface NetworkFrameworkAttributes {
1222
988
  */
1223
989
  Ethereum?: NetworkEthereumAttributes | undefined;
1224
990
  }
1225
- /**
1226
- * @public
1227
- * @enum
1228
- */
1229
- export declare const NetworkStatus: {
1230
- readonly AVAILABLE: "AVAILABLE";
1231
- readonly CREATE_FAILED: "CREATE_FAILED";
1232
- readonly CREATING: "CREATING";
1233
- readonly DELETED: "DELETED";
1234
- readonly DELETING: "DELETING";
1235
- };
1236
- /**
1237
- * @public
1238
- */
1239
- export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus];
1240
991
  /**
1241
992
  * <p>Network configuration properties.</p>
1242
993
  * @public
@@ -1383,25 +1134,6 @@ export interface NodeFrameworkAttributes {
1383
1134
  */
1384
1135
  Ethereum?: NodeEthereumAttributes | undefined;
1385
1136
  }
1386
- /**
1387
- * @public
1388
- * @enum
1389
- */
1390
- export declare const NodeStatus: {
1391
- readonly AVAILABLE: "AVAILABLE";
1392
- readonly CREATE_FAILED: "CREATE_FAILED";
1393
- readonly CREATING: "CREATING";
1394
- readonly DELETED: "DELETED";
1395
- readonly DELETING: "DELETING";
1396
- readonly FAILED: "FAILED";
1397
- readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
1398
- readonly UNHEALTHY: "UNHEALTHY";
1399
- readonly UPDATING: "UPDATING";
1400
- };
1401
- /**
1402
- * @public
1403
- */
1404
- export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus];
1405
1137
  /**
1406
1138
  * <p>Configuration properties of a node.</p>
1407
1139
  * @public
@@ -1542,21 +1274,6 @@ export interface GetProposalInput {
1542
1274
  */
1543
1275
  ProposalId: string | undefined;
1544
1276
  }
1545
- /**
1546
- * @public
1547
- * @enum
1548
- */
1549
- export declare const ProposalStatus: {
1550
- readonly ACTION_FAILED: "ACTION_FAILED";
1551
- readonly APPROVED: "APPROVED";
1552
- readonly EXPIRED: "EXPIRED";
1553
- readonly IN_PROGRESS: "IN_PROGRESS";
1554
- readonly REJECTED: "REJECTED";
1555
- };
1556
- /**
1557
- * @public
1558
- */
1559
- export type ProposalStatus = (typeof ProposalStatus)[keyof typeof ProposalStatus];
1560
1277
  /**
1561
1278
  * <p>Properties of a proposal on a Managed Blockchain network.</p>
1562
1279
  * <p>Applies only to Hyperledger Fabric.</p>
@@ -1677,19 +1394,6 @@ export interface GetProposalOutput {
1677
1394
  */
1678
1395
  Proposal?: Proposal | undefined;
1679
1396
  }
1680
- /**
1681
- * <p></p>
1682
- * @public
1683
- */
1684
- export declare class IllegalActionException extends __BaseException {
1685
- readonly name: "IllegalActionException";
1686
- readonly $fault: "client";
1687
- Message?: string | undefined;
1688
- /**
1689
- * @internal
1690
- */
1691
- constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
1692
- }
1693
1397
  /**
1694
1398
  * <p>A summary of network configuration properties.</p>
1695
1399
  * @public
@@ -1736,21 +1440,6 @@ export interface NetworkSummary {
1736
1440
  */
1737
1441
  Arn?: string | undefined;
1738
1442
  }
1739
- /**
1740
- * @public
1741
- * @enum
1742
- */
1743
- export declare const InvitationStatus: {
1744
- readonly ACCEPTED: "ACCEPTED";
1745
- readonly ACCEPTING: "ACCEPTING";
1746
- readonly EXPIRED: "EXPIRED";
1747
- readonly PENDING: "PENDING";
1748
- readonly REJECTED: "REJECTED";
1749
- };
1750
- /**
1751
- * @public
1752
- */
1753
- export type InvitationStatus = (typeof InvitationStatus)[keyof typeof InvitationStatus];
1754
1443
  /**
1755
1444
  * <p>An invitation to an Amazon Web Services account to create a member and join the network.</p>
1756
1445
  * <p>Applies only to Hyperledger Fabric.</p>
@@ -2291,18 +1980,6 @@ export interface ListProposalVotesInput {
2291
1980
  */
2292
1981
  NextToken?: string | undefined;
2293
1982
  }
2294
- /**
2295
- * @public
2296
- * @enum
2297
- */
2298
- export declare const VoteValue: {
2299
- readonly NO: "NO";
2300
- readonly YES: "YES";
2301
- };
2302
- /**
2303
- * @public
2304
- */
2305
- export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];
2306
1983
  /**
2307
1984
  * <p>
2308
1985
  * Properties of an individual vote that a member cast for a proposal.
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ManagedBlockchainExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { ManagedBlockchainServiceException } from "./models/ManagedBlockchainServiceException";
@@ -0,0 +1,94 @@
1
+ export declare const AccessorNetworkType: {
2
+ readonly ETHEREUM_GOERLI: "ETHEREUM_GOERLI";
3
+ readonly ETHEREUM_MAINNET: "ETHEREUM_MAINNET";
4
+ readonly ETHEREUM_MAINNET_AND_GOERLI: "ETHEREUM_MAINNET_AND_GOERLI";
5
+ readonly POLYGON_MAINNET: "POLYGON_MAINNET";
6
+ readonly POLYGON_MUMBAI: "POLYGON_MUMBAI";
7
+ };
8
+ export type AccessorNetworkType =
9
+ (typeof AccessorNetworkType)[keyof typeof AccessorNetworkType];
10
+ export declare const AccessorStatus: {
11
+ readonly AVAILABLE: "AVAILABLE";
12
+ readonly DELETED: "DELETED";
13
+ readonly PENDING_DELETION: "PENDING_DELETION";
14
+ };
15
+ export type AccessorStatus =
16
+ (typeof AccessorStatus)[keyof typeof AccessorStatus];
17
+ export declare const AccessorType: {
18
+ readonly BILLING_TOKEN: "BILLING_TOKEN";
19
+ };
20
+ export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType];
21
+ export declare const ThresholdComparator: {
22
+ readonly GREATER_THAN: "GREATER_THAN";
23
+ readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
24
+ };
25
+ export type ThresholdComparator =
26
+ (typeof ThresholdComparator)[keyof typeof ThresholdComparator];
27
+ export declare const Framework: {
28
+ readonly ETHEREUM: "ETHEREUM";
29
+ readonly HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC";
30
+ };
31
+ export type Framework = (typeof Framework)[keyof typeof Framework];
32
+ export declare const Edition: {
33
+ readonly STANDARD: "STANDARD";
34
+ readonly STARTER: "STARTER";
35
+ };
36
+ export type Edition = (typeof Edition)[keyof typeof Edition];
37
+ export declare const StateDBType: {
38
+ readonly CouchDB: "CouchDB";
39
+ readonly LevelDB: "LevelDB";
40
+ };
41
+ export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType];
42
+ export declare const MemberStatus: {
43
+ readonly AVAILABLE: "AVAILABLE";
44
+ readonly CREATE_FAILED: "CREATE_FAILED";
45
+ readonly CREATING: "CREATING";
46
+ readonly DELETED: "DELETED";
47
+ readonly DELETING: "DELETING";
48
+ readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
49
+ readonly UPDATING: "UPDATING";
50
+ };
51
+ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
52
+ export declare const NetworkStatus: {
53
+ readonly AVAILABLE: "AVAILABLE";
54
+ readonly CREATE_FAILED: "CREATE_FAILED";
55
+ readonly CREATING: "CREATING";
56
+ readonly DELETED: "DELETED";
57
+ readonly DELETING: "DELETING";
58
+ };
59
+ export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus];
60
+ export declare const NodeStatus: {
61
+ readonly AVAILABLE: "AVAILABLE";
62
+ readonly CREATE_FAILED: "CREATE_FAILED";
63
+ readonly CREATING: "CREATING";
64
+ readonly DELETED: "DELETED";
65
+ readonly DELETING: "DELETING";
66
+ readonly FAILED: "FAILED";
67
+ readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
68
+ readonly UNHEALTHY: "UNHEALTHY";
69
+ readonly UPDATING: "UPDATING";
70
+ };
71
+ export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus];
72
+ export declare const ProposalStatus: {
73
+ readonly ACTION_FAILED: "ACTION_FAILED";
74
+ readonly APPROVED: "APPROVED";
75
+ readonly EXPIRED: "EXPIRED";
76
+ readonly IN_PROGRESS: "IN_PROGRESS";
77
+ readonly REJECTED: "REJECTED";
78
+ };
79
+ export type ProposalStatus =
80
+ (typeof ProposalStatus)[keyof typeof ProposalStatus];
81
+ export declare const InvitationStatus: {
82
+ readonly ACCEPTED: "ACCEPTED";
83
+ readonly ACCEPTING: "ACCEPTING";
84
+ readonly EXPIRED: "EXPIRED";
85
+ readonly PENDING: "PENDING";
86
+ readonly REJECTED: "REJECTED";
87
+ };
88
+ export type InvitationStatus =
89
+ (typeof InvitationStatus)[keyof typeof InvitationStatus];
90
+ export declare const VoteValue: {
91
+ readonly NO: "NO";
92
+ readonly YES: "YES";
93
+ };
94
+ export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];
@@ -0,0 +1,82 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class InternalServiceErrorException extends __BaseException {
12
+ readonly name: "InternalServiceErrorException";
13
+ readonly $fault: "server";
14
+ constructor(
15
+ opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
16
+ );
17
+ }
18
+ export declare class InvalidRequestException extends __BaseException {
19
+ readonly name: "InvalidRequestException";
20
+ readonly $fault: "client";
21
+ Message?: string | undefined;
22
+ constructor(
23
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
24
+ );
25
+ }
26
+ export declare class ResourceAlreadyExistsException extends __BaseException {
27
+ readonly name: "ResourceAlreadyExistsException";
28
+ readonly $fault: "client";
29
+ Message?: string | undefined;
30
+ constructor(
31
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
32
+ );
33
+ }
34
+ export declare class ResourceLimitExceededException extends __BaseException {
35
+ readonly name: "ResourceLimitExceededException";
36
+ readonly $fault: "client";
37
+ Message?: string | undefined;
38
+ constructor(
39
+ opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
40
+ );
41
+ }
42
+ export declare class ThrottlingException extends __BaseException {
43
+ readonly name: "ThrottlingException";
44
+ readonly $fault: "client";
45
+ constructor(
46
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
47
+ );
48
+ }
49
+ export declare class TooManyTagsException extends __BaseException {
50
+ readonly name: "TooManyTagsException";
51
+ readonly $fault: "client";
52
+ Message?: string | undefined;
53
+ ResourceName?: string | undefined;
54
+ constructor(
55
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
56
+ );
57
+ }
58
+ export declare class ResourceNotFoundException extends __BaseException {
59
+ readonly name: "ResourceNotFoundException";
60
+ readonly $fault: "client";
61
+ Message?: string | undefined;
62
+ ResourceName?: string | undefined;
63
+ constructor(
64
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
65
+ );
66
+ }
67
+ export declare class ResourceNotReadyException extends __BaseException {
68
+ readonly name: "ResourceNotReadyException";
69
+ readonly $fault: "client";
70
+ Message?: string | undefined;
71
+ constructor(
72
+ opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
73
+ );
74
+ }
75
+ export declare class IllegalActionException extends __BaseException {
76
+ readonly name: "IllegalActionException";
77
+ readonly $fault: "client";
78
+ Message?: string | undefined;
79
+ constructor(
80
+ opts: __ExceptionOptionType<IllegalActionException, __BaseException>
81
+ );
82
+ }