@aws-sdk/client-greengrass 3.52.0 → 3.54.1
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/GreengrassServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +36 -5
- package/dist-cjs/protocols/Aws_restJson1.js +516 -1542
- package/dist-es/index.js +1 -0
- package/dist-es/models/GreengrassServiceException.js +12 -0
- package/dist-es/models/models_0.js +30 -1
- package/dist-es/protocols/Aws_restJson1.js +1315 -1857
- package/dist-types/GreengrassClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/GreengrassServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +16 -7
- 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/GreengrassClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/GreengrassServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -7
- 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 +27 -27
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 GreengrassServiceException = (function (_super) {
|
|
4
|
+
__extends(GreengrassServiceException, _super);
|
|
5
|
+
function GreengrassServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, GreengrassServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return GreengrassServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { GreengrassServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { GreengrassServiceException as __BaseException } from "./GreengrassServiceException";
|
|
2
3
|
export var ConnectivityInfo;
|
|
3
4
|
(function (ConnectivityInfo) {
|
|
4
5
|
ConnectivityInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -144,6 +145,34 @@ export var ErrorDetail;
|
|
|
144
145
|
(function (ErrorDetail) {
|
|
145
146
|
ErrorDetail.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
147
|
})(ErrorDetail || (ErrorDetail = {}));
|
|
148
|
+
var BadRequestException = (function (_super) {
|
|
149
|
+
__extends(BadRequestException, _super);
|
|
150
|
+
function BadRequestException(opts) {
|
|
151
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
152
|
+
_this.name = "BadRequestException";
|
|
153
|
+
_this.$fault = "client";
|
|
154
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
155
|
+
_this.ErrorDetails = opts.ErrorDetails;
|
|
156
|
+
_this.Message = opts.Message;
|
|
157
|
+
return _this;
|
|
158
|
+
}
|
|
159
|
+
return BadRequestException;
|
|
160
|
+
}(__BaseException));
|
|
161
|
+
export { BadRequestException };
|
|
162
|
+
var InternalServerErrorException = (function (_super) {
|
|
163
|
+
__extends(InternalServerErrorException, _super);
|
|
164
|
+
function InternalServerErrorException(opts) {
|
|
165
|
+
var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
|
|
166
|
+
_this.name = "InternalServerErrorException";
|
|
167
|
+
_this.$fault = "server";
|
|
168
|
+
Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
|
|
169
|
+
_this.ErrorDetails = opts.ErrorDetails;
|
|
170
|
+
_this.Message = opts.Message;
|
|
171
|
+
return _this;
|
|
172
|
+
}
|
|
173
|
+
return InternalServerErrorException;
|
|
174
|
+
}(__BaseException));
|
|
175
|
+
export { InternalServerErrorException };
|
|
147
176
|
export var AssociateServiceRoleToAccountRequest;
|
|
148
177
|
(function (AssociateServiceRoleToAccountRequest) {
|
|
149
178
|
AssociateServiceRoleToAccountRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|