@aws-sdk/client-cloudhsm 3.186.0 → 3.188.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 (32) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/CloudHSM.js +82 -89
  3. package/dist-es/CloudHSMClient.js +22 -28
  4. package/dist-es/commands/AddTagsToResourceCommand.js +21 -28
  5. package/dist-es/commands/CreateHapgCommand.js +21 -28
  6. package/dist-es/commands/CreateHsmCommand.js +21 -28
  7. package/dist-es/commands/CreateLunaClientCommand.js +21 -28
  8. package/dist-es/commands/DeleteHapgCommand.js +21 -28
  9. package/dist-es/commands/DeleteHsmCommand.js +21 -28
  10. package/dist-es/commands/DeleteLunaClientCommand.js +21 -28
  11. package/dist-es/commands/DescribeHapgCommand.js +21 -28
  12. package/dist-es/commands/DescribeHsmCommand.js +21 -28
  13. package/dist-es/commands/DescribeLunaClientCommand.js +21 -28
  14. package/dist-es/commands/GetConfigCommand.js +21 -28
  15. package/dist-es/commands/ListAvailableZonesCommand.js +21 -28
  16. package/dist-es/commands/ListHapgsCommand.js +21 -28
  17. package/dist-es/commands/ListHsmsCommand.js +21 -28
  18. package/dist-es/commands/ListLunaClientsCommand.js +21 -28
  19. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  20. package/dist-es/commands/ModifyHapgCommand.js +21 -28
  21. package/dist-es/commands/ModifyHsmCommand.js +21 -28
  22. package/dist-es/commands/ModifyLunaClientCommand.js +21 -28
  23. package/dist-es/commands/RemoveTagsFromResourceCommand.js +21 -28
  24. package/dist-es/endpoints.js +8 -8
  25. package/dist-es/models/CloudHSMServiceException.js +5 -10
  26. package/dist-es/models/models_0.js +159 -78
  27. package/dist-es/protocols/Aws_json1_1.js +1192 -1591
  28. package/dist-es/runtimeConfig.browser.js +26 -12
  29. package/dist-es/runtimeConfig.js +30 -12
  30. package/dist-es/runtimeConfig.native.js +8 -5
  31. package/dist-es/runtimeConfig.shared.js +8 -11
  32. package/package.json +33 -33
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-cloudhsm
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-cloudhsm
@@ -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
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { AddTagsToResourceRequestFilterSensitiveLog, AddTagsToResourceResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1AddTagsToResourceCommand, serializeAws_json1_1AddTagsToResourceCommand, } from "../protocols/Aws_json1_1";
6
- var AddTagsToResourceCommand = (function (_super) {
7
- __extends(AddTagsToResourceCommand, _super);
8
- function AddTagsToResourceCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class AddTagsToResourceCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- AddTagsToResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CloudHSMClient";
18
- var commandName = "AddTagsToResourceCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CloudHSMClient";
15
+ const commandName = "AddTagsToResourceCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: AddTagsToResourceRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: AddTagsToResourceResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- AddTagsToResourceCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1AddTagsToResourceCommand(input, context);
33
- };
34
- AddTagsToResourceCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1AddTagsToResourceCommand(output, context);
36
- };
37
- return AddTagsToResourceCommand;
38
- }($Command));
39
- export { AddTagsToResourceCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateHapgRequestFilterSensitiveLog, CreateHapgResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1CreateHapgCommand, serializeAws_json1_1CreateHapgCommand, } from "../protocols/Aws_json1_1";
6
- var CreateHapgCommand = (function (_super) {
7
- __extends(CreateHapgCommand, _super);
8
- function CreateHapgCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateHapgCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateHapgCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CloudHSMClient";
18
- var commandName = "CreateHapgCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CloudHSMClient";
15
+ const commandName = "CreateHapgCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateHapgRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateHapgResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateHapgCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1CreateHapgCommand(input, context);
33
- };
34
- CreateHapgCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1CreateHapgCommand(output, context);
36
- };
37
- return CreateHapgCommand;
38
- }($Command));
39
- export { CreateHapgCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateHsmRequestFilterSensitiveLog, CreateHsmResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1CreateHsmCommand, serializeAws_json1_1CreateHsmCommand } from "../protocols/Aws_json1_1";
6
- var CreateHsmCommand = (function (_super) {
7
- __extends(CreateHsmCommand, _super);
8
- function CreateHsmCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateHsmCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateHsmCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CloudHSMClient";
18
- var commandName = "CreateHsmCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CloudHSMClient";
15
+ const commandName = "CreateHsmCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateHsmRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateHsmResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateHsmCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1CreateHsmCommand(input, context);
33
- };
34
- CreateHsmCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1CreateHsmCommand(output, context);
36
- };
37
- return CreateHsmCommand;
38
- }($Command));
39
- export { CreateHsmCommand };
31
+ }
32
+ }