@aws-sdk/client-serverlessapplicationrepository 3.687.0 → 3.691.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/dist-types/models/models_0.d.ts +150 -150
- package/dist-types/ts3.4/models/models_0.d.ts +150 -150
- package/package.json +7 -7
|
@@ -6,19 +6,19 @@ export interface ApplicationDependencySummary {
|
|
|
6
6
|
}
|
|
7
7
|
export interface ApplicationPolicyStatement {
|
|
8
8
|
Actions: string[] | undefined;
|
|
9
|
-
PrincipalOrgIDs?: string[];
|
|
9
|
+
PrincipalOrgIDs?: string[] | undefined;
|
|
10
10
|
Principals: string[] | undefined;
|
|
11
|
-
StatementId?: string;
|
|
11
|
+
StatementId?: string | undefined;
|
|
12
12
|
}
|
|
13
13
|
export interface ApplicationSummary {
|
|
14
14
|
ApplicationId: string | undefined;
|
|
15
15
|
Author: string | undefined;
|
|
16
|
-
CreationTime?: string;
|
|
16
|
+
CreationTime?: string | undefined;
|
|
17
17
|
Description: string | undefined;
|
|
18
|
-
HomePageUrl?: string;
|
|
19
|
-
Labels?: string[];
|
|
18
|
+
HomePageUrl?: string | undefined;
|
|
19
|
+
Labels?: string[] | undefined;
|
|
20
20
|
Name: string | undefined;
|
|
21
|
-
SpdxLicenseId?: string;
|
|
21
|
+
SpdxLicenseId?: string | undefined;
|
|
22
22
|
}
|
|
23
23
|
export declare const Capability: {
|
|
24
24
|
readonly CAPABILITY_AUTO_EXPAND: "CAPABILITY_AUTO_EXPAND";
|
|
@@ -28,19 +28,19 @@ export declare const Capability: {
|
|
|
28
28
|
};
|
|
29
29
|
export type Capability = (typeof Capability)[keyof typeof Capability];
|
|
30
30
|
export interface ParameterDefinition {
|
|
31
|
-
AllowedPattern?: string;
|
|
32
|
-
AllowedValues?: string[];
|
|
33
|
-
ConstraintDescription?: string;
|
|
34
|
-
DefaultValue?: string;
|
|
35
|
-
Description?: string;
|
|
36
|
-
MaxLength?: number;
|
|
37
|
-
MaxValue?: number;
|
|
38
|
-
MinLength?: number;
|
|
39
|
-
MinValue?: number;
|
|
31
|
+
AllowedPattern?: string | undefined;
|
|
32
|
+
AllowedValues?: string[] | undefined;
|
|
33
|
+
ConstraintDescription?: string | undefined;
|
|
34
|
+
DefaultValue?: string | undefined;
|
|
35
|
+
Description?: string | undefined;
|
|
36
|
+
MaxLength?: number | undefined;
|
|
37
|
+
MaxValue?: number | undefined;
|
|
38
|
+
MinLength?: number | undefined;
|
|
39
|
+
MinValue?: number | undefined;
|
|
40
40
|
Name: string | undefined;
|
|
41
|
-
NoEcho?: boolean;
|
|
41
|
+
NoEcho?: boolean | undefined;
|
|
42
42
|
ReferencedByResources: string[] | undefined;
|
|
43
|
-
Type?: string;
|
|
43
|
+
Type?: string | undefined;
|
|
44
44
|
}
|
|
45
45
|
export interface ParameterValue {
|
|
46
46
|
Name: string | undefined;
|
|
@@ -58,13 +58,13 @@ export interface VersionSummary {
|
|
|
58
58
|
ApplicationId: string | undefined;
|
|
59
59
|
CreationTime: string | undefined;
|
|
60
60
|
SemanticVersion: string | undefined;
|
|
61
|
-
SourceCodeUrl?: string;
|
|
61
|
+
SourceCodeUrl?: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
export declare class BadRequestException extends __BaseException {
|
|
64
64
|
readonly name: "BadRequestException";
|
|
65
65
|
readonly $fault: "client";
|
|
66
|
-
ErrorCode?: string;
|
|
67
|
-
Message?: string;
|
|
66
|
+
ErrorCode?: string | undefined;
|
|
67
|
+
Message?: string | undefined;
|
|
68
68
|
constructor(
|
|
69
69
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
70
70
|
);
|
|
@@ -72,26 +72,26 @@ export declare class BadRequestException extends __BaseException {
|
|
|
72
72
|
export declare class ConflictException extends __BaseException {
|
|
73
73
|
readonly name: "ConflictException";
|
|
74
74
|
readonly $fault: "client";
|
|
75
|
-
ErrorCode?: string;
|
|
76
|
-
Message?: string;
|
|
75
|
+
ErrorCode?: string | undefined;
|
|
76
|
+
Message?: string | undefined;
|
|
77
77
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
78
78
|
}
|
|
79
79
|
export interface CreateApplicationRequest {
|
|
80
80
|
Author: string | undefined;
|
|
81
81
|
Description: string | undefined;
|
|
82
|
-
HomePageUrl?: string;
|
|
83
|
-
Labels?: string[];
|
|
84
|
-
LicenseBody?: string;
|
|
85
|
-
LicenseUrl?: string;
|
|
82
|
+
HomePageUrl?: string | undefined;
|
|
83
|
+
Labels?: string[] | undefined;
|
|
84
|
+
LicenseBody?: string | undefined;
|
|
85
|
+
LicenseUrl?: string | undefined;
|
|
86
86
|
Name: string | undefined;
|
|
87
|
-
ReadmeBody?: string;
|
|
88
|
-
ReadmeUrl?: string;
|
|
89
|
-
SemanticVersion?: string;
|
|
90
|
-
SourceCodeArchiveUrl?: string;
|
|
91
|
-
SourceCodeUrl?: string;
|
|
92
|
-
SpdxLicenseId?: string;
|
|
93
|
-
TemplateBody?: string;
|
|
94
|
-
TemplateUrl?: string;
|
|
87
|
+
ReadmeBody?: string | undefined;
|
|
88
|
+
ReadmeUrl?: string | undefined;
|
|
89
|
+
SemanticVersion?: string | undefined;
|
|
90
|
+
SourceCodeArchiveUrl?: string | undefined;
|
|
91
|
+
SourceCodeUrl?: string | undefined;
|
|
92
|
+
SpdxLicenseId?: string | undefined;
|
|
93
|
+
TemplateBody?: string | undefined;
|
|
94
|
+
TemplateUrl?: string | undefined;
|
|
95
95
|
}
|
|
96
96
|
export interface Version {
|
|
97
97
|
ApplicationId: string | undefined;
|
|
@@ -100,37 +100,37 @@ export interface Version {
|
|
|
100
100
|
RequiredCapabilities: Capability[] | undefined;
|
|
101
101
|
ResourcesSupported: boolean | undefined;
|
|
102
102
|
SemanticVersion: string | undefined;
|
|
103
|
-
SourceCodeArchiveUrl?: string;
|
|
104
|
-
SourceCodeUrl?: string;
|
|
103
|
+
SourceCodeArchiveUrl?: string | undefined;
|
|
104
|
+
SourceCodeUrl?: string | undefined;
|
|
105
105
|
TemplateUrl: string | undefined;
|
|
106
106
|
}
|
|
107
107
|
export interface CreateApplicationResponse {
|
|
108
|
-
ApplicationId?: string;
|
|
109
|
-
Author?: string;
|
|
110
|
-
CreationTime?: string;
|
|
111
|
-
Description?: string;
|
|
112
|
-
HomePageUrl?: string;
|
|
113
|
-
IsVerifiedAuthor?: boolean;
|
|
114
|
-
Labels?: string[];
|
|
115
|
-
LicenseUrl?: string;
|
|
116
|
-
Name?: string;
|
|
117
|
-
ReadmeUrl?: string;
|
|
118
|
-
SpdxLicenseId?: string;
|
|
119
|
-
VerifiedAuthorUrl?: string;
|
|
120
|
-
Version?: Version;
|
|
108
|
+
ApplicationId?: string | undefined;
|
|
109
|
+
Author?: string | undefined;
|
|
110
|
+
CreationTime?: string | undefined;
|
|
111
|
+
Description?: string | undefined;
|
|
112
|
+
HomePageUrl?: string | undefined;
|
|
113
|
+
IsVerifiedAuthor?: boolean | undefined;
|
|
114
|
+
Labels?: string[] | undefined;
|
|
115
|
+
LicenseUrl?: string | undefined;
|
|
116
|
+
Name?: string | undefined;
|
|
117
|
+
ReadmeUrl?: string | undefined;
|
|
118
|
+
SpdxLicenseId?: string | undefined;
|
|
119
|
+
VerifiedAuthorUrl?: string | undefined;
|
|
120
|
+
Version?: Version | undefined;
|
|
121
121
|
}
|
|
122
122
|
export declare class ForbiddenException extends __BaseException {
|
|
123
123
|
readonly name: "ForbiddenException";
|
|
124
124
|
readonly $fault: "client";
|
|
125
|
-
ErrorCode?: string;
|
|
126
|
-
Message?: string;
|
|
125
|
+
ErrorCode?: string | undefined;
|
|
126
|
+
Message?: string | undefined;
|
|
127
127
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
128
128
|
}
|
|
129
129
|
export declare class InternalServerErrorException extends __BaseException {
|
|
130
130
|
readonly name: "InternalServerErrorException";
|
|
131
131
|
readonly $fault: "server";
|
|
132
|
-
ErrorCode?: string;
|
|
133
|
-
Message?: string;
|
|
132
|
+
ErrorCode?: string | undefined;
|
|
133
|
+
Message?: string | undefined;
|
|
134
134
|
constructor(
|
|
135
135
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
136
136
|
);
|
|
@@ -138,8 +138,8 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
138
138
|
export declare class TooManyRequestsException extends __BaseException {
|
|
139
139
|
readonly name: "TooManyRequestsException";
|
|
140
140
|
readonly $fault: "client";
|
|
141
|
-
ErrorCode?: string;
|
|
142
|
-
Message?: string;
|
|
141
|
+
ErrorCode?: string | undefined;
|
|
142
|
+
Message?: string | undefined;
|
|
143
143
|
constructor(
|
|
144
144
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
145
145
|
);
|
|
@@ -147,50 +147,50 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
147
147
|
export interface CreateApplicationVersionRequest {
|
|
148
148
|
ApplicationId: string | undefined;
|
|
149
149
|
SemanticVersion: string | undefined;
|
|
150
|
-
SourceCodeArchiveUrl?: string;
|
|
151
|
-
SourceCodeUrl?: string;
|
|
152
|
-
TemplateBody?: string;
|
|
153
|
-
TemplateUrl?: string;
|
|
150
|
+
SourceCodeArchiveUrl?: string | undefined;
|
|
151
|
+
SourceCodeUrl?: string | undefined;
|
|
152
|
+
TemplateBody?: string | undefined;
|
|
153
|
+
TemplateUrl?: string | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface CreateApplicationVersionResponse {
|
|
156
|
-
ApplicationId?: string;
|
|
157
|
-
CreationTime?: string;
|
|
158
|
-
ParameterDefinitions?: ParameterDefinition[];
|
|
159
|
-
RequiredCapabilities?: Capability[];
|
|
160
|
-
ResourcesSupported?: boolean;
|
|
161
|
-
SemanticVersion?: string;
|
|
162
|
-
SourceCodeArchiveUrl?: string;
|
|
163
|
-
SourceCodeUrl?: string;
|
|
164
|
-
TemplateUrl?: string;
|
|
156
|
+
ApplicationId?: string | undefined;
|
|
157
|
+
CreationTime?: string | undefined;
|
|
158
|
+
ParameterDefinitions?: ParameterDefinition[] | undefined;
|
|
159
|
+
RequiredCapabilities?: Capability[] | undefined;
|
|
160
|
+
ResourcesSupported?: boolean | undefined;
|
|
161
|
+
SemanticVersion?: string | undefined;
|
|
162
|
+
SourceCodeArchiveUrl?: string | undefined;
|
|
163
|
+
SourceCodeUrl?: string | undefined;
|
|
164
|
+
TemplateUrl?: string | undefined;
|
|
165
165
|
}
|
|
166
166
|
export interface RollbackConfiguration {
|
|
167
|
-
MonitoringTimeInMinutes?: number;
|
|
168
|
-
RollbackTriggers?: RollbackTrigger[];
|
|
167
|
+
MonitoringTimeInMinutes?: number | undefined;
|
|
168
|
+
RollbackTriggers?: RollbackTrigger[] | undefined;
|
|
169
169
|
}
|
|
170
170
|
export interface CreateCloudFormationChangeSetRequest {
|
|
171
171
|
ApplicationId: string | undefined;
|
|
172
|
-
Capabilities?: string[];
|
|
173
|
-
ChangeSetName?: string;
|
|
174
|
-
ClientToken?: string;
|
|
175
|
-
Description?: string;
|
|
176
|
-
NotificationArns?: string[];
|
|
177
|
-
ParameterOverrides?: ParameterValue[];
|
|
178
|
-
ResourceTypes?: string[];
|
|
179
|
-
RollbackConfiguration?: RollbackConfiguration;
|
|
180
|
-
SemanticVersion?: string;
|
|
172
|
+
Capabilities?: string[] | undefined;
|
|
173
|
+
ChangeSetName?: string | undefined;
|
|
174
|
+
ClientToken?: string | undefined;
|
|
175
|
+
Description?: string | undefined;
|
|
176
|
+
NotificationArns?: string[] | undefined;
|
|
177
|
+
ParameterOverrides?: ParameterValue[] | undefined;
|
|
178
|
+
ResourceTypes?: string[] | undefined;
|
|
179
|
+
RollbackConfiguration?: RollbackConfiguration | undefined;
|
|
180
|
+
SemanticVersion?: string | undefined;
|
|
181
181
|
StackName: string | undefined;
|
|
182
|
-
Tags?: Tag[];
|
|
183
|
-
TemplateId?: string;
|
|
182
|
+
Tags?: Tag[] | undefined;
|
|
183
|
+
TemplateId?: string | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface CreateCloudFormationChangeSetResponse {
|
|
186
|
-
ApplicationId?: string;
|
|
187
|
-
ChangeSetId?: string;
|
|
188
|
-
SemanticVersion?: string;
|
|
189
|
-
StackId?: string;
|
|
186
|
+
ApplicationId?: string | undefined;
|
|
187
|
+
ChangeSetId?: string | undefined;
|
|
188
|
+
SemanticVersion?: string | undefined;
|
|
189
|
+
StackId?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface CreateCloudFormationTemplateRequest {
|
|
192
192
|
ApplicationId: string | undefined;
|
|
193
|
-
SemanticVersion?: string;
|
|
193
|
+
SemanticVersion?: string | undefined;
|
|
194
194
|
}
|
|
195
195
|
export declare const Status: {
|
|
196
196
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -199,19 +199,19 @@ export declare const Status: {
|
|
|
199
199
|
};
|
|
200
200
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
201
201
|
export interface CreateCloudFormationTemplateResponse {
|
|
202
|
-
ApplicationId?: string;
|
|
203
|
-
CreationTime?: string;
|
|
204
|
-
ExpirationTime?: string;
|
|
205
|
-
SemanticVersion?: string;
|
|
206
|
-
Status?: Status;
|
|
207
|
-
TemplateId?: string;
|
|
208
|
-
TemplateUrl?: string;
|
|
202
|
+
ApplicationId?: string | undefined;
|
|
203
|
+
CreationTime?: string | undefined;
|
|
204
|
+
ExpirationTime?: string | undefined;
|
|
205
|
+
SemanticVersion?: string | undefined;
|
|
206
|
+
Status?: Status | undefined;
|
|
207
|
+
TemplateId?: string | undefined;
|
|
208
|
+
TemplateUrl?: string | undefined;
|
|
209
209
|
}
|
|
210
210
|
export declare class NotFoundException extends __BaseException {
|
|
211
211
|
readonly name: "NotFoundException";
|
|
212
212
|
readonly $fault: "client";
|
|
213
|
-
ErrorCode?: string;
|
|
214
|
-
Message?: string;
|
|
213
|
+
ErrorCode?: string | undefined;
|
|
214
|
+
Message?: string | undefined;
|
|
215
215
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
216
216
|
}
|
|
217
217
|
export interface DeleteApplicationRequest {
|
|
@@ -219,75 +219,75 @@ export interface DeleteApplicationRequest {
|
|
|
219
219
|
}
|
|
220
220
|
export interface GetApplicationRequest {
|
|
221
221
|
ApplicationId: string | undefined;
|
|
222
|
-
SemanticVersion?: string;
|
|
222
|
+
SemanticVersion?: string | undefined;
|
|
223
223
|
}
|
|
224
224
|
export interface GetApplicationResponse {
|
|
225
|
-
ApplicationId?: string;
|
|
226
|
-
Author?: string;
|
|
227
|
-
CreationTime?: string;
|
|
228
|
-
Description?: string;
|
|
229
|
-
HomePageUrl?: string;
|
|
230
|
-
IsVerifiedAuthor?: boolean;
|
|
231
|
-
Labels?: string[];
|
|
232
|
-
LicenseUrl?: string;
|
|
233
|
-
Name?: string;
|
|
234
|
-
ReadmeUrl?: string;
|
|
235
|
-
SpdxLicenseId?: string;
|
|
236
|
-
VerifiedAuthorUrl?: string;
|
|
237
|
-
Version?: Version;
|
|
225
|
+
ApplicationId?: string | undefined;
|
|
226
|
+
Author?: string | undefined;
|
|
227
|
+
CreationTime?: string | undefined;
|
|
228
|
+
Description?: string | undefined;
|
|
229
|
+
HomePageUrl?: string | undefined;
|
|
230
|
+
IsVerifiedAuthor?: boolean | undefined;
|
|
231
|
+
Labels?: string[] | undefined;
|
|
232
|
+
LicenseUrl?: string | undefined;
|
|
233
|
+
Name?: string | undefined;
|
|
234
|
+
ReadmeUrl?: string | undefined;
|
|
235
|
+
SpdxLicenseId?: string | undefined;
|
|
236
|
+
VerifiedAuthorUrl?: string | undefined;
|
|
237
|
+
Version?: Version | undefined;
|
|
238
238
|
}
|
|
239
239
|
export interface GetApplicationPolicyRequest {
|
|
240
240
|
ApplicationId: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
export interface GetApplicationPolicyResponse {
|
|
243
|
-
Statements?: ApplicationPolicyStatement[];
|
|
243
|
+
Statements?: ApplicationPolicyStatement[] | undefined;
|
|
244
244
|
}
|
|
245
245
|
export interface GetCloudFormationTemplateRequest {
|
|
246
246
|
ApplicationId: string | undefined;
|
|
247
247
|
TemplateId: string | undefined;
|
|
248
248
|
}
|
|
249
249
|
export interface GetCloudFormationTemplateResponse {
|
|
250
|
-
ApplicationId?: string;
|
|
251
|
-
CreationTime?: string;
|
|
252
|
-
ExpirationTime?: string;
|
|
253
|
-
SemanticVersion?: string;
|
|
254
|
-
Status?: Status;
|
|
255
|
-
TemplateId?: string;
|
|
256
|
-
TemplateUrl?: string;
|
|
250
|
+
ApplicationId?: string | undefined;
|
|
251
|
+
CreationTime?: string | undefined;
|
|
252
|
+
ExpirationTime?: string | undefined;
|
|
253
|
+
SemanticVersion?: string | undefined;
|
|
254
|
+
Status?: Status | undefined;
|
|
255
|
+
TemplateId?: string | undefined;
|
|
256
|
+
TemplateUrl?: string | undefined;
|
|
257
257
|
}
|
|
258
258
|
export interface ListApplicationDependenciesRequest {
|
|
259
259
|
ApplicationId: string | undefined;
|
|
260
|
-
MaxItems?: number;
|
|
261
|
-
NextToken?: string;
|
|
262
|
-
SemanticVersion?: string;
|
|
260
|
+
MaxItems?: number | undefined;
|
|
261
|
+
NextToken?: string | undefined;
|
|
262
|
+
SemanticVersion?: string | undefined;
|
|
263
263
|
}
|
|
264
264
|
export interface ListApplicationDependenciesResponse {
|
|
265
|
-
Dependencies?: ApplicationDependencySummary[];
|
|
266
|
-
NextToken?: string;
|
|
265
|
+
Dependencies?: ApplicationDependencySummary[] | undefined;
|
|
266
|
+
NextToken?: string | undefined;
|
|
267
267
|
}
|
|
268
268
|
export interface ListApplicationsRequest {
|
|
269
|
-
MaxItems?: number;
|
|
270
|
-
NextToken?: string;
|
|
269
|
+
MaxItems?: number | undefined;
|
|
270
|
+
NextToken?: string | undefined;
|
|
271
271
|
}
|
|
272
272
|
export interface ListApplicationsResponse {
|
|
273
|
-
Applications?: ApplicationSummary[];
|
|
274
|
-
NextToken?: string;
|
|
273
|
+
Applications?: ApplicationSummary[] | undefined;
|
|
274
|
+
NextToken?: string | undefined;
|
|
275
275
|
}
|
|
276
276
|
export interface ListApplicationVersionsRequest {
|
|
277
277
|
ApplicationId: string | undefined;
|
|
278
|
-
MaxItems?: number;
|
|
279
|
-
NextToken?: string;
|
|
278
|
+
MaxItems?: number | undefined;
|
|
279
|
+
NextToken?: string | undefined;
|
|
280
280
|
}
|
|
281
281
|
export interface ListApplicationVersionsResponse {
|
|
282
|
-
NextToken?: string;
|
|
283
|
-
Versions?: VersionSummary[];
|
|
282
|
+
NextToken?: string | undefined;
|
|
283
|
+
Versions?: VersionSummary[] | undefined;
|
|
284
284
|
}
|
|
285
285
|
export interface PutApplicationPolicyRequest {
|
|
286
286
|
ApplicationId: string | undefined;
|
|
287
287
|
Statements: ApplicationPolicyStatement[] | undefined;
|
|
288
288
|
}
|
|
289
289
|
export interface PutApplicationPolicyResponse {
|
|
290
|
-
Statements?: ApplicationPolicyStatement[];
|
|
290
|
+
Statements?: ApplicationPolicyStatement[] | undefined;
|
|
291
291
|
}
|
|
292
292
|
export interface UnshareApplicationRequest {
|
|
293
293
|
ApplicationId: string | undefined;
|
|
@@ -295,25 +295,25 @@ export interface UnshareApplicationRequest {
|
|
|
295
295
|
}
|
|
296
296
|
export interface UpdateApplicationRequest {
|
|
297
297
|
ApplicationId: string | undefined;
|
|
298
|
-
Author?: string;
|
|
299
|
-
Description?: string;
|
|
300
|
-
HomePageUrl?: string;
|
|
301
|
-
Labels?: string[];
|
|
302
|
-
ReadmeBody?: string;
|
|
303
|
-
ReadmeUrl?: string;
|
|
298
|
+
Author?: string | undefined;
|
|
299
|
+
Description?: string | undefined;
|
|
300
|
+
HomePageUrl?: string | undefined;
|
|
301
|
+
Labels?: string[] | undefined;
|
|
302
|
+
ReadmeBody?: string | undefined;
|
|
303
|
+
ReadmeUrl?: string | undefined;
|
|
304
304
|
}
|
|
305
305
|
export interface UpdateApplicationResponse {
|
|
306
|
-
ApplicationId?: string;
|
|
307
|
-
Author?: string;
|
|
308
|
-
CreationTime?: string;
|
|
309
|
-
Description?: string;
|
|
310
|
-
HomePageUrl?: string;
|
|
311
|
-
IsVerifiedAuthor?: boolean;
|
|
312
|
-
Labels?: string[];
|
|
313
|
-
LicenseUrl?: string;
|
|
314
|
-
Name?: string;
|
|
315
|
-
ReadmeUrl?: string;
|
|
316
|
-
SpdxLicenseId?: string;
|
|
317
|
-
VerifiedAuthorUrl?: string;
|
|
318
|
-
Version?: Version;
|
|
306
|
+
ApplicationId?: string | undefined;
|
|
307
|
+
Author?: string | undefined;
|
|
308
|
+
CreationTime?: string | undefined;
|
|
309
|
+
Description?: string | undefined;
|
|
310
|
+
HomePageUrl?: string | undefined;
|
|
311
|
+
IsVerifiedAuthor?: boolean | undefined;
|
|
312
|
+
Labels?: string[] | undefined;
|
|
313
|
+
LicenseUrl?: string | undefined;
|
|
314
|
+
Name?: string | undefined;
|
|
315
|
+
ReadmeUrl?: string | undefined;
|
|
316
|
+
SpdxLicenseId?: string | undefined;
|
|
317
|
+
VerifiedAuthorUrl?: string | undefined;
|
|
318
|
+
Version?: Version | undefined;
|
|
319
319
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-serverlessapplicationrepository",
|
|
3
3
|
"description": "AWS SDK for JavaScript Serverlessapplicationrepository Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-serverlessapplicationrepository",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|