@aws-sdk/client-managedblockchain 3.51.0 → 3.54.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 +27 -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/ManagedBlockchainClient.d.ts +2 -2
- 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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +2 -2
- 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/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var ManagedBlockchainServiceException = (function (_super) {
|
|
4
|
+
__extends(ManagedBlockchainServiceException, _super);
|
|
5
|
+
function ManagedBlockchainServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ManagedBlockchainServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ManagedBlockchainServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ManagedBlockchainServiceException };
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
13
|
+
}
|
|
14
|
+
return AccessDeniedException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AccessDeniedException };
|
|
3
17
|
export var ThresholdComparator;
|
|
4
18
|
(function (ThresholdComparator) {
|
|
5
19
|
ThresholdComparator["GREATER_THAN"] = "GREATER_THAN";
|
|
@@ -49,6 +63,110 @@ export var CreateMemberOutput;
|
|
|
49
63
|
(function (CreateMemberOutput) {
|
|
50
64
|
CreateMemberOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
51
65
|
})(CreateMemberOutput || (CreateMemberOutput = {}));
|
|
66
|
+
var InternalServiceErrorException = (function (_super) {
|
|
67
|
+
__extends(InternalServiceErrorException, _super);
|
|
68
|
+
function InternalServiceErrorException(opts) {
|
|
69
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceErrorException", $fault: "server" }, opts)) || this;
|
|
70
|
+
_this.name = "InternalServiceErrorException";
|
|
71
|
+
_this.$fault = "server";
|
|
72
|
+
Object.setPrototypeOf(_this, InternalServiceErrorException.prototype);
|
|
73
|
+
return _this;
|
|
74
|
+
}
|
|
75
|
+
return InternalServiceErrorException;
|
|
76
|
+
}(__BaseException));
|
|
77
|
+
export { InternalServiceErrorException };
|
|
78
|
+
var InvalidRequestException = (function (_super) {
|
|
79
|
+
__extends(InvalidRequestException, _super);
|
|
80
|
+
function InvalidRequestException(opts) {
|
|
81
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
82
|
+
_this.name = "InvalidRequestException";
|
|
83
|
+
_this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
85
|
+
_this.Message = opts.Message;
|
|
86
|
+
return _this;
|
|
87
|
+
}
|
|
88
|
+
return InvalidRequestException;
|
|
89
|
+
}(__BaseException));
|
|
90
|
+
export { InvalidRequestException };
|
|
91
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
92
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
93
|
+
function ResourceAlreadyExistsException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
95
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
96
|
+
_this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
98
|
+
_this.Message = opts.Message;
|
|
99
|
+
return _this;
|
|
100
|
+
}
|
|
101
|
+
return ResourceAlreadyExistsException;
|
|
102
|
+
}(__BaseException));
|
|
103
|
+
export { ResourceAlreadyExistsException };
|
|
104
|
+
var ResourceLimitExceededException = (function (_super) {
|
|
105
|
+
__extends(ResourceLimitExceededException, _super);
|
|
106
|
+
function ResourceLimitExceededException(opts) {
|
|
107
|
+
var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
108
|
+
_this.name = "ResourceLimitExceededException";
|
|
109
|
+
_this.$fault = "client";
|
|
110
|
+
Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
|
|
111
|
+
_this.Message = opts.Message;
|
|
112
|
+
return _this;
|
|
113
|
+
}
|
|
114
|
+
return ResourceLimitExceededException;
|
|
115
|
+
}(__BaseException));
|
|
116
|
+
export { ResourceLimitExceededException };
|
|
117
|
+
var ResourceNotFoundException = (function (_super) {
|
|
118
|
+
__extends(ResourceNotFoundException, _super);
|
|
119
|
+
function ResourceNotFoundException(opts) {
|
|
120
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
121
|
+
_this.name = "ResourceNotFoundException";
|
|
122
|
+
_this.$fault = "client";
|
|
123
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
124
|
+
_this.Message = opts.Message;
|
|
125
|
+
_this.ResourceName = opts.ResourceName;
|
|
126
|
+
return _this;
|
|
127
|
+
}
|
|
128
|
+
return ResourceNotFoundException;
|
|
129
|
+
}(__BaseException));
|
|
130
|
+
export { ResourceNotFoundException };
|
|
131
|
+
var ResourceNotReadyException = (function (_super) {
|
|
132
|
+
__extends(ResourceNotReadyException, _super);
|
|
133
|
+
function ResourceNotReadyException(opts) {
|
|
134
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotReadyException", $fault: "client" }, opts)) || this;
|
|
135
|
+
_this.name = "ResourceNotReadyException";
|
|
136
|
+
_this.$fault = "client";
|
|
137
|
+
Object.setPrototypeOf(_this, ResourceNotReadyException.prototype);
|
|
138
|
+
_this.Message = opts.Message;
|
|
139
|
+
return _this;
|
|
140
|
+
}
|
|
141
|
+
return ResourceNotReadyException;
|
|
142
|
+
}(__BaseException));
|
|
143
|
+
export { ResourceNotReadyException };
|
|
144
|
+
var ThrottlingException = (function (_super) {
|
|
145
|
+
__extends(ThrottlingException, _super);
|
|
146
|
+
function ThrottlingException(opts) {
|
|
147
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
148
|
+
_this.name = "ThrottlingException";
|
|
149
|
+
_this.$fault = "client";
|
|
150
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
151
|
+
return _this;
|
|
152
|
+
}
|
|
153
|
+
return ThrottlingException;
|
|
154
|
+
}(__BaseException));
|
|
155
|
+
export { ThrottlingException };
|
|
156
|
+
var TooManyTagsException = (function (_super) {
|
|
157
|
+
__extends(TooManyTagsException, _super);
|
|
158
|
+
function TooManyTagsException(opts) {
|
|
159
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
160
|
+
_this.name = "TooManyTagsException";
|
|
161
|
+
_this.$fault = "client";
|
|
162
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
163
|
+
_this.Message = opts.Message;
|
|
164
|
+
_this.ResourceName = opts.ResourceName;
|
|
165
|
+
return _this;
|
|
166
|
+
}
|
|
167
|
+
return TooManyTagsException;
|
|
168
|
+
}(__BaseException));
|
|
169
|
+
export { TooManyTagsException };
|
|
52
170
|
export var Framework;
|
|
53
171
|
(function (Framework) {
|
|
54
172
|
Framework["ETHEREUM"] = "ETHEREUM";
|
|
@@ -260,6 +378,19 @@ export var GetProposalOutput;
|
|
|
260
378
|
(function (GetProposalOutput) {
|
|
261
379
|
GetProposalOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
380
|
})(GetProposalOutput || (GetProposalOutput = {}));
|
|
381
|
+
var IllegalActionException = (function (_super) {
|
|
382
|
+
__extends(IllegalActionException, _super);
|
|
383
|
+
function IllegalActionException(opts) {
|
|
384
|
+
var _this = _super.call(this, __assign({ name: "IllegalActionException", $fault: "client" }, opts)) || this;
|
|
385
|
+
_this.name = "IllegalActionException";
|
|
386
|
+
_this.$fault = "client";
|
|
387
|
+
Object.setPrototypeOf(_this, IllegalActionException.prototype);
|
|
388
|
+
_this.Message = opts.Message;
|
|
389
|
+
return _this;
|
|
390
|
+
}
|
|
391
|
+
return IllegalActionException;
|
|
392
|
+
}(__BaseException));
|
|
393
|
+
export { IllegalActionException };
|
|
263
394
|
export var NetworkSummary;
|
|
264
395
|
(function (NetworkSummary) {
|
|
265
396
|
NetworkSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|