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