@aws-sdk/client-storage-gateway 3.47.2 → 3.51.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 +35 -0
- package/dist-types/StorageGateway.d.ts +16 -12
- package/dist-types/commands/DeleteBandwidthRateLimitCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBandwidthRateLimitCommand.d.ts +7 -6
- package/dist-types/commands/DescribeBandwidthRateLimitScheduleCommand.d.ts +2 -1
- package/dist-types/commands/UpdateBandwidthRateLimitCommand.d.ts +3 -2
- package/dist-types/commands/UpdateBandwidthRateLimitScheduleCommand.d.ts +2 -1
- package/package.json +39 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-storage-gateway
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-storage-gateway
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/client-storage-gateway
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
* **clients:** update clients as of 2022/01/21 ([#3228](https://github.com/aws/aws-sdk-js-v3/issues/3228)) ([fa713ef](https://github.com/aws/aws-sdk-js-v3/commit/fa713efca6b2f424c27535d000359f08830960b1))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @aws-sdk/client-storage-gateway
|
|
@@ -477,8 +477,8 @@ export declare class StorageGateway extends StorageGatewayClient {
|
|
|
477
477
|
* <p>Deletes the bandwidth rate limits of a gateway. You can delete either the upload and
|
|
478
478
|
* download bandwidth rate limit, or you can delete both. If you delete only one of the
|
|
479
479
|
* limits, the other limit remains unchanged. To specify which gateway to work with, use the
|
|
480
|
-
* Amazon Resource Name (ARN) of the gateway in your request. This operation is supported
|
|
481
|
-
* the stored volume, cached volume and tape gateway types.</p>
|
|
480
|
+
* Amazon Resource Name (ARN) of the gateway in your request. This operation is supported only
|
|
481
|
+
* for the stored volume, cached volume, and tape gateway types.</p>
|
|
482
482
|
*/
|
|
483
483
|
deleteBandwidthRateLimit(args: DeleteBandwidthRateLimitCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBandwidthRateLimitCommandOutput>;
|
|
484
484
|
deleteBandwidthRateLimit(args: DeleteBandwidthRateLimitCommandInput, cb: (err: any, data?: DeleteBandwidthRateLimitCommandOutput) => void): void;
|
|
@@ -591,13 +591,14 @@ export declare class StorageGateway extends StorageGatewayClient {
|
|
|
591
591
|
describeAvailabilityMonitorTest(args: DescribeAvailabilityMonitorTestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAvailabilityMonitorTestCommandOutput) => void): void;
|
|
592
592
|
/**
|
|
593
593
|
* <p>Returns the bandwidth rate limits of a gateway. By default, these limits are not set,
|
|
594
|
-
* which means no bandwidth rate limiting is in effect. This operation is supported for
|
|
595
|
-
* stored volume, cached volume, and tape gateway types
|
|
594
|
+
* which means no bandwidth rate limiting is in effect. This operation is supported only for
|
|
595
|
+
* the stored volume, cached volume, and tape gateway types. To describe bandwidth rate limits
|
|
596
|
+
* for S3 file gateways, use <a>DescribeBandwidthRateLimitSchedule</a>.</p>
|
|
596
597
|
*
|
|
597
|
-
* <p>This operation
|
|
598
|
-
*
|
|
599
|
-
*
|
|
600
|
-
*
|
|
598
|
+
* <p>This operation returns a value for a bandwidth rate limit only if the limit is set. If
|
|
599
|
+
* no limits are set for the gateway, then this operation returns only the gateway ARN in the
|
|
600
|
+
* response body. To specify which gateway to describe, use the Amazon Resource Name (ARN) of
|
|
601
|
+
* the gateway in your request.</p>
|
|
601
602
|
*/
|
|
602
603
|
describeBandwidthRateLimit(args: DescribeBandwidthRateLimitCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBandwidthRateLimitCommandOutput>;
|
|
603
604
|
describeBandwidthRateLimit(args: DescribeBandwidthRateLimitCommandInput, cb: (err: any, data?: DescribeBandwidthRateLimitCommandOutput) => void): void;
|
|
@@ -605,7 +606,8 @@ export declare class StorageGateway extends StorageGatewayClient {
|
|
|
605
606
|
/**
|
|
606
607
|
* <p> Returns information about the bandwidth rate limit schedule of a gateway. By default,
|
|
607
608
|
* gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting
|
|
608
|
-
* is in effect. This operation is supported only
|
|
609
|
+
* is in effect. This operation is supported only for volume, tape and S3 file gateways. FSx
|
|
610
|
+
* file gateways do not support bandwidth rate limits.</p>
|
|
609
611
|
*
|
|
610
612
|
* <p>This operation returns information about a gateway's bandwidth rate limit schedule. A
|
|
611
613
|
* bandwidth rate limit schedule consists of one or more bandwidth rate limit intervals. A
|
|
@@ -1146,8 +1148,9 @@ export declare class StorageGateway extends StorageGatewayClient {
|
|
|
1146
1148
|
/**
|
|
1147
1149
|
* <p>Updates the bandwidth rate limits of a gateway. You can update both the upload and
|
|
1148
1150
|
* download bandwidth rate limit or specify only one of the two. If you don't set a
|
|
1149
|
-
* bandwidth rate limit, the existing rate limit remains. This operation is supported for
|
|
1150
|
-
* stored volume, cached volume, and tape gateway types
|
|
1151
|
+
* bandwidth rate limit, the existing rate limit remains. This operation is supported only for
|
|
1152
|
+
* the stored volume, cached volume, and tape gateway types. To update bandwidth rate limits
|
|
1153
|
+
* for S3 file gateways, use <a>UpdateBandwidthRateLimitSchedule</a>.</p>
|
|
1151
1154
|
*
|
|
1152
1155
|
* <p>By default, a gateway's bandwidth rate limits are not set. If you don't set
|
|
1153
1156
|
* any limit, the gateway does not have any limitations on its bandwidth usage and could
|
|
@@ -1163,7 +1166,8 @@ export declare class StorageGateway extends StorageGatewayClient {
|
|
|
1163
1166
|
* <p> Updates the bandwidth rate limit schedule for a specified gateway. By default, gateways
|
|
1164
1167
|
* do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in
|
|
1165
1168
|
* effect. Use this to initiate or update a gateway's bandwidth rate limit schedule. This
|
|
1166
|
-
* operation is supported
|
|
1169
|
+
* operation is supported only for volume, tape and S3 file gateways. FSx file gateways do not
|
|
1170
|
+
* support bandwidth rate limits.</p>
|
|
1167
1171
|
*/
|
|
1168
1172
|
updateBandwidthRateLimitSchedule(args: UpdateBandwidthRateLimitScheduleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBandwidthRateLimitScheduleCommandOutput>;
|
|
1169
1173
|
updateBandwidthRateLimitSchedule(args: UpdateBandwidthRateLimitScheduleCommandInput, cb: (err: any, data?: UpdateBandwidthRateLimitScheduleCommandOutput) => void): void;
|
|
@@ -10,8 +10,8 @@ export interface DeleteBandwidthRateLimitCommandOutput extends DeleteBandwidthRa
|
|
|
10
10
|
* <p>Deletes the bandwidth rate limits of a gateway. You can delete either the upload and
|
|
11
11
|
* download bandwidth rate limit, or you can delete both. If you delete only one of the
|
|
12
12
|
* limits, the other limit remains unchanged. To specify which gateway to work with, use the
|
|
13
|
-
* Amazon Resource Name (ARN) of the gateway in your request. This operation is supported
|
|
14
|
-
* the stored volume, cached volume and tape gateway types.</p>
|
|
13
|
+
* Amazon Resource Name (ARN) of the gateway in your request. This operation is supported only
|
|
14
|
+
* for the stored volume, cached volume, and tape gateway types.</p>
|
|
15
15
|
* @example
|
|
16
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
17
17
|
* ```javascript
|
|
@@ -8,13 +8,14 @@ export interface DescribeBandwidthRateLimitCommandOutput extends DescribeBandwid
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Returns the bandwidth rate limits of a gateway. By default, these limits are not set,
|
|
11
|
-
* which means no bandwidth rate limiting is in effect. This operation is supported for
|
|
12
|
-
* stored volume, cached volume, and tape gateway types
|
|
11
|
+
* which means no bandwidth rate limiting is in effect. This operation is supported only for
|
|
12
|
+
* the stored volume, cached volume, and tape gateway types. To describe bandwidth rate limits
|
|
13
|
+
* for S3 file gateways, use <a>DescribeBandwidthRateLimitSchedule</a>.</p>
|
|
13
14
|
*
|
|
14
|
-
* <p>This operation
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
15
|
+
* <p>This operation returns a value for a bandwidth rate limit only if the limit is set. If
|
|
16
|
+
* no limits are set for the gateway, then this operation returns only the gateway ARN in the
|
|
17
|
+
* response body. To specify which gateway to describe, use the Amazon Resource Name (ARN) of
|
|
18
|
+
* the gateway in your request.</p>
|
|
18
19
|
* @example
|
|
19
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
20
21
|
* ```javascript
|
|
@@ -9,7 +9,8 @@ export interface DescribeBandwidthRateLimitScheduleCommandOutput extends Describ
|
|
|
9
9
|
/**
|
|
10
10
|
* <p> Returns information about the bandwidth rate limit schedule of a gateway. By default,
|
|
11
11
|
* gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting
|
|
12
|
-
* is in effect. This operation is supported only
|
|
12
|
+
* is in effect. This operation is supported only for volume, tape and S3 file gateways. FSx
|
|
13
|
+
* file gateways do not support bandwidth rate limits.</p>
|
|
13
14
|
*
|
|
14
15
|
* <p>This operation returns information about a gateway's bandwidth rate limit schedule. A
|
|
15
16
|
* bandwidth rate limit schedule consists of one or more bandwidth rate limit intervals. A
|
|
@@ -9,8 +9,9 @@ export interface UpdateBandwidthRateLimitCommandOutput extends UpdateBandwidthRa
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Updates the bandwidth rate limits of a gateway. You can update both the upload and
|
|
11
11
|
* download bandwidth rate limit or specify only one of the two. If you don't set a
|
|
12
|
-
* bandwidth rate limit, the existing rate limit remains. This operation is supported for
|
|
13
|
-
* stored volume, cached volume, and tape gateway types
|
|
12
|
+
* bandwidth rate limit, the existing rate limit remains. This operation is supported only for
|
|
13
|
+
* the stored volume, cached volume, and tape gateway types. To update bandwidth rate limits
|
|
14
|
+
* for S3 file gateways, use <a>UpdateBandwidthRateLimitSchedule</a>.</p>
|
|
14
15
|
*
|
|
15
16
|
* <p>By default, a gateway's bandwidth rate limits are not set. If you don't set
|
|
16
17
|
* any limit, the gateway does not have any limitations on its bandwidth usage and could
|
|
@@ -10,7 +10,8 @@ export interface UpdateBandwidthRateLimitScheduleCommandOutput extends UpdateBan
|
|
|
10
10
|
* <p> Updates the bandwidth rate limit schedule for a specified gateway. By default, gateways
|
|
11
11
|
* do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in
|
|
12
12
|
* effect. Use this to initiate or update a gateway's bandwidth rate limit schedule. This
|
|
13
|
-
* operation is supported
|
|
13
|
+
* operation is supported only for volume, tape and S3 file gateways. FSx file gateways do not
|
|
14
|
+
* support bandwidth rate limits.</p>
|
|
14
15
|
* @example
|
|
15
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
17
|
* ```javascript
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-storage-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Storage Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.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",
|
|
@@ -18,41 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.50.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.50.0",
|
|
39
|
+
"@aws-sdk/types": "3.50.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.50.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
-
"@
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
55
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
|
+
"@types/node": "^12.7.5",
|
|
57
|
+
"concurrently": "7.0.0",
|
|
58
|
+
"downlevel-dts": "0.7.0",
|
|
59
|
+
"rimraf": "3.0.2",
|
|
60
|
+
"typedoc": "0.19.2",
|
|
61
|
+
"typescript": "~4.3.5"
|
|
56
62
|
},
|
|
57
63
|
"engines": {
|
|
58
64
|
"node": ">=12.0.0"
|