@aws-sdk/client-serverlessapplicationrepository 3.721.0 → 3.726.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-cjs/index.js +169 -82
- package/dist-es/ServerlessApplicationRepositoryClient.js +1 -0
- package/dist-es/models/models_0.js +24 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -149,7 +149,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
149
149
|
}, "resolveRuntimeExtensions");
|
|
150
150
|
|
|
151
151
|
// src/ServerlessApplicationRepositoryClient.ts
|
|
152
|
-
var
|
|
152
|
+
var ServerlessApplicationRepositoryClient = class extends import_smithy_client.Client {
|
|
153
|
+
static {
|
|
154
|
+
__name(this, "ServerlessApplicationRepositoryClient");
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* The resolved configuration of ServerlessApplicationRepositoryClient class. This is resolved and normalized from the {@link ServerlessApplicationRepositoryClientConfig | constructor configuration interface}.
|
|
158
|
+
*/
|
|
159
|
+
config;
|
|
153
160
|
constructor(...[configuration]) {
|
|
154
161
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
155
162
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -159,7 +166,7 @@ var _ServerlessApplicationRepositoryClient = class _ServerlessApplicationReposit
|
|
|
159
166
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
160
167
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
161
168
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
162
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
169
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
163
170
|
super(_config_8);
|
|
164
171
|
this.config = _config_8;
|
|
165
172
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -187,8 +194,6 @@ var _ServerlessApplicationRepositoryClient = class _ServerlessApplicationReposit
|
|
|
187
194
|
super.destroy();
|
|
188
195
|
}
|
|
189
196
|
};
|
|
190
|
-
__name(_ServerlessApplicationRepositoryClient, "ServerlessApplicationRepositoryClient");
|
|
191
|
-
var ServerlessApplicationRepositoryClient = _ServerlessApplicationRepositoryClient;
|
|
192
197
|
|
|
193
198
|
// src/ServerlessApplicationRepository.ts
|
|
194
199
|
|
|
@@ -205,7 +210,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
205
210
|
|
|
206
211
|
// src/models/ServerlessApplicationRepositoryServiceException.ts
|
|
207
212
|
|
|
208
|
-
var
|
|
213
|
+
var ServerlessApplicationRepositoryServiceException = class _ServerlessApplicationRepositoryServiceException extends import_smithy_client.ServiceException {
|
|
214
|
+
static {
|
|
215
|
+
__name(this, "ServerlessApplicationRepositoryServiceException");
|
|
216
|
+
}
|
|
209
217
|
/**
|
|
210
218
|
* @internal
|
|
211
219
|
*/
|
|
@@ -214,8 +222,6 @@ var _ServerlessApplicationRepositoryServiceException = class _ServerlessApplicat
|
|
|
214
222
|
Object.setPrototypeOf(this, _ServerlessApplicationRepositoryServiceException.prototype);
|
|
215
223
|
}
|
|
216
224
|
};
|
|
217
|
-
__name(_ServerlessApplicationRepositoryServiceException, "ServerlessApplicationRepositoryServiceException");
|
|
218
|
-
var ServerlessApplicationRepositoryServiceException = _ServerlessApplicationRepositoryServiceException;
|
|
219
225
|
|
|
220
226
|
// src/models/models_0.ts
|
|
221
227
|
var Capability = {
|
|
@@ -224,7 +230,22 @@ var Capability = {
|
|
|
224
230
|
CAPABILITY_NAMED_IAM: "CAPABILITY_NAMED_IAM",
|
|
225
231
|
CAPABILITY_RESOURCE_POLICY: "CAPABILITY_RESOURCE_POLICY"
|
|
226
232
|
};
|
|
227
|
-
var
|
|
233
|
+
var BadRequestException = class _BadRequestException extends ServerlessApplicationRepositoryServiceException {
|
|
234
|
+
static {
|
|
235
|
+
__name(this, "BadRequestException");
|
|
236
|
+
}
|
|
237
|
+
name = "BadRequestException";
|
|
238
|
+
$fault = "client";
|
|
239
|
+
/**
|
|
240
|
+
* <p>400</p>
|
|
241
|
+
* @public
|
|
242
|
+
*/
|
|
243
|
+
ErrorCode;
|
|
244
|
+
/**
|
|
245
|
+
* <p>One of the parameters in the request is invalid.</p>
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
Message;
|
|
228
249
|
/**
|
|
229
250
|
* @internal
|
|
230
251
|
*/
|
|
@@ -234,16 +255,27 @@ var _BadRequestException = class _BadRequestException extends ServerlessApplicat
|
|
|
234
255
|
$fault: "client",
|
|
235
256
|
...opts
|
|
236
257
|
});
|
|
237
|
-
this.name = "BadRequestException";
|
|
238
|
-
this.$fault = "client";
|
|
239
258
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
240
259
|
this.ErrorCode = opts.ErrorCode;
|
|
241
260
|
this.Message = opts.Message;
|
|
242
261
|
}
|
|
243
262
|
};
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
263
|
+
var ConflictException = class _ConflictException extends ServerlessApplicationRepositoryServiceException {
|
|
264
|
+
static {
|
|
265
|
+
__name(this, "ConflictException");
|
|
266
|
+
}
|
|
267
|
+
name = "ConflictException";
|
|
268
|
+
$fault = "client";
|
|
269
|
+
/**
|
|
270
|
+
* <p>409</p>
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
ErrorCode;
|
|
274
|
+
/**
|
|
275
|
+
* <p>The resource already exists.</p>
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
Message;
|
|
247
279
|
/**
|
|
248
280
|
* @internal
|
|
249
281
|
*/
|
|
@@ -253,16 +285,27 @@ var _ConflictException = class _ConflictException extends ServerlessApplicationR
|
|
|
253
285
|
$fault: "client",
|
|
254
286
|
...opts
|
|
255
287
|
});
|
|
256
|
-
this.name = "ConflictException";
|
|
257
|
-
this.$fault = "client";
|
|
258
288
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
259
289
|
this.ErrorCode = opts.ErrorCode;
|
|
260
290
|
this.Message = opts.Message;
|
|
261
291
|
}
|
|
262
292
|
};
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
293
|
+
var ForbiddenException = class _ForbiddenException extends ServerlessApplicationRepositoryServiceException {
|
|
294
|
+
static {
|
|
295
|
+
__name(this, "ForbiddenException");
|
|
296
|
+
}
|
|
297
|
+
name = "ForbiddenException";
|
|
298
|
+
$fault = "client";
|
|
299
|
+
/**
|
|
300
|
+
* <p>403</p>
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
ErrorCode;
|
|
304
|
+
/**
|
|
305
|
+
* <p>The client is not authenticated.</p>
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
308
|
+
Message;
|
|
266
309
|
/**
|
|
267
310
|
* @internal
|
|
268
311
|
*/
|
|
@@ -272,16 +315,27 @@ var _ForbiddenException = class _ForbiddenException extends ServerlessApplicatio
|
|
|
272
315
|
$fault: "client",
|
|
273
316
|
...opts
|
|
274
317
|
});
|
|
275
|
-
this.name = "ForbiddenException";
|
|
276
|
-
this.$fault = "client";
|
|
277
318
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
278
319
|
this.ErrorCode = opts.ErrorCode;
|
|
279
320
|
this.Message = opts.Message;
|
|
280
321
|
}
|
|
281
322
|
};
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
323
|
+
var InternalServerErrorException = class _InternalServerErrorException extends ServerlessApplicationRepositoryServiceException {
|
|
324
|
+
static {
|
|
325
|
+
__name(this, "InternalServerErrorException");
|
|
326
|
+
}
|
|
327
|
+
name = "InternalServerErrorException";
|
|
328
|
+
$fault = "server";
|
|
329
|
+
/**
|
|
330
|
+
* <p>500</p>
|
|
331
|
+
* @public
|
|
332
|
+
*/
|
|
333
|
+
ErrorCode;
|
|
334
|
+
/**
|
|
335
|
+
* <p>The AWS Serverless Application Repository service encountered an internal error.</p>
|
|
336
|
+
* @public
|
|
337
|
+
*/
|
|
338
|
+
Message;
|
|
285
339
|
/**
|
|
286
340
|
* @internal
|
|
287
341
|
*/
|
|
@@ -291,16 +345,27 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
291
345
|
$fault: "server",
|
|
292
346
|
...opts
|
|
293
347
|
});
|
|
294
|
-
this.name = "InternalServerErrorException";
|
|
295
|
-
this.$fault = "server";
|
|
296
348
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
297
349
|
this.ErrorCode = opts.ErrorCode;
|
|
298
350
|
this.Message = opts.Message;
|
|
299
351
|
}
|
|
300
352
|
};
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
353
|
+
var TooManyRequestsException = class _TooManyRequestsException extends ServerlessApplicationRepositoryServiceException {
|
|
354
|
+
static {
|
|
355
|
+
__name(this, "TooManyRequestsException");
|
|
356
|
+
}
|
|
357
|
+
name = "TooManyRequestsException";
|
|
358
|
+
$fault = "client";
|
|
359
|
+
/**
|
|
360
|
+
* <p>429</p>
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
363
|
+
ErrorCode;
|
|
364
|
+
/**
|
|
365
|
+
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
Message;
|
|
304
369
|
/**
|
|
305
370
|
* @internal
|
|
306
371
|
*/
|
|
@@ -310,21 +375,32 @@ var _TooManyRequestsException = class _TooManyRequestsException extends Serverle
|
|
|
310
375
|
$fault: "client",
|
|
311
376
|
...opts
|
|
312
377
|
});
|
|
313
|
-
this.name = "TooManyRequestsException";
|
|
314
|
-
this.$fault = "client";
|
|
315
378
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
316
379
|
this.ErrorCode = opts.ErrorCode;
|
|
317
380
|
this.Message = opts.Message;
|
|
318
381
|
}
|
|
319
382
|
};
|
|
320
|
-
__name(_TooManyRequestsException, "TooManyRequestsException");
|
|
321
|
-
var TooManyRequestsException = _TooManyRequestsException;
|
|
322
383
|
var Status = {
|
|
323
384
|
ACTIVE: "ACTIVE",
|
|
324
385
|
EXPIRED: "EXPIRED",
|
|
325
386
|
PREPARING: "PREPARING"
|
|
326
387
|
};
|
|
327
|
-
var
|
|
388
|
+
var NotFoundException = class _NotFoundException extends ServerlessApplicationRepositoryServiceException {
|
|
389
|
+
static {
|
|
390
|
+
__name(this, "NotFoundException");
|
|
391
|
+
}
|
|
392
|
+
name = "NotFoundException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
/**
|
|
395
|
+
* <p>404</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
ErrorCode;
|
|
399
|
+
/**
|
|
400
|
+
* <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
Message;
|
|
328
404
|
/**
|
|
329
405
|
* @internal
|
|
330
406
|
*/
|
|
@@ -334,15 +410,11 @@ var _NotFoundException = class _NotFoundException extends ServerlessApplicationR
|
|
|
334
410
|
$fault: "client",
|
|
335
411
|
...opts
|
|
336
412
|
});
|
|
337
|
-
this.name = "NotFoundException";
|
|
338
|
-
this.$fault = "client";
|
|
339
413
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
340
414
|
this.ErrorCode = opts.ErrorCode;
|
|
341
415
|
this.Message = opts.Message;
|
|
342
416
|
}
|
|
343
417
|
};
|
|
344
|
-
__name(_NotFoundException, "NotFoundException");
|
|
345
|
-
var NotFoundException = _NotFoundException;
|
|
346
418
|
|
|
347
419
|
// src/protocols/Aws_restJson1.ts
|
|
348
420
|
var se_CreateApplicationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1098,197 +1170,211 @@ var _nT = "nextToken";
|
|
|
1098
1170
|
var _sV = "semanticVersion";
|
|
1099
1171
|
|
|
1100
1172
|
// src/commands/CreateApplicationCommand.ts
|
|
1101
|
-
var
|
|
1173
|
+
var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1102
1174
|
return [
|
|
1103
1175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1104
1176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1105
1177
|
];
|
|
1106
1178
|
}).s("ServerlessApplicationRepository", "CreateApplication", {}).n("ServerlessApplicationRepositoryClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
|
|
1179
|
+
static {
|
|
1180
|
+
__name(this, "CreateApplicationCommand");
|
|
1181
|
+
}
|
|
1107
1182
|
};
|
|
1108
|
-
__name(_CreateApplicationCommand, "CreateApplicationCommand");
|
|
1109
|
-
var CreateApplicationCommand = _CreateApplicationCommand;
|
|
1110
1183
|
|
|
1111
1184
|
// src/commands/CreateApplicationVersionCommand.ts
|
|
1112
1185
|
|
|
1113
1186
|
|
|
1114
1187
|
|
|
1115
|
-
var
|
|
1188
|
+
var CreateApplicationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1116
1189
|
return [
|
|
1117
1190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1118
1191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1119
1192
|
];
|
|
1120
1193
|
}).s("ServerlessApplicationRepository", "CreateApplicationVersion", {}).n("ServerlessApplicationRepositoryClient", "CreateApplicationVersionCommand").f(void 0, void 0).ser(se_CreateApplicationVersionCommand).de(de_CreateApplicationVersionCommand).build() {
|
|
1194
|
+
static {
|
|
1195
|
+
__name(this, "CreateApplicationVersionCommand");
|
|
1196
|
+
}
|
|
1121
1197
|
};
|
|
1122
|
-
__name(_CreateApplicationVersionCommand, "CreateApplicationVersionCommand");
|
|
1123
|
-
var CreateApplicationVersionCommand = _CreateApplicationVersionCommand;
|
|
1124
1198
|
|
|
1125
1199
|
// src/commands/CreateCloudFormationChangeSetCommand.ts
|
|
1126
1200
|
|
|
1127
1201
|
|
|
1128
1202
|
|
|
1129
|
-
var
|
|
1203
|
+
var CreateCloudFormationChangeSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1130
1204
|
return [
|
|
1131
1205
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1132
1206
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1133
1207
|
];
|
|
1134
1208
|
}).s("ServerlessApplicationRepository", "CreateCloudFormationChangeSet", {}).n("ServerlessApplicationRepositoryClient", "CreateCloudFormationChangeSetCommand").f(void 0, void 0).ser(se_CreateCloudFormationChangeSetCommand).de(de_CreateCloudFormationChangeSetCommand).build() {
|
|
1209
|
+
static {
|
|
1210
|
+
__name(this, "CreateCloudFormationChangeSetCommand");
|
|
1211
|
+
}
|
|
1135
1212
|
};
|
|
1136
|
-
__name(_CreateCloudFormationChangeSetCommand, "CreateCloudFormationChangeSetCommand");
|
|
1137
|
-
var CreateCloudFormationChangeSetCommand = _CreateCloudFormationChangeSetCommand;
|
|
1138
1213
|
|
|
1139
1214
|
// src/commands/CreateCloudFormationTemplateCommand.ts
|
|
1140
1215
|
|
|
1141
1216
|
|
|
1142
1217
|
|
|
1143
|
-
var
|
|
1218
|
+
var CreateCloudFormationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1144
1219
|
return [
|
|
1145
1220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1146
1221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1147
1222
|
];
|
|
1148
1223
|
}).s("ServerlessApplicationRepository", "CreateCloudFormationTemplate", {}).n("ServerlessApplicationRepositoryClient", "CreateCloudFormationTemplateCommand").f(void 0, void 0).ser(se_CreateCloudFormationTemplateCommand).de(de_CreateCloudFormationTemplateCommand).build() {
|
|
1224
|
+
static {
|
|
1225
|
+
__name(this, "CreateCloudFormationTemplateCommand");
|
|
1226
|
+
}
|
|
1149
1227
|
};
|
|
1150
|
-
__name(_CreateCloudFormationTemplateCommand, "CreateCloudFormationTemplateCommand");
|
|
1151
|
-
var CreateCloudFormationTemplateCommand = _CreateCloudFormationTemplateCommand;
|
|
1152
1228
|
|
|
1153
1229
|
// src/commands/DeleteApplicationCommand.ts
|
|
1154
1230
|
|
|
1155
1231
|
|
|
1156
1232
|
|
|
1157
|
-
var
|
|
1233
|
+
var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1158
1234
|
return [
|
|
1159
1235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1160
1236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1161
1237
|
];
|
|
1162
1238
|
}).s("ServerlessApplicationRepository", "DeleteApplication", {}).n("ServerlessApplicationRepositoryClient", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
|
|
1239
|
+
static {
|
|
1240
|
+
__name(this, "DeleteApplicationCommand");
|
|
1241
|
+
}
|
|
1163
1242
|
};
|
|
1164
|
-
__name(_DeleteApplicationCommand, "DeleteApplicationCommand");
|
|
1165
|
-
var DeleteApplicationCommand = _DeleteApplicationCommand;
|
|
1166
1243
|
|
|
1167
1244
|
// src/commands/GetApplicationCommand.ts
|
|
1168
1245
|
|
|
1169
1246
|
|
|
1170
1247
|
|
|
1171
|
-
var
|
|
1248
|
+
var GetApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1172
1249
|
return [
|
|
1173
1250
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1174
1251
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1175
1252
|
];
|
|
1176
1253
|
}).s("ServerlessApplicationRepository", "GetApplication", {}).n("ServerlessApplicationRepositoryClient", "GetApplicationCommand").f(void 0, void 0).ser(se_GetApplicationCommand).de(de_GetApplicationCommand).build() {
|
|
1254
|
+
static {
|
|
1255
|
+
__name(this, "GetApplicationCommand");
|
|
1256
|
+
}
|
|
1177
1257
|
};
|
|
1178
|
-
__name(_GetApplicationCommand, "GetApplicationCommand");
|
|
1179
|
-
var GetApplicationCommand = _GetApplicationCommand;
|
|
1180
1258
|
|
|
1181
1259
|
// src/commands/GetApplicationPolicyCommand.ts
|
|
1182
1260
|
|
|
1183
1261
|
|
|
1184
1262
|
|
|
1185
|
-
var
|
|
1263
|
+
var GetApplicationPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1186
1264
|
return [
|
|
1187
1265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1188
1266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1189
1267
|
];
|
|
1190
1268
|
}).s("ServerlessApplicationRepository", "GetApplicationPolicy", {}).n("ServerlessApplicationRepositoryClient", "GetApplicationPolicyCommand").f(void 0, void 0).ser(se_GetApplicationPolicyCommand).de(de_GetApplicationPolicyCommand).build() {
|
|
1269
|
+
static {
|
|
1270
|
+
__name(this, "GetApplicationPolicyCommand");
|
|
1271
|
+
}
|
|
1191
1272
|
};
|
|
1192
|
-
__name(_GetApplicationPolicyCommand, "GetApplicationPolicyCommand");
|
|
1193
|
-
var GetApplicationPolicyCommand = _GetApplicationPolicyCommand;
|
|
1194
1273
|
|
|
1195
1274
|
// src/commands/GetCloudFormationTemplateCommand.ts
|
|
1196
1275
|
|
|
1197
1276
|
|
|
1198
1277
|
|
|
1199
|
-
var
|
|
1278
|
+
var GetCloudFormationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1200
1279
|
return [
|
|
1201
1280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1202
1281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1203
1282
|
];
|
|
1204
1283
|
}).s("ServerlessApplicationRepository", "GetCloudFormationTemplate", {}).n("ServerlessApplicationRepositoryClient", "GetCloudFormationTemplateCommand").f(void 0, void 0).ser(se_GetCloudFormationTemplateCommand).de(de_GetCloudFormationTemplateCommand).build() {
|
|
1284
|
+
static {
|
|
1285
|
+
__name(this, "GetCloudFormationTemplateCommand");
|
|
1286
|
+
}
|
|
1205
1287
|
};
|
|
1206
|
-
__name(_GetCloudFormationTemplateCommand, "GetCloudFormationTemplateCommand");
|
|
1207
|
-
var GetCloudFormationTemplateCommand = _GetCloudFormationTemplateCommand;
|
|
1208
1288
|
|
|
1209
1289
|
// src/commands/ListApplicationDependenciesCommand.ts
|
|
1210
1290
|
|
|
1211
1291
|
|
|
1212
1292
|
|
|
1213
|
-
var
|
|
1293
|
+
var ListApplicationDependenciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1214
1294
|
return [
|
|
1215
1295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1216
1296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1217
1297
|
];
|
|
1218
1298
|
}).s("ServerlessApplicationRepository", "ListApplicationDependencies", {}).n("ServerlessApplicationRepositoryClient", "ListApplicationDependenciesCommand").f(void 0, void 0).ser(se_ListApplicationDependenciesCommand).de(de_ListApplicationDependenciesCommand).build() {
|
|
1299
|
+
static {
|
|
1300
|
+
__name(this, "ListApplicationDependenciesCommand");
|
|
1301
|
+
}
|
|
1219
1302
|
};
|
|
1220
|
-
__name(_ListApplicationDependenciesCommand, "ListApplicationDependenciesCommand");
|
|
1221
|
-
var ListApplicationDependenciesCommand = _ListApplicationDependenciesCommand;
|
|
1222
1303
|
|
|
1223
1304
|
// src/commands/ListApplicationsCommand.ts
|
|
1224
1305
|
|
|
1225
1306
|
|
|
1226
1307
|
|
|
1227
|
-
var
|
|
1308
|
+
var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1228
1309
|
return [
|
|
1229
1310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1230
1311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1231
1312
|
];
|
|
1232
1313
|
}).s("ServerlessApplicationRepository", "ListApplications", {}).n("ServerlessApplicationRepositoryClient", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
|
|
1314
|
+
static {
|
|
1315
|
+
__name(this, "ListApplicationsCommand");
|
|
1316
|
+
}
|
|
1233
1317
|
};
|
|
1234
|
-
__name(_ListApplicationsCommand, "ListApplicationsCommand");
|
|
1235
|
-
var ListApplicationsCommand = _ListApplicationsCommand;
|
|
1236
1318
|
|
|
1237
1319
|
// src/commands/ListApplicationVersionsCommand.ts
|
|
1238
1320
|
|
|
1239
1321
|
|
|
1240
1322
|
|
|
1241
|
-
var
|
|
1323
|
+
var ListApplicationVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1242
1324
|
return [
|
|
1243
1325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1244
1326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1245
1327
|
];
|
|
1246
1328
|
}).s("ServerlessApplicationRepository", "ListApplicationVersions", {}).n("ServerlessApplicationRepositoryClient", "ListApplicationVersionsCommand").f(void 0, void 0).ser(se_ListApplicationVersionsCommand).de(de_ListApplicationVersionsCommand).build() {
|
|
1329
|
+
static {
|
|
1330
|
+
__name(this, "ListApplicationVersionsCommand");
|
|
1331
|
+
}
|
|
1247
1332
|
};
|
|
1248
|
-
__name(_ListApplicationVersionsCommand, "ListApplicationVersionsCommand");
|
|
1249
|
-
var ListApplicationVersionsCommand = _ListApplicationVersionsCommand;
|
|
1250
1333
|
|
|
1251
1334
|
// src/commands/PutApplicationPolicyCommand.ts
|
|
1252
1335
|
|
|
1253
1336
|
|
|
1254
1337
|
|
|
1255
|
-
var
|
|
1338
|
+
var PutApplicationPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1256
1339
|
return [
|
|
1257
1340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1258
1341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1259
1342
|
];
|
|
1260
1343
|
}).s("ServerlessApplicationRepository", "PutApplicationPolicy", {}).n("ServerlessApplicationRepositoryClient", "PutApplicationPolicyCommand").f(void 0, void 0).ser(se_PutApplicationPolicyCommand).de(de_PutApplicationPolicyCommand).build() {
|
|
1344
|
+
static {
|
|
1345
|
+
__name(this, "PutApplicationPolicyCommand");
|
|
1346
|
+
}
|
|
1261
1347
|
};
|
|
1262
|
-
__name(_PutApplicationPolicyCommand, "PutApplicationPolicyCommand");
|
|
1263
|
-
var PutApplicationPolicyCommand = _PutApplicationPolicyCommand;
|
|
1264
1348
|
|
|
1265
1349
|
// src/commands/UnshareApplicationCommand.ts
|
|
1266
1350
|
|
|
1267
1351
|
|
|
1268
1352
|
|
|
1269
|
-
var
|
|
1353
|
+
var UnshareApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1270
1354
|
return [
|
|
1271
1355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1272
1356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1273
1357
|
];
|
|
1274
1358
|
}).s("ServerlessApplicationRepository", "UnshareApplication", {}).n("ServerlessApplicationRepositoryClient", "UnshareApplicationCommand").f(void 0, void 0).ser(se_UnshareApplicationCommand).de(de_UnshareApplicationCommand).build() {
|
|
1359
|
+
static {
|
|
1360
|
+
__name(this, "UnshareApplicationCommand");
|
|
1361
|
+
}
|
|
1275
1362
|
};
|
|
1276
|
-
__name(_UnshareApplicationCommand, "UnshareApplicationCommand");
|
|
1277
|
-
var UnshareApplicationCommand = _UnshareApplicationCommand;
|
|
1278
1363
|
|
|
1279
1364
|
// src/commands/UpdateApplicationCommand.ts
|
|
1280
1365
|
|
|
1281
1366
|
|
|
1282
1367
|
|
|
1283
|
-
var
|
|
1368
|
+
var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1284
1369
|
return [
|
|
1285
1370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1286
1371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1287
1372
|
];
|
|
1288
1373
|
}).s("ServerlessApplicationRepository", "UpdateApplication", {}).n("ServerlessApplicationRepositoryClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
|
|
1374
|
+
static {
|
|
1375
|
+
__name(this, "UpdateApplicationCommand");
|
|
1376
|
+
}
|
|
1289
1377
|
};
|
|
1290
|
-
__name(_UpdateApplicationCommand, "UpdateApplicationCommand");
|
|
1291
|
-
var UpdateApplicationCommand = _UpdateApplicationCommand;
|
|
1292
1378
|
|
|
1293
1379
|
// src/ServerlessApplicationRepository.ts
|
|
1294
1380
|
var commands = {
|
|
@@ -1307,10 +1393,11 @@ var commands = {
|
|
|
1307
1393
|
UnshareApplicationCommand,
|
|
1308
1394
|
UpdateApplicationCommand
|
|
1309
1395
|
};
|
|
1310
|
-
var
|
|
1396
|
+
var ServerlessApplicationRepository = class extends ServerlessApplicationRepositoryClient {
|
|
1397
|
+
static {
|
|
1398
|
+
__name(this, "ServerlessApplicationRepository");
|
|
1399
|
+
}
|
|
1311
1400
|
};
|
|
1312
|
-
__name(_ServerlessApplicationRepository, "ServerlessApplicationRepository");
|
|
1313
|
-
var ServerlessApplicationRepository = _ServerlessApplicationRepository;
|
|
1314
1401
|
(0, import_smithy_client.createAggregatedClient)(commands, ServerlessApplicationRepository);
|
|
1315
1402
|
|
|
1316
1403
|
// src/pagination/ListApplicationDependenciesPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class ServerlessApplicationRepositoryClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -6,70 +6,80 @@ export const Capability = {
|
|
|
6
6
|
CAPABILITY_RESOURCE_POLICY: "CAPABILITY_RESOURCE_POLICY",
|
|
7
7
|
};
|
|
8
8
|
export class BadRequestException extends __BaseException {
|
|
9
|
+
name = "BadRequestException";
|
|
10
|
+
$fault = "client";
|
|
11
|
+
ErrorCode;
|
|
12
|
+
Message;
|
|
9
13
|
constructor(opts) {
|
|
10
14
|
super({
|
|
11
15
|
name: "BadRequestException",
|
|
12
16
|
$fault: "client",
|
|
13
17
|
...opts,
|
|
14
18
|
});
|
|
15
|
-
this.name = "BadRequestException";
|
|
16
|
-
this.$fault = "client";
|
|
17
19
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
18
20
|
this.ErrorCode = opts.ErrorCode;
|
|
19
21
|
this.Message = opts.Message;
|
|
20
22
|
}
|
|
21
23
|
}
|
|
22
24
|
export class ConflictException extends __BaseException {
|
|
25
|
+
name = "ConflictException";
|
|
26
|
+
$fault = "client";
|
|
27
|
+
ErrorCode;
|
|
28
|
+
Message;
|
|
23
29
|
constructor(opts) {
|
|
24
30
|
super({
|
|
25
31
|
name: "ConflictException",
|
|
26
32
|
$fault: "client",
|
|
27
33
|
...opts,
|
|
28
34
|
});
|
|
29
|
-
this.name = "ConflictException";
|
|
30
|
-
this.$fault = "client";
|
|
31
35
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
32
36
|
this.ErrorCode = opts.ErrorCode;
|
|
33
37
|
this.Message = opts.Message;
|
|
34
38
|
}
|
|
35
39
|
}
|
|
36
40
|
export class ForbiddenException extends __BaseException {
|
|
41
|
+
name = "ForbiddenException";
|
|
42
|
+
$fault = "client";
|
|
43
|
+
ErrorCode;
|
|
44
|
+
Message;
|
|
37
45
|
constructor(opts) {
|
|
38
46
|
super({
|
|
39
47
|
name: "ForbiddenException",
|
|
40
48
|
$fault: "client",
|
|
41
49
|
...opts,
|
|
42
50
|
});
|
|
43
|
-
this.name = "ForbiddenException";
|
|
44
|
-
this.$fault = "client";
|
|
45
51
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
46
52
|
this.ErrorCode = opts.ErrorCode;
|
|
47
53
|
this.Message = opts.Message;
|
|
48
54
|
}
|
|
49
55
|
}
|
|
50
56
|
export class InternalServerErrorException extends __BaseException {
|
|
57
|
+
name = "InternalServerErrorException";
|
|
58
|
+
$fault = "server";
|
|
59
|
+
ErrorCode;
|
|
60
|
+
Message;
|
|
51
61
|
constructor(opts) {
|
|
52
62
|
super({
|
|
53
63
|
name: "InternalServerErrorException",
|
|
54
64
|
$fault: "server",
|
|
55
65
|
...opts,
|
|
56
66
|
});
|
|
57
|
-
this.name = "InternalServerErrorException";
|
|
58
|
-
this.$fault = "server";
|
|
59
67
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
60
68
|
this.ErrorCode = opts.ErrorCode;
|
|
61
69
|
this.Message = opts.Message;
|
|
62
70
|
}
|
|
63
71
|
}
|
|
64
72
|
export class TooManyRequestsException extends __BaseException {
|
|
73
|
+
name = "TooManyRequestsException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
ErrorCode;
|
|
76
|
+
Message;
|
|
65
77
|
constructor(opts) {
|
|
66
78
|
super({
|
|
67
79
|
name: "TooManyRequestsException",
|
|
68
80
|
$fault: "client",
|
|
69
81
|
...opts,
|
|
70
82
|
});
|
|
71
|
-
this.name = "TooManyRequestsException";
|
|
72
|
-
this.$fault = "client";
|
|
73
83
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
74
84
|
this.ErrorCode = opts.ErrorCode;
|
|
75
85
|
this.Message = opts.Message;
|
|
@@ -81,14 +91,16 @@ export const Status = {
|
|
|
81
91
|
PREPARING: "PREPARING",
|
|
82
92
|
};
|
|
83
93
|
export class NotFoundException extends __BaseException {
|
|
94
|
+
name = "NotFoundException";
|
|
95
|
+
$fault = "client";
|
|
96
|
+
ErrorCode;
|
|
97
|
+
Message;
|
|
84
98
|
constructor(opts) {
|
|
85
99
|
super({
|
|
86
100
|
name: "NotFoundException",
|
|
87
101
|
$fault: "client",
|
|
88
102
|
...opts,
|
|
89
103
|
});
|
|
90
|
-
this.name = "NotFoundException";
|
|
91
|
-
this.$fault = "client";
|
|
92
104
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
93
105
|
this.ErrorCode = opts.ErrorCode;
|
|
94
106
|
this.Message = opts.Message;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.726.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,56 +20,56 @@
|
|
|
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.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|