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