@aws-sdk/client-signer 3.296.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 +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListSigningProfilesRequest, ListSigningProfilesResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSigningProfilesCommand}.
8
10
  */
9
11
  export interface ListSigningProfilesCommandInput extends ListSigningProfilesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSigningProfilesCommand}.
13
17
  */
14
18
  export interface ListSigningProfilesCommandOutput extends ListSigningProfilesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all available signing profiles in your AWS account. Returns only profiles with
18
23
  * an <code>ACTIVE</code> status unless the <code>includeCanceled</code> request field is
19
24
  * set to <code>true</code>. If additional jobs remain to be listed, code signing returns a
@@ -32,6 +37,8 @@ export interface ListSigningProfilesCommandOutput extends ListSigningProfilesRes
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param ListSigningProfilesCommandInput - {@link ListSigningProfilesCommandInput}
41
+ * @returns {@link ListSigningProfilesCommandOutput}
35
42
  * @see {@link ListSigningProfilesCommandInput} for command's `input` shape.
36
43
  * @see {@link ListSigningProfilesCommandOutput} for command's `response` shape.
37
44
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -51,11 +58,20 @@ export interface ListSigningProfilesCommandOutput extends ListSigningProfilesRes
51
58
  export declare class ListSigningProfilesCommand extends $Command<ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput, SignerClientResolvedConfig> {
52
59
  readonly input: ListSigningProfilesCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: ListSigningProfilesCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of the tags associated with a signing profile resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -48,11 +55,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
48
55
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SignerClientResolvedConfig> {
49
56
  readonly input: ListTagsForResourceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: ListTagsForResourceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { PutSigningProfileRequest, PutSigningProfileResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutSigningProfileCommand}.
8
10
  */
9
11
  export interface PutSigningProfileCommandInput extends PutSigningProfileRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutSigningProfileCommand}.
13
17
  */
14
18
  export interface PutSigningProfileCommandOutput extends PutSigningProfileResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a signing profile. A signing profile is a code signing template that can be used to
18
23
  * carry out a pre-defined signing job. For more information, see <a href="http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html">http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html</a>
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface PutSigningProfileCommandOutput extends PutSigningProfileRespons
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param PutSigningProfileCommandInput - {@link PutSigningProfileCommandInput}
36
+ * @returns {@link PutSigningProfileCommandOutput}
30
37
  * @see {@link PutSigningProfileCommandInput} for command's `input` shape.
31
38
  * @see {@link PutSigningProfileCommandOutput} for command's `response` shape.
32
39
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface PutSigningProfileCommandOutput extends PutSigningProfileRespons
52
59
  export declare class PutSigningProfileCommand extends $Command<PutSigningProfileCommandInput, PutSigningProfileCommandOutput, SignerClientResolvedConfig> {
53
60
  readonly input: PutSigningProfileCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: PutSigningProfileCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutSigningProfileCommandInput, PutSigningProfileCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { RemoveProfilePermissionRequest, RemoveProfilePermissionResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RemoveProfilePermissionCommand}.
8
10
  */
9
11
  export interface RemoveProfilePermissionCommandInput extends RemoveProfilePermissionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RemoveProfilePermissionCommand}.
13
17
  */
14
18
  export interface RemoveProfilePermissionCommandOutput extends RemoveProfilePermissionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes cross-account permissions from a signing profile.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface RemoveProfilePermissionCommandOutput extends RemoveProfilePermi
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RemoveProfilePermissionCommandInput - {@link RemoveProfilePermissionCommandInput}
34
+ * @returns {@link RemoveProfilePermissionCommandOutput}
28
35
  * @see {@link RemoveProfilePermissionCommandInput} for command's `input` shape.
29
36
  * @see {@link RemoveProfilePermissionCommandOutput} for command's `response` shape.
30
37
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -53,11 +60,20 @@ export interface RemoveProfilePermissionCommandOutput extends RemoveProfilePermi
53
60
  export declare class RemoveProfilePermissionCommand extends $Command<RemoveProfilePermissionCommandInput, RemoveProfilePermissionCommandOutput, SignerClientResolvedConfig> {
54
61
  readonly input: RemoveProfilePermissionCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: RemoveProfilePermissionCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveProfilePermissionCommandInput, RemoveProfilePermissionCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { RevokeSignatureRequest } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RevokeSignatureCommand}.
8
10
  */
9
11
  export interface RevokeSignatureCommandInput extends RevokeSignatureRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RevokeSignatureCommand}.
13
17
  */
14
18
  export interface RevokeSignatureCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Changes the state of a signing job to REVOKED. This indicates that the signature is no
18
23
  * longer valid.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface RevokeSignatureCommandOutput extends __MetadataBearer {
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param RevokeSignatureCommandInput - {@link RevokeSignatureCommandInput}
35
+ * @returns {@link RevokeSignatureCommandOutput}
29
36
  * @see {@link RevokeSignatureCommandInput} for command's `input` shape.
30
37
  * @see {@link RevokeSignatureCommandOutput} for command's `response` shape.
31
38
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -51,11 +58,20 @@ export interface RevokeSignatureCommandOutput extends __MetadataBearer {
51
58
  export declare class RevokeSignatureCommand extends $Command<RevokeSignatureCommandInput, RevokeSignatureCommandOutput, SignerClientResolvedConfig> {
52
59
  readonly input: RevokeSignatureCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: RevokeSignatureCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeSignatureCommandInput, RevokeSignatureCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { RevokeSigningProfileRequest } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RevokeSigningProfileCommand}.
8
10
  */
9
11
  export interface RevokeSigningProfileCommandInput extends RevokeSigningProfileRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RevokeSigningProfileCommand}.
13
17
  */
14
18
  export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Changes the state of a signing profile to REVOKED. This indicates that signatures
18
23
  * generated using the signing profile after an effective start date are no longer
19
24
  * valid.</p>
@@ -27,6 +32,8 @@ export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param RevokeSigningProfileCommandInput - {@link RevokeSigningProfileCommandInput}
36
+ * @returns {@link RevokeSigningProfileCommandOutput}
30
37
  * @see {@link RevokeSigningProfileCommandInput} for command's `input` shape.
31
38
  * @see {@link RevokeSigningProfileCommandOutput} for command's `response` shape.
32
39
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {
52
59
  export declare class RevokeSigningProfileCommand extends $Command<RevokeSigningProfileCommandInput, RevokeSigningProfileCommandOutput, SignerClientResolvedConfig> {
53
60
  readonly input: RevokeSigningProfileCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: RevokeSigningProfileCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeSigningProfileCommandInput, RevokeSigningProfileCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StartSigningJobRequest, StartSigningJobResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartSigningJobCommand}.
8
10
  */
9
11
  export interface StartSigningJobCommandInput extends StartSigningJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartSigningJobCommand}.
13
17
  */
14
18
  export interface StartSigningJobCommandOutput extends StartSigningJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Initiates a signing job to be performed on the code provided. Signing jobs are
18
23
  * viewable by the <code>ListSigningJobs</code> operation for two years after they are
19
24
  * performed. Note the following requirements: </p>
@@ -52,6 +57,8 @@ export interface StartSigningJobCommandOutput extends StartSigningJobResponse, _
52
57
  * const response = await client.send(command);
53
58
  * ```
54
59
  *
60
+ * @param StartSigningJobCommandInput - {@link StartSigningJobCommandInput}
61
+ * @returns {@link StartSigningJobCommandOutput}
55
62
  * @see {@link StartSigningJobCommandInput} for command's `input` shape.
56
63
  * @see {@link StartSigningJobCommandOutput} for command's `response` shape.
57
64
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -81,11 +88,20 @@ export interface StartSigningJobCommandOutput extends StartSigningJobResponse, _
81
88
  export declare class StartSigningJobCommand extends $Command<StartSigningJobCommandInput, StartSigningJobCommandOutput, SignerClientResolvedConfig> {
82
89
  readonly input: StartSigningJobCommandInput;
83
90
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
+ /**
92
+ * @public
93
+ */
84
94
  constructor(input: StartSigningJobCommandInput);
85
95
  /**
86
96
  * @internal
87
97
  */
88
98
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSigningJobCommandInput, StartSigningJobCommandOutput>;
99
+ /**
100
+ * @internal
101
+ */
89
102
  private serialize;
103
+ /**
104
+ * @internal
105
+ */
90
106
  private deserialize;
91
107
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds one or more tags to a signing profile. Tags are labels that you can use to
18
23
  * identify and organize your AWS resources. Each tag consists of a key and an optional
19
24
  * value. To specify the signing profile, use its Amazon Resource Name (ARN). To specify
@@ -28,6 +33,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
37
+ * @returns {@link TagResourceCommandOutput}
31
38
  * @see {@link TagResourceCommandInput} for command's `input` shape.
32
39
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
33
40
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -51,11 +58,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
51
58
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SignerClientResolvedConfig> {
52
59
  readonly input: TagResourceCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: TagResourceCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes one or more tags from a signing profile. To remove the tags, specify a list of
18
23
  * tag keys.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
35
+ * @returns {@link UntagResourceCommandOutput}
29
36
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
49
56
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SignerClientResolvedConfig> {
50
57
  readonly input: UntagResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UntagResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from Signer service.
4
6
  */
5
7
  export declare class SignerServiceException extends __ServiceException {