@aws-sdk/client-outposts 3.496.0 → 3.499.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 CHANGED
@@ -2647,21 +2647,17 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
2647
2647
  // Annotate the CommonJS export names for ESM import in node:
2648
2648
 
2649
2649
  0 && (module.exports = {
2650
- AccessDeniedException,
2651
- AddressType,
2652
- AssetState,
2653
- AssetType,
2650
+ OutpostsServiceException,
2651
+ __Client,
2652
+ OutpostsClient,
2653
+ Outposts,
2654
+ $Command,
2654
2655
  CancelOrderCommand,
2655
- CatalogItemClass,
2656
- CatalogItemStatus,
2657
- ComputeAssetState,
2658
- ConflictException,
2659
2656
  CreateOrderCommand,
2660
2657
  CreateOutpostCommand,
2661
2658
  CreateSiteCommand,
2662
2659
  DeleteOutpostCommand,
2663
2660
  DeleteSiteCommand,
2664
- FiberOpticCableType,
2665
2661
  GetCatalogItemCommand,
2666
2662
  GetConnectionCommand,
2667
2663
  GetOrderCommand,
@@ -2669,49 +2665,54 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
2669
2665
  GetOutpostInstanceTypesCommand,
2670
2666
  GetSiteAddressCommand,
2671
2667
  GetSiteCommand,
2672
- InternalServerException,
2673
- LineItemStatus,
2674
2668
  ListAssetsCommand,
2675
2669
  ListCatalogItemsCommand,
2676
2670
  ListOrdersCommand,
2677
2671
  ListOutpostsCommand,
2678
2672
  ListSitesCommand,
2679
2673
  ListTagsForResourceCommand,
2680
- MaximumSupportedWeightLbs,
2681
- NotFoundException,
2682
- OpticalStandard,
2683
- OrderStatus,
2684
- OrderType,
2685
- Outposts,
2686
- OutpostsClient,
2687
- OutpostsServiceException,
2688
- PaymentOption,
2689
- PaymentTerm,
2690
- PowerConnector,
2691
- PowerDrawKva,
2692
- PowerFeedDrop,
2693
- PowerPhase,
2694
- ResourceType,
2695
- ServiceQuotaExceededException,
2696
- ShipmentCarrier,
2697
2674
  StartConnectionCommand,
2698
- SupportedHardwareType,
2699
- SupportedStorageEnum,
2700
2675
  TagResourceCommand,
2701
2676
  UntagResourceCommand,
2702
2677
  UpdateOutpostCommand,
2703
2678
  UpdateSiteAddressCommand,
2704
2679
  UpdateSiteCommand,
2705
2680
  UpdateSiteRackPhysicalPropertiesCommand,
2706
- UplinkCount,
2707
- UplinkGbps,
2708
- ValidationException,
2709
- __Client,
2710
2681
  paginateGetOutpostInstanceTypes,
2711
2682
  paginateListAssets,
2712
2683
  paginateListCatalogItems,
2713
2684
  paginateListOrders,
2714
2685
  paginateListOutposts,
2715
- paginateListSites
2686
+ paginateListSites,
2687
+ AccessDeniedException,
2688
+ AddressType,
2689
+ AssetType,
2690
+ ComputeAssetState,
2691
+ AssetState,
2692
+ ResourceType,
2693
+ ConflictException,
2694
+ InternalServerException,
2695
+ NotFoundException,
2696
+ ValidationException,
2697
+ CatalogItemStatus,
2698
+ SupportedStorageEnum,
2699
+ CatalogItemClass,
2700
+ PaymentOption,
2701
+ PaymentTerm,
2702
+ ShipmentCarrier,
2703
+ LineItemStatus,
2704
+ OrderType,
2705
+ OrderStatus,
2706
+ ServiceQuotaExceededException,
2707
+ SupportedHardwareType,
2708
+ FiberOpticCableType,
2709
+ MaximumSupportedWeightLbs,
2710
+ OpticalStandard,
2711
+ PowerConnector,
2712
+ PowerDrawKva,
2713
+ PowerFeedDrop,
2714
+ PowerPhase,
2715
+ UplinkCount,
2716
+ UplinkGbps
2716
2717
  });
2717
2718
 
@@ -44,7 +44,7 @@ declare const StartConnectionCommand_base: {
44
44
  * // const { OutpostsClient, StartConnectionCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
45
45
  * const client = new OutpostsClient(config);
46
46
  * const input = { // StartConnectionRequest
47
- * DeviceSerialNumber: "STRING_VALUE", // required
47
+ * DeviceSerialNumber: "STRING_VALUE",
48
48
  * AssetId: "STRING_VALUE", // required
49
49
  * ClientPublicKey: "STRING_VALUE", // required
50
50
  * NetworkInterfaceDeviceIndex: Number("int"), // required
@@ -1717,7 +1717,7 @@ export interface StartConnectionRequest {
1717
1717
  * @public
1718
1718
  * <p> The serial number of the dongle. </p>
1719
1719
  */
1720
- DeviceSerialNumber: string | undefined;
1720
+ DeviceSerialNumber?: string;
1721
1721
  /**
1722
1722
  * @public
1723
1723
  * <p> The ID of the Outpost server. </p>
@@ -513,7 +513,7 @@ export interface ListTagsForResourceResponse {
513
513
  Tags?: Record<string, string>;
514
514
  }
515
515
  export interface StartConnectionRequest {
516
- DeviceSerialNumber: string | undefined;
516
+ DeviceSerialNumber?: string;
517
517
  AssetId: string | undefined;
518
518
  ClientPublicKey: string | undefined;
519
519
  NetworkInterfaceDeviceIndex: number | undefined;
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.496.0",
4
+ "version": "3.499.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,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.496.0",
23
+ "@aws-sdk/client-sts": "3.499.0",
24
24
  "@aws-sdk/core": "3.496.0",
25
- "@aws-sdk/credential-provider-node": "3.496.0",
25
+ "@aws-sdk/credential-provider-node": "3.499.0",
26
26
  "@aws-sdk/middleware-host-header": "3.496.0",
27
27
  "@aws-sdk/middleware-logger": "3.496.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.496.0",