@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
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ SignerClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SignerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,17 @@
1
- export * from "./AddProfilePermissionCommand";
2
- export * from "./CancelSigningProfileCommand";
3
- export * from "./DescribeSigningJobCommand";
4
- export * from "./GetSigningPlatformCommand";
5
- export * from "./GetSigningProfileCommand";
6
- export * from "./ListProfilePermissionsCommand";
7
- export * from "./ListSigningJobsCommand";
8
- export * from "./ListSigningPlatformsCommand";
9
- export * from "./ListSigningProfilesCommand";
10
- export * from "./ListTagsForResourceCommand";
11
- export * from "./PutSigningProfileCommand";
12
- export * from "./RemoveProfilePermissionCommand";
13
- export * from "./RevokeSignatureCommand";
14
- export * from "./RevokeSigningProfileCommand";
15
- export * from "./StartSigningJobCommand";
16
- export * from "./TagResourceCommand";
17
- export * from "./UntagResourceCommand";
1
+ export * from "./AddProfilePermissionCommand";
2
+ export * from "./CancelSigningProfileCommand";
3
+ export * from "./DescribeSigningJobCommand";
4
+ export * from "./GetSigningPlatformCommand";
5
+ export * from "./GetSigningProfileCommand";
6
+ export * from "./ListProfilePermissionsCommand";
7
+ export * from "./ListSigningJobsCommand";
8
+ export * from "./ListSigningPlatformsCommand";
9
+ export * from "./ListSigningProfilesCommand";
10
+ export * from "./ListTagsForResourceCommand";
11
+ export * from "./PutSigningProfileCommand";
12
+ export * from "./RemoveProfilePermissionCommand";
13
+ export * from "./RevokeSignatureCommand";
14
+ export * from "./RevokeSigningProfileCommand";
15
+ export * from "./StartSigningJobCommand";
16
+ export * from "./TagResourceCommand";
17
+ export * from "./UntagResourceCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,7 +1,7 @@
1
- export * from "./Signer";
2
- export * from "./SignerClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export * from "./waiters";
7
- export { SignerServiceException } from "./models/SignerServiceException";
1
+ export * from "./Signer";
2
+ export * from "./SignerClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { SignerServiceException } from "./models/SignerServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SignerServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class SignerServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";