@aws-sdk/client-signer 3.169.0 → 3.170.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 (39) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Signer.d.ts +310 -90
  3. package/dist-types/ts3.4/SignerClient.d.ts +231 -90
  4. package/dist-types/ts3.4/commands/AddProfilePermissionCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CancelSigningProfileCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/DescribeSigningJobCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/GetSigningPlatformCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/GetSigningProfileCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/ListProfilePermissionsCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/ListSigningJobsCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/ListSigningPlatformsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/ListSigningProfilesCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  14. package/dist-types/ts3.4/commands/PutSigningProfileCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/RemoveProfilePermissionCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/RevokeSignatureCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/RevokeSigningProfileCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/StartSigningJobCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/index.d.ts +17 -17
  22. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  23. package/dist-types/ts3.4/index.d.ts +7 -7
  24. package/dist-types/ts3.4/models/SignerServiceException.d.ts +8 -6
  25. package/dist-types/ts3.4/models/index.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +744 -689
  27. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  28. package/dist-types/ts3.4/pagination/ListSigningJobsPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/ListSigningPlatformsPaginator.d.ts +11 -4
  30. package/dist-types/ts3.4/pagination/ListSigningProfilesPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  32. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  37. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  38. package/dist-types/ts3.4/waiters/waitForSuccessfulSigningJob.d.ts +13 -7
  39. package/package.json +35 -35
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-signer
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-signer
@@ -1,90 +1,310 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AddProfilePermissionCommandInput, AddProfilePermissionCommandOutput } from "./commands/AddProfilePermissionCommand";
3
- import { CancelSigningProfileCommandInput, CancelSigningProfileCommandOutput } from "./commands/CancelSigningProfileCommand";
4
- import { DescribeSigningJobCommandInput, DescribeSigningJobCommandOutput } from "./commands/DescribeSigningJobCommand";
5
- import { GetSigningPlatformCommandInput, GetSigningPlatformCommandOutput } from "./commands/GetSigningPlatformCommand";
6
- import { GetSigningProfileCommandInput, GetSigningProfileCommandOutput } from "./commands/GetSigningProfileCommand";
7
- import { ListProfilePermissionsCommandInput, ListProfilePermissionsCommandOutput } from "./commands/ListProfilePermissionsCommand";
8
- import { ListSigningJobsCommandInput, ListSigningJobsCommandOutput } from "./commands/ListSigningJobsCommand";
9
- import { ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput } from "./commands/ListSigningPlatformsCommand";
10
- import { ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput } from "./commands/ListSigningProfilesCommand";
11
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
12
- import { PutSigningProfileCommandInput, PutSigningProfileCommandOutput } from "./commands/PutSigningProfileCommand";
13
- import { RemoveProfilePermissionCommandInput, RemoveProfilePermissionCommandOutput } from "./commands/RemoveProfilePermissionCommand";
14
- import { RevokeSignatureCommandInput, RevokeSignatureCommandOutput } from "./commands/RevokeSignatureCommand";
15
- import { RevokeSigningProfileCommandInput, RevokeSigningProfileCommandOutput } from "./commands/RevokeSigningProfileCommand";
16
- import { StartSigningJobCommandInput, StartSigningJobCommandOutput } from "./commands/StartSigningJobCommand";
17
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
18
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
19
- import { SignerClient } from "./SignerClient";
20
-
21
- export declare class Signer extends SignerClient {
22
-
23
- addProfilePermission(args: AddProfilePermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddProfilePermissionCommandOutput>;
24
- addProfilePermission(args: AddProfilePermissionCommandInput, cb: (err: any, data?: AddProfilePermissionCommandOutput) => void): void;
25
- addProfilePermission(args: AddProfilePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddProfilePermissionCommandOutput) => void): void;
26
-
27
- cancelSigningProfile(args: CancelSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<CancelSigningProfileCommandOutput>;
28
- cancelSigningProfile(args: CancelSigningProfileCommandInput, cb: (err: any, data?: CancelSigningProfileCommandOutput) => void): void;
29
- cancelSigningProfile(args: CancelSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSigningProfileCommandOutput) => void): void;
30
-
31
- describeSigningJob(args: DescribeSigningJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSigningJobCommandOutput>;
32
- describeSigningJob(args: DescribeSigningJobCommandInput, cb: (err: any, data?: DescribeSigningJobCommandOutput) => void): void;
33
- describeSigningJob(args: DescribeSigningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSigningJobCommandOutput) => void): void;
34
-
35
- getSigningPlatform(args: GetSigningPlatformCommandInput, options?: __HttpHandlerOptions): Promise<GetSigningPlatformCommandOutput>;
36
- getSigningPlatform(args: GetSigningPlatformCommandInput, cb: (err: any, data?: GetSigningPlatformCommandOutput) => void): void;
37
- getSigningPlatform(args: GetSigningPlatformCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSigningPlatformCommandOutput) => void): void;
38
-
39
- getSigningProfile(args: GetSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetSigningProfileCommandOutput>;
40
- getSigningProfile(args: GetSigningProfileCommandInput, cb: (err: any, data?: GetSigningProfileCommandOutput) => void): void;
41
- getSigningProfile(args: GetSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSigningProfileCommandOutput) => void): void;
42
-
43
- listProfilePermissions(args: ListProfilePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProfilePermissionsCommandOutput>;
44
- listProfilePermissions(args: ListProfilePermissionsCommandInput, cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void): void;
45
- listProfilePermissions(args: ListProfilePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void): void;
46
-
47
- listSigningJobs(args: ListSigningJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningJobsCommandOutput>;
48
- listSigningJobs(args: ListSigningJobsCommandInput, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
49
- listSigningJobs(args: ListSigningJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
50
-
51
- listSigningPlatforms(args: ListSigningPlatformsCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningPlatformsCommandOutput>;
52
- listSigningPlatforms(args: ListSigningPlatformsCommandInput, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
53
- listSigningPlatforms(args: ListSigningPlatformsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
54
-
55
- listSigningProfiles(args: ListSigningProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningProfilesCommandOutput>;
56
- listSigningProfiles(args: ListSigningProfilesCommandInput, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
57
- listSigningProfiles(args: ListSigningProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
58
-
59
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
60
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
61
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
62
-
63
- putSigningProfile(args: PutSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<PutSigningProfileCommandOutput>;
64
- putSigningProfile(args: PutSigningProfileCommandInput, cb: (err: any, data?: PutSigningProfileCommandOutput) => void): void;
65
- putSigningProfile(args: PutSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSigningProfileCommandOutput) => void): void;
66
-
67
- removeProfilePermission(args: RemoveProfilePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemoveProfilePermissionCommandOutput>;
68
- removeProfilePermission(args: RemoveProfilePermissionCommandInput, cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void): void;
69
- removeProfilePermission(args: RemoveProfilePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void): void;
70
-
71
- revokeSignature(args: RevokeSignatureCommandInput, options?: __HttpHandlerOptions): Promise<RevokeSignatureCommandOutput>;
72
- revokeSignature(args: RevokeSignatureCommandInput, cb: (err: any, data?: RevokeSignatureCommandOutput) => void): void;
73
- revokeSignature(args: RevokeSignatureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSignatureCommandOutput) => void): void;
74
-
75
- revokeSigningProfile(args: RevokeSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<RevokeSigningProfileCommandOutput>;
76
- revokeSigningProfile(args: RevokeSigningProfileCommandInput, cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void): void;
77
- revokeSigningProfile(args: RevokeSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void): void;
78
-
79
- startSigningJob(args: StartSigningJobCommandInput, options?: __HttpHandlerOptions): Promise<StartSigningJobCommandOutput>;
80
- startSigningJob(args: StartSigningJobCommandInput, cb: (err: any, data?: StartSigningJobCommandOutput) => void): void;
81
- startSigningJob(args: StartSigningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSigningJobCommandOutput) => void): void;
82
-
83
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
84
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
85
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
86
-
87
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
88
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
89
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
90
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ AddProfilePermissionCommandInput,
4
+ AddProfilePermissionCommandOutput,
5
+ } from "./commands/AddProfilePermissionCommand";
6
+ import {
7
+ CancelSigningProfileCommandInput,
8
+ CancelSigningProfileCommandOutput,
9
+ } from "./commands/CancelSigningProfileCommand";
10
+ import {
11
+ DescribeSigningJobCommandInput,
12
+ DescribeSigningJobCommandOutput,
13
+ } from "./commands/DescribeSigningJobCommand";
14
+ import {
15
+ GetSigningPlatformCommandInput,
16
+ GetSigningPlatformCommandOutput,
17
+ } from "./commands/GetSigningPlatformCommand";
18
+ import {
19
+ GetSigningProfileCommandInput,
20
+ GetSigningProfileCommandOutput,
21
+ } from "./commands/GetSigningProfileCommand";
22
+ import {
23
+ ListProfilePermissionsCommandInput,
24
+ ListProfilePermissionsCommandOutput,
25
+ } from "./commands/ListProfilePermissionsCommand";
26
+ import {
27
+ ListSigningJobsCommandInput,
28
+ ListSigningJobsCommandOutput,
29
+ } from "./commands/ListSigningJobsCommand";
30
+ import {
31
+ ListSigningPlatformsCommandInput,
32
+ ListSigningPlatformsCommandOutput,
33
+ } from "./commands/ListSigningPlatformsCommand";
34
+ import {
35
+ ListSigningProfilesCommandInput,
36
+ ListSigningProfilesCommandOutput,
37
+ } from "./commands/ListSigningProfilesCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "./commands/ListTagsForResourceCommand";
42
+ import {
43
+ PutSigningProfileCommandInput,
44
+ PutSigningProfileCommandOutput,
45
+ } from "./commands/PutSigningProfileCommand";
46
+ import {
47
+ RemoveProfilePermissionCommandInput,
48
+ RemoveProfilePermissionCommandOutput,
49
+ } from "./commands/RemoveProfilePermissionCommand";
50
+ import {
51
+ RevokeSignatureCommandInput,
52
+ RevokeSignatureCommandOutput,
53
+ } from "./commands/RevokeSignatureCommand";
54
+ import {
55
+ RevokeSigningProfileCommandInput,
56
+ RevokeSigningProfileCommandOutput,
57
+ } from "./commands/RevokeSigningProfileCommand";
58
+ import {
59
+ StartSigningJobCommandInput,
60
+ StartSigningJobCommandOutput,
61
+ } from "./commands/StartSigningJobCommand";
62
+ import {
63
+ TagResourceCommandInput,
64
+ TagResourceCommandOutput,
65
+ } from "./commands/TagResourceCommand";
66
+ import {
67
+ UntagResourceCommandInput,
68
+ UntagResourceCommandOutput,
69
+ } from "./commands/UntagResourceCommand";
70
+ import { SignerClient } from "./SignerClient";
71
+
72
+ export declare class Signer extends SignerClient {
73
+ addProfilePermission(
74
+ args: AddProfilePermissionCommandInput,
75
+ options?: __HttpHandlerOptions
76
+ ): Promise<AddProfilePermissionCommandOutput>;
77
+ addProfilePermission(
78
+ args: AddProfilePermissionCommandInput,
79
+ cb: (err: any, data?: AddProfilePermissionCommandOutput) => void
80
+ ): void;
81
+ addProfilePermission(
82
+ args: AddProfilePermissionCommandInput,
83
+ options: __HttpHandlerOptions,
84
+ cb: (err: any, data?: AddProfilePermissionCommandOutput) => void
85
+ ): void;
86
+
87
+ cancelSigningProfile(
88
+ args: CancelSigningProfileCommandInput,
89
+ options?: __HttpHandlerOptions
90
+ ): Promise<CancelSigningProfileCommandOutput>;
91
+ cancelSigningProfile(
92
+ args: CancelSigningProfileCommandInput,
93
+ cb: (err: any, data?: CancelSigningProfileCommandOutput) => void
94
+ ): void;
95
+ cancelSigningProfile(
96
+ args: CancelSigningProfileCommandInput,
97
+ options: __HttpHandlerOptions,
98
+ cb: (err: any, data?: CancelSigningProfileCommandOutput) => void
99
+ ): void;
100
+
101
+ describeSigningJob(
102
+ args: DescribeSigningJobCommandInput,
103
+ options?: __HttpHandlerOptions
104
+ ): Promise<DescribeSigningJobCommandOutput>;
105
+ describeSigningJob(
106
+ args: DescribeSigningJobCommandInput,
107
+ cb: (err: any, data?: DescribeSigningJobCommandOutput) => void
108
+ ): void;
109
+ describeSigningJob(
110
+ args: DescribeSigningJobCommandInput,
111
+ options: __HttpHandlerOptions,
112
+ cb: (err: any, data?: DescribeSigningJobCommandOutput) => void
113
+ ): void;
114
+
115
+ getSigningPlatform(
116
+ args: GetSigningPlatformCommandInput,
117
+ options?: __HttpHandlerOptions
118
+ ): Promise<GetSigningPlatformCommandOutput>;
119
+ getSigningPlatform(
120
+ args: GetSigningPlatformCommandInput,
121
+ cb: (err: any, data?: GetSigningPlatformCommandOutput) => void
122
+ ): void;
123
+ getSigningPlatform(
124
+ args: GetSigningPlatformCommandInput,
125
+ options: __HttpHandlerOptions,
126
+ cb: (err: any, data?: GetSigningPlatformCommandOutput) => void
127
+ ): void;
128
+
129
+ getSigningProfile(
130
+ args: GetSigningProfileCommandInput,
131
+ options?: __HttpHandlerOptions
132
+ ): Promise<GetSigningProfileCommandOutput>;
133
+ getSigningProfile(
134
+ args: GetSigningProfileCommandInput,
135
+ cb: (err: any, data?: GetSigningProfileCommandOutput) => void
136
+ ): void;
137
+ getSigningProfile(
138
+ args: GetSigningProfileCommandInput,
139
+ options: __HttpHandlerOptions,
140
+ cb: (err: any, data?: GetSigningProfileCommandOutput) => void
141
+ ): void;
142
+
143
+ listProfilePermissions(
144
+ args: ListProfilePermissionsCommandInput,
145
+ options?: __HttpHandlerOptions
146
+ ): Promise<ListProfilePermissionsCommandOutput>;
147
+ listProfilePermissions(
148
+ args: ListProfilePermissionsCommandInput,
149
+ cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void
150
+ ): void;
151
+ listProfilePermissions(
152
+ args: ListProfilePermissionsCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void
155
+ ): void;
156
+
157
+ listSigningJobs(
158
+ args: ListSigningJobsCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<ListSigningJobsCommandOutput>;
161
+ listSigningJobs(
162
+ args: ListSigningJobsCommandInput,
163
+ cb: (err: any, data?: ListSigningJobsCommandOutput) => void
164
+ ): void;
165
+ listSigningJobs(
166
+ args: ListSigningJobsCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: ListSigningJobsCommandOutput) => void
169
+ ): void;
170
+
171
+ listSigningPlatforms(
172
+ args: ListSigningPlatformsCommandInput,
173
+ options?: __HttpHandlerOptions
174
+ ): Promise<ListSigningPlatformsCommandOutput>;
175
+ listSigningPlatforms(
176
+ args: ListSigningPlatformsCommandInput,
177
+ cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void
178
+ ): void;
179
+ listSigningPlatforms(
180
+ args: ListSigningPlatformsCommandInput,
181
+ options: __HttpHandlerOptions,
182
+ cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void
183
+ ): void;
184
+
185
+ listSigningProfiles(
186
+ args: ListSigningProfilesCommandInput,
187
+ options?: __HttpHandlerOptions
188
+ ): Promise<ListSigningProfilesCommandOutput>;
189
+ listSigningProfiles(
190
+ args: ListSigningProfilesCommandInput,
191
+ cb: (err: any, data?: ListSigningProfilesCommandOutput) => void
192
+ ): void;
193
+ listSigningProfiles(
194
+ args: ListSigningProfilesCommandInput,
195
+ options: __HttpHandlerOptions,
196
+ cb: (err: any, data?: ListSigningProfilesCommandOutput) => void
197
+ ): void;
198
+
199
+ listTagsForResource(
200
+ args: ListTagsForResourceCommandInput,
201
+ options?: __HttpHandlerOptions
202
+ ): Promise<ListTagsForResourceCommandOutput>;
203
+ listTagsForResource(
204
+ args: ListTagsForResourceCommandInput,
205
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
206
+ ): void;
207
+ listTagsForResource(
208
+ args: ListTagsForResourceCommandInput,
209
+ options: __HttpHandlerOptions,
210
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
211
+ ): void;
212
+
213
+ putSigningProfile(
214
+ args: PutSigningProfileCommandInput,
215
+ options?: __HttpHandlerOptions
216
+ ): Promise<PutSigningProfileCommandOutput>;
217
+ putSigningProfile(
218
+ args: PutSigningProfileCommandInput,
219
+ cb: (err: any, data?: PutSigningProfileCommandOutput) => void
220
+ ): void;
221
+ putSigningProfile(
222
+ args: PutSigningProfileCommandInput,
223
+ options: __HttpHandlerOptions,
224
+ cb: (err: any, data?: PutSigningProfileCommandOutput) => void
225
+ ): void;
226
+
227
+ removeProfilePermission(
228
+ args: RemoveProfilePermissionCommandInput,
229
+ options?: __HttpHandlerOptions
230
+ ): Promise<RemoveProfilePermissionCommandOutput>;
231
+ removeProfilePermission(
232
+ args: RemoveProfilePermissionCommandInput,
233
+ cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void
234
+ ): void;
235
+ removeProfilePermission(
236
+ args: RemoveProfilePermissionCommandInput,
237
+ options: __HttpHandlerOptions,
238
+ cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void
239
+ ): void;
240
+
241
+ revokeSignature(
242
+ args: RevokeSignatureCommandInput,
243
+ options?: __HttpHandlerOptions
244
+ ): Promise<RevokeSignatureCommandOutput>;
245
+ revokeSignature(
246
+ args: RevokeSignatureCommandInput,
247
+ cb: (err: any, data?: RevokeSignatureCommandOutput) => void
248
+ ): void;
249
+ revokeSignature(
250
+ args: RevokeSignatureCommandInput,
251
+ options: __HttpHandlerOptions,
252
+ cb: (err: any, data?: RevokeSignatureCommandOutput) => void
253
+ ): void;
254
+
255
+ revokeSigningProfile(
256
+ args: RevokeSigningProfileCommandInput,
257
+ options?: __HttpHandlerOptions
258
+ ): Promise<RevokeSigningProfileCommandOutput>;
259
+ revokeSigningProfile(
260
+ args: RevokeSigningProfileCommandInput,
261
+ cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void
262
+ ): void;
263
+ revokeSigningProfile(
264
+ args: RevokeSigningProfileCommandInput,
265
+ options: __HttpHandlerOptions,
266
+ cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void
267
+ ): void;
268
+
269
+ startSigningJob(
270
+ args: StartSigningJobCommandInput,
271
+ options?: __HttpHandlerOptions
272
+ ): Promise<StartSigningJobCommandOutput>;
273
+ startSigningJob(
274
+ args: StartSigningJobCommandInput,
275
+ cb: (err: any, data?: StartSigningJobCommandOutput) => void
276
+ ): void;
277
+ startSigningJob(
278
+ args: StartSigningJobCommandInput,
279
+ options: __HttpHandlerOptions,
280
+ cb: (err: any, data?: StartSigningJobCommandOutput) => void
281
+ ): void;
282
+
283
+ tagResource(
284
+ args: TagResourceCommandInput,
285
+ options?: __HttpHandlerOptions
286
+ ): Promise<TagResourceCommandOutput>;
287
+ tagResource(
288
+ args: TagResourceCommandInput,
289
+ cb: (err: any, data?: TagResourceCommandOutput) => void
290
+ ): void;
291
+ tagResource(
292
+ args: TagResourceCommandInput,
293
+ options: __HttpHandlerOptions,
294
+ cb: (err: any, data?: TagResourceCommandOutput) => void
295
+ ): void;
296
+
297
+ untagResource(
298
+ args: UntagResourceCommandInput,
299
+ options?: __HttpHandlerOptions
300
+ ): Promise<UntagResourceCommandOutput>;
301
+ untagResource(
302
+ args: UntagResourceCommandInput,
303
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
304
+ ): void;
305
+ untagResource(
306
+ args: UntagResourceCommandInput,
307
+ options: __HttpHandlerOptions,
308
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
309
+ ): void;
310
+ }