@aws-sdk/client-snowball 3.181.0 → 3.183.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/dist-cjs/models/models_0.js +2 -0
- package/dist-cjs/pagination/ListClusterJobsPaginator.js +36 -0
- package/dist-cjs/pagination/ListClustersPaginator.js +36 -0
- package/dist-cjs/pagination/ListCompatibleImagesPaginator.js +36 -0
- package/dist-cjs/pagination/ListLongTermPricingPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +4 -0
- package/dist-es/Snowball.js +102 -109
- package/dist-es/SnowballClient.js +22 -28
- package/dist-es/commands/CancelClusterCommand.js +21 -28
- package/dist-es/commands/CancelJobCommand.js +21 -28
- package/dist-es/commands/CreateAddressCommand.js +21 -28
- package/dist-es/commands/CreateClusterCommand.js +21 -28
- package/dist-es/commands/CreateJobCommand.js +21 -28
- package/dist-es/commands/CreateLongTermPricingCommand.js +21 -28
- package/dist-es/commands/CreateReturnShippingLabelCommand.js +21 -28
- package/dist-es/commands/DescribeAddressCommand.js +21 -28
- package/dist-es/commands/DescribeAddressesCommand.js +21 -28
- package/dist-es/commands/DescribeClusterCommand.js +21 -28
- package/dist-es/commands/DescribeJobCommand.js +21 -28
- package/dist-es/commands/DescribeReturnShippingLabelCommand.js +21 -28
- package/dist-es/commands/GetJobManifestCommand.js +21 -28
- package/dist-es/commands/GetJobUnlockCodeCommand.js +21 -28
- package/dist-es/commands/GetSnowballUsageCommand.js +21 -28
- package/dist-es/commands/GetSoftwareUpdatesCommand.js +21 -28
- package/dist-es/commands/ListClusterJobsCommand.js +21 -28
- package/dist-es/commands/ListClustersCommand.js +21 -28
- package/dist-es/commands/ListCompatibleImagesCommand.js +21 -28
- package/dist-es/commands/ListJobsCommand.js +21 -28
- package/dist-es/commands/ListLongTermPricingCommand.js +21 -28
- package/dist-es/commands/UpdateClusterCommand.js +21 -28
- package/dist-es/commands/UpdateJobCommand.js +21 -28
- package/dist-es/commands/UpdateJobShipmentStateCommand.js +21 -28
- package/dist-es/commands/UpdateLongTermPricingCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SnowballServiceException.js +5 -10
- package/dist-es/models/models_0.js +367 -212
- package/dist-es/pagination/DescribeAddressesPaginator.js +25 -68
- package/dist-es/pagination/ListClusterJobsPaginator.js +32 -0
- package/dist-es/pagination/ListClustersPaginator.js +32 -0
- package/dist-es/pagination/ListCompatibleImagesPaginator.js +32 -0
- package/dist-es/pagination/ListJobsPaginator.js +25 -68
- package/dist-es/pagination/ListLongTermPricingPaginator.js +32 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +1699 -2088
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-types/Snowball.d.ts +21 -4
- package/dist-types/commands/CreateJobCommand.d.ts +14 -1
- package/dist-types/commands/GetJobManifestCommand.d.ts +4 -2
- package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +3 -1
- package/dist-types/models/models_0.d.ts +9 -6
- package/dist-types/pagination/ListClusterJobsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +4 -0
- package/dist-types/pagination/ListCompatibleImagesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListLongTermPricingPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/dist-types/ts3.4/pagination/ListClusterJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCompatibleImagesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListLongTermPricingPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/package.json +33 -33
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
1
|
import packageInfo from "../package.json";
|
|
3
2
|
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
4
3
|
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
|
|
@@ -12,15 +11,30 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
|
|
|
12
11
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
13
12
|
import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
|
|
14
13
|
import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-browser";
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
14
|
+
export const getRuntimeConfig = (config) => {
|
|
15
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
16
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
17
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
18
|
+
return {
|
|
19
|
+
...clientSharedValues,
|
|
20
|
+
...config,
|
|
21
|
+
runtime: "browser",
|
|
22
|
+
defaultsMode,
|
|
23
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
24
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
25
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
26
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
27
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
28
|
+
defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
29
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
30
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
31
|
+
requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider),
|
|
32
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
33
|
+
sha256: config?.sha256 ?? Sha256,
|
|
34
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
35
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
36
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
37
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
38
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
39
|
+
};
|
|
26
40
|
};
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
1
|
import packageInfo from "../package.json";
|
|
3
2
|
import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
|
|
4
3
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
|
|
@@ -15,16 +14,35 @@ import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shar
|
|
|
15
14
|
import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
|
|
16
15
|
import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-node";
|
|
17
16
|
import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
|
|
18
|
-
export
|
|
19
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
17
|
+
export const getRuntimeConfig = (config) => {
|
|
20
18
|
emitWarningIfUnsupportedVersion(process.version);
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
return
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
19
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
20
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
21
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
22
|
+
return {
|
|
23
|
+
...clientSharedValues,
|
|
24
|
+
...config,
|
|
25
|
+
runtime: "node",
|
|
26
|
+
defaultsMode,
|
|
27
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
28
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
29
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
30
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? decorateDefaultCredentialProvider(credentialDefaultProvider),
|
|
31
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
32
|
+
defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
33
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
34
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
35
|
+
requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider),
|
|
36
|
+
retryMode: config?.retryMode ??
|
|
37
|
+
loadNodeConfig({
|
|
38
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
39
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
40
|
+
}),
|
|
41
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
42
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
43
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
44
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
45
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
46
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
47
|
+
};
|
|
30
48
|
};
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
2
1
|
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
3
2
|
import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
|
|
4
|
-
export
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
export const getRuntimeConfig = (config) => {
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
5
|
+
return {
|
|
6
|
+
...browserDefaults,
|
|
7
|
+
...config,
|
|
8
|
+
runtime: "react-native",
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
10
|
+
};
|
|
8
11
|
};
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import { parseUrl } from "@aws-sdk/url-parser";
|
|
2
2
|
import { defaultRegionInfoProvider } from "./endpoints";
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : parseUrl,
|
|
12
|
-
});
|
|
13
|
-
};
|
|
3
|
+
export const getRuntimeConfig = (config) => ({
|
|
4
|
+
apiVersion: "2016-06-30",
|
|
5
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
6
|
+
logger: config?.logger ?? {},
|
|
7
|
+
regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider,
|
|
8
|
+
serviceId: config?.serviceId ?? "Snowball",
|
|
9
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
10
|
+
});
|
package/dist-types/Snowball.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export declare class Snowball extends SnowballClient {
|
|
|
83
83
|
* <p></p>
|
|
84
84
|
*
|
|
85
85
|
* <p class="title">
|
|
86
|
-
* <b>Snow Family
|
|
86
|
+
* <b>Snow Family devices and their capacities.</b>
|
|
87
87
|
* </p>
|
|
88
88
|
* <ul>
|
|
89
89
|
* <li>
|
|
@@ -168,6 +168,19 @@ export declare class Snowball extends SnowballClient {
|
|
|
168
168
|
* <p></p>
|
|
169
169
|
* </li>
|
|
170
170
|
* <li>
|
|
171
|
+
* <p>Device type: <b>V3_5C</b>
|
|
172
|
+
* </p>
|
|
173
|
+
* <ul>
|
|
174
|
+
* <li>
|
|
175
|
+
* <p>Capacity: T32</p>
|
|
176
|
+
* </li>
|
|
177
|
+
* <li>
|
|
178
|
+
* <p>Description: Snowball Edge Compute Optimized without GPU</p>
|
|
179
|
+
* </li>
|
|
180
|
+
* </ul>
|
|
181
|
+
* <p></p>
|
|
182
|
+
* </li>
|
|
183
|
+
* <li>
|
|
171
184
|
* <p>Device type: <b>STANDARD</b>
|
|
172
185
|
* </p>
|
|
173
186
|
* <ul>
|
|
@@ -261,9 +274,11 @@ export declare class Snowball extends SnowballClient {
|
|
|
261
274
|
* you'll have to make another call to the <code>GetJobManifest</code> action.</p>
|
|
262
275
|
*
|
|
263
276
|
* <p>The manifest is an encrypted file that you can download after your job enters the
|
|
264
|
-
* <code>WithCustomer</code> status.
|
|
277
|
+
* <code>WithCustomer</code> status. This is the only valid status for calling this API as the
|
|
278
|
+
* manifest and <code>UnlockCode</code> code value are used for securing your device and should
|
|
279
|
+
* only be used when you have the device. The manifest is decrypted by using the
|
|
265
280
|
* <code>UnlockCode</code> code value, when you pass both values to the Snow device through the
|
|
266
|
-
* Snowball client when the client is started for the first time
|
|
281
|
+
* Snowball client when the client is started for the first time. </p>
|
|
267
282
|
*
|
|
268
283
|
*
|
|
269
284
|
* <p>As a best practice, we recommend that you don't save a copy of an
|
|
@@ -286,7 +301,9 @@ export declare class Snowball extends SnowballClient {
|
|
|
286
301
|
* <p>The <code>UnlockCode</code> value is a 29-character code with 25 alphanumeric
|
|
287
302
|
* characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed
|
|
288
303
|
* along with the manifest to the Snow device through the Snowball client when the client is
|
|
289
|
-
* started for the first time
|
|
304
|
+
* started for the first time. The only valid status for calling this API is
|
|
305
|
+
* <code>WithCustomer</code> as the manifest and <code>Unlock</code> code values are used for
|
|
306
|
+
* securing your device and should only be used when you have the device.</p>
|
|
290
307
|
*
|
|
291
308
|
* <p>As a best practice, we recommend that you don't save a copy of the
|
|
292
309
|
* <code>UnlockCode</code> in the same location as the manifest file for that job. Saving these
|
|
@@ -22,7 +22,7 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
22
22
|
* <p></p>
|
|
23
23
|
*
|
|
24
24
|
* <p class="title">
|
|
25
|
-
* <b>Snow Family
|
|
25
|
+
* <b>Snow Family devices and their capacities.</b>
|
|
26
26
|
* </p>
|
|
27
27
|
* <ul>
|
|
28
28
|
* <li>
|
|
@@ -107,6 +107,19 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
107
107
|
* <p></p>
|
|
108
108
|
* </li>
|
|
109
109
|
* <li>
|
|
110
|
+
* <p>Device type: <b>V3_5C</b>
|
|
111
|
+
* </p>
|
|
112
|
+
* <ul>
|
|
113
|
+
* <li>
|
|
114
|
+
* <p>Capacity: T32</p>
|
|
115
|
+
* </li>
|
|
116
|
+
* <li>
|
|
117
|
+
* <p>Description: Snowball Edge Compute Optimized without GPU</p>
|
|
118
|
+
* </li>
|
|
119
|
+
* </ul>
|
|
120
|
+
* <p></p>
|
|
121
|
+
* </li>
|
|
122
|
+
* <li>
|
|
110
123
|
* <p>Device type: <b>STANDARD</b>
|
|
111
124
|
* </p>
|
|
112
125
|
* <ul>
|
|
@@ -13,9 +13,11 @@ export interface GetJobManifestCommandOutput extends GetJobManifestResult, __Met
|
|
|
13
13
|
* you'll have to make another call to the <code>GetJobManifest</code> action.</p>
|
|
14
14
|
*
|
|
15
15
|
* <p>The manifest is an encrypted file that you can download after your job enters the
|
|
16
|
-
* <code>WithCustomer</code> status.
|
|
16
|
+
* <code>WithCustomer</code> status. This is the only valid status for calling this API as the
|
|
17
|
+
* manifest and <code>UnlockCode</code> code value are used for securing your device and should
|
|
18
|
+
* only be used when you have the device. The manifest is decrypted by using the
|
|
17
19
|
* <code>UnlockCode</code> code value, when you pass both values to the Snow device through the
|
|
18
|
-
* Snowball client when the client is started for the first time
|
|
20
|
+
* Snowball client when the client is started for the first time. </p>
|
|
19
21
|
*
|
|
20
22
|
*
|
|
21
23
|
* <p>As a best practice, we recommend that you don't save a copy of an
|
|
@@ -14,7 +14,9 @@ export interface GetJobUnlockCodeCommandOutput extends GetJobUnlockCodeResult, _
|
|
|
14
14
|
* <p>The <code>UnlockCode</code> value is a 29-character code with 25 alphanumeric
|
|
15
15
|
* characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed
|
|
16
16
|
* along with the manifest to the Snow device through the Snowball client when the client is
|
|
17
|
-
* started for the first time
|
|
17
|
+
* started for the first time. The only valid status for calling this API is
|
|
18
|
+
* <code>WithCustomer</code> as the manifest and <code>Unlock</code> code values are used for
|
|
19
|
+
* securing your device and should only be used when you have the device.</p>
|
|
18
20
|
*
|
|
19
21
|
* <p>As a best practice, we recommend that you don't save a copy of the
|
|
20
22
|
* <code>UnlockCode</code> in the same location as the manifest file for that job. Saving these
|
|
@@ -413,7 +413,8 @@ export declare enum SnowballType {
|
|
|
413
413
|
EDGE_S = "EDGE_S",
|
|
414
414
|
SNC1_HDD = "SNC1_HDD",
|
|
415
415
|
SNC1_SSD = "SNC1_SSD",
|
|
416
|
-
STANDARD = "STANDARD"
|
|
416
|
+
STANDARD = "STANDARD",
|
|
417
|
+
V3_5C = "V3_5C"
|
|
417
418
|
}
|
|
418
419
|
/**
|
|
419
420
|
* <p>The tax documents required in Amazon Web Services Region in India.</p>
|
|
@@ -478,7 +479,7 @@ export interface CreateClusterRequest {
|
|
|
478
479
|
*/
|
|
479
480
|
RoleARN: string | undefined;
|
|
480
481
|
/**
|
|
481
|
-
* <p>The type of Snow Family
|
|
482
|
+
* <p>The type of Snow Family devices to use for this cluster. </p>
|
|
482
483
|
* <note>
|
|
483
484
|
* <p>For cluster jobs, Amazon Web Services Snow Family currently supports only the
|
|
484
485
|
* <code>EDGE</code> device type.</p>
|
|
@@ -634,6 +635,7 @@ export declare enum SnowballCapacity {
|
|
|
634
635
|
NO_PREFERENCE = "NoPreference",
|
|
635
636
|
T100 = "T100",
|
|
636
637
|
T14 = "T14",
|
|
638
|
+
T32 = "T32",
|
|
637
639
|
T42 = "T42",
|
|
638
640
|
T50 = "T50",
|
|
639
641
|
T8 = "T8",
|
|
@@ -735,7 +737,7 @@ export interface CreateJobRequest {
|
|
|
735
737
|
*/
|
|
736
738
|
ClusterId?: string;
|
|
737
739
|
/**
|
|
738
|
-
* <p>The type of Snow Family
|
|
740
|
+
* <p>The type of Snow Family devices to use for this job.
|
|
739
741
|
* </p>
|
|
740
742
|
* <note>
|
|
741
743
|
* <p>For cluster jobs, Amazon Web Services Snow Family currently supports only the
|
|
@@ -802,12 +804,13 @@ export interface CreateLongTermPricingRequest {
|
|
|
802
804
|
*/
|
|
803
805
|
LongTermPricingType: LongTermPricingType | string | undefined;
|
|
804
806
|
/**
|
|
805
|
-
* <p>
|
|
807
|
+
* <p>snowballty</p>
|
|
808
|
+
* <p>Specifies whether the current long-term pricing type for the device should be
|
|
806
809
|
* renewed.</p>
|
|
807
810
|
*/
|
|
808
811
|
IsLongTermPricingAutoRenew?: boolean;
|
|
809
812
|
/**
|
|
810
|
-
* <p>The type of Snow Family
|
|
813
|
+
* <p>The type of Snow Family devices to use for the long-term pricing job.</p>
|
|
811
814
|
*/
|
|
812
815
|
SnowballType?: SnowballType | string;
|
|
813
816
|
}
|
|
@@ -1617,7 +1620,7 @@ export interface LongTermPricingListEntry {
|
|
|
1617
1620
|
*/
|
|
1618
1621
|
LongTermPricingStatus?: string;
|
|
1619
1622
|
/**
|
|
1620
|
-
* <p>The type of Snow Family
|
|
1623
|
+
* <p>The type of Snow Family devices associated with this long-term pricing job.</p>
|
|
1621
1624
|
*/
|
|
1622
1625
|
SnowballType?: SnowballType | string;
|
|
1623
1626
|
/**
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListClusterJobsCommandInput, ListClusterJobsCommandOutput } from "../commands/ListClusterJobsCommand";
|
|
3
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListClusterJobs(config: SnowballPaginationConfiguration, input: ListClusterJobsCommandInput, ...additionalArguments: any): Paginator<ListClusterJobsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
|
|
3
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListClusters(config: SnowballPaginationConfiguration, input: ListClustersCommandInput, ...additionalArguments: any): Paginator<ListClustersCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListCompatibleImagesCommandInput, ListCompatibleImagesCommandOutput } from "../commands/ListCompatibleImagesCommand";
|
|
3
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListCompatibleImages(config: SnowballPaginationConfiguration, input: ListCompatibleImagesCommandInput, ...additionalArguments: any): Paginator<ListCompatibleImagesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListLongTermPricingCommandInput, ListLongTermPricingCommandOutput } from "../commands/ListLongTermPricingCommand";
|
|
3
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListLongTermPricing(config: SnowballPaginationConfiguration, input: ListLongTermPricingCommandInput, ...additionalArguments: any): Paginator<ListLongTermPricingCommandOutput>;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
export * from "./DescribeAddressesPaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListClusterJobsPaginator";
|
|
4
|
+
export * from "./ListClustersPaginator";
|
|
5
|
+
export * from "./ListCompatibleImagesPaginator";
|
|
3
6
|
export * from "./ListJobsPaginator";
|
|
7
|
+
export * from "./ListLongTermPricingPaginator";
|
|
@@ -167,6 +167,7 @@ export declare enum SnowballType {
|
|
|
167
167
|
SNC1_HDD = "SNC1_HDD",
|
|
168
168
|
SNC1_SSD = "SNC1_SSD",
|
|
169
169
|
STANDARD = "STANDARD",
|
|
170
|
+
V3_5C = "V3_5C",
|
|
170
171
|
}
|
|
171
172
|
export interface INDTaxDocuments {
|
|
172
173
|
GSTIN?: string;
|
|
@@ -232,6 +233,7 @@ export declare enum SnowballCapacity {
|
|
|
232
233
|
NO_PREFERENCE = "NoPreference",
|
|
233
234
|
T100 = "T100",
|
|
234
235
|
T14 = "T14",
|
|
236
|
+
T32 = "T32",
|
|
235
237
|
T42 = "T42",
|
|
236
238
|
T50 = "T50",
|
|
237
239
|
T8 = "T8",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListClusterJobsCommandInput,
|
|
4
|
+
ListClusterJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListClusterJobsCommand";
|
|
6
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListClusterJobs(
|
|
8
|
+
config: SnowballPaginationConfiguration,
|
|
9
|
+
input: ListClusterJobsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListClusterJobsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListClustersCommandInput,
|
|
4
|
+
ListClustersCommandOutput,
|
|
5
|
+
} from "../commands/ListClustersCommand";
|
|
6
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListClusters(
|
|
8
|
+
config: SnowballPaginationConfiguration,
|
|
9
|
+
input: ListClustersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListClustersCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCompatibleImagesCommandInput,
|
|
4
|
+
ListCompatibleImagesCommandOutput,
|
|
5
|
+
} from "../commands/ListCompatibleImagesCommand";
|
|
6
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCompatibleImages(
|
|
8
|
+
config: SnowballPaginationConfiguration,
|
|
9
|
+
input: ListCompatibleImagesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCompatibleImagesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLongTermPricingCommandInput,
|
|
4
|
+
ListLongTermPricingCommandOutput,
|
|
5
|
+
} from "../commands/ListLongTermPricingCommand";
|
|
6
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListLongTermPricing(
|
|
8
|
+
config: SnowballPaginationConfiguration,
|
|
9
|
+
input: ListLongTermPricingCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListLongTermPricingCommandOutput>;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
export * from "./DescribeAddressesPaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListClusterJobsPaginator";
|
|
4
|
+
export * from "./ListClustersPaginator";
|
|
5
|
+
export * from "./ListCompatibleImagesPaginator";
|
|
3
6
|
export * from "./ListJobsPaginator";
|
|
7
|
+
export * from "./ListLongTermPricingPaginator";
|
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.183.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",
|
|
@@ -19,41 +19,41 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.183.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.183.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.183.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.183.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.183.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.183.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.183.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.183.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.183.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.183.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.183.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.183.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.183.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.183.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.183.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.183.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.183.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.183.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.183.0",
|
|
41
|
+
"@aws-sdk/types": "3.183.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.183.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.183.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.183.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.183.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.183.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.183.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.183.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.183.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.183.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.183.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.183.0",
|
|
53
53
|
"tslib": "^2.3.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.183.0",
|
|
57
57
|
"@tsconfig/recommended": "1.0.1",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"concurrently": "7.0.0",
|