@aws-sdk/client-outposts 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 +201 -139
- package/dist-es/OutpostsClient.js +1 -0
- package/dist-es/models/models_0.js +20 -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
|
@@ -201,7 +201,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
201
201
|
}, "resolveRuntimeExtensions");
|
|
202
202
|
|
|
203
203
|
// src/OutpostsClient.ts
|
|
204
|
-
var
|
|
204
|
+
var OutpostsClient = class extends import_smithy_client.Client {
|
|
205
|
+
static {
|
|
206
|
+
__name(this, "OutpostsClient");
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* The resolved configuration of OutpostsClient class. This is resolved and normalized from the {@link OutpostsClientConfig | constructor configuration interface}.
|
|
210
|
+
*/
|
|
211
|
+
config;
|
|
205
212
|
constructor(...[configuration]) {
|
|
206
213
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
207
214
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -211,7 +218,7 @@ var _OutpostsClient = class _OutpostsClient extends import_smithy_client.Client
|
|
|
211
218
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
212
219
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
213
220
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
214
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
221
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
215
222
|
super(_config_8);
|
|
216
223
|
this.config = _config_8;
|
|
217
224
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -239,8 +246,6 @@ var _OutpostsClient = class _OutpostsClient extends import_smithy_client.Client
|
|
|
239
246
|
super.destroy();
|
|
240
247
|
}
|
|
241
248
|
};
|
|
242
|
-
__name(_OutpostsClient, "OutpostsClient");
|
|
243
|
-
var OutpostsClient = _OutpostsClient;
|
|
244
249
|
|
|
245
250
|
// src/Outposts.ts
|
|
246
251
|
|
|
@@ -257,7 +262,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
257
262
|
|
|
258
263
|
// src/models/OutpostsServiceException.ts
|
|
259
264
|
|
|
260
|
-
var
|
|
265
|
+
var OutpostsServiceException = class _OutpostsServiceException extends import_smithy_client.ServiceException {
|
|
266
|
+
static {
|
|
267
|
+
__name(this, "OutpostsServiceException");
|
|
268
|
+
}
|
|
261
269
|
/**
|
|
262
270
|
* @internal
|
|
263
271
|
*/
|
|
@@ -266,11 +274,15 @@ var _OutpostsServiceException = class _OutpostsServiceException extends import_s
|
|
|
266
274
|
Object.setPrototypeOf(this, _OutpostsServiceException.prototype);
|
|
267
275
|
}
|
|
268
276
|
};
|
|
269
|
-
__name(_OutpostsServiceException, "OutpostsServiceException");
|
|
270
|
-
var OutpostsServiceException = _OutpostsServiceException;
|
|
271
277
|
|
|
272
278
|
// src/models/models_0.ts
|
|
273
|
-
var
|
|
279
|
+
var AccessDeniedException = class _AccessDeniedException extends OutpostsServiceException {
|
|
280
|
+
static {
|
|
281
|
+
__name(this, "AccessDeniedException");
|
|
282
|
+
}
|
|
283
|
+
name = "AccessDeniedException";
|
|
284
|
+
$fault = "client";
|
|
285
|
+
Message;
|
|
274
286
|
/**
|
|
275
287
|
* @internal
|
|
276
288
|
*/
|
|
@@ -280,14 +292,10 @@ var _AccessDeniedException = class _AccessDeniedException extends OutpostsServic
|
|
|
280
292
|
$fault: "client",
|
|
281
293
|
...opts
|
|
282
294
|
});
|
|
283
|
-
this.name = "AccessDeniedException";
|
|
284
|
-
this.$fault = "client";
|
|
285
295
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
286
296
|
this.Message = opts.Message;
|
|
287
297
|
}
|
|
288
298
|
};
|
|
289
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
290
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
291
299
|
var AddressType = {
|
|
292
300
|
OPERATING_ADDRESS: "OPERATING_ADDRESS",
|
|
293
301
|
SHIPPING_ADDRESS: "SHIPPING_ADDRESS"
|
|
@@ -317,7 +325,23 @@ var ResourceType = {
|
|
|
317
325
|
ORDER: "ORDER",
|
|
318
326
|
OUTPOST: "OUTPOST"
|
|
319
327
|
};
|
|
320
|
-
var
|
|
328
|
+
var ConflictException = class _ConflictException extends OutpostsServiceException {
|
|
329
|
+
static {
|
|
330
|
+
__name(this, "ConflictException");
|
|
331
|
+
}
|
|
332
|
+
name = "ConflictException";
|
|
333
|
+
$fault = "client";
|
|
334
|
+
Message;
|
|
335
|
+
/**
|
|
336
|
+
* <p>The ID of the resource causing the conflict.</p>
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
339
|
+
ResourceId;
|
|
340
|
+
/**
|
|
341
|
+
* <p>The type of the resource causing the conflict.</p>
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
344
|
+
ResourceType;
|
|
321
345
|
/**
|
|
322
346
|
* @internal
|
|
323
347
|
*/
|
|
@@ -327,17 +351,19 @@ var _ConflictException = class _ConflictException extends OutpostsServiceExcepti
|
|
|
327
351
|
$fault: "client",
|
|
328
352
|
...opts
|
|
329
353
|
});
|
|
330
|
-
this.name = "ConflictException";
|
|
331
|
-
this.$fault = "client";
|
|
332
354
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
333
355
|
this.Message = opts.Message;
|
|
334
356
|
this.ResourceId = opts.ResourceId;
|
|
335
357
|
this.ResourceType = opts.ResourceType;
|
|
336
358
|
}
|
|
337
359
|
};
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
360
|
+
var InternalServerException = class _InternalServerException extends OutpostsServiceException {
|
|
361
|
+
static {
|
|
362
|
+
__name(this, "InternalServerException");
|
|
363
|
+
}
|
|
364
|
+
name = "InternalServerException";
|
|
365
|
+
$fault = "server";
|
|
366
|
+
Message;
|
|
341
367
|
/**
|
|
342
368
|
* @internal
|
|
343
369
|
*/
|
|
@@ -347,15 +373,17 @@ var _InternalServerException = class _InternalServerException extends OutpostsSe
|
|
|
347
373
|
$fault: "server",
|
|
348
374
|
...opts
|
|
349
375
|
});
|
|
350
|
-
this.name = "InternalServerException";
|
|
351
|
-
this.$fault = "server";
|
|
352
376
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
353
377
|
this.Message = opts.Message;
|
|
354
378
|
}
|
|
355
379
|
};
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
380
|
+
var NotFoundException = class _NotFoundException extends OutpostsServiceException {
|
|
381
|
+
static {
|
|
382
|
+
__name(this, "NotFoundException");
|
|
383
|
+
}
|
|
384
|
+
name = "NotFoundException";
|
|
385
|
+
$fault = "client";
|
|
386
|
+
Message;
|
|
359
387
|
/**
|
|
360
388
|
* @internal
|
|
361
389
|
*/
|
|
@@ -365,15 +393,17 @@ var _NotFoundException = class _NotFoundException extends OutpostsServiceExcepti
|
|
|
365
393
|
$fault: "client",
|
|
366
394
|
...opts
|
|
367
395
|
});
|
|
368
|
-
this.name = "NotFoundException";
|
|
369
|
-
this.$fault = "client";
|
|
370
396
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
371
397
|
this.Message = opts.Message;
|
|
372
398
|
}
|
|
373
399
|
};
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
400
|
+
var ValidationException = class _ValidationException extends OutpostsServiceException {
|
|
401
|
+
static {
|
|
402
|
+
__name(this, "ValidationException");
|
|
403
|
+
}
|
|
404
|
+
name = "ValidationException";
|
|
405
|
+
$fault = "client";
|
|
406
|
+
Message;
|
|
377
407
|
/**
|
|
378
408
|
* @internal
|
|
379
409
|
*/
|
|
@@ -383,14 +413,10 @@ var _ValidationException = class _ValidationException extends OutpostsServiceExc
|
|
|
383
413
|
$fault: "client",
|
|
384
414
|
...opts
|
|
385
415
|
});
|
|
386
|
-
this.name = "ValidationException";
|
|
387
|
-
this.$fault = "client";
|
|
388
416
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
389
417
|
this.Message = opts.Message;
|
|
390
418
|
}
|
|
391
419
|
};
|
|
392
|
-
__name(_ValidationException, "ValidationException");
|
|
393
|
-
var ValidationException = _ValidationException;
|
|
394
420
|
var CapacityTaskFailureType = {
|
|
395
421
|
BLOCKING_INSTANCES_NOT_EVACUATED: "BLOCKING_INSTANCES_NOT_EVACUATED",
|
|
396
422
|
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
@@ -464,7 +490,13 @@ var OrderStatus = {
|
|
|
464
490
|
PROCESSING: "PROCESSING",
|
|
465
491
|
RECEIVED: "RECEIVED"
|
|
466
492
|
};
|
|
467
|
-
var
|
|
493
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends OutpostsServiceException {
|
|
494
|
+
static {
|
|
495
|
+
__name(this, "ServiceQuotaExceededException");
|
|
496
|
+
}
|
|
497
|
+
name = "ServiceQuotaExceededException";
|
|
498
|
+
$fault = "client";
|
|
499
|
+
Message;
|
|
468
500
|
/**
|
|
469
501
|
* @internal
|
|
470
502
|
*/
|
|
@@ -474,14 +506,10 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
474
506
|
$fault: "client",
|
|
475
507
|
...opts
|
|
476
508
|
});
|
|
477
|
-
this.name = "ServiceQuotaExceededException";
|
|
478
|
-
this.$fault = "client";
|
|
479
509
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
480
510
|
this.Message = opts.Message;
|
|
481
511
|
}
|
|
482
512
|
};
|
|
483
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
484
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
485
513
|
var SupportedHardwareType = {
|
|
486
514
|
RACK: "RACK",
|
|
487
515
|
SERVER: "SERVER"
|
|
@@ -1725,463 +1753,496 @@ var _TK = "TagKeys";
|
|
|
1725
1753
|
var _tK = "tagKeys";
|
|
1726
1754
|
|
|
1727
1755
|
// src/commands/CancelCapacityTaskCommand.ts
|
|
1728
|
-
var
|
|
1756
|
+
var CancelCapacityTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1729
1757
|
return [
|
|
1730
1758
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1731
1759
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1732
1760
|
];
|
|
1733
1761
|
}).s("OutpostsOlafService", "CancelCapacityTask", {}).n("OutpostsClient", "CancelCapacityTaskCommand").f(void 0, void 0).ser(se_CancelCapacityTaskCommand).de(de_CancelCapacityTaskCommand).build() {
|
|
1762
|
+
static {
|
|
1763
|
+
__name(this, "CancelCapacityTaskCommand");
|
|
1764
|
+
}
|
|
1734
1765
|
};
|
|
1735
|
-
__name(_CancelCapacityTaskCommand, "CancelCapacityTaskCommand");
|
|
1736
|
-
var CancelCapacityTaskCommand = _CancelCapacityTaskCommand;
|
|
1737
1766
|
|
|
1738
1767
|
// src/commands/CancelOrderCommand.ts
|
|
1739
1768
|
|
|
1740
1769
|
|
|
1741
1770
|
|
|
1742
|
-
var
|
|
1771
|
+
var CancelOrderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1743
1772
|
return [
|
|
1744
1773
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1745
1774
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1746
1775
|
];
|
|
1747
1776
|
}).s("OutpostsOlafService", "CancelOrder", {}).n("OutpostsClient", "CancelOrderCommand").f(void 0, void 0).ser(se_CancelOrderCommand).de(de_CancelOrderCommand).build() {
|
|
1777
|
+
static {
|
|
1778
|
+
__name(this, "CancelOrderCommand");
|
|
1779
|
+
}
|
|
1748
1780
|
};
|
|
1749
|
-
__name(_CancelOrderCommand, "CancelOrderCommand");
|
|
1750
|
-
var CancelOrderCommand = _CancelOrderCommand;
|
|
1751
1781
|
|
|
1752
1782
|
// src/commands/CreateOrderCommand.ts
|
|
1753
1783
|
|
|
1754
1784
|
|
|
1755
1785
|
|
|
1756
|
-
var
|
|
1786
|
+
var CreateOrderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1757
1787
|
return [
|
|
1758
1788
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1759
1789
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1760
1790
|
];
|
|
1761
1791
|
}).s("OutpostsOlafService", "CreateOrder", {}).n("OutpostsClient", "CreateOrderCommand").f(void 0, void 0).ser(se_CreateOrderCommand).de(de_CreateOrderCommand).build() {
|
|
1792
|
+
static {
|
|
1793
|
+
__name(this, "CreateOrderCommand");
|
|
1794
|
+
}
|
|
1762
1795
|
};
|
|
1763
|
-
__name(_CreateOrderCommand, "CreateOrderCommand");
|
|
1764
|
-
var CreateOrderCommand = _CreateOrderCommand;
|
|
1765
1796
|
|
|
1766
1797
|
// src/commands/CreateOutpostCommand.ts
|
|
1767
1798
|
|
|
1768
1799
|
|
|
1769
1800
|
|
|
1770
|
-
var
|
|
1801
|
+
var CreateOutpostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1771
1802
|
return [
|
|
1772
1803
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1773
1804
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1774
1805
|
];
|
|
1775
1806
|
}).s("OutpostsOlafService", "CreateOutpost", {}).n("OutpostsClient", "CreateOutpostCommand").f(void 0, void 0).ser(se_CreateOutpostCommand).de(de_CreateOutpostCommand).build() {
|
|
1807
|
+
static {
|
|
1808
|
+
__name(this, "CreateOutpostCommand");
|
|
1809
|
+
}
|
|
1776
1810
|
};
|
|
1777
|
-
__name(_CreateOutpostCommand, "CreateOutpostCommand");
|
|
1778
|
-
var CreateOutpostCommand = _CreateOutpostCommand;
|
|
1779
1811
|
|
|
1780
1812
|
// src/commands/CreateSiteCommand.ts
|
|
1781
1813
|
|
|
1782
1814
|
|
|
1783
1815
|
|
|
1784
|
-
var
|
|
1816
|
+
var CreateSiteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1785
1817
|
return [
|
|
1786
1818
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1787
1819
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1788
1820
|
];
|
|
1789
1821
|
}).s("OutpostsOlafService", "CreateSite", {}).n("OutpostsClient", "CreateSiteCommand").f(void 0, void 0).ser(se_CreateSiteCommand).de(de_CreateSiteCommand).build() {
|
|
1822
|
+
static {
|
|
1823
|
+
__name(this, "CreateSiteCommand");
|
|
1824
|
+
}
|
|
1790
1825
|
};
|
|
1791
|
-
__name(_CreateSiteCommand, "CreateSiteCommand");
|
|
1792
|
-
var CreateSiteCommand = _CreateSiteCommand;
|
|
1793
1826
|
|
|
1794
1827
|
// src/commands/DeleteOutpostCommand.ts
|
|
1795
1828
|
|
|
1796
1829
|
|
|
1797
1830
|
|
|
1798
|
-
var
|
|
1831
|
+
var DeleteOutpostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1799
1832
|
return [
|
|
1800
1833
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1801
1834
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1802
1835
|
];
|
|
1803
1836
|
}).s("OutpostsOlafService", "DeleteOutpost", {}).n("OutpostsClient", "DeleteOutpostCommand").f(void 0, void 0).ser(se_DeleteOutpostCommand).de(de_DeleteOutpostCommand).build() {
|
|
1837
|
+
static {
|
|
1838
|
+
__name(this, "DeleteOutpostCommand");
|
|
1839
|
+
}
|
|
1804
1840
|
};
|
|
1805
|
-
__name(_DeleteOutpostCommand, "DeleteOutpostCommand");
|
|
1806
|
-
var DeleteOutpostCommand = _DeleteOutpostCommand;
|
|
1807
1841
|
|
|
1808
1842
|
// src/commands/DeleteSiteCommand.ts
|
|
1809
1843
|
|
|
1810
1844
|
|
|
1811
1845
|
|
|
1812
|
-
var
|
|
1846
|
+
var DeleteSiteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1813
1847
|
return [
|
|
1814
1848
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1815
1849
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1816
1850
|
];
|
|
1817
1851
|
}).s("OutpostsOlafService", "DeleteSite", {}).n("OutpostsClient", "DeleteSiteCommand").f(void 0, void 0).ser(se_DeleteSiteCommand).de(de_DeleteSiteCommand).build() {
|
|
1852
|
+
static {
|
|
1853
|
+
__name(this, "DeleteSiteCommand");
|
|
1854
|
+
}
|
|
1818
1855
|
};
|
|
1819
|
-
__name(_DeleteSiteCommand, "DeleteSiteCommand");
|
|
1820
|
-
var DeleteSiteCommand = _DeleteSiteCommand;
|
|
1821
1856
|
|
|
1822
1857
|
// src/commands/GetCapacityTaskCommand.ts
|
|
1823
1858
|
|
|
1824
1859
|
|
|
1825
1860
|
|
|
1826
|
-
var
|
|
1861
|
+
var GetCapacityTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1827
1862
|
return [
|
|
1828
1863
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1829
1864
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1830
1865
|
];
|
|
1831
1866
|
}).s("OutpostsOlafService", "GetCapacityTask", {}).n("OutpostsClient", "GetCapacityTaskCommand").f(void 0, void 0).ser(se_GetCapacityTaskCommand).de(de_GetCapacityTaskCommand).build() {
|
|
1867
|
+
static {
|
|
1868
|
+
__name(this, "GetCapacityTaskCommand");
|
|
1869
|
+
}
|
|
1832
1870
|
};
|
|
1833
|
-
__name(_GetCapacityTaskCommand, "GetCapacityTaskCommand");
|
|
1834
|
-
var GetCapacityTaskCommand = _GetCapacityTaskCommand;
|
|
1835
1871
|
|
|
1836
1872
|
// src/commands/GetCatalogItemCommand.ts
|
|
1837
1873
|
|
|
1838
1874
|
|
|
1839
1875
|
|
|
1840
|
-
var
|
|
1876
|
+
var GetCatalogItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1841
1877
|
return [
|
|
1842
1878
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1843
1879
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1844
1880
|
];
|
|
1845
1881
|
}).s("OutpostsOlafService", "GetCatalogItem", {}).n("OutpostsClient", "GetCatalogItemCommand").f(void 0, void 0).ser(se_GetCatalogItemCommand).de(de_GetCatalogItemCommand).build() {
|
|
1882
|
+
static {
|
|
1883
|
+
__name(this, "GetCatalogItemCommand");
|
|
1884
|
+
}
|
|
1846
1885
|
};
|
|
1847
|
-
__name(_GetCatalogItemCommand, "GetCatalogItemCommand");
|
|
1848
|
-
var GetCatalogItemCommand = _GetCatalogItemCommand;
|
|
1849
1886
|
|
|
1850
1887
|
// src/commands/GetConnectionCommand.ts
|
|
1851
1888
|
|
|
1852
1889
|
|
|
1853
1890
|
|
|
1854
|
-
var
|
|
1891
|
+
var GetConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1855
1892
|
return [
|
|
1856
1893
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1857
1894
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1858
1895
|
];
|
|
1859
1896
|
}).s("OutpostsOlafService", "GetConnection", {}).n("OutpostsClient", "GetConnectionCommand").f(void 0, void 0).ser(se_GetConnectionCommand).de(de_GetConnectionCommand).build() {
|
|
1897
|
+
static {
|
|
1898
|
+
__name(this, "GetConnectionCommand");
|
|
1899
|
+
}
|
|
1860
1900
|
};
|
|
1861
|
-
__name(_GetConnectionCommand, "GetConnectionCommand");
|
|
1862
|
-
var GetConnectionCommand = _GetConnectionCommand;
|
|
1863
1901
|
|
|
1864
1902
|
// src/commands/GetOrderCommand.ts
|
|
1865
1903
|
|
|
1866
1904
|
|
|
1867
1905
|
|
|
1868
|
-
var
|
|
1906
|
+
var GetOrderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1869
1907
|
return [
|
|
1870
1908
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1871
1909
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1872
1910
|
];
|
|
1873
1911
|
}).s("OutpostsOlafService", "GetOrder", {}).n("OutpostsClient", "GetOrderCommand").f(void 0, void 0).ser(se_GetOrderCommand).de(de_GetOrderCommand).build() {
|
|
1912
|
+
static {
|
|
1913
|
+
__name(this, "GetOrderCommand");
|
|
1914
|
+
}
|
|
1874
1915
|
};
|
|
1875
|
-
__name(_GetOrderCommand, "GetOrderCommand");
|
|
1876
|
-
var GetOrderCommand = _GetOrderCommand;
|
|
1877
1916
|
|
|
1878
1917
|
// src/commands/GetOutpostCommand.ts
|
|
1879
1918
|
|
|
1880
1919
|
|
|
1881
1920
|
|
|
1882
|
-
var
|
|
1921
|
+
var GetOutpostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1883
1922
|
return [
|
|
1884
1923
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1885
1924
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1886
1925
|
];
|
|
1887
1926
|
}).s("OutpostsOlafService", "GetOutpost", {}).n("OutpostsClient", "GetOutpostCommand").f(void 0, void 0).ser(se_GetOutpostCommand).de(de_GetOutpostCommand).build() {
|
|
1927
|
+
static {
|
|
1928
|
+
__name(this, "GetOutpostCommand");
|
|
1929
|
+
}
|
|
1888
1930
|
};
|
|
1889
|
-
__name(_GetOutpostCommand, "GetOutpostCommand");
|
|
1890
|
-
var GetOutpostCommand = _GetOutpostCommand;
|
|
1891
1931
|
|
|
1892
1932
|
// src/commands/GetOutpostInstanceTypesCommand.ts
|
|
1893
1933
|
|
|
1894
1934
|
|
|
1895
1935
|
|
|
1896
|
-
var
|
|
1936
|
+
var GetOutpostInstanceTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1897
1937
|
return [
|
|
1898
1938
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1899
1939
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1900
1940
|
];
|
|
1901
1941
|
}).s("OutpostsOlafService", "GetOutpostInstanceTypes", {}).n("OutpostsClient", "GetOutpostInstanceTypesCommand").f(void 0, void 0).ser(se_GetOutpostInstanceTypesCommand).de(de_GetOutpostInstanceTypesCommand).build() {
|
|
1942
|
+
static {
|
|
1943
|
+
__name(this, "GetOutpostInstanceTypesCommand");
|
|
1944
|
+
}
|
|
1902
1945
|
};
|
|
1903
|
-
__name(_GetOutpostInstanceTypesCommand, "GetOutpostInstanceTypesCommand");
|
|
1904
|
-
var GetOutpostInstanceTypesCommand = _GetOutpostInstanceTypesCommand;
|
|
1905
1946
|
|
|
1906
1947
|
// src/commands/GetOutpostSupportedInstanceTypesCommand.ts
|
|
1907
1948
|
|
|
1908
1949
|
|
|
1909
1950
|
|
|
1910
|
-
var
|
|
1951
|
+
var GetOutpostSupportedInstanceTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1911
1952
|
return [
|
|
1912
1953
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1913
1954
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1914
1955
|
];
|
|
1915
1956
|
}).s("OutpostsOlafService", "GetOutpostSupportedInstanceTypes", {}).n("OutpostsClient", "GetOutpostSupportedInstanceTypesCommand").f(void 0, void 0).ser(se_GetOutpostSupportedInstanceTypesCommand).de(de_GetOutpostSupportedInstanceTypesCommand).build() {
|
|
1957
|
+
static {
|
|
1958
|
+
__name(this, "GetOutpostSupportedInstanceTypesCommand");
|
|
1959
|
+
}
|
|
1916
1960
|
};
|
|
1917
|
-
__name(_GetOutpostSupportedInstanceTypesCommand, "GetOutpostSupportedInstanceTypesCommand");
|
|
1918
|
-
var GetOutpostSupportedInstanceTypesCommand = _GetOutpostSupportedInstanceTypesCommand;
|
|
1919
1961
|
|
|
1920
1962
|
// src/commands/GetSiteAddressCommand.ts
|
|
1921
1963
|
|
|
1922
1964
|
|
|
1923
1965
|
|
|
1924
|
-
var
|
|
1966
|
+
var GetSiteAddressCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1925
1967
|
return [
|
|
1926
1968
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1927
1969
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1928
1970
|
];
|
|
1929
1971
|
}).s("OutpostsOlafService", "GetSiteAddress", {}).n("OutpostsClient", "GetSiteAddressCommand").f(void 0, void 0).ser(se_GetSiteAddressCommand).de(de_GetSiteAddressCommand).build() {
|
|
1972
|
+
static {
|
|
1973
|
+
__name(this, "GetSiteAddressCommand");
|
|
1974
|
+
}
|
|
1930
1975
|
};
|
|
1931
|
-
__name(_GetSiteAddressCommand, "GetSiteAddressCommand");
|
|
1932
|
-
var GetSiteAddressCommand = _GetSiteAddressCommand;
|
|
1933
1976
|
|
|
1934
1977
|
// src/commands/GetSiteCommand.ts
|
|
1935
1978
|
|
|
1936
1979
|
|
|
1937
1980
|
|
|
1938
|
-
var
|
|
1981
|
+
var GetSiteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1939
1982
|
return [
|
|
1940
1983
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1941
1984
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1942
1985
|
];
|
|
1943
1986
|
}).s("OutpostsOlafService", "GetSite", {}).n("OutpostsClient", "GetSiteCommand").f(void 0, void 0).ser(se_GetSiteCommand).de(de_GetSiteCommand).build() {
|
|
1987
|
+
static {
|
|
1988
|
+
__name(this, "GetSiteCommand");
|
|
1989
|
+
}
|
|
1944
1990
|
};
|
|
1945
|
-
__name(_GetSiteCommand, "GetSiteCommand");
|
|
1946
|
-
var GetSiteCommand = _GetSiteCommand;
|
|
1947
1991
|
|
|
1948
1992
|
// src/commands/ListAssetInstancesCommand.ts
|
|
1949
1993
|
|
|
1950
1994
|
|
|
1951
1995
|
|
|
1952
|
-
var
|
|
1996
|
+
var ListAssetInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1953
1997
|
return [
|
|
1954
1998
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1955
1999
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1956
2000
|
];
|
|
1957
2001
|
}).s("OutpostsOlafService", "ListAssetInstances", {}).n("OutpostsClient", "ListAssetInstancesCommand").f(void 0, void 0).ser(se_ListAssetInstancesCommand).de(de_ListAssetInstancesCommand).build() {
|
|
2002
|
+
static {
|
|
2003
|
+
__name(this, "ListAssetInstancesCommand");
|
|
2004
|
+
}
|
|
1958
2005
|
};
|
|
1959
|
-
__name(_ListAssetInstancesCommand, "ListAssetInstancesCommand");
|
|
1960
|
-
var ListAssetInstancesCommand = _ListAssetInstancesCommand;
|
|
1961
2006
|
|
|
1962
2007
|
// src/commands/ListAssetsCommand.ts
|
|
1963
2008
|
|
|
1964
2009
|
|
|
1965
2010
|
|
|
1966
|
-
var
|
|
2011
|
+
var ListAssetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1967
2012
|
return [
|
|
1968
2013
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1969
2014
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1970
2015
|
];
|
|
1971
2016
|
}).s("OutpostsOlafService", "ListAssets", {}).n("OutpostsClient", "ListAssetsCommand").f(void 0, void 0).ser(se_ListAssetsCommand).de(de_ListAssetsCommand).build() {
|
|
2017
|
+
static {
|
|
2018
|
+
__name(this, "ListAssetsCommand");
|
|
2019
|
+
}
|
|
1972
2020
|
};
|
|
1973
|
-
__name(_ListAssetsCommand, "ListAssetsCommand");
|
|
1974
|
-
var ListAssetsCommand = _ListAssetsCommand;
|
|
1975
2021
|
|
|
1976
2022
|
// src/commands/ListBlockingInstancesForCapacityTaskCommand.ts
|
|
1977
2023
|
|
|
1978
2024
|
|
|
1979
2025
|
|
|
1980
|
-
var
|
|
2026
|
+
var ListBlockingInstancesForCapacityTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1981
2027
|
return [
|
|
1982
2028
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1983
2029
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1984
2030
|
];
|
|
1985
2031
|
}).s("OutpostsOlafService", "ListBlockingInstancesForCapacityTask", {}).n("OutpostsClient", "ListBlockingInstancesForCapacityTaskCommand").f(void 0, void 0).ser(se_ListBlockingInstancesForCapacityTaskCommand).de(de_ListBlockingInstancesForCapacityTaskCommand).build() {
|
|
2032
|
+
static {
|
|
2033
|
+
__name(this, "ListBlockingInstancesForCapacityTaskCommand");
|
|
2034
|
+
}
|
|
1986
2035
|
};
|
|
1987
|
-
__name(_ListBlockingInstancesForCapacityTaskCommand, "ListBlockingInstancesForCapacityTaskCommand");
|
|
1988
|
-
var ListBlockingInstancesForCapacityTaskCommand = _ListBlockingInstancesForCapacityTaskCommand;
|
|
1989
2036
|
|
|
1990
2037
|
// src/commands/ListCapacityTasksCommand.ts
|
|
1991
2038
|
|
|
1992
2039
|
|
|
1993
2040
|
|
|
1994
|
-
var
|
|
2041
|
+
var ListCapacityTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1995
2042
|
return [
|
|
1996
2043
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1997
2044
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1998
2045
|
];
|
|
1999
2046
|
}).s("OutpostsOlafService", "ListCapacityTasks", {}).n("OutpostsClient", "ListCapacityTasksCommand").f(void 0, void 0).ser(se_ListCapacityTasksCommand).de(de_ListCapacityTasksCommand).build() {
|
|
2047
|
+
static {
|
|
2048
|
+
__name(this, "ListCapacityTasksCommand");
|
|
2049
|
+
}
|
|
2000
2050
|
};
|
|
2001
|
-
__name(_ListCapacityTasksCommand, "ListCapacityTasksCommand");
|
|
2002
|
-
var ListCapacityTasksCommand = _ListCapacityTasksCommand;
|
|
2003
2051
|
|
|
2004
2052
|
// src/commands/ListCatalogItemsCommand.ts
|
|
2005
2053
|
|
|
2006
2054
|
|
|
2007
2055
|
|
|
2008
|
-
var
|
|
2056
|
+
var ListCatalogItemsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2009
2057
|
return [
|
|
2010
2058
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2011
2059
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2012
2060
|
];
|
|
2013
2061
|
}).s("OutpostsOlafService", "ListCatalogItems", {}).n("OutpostsClient", "ListCatalogItemsCommand").f(void 0, void 0).ser(se_ListCatalogItemsCommand).de(de_ListCatalogItemsCommand).build() {
|
|
2062
|
+
static {
|
|
2063
|
+
__name(this, "ListCatalogItemsCommand");
|
|
2064
|
+
}
|
|
2014
2065
|
};
|
|
2015
|
-
__name(_ListCatalogItemsCommand, "ListCatalogItemsCommand");
|
|
2016
|
-
var ListCatalogItemsCommand = _ListCatalogItemsCommand;
|
|
2017
2066
|
|
|
2018
2067
|
// src/commands/ListOrdersCommand.ts
|
|
2019
2068
|
|
|
2020
2069
|
|
|
2021
2070
|
|
|
2022
|
-
var
|
|
2071
|
+
var ListOrdersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2023
2072
|
return [
|
|
2024
2073
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2025
2074
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2026
2075
|
];
|
|
2027
2076
|
}).s("OutpostsOlafService", "ListOrders", {}).n("OutpostsClient", "ListOrdersCommand").f(void 0, void 0).ser(se_ListOrdersCommand).de(de_ListOrdersCommand).build() {
|
|
2077
|
+
static {
|
|
2078
|
+
__name(this, "ListOrdersCommand");
|
|
2079
|
+
}
|
|
2028
2080
|
};
|
|
2029
|
-
__name(_ListOrdersCommand, "ListOrdersCommand");
|
|
2030
|
-
var ListOrdersCommand = _ListOrdersCommand;
|
|
2031
2081
|
|
|
2032
2082
|
// src/commands/ListOutpostsCommand.ts
|
|
2033
2083
|
|
|
2034
2084
|
|
|
2035
2085
|
|
|
2036
|
-
var
|
|
2086
|
+
var ListOutpostsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2037
2087
|
return [
|
|
2038
2088
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2039
2089
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2040
2090
|
];
|
|
2041
2091
|
}).s("OutpostsOlafService", "ListOutposts", {}).n("OutpostsClient", "ListOutpostsCommand").f(void 0, void 0).ser(se_ListOutpostsCommand).de(de_ListOutpostsCommand).build() {
|
|
2092
|
+
static {
|
|
2093
|
+
__name(this, "ListOutpostsCommand");
|
|
2094
|
+
}
|
|
2042
2095
|
};
|
|
2043
|
-
__name(_ListOutpostsCommand, "ListOutpostsCommand");
|
|
2044
|
-
var ListOutpostsCommand = _ListOutpostsCommand;
|
|
2045
2096
|
|
|
2046
2097
|
// src/commands/ListSitesCommand.ts
|
|
2047
2098
|
|
|
2048
2099
|
|
|
2049
2100
|
|
|
2050
|
-
var
|
|
2101
|
+
var ListSitesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2051
2102
|
return [
|
|
2052
2103
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2053
2104
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2054
2105
|
];
|
|
2055
2106
|
}).s("OutpostsOlafService", "ListSites", {}).n("OutpostsClient", "ListSitesCommand").f(void 0, void 0).ser(se_ListSitesCommand).de(de_ListSitesCommand).build() {
|
|
2107
|
+
static {
|
|
2108
|
+
__name(this, "ListSitesCommand");
|
|
2109
|
+
}
|
|
2056
2110
|
};
|
|
2057
|
-
__name(_ListSitesCommand, "ListSitesCommand");
|
|
2058
|
-
var ListSitesCommand = _ListSitesCommand;
|
|
2059
2111
|
|
|
2060
2112
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2061
2113
|
|
|
2062
2114
|
|
|
2063
2115
|
|
|
2064
|
-
var
|
|
2116
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2065
2117
|
return [
|
|
2066
2118
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2067
2119
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2068
2120
|
];
|
|
2069
2121
|
}).s("OutpostsOlafService", "ListTagsForResource", {}).n("OutpostsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2122
|
+
static {
|
|
2123
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2124
|
+
}
|
|
2070
2125
|
};
|
|
2071
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2072
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2073
2126
|
|
|
2074
2127
|
// src/commands/StartCapacityTaskCommand.ts
|
|
2075
2128
|
|
|
2076
2129
|
|
|
2077
2130
|
|
|
2078
|
-
var
|
|
2131
|
+
var StartCapacityTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2079
2132
|
return [
|
|
2080
2133
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2081
2134
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2082
2135
|
];
|
|
2083
2136
|
}).s("OutpostsOlafService", "StartCapacityTask", {}).n("OutpostsClient", "StartCapacityTaskCommand").f(void 0, void 0).ser(se_StartCapacityTaskCommand).de(de_StartCapacityTaskCommand).build() {
|
|
2137
|
+
static {
|
|
2138
|
+
__name(this, "StartCapacityTaskCommand");
|
|
2139
|
+
}
|
|
2084
2140
|
};
|
|
2085
|
-
__name(_StartCapacityTaskCommand, "StartCapacityTaskCommand");
|
|
2086
|
-
var StartCapacityTaskCommand = _StartCapacityTaskCommand;
|
|
2087
2141
|
|
|
2088
2142
|
// src/commands/StartConnectionCommand.ts
|
|
2089
2143
|
|
|
2090
2144
|
|
|
2091
2145
|
|
|
2092
|
-
var
|
|
2146
|
+
var StartConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2093
2147
|
return [
|
|
2094
2148
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2095
2149
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2096
2150
|
];
|
|
2097
2151
|
}).s("OutpostsOlafService", "StartConnection", {}).n("OutpostsClient", "StartConnectionCommand").f(void 0, void 0).ser(se_StartConnectionCommand).de(de_StartConnectionCommand).build() {
|
|
2152
|
+
static {
|
|
2153
|
+
__name(this, "StartConnectionCommand");
|
|
2154
|
+
}
|
|
2098
2155
|
};
|
|
2099
|
-
__name(_StartConnectionCommand, "StartConnectionCommand");
|
|
2100
|
-
var StartConnectionCommand = _StartConnectionCommand;
|
|
2101
2156
|
|
|
2102
2157
|
// src/commands/TagResourceCommand.ts
|
|
2103
2158
|
|
|
2104
2159
|
|
|
2105
2160
|
|
|
2106
|
-
var
|
|
2161
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2107
2162
|
return [
|
|
2108
2163
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2109
2164
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2110
2165
|
];
|
|
2111
2166
|
}).s("OutpostsOlafService", "TagResource", {}).n("OutpostsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2167
|
+
static {
|
|
2168
|
+
__name(this, "TagResourceCommand");
|
|
2169
|
+
}
|
|
2112
2170
|
};
|
|
2113
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2114
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2115
2171
|
|
|
2116
2172
|
// src/commands/UntagResourceCommand.ts
|
|
2117
2173
|
|
|
2118
2174
|
|
|
2119
2175
|
|
|
2120
|
-
var
|
|
2176
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2121
2177
|
return [
|
|
2122
2178
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2123
2179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2124
2180
|
];
|
|
2125
2181
|
}).s("OutpostsOlafService", "UntagResource", {}).n("OutpostsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2182
|
+
static {
|
|
2183
|
+
__name(this, "UntagResourceCommand");
|
|
2184
|
+
}
|
|
2126
2185
|
};
|
|
2127
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2128
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2129
2186
|
|
|
2130
2187
|
// src/commands/UpdateOutpostCommand.ts
|
|
2131
2188
|
|
|
2132
2189
|
|
|
2133
2190
|
|
|
2134
|
-
var
|
|
2191
|
+
var UpdateOutpostCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2135
2192
|
return [
|
|
2136
2193
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2137
2194
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2138
2195
|
];
|
|
2139
2196
|
}).s("OutpostsOlafService", "UpdateOutpost", {}).n("OutpostsClient", "UpdateOutpostCommand").f(void 0, void 0).ser(se_UpdateOutpostCommand).de(de_UpdateOutpostCommand).build() {
|
|
2197
|
+
static {
|
|
2198
|
+
__name(this, "UpdateOutpostCommand");
|
|
2199
|
+
}
|
|
2140
2200
|
};
|
|
2141
|
-
__name(_UpdateOutpostCommand, "UpdateOutpostCommand");
|
|
2142
|
-
var UpdateOutpostCommand = _UpdateOutpostCommand;
|
|
2143
2201
|
|
|
2144
2202
|
// src/commands/UpdateSiteAddressCommand.ts
|
|
2145
2203
|
|
|
2146
2204
|
|
|
2147
2205
|
|
|
2148
|
-
var
|
|
2206
|
+
var UpdateSiteAddressCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2149
2207
|
return [
|
|
2150
2208
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2151
2209
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2152
2210
|
];
|
|
2153
2211
|
}).s("OutpostsOlafService", "UpdateSiteAddress", {}).n("OutpostsClient", "UpdateSiteAddressCommand").f(void 0, void 0).ser(se_UpdateSiteAddressCommand).de(de_UpdateSiteAddressCommand).build() {
|
|
2212
|
+
static {
|
|
2213
|
+
__name(this, "UpdateSiteAddressCommand");
|
|
2214
|
+
}
|
|
2154
2215
|
};
|
|
2155
|
-
__name(_UpdateSiteAddressCommand, "UpdateSiteAddressCommand");
|
|
2156
|
-
var UpdateSiteAddressCommand = _UpdateSiteAddressCommand;
|
|
2157
2216
|
|
|
2158
2217
|
// src/commands/UpdateSiteCommand.ts
|
|
2159
2218
|
|
|
2160
2219
|
|
|
2161
2220
|
|
|
2162
|
-
var
|
|
2221
|
+
var UpdateSiteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2163
2222
|
return [
|
|
2164
2223
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2165
2224
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2166
2225
|
];
|
|
2167
2226
|
}).s("OutpostsOlafService", "UpdateSite", {}).n("OutpostsClient", "UpdateSiteCommand").f(void 0, void 0).ser(se_UpdateSiteCommand).de(de_UpdateSiteCommand).build() {
|
|
2227
|
+
static {
|
|
2228
|
+
__name(this, "UpdateSiteCommand");
|
|
2229
|
+
}
|
|
2168
2230
|
};
|
|
2169
|
-
__name(_UpdateSiteCommand, "UpdateSiteCommand");
|
|
2170
|
-
var UpdateSiteCommand = _UpdateSiteCommand;
|
|
2171
2231
|
|
|
2172
2232
|
// src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts
|
|
2173
2233
|
|
|
2174
2234
|
|
|
2175
2235
|
|
|
2176
|
-
var
|
|
2236
|
+
var UpdateSiteRackPhysicalPropertiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2177
2237
|
return [
|
|
2178
2238
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2179
2239
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2180
2240
|
];
|
|
2181
2241
|
}).s("OutpostsOlafService", "UpdateSiteRackPhysicalProperties", {}).n("OutpostsClient", "UpdateSiteRackPhysicalPropertiesCommand").f(void 0, void 0).ser(se_UpdateSiteRackPhysicalPropertiesCommand).de(de_UpdateSiteRackPhysicalPropertiesCommand).build() {
|
|
2242
|
+
static {
|
|
2243
|
+
__name(this, "UpdateSiteRackPhysicalPropertiesCommand");
|
|
2244
|
+
}
|
|
2182
2245
|
};
|
|
2183
|
-
__name(_UpdateSiteRackPhysicalPropertiesCommand, "UpdateSiteRackPhysicalPropertiesCommand");
|
|
2184
|
-
var UpdateSiteRackPhysicalPropertiesCommand = _UpdateSiteRackPhysicalPropertiesCommand;
|
|
2185
2246
|
|
|
2186
2247
|
// src/Outposts.ts
|
|
2187
2248
|
var commands = {
|
|
@@ -2219,10 +2280,11 @@ var commands = {
|
|
|
2219
2280
|
UpdateSiteAddressCommand,
|
|
2220
2281
|
UpdateSiteRackPhysicalPropertiesCommand
|
|
2221
2282
|
};
|
|
2222
|
-
var
|
|
2283
|
+
var Outposts = class extends OutpostsClient {
|
|
2284
|
+
static {
|
|
2285
|
+
__name(this, "Outposts");
|
|
2286
|
+
}
|
|
2223
2287
|
};
|
|
2224
|
-
__name(_Outposts, "Outposts");
|
|
2225
|
-
var Outposts = _Outposts;
|
|
2226
2288
|
(0, import_smithy_client.createAggregatedClient)(commands, Outposts);
|
|
2227
2289
|
|
|
2228
2290
|
// src/pagination/GetOutpostInstanceTypesPaginator.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 OutpostsClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { OutpostsServiceException as __BaseException } from "./OutpostsServiceException";
|
|
2
2
|
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
3
6
|
constructor(opts) {
|
|
4
7
|
super({
|
|
5
8
|
name: "AccessDeniedException",
|
|
6
9
|
$fault: "client",
|
|
7
10
|
...opts,
|
|
8
11
|
});
|
|
9
|
-
this.name = "AccessDeniedException";
|
|
10
|
-
this.$fault = "client";
|
|
11
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
13
|
this.Message = opts.Message;
|
|
13
14
|
}
|
|
@@ -42,14 +43,17 @@ export const ResourceType = {
|
|
|
42
43
|
OUTPOST: "OUTPOST",
|
|
43
44
|
};
|
|
44
45
|
export class ConflictException extends __BaseException {
|
|
46
|
+
name = "ConflictException";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
Message;
|
|
49
|
+
ResourceId;
|
|
50
|
+
ResourceType;
|
|
45
51
|
constructor(opts) {
|
|
46
52
|
super({
|
|
47
53
|
name: "ConflictException",
|
|
48
54
|
$fault: "client",
|
|
49
55
|
...opts,
|
|
50
56
|
});
|
|
51
|
-
this.name = "ConflictException";
|
|
52
|
-
this.$fault = "client";
|
|
53
57
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
54
58
|
this.Message = opts.Message;
|
|
55
59
|
this.ResourceId = opts.ResourceId;
|
|
@@ -57,40 +61,43 @@ export class ConflictException extends __BaseException {
|
|
|
57
61
|
}
|
|
58
62
|
}
|
|
59
63
|
export class InternalServerException extends __BaseException {
|
|
64
|
+
name = "InternalServerException";
|
|
65
|
+
$fault = "server";
|
|
66
|
+
Message;
|
|
60
67
|
constructor(opts) {
|
|
61
68
|
super({
|
|
62
69
|
name: "InternalServerException",
|
|
63
70
|
$fault: "server",
|
|
64
71
|
...opts,
|
|
65
72
|
});
|
|
66
|
-
this.name = "InternalServerException";
|
|
67
|
-
this.$fault = "server";
|
|
68
73
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
69
74
|
this.Message = opts.Message;
|
|
70
75
|
}
|
|
71
76
|
}
|
|
72
77
|
export class NotFoundException extends __BaseException {
|
|
78
|
+
name = "NotFoundException";
|
|
79
|
+
$fault = "client";
|
|
80
|
+
Message;
|
|
73
81
|
constructor(opts) {
|
|
74
82
|
super({
|
|
75
83
|
name: "NotFoundException",
|
|
76
84
|
$fault: "client",
|
|
77
85
|
...opts,
|
|
78
86
|
});
|
|
79
|
-
this.name = "NotFoundException";
|
|
80
|
-
this.$fault = "client";
|
|
81
87
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
82
88
|
this.Message = opts.Message;
|
|
83
89
|
}
|
|
84
90
|
}
|
|
85
91
|
export class ValidationException extends __BaseException {
|
|
92
|
+
name = "ValidationException";
|
|
93
|
+
$fault = "client";
|
|
94
|
+
Message;
|
|
86
95
|
constructor(opts) {
|
|
87
96
|
super({
|
|
88
97
|
name: "ValidationException",
|
|
89
98
|
$fault: "client",
|
|
90
99
|
...opts,
|
|
91
100
|
});
|
|
92
|
-
this.name = "ValidationException";
|
|
93
|
-
this.$fault = "client";
|
|
94
101
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
95
102
|
this.Message = opts.Message;
|
|
96
103
|
}
|
|
@@ -169,14 +176,15 @@ export const OrderStatus = {
|
|
|
169
176
|
RECEIVED: "RECEIVED",
|
|
170
177
|
};
|
|
171
178
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
179
|
+
name = "ServiceQuotaExceededException";
|
|
180
|
+
$fault = "client";
|
|
181
|
+
Message;
|
|
172
182
|
constructor(opts) {
|
|
173
183
|
super({
|
|
174
184
|
name: "ServiceQuotaExceededException",
|
|
175
185
|
$fault: "client",
|
|
176
186
|
...opts,
|
|
177
187
|
});
|
|
178
|
-
this.name = "ServiceQuotaExceededException";
|
|
179
|
-
this.$fault = "client";
|
|
180
188
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
181
189
|
this.Message = opts.Message;
|
|
182
190
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
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: OutpostsClientConfig) => {
|
|
|
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: OutpostsClientConfig) => {
|
|
|
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: OutpostsClientConfig) => {
|
|
|
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: OutpostsClientConfig) => {
|
|
|
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: OutpostsClientConfig) => {
|
|
|
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: OutpostsClientConfig) => {
|
|
|
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: OutpostsClientConfig) => {
|
|
|
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-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts 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-outposts",
|
|
@@ -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": {
|