@aws-sdk/client-serverlessapplicationrepository 3.169.0 → 3.171.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 +242 -75
  3. package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +189 -87
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +31 -17
  9. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +31 -17
  17. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -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 +7 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +421 -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 +67 -38
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  34. package/package.json +34 -34
@@ -1,601 +1,421 @@
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
+ export interface ApplicationDependencySummary {
4
+ ApplicationId: string | undefined;
5
+ SemanticVersion: string | undefined;
6
+ }
7
+ export interface ApplicationPolicyStatement {
8
+ Actions: string[] | undefined;
9
+ PrincipalOrgIDs?: string[];
10
+ Principals: string[] | undefined;
11
+ StatementId?: string;
12
+ }
13
+ export interface ApplicationSummary {
14
+ ApplicationId: string | undefined;
15
+ Author: string | undefined;
16
+ CreationTime?: string;
17
+ Description: string | undefined;
18
+ HomePageUrl?: string;
19
+ Labels?: string[];
20
+ Name: string | undefined;
21
+ SpdxLicenseId?: string;
22
+ }
23
+ export declare enum Capability {
24
+ CAPABILITY_AUTO_EXPAND = "CAPABILITY_AUTO_EXPAND",
25
+ CAPABILITY_IAM = "CAPABILITY_IAM",
26
+ CAPABILITY_NAMED_IAM = "CAPABILITY_NAMED_IAM",
27
+ CAPABILITY_RESOURCE_POLICY = "CAPABILITY_RESOURCE_POLICY",
28
+ }
29
+ export interface ParameterDefinition {
30
+ AllowedPattern?: string;
31
+ AllowedValues?: string[];
32
+ ConstraintDescription?: string;
33
+ DefaultValue?: string;
34
+ Description?: string;
35
+ MaxLength?: number;
36
+ MaxValue?: number;
37
+ MinLength?: number;
38
+ MinValue?: number;
39
+ Name: string | undefined;
40
+ NoEcho?: boolean;
41
+ ReferencedByResources: string[] | undefined;
42
+ Type?: string;
43
+ }
44
+ export interface ParameterValue {
45
+ Name: string | undefined;
46
+ Value: string | undefined;
47
+ }
48
+ export interface RollbackTrigger {
49
+ Arn: string | undefined;
50
+ Type: string | undefined;
51
+ }
52
+ export interface Tag {
53
+ Key: string | undefined;
54
+ Value: string | undefined;
55
+ }
56
+ export interface VersionSummary {
57
+ ApplicationId: string | undefined;
58
+ CreationTime: string | undefined;
59
+ SemanticVersion: string | undefined;
60
+ SourceCodeUrl?: string;
61
+ }
62
+ export declare class BadRequestException extends __BaseException {
63
+ readonly name: "BadRequestException";
64
+ readonly $fault: "client";
65
+ ErrorCode?: string;
66
+ Message?: string;
67
+ constructor(
68
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
69
+ );
70
+ }
71
+ export declare class ConflictException extends __BaseException {
72
+ readonly name: "ConflictException";
73
+ readonly $fault: "client";
74
+ ErrorCode?: string;
75
+ Message?: string;
76
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
77
+ }
78
+ export interface CreateApplicationRequest {
79
+ Author: string | undefined;
80
+ Description: string | undefined;
81
+ HomePageUrl?: string;
82
+ Labels?: string[];
83
+ LicenseBody?: string;
84
+ LicenseUrl?: string;
85
+ Name: string | undefined;
86
+ ReadmeBody?: string;
87
+ ReadmeUrl?: string;
88
+ SemanticVersion?: string;
89
+ SourceCodeArchiveUrl?: string;
90
+ SourceCodeUrl?: string;
91
+ SpdxLicenseId?: string;
92
+ TemplateBody?: string;
93
+ TemplateUrl?: string;
94
+ }
95
+ export interface Version {
96
+ ApplicationId: string | undefined;
97
+ CreationTime: string | undefined;
98
+ ParameterDefinitions: ParameterDefinition[] | undefined;
99
+ RequiredCapabilities: (Capability | string)[] | undefined;
100
+ ResourcesSupported: boolean | undefined;
101
+ SemanticVersion: string | undefined;
102
+ SourceCodeArchiveUrl?: string;
103
+ SourceCodeUrl?: string;
104
+ TemplateUrl: string | undefined;
105
+ }
106
+ export interface CreateApplicationResponse {
107
+ ApplicationId?: string;
108
+ Author?: string;
109
+ CreationTime?: string;
110
+ Description?: string;
111
+ HomePageUrl?: string;
112
+ IsVerifiedAuthor?: boolean;
113
+ Labels?: string[];
114
+ LicenseUrl?: string;
115
+ Name?: string;
116
+ ReadmeUrl?: string;
117
+ SpdxLicenseId?: string;
118
+ VerifiedAuthorUrl?: string;
119
+ Version?: Version;
120
+ }
121
+ export declare class ForbiddenException extends __BaseException {
122
+ readonly name: "ForbiddenException";
123
+ readonly $fault: "client";
124
+ ErrorCode?: string;
125
+ Message?: string;
126
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
127
+ }
128
+ export declare class InternalServerErrorException extends __BaseException {
129
+ readonly name: "InternalServerErrorException";
130
+ readonly $fault: "server";
131
+ ErrorCode?: string;
132
+ Message?: string;
133
+ constructor(
134
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
135
+ );
136
+ }
137
+ export declare class TooManyRequestsException extends __BaseException {
138
+ readonly name: "TooManyRequestsException";
139
+ readonly $fault: "client";
140
+ ErrorCode?: string;
141
+ Message?: string;
142
+ constructor(
143
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
144
+ );
145
+ }
146
+ export interface CreateApplicationVersionRequest {
147
+ ApplicationId: string | undefined;
148
+ SemanticVersion: string | undefined;
149
+ SourceCodeArchiveUrl?: string;
150
+ SourceCodeUrl?: string;
151
+ TemplateBody?: string;
152
+ TemplateUrl?: string;
153
+ }
154
+ export interface CreateApplicationVersionResponse {
155
+ ApplicationId?: string;
156
+ CreationTime?: string;
157
+ ParameterDefinitions?: ParameterDefinition[];
158
+ RequiredCapabilities?: (Capability | string)[];
159
+ ResourcesSupported?: boolean;
160
+ SemanticVersion?: string;
161
+ SourceCodeArchiveUrl?: string;
162
+ SourceCodeUrl?: string;
163
+ TemplateUrl?: string;
164
+ }
165
+ export interface RollbackConfiguration {
166
+ MonitoringTimeInMinutes?: number;
167
+ RollbackTriggers?: RollbackTrigger[];
168
+ }
169
+ export interface CreateCloudFormationChangeSetRequest {
170
+ ApplicationId: string | undefined;
171
+ Capabilities?: string[];
172
+ ChangeSetName?: string;
173
+ ClientToken?: string;
174
+ Description?: string;
175
+ NotificationArns?: string[];
176
+ ParameterOverrides?: ParameterValue[];
177
+ ResourceTypes?: string[];
178
+ RollbackConfiguration?: RollbackConfiguration;
179
+ SemanticVersion?: string;
180
+ StackName: string | undefined;
181
+ Tags?: Tag[];
182
+ TemplateId?: string;
183
+ }
184
+ export interface CreateCloudFormationChangeSetResponse {
185
+ ApplicationId?: string;
186
+ ChangeSetId?: string;
187
+ SemanticVersion?: string;
188
+ StackId?: string;
189
+ }
190
+ export interface CreateCloudFormationTemplateRequest {
191
+ ApplicationId: string | undefined;
192
+ SemanticVersion?: string;
193
+ }
194
+ export declare enum Status {
195
+ ACTIVE = "ACTIVE",
196
+ EXPIRED = "EXPIRED",
197
+ PREPARING = "PREPARING",
198
+ }
199
+ export interface CreateCloudFormationTemplateResponse {
200
+ ApplicationId?: string;
201
+ CreationTime?: string;
202
+ ExpirationTime?: string;
203
+ SemanticVersion?: string;
204
+ Status?: Status | string;
205
+ TemplateId?: string;
206
+ TemplateUrl?: string;
207
+ }
208
+ export declare class NotFoundException extends __BaseException {
209
+ readonly name: "NotFoundException";
210
+ readonly $fault: "client";
211
+ ErrorCode?: string;
212
+ Message?: string;
213
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
214
+ }
215
+ export interface DeleteApplicationRequest {
216
+ ApplicationId: string | undefined;
217
+ }
218
+ export interface GetApplicationRequest {
219
+ ApplicationId: string | undefined;
220
+ SemanticVersion?: string;
221
+ }
222
+ export interface GetApplicationResponse {
223
+ ApplicationId?: string;
224
+ Author?: string;
225
+ CreationTime?: string;
226
+ Description?: string;
227
+ HomePageUrl?: string;
228
+ IsVerifiedAuthor?: boolean;
229
+ Labels?: string[];
230
+ LicenseUrl?: string;
231
+ Name?: string;
232
+ ReadmeUrl?: string;
233
+ SpdxLicenseId?: string;
234
+ VerifiedAuthorUrl?: string;
235
+ Version?: Version;
236
+ }
237
+ export interface GetApplicationPolicyRequest {
238
+ ApplicationId: string | undefined;
239
+ }
240
+ export interface GetApplicationPolicyResponse {
241
+ Statements?: ApplicationPolicyStatement[];
242
+ }
243
+ export interface GetCloudFormationTemplateRequest {
244
+ ApplicationId: string | undefined;
245
+ TemplateId: string | undefined;
246
+ }
247
+ export interface GetCloudFormationTemplateResponse {
248
+ ApplicationId?: string;
249
+ CreationTime?: string;
250
+ ExpirationTime?: string;
251
+ SemanticVersion?: string;
252
+ Status?: Status | string;
253
+ TemplateId?: string;
254
+ TemplateUrl?: string;
255
+ }
256
+ export interface ListApplicationDependenciesRequest {
257
+ ApplicationId: string | undefined;
258
+ MaxItems?: number;
259
+ NextToken?: string;
260
+ SemanticVersion?: string;
261
+ }
262
+ export interface ListApplicationDependenciesResponse {
263
+ Dependencies?: ApplicationDependencySummary[];
264
+ NextToken?: string;
265
+ }
266
+ export interface ListApplicationsRequest {
267
+ MaxItems?: number;
268
+ NextToken?: string;
269
+ }
270
+ export interface ListApplicationsResponse {
271
+ Applications?: ApplicationSummary[];
272
+ NextToken?: string;
273
+ }
274
+ export interface ListApplicationVersionsRequest {
275
+ ApplicationId: string | undefined;
276
+ MaxItems?: number;
277
+ NextToken?: string;
278
+ }
279
+ export interface ListApplicationVersionsResponse {
280
+ NextToken?: string;
281
+ Versions?: VersionSummary[];
282
+ }
283
+ export interface PutApplicationPolicyRequest {
284
+ ApplicationId: string | undefined;
285
+ Statements: ApplicationPolicyStatement[] | undefined;
286
+ }
287
+ export interface PutApplicationPolicyResponse {
288
+ Statements?: ApplicationPolicyStatement[];
289
+ }
290
+ export interface UnshareApplicationRequest {
291
+ ApplicationId: string | undefined;
292
+ OrganizationId: string | undefined;
293
+ }
294
+ export interface UpdateApplicationRequest {
295
+ ApplicationId: string | undefined;
296
+ Author?: string;
297
+ Description?: string;
298
+ HomePageUrl?: string;
299
+ Labels?: string[];
300
+ ReadmeBody?: string;
301
+ ReadmeUrl?: string;
302
+ }
303
+ export interface UpdateApplicationResponse {
304
+ ApplicationId?: string;
305
+ Author?: string;
306
+ CreationTime?: string;
307
+ Description?: string;
308
+ HomePageUrl?: string;
309
+ IsVerifiedAuthor?: boolean;
310
+ Labels?: string[];
311
+ LicenseUrl?: string;
312
+ Name?: string;
313
+ ReadmeUrl?: string;
314
+ SpdxLicenseId?: string;
315
+ VerifiedAuthorUrl?: string;
316
+ Version?: Version;
317
+ }
318
+ export declare const ApplicationDependencySummaryFilterSensitiveLog: (
319
+ obj: ApplicationDependencySummary
320
+ ) => any;
321
+ export declare const ApplicationPolicyStatementFilterSensitiveLog: (
322
+ obj: ApplicationPolicyStatement
323
+ ) => any;
324
+ export declare const ApplicationSummaryFilterSensitiveLog: (
325
+ obj: ApplicationSummary
326
+ ) => any;
327
+ export declare const ParameterDefinitionFilterSensitiveLog: (
328
+ obj: ParameterDefinition
329
+ ) => any;
330
+ export declare const ParameterValueFilterSensitiveLog: (
331
+ obj: ParameterValue
332
+ ) => any;
333
+ export declare const RollbackTriggerFilterSensitiveLog: (
334
+ obj: RollbackTrigger
335
+ ) => any;
336
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
337
+ export declare const VersionSummaryFilterSensitiveLog: (
338
+ obj: VersionSummary
339
+ ) => any;
340
+ export declare const CreateApplicationRequestFilterSensitiveLog: (
341
+ obj: CreateApplicationRequest
342
+ ) => any;
343
+ export declare const VersionFilterSensitiveLog: (obj: Version) => any;
344
+ export declare const CreateApplicationResponseFilterSensitiveLog: (
345
+ obj: CreateApplicationResponse
346
+ ) => any;
347
+ export declare const CreateApplicationVersionRequestFilterSensitiveLog: (
348
+ obj: CreateApplicationVersionRequest
349
+ ) => any;
350
+ export declare const CreateApplicationVersionResponseFilterSensitiveLog: (
351
+ obj: CreateApplicationVersionResponse
352
+ ) => any;
353
+ export declare const RollbackConfigurationFilterSensitiveLog: (
354
+ obj: RollbackConfiguration
355
+ ) => any;
356
+ export declare const CreateCloudFormationChangeSetRequestFilterSensitiveLog: (
357
+ obj: CreateCloudFormationChangeSetRequest
358
+ ) => any;
359
+ export declare const CreateCloudFormationChangeSetResponseFilterSensitiveLog: (
360
+ obj: CreateCloudFormationChangeSetResponse
361
+ ) => any;
362
+ export declare const CreateCloudFormationTemplateRequestFilterSensitiveLog: (
363
+ obj: CreateCloudFormationTemplateRequest
364
+ ) => any;
365
+ export declare const CreateCloudFormationTemplateResponseFilterSensitiveLog: (
366
+ obj: CreateCloudFormationTemplateResponse
367
+ ) => any;
368
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (
369
+ obj: DeleteApplicationRequest
370
+ ) => any;
371
+ export declare const GetApplicationRequestFilterSensitiveLog: (
372
+ obj: GetApplicationRequest
373
+ ) => any;
374
+ export declare const GetApplicationResponseFilterSensitiveLog: (
375
+ obj: GetApplicationResponse
376
+ ) => any;
377
+ export declare const GetApplicationPolicyRequestFilterSensitiveLog: (
378
+ obj: GetApplicationPolicyRequest
379
+ ) => any;
380
+ export declare const GetApplicationPolicyResponseFilterSensitiveLog: (
381
+ obj: GetApplicationPolicyResponse
382
+ ) => any;
383
+ export declare const GetCloudFormationTemplateRequestFilterSensitiveLog: (
384
+ obj: GetCloudFormationTemplateRequest
385
+ ) => any;
386
+ export declare const GetCloudFormationTemplateResponseFilterSensitiveLog: (
387
+ obj: GetCloudFormationTemplateResponse
388
+ ) => any;
389
+ export declare const ListApplicationDependenciesRequestFilterSensitiveLog: (
390
+ obj: ListApplicationDependenciesRequest
391
+ ) => any;
392
+ export declare const ListApplicationDependenciesResponseFilterSensitiveLog: (
393
+ obj: ListApplicationDependenciesResponse
394
+ ) => any;
395
+ export declare const ListApplicationsRequestFilterSensitiveLog: (
396
+ obj: ListApplicationsRequest
397
+ ) => any;
398
+ export declare const ListApplicationsResponseFilterSensitiveLog: (
399
+ obj: ListApplicationsResponse
400
+ ) => any;
401
+ export declare const ListApplicationVersionsRequestFilterSensitiveLog: (
402
+ obj: ListApplicationVersionsRequest
403
+ ) => any;
404
+ export declare const ListApplicationVersionsResponseFilterSensitiveLog: (
405
+ obj: ListApplicationVersionsResponse
406
+ ) => any;
407
+ export declare const PutApplicationPolicyRequestFilterSensitiveLog: (
408
+ obj: PutApplicationPolicyRequest
409
+ ) => any;
410
+ export declare const PutApplicationPolicyResponseFilterSensitiveLog: (
411
+ obj: PutApplicationPolicyResponse
412
+ ) => any;
413
+ export declare const UnshareApplicationRequestFilterSensitiveLog: (
414
+ obj: UnshareApplicationRequest
415
+ ) => any;
416
+ export declare const UpdateApplicationRequestFilterSensitiveLog: (
417
+ obj: UpdateApplicationRequest
418
+ ) => any;
419
+ export declare const UpdateApplicationResponseFilterSensitiveLog: (
420
+ obj: UpdateApplicationResponse
421
+ ) => any;