@aws-sdk/client-apprunner 3.721.0 → 3.723.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 +200 -146
- package/dist-es/AppRunnerClient.js +1 -0
- package/dist-es/models/models_0.js +15 -10
- 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
|
@@ -209,7 +209,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
209
209
|
}, "resolveRuntimeExtensions");
|
|
210
210
|
|
|
211
211
|
// src/AppRunnerClient.ts
|
|
212
|
-
var
|
|
212
|
+
var AppRunnerClient = class extends import_smithy_client.Client {
|
|
213
|
+
static {
|
|
214
|
+
__name(this, "AppRunnerClient");
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* The resolved configuration of AppRunnerClient class. This is resolved and normalized from the {@link AppRunnerClientConfig | constructor configuration interface}.
|
|
218
|
+
*/
|
|
219
|
+
config;
|
|
213
220
|
constructor(...[configuration]) {
|
|
214
221
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
215
222
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -219,7 +226,7 @@ var _AppRunnerClient = class _AppRunnerClient extends import_smithy_client.Clien
|
|
|
219
226
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
220
227
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
221
228
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
222
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
229
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
223
230
|
super(_config_8);
|
|
224
231
|
this.config = _config_8;
|
|
225
232
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -247,8 +254,6 @@ var _AppRunnerClient = class _AppRunnerClient extends import_smithy_client.Clien
|
|
|
247
254
|
super.destroy();
|
|
248
255
|
}
|
|
249
256
|
};
|
|
250
|
-
__name(_AppRunnerClient, "AppRunnerClient");
|
|
251
|
-
var AppRunnerClient = _AppRunnerClient;
|
|
252
257
|
|
|
253
258
|
// src/AppRunner.ts
|
|
254
259
|
|
|
@@ -265,7 +270,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
265
270
|
|
|
266
271
|
// src/models/AppRunnerServiceException.ts
|
|
267
272
|
|
|
268
|
-
var
|
|
273
|
+
var AppRunnerServiceException = class _AppRunnerServiceException extends import_smithy_client.ServiceException {
|
|
274
|
+
static {
|
|
275
|
+
__name(this, "AppRunnerServiceException");
|
|
276
|
+
}
|
|
269
277
|
/**
|
|
270
278
|
* @internal
|
|
271
279
|
*/
|
|
@@ -274,8 +282,6 @@ var _AppRunnerServiceException = class _AppRunnerServiceException extends import
|
|
|
274
282
|
Object.setPrototypeOf(this, _AppRunnerServiceException.prototype);
|
|
275
283
|
}
|
|
276
284
|
};
|
|
277
|
-
__name(_AppRunnerServiceException, "AppRunnerServiceException");
|
|
278
|
-
var AppRunnerServiceException = _AppRunnerServiceException;
|
|
279
285
|
|
|
280
286
|
// src/models/models_0.ts
|
|
281
287
|
|
|
@@ -293,7 +299,13 @@ var CustomDomainAssociationStatus = {
|
|
|
293
299
|
DELETING: "DELETING",
|
|
294
300
|
PENDING_CERTIFICATE_DNS_VALIDATION: "PENDING_CERTIFICATE_DNS_VALIDATION"
|
|
295
301
|
};
|
|
296
|
-
var
|
|
302
|
+
var InternalServiceErrorException = class _InternalServiceErrorException extends AppRunnerServiceException {
|
|
303
|
+
static {
|
|
304
|
+
__name(this, "InternalServiceErrorException");
|
|
305
|
+
}
|
|
306
|
+
name = "InternalServiceErrorException";
|
|
307
|
+
$fault = "server";
|
|
308
|
+
Message;
|
|
297
309
|
/**
|
|
298
310
|
* @internal
|
|
299
311
|
*/
|
|
@@ -303,15 +315,17 @@ var _InternalServiceErrorException = class _InternalServiceErrorException extend
|
|
|
303
315
|
$fault: "server",
|
|
304
316
|
...opts
|
|
305
317
|
});
|
|
306
|
-
this.name = "InternalServiceErrorException";
|
|
307
|
-
this.$fault = "server";
|
|
308
318
|
Object.setPrototypeOf(this, _InternalServiceErrorException.prototype);
|
|
309
319
|
this.Message = opts.Message;
|
|
310
320
|
}
|
|
311
321
|
};
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
322
|
+
var InvalidRequestException = class _InvalidRequestException extends AppRunnerServiceException {
|
|
323
|
+
static {
|
|
324
|
+
__name(this, "InvalidRequestException");
|
|
325
|
+
}
|
|
326
|
+
name = "InvalidRequestException";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
Message;
|
|
315
329
|
/**
|
|
316
330
|
* @internal
|
|
317
331
|
*/
|
|
@@ -321,15 +335,17 @@ var _InvalidRequestException = class _InvalidRequestException extends AppRunnerS
|
|
|
321
335
|
$fault: "client",
|
|
322
336
|
...opts
|
|
323
337
|
});
|
|
324
|
-
this.name = "InvalidRequestException";
|
|
325
|
-
this.$fault = "client";
|
|
326
338
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
327
339
|
this.Message = opts.Message;
|
|
328
340
|
}
|
|
329
341
|
};
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
342
|
+
var InvalidStateException = class _InvalidStateException extends AppRunnerServiceException {
|
|
343
|
+
static {
|
|
344
|
+
__name(this, "InvalidStateException");
|
|
345
|
+
}
|
|
346
|
+
name = "InvalidStateException";
|
|
347
|
+
$fault = "client";
|
|
348
|
+
Message;
|
|
333
349
|
/**
|
|
334
350
|
* @internal
|
|
335
351
|
*/
|
|
@@ -339,19 +355,21 @@ var _InvalidStateException = class _InvalidStateException extends AppRunnerServi
|
|
|
339
355
|
$fault: "client",
|
|
340
356
|
...opts
|
|
341
357
|
});
|
|
342
|
-
this.name = "InvalidStateException";
|
|
343
|
-
this.$fault = "client";
|
|
344
358
|
Object.setPrototypeOf(this, _InvalidStateException.prototype);
|
|
345
359
|
this.Message = opts.Message;
|
|
346
360
|
}
|
|
347
361
|
};
|
|
348
|
-
__name(_InvalidStateException, "InvalidStateException");
|
|
349
|
-
var InvalidStateException = _InvalidStateException;
|
|
350
362
|
var AutoScalingConfigurationStatus = {
|
|
351
363
|
ACTIVE: "ACTIVE",
|
|
352
364
|
INACTIVE: "INACTIVE"
|
|
353
365
|
};
|
|
354
|
-
var
|
|
366
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends AppRunnerServiceException {
|
|
367
|
+
static {
|
|
368
|
+
__name(this, "ServiceQuotaExceededException");
|
|
369
|
+
}
|
|
370
|
+
name = "ServiceQuotaExceededException";
|
|
371
|
+
$fault = "client";
|
|
372
|
+
Message;
|
|
355
373
|
/**
|
|
356
374
|
* @internal
|
|
357
375
|
*/
|
|
@@ -361,14 +379,10 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
361
379
|
$fault: "client",
|
|
362
380
|
...opts
|
|
363
381
|
});
|
|
364
|
-
this.name = "ServiceQuotaExceededException";
|
|
365
|
-
this.$fault = "client";
|
|
366
382
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
367
383
|
this.Message = opts.Message;
|
|
368
384
|
}
|
|
369
385
|
};
|
|
370
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
371
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
372
386
|
var ProviderType = {
|
|
373
387
|
BITBUCKET: "BITBUCKET",
|
|
374
388
|
GITHUB: "GITHUB"
|
|
@@ -445,7 +459,13 @@ var VpcIngressConnectionStatus = {
|
|
|
445
459
|
PENDING_DELETION: "PENDING_DELETION",
|
|
446
460
|
PENDING_UPDATE: "PENDING_UPDATE"
|
|
447
461
|
};
|
|
448
|
-
var
|
|
462
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends AppRunnerServiceException {
|
|
463
|
+
static {
|
|
464
|
+
__name(this, "ResourceNotFoundException");
|
|
465
|
+
}
|
|
466
|
+
name = "ResourceNotFoundException";
|
|
467
|
+
$fault = "client";
|
|
468
|
+
Message;
|
|
449
469
|
/**
|
|
450
470
|
* @internal
|
|
451
471
|
*/
|
|
@@ -455,14 +475,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends AppRun
|
|
|
455
475
|
$fault: "client",
|
|
456
476
|
...opts
|
|
457
477
|
});
|
|
458
|
-
this.name = "ResourceNotFoundException";
|
|
459
|
-
this.$fault = "client";
|
|
460
478
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
461
479
|
this.Message = opts.Message;
|
|
462
480
|
}
|
|
463
481
|
};
|
|
464
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
465
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
466
482
|
var OperationStatus = {
|
|
467
483
|
FAILED: "FAILED",
|
|
468
484
|
IN_PROGRESS: "IN_PROGRESS",
|
|
@@ -1667,519 +1683,556 @@ function sharedHeaders(operation) {
|
|
|
1667
1683
|
__name(sharedHeaders, "sharedHeaders");
|
|
1668
1684
|
|
|
1669
1685
|
// src/commands/AssociateCustomDomainCommand.ts
|
|
1670
|
-
var
|
|
1686
|
+
var AssociateCustomDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1671
1687
|
return [
|
|
1672
1688
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1673
1689
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1674
1690
|
];
|
|
1675
1691
|
}).s("AppRunner", "AssociateCustomDomain", {}).n("AppRunnerClient", "AssociateCustomDomainCommand").f(void 0, void 0).ser(se_AssociateCustomDomainCommand).de(de_AssociateCustomDomainCommand).build() {
|
|
1692
|
+
static {
|
|
1693
|
+
__name(this, "AssociateCustomDomainCommand");
|
|
1694
|
+
}
|
|
1676
1695
|
};
|
|
1677
|
-
__name(_AssociateCustomDomainCommand, "AssociateCustomDomainCommand");
|
|
1678
|
-
var AssociateCustomDomainCommand = _AssociateCustomDomainCommand;
|
|
1679
1696
|
|
|
1680
1697
|
// src/commands/CreateAutoScalingConfigurationCommand.ts
|
|
1681
1698
|
|
|
1682
1699
|
|
|
1683
1700
|
|
|
1684
|
-
var
|
|
1701
|
+
var CreateAutoScalingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1685
1702
|
return [
|
|
1686
1703
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1687
1704
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1688
1705
|
];
|
|
1689
1706
|
}).s("AppRunner", "CreateAutoScalingConfiguration", {}).n("AppRunnerClient", "CreateAutoScalingConfigurationCommand").f(void 0, void 0).ser(se_CreateAutoScalingConfigurationCommand).de(de_CreateAutoScalingConfigurationCommand).build() {
|
|
1707
|
+
static {
|
|
1708
|
+
__name(this, "CreateAutoScalingConfigurationCommand");
|
|
1709
|
+
}
|
|
1690
1710
|
};
|
|
1691
|
-
__name(_CreateAutoScalingConfigurationCommand, "CreateAutoScalingConfigurationCommand");
|
|
1692
|
-
var CreateAutoScalingConfigurationCommand = _CreateAutoScalingConfigurationCommand;
|
|
1693
1711
|
|
|
1694
1712
|
// src/commands/CreateConnectionCommand.ts
|
|
1695
1713
|
|
|
1696
1714
|
|
|
1697
1715
|
|
|
1698
|
-
var
|
|
1716
|
+
var CreateConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1699
1717
|
return [
|
|
1700
1718
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1701
1719
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1702
1720
|
];
|
|
1703
1721
|
}).s("AppRunner", "CreateConnection", {}).n("AppRunnerClient", "CreateConnectionCommand").f(void 0, void 0).ser(se_CreateConnectionCommand).de(de_CreateConnectionCommand).build() {
|
|
1722
|
+
static {
|
|
1723
|
+
__name(this, "CreateConnectionCommand");
|
|
1724
|
+
}
|
|
1704
1725
|
};
|
|
1705
|
-
__name(_CreateConnectionCommand, "CreateConnectionCommand");
|
|
1706
|
-
var CreateConnectionCommand = _CreateConnectionCommand;
|
|
1707
1726
|
|
|
1708
1727
|
// src/commands/CreateObservabilityConfigurationCommand.ts
|
|
1709
1728
|
|
|
1710
1729
|
|
|
1711
1730
|
|
|
1712
|
-
var
|
|
1731
|
+
var CreateObservabilityConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1713
1732
|
return [
|
|
1714
1733
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1715
1734
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1716
1735
|
];
|
|
1717
1736
|
}).s("AppRunner", "CreateObservabilityConfiguration", {}).n("AppRunnerClient", "CreateObservabilityConfigurationCommand").f(void 0, void 0).ser(se_CreateObservabilityConfigurationCommand).de(de_CreateObservabilityConfigurationCommand).build() {
|
|
1737
|
+
static {
|
|
1738
|
+
__name(this, "CreateObservabilityConfigurationCommand");
|
|
1739
|
+
}
|
|
1718
1740
|
};
|
|
1719
|
-
__name(_CreateObservabilityConfigurationCommand, "CreateObservabilityConfigurationCommand");
|
|
1720
|
-
var CreateObservabilityConfigurationCommand = _CreateObservabilityConfigurationCommand;
|
|
1721
1741
|
|
|
1722
1742
|
// src/commands/CreateServiceCommand.ts
|
|
1723
1743
|
|
|
1724
1744
|
|
|
1725
1745
|
|
|
1726
|
-
var
|
|
1746
|
+
var CreateServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1727
1747
|
return [
|
|
1728
1748
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1729
1749
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1730
1750
|
];
|
|
1731
1751
|
}).s("AppRunner", "CreateService", {}).n("AppRunnerClient", "CreateServiceCommand").f(CreateServiceRequestFilterSensitiveLog, CreateServiceResponseFilterSensitiveLog).ser(se_CreateServiceCommand).de(de_CreateServiceCommand).build() {
|
|
1752
|
+
static {
|
|
1753
|
+
__name(this, "CreateServiceCommand");
|
|
1754
|
+
}
|
|
1732
1755
|
};
|
|
1733
|
-
__name(_CreateServiceCommand, "CreateServiceCommand");
|
|
1734
|
-
var CreateServiceCommand = _CreateServiceCommand;
|
|
1735
1756
|
|
|
1736
1757
|
// src/commands/CreateVpcConnectorCommand.ts
|
|
1737
1758
|
|
|
1738
1759
|
|
|
1739
1760
|
|
|
1740
|
-
var
|
|
1761
|
+
var CreateVpcConnectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1741
1762
|
return [
|
|
1742
1763
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1743
1764
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1744
1765
|
];
|
|
1745
1766
|
}).s("AppRunner", "CreateVpcConnector", {}).n("AppRunnerClient", "CreateVpcConnectorCommand").f(void 0, void 0).ser(se_CreateVpcConnectorCommand).de(de_CreateVpcConnectorCommand).build() {
|
|
1767
|
+
static {
|
|
1768
|
+
__name(this, "CreateVpcConnectorCommand");
|
|
1769
|
+
}
|
|
1746
1770
|
};
|
|
1747
|
-
__name(_CreateVpcConnectorCommand, "CreateVpcConnectorCommand");
|
|
1748
|
-
var CreateVpcConnectorCommand = _CreateVpcConnectorCommand;
|
|
1749
1771
|
|
|
1750
1772
|
// src/commands/CreateVpcIngressConnectionCommand.ts
|
|
1751
1773
|
|
|
1752
1774
|
|
|
1753
1775
|
|
|
1754
|
-
var
|
|
1776
|
+
var CreateVpcIngressConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1755
1777
|
return [
|
|
1756
1778
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1757
1779
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1758
1780
|
];
|
|
1759
1781
|
}).s("AppRunner", "CreateVpcIngressConnection", {}).n("AppRunnerClient", "CreateVpcIngressConnectionCommand").f(void 0, void 0).ser(se_CreateVpcIngressConnectionCommand).de(de_CreateVpcIngressConnectionCommand).build() {
|
|
1782
|
+
static {
|
|
1783
|
+
__name(this, "CreateVpcIngressConnectionCommand");
|
|
1784
|
+
}
|
|
1760
1785
|
};
|
|
1761
|
-
__name(_CreateVpcIngressConnectionCommand, "CreateVpcIngressConnectionCommand");
|
|
1762
|
-
var CreateVpcIngressConnectionCommand = _CreateVpcIngressConnectionCommand;
|
|
1763
1786
|
|
|
1764
1787
|
// src/commands/DeleteAutoScalingConfigurationCommand.ts
|
|
1765
1788
|
|
|
1766
1789
|
|
|
1767
1790
|
|
|
1768
|
-
var
|
|
1791
|
+
var DeleteAutoScalingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1769
1792
|
return [
|
|
1770
1793
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1771
1794
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1772
1795
|
];
|
|
1773
1796
|
}).s("AppRunner", "DeleteAutoScalingConfiguration", {}).n("AppRunnerClient", "DeleteAutoScalingConfigurationCommand").f(void 0, void 0).ser(se_DeleteAutoScalingConfigurationCommand).de(de_DeleteAutoScalingConfigurationCommand).build() {
|
|
1797
|
+
static {
|
|
1798
|
+
__name(this, "DeleteAutoScalingConfigurationCommand");
|
|
1799
|
+
}
|
|
1774
1800
|
};
|
|
1775
|
-
__name(_DeleteAutoScalingConfigurationCommand, "DeleteAutoScalingConfigurationCommand");
|
|
1776
|
-
var DeleteAutoScalingConfigurationCommand = _DeleteAutoScalingConfigurationCommand;
|
|
1777
1801
|
|
|
1778
1802
|
// src/commands/DeleteConnectionCommand.ts
|
|
1779
1803
|
|
|
1780
1804
|
|
|
1781
1805
|
|
|
1782
|
-
var
|
|
1806
|
+
var DeleteConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1783
1807
|
return [
|
|
1784
1808
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1785
1809
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1786
1810
|
];
|
|
1787
1811
|
}).s("AppRunner", "DeleteConnection", {}).n("AppRunnerClient", "DeleteConnectionCommand").f(void 0, void 0).ser(se_DeleteConnectionCommand).de(de_DeleteConnectionCommand).build() {
|
|
1812
|
+
static {
|
|
1813
|
+
__name(this, "DeleteConnectionCommand");
|
|
1814
|
+
}
|
|
1788
1815
|
};
|
|
1789
|
-
__name(_DeleteConnectionCommand, "DeleteConnectionCommand");
|
|
1790
|
-
var DeleteConnectionCommand = _DeleteConnectionCommand;
|
|
1791
1816
|
|
|
1792
1817
|
// src/commands/DeleteObservabilityConfigurationCommand.ts
|
|
1793
1818
|
|
|
1794
1819
|
|
|
1795
1820
|
|
|
1796
|
-
var
|
|
1821
|
+
var DeleteObservabilityConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1797
1822
|
return [
|
|
1798
1823
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1799
1824
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1800
1825
|
];
|
|
1801
1826
|
}).s("AppRunner", "DeleteObservabilityConfiguration", {}).n("AppRunnerClient", "DeleteObservabilityConfigurationCommand").f(void 0, void 0).ser(se_DeleteObservabilityConfigurationCommand).de(de_DeleteObservabilityConfigurationCommand).build() {
|
|
1827
|
+
static {
|
|
1828
|
+
__name(this, "DeleteObservabilityConfigurationCommand");
|
|
1829
|
+
}
|
|
1802
1830
|
};
|
|
1803
|
-
__name(_DeleteObservabilityConfigurationCommand, "DeleteObservabilityConfigurationCommand");
|
|
1804
|
-
var DeleteObservabilityConfigurationCommand = _DeleteObservabilityConfigurationCommand;
|
|
1805
1831
|
|
|
1806
1832
|
// src/commands/DeleteServiceCommand.ts
|
|
1807
1833
|
|
|
1808
1834
|
|
|
1809
1835
|
|
|
1810
|
-
var
|
|
1836
|
+
var DeleteServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1811
1837
|
return [
|
|
1812
1838
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1813
1839
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1814
1840
|
];
|
|
1815
1841
|
}).s("AppRunner", "DeleteService", {}).n("AppRunnerClient", "DeleteServiceCommand").f(void 0, DeleteServiceResponseFilterSensitiveLog).ser(se_DeleteServiceCommand).de(de_DeleteServiceCommand).build() {
|
|
1842
|
+
static {
|
|
1843
|
+
__name(this, "DeleteServiceCommand");
|
|
1844
|
+
}
|
|
1816
1845
|
};
|
|
1817
|
-
__name(_DeleteServiceCommand, "DeleteServiceCommand");
|
|
1818
|
-
var DeleteServiceCommand = _DeleteServiceCommand;
|
|
1819
1846
|
|
|
1820
1847
|
// src/commands/DeleteVpcConnectorCommand.ts
|
|
1821
1848
|
|
|
1822
1849
|
|
|
1823
1850
|
|
|
1824
|
-
var
|
|
1851
|
+
var DeleteVpcConnectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1825
1852
|
return [
|
|
1826
1853
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1827
1854
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1828
1855
|
];
|
|
1829
1856
|
}).s("AppRunner", "DeleteVpcConnector", {}).n("AppRunnerClient", "DeleteVpcConnectorCommand").f(void 0, void 0).ser(se_DeleteVpcConnectorCommand).de(de_DeleteVpcConnectorCommand).build() {
|
|
1857
|
+
static {
|
|
1858
|
+
__name(this, "DeleteVpcConnectorCommand");
|
|
1859
|
+
}
|
|
1830
1860
|
};
|
|
1831
|
-
__name(_DeleteVpcConnectorCommand, "DeleteVpcConnectorCommand");
|
|
1832
|
-
var DeleteVpcConnectorCommand = _DeleteVpcConnectorCommand;
|
|
1833
1861
|
|
|
1834
1862
|
// src/commands/DeleteVpcIngressConnectionCommand.ts
|
|
1835
1863
|
|
|
1836
1864
|
|
|
1837
1865
|
|
|
1838
|
-
var
|
|
1866
|
+
var DeleteVpcIngressConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1839
1867
|
return [
|
|
1840
1868
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1841
1869
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1842
1870
|
];
|
|
1843
1871
|
}).s("AppRunner", "DeleteVpcIngressConnection", {}).n("AppRunnerClient", "DeleteVpcIngressConnectionCommand").f(void 0, void 0).ser(se_DeleteVpcIngressConnectionCommand).de(de_DeleteVpcIngressConnectionCommand).build() {
|
|
1872
|
+
static {
|
|
1873
|
+
__name(this, "DeleteVpcIngressConnectionCommand");
|
|
1874
|
+
}
|
|
1844
1875
|
};
|
|
1845
|
-
__name(_DeleteVpcIngressConnectionCommand, "DeleteVpcIngressConnectionCommand");
|
|
1846
|
-
var DeleteVpcIngressConnectionCommand = _DeleteVpcIngressConnectionCommand;
|
|
1847
1876
|
|
|
1848
1877
|
// src/commands/DescribeAutoScalingConfigurationCommand.ts
|
|
1849
1878
|
|
|
1850
1879
|
|
|
1851
1880
|
|
|
1852
|
-
var
|
|
1881
|
+
var DescribeAutoScalingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1853
1882
|
return [
|
|
1854
1883
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1855
1884
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1856
1885
|
];
|
|
1857
1886
|
}).s("AppRunner", "DescribeAutoScalingConfiguration", {}).n("AppRunnerClient", "DescribeAutoScalingConfigurationCommand").f(void 0, void 0).ser(se_DescribeAutoScalingConfigurationCommand).de(de_DescribeAutoScalingConfigurationCommand).build() {
|
|
1887
|
+
static {
|
|
1888
|
+
__name(this, "DescribeAutoScalingConfigurationCommand");
|
|
1889
|
+
}
|
|
1858
1890
|
};
|
|
1859
|
-
__name(_DescribeAutoScalingConfigurationCommand, "DescribeAutoScalingConfigurationCommand");
|
|
1860
|
-
var DescribeAutoScalingConfigurationCommand = _DescribeAutoScalingConfigurationCommand;
|
|
1861
1891
|
|
|
1862
1892
|
// src/commands/DescribeCustomDomainsCommand.ts
|
|
1863
1893
|
|
|
1864
1894
|
|
|
1865
1895
|
|
|
1866
|
-
var
|
|
1896
|
+
var DescribeCustomDomainsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1867
1897
|
return [
|
|
1868
1898
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1869
1899
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1870
1900
|
];
|
|
1871
1901
|
}).s("AppRunner", "DescribeCustomDomains", {}).n("AppRunnerClient", "DescribeCustomDomainsCommand").f(void 0, void 0).ser(se_DescribeCustomDomainsCommand).de(de_DescribeCustomDomainsCommand).build() {
|
|
1902
|
+
static {
|
|
1903
|
+
__name(this, "DescribeCustomDomainsCommand");
|
|
1904
|
+
}
|
|
1872
1905
|
};
|
|
1873
|
-
__name(_DescribeCustomDomainsCommand, "DescribeCustomDomainsCommand");
|
|
1874
|
-
var DescribeCustomDomainsCommand = _DescribeCustomDomainsCommand;
|
|
1875
1906
|
|
|
1876
1907
|
// src/commands/DescribeObservabilityConfigurationCommand.ts
|
|
1877
1908
|
|
|
1878
1909
|
|
|
1879
1910
|
|
|
1880
|
-
var
|
|
1911
|
+
var DescribeObservabilityConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1881
1912
|
return [
|
|
1882
1913
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1883
1914
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1884
1915
|
];
|
|
1885
1916
|
}).s("AppRunner", "DescribeObservabilityConfiguration", {}).n("AppRunnerClient", "DescribeObservabilityConfigurationCommand").f(void 0, void 0).ser(se_DescribeObservabilityConfigurationCommand).de(de_DescribeObservabilityConfigurationCommand).build() {
|
|
1917
|
+
static {
|
|
1918
|
+
__name(this, "DescribeObservabilityConfigurationCommand");
|
|
1919
|
+
}
|
|
1886
1920
|
};
|
|
1887
|
-
__name(_DescribeObservabilityConfigurationCommand, "DescribeObservabilityConfigurationCommand");
|
|
1888
|
-
var DescribeObservabilityConfigurationCommand = _DescribeObservabilityConfigurationCommand;
|
|
1889
1921
|
|
|
1890
1922
|
// src/commands/DescribeServiceCommand.ts
|
|
1891
1923
|
|
|
1892
1924
|
|
|
1893
1925
|
|
|
1894
|
-
var
|
|
1926
|
+
var DescribeServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1895
1927
|
return [
|
|
1896
1928
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1897
1929
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1898
1930
|
];
|
|
1899
1931
|
}).s("AppRunner", "DescribeService", {}).n("AppRunnerClient", "DescribeServiceCommand").f(void 0, DescribeServiceResponseFilterSensitiveLog).ser(se_DescribeServiceCommand).de(de_DescribeServiceCommand).build() {
|
|
1932
|
+
static {
|
|
1933
|
+
__name(this, "DescribeServiceCommand");
|
|
1934
|
+
}
|
|
1900
1935
|
};
|
|
1901
|
-
__name(_DescribeServiceCommand, "DescribeServiceCommand");
|
|
1902
|
-
var DescribeServiceCommand = _DescribeServiceCommand;
|
|
1903
1936
|
|
|
1904
1937
|
// src/commands/DescribeVpcConnectorCommand.ts
|
|
1905
1938
|
|
|
1906
1939
|
|
|
1907
1940
|
|
|
1908
|
-
var
|
|
1941
|
+
var DescribeVpcConnectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1909
1942
|
return [
|
|
1910
1943
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1911
1944
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1912
1945
|
];
|
|
1913
1946
|
}).s("AppRunner", "DescribeVpcConnector", {}).n("AppRunnerClient", "DescribeVpcConnectorCommand").f(void 0, void 0).ser(se_DescribeVpcConnectorCommand).de(de_DescribeVpcConnectorCommand).build() {
|
|
1947
|
+
static {
|
|
1948
|
+
__name(this, "DescribeVpcConnectorCommand");
|
|
1949
|
+
}
|
|
1914
1950
|
};
|
|
1915
|
-
__name(_DescribeVpcConnectorCommand, "DescribeVpcConnectorCommand");
|
|
1916
|
-
var DescribeVpcConnectorCommand = _DescribeVpcConnectorCommand;
|
|
1917
1951
|
|
|
1918
1952
|
// src/commands/DescribeVpcIngressConnectionCommand.ts
|
|
1919
1953
|
|
|
1920
1954
|
|
|
1921
1955
|
|
|
1922
|
-
var
|
|
1956
|
+
var DescribeVpcIngressConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1923
1957
|
return [
|
|
1924
1958
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1925
1959
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1926
1960
|
];
|
|
1927
1961
|
}).s("AppRunner", "DescribeVpcIngressConnection", {}).n("AppRunnerClient", "DescribeVpcIngressConnectionCommand").f(void 0, void 0).ser(se_DescribeVpcIngressConnectionCommand).de(de_DescribeVpcIngressConnectionCommand).build() {
|
|
1962
|
+
static {
|
|
1963
|
+
__name(this, "DescribeVpcIngressConnectionCommand");
|
|
1964
|
+
}
|
|
1928
1965
|
};
|
|
1929
|
-
__name(_DescribeVpcIngressConnectionCommand, "DescribeVpcIngressConnectionCommand");
|
|
1930
|
-
var DescribeVpcIngressConnectionCommand = _DescribeVpcIngressConnectionCommand;
|
|
1931
1966
|
|
|
1932
1967
|
// src/commands/DisassociateCustomDomainCommand.ts
|
|
1933
1968
|
|
|
1934
1969
|
|
|
1935
1970
|
|
|
1936
|
-
var
|
|
1971
|
+
var DisassociateCustomDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1937
1972
|
return [
|
|
1938
1973
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1939
1974
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1940
1975
|
];
|
|
1941
1976
|
}).s("AppRunner", "DisassociateCustomDomain", {}).n("AppRunnerClient", "DisassociateCustomDomainCommand").f(void 0, void 0).ser(se_DisassociateCustomDomainCommand).de(de_DisassociateCustomDomainCommand).build() {
|
|
1977
|
+
static {
|
|
1978
|
+
__name(this, "DisassociateCustomDomainCommand");
|
|
1979
|
+
}
|
|
1942
1980
|
};
|
|
1943
|
-
__name(_DisassociateCustomDomainCommand, "DisassociateCustomDomainCommand");
|
|
1944
|
-
var DisassociateCustomDomainCommand = _DisassociateCustomDomainCommand;
|
|
1945
1981
|
|
|
1946
1982
|
// src/commands/ListAutoScalingConfigurationsCommand.ts
|
|
1947
1983
|
|
|
1948
1984
|
|
|
1949
1985
|
|
|
1950
|
-
var
|
|
1986
|
+
var ListAutoScalingConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1951
1987
|
return [
|
|
1952
1988
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1953
1989
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1954
1990
|
];
|
|
1955
1991
|
}).s("AppRunner", "ListAutoScalingConfigurations", {}).n("AppRunnerClient", "ListAutoScalingConfigurationsCommand").f(void 0, void 0).ser(se_ListAutoScalingConfigurationsCommand).de(de_ListAutoScalingConfigurationsCommand).build() {
|
|
1992
|
+
static {
|
|
1993
|
+
__name(this, "ListAutoScalingConfigurationsCommand");
|
|
1994
|
+
}
|
|
1956
1995
|
};
|
|
1957
|
-
__name(_ListAutoScalingConfigurationsCommand, "ListAutoScalingConfigurationsCommand");
|
|
1958
|
-
var ListAutoScalingConfigurationsCommand = _ListAutoScalingConfigurationsCommand;
|
|
1959
1996
|
|
|
1960
1997
|
// src/commands/ListConnectionsCommand.ts
|
|
1961
1998
|
|
|
1962
1999
|
|
|
1963
2000
|
|
|
1964
|
-
var
|
|
2001
|
+
var ListConnectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1965
2002
|
return [
|
|
1966
2003
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1967
2004
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1968
2005
|
];
|
|
1969
2006
|
}).s("AppRunner", "ListConnections", {}).n("AppRunnerClient", "ListConnectionsCommand").f(void 0, void 0).ser(se_ListConnectionsCommand).de(de_ListConnectionsCommand).build() {
|
|
2007
|
+
static {
|
|
2008
|
+
__name(this, "ListConnectionsCommand");
|
|
2009
|
+
}
|
|
1970
2010
|
};
|
|
1971
|
-
__name(_ListConnectionsCommand, "ListConnectionsCommand");
|
|
1972
|
-
var ListConnectionsCommand = _ListConnectionsCommand;
|
|
1973
2011
|
|
|
1974
2012
|
// src/commands/ListObservabilityConfigurationsCommand.ts
|
|
1975
2013
|
|
|
1976
2014
|
|
|
1977
2015
|
|
|
1978
|
-
var
|
|
2016
|
+
var ListObservabilityConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1979
2017
|
return [
|
|
1980
2018
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1981
2019
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1982
2020
|
];
|
|
1983
2021
|
}).s("AppRunner", "ListObservabilityConfigurations", {}).n("AppRunnerClient", "ListObservabilityConfigurationsCommand").f(void 0, void 0).ser(se_ListObservabilityConfigurationsCommand).de(de_ListObservabilityConfigurationsCommand).build() {
|
|
2022
|
+
static {
|
|
2023
|
+
__name(this, "ListObservabilityConfigurationsCommand");
|
|
2024
|
+
}
|
|
1984
2025
|
};
|
|
1985
|
-
__name(_ListObservabilityConfigurationsCommand, "ListObservabilityConfigurationsCommand");
|
|
1986
|
-
var ListObservabilityConfigurationsCommand = _ListObservabilityConfigurationsCommand;
|
|
1987
2026
|
|
|
1988
2027
|
// src/commands/ListOperationsCommand.ts
|
|
1989
2028
|
|
|
1990
2029
|
|
|
1991
2030
|
|
|
1992
|
-
var
|
|
2031
|
+
var ListOperationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1993
2032
|
return [
|
|
1994
2033
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1995
2034
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1996
2035
|
];
|
|
1997
2036
|
}).s("AppRunner", "ListOperations", {}).n("AppRunnerClient", "ListOperationsCommand").f(void 0, void 0).ser(se_ListOperationsCommand).de(de_ListOperationsCommand).build() {
|
|
2037
|
+
static {
|
|
2038
|
+
__name(this, "ListOperationsCommand");
|
|
2039
|
+
}
|
|
1998
2040
|
};
|
|
1999
|
-
__name(_ListOperationsCommand, "ListOperationsCommand");
|
|
2000
|
-
var ListOperationsCommand = _ListOperationsCommand;
|
|
2001
2041
|
|
|
2002
2042
|
// src/commands/ListServicesCommand.ts
|
|
2003
2043
|
|
|
2004
2044
|
|
|
2005
2045
|
|
|
2006
|
-
var
|
|
2046
|
+
var ListServicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2007
2047
|
return [
|
|
2008
2048
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2009
2049
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2010
2050
|
];
|
|
2011
2051
|
}).s("AppRunner", "ListServices", {}).n("AppRunnerClient", "ListServicesCommand").f(void 0, void 0).ser(se_ListServicesCommand).de(de_ListServicesCommand).build() {
|
|
2052
|
+
static {
|
|
2053
|
+
__name(this, "ListServicesCommand");
|
|
2054
|
+
}
|
|
2012
2055
|
};
|
|
2013
|
-
__name(_ListServicesCommand, "ListServicesCommand");
|
|
2014
|
-
var ListServicesCommand = _ListServicesCommand;
|
|
2015
2056
|
|
|
2016
2057
|
// src/commands/ListServicesForAutoScalingConfigurationCommand.ts
|
|
2017
2058
|
|
|
2018
2059
|
|
|
2019
2060
|
|
|
2020
|
-
var
|
|
2061
|
+
var ListServicesForAutoScalingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2021
2062
|
return [
|
|
2022
2063
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2023
2064
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2024
2065
|
];
|
|
2025
2066
|
}).s("AppRunner", "ListServicesForAutoScalingConfiguration", {}).n("AppRunnerClient", "ListServicesForAutoScalingConfigurationCommand").f(void 0, void 0).ser(se_ListServicesForAutoScalingConfigurationCommand).de(de_ListServicesForAutoScalingConfigurationCommand).build() {
|
|
2067
|
+
static {
|
|
2068
|
+
__name(this, "ListServicesForAutoScalingConfigurationCommand");
|
|
2069
|
+
}
|
|
2026
2070
|
};
|
|
2027
|
-
__name(_ListServicesForAutoScalingConfigurationCommand, "ListServicesForAutoScalingConfigurationCommand");
|
|
2028
|
-
var ListServicesForAutoScalingConfigurationCommand = _ListServicesForAutoScalingConfigurationCommand;
|
|
2029
2071
|
|
|
2030
2072
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2031
2073
|
|
|
2032
2074
|
|
|
2033
2075
|
|
|
2034
|
-
var
|
|
2076
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2035
2077
|
return [
|
|
2036
2078
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2037
2079
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2038
2080
|
];
|
|
2039
2081
|
}).s("AppRunner", "ListTagsForResource", {}).n("AppRunnerClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2082
|
+
static {
|
|
2083
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2084
|
+
}
|
|
2040
2085
|
};
|
|
2041
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2042
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2043
2086
|
|
|
2044
2087
|
// src/commands/ListVpcConnectorsCommand.ts
|
|
2045
2088
|
|
|
2046
2089
|
|
|
2047
2090
|
|
|
2048
|
-
var
|
|
2091
|
+
var ListVpcConnectorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2049
2092
|
return [
|
|
2050
2093
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2051
2094
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2052
2095
|
];
|
|
2053
2096
|
}).s("AppRunner", "ListVpcConnectors", {}).n("AppRunnerClient", "ListVpcConnectorsCommand").f(void 0, void 0).ser(se_ListVpcConnectorsCommand).de(de_ListVpcConnectorsCommand).build() {
|
|
2097
|
+
static {
|
|
2098
|
+
__name(this, "ListVpcConnectorsCommand");
|
|
2099
|
+
}
|
|
2054
2100
|
};
|
|
2055
|
-
__name(_ListVpcConnectorsCommand, "ListVpcConnectorsCommand");
|
|
2056
|
-
var ListVpcConnectorsCommand = _ListVpcConnectorsCommand;
|
|
2057
2101
|
|
|
2058
2102
|
// src/commands/ListVpcIngressConnectionsCommand.ts
|
|
2059
2103
|
|
|
2060
2104
|
|
|
2061
2105
|
|
|
2062
|
-
var
|
|
2106
|
+
var ListVpcIngressConnectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2063
2107
|
return [
|
|
2064
2108
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2065
2109
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2066
2110
|
];
|
|
2067
2111
|
}).s("AppRunner", "ListVpcIngressConnections", {}).n("AppRunnerClient", "ListVpcIngressConnectionsCommand").f(void 0, void 0).ser(se_ListVpcIngressConnectionsCommand).de(de_ListVpcIngressConnectionsCommand).build() {
|
|
2112
|
+
static {
|
|
2113
|
+
__name(this, "ListVpcIngressConnectionsCommand");
|
|
2114
|
+
}
|
|
2068
2115
|
};
|
|
2069
|
-
__name(_ListVpcIngressConnectionsCommand, "ListVpcIngressConnectionsCommand");
|
|
2070
|
-
var ListVpcIngressConnectionsCommand = _ListVpcIngressConnectionsCommand;
|
|
2071
2116
|
|
|
2072
2117
|
// src/commands/PauseServiceCommand.ts
|
|
2073
2118
|
|
|
2074
2119
|
|
|
2075
2120
|
|
|
2076
|
-
var
|
|
2121
|
+
var PauseServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2077
2122
|
return [
|
|
2078
2123
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2079
2124
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2080
2125
|
];
|
|
2081
2126
|
}).s("AppRunner", "PauseService", {}).n("AppRunnerClient", "PauseServiceCommand").f(void 0, PauseServiceResponseFilterSensitiveLog).ser(se_PauseServiceCommand).de(de_PauseServiceCommand).build() {
|
|
2127
|
+
static {
|
|
2128
|
+
__name(this, "PauseServiceCommand");
|
|
2129
|
+
}
|
|
2082
2130
|
};
|
|
2083
|
-
__name(_PauseServiceCommand, "PauseServiceCommand");
|
|
2084
|
-
var PauseServiceCommand = _PauseServiceCommand;
|
|
2085
2131
|
|
|
2086
2132
|
// src/commands/ResumeServiceCommand.ts
|
|
2087
2133
|
|
|
2088
2134
|
|
|
2089
2135
|
|
|
2090
|
-
var
|
|
2136
|
+
var ResumeServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2091
2137
|
return [
|
|
2092
2138
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2093
2139
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2094
2140
|
];
|
|
2095
2141
|
}).s("AppRunner", "ResumeService", {}).n("AppRunnerClient", "ResumeServiceCommand").f(void 0, ResumeServiceResponseFilterSensitiveLog).ser(se_ResumeServiceCommand).de(de_ResumeServiceCommand).build() {
|
|
2142
|
+
static {
|
|
2143
|
+
__name(this, "ResumeServiceCommand");
|
|
2144
|
+
}
|
|
2096
2145
|
};
|
|
2097
|
-
__name(_ResumeServiceCommand, "ResumeServiceCommand");
|
|
2098
|
-
var ResumeServiceCommand = _ResumeServiceCommand;
|
|
2099
2146
|
|
|
2100
2147
|
// src/commands/StartDeploymentCommand.ts
|
|
2101
2148
|
|
|
2102
2149
|
|
|
2103
2150
|
|
|
2104
|
-
var
|
|
2151
|
+
var StartDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2105
2152
|
return [
|
|
2106
2153
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2107
2154
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2108
2155
|
];
|
|
2109
2156
|
}).s("AppRunner", "StartDeployment", {}).n("AppRunnerClient", "StartDeploymentCommand").f(void 0, void 0).ser(se_StartDeploymentCommand).de(de_StartDeploymentCommand).build() {
|
|
2157
|
+
static {
|
|
2158
|
+
__name(this, "StartDeploymentCommand");
|
|
2159
|
+
}
|
|
2110
2160
|
};
|
|
2111
|
-
__name(_StartDeploymentCommand, "StartDeploymentCommand");
|
|
2112
|
-
var StartDeploymentCommand = _StartDeploymentCommand;
|
|
2113
2161
|
|
|
2114
2162
|
// src/commands/TagResourceCommand.ts
|
|
2115
2163
|
|
|
2116
2164
|
|
|
2117
2165
|
|
|
2118
|
-
var
|
|
2166
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2119
2167
|
return [
|
|
2120
2168
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2121
2169
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2122
2170
|
];
|
|
2123
2171
|
}).s("AppRunner", "TagResource", {}).n("AppRunnerClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2172
|
+
static {
|
|
2173
|
+
__name(this, "TagResourceCommand");
|
|
2174
|
+
}
|
|
2124
2175
|
};
|
|
2125
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2126
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2127
2176
|
|
|
2128
2177
|
// src/commands/UntagResourceCommand.ts
|
|
2129
2178
|
|
|
2130
2179
|
|
|
2131
2180
|
|
|
2132
|
-
var
|
|
2181
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2133
2182
|
return [
|
|
2134
2183
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2135
2184
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2136
2185
|
];
|
|
2137
2186
|
}).s("AppRunner", "UntagResource", {}).n("AppRunnerClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2187
|
+
static {
|
|
2188
|
+
__name(this, "UntagResourceCommand");
|
|
2189
|
+
}
|
|
2138
2190
|
};
|
|
2139
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2140
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2141
2191
|
|
|
2142
2192
|
// src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts
|
|
2143
2193
|
|
|
2144
2194
|
|
|
2145
2195
|
|
|
2146
|
-
var
|
|
2196
|
+
var UpdateDefaultAutoScalingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2147
2197
|
return [
|
|
2148
2198
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2149
2199
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2150
2200
|
];
|
|
2151
2201
|
}).s("AppRunner", "UpdateDefaultAutoScalingConfiguration", {}).n("AppRunnerClient", "UpdateDefaultAutoScalingConfigurationCommand").f(void 0, void 0).ser(se_UpdateDefaultAutoScalingConfigurationCommand).de(de_UpdateDefaultAutoScalingConfigurationCommand).build() {
|
|
2202
|
+
static {
|
|
2203
|
+
__name(this, "UpdateDefaultAutoScalingConfigurationCommand");
|
|
2204
|
+
}
|
|
2152
2205
|
};
|
|
2153
|
-
__name(_UpdateDefaultAutoScalingConfigurationCommand, "UpdateDefaultAutoScalingConfigurationCommand");
|
|
2154
|
-
var UpdateDefaultAutoScalingConfigurationCommand = _UpdateDefaultAutoScalingConfigurationCommand;
|
|
2155
2206
|
|
|
2156
2207
|
// src/commands/UpdateServiceCommand.ts
|
|
2157
2208
|
|
|
2158
2209
|
|
|
2159
2210
|
|
|
2160
|
-
var
|
|
2211
|
+
var UpdateServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2161
2212
|
return [
|
|
2162
2213
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2163
2214
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2164
2215
|
];
|
|
2165
2216
|
}).s("AppRunner", "UpdateService", {}).n("AppRunnerClient", "UpdateServiceCommand").f(UpdateServiceRequestFilterSensitiveLog, UpdateServiceResponseFilterSensitiveLog).ser(se_UpdateServiceCommand).de(de_UpdateServiceCommand).build() {
|
|
2217
|
+
static {
|
|
2218
|
+
__name(this, "UpdateServiceCommand");
|
|
2219
|
+
}
|
|
2166
2220
|
};
|
|
2167
|
-
__name(_UpdateServiceCommand, "UpdateServiceCommand");
|
|
2168
|
-
var UpdateServiceCommand = _UpdateServiceCommand;
|
|
2169
2221
|
|
|
2170
2222
|
// src/commands/UpdateVpcIngressConnectionCommand.ts
|
|
2171
2223
|
|
|
2172
2224
|
|
|
2173
2225
|
|
|
2174
|
-
var
|
|
2226
|
+
var UpdateVpcIngressConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2175
2227
|
return [
|
|
2176
2228
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2177
2229
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2178
2230
|
];
|
|
2179
2231
|
}).s("AppRunner", "UpdateVpcIngressConnection", {}).n("AppRunnerClient", "UpdateVpcIngressConnectionCommand").f(void 0, void 0).ser(se_UpdateVpcIngressConnectionCommand).de(de_UpdateVpcIngressConnectionCommand).build() {
|
|
2232
|
+
static {
|
|
2233
|
+
__name(this, "UpdateVpcIngressConnectionCommand");
|
|
2234
|
+
}
|
|
2180
2235
|
};
|
|
2181
|
-
__name(_UpdateVpcIngressConnectionCommand, "UpdateVpcIngressConnectionCommand");
|
|
2182
|
-
var UpdateVpcIngressConnectionCommand = _UpdateVpcIngressConnectionCommand;
|
|
2183
2236
|
|
|
2184
2237
|
// src/AppRunner.ts
|
|
2185
2238
|
var commands = {
|
|
@@ -2221,10 +2274,11 @@ var commands = {
|
|
|
2221
2274
|
UpdateServiceCommand,
|
|
2222
2275
|
UpdateVpcIngressConnectionCommand
|
|
2223
2276
|
};
|
|
2224
|
-
var
|
|
2277
|
+
var AppRunner = class extends AppRunnerClient {
|
|
2278
|
+
static {
|
|
2279
|
+
__name(this, "AppRunner");
|
|
2280
|
+
}
|
|
2225
2281
|
};
|
|
2226
|
-
__name(_AppRunner, "AppRunner");
|
|
2227
|
-
var AppRunner = _AppRunner;
|
|
2228
2282
|
(0, import_smithy_client.createAggregatedClient)(commands, AppRunner);
|
|
2229
2283
|
|
|
2230
2284
|
// src/pagination/DescribeCustomDomainsPaginator.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 AppRunnerClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -15,40 +15,43 @@ export const CustomDomainAssociationStatus = {
|
|
|
15
15
|
PENDING_CERTIFICATE_DNS_VALIDATION: "PENDING_CERTIFICATE_DNS_VALIDATION",
|
|
16
16
|
};
|
|
17
17
|
export class InternalServiceErrorException extends __BaseException {
|
|
18
|
+
name = "InternalServiceErrorException";
|
|
19
|
+
$fault = "server";
|
|
20
|
+
Message;
|
|
18
21
|
constructor(opts) {
|
|
19
22
|
super({
|
|
20
23
|
name: "InternalServiceErrorException",
|
|
21
24
|
$fault: "server",
|
|
22
25
|
...opts,
|
|
23
26
|
});
|
|
24
|
-
this.name = "InternalServiceErrorException";
|
|
25
|
-
this.$fault = "server";
|
|
26
27
|
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
27
28
|
this.Message = opts.Message;
|
|
28
29
|
}
|
|
29
30
|
}
|
|
30
31
|
export class InvalidRequestException extends __BaseException {
|
|
32
|
+
name = "InvalidRequestException";
|
|
33
|
+
$fault = "client";
|
|
34
|
+
Message;
|
|
31
35
|
constructor(opts) {
|
|
32
36
|
super({
|
|
33
37
|
name: "InvalidRequestException",
|
|
34
38
|
$fault: "client",
|
|
35
39
|
...opts,
|
|
36
40
|
});
|
|
37
|
-
this.name = "InvalidRequestException";
|
|
38
|
-
this.$fault = "client";
|
|
39
41
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
40
42
|
this.Message = opts.Message;
|
|
41
43
|
}
|
|
42
44
|
}
|
|
43
45
|
export class InvalidStateException extends __BaseException {
|
|
46
|
+
name = "InvalidStateException";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
Message;
|
|
44
49
|
constructor(opts) {
|
|
45
50
|
super({
|
|
46
51
|
name: "InvalidStateException",
|
|
47
52
|
$fault: "client",
|
|
48
53
|
...opts,
|
|
49
54
|
});
|
|
50
|
-
this.name = "InvalidStateException";
|
|
51
|
-
this.$fault = "client";
|
|
52
55
|
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
53
56
|
this.Message = opts.Message;
|
|
54
57
|
}
|
|
@@ -58,14 +61,15 @@ export const AutoScalingConfigurationStatus = {
|
|
|
58
61
|
INACTIVE: "INACTIVE",
|
|
59
62
|
};
|
|
60
63
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
64
|
+
name = "ServiceQuotaExceededException";
|
|
65
|
+
$fault = "client";
|
|
66
|
+
Message;
|
|
61
67
|
constructor(opts) {
|
|
62
68
|
super({
|
|
63
69
|
name: "ServiceQuotaExceededException",
|
|
64
70
|
$fault: "client",
|
|
65
71
|
...opts,
|
|
66
72
|
});
|
|
67
|
-
this.name = "ServiceQuotaExceededException";
|
|
68
|
-
this.$fault = "client";
|
|
69
73
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
70
74
|
this.Message = opts.Message;
|
|
71
75
|
}
|
|
@@ -147,14 +151,15 @@ export const VpcIngressConnectionStatus = {
|
|
|
147
151
|
PENDING_UPDATE: "PENDING_UPDATE",
|
|
148
152
|
};
|
|
149
153
|
export class ResourceNotFoundException extends __BaseException {
|
|
154
|
+
name = "ResourceNotFoundException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
150
157
|
constructor(opts) {
|
|
151
158
|
super({
|
|
152
159
|
name: "ResourceNotFoundException",
|
|
153
160
|
$fault: "client",
|
|
154
161
|
...opts,
|
|
155
162
|
});
|
|
156
|
-
this.name = "ResourceNotFoundException";
|
|
157
|
-
this.$fault = "client";
|
|
158
163
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
164
|
this.Message = opts.Message;
|
|
160
165
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
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: AppRunnerClientConfig) => {
|
|
|
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: AppRunnerClientConfig) => {
|
|
|
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: AppRunnerClientConfig) => {
|
|
|
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;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apprunner",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.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-apprunner",
|
|
@@ -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.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.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.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.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": {
|