@aws-sdk/client-cloudhsm 3.180.0 → 3.183.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 (33) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +26 -20
  3. package/dist-es/CloudHSM.js +82 -89
  4. package/dist-es/CloudHSMClient.js +22 -28
  5. package/dist-es/commands/AddTagsToResourceCommand.js +21 -28
  6. package/dist-es/commands/CreateHapgCommand.js +21 -28
  7. package/dist-es/commands/CreateHsmCommand.js +21 -28
  8. package/dist-es/commands/CreateLunaClientCommand.js +21 -28
  9. package/dist-es/commands/DeleteHapgCommand.js +21 -28
  10. package/dist-es/commands/DeleteHsmCommand.js +21 -28
  11. package/dist-es/commands/DeleteLunaClientCommand.js +21 -28
  12. package/dist-es/commands/DescribeHapgCommand.js +21 -28
  13. package/dist-es/commands/DescribeHsmCommand.js +21 -28
  14. package/dist-es/commands/DescribeLunaClientCommand.js +21 -28
  15. package/dist-es/commands/GetConfigCommand.js +21 -28
  16. package/dist-es/commands/ListAvailableZonesCommand.js +21 -28
  17. package/dist-es/commands/ListHapgsCommand.js +21 -28
  18. package/dist-es/commands/ListHsmsCommand.js +21 -28
  19. package/dist-es/commands/ListLunaClientsCommand.js +21 -28
  20. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  21. package/dist-es/commands/ModifyHapgCommand.js +21 -28
  22. package/dist-es/commands/ModifyHsmCommand.js +21 -28
  23. package/dist-es/commands/ModifyLunaClientCommand.js +21 -28
  24. package/dist-es/commands/RemoveTagsFromResourceCommand.js +21 -28
  25. package/dist-es/endpoints.js +8 -8
  26. package/dist-es/models/CloudHSMServiceException.js +5 -10
  27. package/dist-es/models/models_0.js +159 -78
  28. package/dist-es/protocols/Aws_json1_1.js +1192 -1578
  29. package/dist-es/runtimeConfig.browser.js +26 -12
  30. package/dist-es/runtimeConfig.js +30 -12
  31. package/dist-es/runtimeConfig.native.js +8 -5
  32. package/dist-es/runtimeConfig.shared.js +8 -11
  33. package/package.json +33 -33
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-cloudhsm
9
+
10
+
11
+
12
+
13
+
14
+ # [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **clients:** make parseErrorBody async ([#3999](https://github.com/aws/aws-sdk-js-v3/issues/3999)) ([2558c93](https://github.com/aws/aws-sdk-js-v3/commit/2558c93c050357ac6dc47aa0452b15b12ebfd676))
20
+ * **clients:** populate message field when parsing errors ([#3995](https://github.com/aws/aws-sdk-js-v3/issues/3995)) ([02e47f1](https://github.com/aws/aws-sdk-js-v3/commit/02e47f14397ae0a5d2e2883350d038b307fdcdb4))
21
+
22
+
23
+
24
+
25
+
6
26
  # [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
7
27
 
8
28
  **Note:** Version bump only for package @aws-sdk/client-cloudhsm
@@ -222,7 +222,7 @@ exports.deserializeAws_json1_1AddTagsToResourceCommand = deserializeAws_json1_1A
222
222
  const deserializeAws_json1_1AddTagsToResourceCommandError = async (output, context) => {
223
223
  const parsedOutput = {
224
224
  ...output,
225
- body: await parseBody(output.body, context),
225
+ body: await parseErrorBody(output.body, context),
226
226
  };
227
227
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
228
228
  switch (errorCode) {
@@ -262,7 +262,7 @@ exports.deserializeAws_json1_1CreateHapgCommand = deserializeAws_json1_1CreateHa
262
262
  const deserializeAws_json1_1CreateHapgCommandError = async (output, context) => {
263
263
  const parsedOutput = {
264
264
  ...output,
265
- body: await parseBody(output.body, context),
265
+ body: await parseErrorBody(output.body, context),
266
266
  };
267
267
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
268
268
  switch (errorCode) {
@@ -302,7 +302,7 @@ exports.deserializeAws_json1_1CreateHsmCommand = deserializeAws_json1_1CreateHsm
302
302
  const deserializeAws_json1_1CreateHsmCommandError = async (output, context) => {
303
303
  const parsedOutput = {
304
304
  ...output,
305
- body: await parseBody(output.body, context),
305
+ body: await parseErrorBody(output.body, context),
306
306
  };
307
307
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
308
308
  switch (errorCode) {
@@ -342,7 +342,7 @@ exports.deserializeAws_json1_1CreateLunaClientCommand = deserializeAws_json1_1Cr
342
342
  const deserializeAws_json1_1CreateLunaClientCommandError = async (output, context) => {
343
343
  const parsedOutput = {
344
344
  ...output,
345
- body: await parseBody(output.body, context),
345
+ body: await parseErrorBody(output.body, context),
346
346
  };
347
347
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
348
348
  switch (errorCode) {
@@ -382,7 +382,7 @@ exports.deserializeAws_json1_1DeleteHapgCommand = deserializeAws_json1_1DeleteHa
382
382
  const deserializeAws_json1_1DeleteHapgCommandError = async (output, context) => {
383
383
  const parsedOutput = {
384
384
  ...output,
385
- body: await parseBody(output.body, context),
385
+ body: await parseErrorBody(output.body, context),
386
386
  };
387
387
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
388
388
  switch (errorCode) {
@@ -422,7 +422,7 @@ exports.deserializeAws_json1_1DeleteHsmCommand = deserializeAws_json1_1DeleteHsm
422
422
  const deserializeAws_json1_1DeleteHsmCommandError = async (output, context) => {
423
423
  const parsedOutput = {
424
424
  ...output,
425
- body: await parseBody(output.body, context),
425
+ body: await parseErrorBody(output.body, context),
426
426
  };
427
427
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
428
428
  switch (errorCode) {
@@ -462,7 +462,7 @@ exports.deserializeAws_json1_1DeleteLunaClientCommand = deserializeAws_json1_1De
462
462
  const deserializeAws_json1_1DeleteLunaClientCommandError = async (output, context) => {
463
463
  const parsedOutput = {
464
464
  ...output,
465
- body: await parseBody(output.body, context),
465
+ body: await parseErrorBody(output.body, context),
466
466
  };
467
467
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
468
468
  switch (errorCode) {
@@ -502,7 +502,7 @@ exports.deserializeAws_json1_1DescribeHapgCommand = deserializeAws_json1_1Descri
502
502
  const deserializeAws_json1_1DescribeHapgCommandError = async (output, context) => {
503
503
  const parsedOutput = {
504
504
  ...output,
505
- body: await parseBody(output.body, context),
505
+ body: await parseErrorBody(output.body, context),
506
506
  };
507
507
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
508
508
  switch (errorCode) {
@@ -542,7 +542,7 @@ exports.deserializeAws_json1_1DescribeHsmCommand = deserializeAws_json1_1Describ
542
542
  const deserializeAws_json1_1DescribeHsmCommandError = async (output, context) => {
543
543
  const parsedOutput = {
544
544
  ...output,
545
- body: await parseBody(output.body, context),
545
+ body: await parseErrorBody(output.body, context),
546
546
  };
547
547
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
548
548
  switch (errorCode) {
@@ -582,7 +582,7 @@ exports.deserializeAws_json1_1DescribeLunaClientCommand = deserializeAws_json1_1
582
582
  const deserializeAws_json1_1DescribeLunaClientCommandError = async (output, context) => {
583
583
  const parsedOutput = {
584
584
  ...output,
585
- body: await parseBody(output.body, context),
585
+ body: await parseErrorBody(output.body, context),
586
586
  };
587
587
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
588
588
  switch (errorCode) {
@@ -622,7 +622,7 @@ exports.deserializeAws_json1_1GetConfigCommand = deserializeAws_json1_1GetConfig
622
622
  const deserializeAws_json1_1GetConfigCommandError = async (output, context) => {
623
623
  const parsedOutput = {
624
624
  ...output,
625
- body: await parseBody(output.body, context),
625
+ body: await parseErrorBody(output.body, context),
626
626
  };
627
627
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
628
628
  switch (errorCode) {
@@ -662,7 +662,7 @@ exports.deserializeAws_json1_1ListAvailableZonesCommand = deserializeAws_json1_1
662
662
  const deserializeAws_json1_1ListAvailableZonesCommandError = async (output, context) => {
663
663
  const parsedOutput = {
664
664
  ...output,
665
- body: await parseBody(output.body, context),
665
+ body: await parseErrorBody(output.body, context),
666
666
  };
667
667
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
668
668
  switch (errorCode) {
@@ -702,7 +702,7 @@ exports.deserializeAws_json1_1ListHapgsCommand = deserializeAws_json1_1ListHapgs
702
702
  const deserializeAws_json1_1ListHapgsCommandError = async (output, context) => {
703
703
  const parsedOutput = {
704
704
  ...output,
705
- body: await parseBody(output.body, context),
705
+ body: await parseErrorBody(output.body, context),
706
706
  };
707
707
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
708
708
  switch (errorCode) {
@@ -742,7 +742,7 @@ exports.deserializeAws_json1_1ListHsmsCommand = deserializeAws_json1_1ListHsmsCo
742
742
  const deserializeAws_json1_1ListHsmsCommandError = async (output, context) => {
743
743
  const parsedOutput = {
744
744
  ...output,
745
- body: await parseBody(output.body, context),
745
+ body: await parseErrorBody(output.body, context),
746
746
  };
747
747
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
748
748
  switch (errorCode) {
@@ -782,7 +782,7 @@ exports.deserializeAws_json1_1ListLunaClientsCommand = deserializeAws_json1_1Lis
782
782
  const deserializeAws_json1_1ListLunaClientsCommandError = async (output, context) => {
783
783
  const parsedOutput = {
784
784
  ...output,
785
- body: await parseBody(output.body, context),
785
+ body: await parseErrorBody(output.body, context),
786
786
  };
787
787
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
788
788
  switch (errorCode) {
@@ -822,7 +822,7 @@ exports.deserializeAws_json1_1ListTagsForResourceCommand = deserializeAws_json1_
822
822
  const deserializeAws_json1_1ListTagsForResourceCommandError = async (output, context) => {
823
823
  const parsedOutput = {
824
824
  ...output,
825
- body: await parseBody(output.body, context),
825
+ body: await parseErrorBody(output.body, context),
826
826
  };
827
827
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
828
828
  switch (errorCode) {
@@ -862,7 +862,7 @@ exports.deserializeAws_json1_1ModifyHapgCommand = deserializeAws_json1_1ModifyHa
862
862
  const deserializeAws_json1_1ModifyHapgCommandError = async (output, context) => {
863
863
  const parsedOutput = {
864
864
  ...output,
865
- body: await parseBody(output.body, context),
865
+ body: await parseErrorBody(output.body, context),
866
866
  };
867
867
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
868
868
  switch (errorCode) {
@@ -902,7 +902,7 @@ exports.deserializeAws_json1_1ModifyHsmCommand = deserializeAws_json1_1ModifyHsm
902
902
  const deserializeAws_json1_1ModifyHsmCommandError = async (output, context) => {
903
903
  const parsedOutput = {
904
904
  ...output,
905
- body: await parseBody(output.body, context),
905
+ body: await parseErrorBody(output.body, context),
906
906
  };
907
907
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
908
908
  switch (errorCode) {
@@ -942,7 +942,7 @@ exports.deserializeAws_json1_1ModifyLunaClientCommand = deserializeAws_json1_1Mo
942
942
  const deserializeAws_json1_1ModifyLunaClientCommandError = async (output, context) => {
943
943
  const parsedOutput = {
944
944
  ...output,
945
- body: await parseBody(output.body, context),
945
+ body: await parseErrorBody(output.body, context),
946
946
  };
947
947
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
948
948
  switch (errorCode) {
@@ -976,7 +976,7 @@ exports.deserializeAws_json1_1RemoveTagsFromResourceCommand = deserializeAws_jso
976
976
  const deserializeAws_json1_1RemoveTagsFromResourceCommandError = async (output, context) => {
977
977
  const parsedOutput = {
978
978
  ...output,
979
- body: await parseBody(output.body, context),
979
+ body: await parseErrorBody(output.body, context),
980
980
  };
981
981
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
982
982
  switch (errorCode) {
@@ -1468,6 +1468,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
1468
1468
  }
1469
1469
  return {};
1470
1470
  });
1471
+ const parseErrorBody = async (errorBody, context) => {
1472
+ var _a;
1473
+ const value = await parseBody(errorBody, context);
1474
+ value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
1475
+ return value;
1476
+ };
1471
1477
  const loadRestJsonErrorCode = (output, data) => {
1472
1478
  const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
1473
1479
  const sanitizeErrorCode = (rawValue) => {
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { CloudHSMClient } from "./CloudHSMClient";
3
2
  import { AddTagsToResourceCommand, } from "./commands/AddTagsToResourceCommand";
4
3
  import { CreateHapgCommand } from "./commands/CreateHapgCommand";
@@ -20,291 +19,285 @@ import { ModifyHapgCommand } from "./commands/ModifyHapgCommand";
20
19
  import { ModifyHsmCommand } from "./commands/ModifyHsmCommand";
21
20
  import { ModifyLunaClientCommand, } from "./commands/ModifyLunaClientCommand";
22
21
  import { RemoveTagsFromResourceCommand, } from "./commands/RemoveTagsFromResourceCommand";
23
- var CloudHSM = (function (_super) {
24
- __extends(CloudHSM, _super);
25
- function CloudHSM() {
26
- return _super !== null && _super.apply(this, arguments) || this;
27
- }
28
- CloudHSM.prototype.addTagsToResource = function (args, optionsOrCb, cb) {
29
- var command = new AddTagsToResourceCommand(args);
22
+ export class CloudHSM extends CloudHSMClient {
23
+ addTagsToResource(args, optionsOrCb, cb) {
24
+ const command = new AddTagsToResourceCommand(args);
30
25
  if (typeof optionsOrCb === "function") {
31
26
  this.send(command, optionsOrCb);
32
27
  }
33
28
  else if (typeof cb === "function") {
34
29
  if (typeof optionsOrCb !== "object")
35
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
30
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
36
31
  this.send(command, optionsOrCb || {}, cb);
37
32
  }
38
33
  else {
39
34
  return this.send(command, optionsOrCb);
40
35
  }
41
- };
42
- CloudHSM.prototype.createHapg = function (args, optionsOrCb, cb) {
43
- var command = new CreateHapgCommand(args);
36
+ }
37
+ createHapg(args, optionsOrCb, cb) {
38
+ const command = new CreateHapgCommand(args);
44
39
  if (typeof optionsOrCb === "function") {
45
40
  this.send(command, optionsOrCb);
46
41
  }
47
42
  else if (typeof cb === "function") {
48
43
  if (typeof optionsOrCb !== "object")
49
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
44
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
50
45
  this.send(command, optionsOrCb || {}, cb);
51
46
  }
52
47
  else {
53
48
  return this.send(command, optionsOrCb);
54
49
  }
55
- };
56
- CloudHSM.prototype.createHsm = function (args, optionsOrCb, cb) {
57
- var command = new CreateHsmCommand(args);
50
+ }
51
+ createHsm(args, optionsOrCb, cb) {
52
+ const command = new CreateHsmCommand(args);
58
53
  if (typeof optionsOrCb === "function") {
59
54
  this.send(command, optionsOrCb);
60
55
  }
61
56
  else if (typeof cb === "function") {
62
57
  if (typeof optionsOrCb !== "object")
63
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
58
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
64
59
  this.send(command, optionsOrCb || {}, cb);
65
60
  }
66
61
  else {
67
62
  return this.send(command, optionsOrCb);
68
63
  }
69
- };
70
- CloudHSM.prototype.createLunaClient = function (args, optionsOrCb, cb) {
71
- var command = new CreateLunaClientCommand(args);
64
+ }
65
+ createLunaClient(args, optionsOrCb, cb) {
66
+ const command = new CreateLunaClientCommand(args);
72
67
  if (typeof optionsOrCb === "function") {
73
68
  this.send(command, optionsOrCb);
74
69
  }
75
70
  else if (typeof cb === "function") {
76
71
  if (typeof optionsOrCb !== "object")
77
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
72
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
78
73
  this.send(command, optionsOrCb || {}, cb);
79
74
  }
80
75
  else {
81
76
  return this.send(command, optionsOrCb);
82
77
  }
83
- };
84
- CloudHSM.prototype.deleteHapg = function (args, optionsOrCb, cb) {
85
- var command = new DeleteHapgCommand(args);
78
+ }
79
+ deleteHapg(args, optionsOrCb, cb) {
80
+ const command = new DeleteHapgCommand(args);
86
81
  if (typeof optionsOrCb === "function") {
87
82
  this.send(command, optionsOrCb);
88
83
  }
89
84
  else if (typeof cb === "function") {
90
85
  if (typeof optionsOrCb !== "object")
91
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
86
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
92
87
  this.send(command, optionsOrCb || {}, cb);
93
88
  }
94
89
  else {
95
90
  return this.send(command, optionsOrCb);
96
91
  }
97
- };
98
- CloudHSM.prototype.deleteHsm = function (args, optionsOrCb, cb) {
99
- var command = new DeleteHsmCommand(args);
92
+ }
93
+ deleteHsm(args, optionsOrCb, cb) {
94
+ const command = new DeleteHsmCommand(args);
100
95
  if (typeof optionsOrCb === "function") {
101
96
  this.send(command, optionsOrCb);
102
97
  }
103
98
  else if (typeof cb === "function") {
104
99
  if (typeof optionsOrCb !== "object")
105
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
100
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
106
101
  this.send(command, optionsOrCb || {}, cb);
107
102
  }
108
103
  else {
109
104
  return this.send(command, optionsOrCb);
110
105
  }
111
- };
112
- CloudHSM.prototype.deleteLunaClient = function (args, optionsOrCb, cb) {
113
- var command = new DeleteLunaClientCommand(args);
106
+ }
107
+ deleteLunaClient(args, optionsOrCb, cb) {
108
+ const command = new DeleteLunaClientCommand(args);
114
109
  if (typeof optionsOrCb === "function") {
115
110
  this.send(command, optionsOrCb);
116
111
  }
117
112
  else if (typeof cb === "function") {
118
113
  if (typeof optionsOrCb !== "object")
119
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
114
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
120
115
  this.send(command, optionsOrCb || {}, cb);
121
116
  }
122
117
  else {
123
118
  return this.send(command, optionsOrCb);
124
119
  }
125
- };
126
- CloudHSM.prototype.describeHapg = function (args, optionsOrCb, cb) {
127
- var command = new DescribeHapgCommand(args);
120
+ }
121
+ describeHapg(args, optionsOrCb, cb) {
122
+ const command = new DescribeHapgCommand(args);
128
123
  if (typeof optionsOrCb === "function") {
129
124
  this.send(command, optionsOrCb);
130
125
  }
131
126
  else if (typeof cb === "function") {
132
127
  if (typeof optionsOrCb !== "object")
133
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
128
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
134
129
  this.send(command, optionsOrCb || {}, cb);
135
130
  }
136
131
  else {
137
132
  return this.send(command, optionsOrCb);
138
133
  }
139
- };
140
- CloudHSM.prototype.describeHsm = function (args, optionsOrCb, cb) {
141
- var command = new DescribeHsmCommand(args);
134
+ }
135
+ describeHsm(args, optionsOrCb, cb) {
136
+ const command = new DescribeHsmCommand(args);
142
137
  if (typeof optionsOrCb === "function") {
143
138
  this.send(command, optionsOrCb);
144
139
  }
145
140
  else if (typeof cb === "function") {
146
141
  if (typeof optionsOrCb !== "object")
147
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
142
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
148
143
  this.send(command, optionsOrCb || {}, cb);
149
144
  }
150
145
  else {
151
146
  return this.send(command, optionsOrCb);
152
147
  }
153
- };
154
- CloudHSM.prototype.describeLunaClient = function (args, optionsOrCb, cb) {
155
- var command = new DescribeLunaClientCommand(args);
148
+ }
149
+ describeLunaClient(args, optionsOrCb, cb) {
150
+ const command = new DescribeLunaClientCommand(args);
156
151
  if (typeof optionsOrCb === "function") {
157
152
  this.send(command, optionsOrCb);
158
153
  }
159
154
  else if (typeof cb === "function") {
160
155
  if (typeof optionsOrCb !== "object")
161
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
156
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
162
157
  this.send(command, optionsOrCb || {}, cb);
163
158
  }
164
159
  else {
165
160
  return this.send(command, optionsOrCb);
166
161
  }
167
- };
168
- CloudHSM.prototype.getConfig = function (args, optionsOrCb, cb) {
169
- var command = new GetConfigCommand(args);
162
+ }
163
+ getConfig(args, optionsOrCb, cb) {
164
+ const command = new GetConfigCommand(args);
170
165
  if (typeof optionsOrCb === "function") {
171
166
  this.send(command, optionsOrCb);
172
167
  }
173
168
  else if (typeof cb === "function") {
174
169
  if (typeof optionsOrCb !== "object")
175
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
170
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
176
171
  this.send(command, optionsOrCb || {}, cb);
177
172
  }
178
173
  else {
179
174
  return this.send(command, optionsOrCb);
180
175
  }
181
- };
182
- CloudHSM.prototype.listAvailableZones = function (args, optionsOrCb, cb) {
183
- var command = new ListAvailableZonesCommand(args);
176
+ }
177
+ listAvailableZones(args, optionsOrCb, cb) {
178
+ const command = new ListAvailableZonesCommand(args);
184
179
  if (typeof optionsOrCb === "function") {
185
180
  this.send(command, optionsOrCb);
186
181
  }
187
182
  else if (typeof cb === "function") {
188
183
  if (typeof optionsOrCb !== "object")
189
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
184
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
190
185
  this.send(command, optionsOrCb || {}, cb);
191
186
  }
192
187
  else {
193
188
  return this.send(command, optionsOrCb);
194
189
  }
195
- };
196
- CloudHSM.prototype.listHapgs = function (args, optionsOrCb, cb) {
197
- var command = new ListHapgsCommand(args);
190
+ }
191
+ listHapgs(args, optionsOrCb, cb) {
192
+ const command = new ListHapgsCommand(args);
198
193
  if (typeof optionsOrCb === "function") {
199
194
  this.send(command, optionsOrCb);
200
195
  }
201
196
  else if (typeof cb === "function") {
202
197
  if (typeof optionsOrCb !== "object")
203
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
198
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
204
199
  this.send(command, optionsOrCb || {}, cb);
205
200
  }
206
201
  else {
207
202
  return this.send(command, optionsOrCb);
208
203
  }
209
- };
210
- CloudHSM.prototype.listHsms = function (args, optionsOrCb, cb) {
211
- var command = new ListHsmsCommand(args);
204
+ }
205
+ listHsms(args, optionsOrCb, cb) {
206
+ const command = new ListHsmsCommand(args);
212
207
  if (typeof optionsOrCb === "function") {
213
208
  this.send(command, optionsOrCb);
214
209
  }
215
210
  else if (typeof cb === "function") {
216
211
  if (typeof optionsOrCb !== "object")
217
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
212
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
218
213
  this.send(command, optionsOrCb || {}, cb);
219
214
  }
220
215
  else {
221
216
  return this.send(command, optionsOrCb);
222
217
  }
223
- };
224
- CloudHSM.prototype.listLunaClients = function (args, optionsOrCb, cb) {
225
- var command = new ListLunaClientsCommand(args);
218
+ }
219
+ listLunaClients(args, optionsOrCb, cb) {
220
+ const command = new ListLunaClientsCommand(args);
226
221
  if (typeof optionsOrCb === "function") {
227
222
  this.send(command, optionsOrCb);
228
223
  }
229
224
  else if (typeof cb === "function") {
230
225
  if (typeof optionsOrCb !== "object")
231
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
226
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
232
227
  this.send(command, optionsOrCb || {}, cb);
233
228
  }
234
229
  else {
235
230
  return this.send(command, optionsOrCb);
236
231
  }
237
- };
238
- CloudHSM.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
239
- var command = new ListTagsForResourceCommand(args);
232
+ }
233
+ listTagsForResource(args, optionsOrCb, cb) {
234
+ const command = new ListTagsForResourceCommand(args);
240
235
  if (typeof optionsOrCb === "function") {
241
236
  this.send(command, optionsOrCb);
242
237
  }
243
238
  else if (typeof cb === "function") {
244
239
  if (typeof optionsOrCb !== "object")
245
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
240
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
246
241
  this.send(command, optionsOrCb || {}, cb);
247
242
  }
248
243
  else {
249
244
  return this.send(command, optionsOrCb);
250
245
  }
251
- };
252
- CloudHSM.prototype.modifyHapg = function (args, optionsOrCb, cb) {
253
- var command = new ModifyHapgCommand(args);
246
+ }
247
+ modifyHapg(args, optionsOrCb, cb) {
248
+ const command = new ModifyHapgCommand(args);
254
249
  if (typeof optionsOrCb === "function") {
255
250
  this.send(command, optionsOrCb);
256
251
  }
257
252
  else if (typeof cb === "function") {
258
253
  if (typeof optionsOrCb !== "object")
259
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
254
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
260
255
  this.send(command, optionsOrCb || {}, cb);
261
256
  }
262
257
  else {
263
258
  return this.send(command, optionsOrCb);
264
259
  }
265
- };
266
- CloudHSM.prototype.modifyHsm = function (args, optionsOrCb, cb) {
267
- var command = new ModifyHsmCommand(args);
260
+ }
261
+ modifyHsm(args, optionsOrCb, cb) {
262
+ const command = new ModifyHsmCommand(args);
268
263
  if (typeof optionsOrCb === "function") {
269
264
  this.send(command, optionsOrCb);
270
265
  }
271
266
  else if (typeof cb === "function") {
272
267
  if (typeof optionsOrCb !== "object")
273
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
268
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
274
269
  this.send(command, optionsOrCb || {}, cb);
275
270
  }
276
271
  else {
277
272
  return this.send(command, optionsOrCb);
278
273
  }
279
- };
280
- CloudHSM.prototype.modifyLunaClient = function (args, optionsOrCb, cb) {
281
- var command = new ModifyLunaClientCommand(args);
274
+ }
275
+ modifyLunaClient(args, optionsOrCb, cb) {
276
+ const command = new ModifyLunaClientCommand(args);
282
277
  if (typeof optionsOrCb === "function") {
283
278
  this.send(command, optionsOrCb);
284
279
  }
285
280
  else if (typeof cb === "function") {
286
281
  if (typeof optionsOrCb !== "object")
287
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
282
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
288
283
  this.send(command, optionsOrCb || {}, cb);
289
284
  }
290
285
  else {
291
286
  return this.send(command, optionsOrCb);
292
287
  }
293
- };
294
- CloudHSM.prototype.removeTagsFromResource = function (args, optionsOrCb, cb) {
295
- var command = new RemoveTagsFromResourceCommand(args);
288
+ }
289
+ removeTagsFromResource(args, optionsOrCb, cb) {
290
+ const command = new RemoveTagsFromResourceCommand(args);
296
291
  if (typeof optionsOrCb === "function") {
297
292
  this.send(command, optionsOrCb);
298
293
  }
299
294
  else if (typeof cb === "function") {
300
295
  if (typeof optionsOrCb !== "object")
301
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
296
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
302
297
  this.send(command, optionsOrCb || {}, cb);
303
298
  }
304
299
  else {
305
300
  return this.send(command, optionsOrCb);
306
301
  }
307
- };
308
- return CloudHSM;
309
- }(CloudHSMClient));
310
- export { CloudHSM };
302
+ }
303
+ }
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
3
2
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
3
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -9,31 +8,26 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
9
8
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
10
9
  import { Client as __Client, } from "@aws-sdk/smithy-client";
11
10
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
12
- var CloudHSMClient = (function (_super) {
13
- __extends(CloudHSMClient, _super);
14
- function CloudHSMClient(configuration) {
15
- var _this = this;
16
- var _config_0 = __getRuntimeConfig(configuration);
17
- var _config_1 = resolveRegionConfig(_config_0);
18
- var _config_2 = resolveEndpointsConfig(_config_1);
19
- var _config_3 = resolveRetryConfig(_config_2);
20
- var _config_4 = resolveHostHeaderConfig(_config_3);
21
- var _config_5 = resolveAwsAuthConfig(_config_4);
22
- var _config_6 = resolveUserAgentConfig(_config_5);
23
- _this = _super.call(this, _config_6) || this;
24
- _this.config = _config_6;
25
- _this.middlewareStack.use(getRetryPlugin(_this.config));
26
- _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
- _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
- _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
- _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
- _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
- _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
- return _this;
11
+ export class CloudHSMClient extends __Client {
12
+ constructor(configuration) {
13
+ const _config_0 = __getRuntimeConfig(configuration);
14
+ const _config_1 = resolveRegionConfig(_config_0);
15
+ const _config_2 = resolveEndpointsConfig(_config_1);
16
+ const _config_3 = resolveRetryConfig(_config_2);
17
+ const _config_4 = resolveHostHeaderConfig(_config_3);
18
+ const _config_5 = resolveAwsAuthConfig(_config_4);
19
+ const _config_6 = resolveUserAgentConfig(_config_5);
20
+ super(_config_6);
21
+ this.config = _config_6;
22
+ this.middlewareStack.use(getRetryPlugin(this.config));
23
+ this.middlewareStack.use(getContentLengthPlugin(this.config));
24
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
+ this.middlewareStack.use(getLoggerPlugin(this.config));
26
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
+ this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
+ this.middlewareStack.use(getUserAgentPlugin(this.config));
33
29
  }
34
- CloudHSMClient.prototype.destroy = function () {
35
- _super.prototype.destroy.call(this);
36
- };
37
- return CloudHSMClient;
38
- }(__Client));
39
- export { CloudHSMClient };
30
+ destroy() {
31
+ super.destroy();
32
+ }
33
+ }