@aws-sdk/client-snowball 3.43.0 → 3.44.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/CHANGELOG.md +11 -0
- package/README.md +6 -7
- package/dist-cjs/models/models_0.js +9 -2
- package/dist-cjs/protocols/Aws_json1_1.js +20 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +17 -1
- package/dist-types/Snowball.d.ts +31 -32
- package/dist-types/SnowballClient.d.ts +6 -7
- package/dist-types/commands/CreateJobCommand.d.ts +10 -9
- package/dist-types/commands/CreateLongTermPricingCommand.d.ts +1 -2
- package/dist-types/commands/CreateReturnShippingLabelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReturnShippingLabelCommand.d.ts +1 -1
- package/dist-types/commands/GetJobManifestCommand.d.ts +1 -1
- package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +4 -4
- package/dist-types/commands/GetSnowballUsageCommand.d.ts +2 -2
- package/dist-types/commands/GetSoftwareUpdatesCommand.d.ts +1 -1
- package/dist-types/commands/ListCompatibleImagesCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +192 -147
- package/dist-types/ts3.4/models/models_0.d.ts +15 -0
- package/package.json +1 -1
|
@@ -178,9 +178,22 @@ export declare namespace NFSOnDeviceServiceConfiguration {
|
|
|
178
178
|
const filterSensitiveLog: (obj: NFSOnDeviceServiceConfiguration) => any;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
+
export interface TGWOnDeviceServiceConfiguration {
|
|
182
|
+
|
|
183
|
+
StorageLimit?: number;
|
|
184
|
+
|
|
185
|
+
StorageUnit?: StorageUnit | string;
|
|
186
|
+
}
|
|
187
|
+
export declare namespace TGWOnDeviceServiceConfiguration {
|
|
188
|
+
|
|
189
|
+
const filterSensitiveLog: (obj: TGWOnDeviceServiceConfiguration) => any;
|
|
190
|
+
}
|
|
191
|
+
|
|
181
192
|
export interface OnDeviceServiceConfiguration {
|
|
182
193
|
|
|
183
194
|
NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
|
|
195
|
+
|
|
196
|
+
TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
|
|
184
197
|
}
|
|
185
198
|
export declare namespace OnDeviceServiceConfiguration {
|
|
186
199
|
|
|
@@ -775,6 +788,8 @@ export interface DescribeReturnShippingLabelResult {
|
|
|
775
788
|
Status?: ShippingLabelStatus | string;
|
|
776
789
|
|
|
777
790
|
ExpirationDate?: Date;
|
|
791
|
+
|
|
792
|
+
ReturnShippingLabelURI?: string;
|
|
778
793
|
}
|
|
779
794
|
export declare namespace DescribeReturnShippingLabelResult {
|
|
780
795
|
|
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.
|
|
4
|
+
"version": "3.44.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|