@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.
- package/dist-cjs/index.js +77 -76
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +76 -0
- package/dist-es/models/errors.js +141 -0
- package/dist-es/models/models_0.js +1 -217
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +180 -0
- package/dist-types/models/errors.d.ts +144 -0
- package/dist-types/models/models_0.d.ts +1 -324
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +94 -0
- package/dist-types/ts3.4/models/errors.d.ts +82 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -176
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AccessorNetworkType: {
|
|
6
|
+
readonly ETHEREUM_GOERLI: "ETHEREUM_GOERLI";
|
|
7
|
+
readonly ETHEREUM_MAINNET: "ETHEREUM_MAINNET";
|
|
8
|
+
readonly ETHEREUM_MAINNET_AND_GOERLI: "ETHEREUM_MAINNET_AND_GOERLI";
|
|
9
|
+
readonly POLYGON_MAINNET: "POLYGON_MAINNET";
|
|
10
|
+
readonly POLYGON_MUMBAI: "POLYGON_MUMBAI";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type AccessorNetworkType = (typeof AccessorNetworkType)[keyof typeof AccessorNetworkType];
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
* @enum
|
|
19
|
+
*/
|
|
20
|
+
export declare const AccessorStatus: {
|
|
21
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
22
|
+
readonly DELETED: "DELETED";
|
|
23
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type AccessorStatus = (typeof AccessorStatus)[keyof typeof AccessorStatus];
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* @enum
|
|
32
|
+
*/
|
|
33
|
+
export declare const AccessorType: {
|
|
34
|
+
readonly BILLING_TOKEN: "BILLING_TOKEN";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType];
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
* @enum
|
|
43
|
+
*/
|
|
44
|
+
export declare const ThresholdComparator: {
|
|
45
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
46
|
+
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type ThresholdComparator = (typeof ThresholdComparator)[keyof typeof ThresholdComparator];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const Framework: {
|
|
57
|
+
readonly ETHEREUM: "ETHEREUM";
|
|
58
|
+
readonly HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC";
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* @enum
|
|
67
|
+
*/
|
|
68
|
+
export declare const Edition: {
|
|
69
|
+
readonly STANDARD: "STANDARD";
|
|
70
|
+
readonly STARTER: "STARTER";
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export type Edition = (typeof Edition)[keyof typeof Edition];
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* @enum
|
|
79
|
+
*/
|
|
80
|
+
export declare const StateDBType: {
|
|
81
|
+
readonly CouchDB: "CouchDB";
|
|
82
|
+
readonly LevelDB: "LevelDB";
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType];
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
* @enum
|
|
91
|
+
*/
|
|
92
|
+
export declare const MemberStatus: {
|
|
93
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
94
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
95
|
+
readonly CREATING: "CREATING";
|
|
96
|
+
readonly DELETED: "DELETED";
|
|
97
|
+
readonly DELETING: "DELETING";
|
|
98
|
+
readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
|
|
99
|
+
readonly UPDATING: "UPDATING";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* @enum
|
|
108
|
+
*/
|
|
109
|
+
export declare const NetworkStatus: {
|
|
110
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
111
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
112
|
+
readonly CREATING: "CREATING";
|
|
113
|
+
readonly DELETED: "DELETED";
|
|
114
|
+
readonly DELETING: "DELETING";
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus];
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
* @enum
|
|
123
|
+
*/
|
|
124
|
+
export declare const NodeStatus: {
|
|
125
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
126
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
127
|
+
readonly CREATING: "CREATING";
|
|
128
|
+
readonly DELETED: "DELETED";
|
|
129
|
+
readonly DELETING: "DELETING";
|
|
130
|
+
readonly FAILED: "FAILED";
|
|
131
|
+
readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
|
|
132
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
133
|
+
readonly UPDATING: "UPDATING";
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus];
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
* @enum
|
|
142
|
+
*/
|
|
143
|
+
export declare const ProposalStatus: {
|
|
144
|
+
readonly ACTION_FAILED: "ACTION_FAILED";
|
|
145
|
+
readonly APPROVED: "APPROVED";
|
|
146
|
+
readonly EXPIRED: "EXPIRED";
|
|
147
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
148
|
+
readonly REJECTED: "REJECTED";
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
export type ProposalStatus = (typeof ProposalStatus)[keyof typeof ProposalStatus];
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* @enum
|
|
157
|
+
*/
|
|
158
|
+
export declare const InvitationStatus: {
|
|
159
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
160
|
+
readonly ACCEPTING: "ACCEPTING";
|
|
161
|
+
readonly EXPIRED: "EXPIRED";
|
|
162
|
+
readonly PENDING: "PENDING";
|
|
163
|
+
readonly REJECTED: "REJECTED";
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
export type InvitationStatus = (typeof InvitationStatus)[keyof typeof InvitationStatus];
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
* @enum
|
|
172
|
+
*/
|
|
173
|
+
export declare const VoteValue: {
|
|
174
|
+
readonly NO: "NO";
|
|
175
|
+
readonly YES: "YES";
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];
|
|
@@ -0,0 +1,144 @@
|
|
|
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
|
+
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
21
|
+
readonly name: "InternalServiceErrorException";
|
|
22
|
+
readonly $fault: "server";
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
33
|
+
readonly name: "InvalidRequestException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
Message?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>A resource request is issued for a resource that already exists.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
46
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
Message?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>The maximum number of resources of that type already exist. Ensure the resources requested
|
|
56
|
+
* are within the boundaries of the service edition and your account limits.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
60
|
+
readonly name: "ResourceLimitExceededException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>The request or operation couldn't be performed because a service is
|
|
70
|
+
* throttling requests. The most common source of throttling errors is
|
|
71
|
+
* creating resources that exceed your service limit for this resource type.
|
|
72
|
+
* Request a limit increase or delete unused resources if possible.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class ThrottlingException extends __BaseException {
|
|
76
|
+
readonly name: "ThrottlingException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* <p></p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
88
|
+
readonly name: "TooManyTagsException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
Message?: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p></p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
ResourceName?: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
106
|
+
readonly name: "ResourceNotFoundException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
Message?: string | undefined;
|
|
109
|
+
/**
|
|
110
|
+
* <p>A requested resource doesn't exist. It may have been deleted or referenced inaccurately.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
ResourceName?: string | undefined;
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
117
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* <p>The requested resource exists but isn't in a status that can complete the operation.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
export declare class ResourceNotReadyException extends __BaseException {
|
|
124
|
+
readonly name: "ResourceNotReadyException";
|
|
125
|
+
readonly $fault: "client";
|
|
126
|
+
Message?: string | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
130
|
+
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* <p></p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
export declare class IllegalActionException extends __BaseException {
|
|
137
|
+
readonly name: "IllegalActionException";
|
|
138
|
+
readonly $fault: "client";
|
|
139
|
+
Message?: string | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
|
|
144
|
+
}
|