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