@aws-sdk/client-signer 3.533.0 → 3.535.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-types/Signer.d.ts +4 -1
- package/dist-types/SignerClient.d.ts +1 -1
- package/dist-types/commands/AddProfilePermissionCommand.d.ts +2 -1
- package/dist-types/commands/CancelSigningProfileCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSigningJobCommand.d.ts +2 -1
- package/dist-types/commands/GetRevocationStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetSigningPlatformCommand.d.ts +2 -1
- package/dist-types/commands/GetSigningProfileCommand.d.ts +2 -1
- package/dist-types/commands/ListProfilePermissionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSigningJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListSigningPlatformsCommand.d.ts +2 -1
- package/dist-types/commands/ListSigningProfilesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutSigningProfileCommand.d.ts +2 -1
- package/dist-types/commands/RemoveProfilePermissionCommand.d.ts +2 -1
- package/dist-types/commands/RevokeSignatureCommand.d.ts +2 -1
- package/dist-types/commands/RevokeSigningProfileCommand.d.ts +2 -1
- package/dist-types/commands/SignPayloadCommand.d.ts +2 -1
- package/dist-types/commands/StartSigningJobCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +233 -234
- package/dist-types/ts3.4/Signer.d.ts +3 -0
- package/dist-types/ts3.4/commands/AddProfilePermissionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CancelSigningProfileCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeSigningJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRevocationStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSigningPlatformCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSigningProfileCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListProfilePermissionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSigningJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSigningPlatformsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSigningProfilesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutSigningProfileCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RemoveProfilePermissionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RevokeSignatureCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RevokeSigningProfileCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SignPayloadCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartSigningJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/package.json +41 -41
package/dist-types/Signer.d.ts
CHANGED
|
@@ -65,18 +65,21 @@ export interface Signer {
|
|
|
65
65
|
/**
|
|
66
66
|
* @see {@link ListSigningJobsCommand}
|
|
67
67
|
*/
|
|
68
|
+
listSigningJobs(): Promise<ListSigningJobsCommandOutput>;
|
|
68
69
|
listSigningJobs(args: ListSigningJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningJobsCommandOutput>;
|
|
69
70
|
listSigningJobs(args: ListSigningJobsCommandInput, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
|
|
70
71
|
listSigningJobs(args: ListSigningJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link ListSigningPlatformsCommand}
|
|
73
74
|
*/
|
|
75
|
+
listSigningPlatforms(): Promise<ListSigningPlatformsCommandOutput>;
|
|
74
76
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningPlatformsCommandOutput>;
|
|
75
77
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
|
|
76
78
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
|
|
77
79
|
/**
|
|
78
80
|
* @see {@link ListSigningProfilesCommand}
|
|
79
81
|
*/
|
|
82
|
+
listSigningProfiles(): Promise<ListSigningProfilesCommandOutput>;
|
|
80
83
|
listSigningProfiles(args: ListSigningProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListSigningProfilesCommandOutput>;
|
|
81
84
|
listSigningProfiles(args: ListSigningProfilesCommandInput, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
|
|
82
85
|
listSigningProfiles(args: ListSigningProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
|
|
@@ -136,7 +139,6 @@ export interface Signer {
|
|
|
136
139
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
137
140
|
}
|
|
138
141
|
/**
|
|
139
|
-
* @public
|
|
140
142
|
* <p>AWS Signer is a fully managed code-signing service to help you ensure the trust and
|
|
141
143
|
* integrity of your code. </p>
|
|
142
144
|
* <p>Signer supports the following applications:</p>
|
|
@@ -155,6 +157,7 @@ export interface Signer {
|
|
|
155
157
|
* integrity.</p>
|
|
156
158
|
* <p>For more information about Signer, see the <a href="https://docs.aws.amazon.com/signer/latest/developerguide/Welcome.html">AWS Signer Developer
|
|
157
159
|
* Guide</a>.</p>
|
|
160
|
+
* @public
|
|
158
161
|
*/
|
|
159
162
|
export declare class Signer extends SignerClient implements Signer {
|
|
160
163
|
}
|
|
@@ -170,7 +170,6 @@ export type SignerClientResolvedConfigType = __SmithyResolvedConfiguration<__Htt
|
|
|
170
170
|
export interface SignerClientResolvedConfig extends SignerClientResolvedConfigType {
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
|
-
* @public
|
|
174
173
|
* <p>AWS Signer is a fully managed code-signing service to help you ensure the trust and
|
|
175
174
|
* integrity of your code. </p>
|
|
176
175
|
* <p>Signer supports the following applications:</p>
|
|
@@ -189,6 +188,7 @@ export interface SignerClientResolvedConfig extends SignerClientResolvedConfigTy
|
|
|
189
188
|
* integrity.</p>
|
|
190
189
|
* <p>For more information about Signer, see the <a href="https://docs.aws.amazon.com/signer/latest/developerguide/Welcome.html">AWS Signer Developer
|
|
191
190
|
* Guide</a>.</p>
|
|
191
|
+
* @public
|
|
192
192
|
*/
|
|
193
193
|
export declare class SignerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig> {
|
|
194
194
|
/**
|
|
@@ -22,10 +22,10 @@ export interface AddProfilePermissionCommandOutput extends AddProfilePermissionR
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddProfilePermissionCommand_base: {
|
|
24
24
|
new (input: AddProfilePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<AddProfilePermissionCommandInput, AddProfilePermissionCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddProfilePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<AddProfilePermissionCommandInput, AddProfilePermissionCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds cross-account permissions to a signing profile.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const AddProfilePermissionCommand_base: {
|
|
|
80
80
|
* @throws {@link SignerServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class AddProfilePermissionCommand extends AddProfilePermissionCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface CancelSigningProfileCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelSigningProfileCommand_base: {
|
|
24
24
|
new (input: CancelSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CancelSigningProfileCommandInput, CancelSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CancelSigningProfileCommandInput, CancelSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Changes the state of an <code>ACTIVE</code> signing profile to <code>CANCELED</code>.
|
|
30
30
|
* A canceled profile is still viewable with the <code>ListSigningProfiles</code>
|
|
31
31
|
* operation, but it cannot perform new signing jobs, and is deleted two years after
|
|
@@ -67,6 +67,7 @@ declare const CancelSigningProfileCommand_base: {
|
|
|
67
67
|
* @throws {@link SignerServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class CancelSigningProfileCommand extends CancelSigningProfileCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeSigningJobCommandOutput extends DescribeSigningJobRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeSigningJobCommand_base: {
|
|
24
24
|
new (input: DescribeSigningJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSigningJobCommandInput, DescribeSigningJobCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeSigningJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSigningJobCommandInput, DescribeSigningJobCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a specific code signing job. You specify the job by using the
|
|
30
30
|
* <code>jobId</code> value that is returned by the <a>StartSigningJob</a>
|
|
31
31
|
* operation. </p>
|
|
@@ -111,6 +111,7 @@ declare const DescribeSigningJobCommand_base: {
|
|
|
111
111
|
* @throws {@link SignerServiceException}
|
|
112
112
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
113
113
|
*
|
|
114
|
+
* @public
|
|
114
115
|
*/
|
|
115
116
|
export declare class DescribeSigningJobCommand extends DescribeSigningJobCommand_base {
|
|
116
117
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRevocationStatusCommandOutput extends GetRevocationStatusRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRevocationStatusCommand_base: {
|
|
24
24
|
new (input: GetRevocationStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetRevocationStatusCommandInput, GetRevocationStatusCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetRevocationStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetRevocationStatusCommandInput, GetRevocationStatusCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the revocation status of one or more of the signing profile, signing job,
|
|
30
30
|
* and signing certificate.</p>
|
|
31
31
|
* @example
|
|
@@ -75,6 +75,7 @@ declare const GetRevocationStatusCommand_base: {
|
|
|
75
75
|
* @throws {@link SignerServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class GetRevocationStatusCommand extends GetRevocationStatusCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetSigningPlatformCommandOutput extends GetSigningPlatformRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetSigningPlatformCommand_base: {
|
|
24
24
|
new (input: GetSigningPlatformCommandInput): import("@smithy/smithy-client").CommandImpl<GetSigningPlatformCommandInput, GetSigningPlatformCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetSigningPlatformCommandInput): import("@smithy/smithy-client").CommandImpl<GetSigningPlatformCommandInput, GetSigningPlatformCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information on a specific signing platform.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -92,6 +92,7 @@ declare const GetSigningPlatformCommand_base: {
|
|
|
92
92
|
* @throws {@link SignerServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class GetSigningPlatformCommand extends GetSigningPlatformCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetSigningProfileCommandOutput extends GetSigningProfileRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetSigningProfileCommand_base: {
|
|
24
24
|
new (input: GetSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<GetSigningProfileCommandInput, GetSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<GetSigningProfileCommandInput, GetSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information on a specific signing profile.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -99,6 +99,7 @@ declare const GetSigningProfileCommand_base: {
|
|
|
99
99
|
* @throws {@link SignerServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class GetSigningProfileCommand extends GetSigningProfileCommand_base {
|
|
104
105
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListProfilePermissionsCommandOutput extends ListProfilePermissi
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListProfilePermissionsCommand_base: {
|
|
24
24
|
new (input: ListProfilePermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProfilePermissionsCommandInput, ListProfilePermissionsCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListProfilePermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProfilePermissionsCommandInput, ListProfilePermissionsCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the cross-account permissions associated with a signing profile.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const ListProfilePermissionsCommand_base: {
|
|
|
80
80
|
* @throws {@link SignerServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class ListProfilePermissionsCommand extends ListProfilePermissionsCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSigningJobsCommandOutput extends ListSigningJobsResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSigningJobsCommand_base: {
|
|
24
24
|
new (input: ListSigningJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSigningJobsCommandInput, ListSigningJobsCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListSigningJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSigningJobsCommandInput, ListSigningJobsCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all your signing jobs. You can use the <code>maxResults</code> parameter to limit the
|
|
30
30
|
* number of signing jobs that are returned in the response. If additional jobs remain to
|
|
31
31
|
* be listed, AWS Signer returns a <code>nextToken</code> value. Use this value in
|
|
@@ -111,6 +111,7 @@ declare const ListSigningJobsCommand_base: {
|
|
|
111
111
|
* @throws {@link SignerServiceException}
|
|
112
112
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
113
113
|
*
|
|
114
|
+
* @public
|
|
114
115
|
*/
|
|
115
116
|
export declare class ListSigningJobsCommand extends ListSigningJobsCommand_base {
|
|
116
117
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSigningPlatformsCommandOutput extends ListSigningPlatformsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSigningPlatformsCommand_base: {
|
|
24
24
|
new (input: ListSigningPlatformsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListSigningPlatformsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all signing platforms available in AWS Signer that match the request parameters. If
|
|
30
30
|
* additional jobs remain to be listed, Signer returns a <code>nextToken</code> value.
|
|
31
31
|
* Use this value in subsequent calls to <code>ListSigningJobs</code> to fetch the
|
|
@@ -107,6 +107,7 @@ declare const ListSigningPlatformsCommand_base: {
|
|
|
107
107
|
* @throws {@link SignerServiceException}
|
|
108
108
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
109
109
|
*
|
|
110
|
+
* @public
|
|
110
111
|
*/
|
|
111
112
|
export declare class ListSigningPlatformsCommand extends ListSigningPlatformsCommand_base {
|
|
112
113
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSigningProfilesCommandOutput extends ListSigningProfilesRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSigningProfilesCommand_base: {
|
|
24
24
|
new (input: ListSigningProfilesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListSigningProfilesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSigningProfilesCommandInput, ListSigningProfilesCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all available signing profiles in your AWS account. Returns only profiles with an
|
|
30
30
|
* <code>ACTIVE</code> status unless the <code>includeCanceled</code> request field is
|
|
31
31
|
* set to <code>true</code>. If additional jobs remain to be listed, AWS Signer returns a
|
|
@@ -100,6 +100,7 @@ declare const ListSigningProfilesCommand_base: {
|
|
|
100
100
|
* @throws {@link SignerServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class ListSigningProfilesCommand extends ListSigningProfilesCommand_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of the tags associated with a signing profile resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link SignerServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutSigningProfileCommandOutput extends PutSigningProfileRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutSigningProfileCommand_base: {
|
|
24
24
|
new (input: PutSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<PutSigningProfileCommandInput, PutSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<PutSigningProfileCommandInput, PutSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a signing profile. A signing profile is a code-signing template that can be used to
|
|
30
30
|
* carry out a pre-defined signing job.
|
|
31
31
|
* </p>
|
|
@@ -94,6 +94,7 @@ declare const PutSigningProfileCommand_base: {
|
|
|
94
94
|
* @throws {@link SignerServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class PutSigningProfileCommand extends PutSigningProfileCommand_base {
|
|
99
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface RemoveProfilePermissionCommandOutput extends RemoveProfilePermi
|
|
|
22
22
|
}
|
|
23
23
|
declare const RemoveProfilePermissionCommand_base: {
|
|
24
24
|
new (input: RemoveProfilePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveProfilePermissionCommandInput, RemoveProfilePermissionCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RemoveProfilePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveProfilePermissionCommandInput, RemoveProfilePermissionCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes cross-account permissions from a signing profile.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const RemoveProfilePermissionCommand_base: {
|
|
|
74
74
|
* @throws {@link SignerServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class RemoveProfilePermissionCommand extends RemoveProfilePermissionCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface RevokeSignatureCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const RevokeSignatureCommand_base: {
|
|
24
24
|
new (input: RevokeSignatureCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeSignatureCommandInput, RevokeSignatureCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RevokeSignatureCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeSignatureCommandInput, RevokeSignatureCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Changes the state of a signing job to REVOKED. This indicates that the signature is no
|
|
30
30
|
* longer valid.</p>
|
|
31
31
|
* @example
|
|
@@ -70,6 +70,7 @@ declare const RevokeSignatureCommand_base: {
|
|
|
70
70
|
* @throws {@link SignerServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class RevokeSignatureCommand extends RevokeSignatureCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const RevokeSigningProfileCommand_base: {
|
|
24
24
|
new (input: RevokeSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeSigningProfileCommandInput, RevokeSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RevokeSigningProfileCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeSigningProfileCommandInput, RevokeSigningProfileCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Changes the state of a signing profile to REVOKED. This indicates that signatures
|
|
30
30
|
* generated using the signing profile after an effective start date are no longer
|
|
31
31
|
* valid.</p>
|
|
@@ -72,6 +72,7 @@ declare const RevokeSigningProfileCommand_base: {
|
|
|
72
72
|
* @throws {@link SignerServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class RevokeSigningProfileCommand extends RevokeSigningProfileCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface SignPayloadCommandOutput extends SignPayloadResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const SignPayloadCommand_base: {
|
|
24
24
|
new (input: SignPayloadCommandInput): import("@smithy/smithy-client").CommandImpl<SignPayloadCommandInput, SignPayloadCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SignPayloadCommandInput): import("@smithy/smithy-client").CommandImpl<SignPayloadCommandInput, SignPayloadCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Signs a binary payload and returns a signature envelope.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const SignPayloadCommand_base: {
|
|
|
77
77
|
* @throws {@link SignerServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class SignPayloadCommand extends SignPayloadCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartSigningJobCommandOutput extends StartSigningJobResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartSigningJobCommand_base: {
|
|
24
24
|
new (input: StartSigningJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartSigningJobCommandInput, StartSigningJobCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartSigningJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartSigningJobCommandInput, StartSigningJobCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Initiates a signing job to be performed on the code provided. Signing jobs are
|
|
30
30
|
* viewable by the <code>ListSigningJobs</code> operation for two years after they are
|
|
31
31
|
* performed. Note the following requirements: </p>
|
|
@@ -114,6 +114,7 @@ declare const StartSigningJobCommand_base: {
|
|
|
114
114
|
* @throws {@link SignerServiceException}
|
|
115
115
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
116
116
|
*
|
|
117
|
+
* @public
|
|
117
118
|
*/
|
|
118
119
|
export declare class StartSigningJobCommand extends StartSigningJobCommand_base {
|
|
119
120
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds one or more tags to a signing profile. Tags are labels that you can use to
|
|
30
30
|
* identify and organize your AWS resources. Each tag consists of a key and an optional
|
|
31
31
|
* value. To specify the signing profile, use its Amazon Resource Name (ARN). To specify
|
|
@@ -71,6 +71,7 @@ declare const TagResourceCommand_base: {
|
|
|
71
71
|
* @throws {@link SignerServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SignerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes one or more tags from a signing profile. To remove the tags, specify a list of
|
|
30
30
|
* tag keys.</p>
|
|
31
31
|
* @example
|
|
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link SignerServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Signer service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
74
75
|
}
|