@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.
- package/CHANGELOG.md +20 -0
- package/dist-cjs/protocols/Aws_json1_1.js +26 -20
- package/dist-es/CloudHSM.js +82 -89
- package/dist-es/CloudHSMClient.js +22 -28
- package/dist-es/commands/AddTagsToResourceCommand.js +21 -28
- package/dist-es/commands/CreateHapgCommand.js +21 -28
- package/dist-es/commands/CreateHsmCommand.js +21 -28
- package/dist-es/commands/CreateLunaClientCommand.js +21 -28
- package/dist-es/commands/DeleteHapgCommand.js +21 -28
- package/dist-es/commands/DeleteHsmCommand.js +21 -28
- package/dist-es/commands/DeleteLunaClientCommand.js +21 -28
- package/dist-es/commands/DescribeHapgCommand.js +21 -28
- package/dist-es/commands/DescribeHsmCommand.js +21 -28
- package/dist-es/commands/DescribeLunaClientCommand.js +21 -28
- package/dist-es/commands/GetConfigCommand.js +21 -28
- package/dist-es/commands/ListAvailableZonesCommand.js +21 -28
- package/dist-es/commands/ListHapgsCommand.js +21 -28
- package/dist-es/commands/ListHsmsCommand.js +21 -28
- package/dist-es/commands/ListLunaClientsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ModifyHapgCommand.js +21 -28
- package/dist-es/commands/ModifyHsmCommand.js +21 -28
- package/dist-es/commands/ModifyLunaClientCommand.js +21 -28
- package/dist-es/commands/RemoveTagsFromResourceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CloudHSMServiceException.js +5 -10
- package/dist-es/models/models_0.js +159 -78
- package/dist-es/protocols/Aws_json1_1.js +1192 -1578
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- 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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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) => {
|
package/dist-es/CloudHSM.js
CHANGED
|
@@ -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
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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(
|
|
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
|
-
|
|
43
|
-
|
|
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(
|
|
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
|
-
|
|
57
|
-
|
|
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(
|
|
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
|
-
|
|
71
|
-
|
|
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(
|
|
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
|
-
|
|
85
|
-
|
|
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(
|
|
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
|
-
|
|
99
|
-
|
|
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(
|
|
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
|
-
|
|
113
|
-
|
|
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(
|
|
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
|
-
|
|
127
|
-
|
|
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(
|
|
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
|
-
|
|
141
|
-
|
|
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(
|
|
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
|
-
|
|
155
|
-
|
|
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(
|
|
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
|
-
|
|
169
|
-
|
|
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(
|
|
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
|
-
|
|
183
|
-
|
|
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(
|
|
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
|
-
|
|
197
|
-
|
|
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(
|
|
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
|
-
|
|
211
|
-
|
|
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(
|
|
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
|
-
|
|
225
|
-
|
|
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(
|
|
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
|
-
|
|
239
|
-
|
|
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(
|
|
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
|
-
|
|
253
|
-
|
|
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(
|
|
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
|
-
|
|
267
|
-
|
|
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(
|
|
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
|
-
|
|
281
|
-
|
|
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(
|
|
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
|
-
|
|
295
|
-
|
|
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(
|
|
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
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}(__Client));
|
|
39
|
-
export { CloudHSMClient };
|
|
30
|
+
destroy() {
|
|
31
|
+
super.destroy();
|
|
32
|
+
}
|
|
33
|
+
}
|