@aws-sdk/client-signer 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_restJson1.js +23 -17
- package/dist-es/Signer.js +70 -77
- package/dist-es/SignerClient.js +22 -28
- package/dist-es/commands/AddProfilePermissionCommand.js +21 -28
- package/dist-es/commands/CancelSigningProfileCommand.js +22 -29
- package/dist-es/commands/DescribeSigningJobCommand.js +21 -28
- package/dist-es/commands/GetSigningPlatformCommand.js +21 -28
- package/dist-es/commands/GetSigningProfileCommand.js +21 -28
- package/dist-es/commands/ListProfilePermissionsCommand.js +21 -28
- package/dist-es/commands/ListSigningJobsCommand.js +21 -28
- package/dist-es/commands/ListSigningPlatformsCommand.js +21 -28
- package/dist-es/commands/ListSigningProfilesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/PutSigningProfileCommand.js +21 -28
- package/dist-es/commands/RemoveProfilePermissionCommand.js +21 -28
- package/dist-es/commands/RevokeSignatureCommand.js +22 -29
- package/dist-es/commands/RevokeSigningProfileCommand.js +22 -29
- package/dist-es/commands/StartSigningJobCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SignerServiceException.js +5 -10
- package/dist-es/models/models_0.js +273 -172
- package/dist-es/pagination/ListSigningJobsPaginator.js +25 -68
- package/dist-es/pagination/ListSigningPlatformsPaginator.js +25 -68
- package/dist-es/pagination/ListSigningProfilesPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +1494 -1991
- 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/dist-es/waiters/waitForSuccessfulSigningJob.js +39 -59
- package/package.json +34 -34
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-signer
|
|
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-signer
|
|
@@ -417,7 +417,7 @@ exports.deserializeAws_restJson1AddProfilePermissionCommand = deserializeAws_res
|
|
|
417
417
|
const deserializeAws_restJson1AddProfilePermissionCommandError = async (output, context) => {
|
|
418
418
|
const parsedOutput = {
|
|
419
419
|
...output,
|
|
420
|
-
body: await
|
|
420
|
+
body: await parseErrorBody(output.body, context),
|
|
421
421
|
};
|
|
422
422
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
423
423
|
switch (errorCode) {
|
|
@@ -466,7 +466,7 @@ exports.deserializeAws_restJson1CancelSigningProfileCommand = deserializeAws_res
|
|
|
466
466
|
const deserializeAws_restJson1CancelSigningProfileCommandError = async (output, context) => {
|
|
467
467
|
const parsedOutput = {
|
|
468
468
|
...output,
|
|
469
|
-
body: await
|
|
469
|
+
body: await parseErrorBody(output.body, context),
|
|
470
470
|
};
|
|
471
471
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
472
472
|
switch (errorCode) {
|
|
@@ -563,7 +563,7 @@ exports.deserializeAws_restJson1DescribeSigningJobCommand = deserializeAws_restJ
|
|
|
563
563
|
const deserializeAws_restJson1DescribeSigningJobCommandError = async (output, context) => {
|
|
564
564
|
const parsedOutput = {
|
|
565
565
|
...output,
|
|
566
|
-
body: await
|
|
566
|
+
body: await parseErrorBody(output.body, context),
|
|
567
567
|
};
|
|
568
568
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
569
569
|
switch (errorCode) {
|
|
@@ -630,7 +630,7 @@ exports.deserializeAws_restJson1GetSigningPlatformCommand = deserializeAws_restJ
|
|
|
630
630
|
const deserializeAws_restJson1GetSigningPlatformCommandError = async (output, context) => {
|
|
631
631
|
const parsedOutput = {
|
|
632
632
|
...output,
|
|
633
|
-
body: await
|
|
633
|
+
body: await parseErrorBody(output.body, context),
|
|
634
634
|
};
|
|
635
635
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
636
636
|
switch (errorCode) {
|
|
@@ -712,7 +712,7 @@ exports.deserializeAws_restJson1GetSigningProfileCommand = deserializeAws_restJs
|
|
|
712
712
|
const deserializeAws_restJson1GetSigningProfileCommandError = async (output, context) => {
|
|
713
713
|
const parsedOutput = {
|
|
714
714
|
...output,
|
|
715
|
-
body: await
|
|
715
|
+
body: await parseErrorBody(output.body, context),
|
|
716
716
|
};
|
|
717
717
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
718
718
|
switch (errorCode) {
|
|
@@ -764,7 +764,7 @@ exports.deserializeAws_restJson1ListProfilePermissionsCommand = deserializeAws_r
|
|
|
764
764
|
const deserializeAws_restJson1ListProfilePermissionsCommandError = async (output, context) => {
|
|
765
765
|
const parsedOutput = {
|
|
766
766
|
...output,
|
|
767
|
-
body: await
|
|
767
|
+
body: await parseErrorBody(output.body, context),
|
|
768
768
|
};
|
|
769
769
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
770
770
|
switch (errorCode) {
|
|
@@ -813,7 +813,7 @@ exports.deserializeAws_restJson1ListSigningJobsCommand = deserializeAws_restJson
|
|
|
813
813
|
const deserializeAws_restJson1ListSigningJobsCommandError = async (output, context) => {
|
|
814
814
|
const parsedOutput = {
|
|
815
815
|
...output,
|
|
816
|
-
body: await
|
|
816
|
+
body: await parseErrorBody(output.body, context),
|
|
817
817
|
};
|
|
818
818
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
819
819
|
switch (errorCode) {
|
|
@@ -859,7 +859,7 @@ exports.deserializeAws_restJson1ListSigningPlatformsCommand = deserializeAws_res
|
|
|
859
859
|
const deserializeAws_restJson1ListSigningPlatformsCommandError = async (output, context) => {
|
|
860
860
|
const parsedOutput = {
|
|
861
861
|
...output,
|
|
862
|
-
body: await
|
|
862
|
+
body: await parseErrorBody(output.body, context),
|
|
863
863
|
};
|
|
864
864
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
865
865
|
switch (errorCode) {
|
|
@@ -905,7 +905,7 @@ exports.deserializeAws_restJson1ListSigningProfilesCommand = deserializeAws_rest
|
|
|
905
905
|
const deserializeAws_restJson1ListSigningProfilesCommandError = async (output, context) => {
|
|
906
906
|
const parsedOutput = {
|
|
907
907
|
...output,
|
|
908
|
-
body: await
|
|
908
|
+
body: await parseErrorBody(output.body, context),
|
|
909
909
|
};
|
|
910
910
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
911
911
|
switch (errorCode) {
|
|
@@ -945,7 +945,7 @@ exports.deserializeAws_restJson1ListTagsForResourceCommand = deserializeAws_rest
|
|
|
945
945
|
const deserializeAws_restJson1ListTagsForResourceCommandError = async (output, context) => {
|
|
946
946
|
const parsedOutput = {
|
|
947
947
|
...output,
|
|
948
|
-
body: await
|
|
948
|
+
body: await parseErrorBody(output.body, context),
|
|
949
949
|
};
|
|
950
950
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
951
951
|
switch (errorCode) {
|
|
@@ -994,7 +994,7 @@ exports.deserializeAws_restJson1PutSigningProfileCommand = deserializeAws_restJs
|
|
|
994
994
|
const deserializeAws_restJson1PutSigningProfileCommandError = async (output, context) => {
|
|
995
995
|
const parsedOutput = {
|
|
996
996
|
...output,
|
|
997
|
-
body: await
|
|
997
|
+
body: await parseErrorBody(output.body, context),
|
|
998
998
|
};
|
|
999
999
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1000
1000
|
switch (errorCode) {
|
|
@@ -1040,7 +1040,7 @@ exports.deserializeAws_restJson1RemoveProfilePermissionCommand = deserializeAws_
|
|
|
1040
1040
|
const deserializeAws_restJson1RemoveProfilePermissionCommandError = async (output, context) => {
|
|
1041
1041
|
const parsedOutput = {
|
|
1042
1042
|
...output,
|
|
1043
|
-
body: await
|
|
1043
|
+
body: await parseErrorBody(output.body, context),
|
|
1044
1044
|
};
|
|
1045
1045
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1046
1046
|
switch (errorCode) {
|
|
@@ -1086,7 +1086,7 @@ exports.deserializeAws_restJson1RevokeSignatureCommand = deserializeAws_restJson
|
|
|
1086
1086
|
const deserializeAws_restJson1RevokeSignatureCommandError = async (output, context) => {
|
|
1087
1087
|
const parsedOutput = {
|
|
1088
1088
|
...output,
|
|
1089
|
-
body: await
|
|
1089
|
+
body: await parseErrorBody(output.body, context),
|
|
1090
1090
|
};
|
|
1091
1091
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1092
1092
|
switch (errorCode) {
|
|
@@ -1129,7 +1129,7 @@ exports.deserializeAws_restJson1RevokeSigningProfileCommand = deserializeAws_res
|
|
|
1129
1129
|
const deserializeAws_restJson1RevokeSigningProfileCommandError = async (output, context) => {
|
|
1130
1130
|
const parsedOutput = {
|
|
1131
1131
|
...output,
|
|
1132
|
-
body: await
|
|
1132
|
+
body: await parseErrorBody(output.body, context),
|
|
1133
1133
|
};
|
|
1134
1134
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1135
1135
|
switch (errorCode) {
|
|
@@ -1178,7 +1178,7 @@ exports.deserializeAws_restJson1StartSigningJobCommand = deserializeAws_restJson
|
|
|
1178
1178
|
const deserializeAws_restJson1StartSigningJobCommandError = async (output, context) => {
|
|
1179
1179
|
const parsedOutput = {
|
|
1180
1180
|
...output,
|
|
1181
|
-
body: await
|
|
1181
|
+
body: await parseErrorBody(output.body, context),
|
|
1182
1182
|
};
|
|
1183
1183
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1184
1184
|
switch (errorCode) {
|
|
@@ -1224,7 +1224,7 @@ exports.deserializeAws_restJson1TagResourceCommand = deserializeAws_restJson1Tag
|
|
|
1224
1224
|
const deserializeAws_restJson1TagResourceCommandError = async (output, context) => {
|
|
1225
1225
|
const parsedOutput = {
|
|
1226
1226
|
...output,
|
|
1227
|
-
body: await
|
|
1227
|
+
body: await parseErrorBody(output.body, context),
|
|
1228
1228
|
};
|
|
1229
1229
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1230
1230
|
switch (errorCode) {
|
|
@@ -1264,7 +1264,7 @@ exports.deserializeAws_restJson1UntagResourceCommand = deserializeAws_restJson1U
|
|
|
1264
1264
|
const deserializeAws_restJson1UntagResourceCommandError = async (output, context) => {
|
|
1265
1265
|
const parsedOutput = {
|
|
1266
1266
|
...output,
|
|
1267
|
-
body: await
|
|
1267
|
+
body: await parseErrorBody(output.body, context),
|
|
1268
1268
|
};
|
|
1269
1269
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1270
1270
|
switch (errorCode) {
|
|
@@ -1801,6 +1801,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
1801
1801
|
}
|
|
1802
1802
|
return {};
|
|
1803
1803
|
});
|
|
1804
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
1805
|
+
var _a;
|
|
1806
|
+
const value = await parseBody(errorBody, context);
|
|
1807
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1808
|
+
return value;
|
|
1809
|
+
};
|
|
1804
1810
|
const loadRestJsonErrorCode = (output, data) => {
|
|
1805
1811
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1806
1812
|
const sanitizeErrorCode = (rawValue) => {
|
package/dist-es/Signer.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { AddProfilePermissionCommand, } from "./commands/AddProfilePermissionCommand";
|
|
3
2
|
import { CancelSigningProfileCommand, } from "./commands/CancelSigningProfileCommand";
|
|
4
3
|
import { DescribeSigningJobCommand, } from "./commands/DescribeSigningJobCommand";
|
|
@@ -17,249 +16,243 @@ import { StartSigningJobCommand, } from "./commands/StartSigningJobCommand";
|
|
|
17
16
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
18
17
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
19
18
|
import { SignerClient } from "./SignerClient";
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
24
|
-
}
|
|
25
|
-
Signer.prototype.addProfilePermission = function (args, optionsOrCb, cb) {
|
|
26
|
-
var command = new AddProfilePermissionCommand(args);
|
|
19
|
+
export class Signer extends SignerClient {
|
|
20
|
+
addProfilePermission(args, optionsOrCb, cb) {
|
|
21
|
+
const command = new AddProfilePermissionCommand(args);
|
|
27
22
|
if (typeof optionsOrCb === "function") {
|
|
28
23
|
this.send(command, optionsOrCb);
|
|
29
24
|
}
|
|
30
25
|
else if (typeof cb === "function") {
|
|
31
26
|
if (typeof optionsOrCb !== "object")
|
|
32
|
-
throw new Error(
|
|
27
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
33
28
|
this.send(command, optionsOrCb || {}, cb);
|
|
34
29
|
}
|
|
35
30
|
else {
|
|
36
31
|
return this.send(command, optionsOrCb);
|
|
37
32
|
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
33
|
+
}
|
|
34
|
+
cancelSigningProfile(args, optionsOrCb, cb) {
|
|
35
|
+
const command = new CancelSigningProfileCommand(args);
|
|
41
36
|
if (typeof optionsOrCb === "function") {
|
|
42
37
|
this.send(command, optionsOrCb);
|
|
43
38
|
}
|
|
44
39
|
else if (typeof cb === "function") {
|
|
45
40
|
if (typeof optionsOrCb !== "object")
|
|
46
|
-
throw new Error(
|
|
41
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
47
42
|
this.send(command, optionsOrCb || {}, cb);
|
|
48
43
|
}
|
|
49
44
|
else {
|
|
50
45
|
return this.send(command, optionsOrCb);
|
|
51
46
|
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
47
|
+
}
|
|
48
|
+
describeSigningJob(args, optionsOrCb, cb) {
|
|
49
|
+
const command = new DescribeSigningJobCommand(args);
|
|
55
50
|
if (typeof optionsOrCb === "function") {
|
|
56
51
|
this.send(command, optionsOrCb);
|
|
57
52
|
}
|
|
58
53
|
else if (typeof cb === "function") {
|
|
59
54
|
if (typeof optionsOrCb !== "object")
|
|
60
|
-
throw new Error(
|
|
55
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
61
56
|
this.send(command, optionsOrCb || {}, cb);
|
|
62
57
|
}
|
|
63
58
|
else {
|
|
64
59
|
return this.send(command, optionsOrCb);
|
|
65
60
|
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
|
|
61
|
+
}
|
|
62
|
+
getSigningPlatform(args, optionsOrCb, cb) {
|
|
63
|
+
const command = new GetSigningPlatformCommand(args);
|
|
69
64
|
if (typeof optionsOrCb === "function") {
|
|
70
65
|
this.send(command, optionsOrCb);
|
|
71
66
|
}
|
|
72
67
|
else if (typeof cb === "function") {
|
|
73
68
|
if (typeof optionsOrCb !== "object")
|
|
74
|
-
throw new Error(
|
|
69
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
75
70
|
this.send(command, optionsOrCb || {}, cb);
|
|
76
71
|
}
|
|
77
72
|
else {
|
|
78
73
|
return this.send(command, optionsOrCb);
|
|
79
74
|
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
75
|
+
}
|
|
76
|
+
getSigningProfile(args, optionsOrCb, cb) {
|
|
77
|
+
const command = new GetSigningProfileCommand(args);
|
|
83
78
|
if (typeof optionsOrCb === "function") {
|
|
84
79
|
this.send(command, optionsOrCb);
|
|
85
80
|
}
|
|
86
81
|
else if (typeof cb === "function") {
|
|
87
82
|
if (typeof optionsOrCb !== "object")
|
|
88
|
-
throw new Error(
|
|
83
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
89
84
|
this.send(command, optionsOrCb || {}, cb);
|
|
90
85
|
}
|
|
91
86
|
else {
|
|
92
87
|
return this.send(command, optionsOrCb);
|
|
93
88
|
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
|
|
89
|
+
}
|
|
90
|
+
listProfilePermissions(args, optionsOrCb, cb) {
|
|
91
|
+
const command = new ListProfilePermissionsCommand(args);
|
|
97
92
|
if (typeof optionsOrCb === "function") {
|
|
98
93
|
this.send(command, optionsOrCb);
|
|
99
94
|
}
|
|
100
95
|
else if (typeof cb === "function") {
|
|
101
96
|
if (typeof optionsOrCb !== "object")
|
|
102
|
-
throw new Error(
|
|
97
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
103
98
|
this.send(command, optionsOrCb || {}, cb);
|
|
104
99
|
}
|
|
105
100
|
else {
|
|
106
101
|
return this.send(command, optionsOrCb);
|
|
107
102
|
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
103
|
+
}
|
|
104
|
+
listSigningJobs(args, optionsOrCb, cb) {
|
|
105
|
+
const command = new ListSigningJobsCommand(args);
|
|
111
106
|
if (typeof optionsOrCb === "function") {
|
|
112
107
|
this.send(command, optionsOrCb);
|
|
113
108
|
}
|
|
114
109
|
else if (typeof cb === "function") {
|
|
115
110
|
if (typeof optionsOrCb !== "object")
|
|
116
|
-
throw new Error(
|
|
111
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
117
112
|
this.send(command, optionsOrCb || {}, cb);
|
|
118
113
|
}
|
|
119
114
|
else {
|
|
120
115
|
return this.send(command, optionsOrCb);
|
|
121
116
|
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
117
|
+
}
|
|
118
|
+
listSigningPlatforms(args, optionsOrCb, cb) {
|
|
119
|
+
const command = new ListSigningPlatformsCommand(args);
|
|
125
120
|
if (typeof optionsOrCb === "function") {
|
|
126
121
|
this.send(command, optionsOrCb);
|
|
127
122
|
}
|
|
128
123
|
else if (typeof cb === "function") {
|
|
129
124
|
if (typeof optionsOrCb !== "object")
|
|
130
|
-
throw new Error(
|
|
125
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
131
126
|
this.send(command, optionsOrCb || {}, cb);
|
|
132
127
|
}
|
|
133
128
|
else {
|
|
134
129
|
return this.send(command, optionsOrCb);
|
|
135
130
|
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
|
|
131
|
+
}
|
|
132
|
+
listSigningProfiles(args, optionsOrCb, cb) {
|
|
133
|
+
const command = new ListSigningProfilesCommand(args);
|
|
139
134
|
if (typeof optionsOrCb === "function") {
|
|
140
135
|
this.send(command, optionsOrCb);
|
|
141
136
|
}
|
|
142
137
|
else if (typeof cb === "function") {
|
|
143
138
|
if (typeof optionsOrCb !== "object")
|
|
144
|
-
throw new Error(
|
|
139
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
145
140
|
this.send(command, optionsOrCb || {}, cb);
|
|
146
141
|
}
|
|
147
142
|
else {
|
|
148
143
|
return this.send(command, optionsOrCb);
|
|
149
144
|
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
145
|
+
}
|
|
146
|
+
listTagsForResource(args, optionsOrCb, cb) {
|
|
147
|
+
const command = new ListTagsForResourceCommand(args);
|
|
153
148
|
if (typeof optionsOrCb === "function") {
|
|
154
149
|
this.send(command, optionsOrCb);
|
|
155
150
|
}
|
|
156
151
|
else if (typeof cb === "function") {
|
|
157
152
|
if (typeof optionsOrCb !== "object")
|
|
158
|
-
throw new Error(
|
|
153
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
159
154
|
this.send(command, optionsOrCb || {}, cb);
|
|
160
155
|
}
|
|
161
156
|
else {
|
|
162
157
|
return this.send(command, optionsOrCb);
|
|
163
158
|
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
|
|
159
|
+
}
|
|
160
|
+
putSigningProfile(args, optionsOrCb, cb) {
|
|
161
|
+
const command = new PutSigningProfileCommand(args);
|
|
167
162
|
if (typeof optionsOrCb === "function") {
|
|
168
163
|
this.send(command, optionsOrCb);
|
|
169
164
|
}
|
|
170
165
|
else if (typeof cb === "function") {
|
|
171
166
|
if (typeof optionsOrCb !== "object")
|
|
172
|
-
throw new Error(
|
|
167
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
173
168
|
this.send(command, optionsOrCb || {}, cb);
|
|
174
169
|
}
|
|
175
170
|
else {
|
|
176
171
|
return this.send(command, optionsOrCb);
|
|
177
172
|
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
|
|
173
|
+
}
|
|
174
|
+
removeProfilePermission(args, optionsOrCb, cb) {
|
|
175
|
+
const command = new RemoveProfilePermissionCommand(args);
|
|
181
176
|
if (typeof optionsOrCb === "function") {
|
|
182
177
|
this.send(command, optionsOrCb);
|
|
183
178
|
}
|
|
184
179
|
else if (typeof cb === "function") {
|
|
185
180
|
if (typeof optionsOrCb !== "object")
|
|
186
|
-
throw new Error(
|
|
181
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
187
182
|
this.send(command, optionsOrCb || {}, cb);
|
|
188
183
|
}
|
|
189
184
|
else {
|
|
190
185
|
return this.send(command, optionsOrCb);
|
|
191
186
|
}
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
|
|
187
|
+
}
|
|
188
|
+
revokeSignature(args, optionsOrCb, cb) {
|
|
189
|
+
const command = new RevokeSignatureCommand(args);
|
|
195
190
|
if (typeof optionsOrCb === "function") {
|
|
196
191
|
this.send(command, optionsOrCb);
|
|
197
192
|
}
|
|
198
193
|
else if (typeof cb === "function") {
|
|
199
194
|
if (typeof optionsOrCb !== "object")
|
|
200
|
-
throw new Error(
|
|
195
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
201
196
|
this.send(command, optionsOrCb || {}, cb);
|
|
202
197
|
}
|
|
203
198
|
else {
|
|
204
199
|
return this.send(command, optionsOrCb);
|
|
205
200
|
}
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
|
|
201
|
+
}
|
|
202
|
+
revokeSigningProfile(args, optionsOrCb, cb) {
|
|
203
|
+
const command = new RevokeSigningProfileCommand(args);
|
|
209
204
|
if (typeof optionsOrCb === "function") {
|
|
210
205
|
this.send(command, optionsOrCb);
|
|
211
206
|
}
|
|
212
207
|
else if (typeof cb === "function") {
|
|
213
208
|
if (typeof optionsOrCb !== "object")
|
|
214
|
-
throw new Error(
|
|
209
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
215
210
|
this.send(command, optionsOrCb || {}, cb);
|
|
216
211
|
}
|
|
217
212
|
else {
|
|
218
213
|
return this.send(command, optionsOrCb);
|
|
219
214
|
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
|
|
215
|
+
}
|
|
216
|
+
startSigningJob(args, optionsOrCb, cb) {
|
|
217
|
+
const command = new StartSigningJobCommand(args);
|
|
223
218
|
if (typeof optionsOrCb === "function") {
|
|
224
219
|
this.send(command, optionsOrCb);
|
|
225
220
|
}
|
|
226
221
|
else if (typeof cb === "function") {
|
|
227
222
|
if (typeof optionsOrCb !== "object")
|
|
228
|
-
throw new Error(
|
|
223
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
229
224
|
this.send(command, optionsOrCb || {}, cb);
|
|
230
225
|
}
|
|
231
226
|
else {
|
|
232
227
|
return this.send(command, optionsOrCb);
|
|
233
228
|
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
229
|
+
}
|
|
230
|
+
tagResource(args, optionsOrCb, cb) {
|
|
231
|
+
const command = new TagResourceCommand(args);
|
|
237
232
|
if (typeof optionsOrCb === "function") {
|
|
238
233
|
this.send(command, optionsOrCb);
|
|
239
234
|
}
|
|
240
235
|
else if (typeof cb === "function") {
|
|
241
236
|
if (typeof optionsOrCb !== "object")
|
|
242
|
-
throw new Error(
|
|
237
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
243
238
|
this.send(command, optionsOrCb || {}, cb);
|
|
244
239
|
}
|
|
245
240
|
else {
|
|
246
241
|
return this.send(command, optionsOrCb);
|
|
247
242
|
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
|
|
243
|
+
}
|
|
244
|
+
untagResource(args, optionsOrCb, cb) {
|
|
245
|
+
const command = new UntagResourceCommand(args);
|
|
251
246
|
if (typeof optionsOrCb === "function") {
|
|
252
247
|
this.send(command, optionsOrCb);
|
|
253
248
|
}
|
|
254
249
|
else if (typeof cb === "function") {
|
|
255
250
|
if (typeof optionsOrCb !== "object")
|
|
256
|
-
throw new Error(
|
|
251
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
257
252
|
this.send(command, optionsOrCb || {}, cb);
|
|
258
253
|
}
|
|
259
254
|
else {
|
|
260
255
|
return this.send(command, optionsOrCb);
|
|
261
256
|
}
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
}(SignerClient));
|
|
265
|
-
export { Signer };
|
|
257
|
+
}
|
|
258
|
+
}
|
package/dist-es/SignerClient.js
CHANGED
|
@@ -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 SignerClient 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 { SignerClient };
|
|
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 { AddProfilePermissionRequestFilterSensitiveLog, AddProfilePermissionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1AddProfilePermissionCommand, serializeAws_restJson1AddProfilePermissionCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_this.input = input;
|
|
11
|
-
return _this;
|
|
5
|
+
export class AddProfilePermissionCommand extends $Command {
|
|
6
|
+
constructor(input) {
|
|
7
|
+
super();
|
|
8
|
+
this.input = input;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
11
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
logger
|
|
21
|
-
clientName
|
|
22
|
-
commandName
|
|
12
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
13
|
+
const { logger } = configuration;
|
|
14
|
+
const clientName = "SignerClient";
|
|
15
|
+
const commandName = "AddProfilePermissionCommand";
|
|
16
|
+
const handlerExecutionContext = {
|
|
17
|
+
logger,
|
|
18
|
+
clientName,
|
|
19
|
+
commandName,
|
|
23
20
|
inputFilterSensitiveLog: AddProfilePermissionRequestFilterSensitiveLog,
|
|
24
21
|
outputFilterSensitiveLog: AddProfilePermissionResponseFilterSensitiveLog,
|
|
25
22
|
};
|
|
26
|
-
|
|
27
|
-
return stack.resolve(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
AddProfilePermissionCommand.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_restJson1AddProfilePermissionCommand(input, context);
|
|
33
|
-
}
|
|
34
|
-
|
|
28
|
+
}
|
|
29
|
+
deserialize(output, context) {
|
|
35
30
|
return deserializeAws_restJson1AddProfilePermissionCommand(output, context);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}($Command));
|
|
39
|
-
export { AddProfilePermissionCommand };
|
|
31
|
+
}
|
|
32
|
+
}
|