@aws-sdk/client-serverlessapplicationrepository 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/ServerlessApplicationRepository.d.ts +2 -1
- package/dist-types/ServerlessApplicationRepositoryClient.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +2 -1
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +2 -1
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +2 -1
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -1
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +2 -1
- package/dist-types/commands/UnshareApplicationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +212 -212
- package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +1 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -1,91 +1,91 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ServerlessApplicationRepositoryServiceException as __BaseException } from "./ServerlessApplicationRepositoryServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>A nested application summary.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export interface ApplicationDependencySummary {
|
|
8
8
|
/**
|
|
9
|
-
* @public
|
|
10
9
|
* <p>The Amazon Resource Name (ARN) of the nested application.</p>
|
|
10
|
+
* @public
|
|
11
11
|
*/
|
|
12
12
|
ApplicationId: string | undefined;
|
|
13
13
|
/**
|
|
14
|
-
* @public
|
|
15
14
|
* <p>The semantic version of the nested application.</p>
|
|
15
|
+
* @public
|
|
16
16
|
*/
|
|
17
17
|
SemanticVersion: string | undefined;
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
|
-
* @public
|
|
21
20
|
* <p>Policy statement applied to the application.</p>
|
|
21
|
+
* @public
|
|
22
22
|
*/
|
|
23
23
|
export interface ApplicationPolicyStatement {
|
|
24
24
|
/**
|
|
25
|
-
* @public
|
|
26
25
|
* <p>For the list of actions supported for this operation, see <a href="https://docs.aws.amazon.com/serverlessrepo/latest/devguide/access-control-resource-based.html#application-permissions">Application
|
|
27
26
|
* Permissions</a>.</p>
|
|
27
|
+
* @public
|
|
28
28
|
*/
|
|
29
29
|
Actions: string[] | undefined;
|
|
30
30
|
/**
|
|
31
|
-
* @public
|
|
32
31
|
* <p>An array of PrinciplalOrgIDs, which corresponds to AWS IAM <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#principal-org-id">aws:PrincipalOrgID</a> global condition key.</p>
|
|
32
|
+
* @public
|
|
33
33
|
*/
|
|
34
34
|
PrincipalOrgIDs?: string[];
|
|
35
35
|
/**
|
|
36
|
-
* @public
|
|
37
36
|
* <p>An array of AWS account IDs, or * to make the application public.</p>
|
|
37
|
+
* @public
|
|
38
38
|
*/
|
|
39
39
|
Principals: string[] | undefined;
|
|
40
40
|
/**
|
|
41
|
-
* @public
|
|
42
41
|
* <p>A unique ID for the statement.</p>
|
|
42
|
+
* @public
|
|
43
43
|
*/
|
|
44
44
|
StatementId?: string;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
* @public
|
|
48
47
|
* <p>Summary of details about the application.</p>
|
|
48
|
+
* @public
|
|
49
49
|
*/
|
|
50
50
|
export interface ApplicationSummary {
|
|
51
51
|
/**
|
|
52
|
-
* @public
|
|
53
52
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
53
|
+
* @public
|
|
54
54
|
*/
|
|
55
55
|
ApplicationId: string | undefined;
|
|
56
56
|
/**
|
|
57
|
-
* @public
|
|
58
57
|
* <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
|
|
58
|
+
* @public
|
|
59
59
|
*/
|
|
60
60
|
Author: string | undefined;
|
|
61
61
|
/**
|
|
62
|
-
* @public
|
|
63
62
|
* <p>The date and time this resource was created.</p>
|
|
63
|
+
* @public
|
|
64
64
|
*/
|
|
65
65
|
CreationTime?: string;
|
|
66
66
|
/**
|
|
67
|
-
* @public
|
|
68
67
|
* <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
|
|
68
|
+
* @public
|
|
69
69
|
*/
|
|
70
70
|
Description: string | undefined;
|
|
71
71
|
/**
|
|
72
|
-
* @public
|
|
73
72
|
* <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
|
|
73
|
+
* @public
|
|
74
74
|
*/
|
|
75
75
|
HomePageUrl?: string;
|
|
76
76
|
/**
|
|
77
|
-
* @public
|
|
78
77
|
* <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
|
|
78
|
+
* @public
|
|
79
79
|
*/
|
|
80
80
|
Labels?: string[];
|
|
81
81
|
/**
|
|
82
|
-
* @public
|
|
83
82
|
* <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
|
|
83
|
+
* @public
|
|
84
84
|
*/
|
|
85
85
|
Name: string | undefined;
|
|
86
86
|
/**
|
|
87
|
-
* @public
|
|
88
87
|
* <p>A valid identifier from <a href="https://spdx.org/licenses/">https://spdx.org/licenses/</a>.</p>
|
|
88
|
+
* @public
|
|
89
89
|
*/
|
|
90
90
|
SpdxLicenseId?: string;
|
|
91
91
|
}
|
|
@@ -104,22 +104,21 @@ export declare const Capability: {
|
|
|
104
104
|
*/
|
|
105
105
|
export type Capability = (typeof Capability)[keyof typeof Capability];
|
|
106
106
|
/**
|
|
107
|
-
* @public
|
|
108
107
|
* <p>Parameters supported by the application.</p>
|
|
108
|
+
* @public
|
|
109
109
|
*/
|
|
110
110
|
export interface ParameterDefinition {
|
|
111
111
|
/**
|
|
112
|
-
* @public
|
|
113
112
|
* <p>A regular expression that represents the patterns to allow for String types.</p>
|
|
113
|
+
* @public
|
|
114
114
|
*/
|
|
115
115
|
AllowedPattern?: string;
|
|
116
116
|
/**
|
|
117
|
-
* @public
|
|
118
117
|
* <p>An array containing the list of values allowed for the parameter.</p>
|
|
118
|
+
* @public
|
|
119
119
|
*/
|
|
120
120
|
AllowedValues?: string[];
|
|
121
121
|
/**
|
|
122
|
-
* @public
|
|
123
122
|
* <p>A string that explains a constraint when the constraint is violated. For example, without a constraint description,
|
|
124
123
|
* a parameter that has an allowed pattern of [A-Za-z0-9]+ displays the following error message when the user
|
|
125
124
|
* specifies an invalid value:</p><p>
|
|
@@ -128,57 +127,57 @@ export interface ParameterDefinition {
|
|
|
128
127
|
* the following customized error message:</p><p>
|
|
129
128
|
* Malformed input-Parameter MyParameter must contain only uppercase and lowercase letters and numbers.
|
|
130
129
|
* </p>
|
|
130
|
+
* @public
|
|
131
131
|
*/
|
|
132
132
|
ConstraintDescription?: string;
|
|
133
133
|
/**
|
|
134
|
-
* @public
|
|
135
134
|
* <p>A value of the appropriate type for the template to use if no value is specified when a stack is created.
|
|
136
135
|
* If you define constraints for the parameter, you must specify a value that adheres to those constraints.</p>
|
|
136
|
+
* @public
|
|
137
137
|
*/
|
|
138
138
|
DefaultValue?: string;
|
|
139
139
|
/**
|
|
140
|
-
* @public
|
|
141
140
|
* <p>A string of up to 4,000 characters that describes the parameter.</p>
|
|
141
|
+
* @public
|
|
142
142
|
*/
|
|
143
143
|
Description?: string;
|
|
144
144
|
/**
|
|
145
|
-
* @public
|
|
146
145
|
* <p>An integer value that determines the largest number of characters that you want to allow for String types.</p>
|
|
146
|
+
* @public
|
|
147
147
|
*/
|
|
148
148
|
MaxLength?: number;
|
|
149
149
|
/**
|
|
150
|
-
* @public
|
|
151
150
|
* <p>A numeric value that determines the largest numeric value that you want to allow for Number types.</p>
|
|
151
|
+
* @public
|
|
152
152
|
*/
|
|
153
153
|
MaxValue?: number;
|
|
154
154
|
/**
|
|
155
|
-
* @public
|
|
156
155
|
* <p>An integer value that determines the smallest number of characters that you want to allow for String types.</p>
|
|
156
|
+
* @public
|
|
157
157
|
*/
|
|
158
158
|
MinLength?: number;
|
|
159
159
|
/**
|
|
160
|
-
* @public
|
|
161
160
|
* <p>A numeric value that determines the smallest numeric value that you want to allow for Number types.</p>
|
|
161
|
+
* @public
|
|
162
162
|
*/
|
|
163
163
|
MinValue?: number;
|
|
164
164
|
/**
|
|
165
|
-
* @public
|
|
166
165
|
* <p>The name of the parameter.</p>
|
|
166
|
+
* @public
|
|
167
167
|
*/
|
|
168
168
|
Name: string | undefined;
|
|
169
169
|
/**
|
|
170
|
-
* @public
|
|
171
170
|
* <p>Whether to mask the parameter value whenever anyone makes a call that describes the stack. If you set the
|
|
172
171
|
* value to true, the parameter value is masked with asterisks (*****).</p>
|
|
172
|
+
* @public
|
|
173
173
|
*/
|
|
174
174
|
NoEcho?: boolean;
|
|
175
175
|
/**
|
|
176
|
-
* @public
|
|
177
176
|
* <p>A list of AWS SAM resources that use this parameter.</p>
|
|
177
|
+
* @public
|
|
178
178
|
*/
|
|
179
179
|
ReferencedByResources: string[] | undefined;
|
|
180
180
|
/**
|
|
181
|
-
* @public
|
|
182
181
|
* <p>The type of the parameter.</p><p>Valid values: String | Number | List<Number> | CommaDelimitedList
|
|
183
182
|
* </p><p>
|
|
184
183
|
* String: A literal string.</p><p>For example, users can specify "MyUserName".</p><p>
|
|
@@ -188,109 +187,110 @@ export interface ParameterDefinition {
|
|
|
188
187
|
* you use the parameter elsewhere in your template (for example, by using the Ref intrinsic function), the parameter value becomes a list of strings.</p><p>For example, users might specify "80,20", and then Ref results in ["80","20"].</p><p>
|
|
189
188
|
* CommaDelimitedList: An array of literal strings that are separated by commas. The total number of strings should be one more than the total number of commas.
|
|
190
189
|
* Also, each member string is space-trimmed.</p><p>For example, users might specify "test,dev,prod", and then Ref results in ["test","dev","prod"].</p>
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
Type?: string;
|
|
193
193
|
}
|
|
194
194
|
/**
|
|
195
|
-
* @public
|
|
196
195
|
* <p>Parameter value of the application.</p>
|
|
196
|
+
* @public
|
|
197
197
|
*/
|
|
198
198
|
export interface ParameterValue {
|
|
199
199
|
/**
|
|
200
|
-
* @public
|
|
201
200
|
* <p>The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation
|
|
202
201
|
* uses the default value that is specified in your template.</p>
|
|
202
|
+
* @public
|
|
203
203
|
*/
|
|
204
204
|
Name: string | undefined;
|
|
205
205
|
/**
|
|
206
|
-
* @public
|
|
207
206
|
* <p>The input value associated with the parameter.</p>
|
|
207
|
+
* @public
|
|
208
208
|
*/
|
|
209
209
|
Value: string | undefined;
|
|
210
210
|
}
|
|
211
211
|
/**
|
|
212
|
-
* @public
|
|
213
212
|
* <p>This property corresponds to the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
|
|
214
213
|
* </i> Data Type.</p>
|
|
214
|
+
* @public
|
|
215
215
|
*/
|
|
216
216
|
export interface RollbackTrigger {
|
|
217
217
|
/**
|
|
218
|
-
* @public
|
|
219
218
|
* <p>This property corresponds to the content of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
|
|
220
219
|
* </i> Data Type.</p>
|
|
220
|
+
* @public
|
|
221
221
|
*/
|
|
222
222
|
Arn: string | undefined;
|
|
223
223
|
/**
|
|
224
|
-
* @public
|
|
225
224
|
* <p>This property corresponds to the content of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
|
|
226
225
|
* </i> Data Type.</p>
|
|
226
|
+
* @public
|
|
227
227
|
*/
|
|
228
228
|
Type: string | undefined;
|
|
229
229
|
}
|
|
230
230
|
/**
|
|
231
|
-
* @public
|
|
232
231
|
* <p>This property corresponds to the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">Tag</a>
|
|
233
232
|
* </i> Data Type.</p>
|
|
233
|
+
* @public
|
|
234
234
|
*/
|
|
235
235
|
export interface Tag {
|
|
236
236
|
/**
|
|
237
|
-
* @public
|
|
238
237
|
* <p>This property corresponds to the content of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">Tag</a>
|
|
239
238
|
* </i> Data Type.</p>
|
|
239
|
+
* @public
|
|
240
240
|
*/
|
|
241
241
|
Key: string | undefined;
|
|
242
242
|
/**
|
|
243
|
-
* @public
|
|
244
243
|
* <p>This property corresponds to the content of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">
|
|
245
244
|
* Tag</a>
|
|
246
245
|
* </i>
|
|
247
246
|
* Data Type.</p>
|
|
247
|
+
* @public
|
|
248
248
|
*/
|
|
249
249
|
Value: string | undefined;
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
|
-
* @public
|
|
253
252
|
* <p>An application version summary.</p>
|
|
253
|
+
* @public
|
|
254
254
|
*/
|
|
255
255
|
export interface VersionSummary {
|
|
256
256
|
/**
|
|
257
|
-
* @public
|
|
258
257
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
258
|
+
* @public
|
|
259
259
|
*/
|
|
260
260
|
ApplicationId: string | undefined;
|
|
261
261
|
/**
|
|
262
|
-
* @public
|
|
263
262
|
* <p>The date and time this resource was created.</p>
|
|
263
|
+
* @public
|
|
264
264
|
*/
|
|
265
265
|
CreationTime: string | undefined;
|
|
266
266
|
/**
|
|
267
|
-
* @public
|
|
268
267
|
* <p>The semantic version of the application:</p><p>
|
|
269
268
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
270
269
|
* </p>
|
|
270
|
+
* @public
|
|
271
271
|
*/
|
|
272
272
|
SemanticVersion: string | undefined;
|
|
273
273
|
/**
|
|
274
|
-
* @public
|
|
275
274
|
* <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
|
|
275
|
+
* @public
|
|
276
276
|
*/
|
|
277
277
|
SourceCodeUrl?: string;
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
280
|
-
* @public
|
|
281
280
|
* <p>One of the parameters in the request is invalid.</p>
|
|
281
|
+
* @public
|
|
282
282
|
*/
|
|
283
283
|
export declare class BadRequestException extends __BaseException {
|
|
284
284
|
readonly name: "BadRequestException";
|
|
285
285
|
readonly $fault: "client";
|
|
286
286
|
/**
|
|
287
|
-
* @public
|
|
288
287
|
* <p>400</p>
|
|
288
|
+
* @public
|
|
289
289
|
*/
|
|
290
290
|
ErrorCode?: string;
|
|
291
291
|
/**
|
|
292
|
-
* @public
|
|
293
292
|
* <p>One of the parameters in the request is invalid.</p>
|
|
293
|
+
* @public
|
|
294
294
|
*/
|
|
295
295
|
Message?: string;
|
|
296
296
|
/**
|
|
@@ -299,20 +299,20 @@ export declare class BadRequestException extends __BaseException {
|
|
|
299
299
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
302
|
-
* @public
|
|
303
302
|
* <p>The resource already exists.</p>
|
|
303
|
+
* @public
|
|
304
304
|
*/
|
|
305
305
|
export declare class ConflictException extends __BaseException {
|
|
306
306
|
readonly name: "ConflictException";
|
|
307
307
|
readonly $fault: "client";
|
|
308
308
|
/**
|
|
309
|
-
* @public
|
|
310
309
|
* <p>409</p>
|
|
310
|
+
* @public
|
|
311
311
|
*/
|
|
312
312
|
ErrorCode?: string;
|
|
313
313
|
/**
|
|
314
|
-
* @public
|
|
315
314
|
* <p>The resource already exists.</p>
|
|
315
|
+
* @public
|
|
316
316
|
*/
|
|
317
317
|
Message?: string;
|
|
318
318
|
/**
|
|
@@ -325,108 +325,107 @@ export declare class ConflictException extends __BaseException {
|
|
|
325
325
|
*/
|
|
326
326
|
export interface CreateApplicationRequest {
|
|
327
327
|
/**
|
|
328
|
-
* @public
|
|
329
328
|
* <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
|
|
329
|
+
* @public
|
|
330
330
|
*/
|
|
331
331
|
Author: string | undefined;
|
|
332
332
|
/**
|
|
333
|
-
* @public
|
|
334
333
|
* <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
|
|
334
|
+
* @public
|
|
335
335
|
*/
|
|
336
336
|
Description: string | undefined;
|
|
337
337
|
/**
|
|
338
|
-
* @public
|
|
339
338
|
* <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
|
|
339
|
+
* @public
|
|
340
340
|
*/
|
|
341
341
|
HomePageUrl?: string;
|
|
342
342
|
/**
|
|
343
|
-
* @public
|
|
344
343
|
* <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
|
|
344
|
+
* @public
|
|
345
345
|
*/
|
|
346
346
|
Labels?: string[];
|
|
347
347
|
/**
|
|
348
|
-
* @public
|
|
349
348
|
* <p>A local text file that contains the license of the app that matches the spdxLicenseID value of your application.
|
|
350
349
|
* The file has the format file://<path>/<filename>.</p><p>Maximum size 5 MB</p><p>You can specify only one of licenseBody and licenseUrl; otherwise, an error results.</p>
|
|
350
|
+
* @public
|
|
351
351
|
*/
|
|
352
352
|
LicenseBody?: string;
|
|
353
353
|
/**
|
|
354
|
-
* @public
|
|
355
354
|
* <p>A link to the S3 object that contains the license of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p><p>You can specify only one of licenseBody and licenseUrl; otherwise, an error results.</p>
|
|
355
|
+
* @public
|
|
356
356
|
*/
|
|
357
357
|
LicenseUrl?: string;
|
|
358
358
|
/**
|
|
359
|
-
* @public
|
|
360
359
|
* <p>The name of the application that you want to publish.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
|
|
360
|
+
* @public
|
|
361
361
|
*/
|
|
362
362
|
Name: string | undefined;
|
|
363
363
|
/**
|
|
364
|
-
* @public
|
|
365
364
|
* <p>A local text readme file in Markdown language that contains a more detailed description of the application and how it works.
|
|
366
365
|
* The file has the format file://<path>/<filename>.</p><p>Maximum size 5 MB</p><p>You can specify only one of readmeBody and readmeUrl; otherwise, an error results.</p>
|
|
366
|
+
* @public
|
|
367
367
|
*/
|
|
368
368
|
ReadmeBody?: string;
|
|
369
369
|
/**
|
|
370
|
-
* @public
|
|
371
370
|
* <p>A link to the S3 object in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p><p>You can specify only one of readmeBody and readmeUrl; otherwise, an error results.</p>
|
|
371
|
+
* @public
|
|
372
372
|
*/
|
|
373
373
|
ReadmeUrl?: string;
|
|
374
374
|
/**
|
|
375
|
-
* @public
|
|
376
375
|
* <p>The semantic version of the application:</p><p>
|
|
377
376
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
378
377
|
* </p>
|
|
378
|
+
* @public
|
|
379
379
|
*/
|
|
380
380
|
SemanticVersion?: string;
|
|
381
381
|
/**
|
|
382
|
-
* @public
|
|
383
382
|
* <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
|
|
383
|
+
* @public
|
|
384
384
|
*/
|
|
385
385
|
SourceCodeArchiveUrl?: string;
|
|
386
386
|
/**
|
|
387
|
-
* @public
|
|
388
387
|
* <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
|
|
388
|
+
* @public
|
|
389
389
|
*/
|
|
390
390
|
SourceCodeUrl?: string;
|
|
391
391
|
/**
|
|
392
|
-
* @public
|
|
393
392
|
* <p>A valid identifier from <a href="https://spdx.org/licenses/">https://spdx.org/licenses/</a>.</p>
|
|
393
|
+
* @public
|
|
394
394
|
*/
|
|
395
395
|
SpdxLicenseId?: string;
|
|
396
396
|
/**
|
|
397
|
-
* @public
|
|
398
397
|
* <p>The local raw packaged AWS SAM template file of your application.
|
|
399
398
|
* The file has the format file://<path>/<filename>.</p><p>You can specify only one of templateBody and templateUrl; otherwise an error results.</p>
|
|
399
|
+
* @public
|
|
400
400
|
*/
|
|
401
401
|
TemplateBody?: string;
|
|
402
402
|
/**
|
|
403
|
-
* @public
|
|
404
403
|
* <p>A link to the S3 object containing the packaged AWS SAM template of your application.</p><p>You can specify only one of templateBody and templateUrl; otherwise an error results.</p>
|
|
404
|
+
* @public
|
|
405
405
|
*/
|
|
406
406
|
TemplateUrl?: string;
|
|
407
407
|
}
|
|
408
408
|
/**
|
|
409
|
-
* @public
|
|
410
409
|
* <p>Application version details.</p>
|
|
410
|
+
* @public
|
|
411
411
|
*/
|
|
412
412
|
export interface Version {
|
|
413
413
|
/**
|
|
414
|
-
* @public
|
|
415
414
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
415
|
+
* @public
|
|
416
416
|
*/
|
|
417
417
|
ApplicationId: string | undefined;
|
|
418
418
|
/**
|
|
419
|
-
* @public
|
|
420
419
|
* <p>The date and time this resource was created.</p>
|
|
420
|
+
* @public
|
|
421
421
|
*/
|
|
422
422
|
CreationTime: string | undefined;
|
|
423
423
|
/**
|
|
424
|
-
* @public
|
|
425
424
|
* <p>An array of parameter types supported by the application.</p>
|
|
425
|
+
* @public
|
|
426
426
|
*/
|
|
427
427
|
ParameterDefinitions: ParameterDefinition[] | undefined;
|
|
428
428
|
/**
|
|
429
|
-
* @public
|
|
430
429
|
* <p>A list of values that you must specify before you can deploy certain applications.
|
|
431
430
|
* Some applications might include resources that can affect permissions in your AWS
|
|
432
431
|
* account, for example, by creating new AWS Identity and Access Management (IAM) users.
|
|
@@ -450,34 +449,35 @@ export interface Version {
|
|
|
450
449
|
* CAPABILITY_AUTO_EXPAND.</p><p>If your application template contains any of the above resources, we recommend that you review
|
|
451
450
|
* all permissions associated with the application before deploying. If you don't specify
|
|
452
451
|
* this parameter for an application that requires capabilities, the call will fail.</p>
|
|
452
|
+
* @public
|
|
453
453
|
*/
|
|
454
454
|
RequiredCapabilities: Capability[] | undefined;
|
|
455
455
|
/**
|
|
456
|
-
* @public
|
|
457
456
|
* <p>Whether all of the AWS resources contained in this application are supported in the region
|
|
458
457
|
* in which it is being retrieved.</p>
|
|
458
|
+
* @public
|
|
459
459
|
*/
|
|
460
460
|
ResourcesSupported: boolean | undefined;
|
|
461
461
|
/**
|
|
462
|
-
* @public
|
|
463
462
|
* <p>The semantic version of the application:</p><p>
|
|
464
463
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
465
464
|
* </p>
|
|
465
|
+
* @public
|
|
466
466
|
*/
|
|
467
467
|
SemanticVersion: string | undefined;
|
|
468
468
|
/**
|
|
469
|
-
* @public
|
|
470
469
|
* <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
|
|
470
|
+
* @public
|
|
471
471
|
*/
|
|
472
472
|
SourceCodeArchiveUrl?: string;
|
|
473
473
|
/**
|
|
474
|
-
* @public
|
|
475
474
|
* <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
|
|
475
|
+
* @public
|
|
476
476
|
*/
|
|
477
477
|
SourceCodeUrl?: string;
|
|
478
478
|
/**
|
|
479
|
-
* @public
|
|
480
479
|
* <p>A link to the packaged AWS SAM template of your application.</p>
|
|
480
|
+
* @public
|
|
481
481
|
*/
|
|
482
482
|
TemplateUrl: string | undefined;
|
|
483
483
|
}
|
|
@@ -486,86 +486,86 @@ export interface Version {
|
|
|
486
486
|
*/
|
|
487
487
|
export interface CreateApplicationResponse {
|
|
488
488
|
/**
|
|
489
|
-
* @public
|
|
490
489
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
490
|
+
* @public
|
|
491
491
|
*/
|
|
492
492
|
ApplicationId?: string;
|
|
493
493
|
/**
|
|
494
|
-
* @public
|
|
495
494
|
* <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
|
|
495
|
+
* @public
|
|
496
496
|
*/
|
|
497
497
|
Author?: string;
|
|
498
498
|
/**
|
|
499
|
-
* @public
|
|
500
499
|
* <p>The date and time this resource was created.</p>
|
|
500
|
+
* @public
|
|
501
501
|
*/
|
|
502
502
|
CreationTime?: string;
|
|
503
503
|
/**
|
|
504
|
-
* @public
|
|
505
504
|
* <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
|
|
505
|
+
* @public
|
|
506
506
|
*/
|
|
507
507
|
Description?: string;
|
|
508
508
|
/**
|
|
509
|
-
* @public
|
|
510
509
|
* <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
|
|
510
|
+
* @public
|
|
511
511
|
*/
|
|
512
512
|
HomePageUrl?: string;
|
|
513
513
|
/**
|
|
514
|
-
* @public
|
|
515
514
|
* <p>Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.</p>
|
|
515
|
+
* @public
|
|
516
516
|
*/
|
|
517
517
|
IsVerifiedAuthor?: boolean;
|
|
518
518
|
/**
|
|
519
|
-
* @public
|
|
520
519
|
* <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
|
|
520
|
+
* @public
|
|
521
521
|
*/
|
|
522
522
|
Labels?: string[];
|
|
523
523
|
/**
|
|
524
|
-
* @public
|
|
525
524
|
* <p>A link to a license file of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p>
|
|
525
|
+
* @public
|
|
526
526
|
*/
|
|
527
527
|
LicenseUrl?: string;
|
|
528
528
|
/**
|
|
529
|
-
* @public
|
|
530
529
|
* <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
|
|
530
|
+
* @public
|
|
531
531
|
*/
|
|
532
532
|
Name?: string;
|
|
533
533
|
/**
|
|
534
|
-
* @public
|
|
535
534
|
* <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
|
|
535
|
+
* @public
|
|
536
536
|
*/
|
|
537
537
|
ReadmeUrl?: string;
|
|
538
538
|
/**
|
|
539
|
-
* @public
|
|
540
539
|
* <p>A valid identifier from https://spdx.org/licenses/.</p>
|
|
540
|
+
* @public
|
|
541
541
|
*/
|
|
542
542
|
SpdxLicenseId?: string;
|
|
543
543
|
/**
|
|
544
|
-
* @public
|
|
545
544
|
* <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
|
|
545
|
+
* @public
|
|
546
546
|
*/
|
|
547
547
|
VerifiedAuthorUrl?: string;
|
|
548
548
|
/**
|
|
549
|
-
* @public
|
|
550
549
|
* <p>Version information about the application.</p>
|
|
550
|
+
* @public
|
|
551
551
|
*/
|
|
552
552
|
Version?: Version;
|
|
553
553
|
}
|
|
554
554
|
/**
|
|
555
|
-
* @public
|
|
556
555
|
* <p>The client is not authenticated.</p>
|
|
556
|
+
* @public
|
|
557
557
|
*/
|
|
558
558
|
export declare class ForbiddenException extends __BaseException {
|
|
559
559
|
readonly name: "ForbiddenException";
|
|
560
560
|
readonly $fault: "client";
|
|
561
561
|
/**
|
|
562
|
-
* @public
|
|
563
562
|
* <p>403</p>
|
|
563
|
+
* @public
|
|
564
564
|
*/
|
|
565
565
|
ErrorCode?: string;
|
|
566
566
|
/**
|
|
567
|
-
* @public
|
|
568
567
|
* <p>The client is not authenticated.</p>
|
|
568
|
+
* @public
|
|
569
569
|
*/
|
|
570
570
|
Message?: string;
|
|
571
571
|
/**
|
|
@@ -574,20 +574,20 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
574
574
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
575
575
|
}
|
|
576
576
|
/**
|
|
577
|
-
* @public
|
|
578
577
|
* <p>The AWS Serverless Application Repository service encountered an internal error.</p>
|
|
578
|
+
* @public
|
|
579
579
|
*/
|
|
580
580
|
export declare class InternalServerErrorException extends __BaseException {
|
|
581
581
|
readonly name: "InternalServerErrorException";
|
|
582
582
|
readonly $fault: "server";
|
|
583
583
|
/**
|
|
584
|
-
* @public
|
|
585
584
|
* <p>500</p>
|
|
585
|
+
* @public
|
|
586
586
|
*/
|
|
587
587
|
ErrorCode?: string;
|
|
588
588
|
/**
|
|
589
|
-
* @public
|
|
590
589
|
* <p>The AWS Serverless Application Repository service encountered an internal error.</p>
|
|
590
|
+
* @public
|
|
591
591
|
*/
|
|
592
592
|
Message?: string;
|
|
593
593
|
/**
|
|
@@ -596,20 +596,20 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
596
596
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
597
597
|
}
|
|
598
598
|
/**
|
|
599
|
-
* @public
|
|
600
599
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
600
|
+
* @public
|
|
601
601
|
*/
|
|
602
602
|
export declare class TooManyRequestsException extends __BaseException {
|
|
603
603
|
readonly name: "TooManyRequestsException";
|
|
604
604
|
readonly $fault: "client";
|
|
605
605
|
/**
|
|
606
|
-
* @public
|
|
607
606
|
* <p>429</p>
|
|
607
|
+
* @public
|
|
608
608
|
*/
|
|
609
609
|
ErrorCode?: string;
|
|
610
610
|
/**
|
|
611
|
-
* @public
|
|
612
611
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
612
|
+
* @public
|
|
613
613
|
*/
|
|
614
614
|
Message?: string;
|
|
615
615
|
/**
|
|
@@ -622,33 +622,33 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
622
622
|
*/
|
|
623
623
|
export interface CreateApplicationVersionRequest {
|
|
624
624
|
/**
|
|
625
|
-
* @public
|
|
626
625
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
626
|
+
* @public
|
|
627
627
|
*/
|
|
628
628
|
ApplicationId: string | undefined;
|
|
629
629
|
/**
|
|
630
|
-
* @public
|
|
631
630
|
* <p>The semantic version of the new version.</p>
|
|
631
|
+
* @public
|
|
632
632
|
*/
|
|
633
633
|
SemanticVersion: string | undefined;
|
|
634
634
|
/**
|
|
635
|
-
* @public
|
|
636
635
|
* <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
|
|
636
|
+
* @public
|
|
637
637
|
*/
|
|
638
638
|
SourceCodeArchiveUrl?: string;
|
|
639
639
|
/**
|
|
640
|
-
* @public
|
|
641
640
|
* <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
|
|
641
|
+
* @public
|
|
642
642
|
*/
|
|
643
643
|
SourceCodeUrl?: string;
|
|
644
644
|
/**
|
|
645
|
-
* @public
|
|
646
645
|
* <p>The raw packaged AWS SAM template of your application.</p>
|
|
646
|
+
* @public
|
|
647
647
|
*/
|
|
648
648
|
TemplateBody?: string;
|
|
649
649
|
/**
|
|
650
|
-
* @public
|
|
651
650
|
* <p>A link to the packaged AWS SAM template of your application.</p>
|
|
651
|
+
* @public
|
|
652
652
|
*/
|
|
653
653
|
TemplateUrl?: string;
|
|
654
654
|
}
|
|
@@ -657,22 +657,21 @@ export interface CreateApplicationVersionRequest {
|
|
|
657
657
|
*/
|
|
658
658
|
export interface CreateApplicationVersionResponse {
|
|
659
659
|
/**
|
|
660
|
-
* @public
|
|
661
660
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
661
|
+
* @public
|
|
662
662
|
*/
|
|
663
663
|
ApplicationId?: string;
|
|
664
664
|
/**
|
|
665
|
-
* @public
|
|
666
665
|
* <p>The date and time this resource was created.</p>
|
|
666
|
+
* @public
|
|
667
667
|
*/
|
|
668
668
|
CreationTime?: string;
|
|
669
669
|
/**
|
|
670
|
-
* @public
|
|
671
670
|
* <p>An array of parameter types supported by the application.</p>
|
|
671
|
+
* @public
|
|
672
672
|
*/
|
|
673
673
|
ParameterDefinitions?: ParameterDefinition[];
|
|
674
674
|
/**
|
|
675
|
-
* @public
|
|
676
675
|
* <p>A list of values that you must specify before you can deploy certain applications.
|
|
677
676
|
* Some applications might include resources that can affect permissions in your AWS
|
|
678
677
|
* account, for example, by creating new AWS Identity and Access Management (IAM) users.
|
|
@@ -696,53 +695,54 @@ export interface CreateApplicationVersionResponse {
|
|
|
696
695
|
* CAPABILITY_AUTO_EXPAND.</p><p>If your application template contains any of the above resources, we recommend that you review
|
|
697
696
|
* all permissions associated with the application before deploying. If you don't specify
|
|
698
697
|
* this parameter for an application that requires capabilities, the call will fail.</p>
|
|
698
|
+
* @public
|
|
699
699
|
*/
|
|
700
700
|
RequiredCapabilities?: Capability[];
|
|
701
701
|
/**
|
|
702
|
-
* @public
|
|
703
702
|
* <p>Whether all of the AWS resources contained in this application are supported in the region
|
|
704
703
|
* in which it is being retrieved.</p>
|
|
704
|
+
* @public
|
|
705
705
|
*/
|
|
706
706
|
ResourcesSupported?: boolean;
|
|
707
707
|
/**
|
|
708
|
-
* @public
|
|
709
708
|
* <p>The semantic version of the application:</p><p>
|
|
710
709
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
711
710
|
* </p>
|
|
711
|
+
* @public
|
|
712
712
|
*/
|
|
713
713
|
SemanticVersion?: string;
|
|
714
714
|
/**
|
|
715
|
-
* @public
|
|
716
715
|
* <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
|
|
716
|
+
* @public
|
|
717
717
|
*/
|
|
718
718
|
SourceCodeArchiveUrl?: string;
|
|
719
719
|
/**
|
|
720
|
-
* @public
|
|
721
720
|
* <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
|
|
721
|
+
* @public
|
|
722
722
|
*/
|
|
723
723
|
SourceCodeUrl?: string;
|
|
724
724
|
/**
|
|
725
|
-
* @public
|
|
726
725
|
* <p>A link to the packaged AWS SAM template of your application.</p>
|
|
726
|
+
* @public
|
|
727
727
|
*/
|
|
728
728
|
TemplateUrl?: string;
|
|
729
729
|
}
|
|
730
730
|
/**
|
|
731
|
-
* @public
|
|
732
731
|
* <p>This property corresponds to the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
733
732
|
* </i> Data Type.</p>
|
|
733
|
+
* @public
|
|
734
734
|
*/
|
|
735
735
|
export interface RollbackConfiguration {
|
|
736
736
|
/**
|
|
737
|
-
* @public
|
|
738
737
|
* <p>This property corresponds to the content of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
739
738
|
* </i> Data Type.</p>
|
|
739
|
+
* @public
|
|
740
740
|
*/
|
|
741
741
|
MonitoringTimeInMinutes?: number;
|
|
742
742
|
/**
|
|
743
|
-
* @public
|
|
744
743
|
* <p>This property corresponds to the content of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
|
|
745
744
|
* </i> Data Type.</p>
|
|
745
|
+
* @public
|
|
746
746
|
*/
|
|
747
747
|
RollbackTriggers?: RollbackTrigger[];
|
|
748
748
|
}
|
|
@@ -751,12 +751,11 @@ export interface RollbackConfiguration {
|
|
|
751
751
|
*/
|
|
752
752
|
export interface CreateCloudFormationChangeSetRequest {
|
|
753
753
|
/**
|
|
754
|
-
* @public
|
|
755
754
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
755
|
+
* @public
|
|
756
756
|
*/
|
|
757
757
|
ApplicationId: string | undefined;
|
|
758
758
|
/**
|
|
759
|
-
* @public
|
|
760
759
|
* <p>A list of values that you must specify before you can deploy certain applications.
|
|
761
760
|
* Some applications might include resources that can affect permissions in your AWS
|
|
762
761
|
* account, for example, by creating new AWS Identity and Access Management (IAM) users.
|
|
@@ -780,71 +779,72 @@ export interface CreateCloudFormationChangeSetRequest {
|
|
|
780
779
|
* CAPABILITY_AUTO_EXPAND.</p><p>If your application template contains any of the above resources, we recommend that you review
|
|
781
780
|
* all permissions associated with the application before deploying. If you don't specify
|
|
782
781
|
* this parameter for an application that requires capabilities, the call will fail.</p>
|
|
782
|
+
* @public
|
|
783
783
|
*/
|
|
784
784
|
Capabilities?: string[];
|
|
785
785
|
/**
|
|
786
|
-
* @public
|
|
787
786
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
788
787
|
* </i> API.</p>
|
|
788
|
+
* @public
|
|
789
789
|
*/
|
|
790
790
|
ChangeSetName?: string;
|
|
791
791
|
/**
|
|
792
|
-
* @public
|
|
793
792
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
794
793
|
* </i> API.</p>
|
|
794
|
+
* @public
|
|
795
795
|
*/
|
|
796
796
|
ClientToken?: string;
|
|
797
797
|
/**
|
|
798
|
-
* @public
|
|
799
798
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
800
799
|
* </i> API.</p>
|
|
800
|
+
* @public
|
|
801
801
|
*/
|
|
802
802
|
Description?: string;
|
|
803
803
|
/**
|
|
804
|
-
* @public
|
|
805
804
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
806
805
|
* </i> API.</p>
|
|
806
|
+
* @public
|
|
807
807
|
*/
|
|
808
808
|
NotificationArns?: string[];
|
|
809
809
|
/**
|
|
810
|
-
* @public
|
|
811
810
|
* <p>A list of parameter values for the parameters of the application.</p>
|
|
811
|
+
* @public
|
|
812
812
|
*/
|
|
813
813
|
ParameterOverrides?: ParameterValue[];
|
|
814
814
|
/**
|
|
815
|
-
* @public
|
|
816
815
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
817
816
|
* </i> API.</p>
|
|
817
|
+
* @public
|
|
818
818
|
*/
|
|
819
819
|
ResourceTypes?: string[];
|
|
820
820
|
/**
|
|
821
|
-
* @public
|
|
822
821
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
823
822
|
* </i> API.</p>
|
|
823
|
+
* @public
|
|
824
824
|
*/
|
|
825
825
|
RollbackConfiguration?: RollbackConfiguration;
|
|
826
826
|
/**
|
|
827
|
-
* @public
|
|
828
827
|
* <p>The semantic version of the application:</p><p>
|
|
829
828
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
830
829
|
* </p>
|
|
830
|
+
* @public
|
|
831
831
|
*/
|
|
832
832
|
SemanticVersion?: string;
|
|
833
833
|
/**
|
|
834
|
-
* @public
|
|
835
834
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
836
835
|
* </i> API.</p>
|
|
836
|
+
* @public
|
|
837
837
|
*/
|
|
838
838
|
StackName: string | undefined;
|
|
839
839
|
/**
|
|
840
|
-
* @public
|
|
841
840
|
* <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
|
|
842
841
|
* </i> API.</p>
|
|
842
|
+
* @public
|
|
843
843
|
*/
|
|
844
844
|
Tags?: Tag[];
|
|
845
845
|
/**
|
|
846
|
-
* @public
|
|
847
846
|
* <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
|
|
847
|
+
* @public
|
|
848
848
|
*/
|
|
849
849
|
TemplateId?: string;
|
|
850
850
|
}
|
|
@@ -853,25 +853,25 @@ export interface CreateCloudFormationChangeSetRequest {
|
|
|
853
853
|
*/
|
|
854
854
|
export interface CreateCloudFormationChangeSetResponse {
|
|
855
855
|
/**
|
|
856
|
-
* @public
|
|
857
856
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
857
|
+
* @public
|
|
858
858
|
*/
|
|
859
859
|
ApplicationId?: string;
|
|
860
860
|
/**
|
|
861
|
-
* @public
|
|
862
861
|
* <p>The Amazon Resource Name (ARN) of the change set.</p><p>Length constraints: Minimum length of 1.</p><p>Pattern: ARN:[-a-zA-Z0-9:/]*</p>
|
|
862
|
+
* @public
|
|
863
863
|
*/
|
|
864
864
|
ChangeSetId?: string;
|
|
865
865
|
/**
|
|
866
|
-
* @public
|
|
867
866
|
* <p>The semantic version of the application:</p><p>
|
|
868
867
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
869
868
|
* </p>
|
|
869
|
+
* @public
|
|
870
870
|
*/
|
|
871
871
|
SemanticVersion?: string;
|
|
872
872
|
/**
|
|
873
|
-
* @public
|
|
874
873
|
* <p>The unique ID of the stack.</p>
|
|
874
|
+
* @public
|
|
875
875
|
*/
|
|
876
876
|
StackId?: string;
|
|
877
877
|
}
|
|
@@ -880,15 +880,15 @@ export interface CreateCloudFormationChangeSetResponse {
|
|
|
880
880
|
*/
|
|
881
881
|
export interface CreateCloudFormationTemplateRequest {
|
|
882
882
|
/**
|
|
883
|
-
* @public
|
|
884
883
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
884
|
+
* @public
|
|
885
885
|
*/
|
|
886
886
|
ApplicationId: string | undefined;
|
|
887
887
|
/**
|
|
888
|
-
* @public
|
|
889
888
|
* <p>The semantic version of the application:</p><p>
|
|
890
889
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
891
890
|
* </p>
|
|
891
|
+
* @public
|
|
892
892
|
*/
|
|
893
893
|
SemanticVersion?: string;
|
|
894
894
|
}
|
|
@@ -910,61 +910,61 @@ export type Status = (typeof Status)[keyof typeof Status];
|
|
|
910
910
|
*/
|
|
911
911
|
export interface CreateCloudFormationTemplateResponse {
|
|
912
912
|
/**
|
|
913
|
-
* @public
|
|
914
913
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
914
|
+
* @public
|
|
915
915
|
*/
|
|
916
916
|
ApplicationId?: string;
|
|
917
917
|
/**
|
|
918
|
-
* @public
|
|
919
918
|
* <p>The date and time this resource was created.</p>
|
|
919
|
+
* @public
|
|
920
920
|
*/
|
|
921
921
|
CreationTime?: string;
|
|
922
922
|
/**
|
|
923
|
-
* @public
|
|
924
923
|
* <p>The date and time this template expires. Templates
|
|
925
924
|
* expire 1 hour after creation.</p>
|
|
925
|
+
* @public
|
|
926
926
|
*/
|
|
927
927
|
ExpirationTime?: string;
|
|
928
928
|
/**
|
|
929
|
-
* @public
|
|
930
929
|
* <p>The semantic version of the application:</p><p>
|
|
931
930
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
932
931
|
* </p>
|
|
932
|
+
* @public
|
|
933
933
|
*/
|
|
934
934
|
SemanticVersion?: string;
|
|
935
935
|
/**
|
|
936
|
-
* @public
|
|
937
936
|
* <p>Status of the template creation workflow.</p><p>Possible values: PREPARING | ACTIVE | EXPIRED
|
|
938
937
|
* </p>
|
|
938
|
+
* @public
|
|
939
939
|
*/
|
|
940
940
|
Status?: Status;
|
|
941
941
|
/**
|
|
942
|
-
* @public
|
|
943
942
|
* <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
|
|
943
|
+
* @public
|
|
944
944
|
*/
|
|
945
945
|
TemplateId?: string;
|
|
946
946
|
/**
|
|
947
|
-
* @public
|
|
948
947
|
* <p>A link to the template that can be used to deploy the application using
|
|
949
948
|
* AWS CloudFormation.</p>
|
|
949
|
+
* @public
|
|
950
950
|
*/
|
|
951
951
|
TemplateUrl?: string;
|
|
952
952
|
}
|
|
953
953
|
/**
|
|
954
|
-
* @public
|
|
955
954
|
* <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
|
|
955
|
+
* @public
|
|
956
956
|
*/
|
|
957
957
|
export declare class NotFoundException extends __BaseException {
|
|
958
958
|
readonly name: "NotFoundException";
|
|
959
959
|
readonly $fault: "client";
|
|
960
960
|
/**
|
|
961
|
-
* @public
|
|
962
961
|
* <p>404</p>
|
|
962
|
+
* @public
|
|
963
963
|
*/
|
|
964
964
|
ErrorCode?: string;
|
|
965
965
|
/**
|
|
966
|
-
* @public
|
|
967
966
|
* <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
|
|
967
|
+
* @public
|
|
968
968
|
*/
|
|
969
969
|
Message?: string;
|
|
970
970
|
/**
|
|
@@ -977,8 +977,8 @@ export declare class NotFoundException extends __BaseException {
|
|
|
977
977
|
*/
|
|
978
978
|
export interface DeleteApplicationRequest {
|
|
979
979
|
/**
|
|
980
|
-
* @public
|
|
981
980
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
981
|
+
* @public
|
|
982
982
|
*/
|
|
983
983
|
ApplicationId: string | undefined;
|
|
984
984
|
}
|
|
@@ -987,13 +987,13 @@ export interface DeleteApplicationRequest {
|
|
|
987
987
|
*/
|
|
988
988
|
export interface GetApplicationRequest {
|
|
989
989
|
/**
|
|
990
|
-
* @public
|
|
991
990
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
991
|
+
* @public
|
|
992
992
|
*/
|
|
993
993
|
ApplicationId: string | undefined;
|
|
994
994
|
/**
|
|
995
|
-
* @public
|
|
996
995
|
* <p>The semantic version of the application to get.</p>
|
|
996
|
+
* @public
|
|
997
997
|
*/
|
|
998
998
|
SemanticVersion?: string;
|
|
999
999
|
}
|
|
@@ -1002,68 +1002,68 @@ export interface GetApplicationRequest {
|
|
|
1002
1002
|
*/
|
|
1003
1003
|
export interface GetApplicationResponse {
|
|
1004
1004
|
/**
|
|
1005
|
-
* @public
|
|
1006
1005
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
1006
|
+
* @public
|
|
1007
1007
|
*/
|
|
1008
1008
|
ApplicationId?: string;
|
|
1009
1009
|
/**
|
|
1010
|
-
* @public
|
|
1011
1010
|
* <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
|
|
1011
|
+
* @public
|
|
1012
1012
|
*/
|
|
1013
1013
|
Author?: string;
|
|
1014
1014
|
/**
|
|
1015
|
-
* @public
|
|
1016
1015
|
* <p>The date and time this resource was created.</p>
|
|
1016
|
+
* @public
|
|
1017
1017
|
*/
|
|
1018
1018
|
CreationTime?: string;
|
|
1019
1019
|
/**
|
|
1020
|
-
* @public
|
|
1021
1020
|
* <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
|
|
1021
|
+
* @public
|
|
1022
1022
|
*/
|
|
1023
1023
|
Description?: string;
|
|
1024
1024
|
/**
|
|
1025
|
-
* @public
|
|
1026
1025
|
* <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
|
|
1026
|
+
* @public
|
|
1027
1027
|
*/
|
|
1028
1028
|
HomePageUrl?: string;
|
|
1029
1029
|
/**
|
|
1030
|
-
* @public
|
|
1031
1030
|
* <p>Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.</p>
|
|
1031
|
+
* @public
|
|
1032
1032
|
*/
|
|
1033
1033
|
IsVerifiedAuthor?: boolean;
|
|
1034
1034
|
/**
|
|
1035
|
-
* @public
|
|
1036
1035
|
* <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
|
|
1036
|
+
* @public
|
|
1037
1037
|
*/
|
|
1038
1038
|
Labels?: string[];
|
|
1039
1039
|
/**
|
|
1040
|
-
* @public
|
|
1041
1040
|
* <p>A link to a license file of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p>
|
|
1041
|
+
* @public
|
|
1042
1042
|
*/
|
|
1043
1043
|
LicenseUrl?: string;
|
|
1044
1044
|
/**
|
|
1045
|
-
* @public
|
|
1046
1045
|
* <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
|
|
1046
|
+
* @public
|
|
1047
1047
|
*/
|
|
1048
1048
|
Name?: string;
|
|
1049
1049
|
/**
|
|
1050
|
-
* @public
|
|
1051
1050
|
* <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
|
|
1051
|
+
* @public
|
|
1052
1052
|
*/
|
|
1053
1053
|
ReadmeUrl?: string;
|
|
1054
1054
|
/**
|
|
1055
|
-
* @public
|
|
1056
1055
|
* <p>A valid identifier from https://spdx.org/licenses/.</p>
|
|
1056
|
+
* @public
|
|
1057
1057
|
*/
|
|
1058
1058
|
SpdxLicenseId?: string;
|
|
1059
1059
|
/**
|
|
1060
|
-
* @public
|
|
1061
1060
|
* <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
|
|
1061
|
+
* @public
|
|
1062
1062
|
*/
|
|
1063
1063
|
VerifiedAuthorUrl?: string;
|
|
1064
1064
|
/**
|
|
1065
|
-
* @public
|
|
1066
1065
|
* <p>Version information about the application.</p>
|
|
1066
|
+
* @public
|
|
1067
1067
|
*/
|
|
1068
1068
|
Version?: Version;
|
|
1069
1069
|
}
|
|
@@ -1072,8 +1072,8 @@ export interface GetApplicationResponse {
|
|
|
1072
1072
|
*/
|
|
1073
1073
|
export interface GetApplicationPolicyRequest {
|
|
1074
1074
|
/**
|
|
1075
|
-
* @public
|
|
1076
1075
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1076
|
+
* @public
|
|
1077
1077
|
*/
|
|
1078
1078
|
ApplicationId: string | undefined;
|
|
1079
1079
|
}
|
|
@@ -1082,8 +1082,8 @@ export interface GetApplicationPolicyRequest {
|
|
|
1082
1082
|
*/
|
|
1083
1083
|
export interface GetApplicationPolicyResponse {
|
|
1084
1084
|
/**
|
|
1085
|
-
* @public
|
|
1086
1085
|
* <p>An array of policy statements applied to the application.</p>
|
|
1086
|
+
* @public
|
|
1087
1087
|
*/
|
|
1088
1088
|
Statements?: ApplicationPolicyStatement[];
|
|
1089
1089
|
}
|
|
@@ -1092,13 +1092,13 @@ export interface GetApplicationPolicyResponse {
|
|
|
1092
1092
|
*/
|
|
1093
1093
|
export interface GetCloudFormationTemplateRequest {
|
|
1094
1094
|
/**
|
|
1095
|
-
* @public
|
|
1096
1095
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1096
|
+
* @public
|
|
1097
1097
|
*/
|
|
1098
1098
|
ApplicationId: string | undefined;
|
|
1099
1099
|
/**
|
|
1100
|
-
* @public
|
|
1101
1100
|
* <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
|
|
1101
|
+
* @public
|
|
1102
1102
|
*/
|
|
1103
1103
|
TemplateId: string | undefined;
|
|
1104
1104
|
}
|
|
@@ -1107,43 +1107,43 @@ export interface GetCloudFormationTemplateRequest {
|
|
|
1107
1107
|
*/
|
|
1108
1108
|
export interface GetCloudFormationTemplateResponse {
|
|
1109
1109
|
/**
|
|
1110
|
-
* @public
|
|
1111
1110
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
1111
|
+
* @public
|
|
1112
1112
|
*/
|
|
1113
1113
|
ApplicationId?: string;
|
|
1114
1114
|
/**
|
|
1115
|
-
* @public
|
|
1116
1115
|
* <p>The date and time this resource was created.</p>
|
|
1116
|
+
* @public
|
|
1117
1117
|
*/
|
|
1118
1118
|
CreationTime?: string;
|
|
1119
1119
|
/**
|
|
1120
|
-
* @public
|
|
1121
1120
|
* <p>The date and time this template expires. Templates
|
|
1122
1121
|
* expire 1 hour after creation.</p>
|
|
1122
|
+
* @public
|
|
1123
1123
|
*/
|
|
1124
1124
|
ExpirationTime?: string;
|
|
1125
1125
|
/**
|
|
1126
|
-
* @public
|
|
1127
1126
|
* <p>The semantic version of the application:</p><p>
|
|
1128
1127
|
* <a href="https://semver.org/">https://semver.org/</a>
|
|
1129
1128
|
* </p>
|
|
1129
|
+
* @public
|
|
1130
1130
|
*/
|
|
1131
1131
|
SemanticVersion?: string;
|
|
1132
1132
|
/**
|
|
1133
|
-
* @public
|
|
1134
1133
|
* <p>Status of the template creation workflow.</p><p>Possible values: PREPARING | ACTIVE | EXPIRED
|
|
1135
1134
|
* </p>
|
|
1135
|
+
* @public
|
|
1136
1136
|
*/
|
|
1137
1137
|
Status?: Status;
|
|
1138
1138
|
/**
|
|
1139
|
-
* @public
|
|
1140
1139
|
* <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
|
|
1140
|
+
* @public
|
|
1141
1141
|
*/
|
|
1142
1142
|
TemplateId?: string;
|
|
1143
1143
|
/**
|
|
1144
|
-
* @public
|
|
1145
1144
|
* <p>A link to the template that can be used to deploy the application using
|
|
1146
1145
|
* AWS CloudFormation.</p>
|
|
1146
|
+
* @public
|
|
1147
1147
|
*/
|
|
1148
1148
|
TemplateUrl?: string;
|
|
1149
1149
|
}
|
|
@@ -1152,23 +1152,23 @@ export interface GetCloudFormationTemplateResponse {
|
|
|
1152
1152
|
*/
|
|
1153
1153
|
export interface ListApplicationDependenciesRequest {
|
|
1154
1154
|
/**
|
|
1155
|
-
* @public
|
|
1156
1155
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1156
|
+
* @public
|
|
1157
1157
|
*/
|
|
1158
1158
|
ApplicationId: string | undefined;
|
|
1159
1159
|
/**
|
|
1160
|
-
* @public
|
|
1161
1160
|
* <p>The total number of items to return.</p>
|
|
1161
|
+
* @public
|
|
1162
1162
|
*/
|
|
1163
1163
|
MaxItems?: number;
|
|
1164
1164
|
/**
|
|
1165
|
-
* @public
|
|
1166
1165
|
* <p>A token to specify where to start paginating.</p>
|
|
1166
|
+
* @public
|
|
1167
1167
|
*/
|
|
1168
1168
|
NextToken?: string;
|
|
1169
1169
|
/**
|
|
1170
|
-
* @public
|
|
1171
1170
|
* <p>The semantic version of the application to get.</p>
|
|
1171
|
+
* @public
|
|
1172
1172
|
*/
|
|
1173
1173
|
SemanticVersion?: string;
|
|
1174
1174
|
}
|
|
@@ -1177,13 +1177,13 @@ export interface ListApplicationDependenciesRequest {
|
|
|
1177
1177
|
*/
|
|
1178
1178
|
export interface ListApplicationDependenciesResponse {
|
|
1179
1179
|
/**
|
|
1180
|
-
* @public
|
|
1181
1180
|
* <p>An array of application summaries nested in the application.</p>
|
|
1181
|
+
* @public
|
|
1182
1182
|
*/
|
|
1183
1183
|
Dependencies?: ApplicationDependencySummary[];
|
|
1184
1184
|
/**
|
|
1185
|
-
* @public
|
|
1186
1185
|
* <p>The token to request the next page of results.</p>
|
|
1186
|
+
* @public
|
|
1187
1187
|
*/
|
|
1188
1188
|
NextToken?: string;
|
|
1189
1189
|
}
|
|
@@ -1192,13 +1192,13 @@ export interface ListApplicationDependenciesResponse {
|
|
|
1192
1192
|
*/
|
|
1193
1193
|
export interface ListApplicationsRequest {
|
|
1194
1194
|
/**
|
|
1195
|
-
* @public
|
|
1196
1195
|
* <p>The total number of items to return.</p>
|
|
1196
|
+
* @public
|
|
1197
1197
|
*/
|
|
1198
1198
|
MaxItems?: number;
|
|
1199
1199
|
/**
|
|
1200
|
-
* @public
|
|
1201
1200
|
* <p>A token to specify where to start paginating.</p>
|
|
1201
|
+
* @public
|
|
1202
1202
|
*/
|
|
1203
1203
|
NextToken?: string;
|
|
1204
1204
|
}
|
|
@@ -1207,13 +1207,13 @@ export interface ListApplicationsRequest {
|
|
|
1207
1207
|
*/
|
|
1208
1208
|
export interface ListApplicationsResponse {
|
|
1209
1209
|
/**
|
|
1210
|
-
* @public
|
|
1211
1210
|
* <p>An array of application summaries.</p>
|
|
1211
|
+
* @public
|
|
1212
1212
|
*/
|
|
1213
1213
|
Applications?: ApplicationSummary[];
|
|
1214
1214
|
/**
|
|
1215
|
-
* @public
|
|
1216
1215
|
* <p>The token to request the next page of results.</p>
|
|
1216
|
+
* @public
|
|
1217
1217
|
*/
|
|
1218
1218
|
NextToken?: string;
|
|
1219
1219
|
}
|
|
@@ -1222,18 +1222,18 @@ export interface ListApplicationsResponse {
|
|
|
1222
1222
|
*/
|
|
1223
1223
|
export interface ListApplicationVersionsRequest {
|
|
1224
1224
|
/**
|
|
1225
|
-
* @public
|
|
1226
1225
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1226
|
+
* @public
|
|
1227
1227
|
*/
|
|
1228
1228
|
ApplicationId: string | undefined;
|
|
1229
1229
|
/**
|
|
1230
|
-
* @public
|
|
1231
1230
|
* <p>The total number of items to return.</p>
|
|
1231
|
+
* @public
|
|
1232
1232
|
*/
|
|
1233
1233
|
MaxItems?: number;
|
|
1234
1234
|
/**
|
|
1235
|
-
* @public
|
|
1236
1235
|
* <p>A token to specify where to start paginating.</p>
|
|
1236
|
+
* @public
|
|
1237
1237
|
*/
|
|
1238
1238
|
NextToken?: string;
|
|
1239
1239
|
}
|
|
@@ -1242,13 +1242,13 @@ export interface ListApplicationVersionsRequest {
|
|
|
1242
1242
|
*/
|
|
1243
1243
|
export interface ListApplicationVersionsResponse {
|
|
1244
1244
|
/**
|
|
1245
|
-
* @public
|
|
1246
1245
|
* <p>The token to request the next page of results.</p>
|
|
1246
|
+
* @public
|
|
1247
1247
|
*/
|
|
1248
1248
|
NextToken?: string;
|
|
1249
1249
|
/**
|
|
1250
|
-
* @public
|
|
1251
1250
|
* <p>An array of version summaries for the application.</p>
|
|
1251
|
+
* @public
|
|
1252
1252
|
*/
|
|
1253
1253
|
Versions?: VersionSummary[];
|
|
1254
1254
|
}
|
|
@@ -1257,13 +1257,13 @@ export interface ListApplicationVersionsResponse {
|
|
|
1257
1257
|
*/
|
|
1258
1258
|
export interface PutApplicationPolicyRequest {
|
|
1259
1259
|
/**
|
|
1260
|
-
* @public
|
|
1261
1260
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1261
|
+
* @public
|
|
1262
1262
|
*/
|
|
1263
1263
|
ApplicationId: string | undefined;
|
|
1264
1264
|
/**
|
|
1265
|
-
* @public
|
|
1266
1265
|
* <p>An array of policy statements applied to the application.</p>
|
|
1266
|
+
* @public
|
|
1267
1267
|
*/
|
|
1268
1268
|
Statements: ApplicationPolicyStatement[] | undefined;
|
|
1269
1269
|
}
|
|
@@ -1272,8 +1272,8 @@ export interface PutApplicationPolicyRequest {
|
|
|
1272
1272
|
*/
|
|
1273
1273
|
export interface PutApplicationPolicyResponse {
|
|
1274
1274
|
/**
|
|
1275
|
-
* @public
|
|
1276
1275
|
* <p>An array of policy statements applied to the application.</p>
|
|
1276
|
+
* @public
|
|
1277
1277
|
*/
|
|
1278
1278
|
Statements?: ApplicationPolicyStatement[];
|
|
1279
1279
|
}
|
|
@@ -1282,13 +1282,13 @@ export interface PutApplicationPolicyResponse {
|
|
|
1282
1282
|
*/
|
|
1283
1283
|
export interface UnshareApplicationRequest {
|
|
1284
1284
|
/**
|
|
1285
|
-
* @public
|
|
1286
1285
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1286
|
+
* @public
|
|
1287
1287
|
*/
|
|
1288
1288
|
ApplicationId: string | undefined;
|
|
1289
1289
|
/**
|
|
1290
|
-
* @public
|
|
1291
1290
|
* <p>The AWS Organization ID to unshare the application from.</p>
|
|
1291
|
+
* @public
|
|
1292
1292
|
*/
|
|
1293
1293
|
OrganizationId: string | undefined;
|
|
1294
1294
|
}
|
|
@@ -1297,38 +1297,38 @@ export interface UnshareApplicationRequest {
|
|
|
1297
1297
|
*/
|
|
1298
1298
|
export interface UpdateApplicationRequest {
|
|
1299
1299
|
/**
|
|
1300
|
-
* @public
|
|
1301
1300
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
1301
|
+
* @public
|
|
1302
1302
|
*/
|
|
1303
1303
|
ApplicationId: string | undefined;
|
|
1304
1304
|
/**
|
|
1305
|
-
* @public
|
|
1306
1305
|
* <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
|
|
1306
|
+
* @public
|
|
1307
1307
|
*/
|
|
1308
1308
|
Author?: string;
|
|
1309
1309
|
/**
|
|
1310
|
-
* @public
|
|
1311
1310
|
* <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
|
|
1311
|
+
* @public
|
|
1312
1312
|
*/
|
|
1313
1313
|
Description?: string;
|
|
1314
1314
|
/**
|
|
1315
|
-
* @public
|
|
1316
1315
|
* <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
|
|
1316
|
+
* @public
|
|
1317
1317
|
*/
|
|
1318
1318
|
HomePageUrl?: string;
|
|
1319
1319
|
/**
|
|
1320
|
-
* @public
|
|
1321
1320
|
* <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
|
|
1321
|
+
* @public
|
|
1322
1322
|
*/
|
|
1323
1323
|
Labels?: string[];
|
|
1324
1324
|
/**
|
|
1325
|
-
* @public
|
|
1326
1325
|
* <p>A text readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
|
|
1326
|
+
* @public
|
|
1327
1327
|
*/
|
|
1328
1328
|
ReadmeBody?: string;
|
|
1329
1329
|
/**
|
|
1330
|
-
* @public
|
|
1331
1330
|
* <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
|
|
1331
|
+
* @public
|
|
1332
1332
|
*/
|
|
1333
1333
|
ReadmeUrl?: string;
|
|
1334
1334
|
}
|
|
@@ -1337,68 +1337,68 @@ export interface UpdateApplicationRequest {
|
|
|
1337
1337
|
*/
|
|
1338
1338
|
export interface UpdateApplicationResponse {
|
|
1339
1339
|
/**
|
|
1340
|
-
* @public
|
|
1341
1340
|
* <p>The application Amazon Resource Name (ARN).</p>
|
|
1341
|
+
* @public
|
|
1342
1342
|
*/
|
|
1343
1343
|
ApplicationId?: string;
|
|
1344
1344
|
/**
|
|
1345
|
-
* @public
|
|
1346
1345
|
* <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
|
|
1346
|
+
* @public
|
|
1347
1347
|
*/
|
|
1348
1348
|
Author?: string;
|
|
1349
1349
|
/**
|
|
1350
|
-
* @public
|
|
1351
1350
|
* <p>The date and time this resource was created.</p>
|
|
1351
|
+
* @public
|
|
1352
1352
|
*/
|
|
1353
1353
|
CreationTime?: string;
|
|
1354
1354
|
/**
|
|
1355
|
-
* @public
|
|
1356
1355
|
* <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
|
|
1356
|
+
* @public
|
|
1357
1357
|
*/
|
|
1358
1358
|
Description?: string;
|
|
1359
1359
|
/**
|
|
1360
|
-
* @public
|
|
1361
1360
|
* <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
|
|
1361
|
+
* @public
|
|
1362
1362
|
*/
|
|
1363
1363
|
HomePageUrl?: string;
|
|
1364
1364
|
/**
|
|
1365
|
-
* @public
|
|
1366
1365
|
* <p>Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.</p>
|
|
1366
|
+
* @public
|
|
1367
1367
|
*/
|
|
1368
1368
|
IsVerifiedAuthor?: boolean;
|
|
1369
1369
|
/**
|
|
1370
|
-
* @public
|
|
1371
1370
|
* <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
|
|
1371
|
+
* @public
|
|
1372
1372
|
*/
|
|
1373
1373
|
Labels?: string[];
|
|
1374
1374
|
/**
|
|
1375
|
-
* @public
|
|
1376
1375
|
* <p>A link to a license file of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p>
|
|
1376
|
+
* @public
|
|
1377
1377
|
*/
|
|
1378
1378
|
LicenseUrl?: string;
|
|
1379
1379
|
/**
|
|
1380
|
-
* @public
|
|
1381
1380
|
* <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
|
|
1381
|
+
* @public
|
|
1382
1382
|
*/
|
|
1383
1383
|
Name?: string;
|
|
1384
1384
|
/**
|
|
1385
|
-
* @public
|
|
1386
1385
|
* <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
|
|
1386
|
+
* @public
|
|
1387
1387
|
*/
|
|
1388
1388
|
ReadmeUrl?: string;
|
|
1389
1389
|
/**
|
|
1390
|
-
* @public
|
|
1391
1390
|
* <p>A valid identifier from https://spdx.org/licenses/.</p>
|
|
1391
|
+
* @public
|
|
1392
1392
|
*/
|
|
1393
1393
|
SpdxLicenseId?: string;
|
|
1394
1394
|
/**
|
|
1395
|
-
* @public
|
|
1396
1395
|
* <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
|
|
1396
|
+
* @public
|
|
1397
1397
|
*/
|
|
1398
1398
|
VerifiedAuthorUrl?: string;
|
|
1399
1399
|
/**
|
|
1400
|
-
* @public
|
|
1401
1400
|
* <p>Version information about the application.</p>
|
|
1401
|
+
* @public
|
|
1402
1402
|
*/
|
|
1403
1403
|
Version?: Version;
|
|
1404
1404
|
}
|