@aws-sdk/client-ssm 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.
Files changed (35) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/SSMServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +881 -5
  5. package/dist-cjs/models/models_1.js +789 -5
  6. package/dist-cjs/models/models_2.js +29 -1
  7. package/dist-cjs/protocols/Aws_json1_1.js +1611 -5052
  8. package/dist-es/index.js +1 -0
  9. package/dist-es/models/SSMServiceException.js +12 -0
  10. package/dist-es/models/models_0.js +813 -1
  11. package/dist-es/models/models_1.js +727 -1
  12. package/dist-es/models/models_2.js +27 -1
  13. package/dist-es/protocols/Aws_json1_1.js +3192 -5352
  14. package/dist-types/SSM.d.ts +2 -2
  15. package/dist-types/SSMClient.d.ts +2 -2
  16. package/dist-types/commands/TerminateSessionCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateAssociationCommand.d.ts +1 -1
  18. package/dist-types/index.d.ts +1 -0
  19. package/dist-types/models/SSMServiceException.d.ts +10 -0
  20. package/dist-types/models/models_0.d.ts +470 -200
  21. package/dist-types/models/models_1.d.ts +441 -222
  22. package/dist-types/models/models_2.d.ts +31 -20
  23. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  24. package/dist-types/runtimeConfig.d.ts +1 -1
  25. package/dist-types/runtimeConfig.native.d.ts +1 -1
  26. package/dist-types/ts3.4/SSMClient.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +1 -0
  28. package/dist-types/ts3.4/models/SSMServiceException.d.ts +6 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +317 -197
  30. package/dist-types/ts3.4/models/models_1.d.ts +282 -188
  31. package/dist-types/ts3.4/models/models_2.d.ts +12 -8
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  35. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-ssm
9
+
10
+
11
+
12
+
13
+
14
+ # [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
15
+
16
+
17
+ ### Features
18
+
19
+ * **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
26
+
27
+
28
+ ### Features
29
+
30
+ * **clients:** update clients as of 2022/02/18 ([#3335](https://github.com/aws/aws-sdk-js-v3/issues/3335)) ([717b06f](https://github.com/aws/aws-sdk-js-v3/commit/717b06fc43e9876a6f8040147b75ad5da38b1e0f))
31
+
32
+
33
+
34
+
35
+
6
36
  # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
7
37
 
8
38
  **Note:** Version bump only for package @aws-sdk/client-ssm
package/dist-cjs/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SSMServiceException = void 0;
3
4
  const tslib_1 = require("tslib");
4
5
  tslib_1.__exportStar(require("./SSM"), exports);
5
6
  tslib_1.__exportStar(require("./SSMClient"), exports);
@@ -7,3 +8,5 @@ tslib_1.__exportStar(require("./commands"), exports);
7
8
  tslib_1.__exportStar(require("./models"), exports);
8
9
  tslib_1.__exportStar(require("./pagination"), exports);
9
10
  tslib_1.__exportStar(require("./waiters"), exports);
11
+ var SSMServiceException_1 = require("./models/SSMServiceException");
12
+ Object.defineProperty(exports, "SSMServiceException", { enumerable: true, get: function () { return SSMServiceException_1.SSMServiceException; } });
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SSMServiceException = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
5
+ class SSMServiceException extends smithy_client_1.ServiceException {
6
+ constructor(options) {
7
+ super(options);
8
+ Object.setPrototypeOf(this, SSMServiceException.prototype);
9
+ }
10
+ }
11
+ exports.SSMServiceException = SSMServiceException;