@aws-sdk/client-signer 3.295.0 → 3.297.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 (26) hide show
  1. package/dist-types/Signer.d.ts +18 -0
  2. package/dist-types/SignerClient.d.ts +24 -4
  3. package/dist-types/commands/AddProfilePermissionCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelSigningProfileCommand.d.ts +16 -0
  5. package/dist-types/commands/DescribeSigningJobCommand.d.ts +16 -0
  6. package/dist-types/commands/GetSigningPlatformCommand.d.ts +16 -0
  7. package/dist-types/commands/GetSigningProfileCommand.d.ts +16 -0
  8. package/dist-types/commands/ListProfilePermissionsCommand.d.ts +16 -0
  9. package/dist-types/commands/ListSigningJobsCommand.d.ts +16 -0
  10. package/dist-types/commands/ListSigningPlatformsCommand.d.ts +16 -0
  11. package/dist-types/commands/ListSigningProfilesCommand.d.ts +16 -0
  12. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  13. package/dist-types/commands/PutSigningProfileCommand.d.ts +16 -0
  14. package/dist-types/commands/RemoveProfilePermissionCommand.d.ts +16 -0
  15. package/dist-types/commands/RevokeSignatureCommand.d.ts +16 -0
  16. package/dist-types/commands/RevokeSigningProfileCommand.d.ts +16 -0
  17. package/dist-types/commands/StartSigningJobCommand.d.ts +16 -0
  18. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  19. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  20. package/dist-types/models/SignerServiceException.d.ts +2 -0
  21. package/dist-types/models/models_0.d.ts +144 -0
  22. package/dist-types/pagination/Interfaces.d.ts +3 -0
  23. package/dist-types/pagination/ListSigningJobsPaginator.d.ts +3 -0
  24. package/dist-types/pagination/ListSigningPlatformsPaginator.d.ts +3 -0
  25. package/dist-types/pagination/ListSigningProfilesPaginator.d.ts +3 -0
  26. package/package.json +30 -30
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SignerServiceException as __BaseException } from "./SignerServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You do not have sufficient access to perform this action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -12,6 +13,9 @@ export declare class AccessDeniedException extends __BaseException {
12
13
  */
13
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
15
  }
16
+ /**
17
+ * @public
18
+ */
15
19
  export interface AddProfilePermissionRequest {
16
20
  /**
17
21
  * <p>The human-readable name of the signing profile.</p>
@@ -39,6 +43,9 @@ export interface AddProfilePermissionRequest {
39
43
  */
40
44
  statementId: string | undefined;
41
45
  }
46
+ /**
47
+ * @public
48
+ */
42
49
  export interface AddProfilePermissionResponse {
43
50
  /**
44
51
  * <p>A unique identifier for the current profile revision.</p>
@@ -46,6 +53,7 @@ export interface AddProfilePermissionResponse {
46
53
  revisionId?: string;
47
54
  }
48
55
  /**
56
+ * @public
49
57
  * <p>The resource encountered a conflicting state.</p>
50
58
  */
51
59
  export declare class ConflictException extends __BaseException {
@@ -58,6 +66,7 @@ export declare class ConflictException extends __BaseException {
58
66
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
59
67
  }
60
68
  /**
69
+ * @public
61
70
  * <p>An internal error occurred.</p>
62
71
  */
63
72
  export declare class InternalServiceErrorException extends __BaseException {
@@ -70,6 +79,7 @@ export declare class InternalServiceErrorException extends __BaseException {
70
79
  constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
71
80
  }
72
81
  /**
82
+ * @public
73
83
  * <p>A specified resource could not be found.</p>
74
84
  */
75
85
  export declare class ResourceNotFoundException extends __BaseException {
@@ -82,6 +92,7 @@ export declare class ResourceNotFoundException extends __BaseException {
82
92
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
83
93
  }
84
94
  /**
95
+ * @public
85
96
  * <p>The client is making a request that exceeds service limits.</p>
86
97
  */
87
98
  export declare class ServiceLimitExceededException extends __BaseException {
@@ -94,6 +105,7 @@ export declare class ServiceLimitExceededException extends __BaseException {
94
105
  constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
95
106
  }
96
107
  /**
108
+ * @public
97
109
  * <p>The allowed number of job-signing requests has been exceeded.</p>
98
110
  * <p>This error supersedes the error <code>ThrottlingException</code>.</p>
99
111
  */
@@ -107,6 +119,7 @@ export declare class TooManyRequestsException extends __BaseException {
107
119
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
108
120
  }
109
121
  /**
122
+ * @public
110
123
  * <p>You signing certificate could not be validated.</p>
111
124
  */
112
125
  export declare class ValidationException extends __BaseException {
@@ -119,6 +132,7 @@ export declare class ValidationException extends __BaseException {
119
132
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
120
133
  }
121
134
  /**
135
+ * @public
122
136
  * <p>The request contains invalid parameters for the ARN or tags. This exception also
123
137
  * occurs when you call a tagging API on a cancelled signing profile.</p>
124
138
  */
@@ -131,22 +145,38 @@ export declare class BadRequestException extends __BaseException {
131
145
  */
132
146
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
133
147
  }
148
+ /**
149
+ * @public
150
+ */
134
151
  export interface CancelSigningProfileRequest {
135
152
  /**
136
153
  * <p>The name of the signing profile to be canceled.</p>
137
154
  */
138
155
  profileName: string | undefined;
139
156
  }
157
+ /**
158
+ * @public
159
+ */
140
160
  export type Category = "AWSIoT";
161
+ /**
162
+ * @public
163
+ */
141
164
  export interface DescribeSigningJobRequest {
142
165
  /**
143
166
  * <p>The ID of the signing job on input.</p>
144
167
  */
145
168
  jobId: string | undefined;
146
169
  }
170
+ /**
171
+ * @public
172
+ */
147
173
  export type EncryptionAlgorithm = "ECDSA" | "RSA";
174
+ /**
175
+ * @public
176
+ */
148
177
  export type HashAlgorithm = "SHA1" | "SHA256";
149
178
  /**
179
+ * @public
150
180
  * <p>A signing configuration that overrides the default encryption or hash algorithm of a
151
181
  * signing job.</p>
152
182
  */
@@ -162,8 +192,12 @@ export interface SigningConfigurationOverrides {
162
192
  */
163
193
  hashAlgorithm?: HashAlgorithm | string;
164
194
  }
195
+ /**
196
+ * @public
197
+ */
165
198
  export type ImageFormat = "JSON" | "JSONDetached" | "JSONEmbedded";
166
199
  /**
200
+ * @public
167
201
  * <p>Any overrides that are applied to the signing configuration of a code signing
168
202
  * platform.</p>
169
203
  */
@@ -184,6 +218,7 @@ export interface SigningPlatformOverrides {
184
218
  signingImageFormat?: ImageFormat | string;
185
219
  }
186
220
  /**
221
+ * @public
187
222
  * <p>Revocation information for a signing job.</p>
188
223
  */
189
224
  export interface SigningJobRevocationRecord {
@@ -201,6 +236,7 @@ export interface SigningJobRevocationRecord {
201
236
  revokedBy?: string;
202
237
  }
203
238
  /**
239
+ * @public
204
240
  * <p>The S3 bucket name and key where code signing saved your signed code image.</p>
205
241
  */
206
242
  export interface S3SignedObject {
@@ -214,6 +250,7 @@ export interface S3SignedObject {
214
250
  key?: string;
215
251
  }
216
252
  /**
253
+ * @public
217
254
  * <p>Points to an <code>S3SignedObject</code> object that contains information about your
218
255
  * signed code image.</p>
219
256
  */
@@ -224,6 +261,7 @@ export interface SignedObject {
224
261
  s3?: S3SignedObject;
225
262
  }
226
263
  /**
264
+ * @public
227
265
  * <p>The ACM certificate that is used to sign your code.</p>
228
266
  */
229
267
  export interface SigningMaterial {
@@ -234,6 +272,7 @@ export interface SigningMaterial {
234
272
  certificateArn: string | undefined;
235
273
  }
236
274
  /**
275
+ * @public
237
276
  * <p>Information about the S3 bucket where you saved your unsigned code.</p>
238
277
  */
239
278
  export interface S3Source {
@@ -251,6 +290,7 @@ export interface S3Source {
251
290
  version: string | undefined;
252
291
  }
253
292
  /**
293
+ * @public
254
294
  * <p>An <code>S3Source</code> object that contains information about the S3 bucket where
255
295
  * you saved your unsigned code.</p>
256
296
  */
@@ -260,7 +300,13 @@ export interface Source {
260
300
  */
261
301
  s3?: S3Source;
262
302
  }
303
+ /**
304
+ * @public
305
+ */
263
306
  export type SigningStatus = "Failed" | "InProgress" | "Succeeded";
307
+ /**
308
+ * @public
309
+ */
264
310
  export interface DescribeSigningJobResponse {
265
311
  /**
266
312
  * <p>The ID of the signing job on output.</p>
@@ -343,6 +389,7 @@ export interface DescribeSigningJobResponse {
343
389
  jobInvoker?: string;
344
390
  }
345
391
  /**
392
+ * @public
346
393
  * <p>The name and prefix of the S3 bucket where code signing saves your signed objects.</p>
347
394
  */
348
395
  export interface S3Destination {
@@ -357,6 +404,7 @@ export interface S3Destination {
357
404
  prefix?: string;
358
405
  }
359
406
  /**
407
+ * @public
360
408
  * <p>Points to an <code>S3Destination</code> object that contains information about your S3
361
409
  * bucket.</p>
362
410
  */
@@ -367,6 +415,7 @@ export interface Destination {
367
415
  s3?: S3Destination;
368
416
  }
369
417
  /**
418
+ * @public
370
419
  * <p>The encryption algorithm options that are available to a code signing job.</p>
371
420
  */
372
421
  export interface EncryptionAlgorithmOptions {
@@ -379,6 +428,9 @@ export interface EncryptionAlgorithmOptions {
379
428
  */
380
429
  defaultValue: EncryptionAlgorithm | string | undefined;
381
430
  }
431
+ /**
432
+ * @public
433
+ */
382
434
  export interface GetSigningPlatformRequest {
383
435
  /**
384
436
  * <p>The ID of the target signing platform.</p>
@@ -386,6 +438,7 @@ export interface GetSigningPlatformRequest {
386
438
  platformId: string | undefined;
387
439
  }
388
440
  /**
441
+ * @public
389
442
  * <p>The hash algorithms that are available to a code signing job.</p>
390
443
  */
391
444
  export interface HashAlgorithmOptions {
@@ -399,6 +452,7 @@ export interface HashAlgorithmOptions {
399
452
  defaultValue: HashAlgorithm | string | undefined;
400
453
  }
401
454
  /**
455
+ * @public
402
456
  * <p>The configuration of a code signing operation.</p>
403
457
  */
404
458
  export interface SigningConfiguration {
@@ -412,6 +466,7 @@ export interface SigningConfiguration {
412
466
  hashAlgorithmOptions: HashAlgorithmOptions | undefined;
413
467
  }
414
468
  /**
469
+ * @public
415
470
  * <p>The image format of a code signing platform or profile.</p>
416
471
  */
417
472
  export interface SigningImageFormat {
@@ -424,6 +479,9 @@ export interface SigningImageFormat {
424
479
  */
425
480
  defaultFormat: ImageFormat | string | undefined;
426
481
  }
482
+ /**
483
+ * @public
484
+ */
427
485
  export interface GetSigningPlatformResponse {
428
486
  /**
429
487
  * <p>The ID of the target signing platform.</p>
@@ -464,6 +522,9 @@ export interface GetSigningPlatformResponse {
464
522
  */
465
523
  revocationSupported?: boolean;
466
524
  }
525
+ /**
526
+ * @public
527
+ */
467
528
  export interface GetSigningProfileRequest {
468
529
  /**
469
530
  * <p>The name of the target signing profile.</p>
@@ -475,6 +536,7 @@ export interface GetSigningProfileRequest {
475
536
  profileOwner?: string;
476
537
  }
477
538
  /**
539
+ * @public
478
540
  * <p>Revocation information for a signing profile.</p>
479
541
  */
480
542
  export interface SigningProfileRevocationRecord {
@@ -491,8 +553,12 @@ export interface SigningProfileRevocationRecord {
491
553
  */
492
554
  revokedBy?: string;
493
555
  }
556
+ /**
557
+ * @public
558
+ */
494
559
  export type ValidityType = "DAYS" | "MONTHS" | "YEARS";
495
560
  /**
561
+ * @public
496
562
  * <p>The validity period for a signing job.</p>
497
563
  */
498
564
  export interface SignatureValidityPeriod {
@@ -506,7 +572,13 @@ export interface SignatureValidityPeriod {
506
572
  */
507
573
  type?: ValidityType | string;
508
574
  }
575
+ /**
576
+ * @public
577
+ */
509
578
  export type SigningProfileStatus = "Active" | "Canceled" | "Revoked";
579
+ /**
580
+ * @public
581
+ */
510
582
  export interface GetSigningProfileResponse {
511
583
  /**
512
584
  * <p>The name of the target signing profile.</p>
@@ -568,6 +640,9 @@ export interface GetSigningProfileResponse {
568
640
  */
569
641
  tags?: Record<string, string>;
570
642
  }
643
+ /**
644
+ * @public
645
+ */
571
646
  export interface ListProfilePermissionsRequest {
572
647
  /**
573
648
  * <p>Name of the signing profile containing the cross-account permissions.</p>
@@ -579,6 +654,7 @@ export interface ListProfilePermissionsRequest {
579
654
  nextToken?: string;
580
655
  }
581
656
  /**
657
+ * @public
582
658
  * <p>A cross-account permission for a signing profile.</p>
583
659
  */
584
660
  export interface Permission {
@@ -599,6 +675,9 @@ export interface Permission {
599
675
  */
600
676
  profileVersion?: string;
601
677
  }
678
+ /**
679
+ * @public
680
+ */
602
681
  export interface ListProfilePermissionsResponse {
603
682
  /**
604
683
  * <p>The identifier for the current revision of profile permissions.</p>
@@ -617,6 +696,9 @@ export interface ListProfilePermissionsResponse {
617
696
  */
618
697
  nextToken?: string;
619
698
  }
699
+ /**
700
+ * @public
701
+ */
620
702
  export interface ListSigningJobsRequest {
621
703
  /**
622
704
  * <p>A status value with which to filter your results.</p>
@@ -666,6 +748,7 @@ export interface ListSigningJobsRequest {
666
748
  jobInvoker?: string;
667
749
  }
668
750
  /**
751
+ * @public
669
752
  * <p>Contains information about a signing job.</p>
670
753
  */
671
754
  export interface SigningJob {
@@ -729,6 +812,9 @@ export interface SigningJob {
729
812
  */
730
813
  jobInvoker?: string;
731
814
  }
815
+ /**
816
+ * @public
817
+ */
732
818
  export interface ListSigningJobsResponse {
733
819
  /**
734
820
  * <p>A list of your signing jobs.</p>
@@ -739,6 +825,9 @@ export interface ListSigningJobsResponse {
739
825
  */
740
826
  nextToken?: string;
741
827
  }
828
+ /**
829
+ * @public
830
+ */
742
831
  export interface ListSigningPlatformsRequest {
743
832
  /**
744
833
  * <p>The category type of a signing platform.</p>
@@ -764,6 +853,7 @@ export interface ListSigningPlatformsRequest {
764
853
  nextToken?: string;
765
854
  }
766
855
  /**
856
+ * @public
767
857
  * <p>Contains information about the signing configurations and parameters that are used to
768
858
  * perform a code signing job.</p>
769
859
  */
@@ -806,6 +896,9 @@ export interface SigningPlatform {
806
896
  */
807
897
  revocationSupported?: boolean;
808
898
  }
899
+ /**
900
+ * @public
901
+ */
809
902
  export interface ListSigningPlatformsResponse {
810
903
  /**
811
904
  * <p>A list of all platforms that match the request parameters.</p>
@@ -816,6 +909,9 @@ export interface ListSigningPlatformsResponse {
816
909
  */
817
910
  nextToken?: string;
818
911
  }
912
+ /**
913
+ * @public
914
+ */
819
915
  export interface ListSigningProfilesRequest {
820
916
  /**
821
917
  * <p>Designates whether to include profiles with the status of
@@ -844,6 +940,7 @@ export interface ListSigningProfilesRequest {
844
940
  statuses?: (SigningProfileStatus | string)[];
845
941
  }
846
942
  /**
943
+ * @public
847
944
  * <p>Contains information about the ACM certificates and code signing configuration parameters
848
945
  * that can be used by a given code signing user.</p>
849
946
  */
@@ -893,6 +990,9 @@ export interface SigningProfile {
893
990
  */
894
991
  tags?: Record<string, string>;
895
992
  }
993
+ /**
994
+ * @public
995
+ */
896
996
  export interface ListSigningProfilesResponse {
897
997
  /**
898
998
  * <p>A list of profiles that are available in the AWS account. This includes profiles with
@@ -905,12 +1005,18 @@ export interface ListSigningProfilesResponse {
905
1005
  */
906
1006
  nextToken?: string;
907
1007
  }
1008
+ /**
1009
+ * @public
1010
+ */
908
1011
  export interface ListTagsForResourceRequest {
909
1012
  /**
910
1013
  * <p>The Amazon Resource Name (ARN) for the signing profile.</p>
911
1014
  */
912
1015
  resourceArn: string | undefined;
913
1016
  }
1017
+ /**
1018
+ * @public
1019
+ */
914
1020
  export interface ListTagsForResourceResponse {
915
1021
  /**
916
1022
  * <p>A list of tags associated with the signing profile.</p>
@@ -918,6 +1024,7 @@ export interface ListTagsForResourceResponse {
918
1024
  tags?: Record<string, string>;
919
1025
  }
920
1026
  /**
1027
+ * @public
921
1028
  * <p>The signing profile was not found.</p>
922
1029
  */
923
1030
  export declare class NotFoundException extends __BaseException {
@@ -929,6 +1036,9 @@ export declare class NotFoundException extends __BaseException {
929
1036
  */
930
1037
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
931
1038
  }
1039
+ /**
1040
+ * @public
1041
+ */
932
1042
  export interface PutSigningProfileRequest {
933
1043
  /**
934
1044
  * <p>The name of the signing profile to be created.</p>
@@ -964,6 +1074,9 @@ export interface PutSigningProfileRequest {
964
1074
  */
965
1075
  tags?: Record<string, string>;
966
1076
  }
1077
+ /**
1078
+ * @public
1079
+ */
967
1080
  export interface PutSigningProfileResponse {
968
1081
  /**
969
1082
  * <p>The Amazon Resource Name (ARN) of the signing profile created.</p>
@@ -978,6 +1091,9 @@ export interface PutSigningProfileResponse {
978
1091
  */
979
1092
  profileVersionArn?: string;
980
1093
  }
1094
+ /**
1095
+ * @public
1096
+ */
981
1097
  export interface RemoveProfilePermissionRequest {
982
1098
  /**
983
1099
  * <p>A human-readable name for the signing profile with permissions to be removed.</p>
@@ -992,12 +1108,18 @@ export interface RemoveProfilePermissionRequest {
992
1108
  */
993
1109
  statementId: string | undefined;
994
1110
  }
1111
+ /**
1112
+ * @public
1113
+ */
995
1114
  export interface RemoveProfilePermissionResponse {
996
1115
  /**
997
1116
  * <p>An identifier for the current revision of the profile permissions.</p>
998
1117
  */
999
1118
  revisionId?: string;
1000
1119
  }
1120
+ /**
1121
+ * @public
1122
+ */
1001
1123
  export interface RevokeSignatureRequest {
1002
1124
  /**
1003
1125
  * <p>ID of the signing job to be revoked.</p>
@@ -1012,6 +1134,9 @@ export interface RevokeSignatureRequest {
1012
1134
  */
1013
1135
  reason: string | undefined;
1014
1136
  }
1137
+ /**
1138
+ * @public
1139
+ */
1015
1140
  export interface RevokeSigningProfileRequest {
1016
1141
  /**
1017
1142
  * <p>The name of the signing profile to be revoked.</p>
@@ -1032,6 +1157,9 @@ export interface RevokeSigningProfileRequest {
1032
1157
  */
1033
1158
  effectiveTime: Date | undefined;
1034
1159
  }
1160
+ /**
1161
+ * @public
1162
+ */
1035
1163
  export interface StartSigningJobRequest {
1036
1164
  /**
1037
1165
  * <p>The S3 bucket that contains the object to sign or a BLOB that contains your raw
@@ -1057,6 +1185,9 @@ export interface StartSigningJobRequest {
1057
1185
  */
1058
1186
  profileOwner?: string;
1059
1187
  }
1188
+ /**
1189
+ * @public
1190
+ */
1060
1191
  export interface StartSigningJobResponse {
1061
1192
  /**
1062
1193
  * <p>The ID of your signing job.</p>
@@ -1068,6 +1199,7 @@ export interface StartSigningJobResponse {
1068
1199
  jobOwner?: string;
1069
1200
  }
1070
1201
  /**
1202
+ * @public
1071
1203
  * @deprecated
1072
1204
  *
1073
1205
  * <p>The request was denied due to request throttling.</p>
@@ -1082,6 +1214,9 @@ export declare class ThrottlingException extends __BaseException {
1082
1214
  */
1083
1215
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
1084
1216
  }
1217
+ /**
1218
+ * @public
1219
+ */
1085
1220
  export interface TagResourceRequest {
1086
1221
  /**
1087
1222
  * <p>The Amazon Resource Name (ARN) for the signing profile.</p>
@@ -1092,8 +1227,14 @@ export interface TagResourceRequest {
1092
1227
  */
1093
1228
  tags: Record<string, string> | undefined;
1094
1229
  }
1230
+ /**
1231
+ * @public
1232
+ */
1095
1233
  export interface TagResourceResponse {
1096
1234
  }
1235
+ /**
1236
+ * @public
1237
+ */
1097
1238
  export interface UntagResourceRequest {
1098
1239
  /**
1099
1240
  * <p>The Amazon Resource Name (ARN) for the signing profile.</p>
@@ -1104,6 +1245,9 @@ export interface UntagResourceRequest {
1104
1245
  */
1105
1246
  tagKeys: string[] | undefined;
1106
1247
  }
1248
+ /**
1249
+ * @public
1250
+ */
1107
1251
  export interface UntagResourceResponse {
1108
1252
  }
1109
1253
  /**
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { SignerClient } from "../SignerClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface SignerPaginationConfiguration extends PaginationConfiguration {
4
7
  client: SignerClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSigningJobsCommandInput, ListSigningJobsCommandOutput } from "../commands/ListSigningJobsCommand";
3
3
  import { SignerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSigningJobs(config: SignerPaginationConfiguration, input: ListSigningJobsCommandInput, ...additionalArguments: any): Paginator<ListSigningJobsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput } from "../commands/ListSigningPlatformsCommand";
3
3
  import { SignerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSigningPlatforms(config: SignerPaginationConfiguration, input: ListSigningPlatformsCommandInput, ...additionalArguments: any): Paginator<ListSigningPlatformsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput } from "../commands/ListSigningProfilesCommand";
3
3
  import { SignerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSigningProfiles(config: SignerPaginationConfiguration, input: ListSigningProfilesCommandInput, ...additionalArguments: any): Paginator<ListSigningProfilesCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-signer",
3
3
  "description": "AWS SDK for JavaScript Signer Client for Node.js, Browser and React Native",
4
- "version": "3.295.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.295.0",
24
- "@aws-sdk/config-resolver": "3.295.0",
25
- "@aws-sdk/credential-provider-node": "3.295.0",
26
- "@aws-sdk/fetch-http-handler": "3.295.0",
27
- "@aws-sdk/hash-node": "3.295.0",
28
- "@aws-sdk/invalid-dependency": "3.295.0",
29
- "@aws-sdk/middleware-content-length": "3.295.0",
30
- "@aws-sdk/middleware-endpoint": "3.295.0",
31
- "@aws-sdk/middleware-host-header": "3.295.0",
32
- "@aws-sdk/middleware-logger": "3.295.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.295.0",
34
- "@aws-sdk/middleware-retry": "3.295.0",
35
- "@aws-sdk/middleware-serde": "3.295.0",
36
- "@aws-sdk/middleware-signing": "3.295.0",
37
- "@aws-sdk/middleware-stack": "3.295.0",
38
- "@aws-sdk/middleware-user-agent": "3.295.0",
39
- "@aws-sdk/node-config-provider": "3.295.0",
40
- "@aws-sdk/node-http-handler": "3.295.0",
41
- "@aws-sdk/protocol-http": "3.295.0",
42
- "@aws-sdk/smithy-client": "3.295.0",
43
- "@aws-sdk/types": "3.295.0",
44
- "@aws-sdk/url-parser": "3.295.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
+ "@aws-sdk/config-resolver": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
+ "@aws-sdk/fetch-http-handler": "3.296.0",
27
+ "@aws-sdk/hash-node": "3.296.0",
28
+ "@aws-sdk/invalid-dependency": "3.296.0",
29
+ "@aws-sdk/middleware-content-length": "3.296.0",
30
+ "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-host-header": "3.296.0",
32
+ "@aws-sdk/middleware-logger": "3.296.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.296.0",
34
+ "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-serde": "3.296.0",
36
+ "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-stack": "3.296.0",
38
+ "@aws-sdk/middleware-user-agent": "3.296.0",
39
+ "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-http-handler": "3.296.0",
41
+ "@aws-sdk/protocol-http": "3.296.0",
42
+ "@aws-sdk/smithy-client": "3.296.0",
43
+ "@aws-sdk/types": "3.296.0",
44
+ "@aws-sdk/url-parser": "3.296.0",
45
45
  "@aws-sdk/util-base64": "3.295.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.295.0",
47
47
  "@aws-sdk/util-body-length-node": "3.295.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.295.0",
50
- "@aws-sdk/util-endpoints": "3.295.0",
51
- "@aws-sdk/util-retry": "3.295.0",
52
- "@aws-sdk/util-user-agent-browser": "3.295.0",
53
- "@aws-sdk/util-user-agent-node": "3.295.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.296.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-endpoints": "3.296.0",
51
+ "@aws-sdk/util-retry": "3.296.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.296.0",
53
+ "@aws-sdk/util-user-agent-node": "3.296.0",
54
54
  "@aws-sdk/util-utf8": "3.295.0",
55
- "@aws-sdk/util-waiter": "3.295.0",
55
+ "@aws-sdk/util-waiter": "3.296.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"
58
58
  },