@aws-sdk/client-snowball 3.372.0 → 3.377.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.
@@ -74,6 +74,32 @@ export interface ListPickupLocationsCommandOutput extends ListPickupLocationsRes
74
74
  * @throws {@link SnowballServiceException}
75
75
  * <p>Base exception class for all service exceptions from Snowball service.</p>
76
76
  *
77
+ * @example To get a list of locations from which the customer can choose to pickup a device.
78
+ * ```javascript
79
+ * // Returns a specified number of Address objects. Each Address is a pickup location address for Snow Family devices.
80
+ * const input = {};
81
+ * const command = new ListPickupLocationsCommand(input);
82
+ * const response = await client.send(command);
83
+ * /* response ==
84
+ * {
85
+ * "Addresses": [
86
+ * {
87
+ * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b",
88
+ * "City": "Seattle",
89
+ * "Company": "My Company",
90
+ * "Country": "US",
91
+ * "Name": "My Name",
92
+ * "PhoneNumber": "425-555-5555",
93
+ * "PostalCode": "98101",
94
+ * "StateOrProvince": "WA",
95
+ * "Street1": "123 Main Street"
96
+ * }
97
+ * ]
98
+ * }
99
+ * *\/
100
+ * // example id: to-get-a-list-of-locations-from-which-the-customer-can-choose-to-pickup-a-device-1482542167627
101
+ * ```
102
+ *
77
103
  */
78
104
  export declare class ListPickupLocationsCommand extends $Command<ListPickupLocationsCommandInput, ListPickupLocationsCommandOutput, SnowballClientResolvedConfig> {
79
105
  readonly input: ListPickupLocationsCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-snowball",
3
3
  "description": "AWS SDK for JavaScript Snowball Client for Node.js, Browser and React Native",
4
- "version": "3.372.0",
4
+ "version": "3.377.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.370.0",
24
+ "@aws-sdk/client-sts": "3.377.0",
25
25
  "@aws-sdk/credential-provider-node": "3.370.0",
26
26
  "@aws-sdk/middleware-host-header": "3.370.0",
27
27
  "@aws-sdk/middleware-logger": "3.370.0",