@aws-sdk/client-signer 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/Signer.d.ts +63 -72
- package/dist-types/ts3.4/SignerClient.d.ts +17 -33
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/AddProfilePermissionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CancelSigningProfileCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DescribeSigningJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetRevocationStatusCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSigningPlatformCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSigningProfileCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListProfilePermissionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSigningJobsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListSigningPlatformsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSigningProfilesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutSigningProfileCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RemoveProfilePermissionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RevokeSignatureCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/RevokeSigningProfileCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/SignPayloadCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartSigningJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForSuccessfulSigningJob.d.ts +3 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -65,18 +65,12 @@ import {
|
|
|
65
65
|
RevokeSigningProfileCommandInput,
|
|
66
66
|
RevokeSigningProfileCommandOutput,
|
|
67
67
|
} from "./commands/RevokeSigningProfileCommand";
|
|
68
|
-
import {
|
|
69
|
-
SignPayloadCommandInput,
|
|
70
|
-
SignPayloadCommandOutput,
|
|
71
|
-
} from "./commands/SignPayloadCommand";
|
|
68
|
+
import { SignPayloadCommandInput, SignPayloadCommandOutput } from "./commands/SignPayloadCommand";
|
|
72
69
|
import {
|
|
73
70
|
StartSigningJobCommandInput,
|
|
74
71
|
StartSigningJobCommandOutput,
|
|
75
72
|
} from "./commands/StartSigningJobCommand";
|
|
76
|
-
import {
|
|
77
|
-
TagResourceCommandInput,
|
|
78
|
-
TagResourceCommandOutput,
|
|
79
|
-
} from "./commands/TagResourceCommand";
|
|
73
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
80
74
|
import {
|
|
81
75
|
UntagResourceCommandInput,
|
|
82
76
|
UntagResourceCommandOutput,
|
|
@@ -85,283 +79,280 @@ import { SignerClient } from "./SignerClient";
|
|
|
85
79
|
export interface Signer {
|
|
86
80
|
addProfilePermission(
|
|
87
81
|
args: AddProfilePermissionCommandInput,
|
|
88
|
-
options?: __HttpHandlerOptions
|
|
82
|
+
options?: __HttpHandlerOptions,
|
|
89
83
|
): Promise<AddProfilePermissionCommandOutput>;
|
|
90
84
|
addProfilePermission(
|
|
91
85
|
args: AddProfilePermissionCommandInput,
|
|
92
|
-
cb: (err: any, data?: AddProfilePermissionCommandOutput) => void
|
|
86
|
+
cb: (err: any, data?: AddProfilePermissionCommandOutput) => void,
|
|
93
87
|
): void;
|
|
94
88
|
addProfilePermission(
|
|
95
89
|
args: AddProfilePermissionCommandInput,
|
|
96
90
|
options: __HttpHandlerOptions,
|
|
97
|
-
cb: (err: any, data?: AddProfilePermissionCommandOutput) => void
|
|
91
|
+
cb: (err: any, data?: AddProfilePermissionCommandOutput) => void,
|
|
98
92
|
): void;
|
|
99
93
|
cancelSigningProfile(
|
|
100
94
|
args: CancelSigningProfileCommandInput,
|
|
101
|
-
options?: __HttpHandlerOptions
|
|
95
|
+
options?: __HttpHandlerOptions,
|
|
102
96
|
): Promise<CancelSigningProfileCommandOutput>;
|
|
103
97
|
cancelSigningProfile(
|
|
104
98
|
args: CancelSigningProfileCommandInput,
|
|
105
|
-
cb: (err: any, data?: CancelSigningProfileCommandOutput) => void
|
|
99
|
+
cb: (err: any, data?: CancelSigningProfileCommandOutput) => void,
|
|
106
100
|
): void;
|
|
107
101
|
cancelSigningProfile(
|
|
108
102
|
args: CancelSigningProfileCommandInput,
|
|
109
103
|
options: __HttpHandlerOptions,
|
|
110
|
-
cb: (err: any, data?: CancelSigningProfileCommandOutput) => void
|
|
104
|
+
cb: (err: any, data?: CancelSigningProfileCommandOutput) => void,
|
|
111
105
|
): void;
|
|
112
106
|
describeSigningJob(
|
|
113
107
|
args: DescribeSigningJobCommandInput,
|
|
114
|
-
options?: __HttpHandlerOptions
|
|
108
|
+
options?: __HttpHandlerOptions,
|
|
115
109
|
): Promise<DescribeSigningJobCommandOutput>;
|
|
116
110
|
describeSigningJob(
|
|
117
111
|
args: DescribeSigningJobCommandInput,
|
|
118
|
-
cb: (err: any, data?: DescribeSigningJobCommandOutput) => void
|
|
112
|
+
cb: (err: any, data?: DescribeSigningJobCommandOutput) => void,
|
|
119
113
|
): void;
|
|
120
114
|
describeSigningJob(
|
|
121
115
|
args: DescribeSigningJobCommandInput,
|
|
122
116
|
options: __HttpHandlerOptions,
|
|
123
|
-
cb: (err: any, data?: DescribeSigningJobCommandOutput) => void
|
|
117
|
+
cb: (err: any, data?: DescribeSigningJobCommandOutput) => void,
|
|
124
118
|
): void;
|
|
125
119
|
getRevocationStatus(
|
|
126
120
|
args: GetRevocationStatusCommandInput,
|
|
127
|
-
options?: __HttpHandlerOptions
|
|
121
|
+
options?: __HttpHandlerOptions,
|
|
128
122
|
): Promise<GetRevocationStatusCommandOutput>;
|
|
129
123
|
getRevocationStatus(
|
|
130
124
|
args: GetRevocationStatusCommandInput,
|
|
131
|
-
cb: (err: any, data?: GetRevocationStatusCommandOutput) => void
|
|
125
|
+
cb: (err: any, data?: GetRevocationStatusCommandOutput) => void,
|
|
132
126
|
): void;
|
|
133
127
|
getRevocationStatus(
|
|
134
128
|
args: GetRevocationStatusCommandInput,
|
|
135
129
|
options: __HttpHandlerOptions,
|
|
136
|
-
cb: (err: any, data?: GetRevocationStatusCommandOutput) => void
|
|
130
|
+
cb: (err: any, data?: GetRevocationStatusCommandOutput) => void,
|
|
137
131
|
): void;
|
|
138
132
|
getSigningPlatform(
|
|
139
133
|
args: GetSigningPlatformCommandInput,
|
|
140
|
-
options?: __HttpHandlerOptions
|
|
134
|
+
options?: __HttpHandlerOptions,
|
|
141
135
|
): Promise<GetSigningPlatformCommandOutput>;
|
|
142
136
|
getSigningPlatform(
|
|
143
137
|
args: GetSigningPlatformCommandInput,
|
|
144
|
-
cb: (err: any, data?: GetSigningPlatformCommandOutput) => void
|
|
138
|
+
cb: (err: any, data?: GetSigningPlatformCommandOutput) => void,
|
|
145
139
|
): void;
|
|
146
140
|
getSigningPlatform(
|
|
147
141
|
args: GetSigningPlatformCommandInput,
|
|
148
142
|
options: __HttpHandlerOptions,
|
|
149
|
-
cb: (err: any, data?: GetSigningPlatformCommandOutput) => void
|
|
143
|
+
cb: (err: any, data?: GetSigningPlatformCommandOutput) => void,
|
|
150
144
|
): void;
|
|
151
145
|
getSigningProfile(
|
|
152
146
|
args: GetSigningProfileCommandInput,
|
|
153
|
-
options?: __HttpHandlerOptions
|
|
147
|
+
options?: __HttpHandlerOptions,
|
|
154
148
|
): Promise<GetSigningProfileCommandOutput>;
|
|
155
149
|
getSigningProfile(
|
|
156
150
|
args: GetSigningProfileCommandInput,
|
|
157
|
-
cb: (err: any, data?: GetSigningProfileCommandOutput) => void
|
|
151
|
+
cb: (err: any, data?: GetSigningProfileCommandOutput) => void,
|
|
158
152
|
): void;
|
|
159
153
|
getSigningProfile(
|
|
160
154
|
args: GetSigningProfileCommandInput,
|
|
161
155
|
options: __HttpHandlerOptions,
|
|
162
|
-
cb: (err: any, data?: GetSigningProfileCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: GetSigningProfileCommandOutput) => void,
|
|
163
157
|
): void;
|
|
164
158
|
listProfilePermissions(
|
|
165
159
|
args: ListProfilePermissionsCommandInput,
|
|
166
|
-
options?: __HttpHandlerOptions
|
|
160
|
+
options?: __HttpHandlerOptions,
|
|
167
161
|
): Promise<ListProfilePermissionsCommandOutput>;
|
|
168
162
|
listProfilePermissions(
|
|
169
163
|
args: ListProfilePermissionsCommandInput,
|
|
170
|
-
cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void
|
|
164
|
+
cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void,
|
|
171
165
|
): void;
|
|
172
166
|
listProfilePermissions(
|
|
173
167
|
args: ListProfilePermissionsCommandInput,
|
|
174
168
|
options: __HttpHandlerOptions,
|
|
175
|
-
cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void
|
|
169
|
+
cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void,
|
|
176
170
|
): void;
|
|
177
171
|
listSigningJobs(): Promise<ListSigningJobsCommandOutput>;
|
|
178
172
|
listSigningJobs(
|
|
179
173
|
args: ListSigningJobsCommandInput,
|
|
180
|
-
options?: __HttpHandlerOptions
|
|
174
|
+
options?: __HttpHandlerOptions,
|
|
181
175
|
): Promise<ListSigningJobsCommandOutput>;
|
|
182
176
|
listSigningJobs(
|
|
183
177
|
args: ListSigningJobsCommandInput,
|
|
184
|
-
cb: (err: any, data?: ListSigningJobsCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: ListSigningJobsCommandOutput) => void,
|
|
185
179
|
): void;
|
|
186
180
|
listSigningJobs(
|
|
187
181
|
args: ListSigningJobsCommandInput,
|
|
188
182
|
options: __HttpHandlerOptions,
|
|
189
|
-
cb: (err: any, data?: ListSigningJobsCommandOutput) => void
|
|
183
|
+
cb: (err: any, data?: ListSigningJobsCommandOutput) => void,
|
|
190
184
|
): void;
|
|
191
185
|
listSigningPlatforms(): Promise<ListSigningPlatformsCommandOutput>;
|
|
192
186
|
listSigningPlatforms(
|
|
193
187
|
args: ListSigningPlatformsCommandInput,
|
|
194
|
-
options?: __HttpHandlerOptions
|
|
188
|
+
options?: __HttpHandlerOptions,
|
|
195
189
|
): Promise<ListSigningPlatformsCommandOutput>;
|
|
196
190
|
listSigningPlatforms(
|
|
197
191
|
args: ListSigningPlatformsCommandInput,
|
|
198
|
-
cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void,
|
|
199
193
|
): void;
|
|
200
194
|
listSigningPlatforms(
|
|
201
195
|
args: ListSigningPlatformsCommandInput,
|
|
202
196
|
options: __HttpHandlerOptions,
|
|
203
|
-
cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void,
|
|
204
198
|
): void;
|
|
205
199
|
listSigningProfiles(): Promise<ListSigningProfilesCommandOutput>;
|
|
206
200
|
listSigningProfiles(
|
|
207
201
|
args: ListSigningProfilesCommandInput,
|
|
208
|
-
options?: __HttpHandlerOptions
|
|
202
|
+
options?: __HttpHandlerOptions,
|
|
209
203
|
): Promise<ListSigningProfilesCommandOutput>;
|
|
210
204
|
listSigningProfiles(
|
|
211
205
|
args: ListSigningProfilesCommandInput,
|
|
212
|
-
cb: (err: any, data?: ListSigningProfilesCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: ListSigningProfilesCommandOutput) => void,
|
|
213
207
|
): void;
|
|
214
208
|
listSigningProfiles(
|
|
215
209
|
args: ListSigningProfilesCommandInput,
|
|
216
210
|
options: __HttpHandlerOptions,
|
|
217
|
-
cb: (err: any, data?: ListSigningProfilesCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: ListSigningProfilesCommandOutput) => void,
|
|
218
212
|
): void;
|
|
219
213
|
listTagsForResource(
|
|
220
214
|
args: ListTagsForResourceCommandInput,
|
|
221
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
222
216
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
223
217
|
listTagsForResource(
|
|
224
218
|
args: ListTagsForResourceCommandInput,
|
|
225
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
226
220
|
): void;
|
|
227
221
|
listTagsForResource(
|
|
228
222
|
args: ListTagsForResourceCommandInput,
|
|
229
223
|
options: __HttpHandlerOptions,
|
|
230
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
231
225
|
): void;
|
|
232
226
|
putSigningProfile(
|
|
233
227
|
args: PutSigningProfileCommandInput,
|
|
234
|
-
options?: __HttpHandlerOptions
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
235
229
|
): Promise<PutSigningProfileCommandOutput>;
|
|
236
230
|
putSigningProfile(
|
|
237
231
|
args: PutSigningProfileCommandInput,
|
|
238
|
-
cb: (err: any, data?: PutSigningProfileCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: PutSigningProfileCommandOutput) => void,
|
|
239
233
|
): void;
|
|
240
234
|
putSigningProfile(
|
|
241
235
|
args: PutSigningProfileCommandInput,
|
|
242
236
|
options: __HttpHandlerOptions,
|
|
243
|
-
cb: (err: any, data?: PutSigningProfileCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: PutSigningProfileCommandOutput) => void,
|
|
244
238
|
): void;
|
|
245
239
|
removeProfilePermission(
|
|
246
240
|
args: RemoveProfilePermissionCommandInput,
|
|
247
|
-
options?: __HttpHandlerOptions
|
|
241
|
+
options?: __HttpHandlerOptions,
|
|
248
242
|
): Promise<RemoveProfilePermissionCommandOutput>;
|
|
249
243
|
removeProfilePermission(
|
|
250
244
|
args: RemoveProfilePermissionCommandInput,
|
|
251
|
-
cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void,
|
|
252
246
|
): void;
|
|
253
247
|
removeProfilePermission(
|
|
254
248
|
args: RemoveProfilePermissionCommandInput,
|
|
255
249
|
options: __HttpHandlerOptions,
|
|
256
|
-
cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void,
|
|
257
251
|
): void;
|
|
258
252
|
revokeSignature(
|
|
259
253
|
args: RevokeSignatureCommandInput,
|
|
260
|
-
options?: __HttpHandlerOptions
|
|
254
|
+
options?: __HttpHandlerOptions,
|
|
261
255
|
): Promise<RevokeSignatureCommandOutput>;
|
|
262
256
|
revokeSignature(
|
|
263
257
|
args: RevokeSignatureCommandInput,
|
|
264
|
-
cb: (err: any, data?: RevokeSignatureCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: RevokeSignatureCommandOutput) => void,
|
|
265
259
|
): void;
|
|
266
260
|
revokeSignature(
|
|
267
261
|
args: RevokeSignatureCommandInput,
|
|
268
262
|
options: __HttpHandlerOptions,
|
|
269
|
-
cb: (err: any, data?: RevokeSignatureCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: RevokeSignatureCommandOutput) => void,
|
|
270
264
|
): void;
|
|
271
265
|
revokeSigningProfile(
|
|
272
266
|
args: RevokeSigningProfileCommandInput,
|
|
273
|
-
options?: __HttpHandlerOptions
|
|
267
|
+
options?: __HttpHandlerOptions,
|
|
274
268
|
): Promise<RevokeSigningProfileCommandOutput>;
|
|
275
269
|
revokeSigningProfile(
|
|
276
270
|
args: RevokeSigningProfileCommandInput,
|
|
277
|
-
cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void
|
|
271
|
+
cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void,
|
|
278
272
|
): void;
|
|
279
273
|
revokeSigningProfile(
|
|
280
274
|
args: RevokeSigningProfileCommandInput,
|
|
281
275
|
options: __HttpHandlerOptions,
|
|
282
|
-
cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void
|
|
276
|
+
cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void,
|
|
283
277
|
): void;
|
|
284
278
|
signPayload(
|
|
285
279
|
args: SignPayloadCommandInput,
|
|
286
|
-
options?: __HttpHandlerOptions
|
|
280
|
+
options?: __HttpHandlerOptions,
|
|
287
281
|
): Promise<SignPayloadCommandOutput>;
|
|
288
282
|
signPayload(
|
|
289
283
|
args: SignPayloadCommandInput,
|
|
290
|
-
cb: (err: any, data?: SignPayloadCommandOutput) => void
|
|
284
|
+
cb: (err: any, data?: SignPayloadCommandOutput) => void,
|
|
291
285
|
): void;
|
|
292
286
|
signPayload(
|
|
293
287
|
args: SignPayloadCommandInput,
|
|
294
288
|
options: __HttpHandlerOptions,
|
|
295
|
-
cb: (err: any, data?: SignPayloadCommandOutput) => void
|
|
289
|
+
cb: (err: any, data?: SignPayloadCommandOutput) => void,
|
|
296
290
|
): void;
|
|
297
291
|
startSigningJob(
|
|
298
292
|
args: StartSigningJobCommandInput,
|
|
299
|
-
options?: __HttpHandlerOptions
|
|
293
|
+
options?: __HttpHandlerOptions,
|
|
300
294
|
): Promise<StartSigningJobCommandOutput>;
|
|
301
295
|
startSigningJob(
|
|
302
296
|
args: StartSigningJobCommandInput,
|
|
303
|
-
cb: (err: any, data?: StartSigningJobCommandOutput) => void
|
|
297
|
+
cb: (err: any, data?: StartSigningJobCommandOutput) => void,
|
|
304
298
|
): void;
|
|
305
299
|
startSigningJob(
|
|
306
300
|
args: StartSigningJobCommandInput,
|
|
307
301
|
options: __HttpHandlerOptions,
|
|
308
|
-
cb: (err: any, data?: StartSigningJobCommandOutput) => void
|
|
302
|
+
cb: (err: any, data?: StartSigningJobCommandOutput) => void,
|
|
309
303
|
): void;
|
|
310
304
|
tagResource(
|
|
311
305
|
args: TagResourceCommandInput,
|
|
312
|
-
options?: __HttpHandlerOptions
|
|
306
|
+
options?: __HttpHandlerOptions,
|
|
313
307
|
): Promise<TagResourceCommandOutput>;
|
|
314
308
|
tagResource(
|
|
315
309
|
args: TagResourceCommandInput,
|
|
316
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
310
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
317
311
|
): void;
|
|
318
312
|
tagResource(
|
|
319
313
|
args: TagResourceCommandInput,
|
|
320
314
|
options: __HttpHandlerOptions,
|
|
321
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
315
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
322
316
|
): void;
|
|
323
317
|
untagResource(
|
|
324
318
|
args: UntagResourceCommandInput,
|
|
325
|
-
options?: __HttpHandlerOptions
|
|
319
|
+
options?: __HttpHandlerOptions,
|
|
326
320
|
): Promise<UntagResourceCommandOutput>;
|
|
327
321
|
untagResource(
|
|
328
322
|
args: UntagResourceCommandInput,
|
|
329
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
323
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
330
324
|
): void;
|
|
331
325
|
untagResource(
|
|
332
326
|
args: UntagResourceCommandInput,
|
|
333
327
|
options: __HttpHandlerOptions,
|
|
334
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
328
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
335
329
|
): void;
|
|
336
330
|
paginateListSigningJobs(
|
|
337
331
|
args?: ListSigningJobsCommandInput,
|
|
338
332
|
paginationConfig?: Pick<
|
|
339
333
|
PaginationConfiguration,
|
|
340
334
|
Exclude<keyof PaginationConfiguration, "client">
|
|
341
|
-
|
|
335
|
+
>,
|
|
342
336
|
): Paginator<ListSigningJobsCommandOutput>;
|
|
343
337
|
paginateListSigningPlatforms(
|
|
344
338
|
args?: ListSigningPlatformsCommandInput,
|
|
345
339
|
paginationConfig?: Pick<
|
|
346
340
|
PaginationConfiguration,
|
|
347
341
|
Exclude<keyof PaginationConfiguration, "client">
|
|
348
|
-
|
|
342
|
+
>,
|
|
349
343
|
): Paginator<ListSigningPlatformsCommandOutput>;
|
|
350
344
|
paginateListSigningProfiles(
|
|
351
345
|
args?: ListSigningProfilesCommandInput,
|
|
352
346
|
paginationConfig?: Pick<
|
|
353
347
|
PaginationConfiguration,
|
|
354
348
|
Exclude<keyof PaginationConfiguration, "client">
|
|
355
|
-
|
|
349
|
+
>,
|
|
356
350
|
): Paginator<ListSigningProfilesCommandOutput>;
|
|
357
351
|
waitUntilSuccessfulSigningJob(
|
|
358
352
|
args: DescribeSigningJobCommandInput,
|
|
359
353
|
waiterConfig:
|
|
360
354
|
| number
|
|
361
|
-
| Pick<
|
|
362
|
-
WaiterConfiguration<Signer>,
|
|
363
|
-
Exclude<keyof WaiterConfiguration<Signer>, "client">
|
|
364
|
-
>
|
|
355
|
+
| Pick<WaiterConfiguration<Signer>, Exclude<keyof WaiterConfiguration<Signer>, "client">>,
|
|
365
356
|
): Promise<WaiterResult<DescribeSigningJobCommandOutput>>;
|
|
366
357
|
}
|
|
367
358
|
export declare class Signer extends SignerClient implements Signer {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -96,18 +93,12 @@ import {
|
|
|
96
93
|
RevokeSigningProfileCommandInput,
|
|
97
94
|
RevokeSigningProfileCommandOutput,
|
|
98
95
|
} from "./commands/RevokeSigningProfileCommand";
|
|
99
|
-
import {
|
|
100
|
-
SignPayloadCommandInput,
|
|
101
|
-
SignPayloadCommandOutput,
|
|
102
|
-
} from "./commands/SignPayloadCommand";
|
|
96
|
+
import { SignPayloadCommandInput, SignPayloadCommandOutput } from "./commands/SignPayloadCommand";
|
|
103
97
|
import {
|
|
104
98
|
StartSigningJobCommandInput,
|
|
105
99
|
StartSigningJobCommandOutput,
|
|
106
100
|
} from "./commands/StartSigningJobCommand";
|
|
107
|
-
import {
|
|
108
|
-
TagResourceCommandInput,
|
|
109
|
-
TagResourceCommandOutput,
|
|
110
|
-
} from "./commands/TagResourceCommand";
|
|
101
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
111
102
|
import {
|
|
112
103
|
UntagResourceCommandInput,
|
|
113
104
|
UntagResourceCommandOutput,
|
|
@@ -159,8 +150,7 @@ export type ServiceOutputTypes =
|
|
|
159
150
|
| StartSigningJobCommandOutput
|
|
160
151
|
| TagResourceCommandOutput
|
|
161
152
|
| UntagResourceCommandOutput;
|
|
162
|
-
export interface ClientDefaults
|
|
163
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
153
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
164
154
|
requestHandler?: __HttpHandlerUserInput;
|
|
165
155
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
166
156
|
urlParser?: __UrlParser;
|
|
@@ -185,9 +175,7 @@ export interface ClientDefaults
|
|
|
185
175
|
extensions?: RuntimeExtension[];
|
|
186
176
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
187
177
|
}
|
|
188
|
-
export type SignerClientConfigType = Partial<
|
|
189
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
190
|
-
> &
|
|
178
|
+
export type SignerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
191
179
|
ClientDefaults &
|
|
192
180
|
UserAgentInputConfig &
|
|
193
181
|
RetryInputConfig &
|
|
@@ -197,19 +185,17 @@ export type SignerClientConfigType = Partial<
|
|
|
197
185
|
HttpAuthSchemeInputConfig &
|
|
198
186
|
ClientInputEndpointParameters;
|
|
199
187
|
export interface SignerClientConfig extends SignerClientConfigType {}
|
|
200
|
-
export type SignerClientResolvedConfigType =
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
export interface SignerClientResolvedConfig
|
|
212
|
-
extends SignerClientResolvedConfigType {}
|
|
188
|
+
export type SignerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
189
|
+
Required<ClientDefaults> &
|
|
190
|
+
RuntimeExtensionsConfig &
|
|
191
|
+
UserAgentResolvedConfig &
|
|
192
|
+
RetryResolvedConfig &
|
|
193
|
+
RegionResolvedConfig &
|
|
194
|
+
HostHeaderResolvedConfig &
|
|
195
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
196
|
+
HttpAuthSchemeResolvedConfig &
|
|
197
|
+
ClientResolvedEndpointParameters;
|
|
198
|
+
export interface SignerClientResolvedConfig extends SignerClientResolvedConfigType {}
|
|
213
199
|
export declare class SignerClient extends __Client<
|
|
214
200
|
__HttpHandlerOptions,
|
|
215
201
|
ServiceInputTypes,
|
|
@@ -217,8 +203,6 @@ export declare class SignerClient extends __Client<
|
|
|
217
203
|
SignerClientResolvedConfig
|
|
218
204
|
> {
|
|
219
205
|
readonly config: SignerClientResolvedConfig;
|
|
220
|
-
constructor(
|
|
221
|
-
...[configuration]: __CheckOptionalClientConfig<SignerClientConfig>
|
|
222
|
-
);
|
|
206
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SignerClientConfig>);
|
|
223
207
|
destroy(): void;
|
|
224
208
|
}
|
|
@@ -7,17 +7,10 @@ import { SignerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: SignerHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: SignerHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): SignerHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { SignerClientResolvedConfig } from "../SignerClient";
|
|
15
|
-
export interface SignerHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SignerHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SignerHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SignerHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SignerClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SignerHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSignerHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SignerClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SignerHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SignerHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SignerHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SignerHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SignerHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSignerHttpAuthSchemeProvider: SignerHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SignerHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: SignerHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceOutputTypes,
|
|
5
|
-
SignerClientResolvedConfig,
|
|
6
|
-
} from "./SignerClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "./SignerClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
SignerClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AddProfilePermissionRequest,
|
|
4
|
-
AddProfilePermissionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AddProfilePermissionRequest, AddProfilePermissionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AddProfilePermissionCommandInput
|
|
8
|
-
extends AddProfilePermissionRequest {}
|
|
4
|
+
export interface AddProfilePermissionCommandInput extends AddProfilePermissionRequest {}
|
|
9
5
|
export interface AddProfilePermissionCommandOutput
|
|
10
|
-
extends AddProfilePermissionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AddProfilePermissionResponse, __MetadataBearer {}
|
|
12
7
|
declare const AddProfilePermissionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AddProfilePermissionCommandInput
|
|
9
|
+
input: AddProfilePermissionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AddProfilePermissionCommandInput,
|
|
17
12
|
AddProfilePermissionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AddProfilePermissionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AddProfilePermissionCommandInput
|
|
18
|
+
input: AddProfilePermissionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AddProfilePermissionCommandInput,
|
|
26
21
|
AddProfilePermissionCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { CancelSigningProfileRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface CancelSigningProfileCommandInput
|
|
5
|
-
extends CancelSigningProfileRequest {}
|
|
4
|
+
export interface CancelSigningProfileCommandInput extends CancelSigningProfileRequest {}
|
|
6
5
|
export interface CancelSigningProfileCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const CancelSigningProfileCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: CancelSigningProfileCommandInput
|
|
8
|
+
input: CancelSigningProfileCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
CancelSigningProfileCommandInput,
|
|
12
11
|
CancelSigningProfileCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const CancelSigningProfileCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: CancelSigningProfileCommandInput
|
|
17
|
+
input: CancelSigningProfileCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
CancelSigningProfileCommandInput,
|
|
21
20
|
CancelSigningProfileCommandOutput,
|