@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,41 @@
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 { ListProfilePermissionsRequest, ListProfilePermissionsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface ListProfilePermissionsCommandInput extends ListProfilePermissionsRequest {
6
- }
7
- export interface ListProfilePermissionsCommandOutput extends ListProfilePermissionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListProfilePermissionsCommand extends $Command<ListProfilePermissionsCommandInput, ListProfilePermissionsCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: ListProfilePermissionsCommandInput;
12
- constructor(input: ListProfilePermissionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfilePermissionsCommandInput, ListProfilePermissionsCommandOutput>;
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
+ ListProfilePermissionsRequest,
10
+ ListProfilePermissionsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface ListProfilePermissionsCommandInput
18
+ extends ListProfilePermissionsRequest {}
19
+ export interface ListProfilePermissionsCommandOutput
20
+ extends ListProfilePermissionsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListProfilePermissionsCommand extends $Command<
24
+ ListProfilePermissionsCommandInput,
25
+ ListProfilePermissionsCommandOutput,
26
+ SignerClientResolvedConfig
27
+ > {
28
+ readonly input: ListProfilePermissionsCommandInput;
29
+ constructor(input: ListProfilePermissionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SignerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListProfilePermissionsCommandInput,
37
+ ListProfilePermissionsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ListSigningJobsRequest, ListSigningJobsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface ListSigningJobsCommandInput extends ListSigningJobsRequest {
6
- }
7
- export interface ListSigningJobsCommandOutput extends ListSigningJobsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListSigningJobsCommand extends $Command<ListSigningJobsCommandInput, ListSigningJobsCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: ListSigningJobsCommandInput;
12
- constructor(input: ListSigningJobsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSigningJobsCommandInput, ListSigningJobsCommandOutput>;
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
+ ListSigningJobsRequest,
10
+ ListSigningJobsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface ListSigningJobsCommandInput extends ListSigningJobsRequest {}
18
+ export interface ListSigningJobsCommandOutput
19
+ extends ListSigningJobsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListSigningJobsCommand extends $Command<
23
+ ListSigningJobsCommandInput,
24
+ ListSigningJobsCommandOutput,
25
+ SignerClientResolvedConfig
26
+ > {
27
+ readonly input: ListSigningJobsCommandInput;
28
+ constructor(input: ListSigningJobsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SignerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListSigningJobsCommandInput, ListSigningJobsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { ListSigningPlatformsRequest, ListSigningPlatformsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface ListSigningPlatformsCommandInput extends ListSigningPlatformsRequest {
6
- }
7
- export interface ListSigningPlatformsCommandOutput extends ListSigningPlatformsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListSigningPlatformsCommand extends $Command<ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: ListSigningPlatformsCommandInput;
12
- constructor(input: ListSigningPlatformsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput>;
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
+ ListSigningPlatformsRequest,
10
+ ListSigningPlatformsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface ListSigningPlatformsCommandInput
18
+ extends ListSigningPlatformsRequest {}
19
+ export interface ListSigningPlatformsCommandOutput
20
+ extends ListSigningPlatformsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListSigningPlatformsCommand extends $Command<
24
+ ListSigningPlatformsCommandInput,
25
+ ListSigningPlatformsCommandOutput,
26
+ SignerClientResolvedConfig
27
+ > {
28
+ readonly input: ListSigningPlatformsCommandInput;
29
+ constructor(input: ListSigningPlatformsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SignerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListSigningPlatformsCommandInput,
37
+ ListSigningPlatformsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { ListSigningProfilesRequest, ListSigningProfilesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface ListSigningProfilesCommandInput extends ListSigningProfilesRequest {
6
- }
7
- export interface ListSigningProfilesCommandOutput extends ListSigningProfilesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListSigningProfilesCommand extends $Command<ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: ListSigningProfilesCommandInput;
12
- constructor(input: ListSigningProfilesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput>;
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
+ ListSigningProfilesRequest,
10
+ ListSigningProfilesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface ListSigningProfilesCommandInput
18
+ extends ListSigningProfilesRequest {}
19
+ export interface ListSigningProfilesCommandOutput
20
+ extends ListSigningProfilesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListSigningProfilesCommand extends $Command<
24
+ ListSigningProfilesCommandInput,
25
+ ListSigningProfilesCommandOutput,
26
+ SignerClientResolvedConfig
27
+ > {
28
+ readonly input: ListSigningProfilesCommandInput;
29
+ constructor(input: ListSigningProfilesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SignerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ SignerClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SignerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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 { PutSigningProfileRequest, PutSigningProfileResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface PutSigningProfileCommandInput extends PutSigningProfileRequest {
6
- }
7
- export interface PutSigningProfileCommandOutput extends PutSigningProfileResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutSigningProfileCommand extends $Command<PutSigningProfileCommandInput, PutSigningProfileCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: PutSigningProfileCommandInput;
12
- constructor(input: PutSigningProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutSigningProfileCommandInput, PutSigningProfileCommandOutput>;
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
+ PutSigningProfileRequest,
10
+ PutSigningProfileResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface PutSigningProfileCommandInput
18
+ extends PutSigningProfileRequest {}
19
+ export interface PutSigningProfileCommandOutput
20
+ extends PutSigningProfileResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class PutSigningProfileCommand extends $Command<
24
+ PutSigningProfileCommandInput,
25
+ PutSigningProfileCommandOutput,
26
+ SignerClientResolvedConfig
27
+ > {
28
+ readonly input: PutSigningProfileCommandInput;
29
+ constructor(input: PutSigningProfileCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SignerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<PutSigningProfileCommandInput, PutSigningProfileCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
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 { RemoveProfilePermissionRequest, RemoveProfilePermissionResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface RemoveProfilePermissionCommandInput extends RemoveProfilePermissionRequest {
6
- }
7
- export interface RemoveProfilePermissionCommandOutput extends RemoveProfilePermissionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveProfilePermissionCommand extends $Command<RemoveProfilePermissionCommandInput, RemoveProfilePermissionCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: RemoveProfilePermissionCommandInput;
12
- constructor(input: RemoveProfilePermissionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveProfilePermissionCommandInput, RemoveProfilePermissionCommandOutput>;
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
+ RemoveProfilePermissionRequest,
10
+ RemoveProfilePermissionResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface RemoveProfilePermissionCommandInput
18
+ extends RemoveProfilePermissionRequest {}
19
+ export interface RemoveProfilePermissionCommandOutput
20
+ extends RemoveProfilePermissionResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RemoveProfilePermissionCommand extends $Command<
24
+ RemoveProfilePermissionCommandInput,
25
+ RemoveProfilePermissionCommandOutput,
26
+ SignerClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveProfilePermissionCommandInput;
29
+ constructor(input: RemoveProfilePermissionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SignerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ RemoveProfilePermissionCommandInput,
37
+ RemoveProfilePermissionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,32 @@
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 { RevokeSignatureRequest } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface RevokeSignatureCommandInput extends RevokeSignatureRequest {
6
- }
7
- export interface RevokeSignatureCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RevokeSignatureCommand extends $Command<RevokeSignatureCommandInput, RevokeSignatureCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: RevokeSignatureCommandInput;
12
- constructor(input: RevokeSignatureCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeSignatureCommandInput, RevokeSignatureCommandOutput>;
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 { RevokeSignatureRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SignerClientResolvedConfig,
13
+ } from "../SignerClient";
14
+ export interface RevokeSignatureCommandInput extends RevokeSignatureRequest {}
15
+ export interface RevokeSignatureCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class RevokeSignatureCommand extends $Command<
18
+ RevokeSignatureCommandInput,
19
+ RevokeSignatureCommandOutput,
20
+ SignerClientResolvedConfig
21
+ > {
22
+ readonly input: RevokeSignatureCommandInput;
23
+ constructor(input: RevokeSignatureCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SignerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<RevokeSignatureCommandInput, RevokeSignatureCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
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 { RevokeSigningProfileRequest } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface RevokeSigningProfileCommandInput extends RevokeSigningProfileRequest {
6
- }
7
- export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RevokeSigningProfileCommand extends $Command<RevokeSigningProfileCommandInput, RevokeSigningProfileCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: RevokeSigningProfileCommandInput;
12
- constructor(input: RevokeSigningProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeSigningProfileCommandInput, RevokeSigningProfileCommandOutput>;
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 { RevokeSigningProfileRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SignerClientResolvedConfig,
13
+ } from "../SignerClient";
14
+ export interface RevokeSigningProfileCommandInput
15
+ extends RevokeSigningProfileRequest {}
16
+ export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class RevokeSigningProfileCommand extends $Command<
19
+ RevokeSigningProfileCommandInput,
20
+ RevokeSigningProfileCommandOutput,
21
+ SignerClientResolvedConfig
22
+ > {
23
+ readonly input: RevokeSigningProfileCommandInput;
24
+ constructor(input: RevokeSigningProfileCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: SignerClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ RevokeSigningProfileCommandInput,
32
+ RevokeSigningProfileCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { StartSigningJobRequest, StartSigningJobResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface StartSigningJobCommandInput extends StartSigningJobRequest {
6
- }
7
- export interface StartSigningJobCommandOutput extends StartSigningJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartSigningJobCommand extends $Command<StartSigningJobCommandInput, StartSigningJobCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: StartSigningJobCommandInput;
12
- constructor(input: StartSigningJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSigningJobCommandInput, StartSigningJobCommandOutput>;
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
+ StartSigningJobRequest,
10
+ StartSigningJobResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SignerClientResolvedConfig,
16
+ } from "../SignerClient";
17
+ export interface StartSigningJobCommandInput extends StartSigningJobRequest {}
18
+ export interface StartSigningJobCommandOutput
19
+ extends StartSigningJobResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class StartSigningJobCommand extends $Command<
23
+ StartSigningJobCommandInput,
24
+ StartSigningJobCommandOutput,
25
+ SignerClientResolvedConfig
26
+ > {
27
+ readonly input: StartSigningJobCommandInput;
28
+ constructor(input: StartSigningJobCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SignerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StartSigningJobCommandInput, StartSigningJobCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SignerClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SignerClientResolvedConfig,
13
+ } from "../SignerClient";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ SignerClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SignerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }