@aws-sdk/client-serverlessapplicationrepository 3.169.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +256 -75
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +639 -601
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +9 -6
- package/dist-types/ts3.4/pagination/ListApplicationDependenciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,601 +1,639 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { ServerlessApplicationRepositoryServiceException as __BaseException } from "./ServerlessApplicationRepositoryServiceException";
|
|
3
|
-
|
|
4
|
-
export interface ApplicationDependencySummary {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
export interface
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
}
|
|
312
|
-
export interface
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
}
|
|
322
|
-
export interface
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
}
|
|
428
|
-
export interface
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
}
|
|
450
|
-
export interface
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
export declare const
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
export declare const
|
|
536
|
-
|
|
537
|
-
export declare const
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
export declare const
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
export declare const
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
export declare const
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
export declare const
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
export declare const
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
export declare const
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
export declare const CreateCloudFormationTemplateResponseFilterSensitiveLog: (
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
export declare const
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
export declare const
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
export declare const
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
export declare const
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
export declare const
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
export declare const
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
export declare const
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
export declare const
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
export declare const
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ServerlessApplicationRepositoryServiceException as __BaseException } from "./ServerlessApplicationRepositoryServiceException";
|
|
3
|
+
|
|
4
|
+
export interface ApplicationDependencySummary {
|
|
5
|
+
ApplicationId: string | undefined;
|
|
6
|
+
|
|
7
|
+
SemanticVersion: string | undefined;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface ApplicationPolicyStatement {
|
|
11
|
+
Actions: string[] | undefined;
|
|
12
|
+
|
|
13
|
+
PrincipalOrgIDs?: string[];
|
|
14
|
+
|
|
15
|
+
Principals: string[] | undefined;
|
|
16
|
+
|
|
17
|
+
StatementId?: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface ApplicationSummary {
|
|
21
|
+
ApplicationId: string | undefined;
|
|
22
|
+
|
|
23
|
+
Author: string | undefined;
|
|
24
|
+
|
|
25
|
+
CreationTime?: string;
|
|
26
|
+
|
|
27
|
+
Description: string | undefined;
|
|
28
|
+
|
|
29
|
+
HomePageUrl?: string;
|
|
30
|
+
|
|
31
|
+
Labels?: string[];
|
|
32
|
+
|
|
33
|
+
Name: string | undefined;
|
|
34
|
+
|
|
35
|
+
SpdxLicenseId?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare enum Capability {
|
|
38
|
+
CAPABILITY_AUTO_EXPAND = "CAPABILITY_AUTO_EXPAND",
|
|
39
|
+
CAPABILITY_IAM = "CAPABILITY_IAM",
|
|
40
|
+
CAPABILITY_NAMED_IAM = "CAPABILITY_NAMED_IAM",
|
|
41
|
+
CAPABILITY_RESOURCE_POLICY = "CAPABILITY_RESOURCE_POLICY",
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface ParameterDefinition {
|
|
45
|
+
AllowedPattern?: string;
|
|
46
|
+
|
|
47
|
+
AllowedValues?: string[];
|
|
48
|
+
|
|
49
|
+
ConstraintDescription?: string;
|
|
50
|
+
|
|
51
|
+
DefaultValue?: string;
|
|
52
|
+
|
|
53
|
+
Description?: string;
|
|
54
|
+
|
|
55
|
+
MaxLength?: number;
|
|
56
|
+
|
|
57
|
+
MaxValue?: number;
|
|
58
|
+
|
|
59
|
+
MinLength?: number;
|
|
60
|
+
|
|
61
|
+
MinValue?: number;
|
|
62
|
+
|
|
63
|
+
Name: string | undefined;
|
|
64
|
+
|
|
65
|
+
NoEcho?: boolean;
|
|
66
|
+
|
|
67
|
+
ReferencedByResources: string[] | undefined;
|
|
68
|
+
|
|
69
|
+
Type?: string;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface ParameterValue {
|
|
73
|
+
Name: string | undefined;
|
|
74
|
+
|
|
75
|
+
Value: string | undefined;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export interface RollbackTrigger {
|
|
79
|
+
Arn: string | undefined;
|
|
80
|
+
|
|
81
|
+
Type: string | undefined;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export interface Tag {
|
|
85
|
+
Key: string | undefined;
|
|
86
|
+
|
|
87
|
+
Value: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export interface VersionSummary {
|
|
91
|
+
ApplicationId: string | undefined;
|
|
92
|
+
|
|
93
|
+
CreationTime: string | undefined;
|
|
94
|
+
|
|
95
|
+
SemanticVersion: string | undefined;
|
|
96
|
+
|
|
97
|
+
SourceCodeUrl?: string;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export declare class BadRequestException extends __BaseException {
|
|
101
|
+
readonly name: "BadRequestException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
|
|
104
|
+
ErrorCode?: string;
|
|
105
|
+
|
|
106
|
+
Message?: string;
|
|
107
|
+
|
|
108
|
+
constructor(
|
|
109
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export declare class ConflictException extends __BaseException {
|
|
114
|
+
readonly name: "ConflictException";
|
|
115
|
+
readonly $fault: "client";
|
|
116
|
+
|
|
117
|
+
ErrorCode?: string;
|
|
118
|
+
|
|
119
|
+
Message?: string;
|
|
120
|
+
|
|
121
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
export interface CreateApplicationRequest {
|
|
124
|
+
Author: string | undefined;
|
|
125
|
+
|
|
126
|
+
Description: string | undefined;
|
|
127
|
+
|
|
128
|
+
HomePageUrl?: string;
|
|
129
|
+
|
|
130
|
+
Labels?: string[];
|
|
131
|
+
|
|
132
|
+
LicenseBody?: string;
|
|
133
|
+
|
|
134
|
+
LicenseUrl?: string;
|
|
135
|
+
|
|
136
|
+
Name: string | undefined;
|
|
137
|
+
|
|
138
|
+
ReadmeBody?: string;
|
|
139
|
+
|
|
140
|
+
ReadmeUrl?: string;
|
|
141
|
+
|
|
142
|
+
SemanticVersion?: string;
|
|
143
|
+
|
|
144
|
+
SourceCodeArchiveUrl?: string;
|
|
145
|
+
|
|
146
|
+
SourceCodeUrl?: string;
|
|
147
|
+
|
|
148
|
+
SpdxLicenseId?: string;
|
|
149
|
+
|
|
150
|
+
TemplateBody?: string;
|
|
151
|
+
|
|
152
|
+
TemplateUrl?: string;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export interface Version {
|
|
156
|
+
ApplicationId: string | undefined;
|
|
157
|
+
|
|
158
|
+
CreationTime: string | undefined;
|
|
159
|
+
|
|
160
|
+
ParameterDefinitions: ParameterDefinition[] | undefined;
|
|
161
|
+
|
|
162
|
+
RequiredCapabilities: (Capability | string)[] | undefined;
|
|
163
|
+
|
|
164
|
+
ResourcesSupported: boolean | undefined;
|
|
165
|
+
|
|
166
|
+
SemanticVersion: string | undefined;
|
|
167
|
+
|
|
168
|
+
SourceCodeArchiveUrl?: string;
|
|
169
|
+
|
|
170
|
+
SourceCodeUrl?: string;
|
|
171
|
+
|
|
172
|
+
TemplateUrl: string | undefined;
|
|
173
|
+
}
|
|
174
|
+
export interface CreateApplicationResponse {
|
|
175
|
+
ApplicationId?: string;
|
|
176
|
+
|
|
177
|
+
Author?: string;
|
|
178
|
+
|
|
179
|
+
CreationTime?: string;
|
|
180
|
+
|
|
181
|
+
Description?: string;
|
|
182
|
+
|
|
183
|
+
HomePageUrl?: string;
|
|
184
|
+
|
|
185
|
+
IsVerifiedAuthor?: boolean;
|
|
186
|
+
|
|
187
|
+
Labels?: string[];
|
|
188
|
+
|
|
189
|
+
LicenseUrl?: string;
|
|
190
|
+
|
|
191
|
+
Name?: string;
|
|
192
|
+
|
|
193
|
+
ReadmeUrl?: string;
|
|
194
|
+
|
|
195
|
+
SpdxLicenseId?: string;
|
|
196
|
+
|
|
197
|
+
VerifiedAuthorUrl?: string;
|
|
198
|
+
|
|
199
|
+
Version?: Version;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export declare class ForbiddenException extends __BaseException {
|
|
203
|
+
readonly name: "ForbiddenException";
|
|
204
|
+
readonly $fault: "client";
|
|
205
|
+
|
|
206
|
+
ErrorCode?: string;
|
|
207
|
+
|
|
208
|
+
Message?: string;
|
|
209
|
+
|
|
210
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
214
|
+
readonly name: "InternalServerErrorException";
|
|
215
|
+
readonly $fault: "server";
|
|
216
|
+
|
|
217
|
+
ErrorCode?: string;
|
|
218
|
+
|
|
219
|
+
Message?: string;
|
|
220
|
+
|
|
221
|
+
constructor(
|
|
222
|
+
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
223
|
+
);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
227
|
+
readonly name: "TooManyRequestsException";
|
|
228
|
+
readonly $fault: "client";
|
|
229
|
+
|
|
230
|
+
ErrorCode?: string;
|
|
231
|
+
|
|
232
|
+
Message?: string;
|
|
233
|
+
|
|
234
|
+
constructor(
|
|
235
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
236
|
+
);
|
|
237
|
+
}
|
|
238
|
+
export interface CreateApplicationVersionRequest {
|
|
239
|
+
ApplicationId: string | undefined;
|
|
240
|
+
|
|
241
|
+
SemanticVersion: string | undefined;
|
|
242
|
+
|
|
243
|
+
SourceCodeArchiveUrl?: string;
|
|
244
|
+
|
|
245
|
+
SourceCodeUrl?: string;
|
|
246
|
+
|
|
247
|
+
TemplateBody?: string;
|
|
248
|
+
|
|
249
|
+
TemplateUrl?: string;
|
|
250
|
+
}
|
|
251
|
+
export interface CreateApplicationVersionResponse {
|
|
252
|
+
ApplicationId?: string;
|
|
253
|
+
|
|
254
|
+
CreationTime?: string;
|
|
255
|
+
|
|
256
|
+
ParameterDefinitions?: ParameterDefinition[];
|
|
257
|
+
|
|
258
|
+
RequiredCapabilities?: (Capability | string)[];
|
|
259
|
+
|
|
260
|
+
ResourcesSupported?: boolean;
|
|
261
|
+
|
|
262
|
+
SemanticVersion?: string;
|
|
263
|
+
|
|
264
|
+
SourceCodeArchiveUrl?: string;
|
|
265
|
+
|
|
266
|
+
SourceCodeUrl?: string;
|
|
267
|
+
|
|
268
|
+
TemplateUrl?: string;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export interface RollbackConfiguration {
|
|
272
|
+
MonitoringTimeInMinutes?: number;
|
|
273
|
+
|
|
274
|
+
RollbackTriggers?: RollbackTrigger[];
|
|
275
|
+
}
|
|
276
|
+
export interface CreateCloudFormationChangeSetRequest {
|
|
277
|
+
ApplicationId: string | undefined;
|
|
278
|
+
|
|
279
|
+
Capabilities?: string[];
|
|
280
|
+
|
|
281
|
+
ChangeSetName?: string;
|
|
282
|
+
|
|
283
|
+
ClientToken?: string;
|
|
284
|
+
|
|
285
|
+
Description?: string;
|
|
286
|
+
|
|
287
|
+
NotificationArns?: string[];
|
|
288
|
+
|
|
289
|
+
ParameterOverrides?: ParameterValue[];
|
|
290
|
+
|
|
291
|
+
ResourceTypes?: string[];
|
|
292
|
+
|
|
293
|
+
RollbackConfiguration?: RollbackConfiguration;
|
|
294
|
+
|
|
295
|
+
SemanticVersion?: string;
|
|
296
|
+
|
|
297
|
+
StackName: string | undefined;
|
|
298
|
+
|
|
299
|
+
Tags?: Tag[];
|
|
300
|
+
|
|
301
|
+
TemplateId?: string;
|
|
302
|
+
}
|
|
303
|
+
export interface CreateCloudFormationChangeSetResponse {
|
|
304
|
+
ApplicationId?: string;
|
|
305
|
+
|
|
306
|
+
ChangeSetId?: string;
|
|
307
|
+
|
|
308
|
+
SemanticVersion?: string;
|
|
309
|
+
|
|
310
|
+
StackId?: string;
|
|
311
|
+
}
|
|
312
|
+
export interface CreateCloudFormationTemplateRequest {
|
|
313
|
+
ApplicationId: string | undefined;
|
|
314
|
+
|
|
315
|
+
SemanticVersion?: string;
|
|
316
|
+
}
|
|
317
|
+
export declare enum Status {
|
|
318
|
+
ACTIVE = "ACTIVE",
|
|
319
|
+
EXPIRED = "EXPIRED",
|
|
320
|
+
PREPARING = "PREPARING",
|
|
321
|
+
}
|
|
322
|
+
export interface CreateCloudFormationTemplateResponse {
|
|
323
|
+
ApplicationId?: string;
|
|
324
|
+
|
|
325
|
+
CreationTime?: string;
|
|
326
|
+
|
|
327
|
+
ExpirationTime?: string;
|
|
328
|
+
|
|
329
|
+
SemanticVersion?: string;
|
|
330
|
+
|
|
331
|
+
Status?: Status | string;
|
|
332
|
+
|
|
333
|
+
TemplateId?: string;
|
|
334
|
+
|
|
335
|
+
TemplateUrl?: string;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
export declare class NotFoundException extends __BaseException {
|
|
339
|
+
readonly name: "NotFoundException";
|
|
340
|
+
readonly $fault: "client";
|
|
341
|
+
|
|
342
|
+
ErrorCode?: string;
|
|
343
|
+
|
|
344
|
+
Message?: string;
|
|
345
|
+
|
|
346
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
347
|
+
}
|
|
348
|
+
export interface DeleteApplicationRequest {
|
|
349
|
+
ApplicationId: string | undefined;
|
|
350
|
+
}
|
|
351
|
+
export interface GetApplicationRequest {
|
|
352
|
+
ApplicationId: string | undefined;
|
|
353
|
+
|
|
354
|
+
SemanticVersion?: string;
|
|
355
|
+
}
|
|
356
|
+
export interface GetApplicationResponse {
|
|
357
|
+
ApplicationId?: string;
|
|
358
|
+
|
|
359
|
+
Author?: string;
|
|
360
|
+
|
|
361
|
+
CreationTime?: string;
|
|
362
|
+
|
|
363
|
+
Description?: string;
|
|
364
|
+
|
|
365
|
+
HomePageUrl?: string;
|
|
366
|
+
|
|
367
|
+
IsVerifiedAuthor?: boolean;
|
|
368
|
+
|
|
369
|
+
Labels?: string[];
|
|
370
|
+
|
|
371
|
+
LicenseUrl?: string;
|
|
372
|
+
|
|
373
|
+
Name?: string;
|
|
374
|
+
|
|
375
|
+
ReadmeUrl?: string;
|
|
376
|
+
|
|
377
|
+
SpdxLicenseId?: string;
|
|
378
|
+
|
|
379
|
+
VerifiedAuthorUrl?: string;
|
|
380
|
+
|
|
381
|
+
Version?: Version;
|
|
382
|
+
}
|
|
383
|
+
export interface GetApplicationPolicyRequest {
|
|
384
|
+
ApplicationId: string | undefined;
|
|
385
|
+
}
|
|
386
|
+
export interface GetApplicationPolicyResponse {
|
|
387
|
+
Statements?: ApplicationPolicyStatement[];
|
|
388
|
+
}
|
|
389
|
+
export interface GetCloudFormationTemplateRequest {
|
|
390
|
+
ApplicationId: string | undefined;
|
|
391
|
+
|
|
392
|
+
TemplateId: string | undefined;
|
|
393
|
+
}
|
|
394
|
+
export interface GetCloudFormationTemplateResponse {
|
|
395
|
+
ApplicationId?: string;
|
|
396
|
+
|
|
397
|
+
CreationTime?: string;
|
|
398
|
+
|
|
399
|
+
ExpirationTime?: string;
|
|
400
|
+
|
|
401
|
+
SemanticVersion?: string;
|
|
402
|
+
|
|
403
|
+
Status?: Status | string;
|
|
404
|
+
|
|
405
|
+
TemplateId?: string;
|
|
406
|
+
|
|
407
|
+
TemplateUrl?: string;
|
|
408
|
+
}
|
|
409
|
+
export interface ListApplicationDependenciesRequest {
|
|
410
|
+
ApplicationId: string | undefined;
|
|
411
|
+
|
|
412
|
+
MaxItems?: number;
|
|
413
|
+
|
|
414
|
+
NextToken?: string;
|
|
415
|
+
|
|
416
|
+
SemanticVersion?: string;
|
|
417
|
+
}
|
|
418
|
+
export interface ListApplicationDependenciesResponse {
|
|
419
|
+
Dependencies?: ApplicationDependencySummary[];
|
|
420
|
+
|
|
421
|
+
NextToken?: string;
|
|
422
|
+
}
|
|
423
|
+
export interface ListApplicationsRequest {
|
|
424
|
+
MaxItems?: number;
|
|
425
|
+
|
|
426
|
+
NextToken?: string;
|
|
427
|
+
}
|
|
428
|
+
export interface ListApplicationsResponse {
|
|
429
|
+
Applications?: ApplicationSummary[];
|
|
430
|
+
|
|
431
|
+
NextToken?: string;
|
|
432
|
+
}
|
|
433
|
+
export interface ListApplicationVersionsRequest {
|
|
434
|
+
ApplicationId: string | undefined;
|
|
435
|
+
|
|
436
|
+
MaxItems?: number;
|
|
437
|
+
|
|
438
|
+
NextToken?: string;
|
|
439
|
+
}
|
|
440
|
+
export interface ListApplicationVersionsResponse {
|
|
441
|
+
NextToken?: string;
|
|
442
|
+
|
|
443
|
+
Versions?: VersionSummary[];
|
|
444
|
+
}
|
|
445
|
+
export interface PutApplicationPolicyRequest {
|
|
446
|
+
ApplicationId: string | undefined;
|
|
447
|
+
|
|
448
|
+
Statements: ApplicationPolicyStatement[] | undefined;
|
|
449
|
+
}
|
|
450
|
+
export interface PutApplicationPolicyResponse {
|
|
451
|
+
Statements?: ApplicationPolicyStatement[];
|
|
452
|
+
}
|
|
453
|
+
export interface UnshareApplicationRequest {
|
|
454
|
+
ApplicationId: string | undefined;
|
|
455
|
+
|
|
456
|
+
OrganizationId: string | undefined;
|
|
457
|
+
}
|
|
458
|
+
export interface UpdateApplicationRequest {
|
|
459
|
+
ApplicationId: string | undefined;
|
|
460
|
+
|
|
461
|
+
Author?: string;
|
|
462
|
+
|
|
463
|
+
Description?: string;
|
|
464
|
+
|
|
465
|
+
HomePageUrl?: string;
|
|
466
|
+
|
|
467
|
+
Labels?: string[];
|
|
468
|
+
|
|
469
|
+
ReadmeBody?: string;
|
|
470
|
+
|
|
471
|
+
ReadmeUrl?: string;
|
|
472
|
+
}
|
|
473
|
+
export interface UpdateApplicationResponse {
|
|
474
|
+
ApplicationId?: string;
|
|
475
|
+
|
|
476
|
+
Author?: string;
|
|
477
|
+
|
|
478
|
+
CreationTime?: string;
|
|
479
|
+
|
|
480
|
+
Description?: string;
|
|
481
|
+
|
|
482
|
+
HomePageUrl?: string;
|
|
483
|
+
|
|
484
|
+
IsVerifiedAuthor?: boolean;
|
|
485
|
+
|
|
486
|
+
Labels?: string[];
|
|
487
|
+
|
|
488
|
+
LicenseUrl?: string;
|
|
489
|
+
|
|
490
|
+
Name?: string;
|
|
491
|
+
|
|
492
|
+
ReadmeUrl?: string;
|
|
493
|
+
|
|
494
|
+
SpdxLicenseId?: string;
|
|
495
|
+
|
|
496
|
+
VerifiedAuthorUrl?: string;
|
|
497
|
+
|
|
498
|
+
Version?: Version;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
export declare const ApplicationDependencySummaryFilterSensitiveLog: (
|
|
502
|
+
obj: ApplicationDependencySummary
|
|
503
|
+
) => any;
|
|
504
|
+
|
|
505
|
+
export declare const ApplicationPolicyStatementFilterSensitiveLog: (
|
|
506
|
+
obj: ApplicationPolicyStatement
|
|
507
|
+
) => any;
|
|
508
|
+
|
|
509
|
+
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
510
|
+
obj: ApplicationSummary
|
|
511
|
+
) => any;
|
|
512
|
+
|
|
513
|
+
export declare const ParameterDefinitionFilterSensitiveLog: (
|
|
514
|
+
obj: ParameterDefinition
|
|
515
|
+
) => any;
|
|
516
|
+
|
|
517
|
+
export declare const ParameterValueFilterSensitiveLog: (
|
|
518
|
+
obj: ParameterValue
|
|
519
|
+
) => any;
|
|
520
|
+
|
|
521
|
+
export declare const RollbackTriggerFilterSensitiveLog: (
|
|
522
|
+
obj: RollbackTrigger
|
|
523
|
+
) => any;
|
|
524
|
+
|
|
525
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
526
|
+
|
|
527
|
+
export declare const VersionSummaryFilterSensitiveLog: (
|
|
528
|
+
obj: VersionSummary
|
|
529
|
+
) => any;
|
|
530
|
+
|
|
531
|
+
export declare const CreateApplicationRequestFilterSensitiveLog: (
|
|
532
|
+
obj: CreateApplicationRequest
|
|
533
|
+
) => any;
|
|
534
|
+
|
|
535
|
+
export declare const VersionFilterSensitiveLog: (obj: Version) => any;
|
|
536
|
+
|
|
537
|
+
export declare const CreateApplicationResponseFilterSensitiveLog: (
|
|
538
|
+
obj: CreateApplicationResponse
|
|
539
|
+
) => any;
|
|
540
|
+
|
|
541
|
+
export declare const CreateApplicationVersionRequestFilterSensitiveLog: (
|
|
542
|
+
obj: CreateApplicationVersionRequest
|
|
543
|
+
) => any;
|
|
544
|
+
|
|
545
|
+
export declare const CreateApplicationVersionResponseFilterSensitiveLog: (
|
|
546
|
+
obj: CreateApplicationVersionResponse
|
|
547
|
+
) => any;
|
|
548
|
+
|
|
549
|
+
export declare const RollbackConfigurationFilterSensitiveLog: (
|
|
550
|
+
obj: RollbackConfiguration
|
|
551
|
+
) => any;
|
|
552
|
+
|
|
553
|
+
export declare const CreateCloudFormationChangeSetRequestFilterSensitiveLog: (
|
|
554
|
+
obj: CreateCloudFormationChangeSetRequest
|
|
555
|
+
) => any;
|
|
556
|
+
|
|
557
|
+
export declare const CreateCloudFormationChangeSetResponseFilterSensitiveLog: (
|
|
558
|
+
obj: CreateCloudFormationChangeSetResponse
|
|
559
|
+
) => any;
|
|
560
|
+
|
|
561
|
+
export declare const CreateCloudFormationTemplateRequestFilterSensitiveLog: (
|
|
562
|
+
obj: CreateCloudFormationTemplateRequest
|
|
563
|
+
) => any;
|
|
564
|
+
|
|
565
|
+
export declare const CreateCloudFormationTemplateResponseFilterSensitiveLog: (
|
|
566
|
+
obj: CreateCloudFormationTemplateResponse
|
|
567
|
+
) => any;
|
|
568
|
+
|
|
569
|
+
export declare const DeleteApplicationRequestFilterSensitiveLog: (
|
|
570
|
+
obj: DeleteApplicationRequest
|
|
571
|
+
) => any;
|
|
572
|
+
|
|
573
|
+
export declare const GetApplicationRequestFilterSensitiveLog: (
|
|
574
|
+
obj: GetApplicationRequest
|
|
575
|
+
) => any;
|
|
576
|
+
|
|
577
|
+
export declare const GetApplicationResponseFilterSensitiveLog: (
|
|
578
|
+
obj: GetApplicationResponse
|
|
579
|
+
) => any;
|
|
580
|
+
|
|
581
|
+
export declare const GetApplicationPolicyRequestFilterSensitiveLog: (
|
|
582
|
+
obj: GetApplicationPolicyRequest
|
|
583
|
+
) => any;
|
|
584
|
+
|
|
585
|
+
export declare const GetApplicationPolicyResponseFilterSensitiveLog: (
|
|
586
|
+
obj: GetApplicationPolicyResponse
|
|
587
|
+
) => any;
|
|
588
|
+
|
|
589
|
+
export declare const GetCloudFormationTemplateRequestFilterSensitiveLog: (
|
|
590
|
+
obj: GetCloudFormationTemplateRequest
|
|
591
|
+
) => any;
|
|
592
|
+
|
|
593
|
+
export declare const GetCloudFormationTemplateResponseFilterSensitiveLog: (
|
|
594
|
+
obj: GetCloudFormationTemplateResponse
|
|
595
|
+
) => any;
|
|
596
|
+
|
|
597
|
+
export declare const ListApplicationDependenciesRequestFilterSensitiveLog: (
|
|
598
|
+
obj: ListApplicationDependenciesRequest
|
|
599
|
+
) => any;
|
|
600
|
+
|
|
601
|
+
export declare const ListApplicationDependenciesResponseFilterSensitiveLog: (
|
|
602
|
+
obj: ListApplicationDependenciesResponse
|
|
603
|
+
) => any;
|
|
604
|
+
|
|
605
|
+
export declare const ListApplicationsRequestFilterSensitiveLog: (
|
|
606
|
+
obj: ListApplicationsRequest
|
|
607
|
+
) => any;
|
|
608
|
+
|
|
609
|
+
export declare const ListApplicationsResponseFilterSensitiveLog: (
|
|
610
|
+
obj: ListApplicationsResponse
|
|
611
|
+
) => any;
|
|
612
|
+
|
|
613
|
+
export declare const ListApplicationVersionsRequestFilterSensitiveLog: (
|
|
614
|
+
obj: ListApplicationVersionsRequest
|
|
615
|
+
) => any;
|
|
616
|
+
|
|
617
|
+
export declare const ListApplicationVersionsResponseFilterSensitiveLog: (
|
|
618
|
+
obj: ListApplicationVersionsResponse
|
|
619
|
+
) => any;
|
|
620
|
+
|
|
621
|
+
export declare const PutApplicationPolicyRequestFilterSensitiveLog: (
|
|
622
|
+
obj: PutApplicationPolicyRequest
|
|
623
|
+
) => any;
|
|
624
|
+
|
|
625
|
+
export declare const PutApplicationPolicyResponseFilterSensitiveLog: (
|
|
626
|
+
obj: PutApplicationPolicyResponse
|
|
627
|
+
) => any;
|
|
628
|
+
|
|
629
|
+
export declare const UnshareApplicationRequestFilterSensitiveLog: (
|
|
630
|
+
obj: UnshareApplicationRequest
|
|
631
|
+
) => any;
|
|
632
|
+
|
|
633
|
+
export declare const UpdateApplicationRequestFilterSensitiveLog: (
|
|
634
|
+
obj: UpdateApplicationRequest
|
|
635
|
+
) => any;
|
|
636
|
+
|
|
637
|
+
export declare const UpdateApplicationResponseFilterSensitiveLog: (
|
|
638
|
+
obj: UpdateApplicationResponse
|
|
639
|
+
) => any;
|