@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.
- package/dist-types/Signer.d.ts +18 -0
- package/dist-types/SignerClient.d.ts +24 -4
- package/dist-types/commands/AddProfilePermissionCommand.d.ts +16 -0
- package/dist-types/commands/CancelSigningProfileCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSigningJobCommand.d.ts +16 -0
- package/dist-types/commands/GetSigningPlatformCommand.d.ts +16 -0
- package/dist-types/commands/GetSigningProfileCommand.d.ts +16 -0
- package/dist-types/commands/ListProfilePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListSigningJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListSigningPlatformsCommand.d.ts +16 -0
- package/dist-types/commands/ListSigningProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutSigningProfileCommand.d.ts +16 -0
- package/dist-types/commands/RemoveProfilePermissionCommand.d.ts +16 -0
- package/dist-types/commands/RevokeSignatureCommand.d.ts +16 -0
- package/dist-types/commands/RevokeSigningProfileCommand.d.ts +16 -0
- package/dist-types/commands/StartSigningJobCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/SignerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +144 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListSigningJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSigningPlatformsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSigningProfilesPaginator.d.ts +3 -0
- package/package.json +3 -3
package/dist-types/Signer.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
18
18
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
19
19
|
import { SignerClient } from "./SignerClient";
|
|
20
20
|
/**
|
|
21
|
+
* @public
|
|
21
22
|
* <p>AWS Signer is a fully managed code signing service to help you ensure the trust and
|
|
22
23
|
* integrity of your code. </p>
|
|
23
24
|
* <p>AWS Signer supports the following applications:</p>
|
|
@@ -38,12 +39,14 @@ import { SignerClient } from "./SignerClient";
|
|
|
38
39
|
*/
|
|
39
40
|
export declare class Signer extends SignerClient {
|
|
40
41
|
/**
|
|
42
|
+
* @public
|
|
41
43
|
* <p>Adds cross-account permissions to a signing profile.</p>
|
|
42
44
|
*/
|
|
43
45
|
addProfilePermission(args: AddProfilePermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddProfilePermissionCommandOutput>;
|
|
44
46
|
addProfilePermission(args: AddProfilePermissionCommandInput, cb: (err: any, data?: AddProfilePermissionCommandOutput) => void): void;
|
|
45
47
|
addProfilePermission(args: AddProfilePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddProfilePermissionCommandOutput) => void): void;
|
|
46
48
|
/**
|
|
49
|
+
* @public
|
|
47
50
|
* <p>Changes the state of an <code>ACTIVE</code> signing profile to <code>CANCELED</code>.
|
|
48
51
|
* A canceled profile is still viewable with the <code>ListSigningProfiles</code>
|
|
49
52
|
* operation, but it cannot perform new signing jobs, and is deleted two years after
|
|
@@ -53,6 +56,7 @@ export declare class Signer extends SignerClient {
|
|
|
53
56
|
cancelSigningProfile(args: CancelSigningProfileCommandInput, cb: (err: any, data?: CancelSigningProfileCommandOutput) => void): void;
|
|
54
57
|
cancelSigningProfile(args: CancelSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSigningProfileCommandOutput) => void): void;
|
|
55
58
|
/**
|
|
59
|
+
* @public
|
|
56
60
|
* <p>Returns information about a specific code signing job. You specify the job by using
|
|
57
61
|
* the <code>jobId</code> value that is returned by the <a>StartSigningJob</a>
|
|
58
62
|
* operation. </p>
|
|
@@ -61,24 +65,28 @@ export declare class Signer extends SignerClient {
|
|
|
61
65
|
describeSigningJob(args: DescribeSigningJobCommandInput, cb: (err: any, data?: DescribeSigningJobCommandOutput) => void): void;
|
|
62
66
|
describeSigningJob(args: DescribeSigningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSigningJobCommandOutput) => void): void;
|
|
63
67
|
/**
|
|
68
|
+
* @public
|
|
64
69
|
* <p>Returns information on a specific signing platform.</p>
|
|
65
70
|
*/
|
|
66
71
|
getSigningPlatform(args: GetSigningPlatformCommandInput, options?: __HttpHandlerOptions): Promise<GetSigningPlatformCommandOutput>;
|
|
67
72
|
getSigningPlatform(args: GetSigningPlatformCommandInput, cb: (err: any, data?: GetSigningPlatformCommandOutput) => void): void;
|
|
68
73
|
getSigningPlatform(args: GetSigningPlatformCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSigningPlatformCommandOutput) => void): void;
|
|
69
74
|
/**
|
|
75
|
+
* @public
|
|
70
76
|
* <p>Returns information on a specific signing profile.</p>
|
|
71
77
|
*/
|
|
72
78
|
getSigningProfile(args: GetSigningProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetSigningProfileCommandOutput>;
|
|
73
79
|
getSigningProfile(args: GetSigningProfileCommandInput, cb: (err: any, data?: GetSigningProfileCommandOutput) => void): void;
|
|
74
80
|
getSigningProfile(args: GetSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSigningProfileCommandOutput) => void): void;
|
|
75
81
|
/**
|
|
82
|
+
* @public
|
|
76
83
|
* <p>Lists the cross-account permissions associated with a signing profile.</p>
|
|
77
84
|
*/
|
|
78
85
|
listProfilePermissions(args: ListProfilePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProfilePermissionsCommandOutput>;
|
|
79
86
|
listProfilePermissions(args: ListProfilePermissionsCommandInput, cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void): void;
|
|
80
87
|
listProfilePermissions(args: ListProfilePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfilePermissionsCommandOutput) => void): void;
|
|
81
88
|
/**
|
|
89
|
+
* @public
|
|
82
90
|
* <p>Lists all your signing jobs. You can use the <code>maxResults</code> parameter to
|
|
83
91
|
* limit the number of signing jobs that are returned in the response. If additional jobs
|
|
84
92
|
* remain to be listed, code signing returns a <code>nextToken</code> value. Use this value in
|
|
@@ -91,6 +99,7 @@ export declare class Signer extends SignerClient {
|
|
|
91
99
|
listSigningJobs(args: ListSigningJobsCommandInput, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
|
|
92
100
|
listSigningJobs(args: ListSigningJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningJobsCommandOutput) => void): void;
|
|
93
101
|
/**
|
|
102
|
+
* @public
|
|
94
103
|
* <p>Lists all signing platforms available in code signing that match the request parameters. If
|
|
95
104
|
* additional jobs remain to be listed, code signing returns a <code>nextToken</code> value. Use
|
|
96
105
|
* this value in subsequent calls to <code>ListSigningJobs</code> to fetch the remaining
|
|
@@ -103,6 +112,7 @@ export declare class Signer extends SignerClient {
|
|
|
103
112
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
|
|
104
113
|
listSigningPlatforms(args: ListSigningPlatformsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningPlatformsCommandOutput) => void): void;
|
|
105
114
|
/**
|
|
115
|
+
* @public
|
|
106
116
|
* <p>Lists all available signing profiles in your AWS account. Returns only profiles with
|
|
107
117
|
* an <code>ACTIVE</code> status unless the <code>includeCanceled</code> request field is
|
|
108
118
|
* set to <code>true</code>. If additional jobs remain to be listed, code signing returns a
|
|
@@ -116,12 +126,14 @@ export declare class Signer extends SignerClient {
|
|
|
116
126
|
listSigningProfiles(args: ListSigningProfilesCommandInput, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
|
|
117
127
|
listSigningProfiles(args: ListSigningProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSigningProfilesCommandOutput) => void): void;
|
|
118
128
|
/**
|
|
129
|
+
* @public
|
|
119
130
|
* <p>Returns a list of the tags associated with a signing profile resource.</p>
|
|
120
131
|
*/
|
|
121
132
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
122
133
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
123
134
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
124
135
|
/**
|
|
136
|
+
* @public
|
|
125
137
|
* <p>Creates a signing profile. A signing profile is a code signing template that can be used to
|
|
126
138
|
* 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>
|
|
127
139
|
* </p>
|
|
@@ -130,12 +142,14 @@ export declare class Signer extends SignerClient {
|
|
|
130
142
|
putSigningProfile(args: PutSigningProfileCommandInput, cb: (err: any, data?: PutSigningProfileCommandOutput) => void): void;
|
|
131
143
|
putSigningProfile(args: PutSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSigningProfileCommandOutput) => void): void;
|
|
132
144
|
/**
|
|
145
|
+
* @public
|
|
133
146
|
* <p>Removes cross-account permissions from a signing profile.</p>
|
|
134
147
|
*/
|
|
135
148
|
removeProfilePermission(args: RemoveProfilePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemoveProfilePermissionCommandOutput>;
|
|
136
149
|
removeProfilePermission(args: RemoveProfilePermissionCommandInput, cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void): void;
|
|
137
150
|
removeProfilePermission(args: RemoveProfilePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveProfilePermissionCommandOutput) => void): void;
|
|
138
151
|
/**
|
|
152
|
+
* @public
|
|
139
153
|
* <p>Changes the state of a signing job to REVOKED. This indicates that the signature is no
|
|
140
154
|
* longer valid.</p>
|
|
141
155
|
*/
|
|
@@ -143,6 +157,7 @@ export declare class Signer extends SignerClient {
|
|
|
143
157
|
revokeSignature(args: RevokeSignatureCommandInput, cb: (err: any, data?: RevokeSignatureCommandOutput) => void): void;
|
|
144
158
|
revokeSignature(args: RevokeSignatureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSignatureCommandOutput) => void): void;
|
|
145
159
|
/**
|
|
160
|
+
* @public
|
|
146
161
|
* <p>Changes the state of a signing profile to REVOKED. This indicates that signatures
|
|
147
162
|
* generated using the signing profile after an effective start date are no longer
|
|
148
163
|
* valid.</p>
|
|
@@ -151,6 +166,7 @@ export declare class Signer extends SignerClient {
|
|
|
151
166
|
revokeSigningProfile(args: RevokeSigningProfileCommandInput, cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void): void;
|
|
152
167
|
revokeSigningProfile(args: RevokeSigningProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSigningProfileCommandOutput) => void): void;
|
|
153
168
|
/**
|
|
169
|
+
* @public
|
|
154
170
|
* <p>Initiates a signing job to be performed on the code provided. Signing jobs are
|
|
155
171
|
* viewable by the <code>ListSigningJobs</code> operation for two years after they are
|
|
156
172
|
* performed. Note the following requirements: </p>
|
|
@@ -184,6 +200,7 @@ export declare class Signer extends SignerClient {
|
|
|
184
200
|
startSigningJob(args: StartSigningJobCommandInput, cb: (err: any, data?: StartSigningJobCommandOutput) => void): void;
|
|
185
201
|
startSigningJob(args: StartSigningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSigningJobCommandOutput) => void): void;
|
|
186
202
|
/**
|
|
203
|
+
* @public
|
|
187
204
|
* <p>Adds one or more tags to a signing profile. Tags are labels that you can use to
|
|
188
205
|
* identify and organize your AWS resources. Each tag consists of a key and an optional
|
|
189
206
|
* value. To specify the signing profile, use its Amazon Resource Name (ARN). To specify
|
|
@@ -193,6 +210,7 @@ export declare class Signer extends SignerClient {
|
|
|
193
210
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
194
211
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
195
212
|
/**
|
|
213
|
+
* @public
|
|
196
214
|
* <p>Removes one or more tags from a signing profile. To remove the tags, specify a list of
|
|
197
215
|
* tag keys.</p>
|
|
198
216
|
*/
|
|
@@ -25,15 +25,24 @@ import { StartSigningJobCommandInput, StartSigningJobCommandOutput } from "./com
|
|
|
25
25
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
26
26
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
27
27
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
28
31
|
export type ServiceInputTypes = AddProfilePermissionCommandInput | CancelSigningProfileCommandInput | DescribeSigningJobCommandInput | GetSigningPlatformCommandInput | GetSigningProfileCommandInput | ListProfilePermissionsCommandInput | ListSigningJobsCommandInput | ListSigningPlatformsCommandInput | ListSigningProfilesCommandInput | ListTagsForResourceCommandInput | PutSigningProfileCommandInput | RemoveProfilePermissionCommandInput | RevokeSignatureCommandInput | RevokeSigningProfileCommandInput | StartSigningJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
29
35
|
export type ServiceOutputTypes = AddProfilePermissionCommandOutput | CancelSigningProfileCommandOutput | DescribeSigningJobCommandOutput | GetSigningPlatformCommandOutput | GetSigningProfileCommandOutput | ListProfilePermissionsCommandOutput | ListSigningJobsCommandOutput | ListSigningPlatformsCommandOutput | ListSigningProfilesCommandOutput | ListTagsForResourceCommandOutput | PutSigningProfileCommandOutput | RemoveProfilePermissionCommandOutput | RevokeSignatureCommandOutput | RevokeSigningProfileCommandOutput | StartSigningJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
30
39
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
31
40
|
/**
|
|
32
41
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
33
42
|
*/
|
|
34
43
|
requestHandler?: __HttpHandler;
|
|
35
44
|
/**
|
|
36
|
-
* A constructor for a class implementing the {@link
|
|
45
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
37
46
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
38
47
|
* @internal
|
|
39
48
|
*/
|
|
@@ -123,23 +132,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
123
132
|
*/
|
|
124
133
|
logger?: __Logger;
|
|
125
134
|
/**
|
|
126
|
-
* The {@link
|
|
135
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
127
136
|
*/
|
|
128
137
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
129
138
|
}
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
130
142
|
type SignerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
131
143
|
/**
|
|
132
|
-
*
|
|
144
|
+
* @public
|
|
145
|
+
*
|
|
146
|
+
* The configuration interface of SignerClient class constructor that set the region, credentials and other options.
|
|
133
147
|
*/
|
|
134
148
|
export interface SignerClientConfig extends SignerClientConfigType {
|
|
135
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
136
153
|
type SignerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
137
154
|
/**
|
|
138
|
-
*
|
|
155
|
+
* @public
|
|
156
|
+
*
|
|
157
|
+
* The resolved configuration interface of SignerClient class. This is resolved and normalized from the {@link SignerClientConfig | constructor configuration interface}.
|
|
139
158
|
*/
|
|
140
159
|
export interface SignerClientResolvedConfig extends SignerClientResolvedConfigType {
|
|
141
160
|
}
|
|
142
161
|
/**
|
|
162
|
+
* @public
|
|
143
163
|
* <p>AWS Signer is a fully managed code signing service to help you ensure the trust and
|
|
144
164
|
* integrity of your code. </p>
|
|
145
165
|
* <p>AWS Signer supports the following applications:</p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AddProfilePermissionRequest, AddProfilePermissionResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddProfilePermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddProfilePermissionCommandInput extends AddProfilePermissionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddProfilePermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddProfilePermissionCommandOutput extends AddProfilePermissionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds cross-account permissions to 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 AddProfilePermissionCommandOutput extends AddProfilePermissionR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AddProfilePermissionCommandInput - {@link AddProfilePermissionCommandInput}
|
|
34
|
+
* @returns {@link AddProfilePermissionCommandOutput}
|
|
28
35
|
* @see {@link AddProfilePermissionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AddProfilePermissionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface AddProfilePermissionCommandOutput extends AddProfilePermissionR
|
|
|
56
63
|
export declare class AddProfilePermissionCommand extends $Command<AddProfilePermissionCommandInput, AddProfilePermissionCommandOutput, SignerClientResolvedConfig> {
|
|
57
64
|
readonly input: AddProfilePermissionCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: AddProfilePermissionCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddProfilePermissionCommandInput, AddProfilePermissionCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CancelSigningProfileRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelSigningProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelSigningProfileCommandInput extends CancelSigningProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelSigningProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelSigningProfileCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes the state of an <code>ACTIVE</code> signing profile to <code>CANCELED</code>.
|
|
18
23
|
* A canceled profile is still viewable with the <code>ListSigningProfiles</code>
|
|
19
24
|
* operation, but it cannot perform new signing jobs, and is deleted two years after
|
|
@@ -28,6 +33,8 @@ export interface CancelSigningProfileCommandOutput extends __MetadataBearer {
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CancelSigningProfileCommandInput - {@link CancelSigningProfileCommandInput}
|
|
37
|
+
* @returns {@link CancelSigningProfileCommandOutput}
|
|
31
38
|
* @see {@link CancelSigningProfileCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CancelSigningProfileCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface CancelSigningProfileCommandOutput extends __MetadataBearer {
|
|
|
50
57
|
export declare class CancelSigningProfileCommand extends $Command<CancelSigningProfileCommandInput, CancelSigningProfileCommandOutput, SignerClientResolvedConfig> {
|
|
51
58
|
readonly input: CancelSigningProfileCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: CancelSigningProfileCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelSigningProfileCommandInput, CancelSigningProfileCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeSigningJobRequest, DescribeSigningJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSigningJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSigningJobCommandInput extends DescribeSigningJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSigningJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSigningJobCommandOutput extends DescribeSigningJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specific code signing job. You specify the job by using
|
|
18
23
|
* the <code>jobId</code> value that is returned by the <a>StartSigningJob</a>
|
|
19
24
|
* operation. </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeSigningJobCommandOutput extends DescribeSigningJobRespo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeSigningJobCommandInput - {@link DescribeSigningJobCommandInput}
|
|
36
|
+
* @returns {@link DescribeSigningJobCommandOutput}
|
|
30
37
|
* @see {@link DescribeSigningJobCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeSigningJobCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DescribeSigningJobCommandOutput extends DescribeSigningJobRespo
|
|
|
49
56
|
export declare class DescribeSigningJobCommand extends $Command<DescribeSigningJobCommandInput, DescribeSigningJobCommandOutput, SignerClientResolvedConfig> {
|
|
50
57
|
readonly input: DescribeSigningJobCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DescribeSigningJobCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSigningJobCommandInput, DescribeSigningJobCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSigningPlatformRequest, GetSigningPlatformResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSigningPlatformCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSigningPlatformCommandInput extends GetSigningPlatformRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSigningPlatformCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSigningPlatformCommandOutput extends GetSigningPlatformResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information on a specific signing platform.</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 GetSigningPlatformCommandOutput extends GetSigningPlatformRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSigningPlatformCommandInput - {@link GetSigningPlatformCommandInput}
|
|
34
|
+
* @returns {@link GetSigningPlatformCommandOutput}
|
|
28
35
|
* @see {@link GetSigningPlatformCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSigningPlatformCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetSigningPlatformCommandOutput extends GetSigningPlatformRespo
|
|
|
47
54
|
export declare class GetSigningPlatformCommand extends $Command<GetSigningPlatformCommandInput, GetSigningPlatformCommandOutput, SignerClientResolvedConfig> {
|
|
48
55
|
readonly input: GetSigningPlatformCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetSigningPlatformCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSigningPlatformCommandInput, GetSigningPlatformCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSigningProfileRequest, GetSigningProfileResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSigningProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSigningProfileCommandInput extends GetSigningProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSigningProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSigningProfileCommandOutput extends GetSigningProfileResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information on a specific 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 GetSigningProfileCommandOutput extends GetSigningProfileRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSigningProfileCommandInput - {@link GetSigningProfileCommandInput}
|
|
34
|
+
* @returns {@link GetSigningProfileCommandOutput}
|
|
28
35
|
* @see {@link GetSigningProfileCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSigningProfileCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetSigningProfileCommandOutput extends GetSigningProfileRespons
|
|
|
47
54
|
export declare class GetSigningProfileCommand extends $Command<GetSigningProfileCommandInput, GetSigningProfileCommandOutput, SignerClientResolvedConfig> {
|
|
48
55
|
readonly input: GetSigningProfileCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetSigningProfileCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSigningProfileCommandInput, GetSigningProfileCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListProfilePermissionsRequest, ListProfilePermissionsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListProfilePermissionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListProfilePermissionsCommandInput extends ListProfilePermissionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListProfilePermissionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListProfilePermissionsCommandOutput extends ListProfilePermissionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the cross-account permissions associated with 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 ListProfilePermissionsCommandOutput extends ListProfilePermissi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListProfilePermissionsCommandInput - {@link ListProfilePermissionsCommandInput}
|
|
34
|
+
* @returns {@link ListProfilePermissionsCommandOutput}
|
|
28
35
|
* @see {@link ListProfilePermissionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListProfilePermissionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListProfilePermissionsCommandOutput extends ListProfilePermissi
|
|
|
50
57
|
export declare class ListProfilePermissionsCommand extends $Command<ListProfilePermissionsCommandInput, ListProfilePermissionsCommandOutput, SignerClientResolvedConfig> {
|
|
51
58
|
readonly input: ListProfilePermissionsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListProfilePermissionsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfilePermissionsCommandInput, ListProfilePermissionsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListSigningJobsRequest, ListSigningJobsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSigningJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSigningJobsCommandInput extends ListSigningJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSigningJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSigningJobsCommandOutput extends ListSigningJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all your signing jobs. You can use the <code>maxResults</code> parameter to
|
|
18
23
|
* limit the number of signing jobs that are returned in the response. If additional jobs
|
|
19
24
|
* remain to be listed, code signing returns a <code>nextToken</code> value. Use this value in
|
|
@@ -31,6 +36,8 @@ export interface ListSigningJobsCommandOutput extends ListSigningJobsResponse, _
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListSigningJobsCommandInput - {@link ListSigningJobsCommandInput}
|
|
40
|
+
* @returns {@link ListSigningJobsCommandOutput}
|
|
34
41
|
* @see {@link ListSigningJobsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListSigningJobsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListSigningJobsCommandOutput extends ListSigningJobsResponse, _
|
|
|
53
60
|
export declare class ListSigningJobsCommand extends $Command<ListSigningJobsCommandInput, ListSigningJobsCommandOutput, SignerClientResolvedConfig> {
|
|
54
61
|
readonly input: ListSigningJobsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListSigningJobsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSigningJobsCommandInput, ListSigningJobsCommandOutput>;
|
|
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 { ListSigningPlatformsRequest, ListSigningPlatformsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSigningPlatformsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSigningPlatformsCommandInput extends ListSigningPlatformsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSigningPlatformsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSigningPlatformsCommandOutput extends ListSigningPlatformsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all signing platforms available in code signing that match the request parameters. If
|
|
18
23
|
* additional jobs remain to be listed, code signing returns a <code>nextToken</code> value. Use
|
|
19
24
|
* this value in subsequent calls to <code>ListSigningJobs</code> to fetch the remaining
|
|
@@ -31,6 +36,8 @@ export interface ListSigningPlatformsCommandOutput extends ListSigningPlatformsR
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListSigningPlatformsCommandInput - {@link ListSigningPlatformsCommandInput}
|
|
40
|
+
* @returns {@link ListSigningPlatformsCommandOutput}
|
|
34
41
|
* @see {@link ListSigningPlatformsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListSigningPlatformsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link SignerClientResolvedConfig | config} for SignerClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListSigningPlatformsCommandOutput extends ListSigningPlatformsR
|
|
|
53
60
|
export declare class ListSigningPlatformsCommand extends $Command<ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput, SignerClientResolvedConfig> {
|
|
54
61
|
readonly input: ListSigningPlatformsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListSigningPlatformsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SignerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSigningPlatformsCommandInput, ListSigningPlatformsCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|