aws-sdk-storagegateway 1.64.0 → 1.67.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +19 -10
- data/lib/aws-sdk-storagegateway.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efb632a9e84a6e0dc84b8e438919196f6bdc68f45acc78ee6b893848dad130db
|
4
|
+
data.tar.gz: 7e4cec7bee6378f9f2b405638622b7c761a7861d5b2f19401fc4d06a3603bcb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccf6202a1f1ef7ab97bb19b877f45e348a7aa80c67fd8a6c49cb42f5bff9d81043a1f6f3c1f4b0fa6889fa0064d1ee32ae9cb3abf677ec114ab265a0c034f419
|
7
|
+
data.tar.gz: 52567b1ecedba3a0e916512386f0af3a916c1c7db123ace69d7b36c74d95b24346491a7128b8bc1b005a6284d3b1694243ceca2732883a5bb9a87281ab5fd2f2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.66.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.65.0 (2022-01-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation update for adding bandwidth throttling support for S3 File Gateways.
|
18
|
+
|
4
19
|
1.64.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.0
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::StorageGateway
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
80
84
|
|
@@ -2530,7 +2534,8 @@ module Aws::StorageGateway
|
|
2530
2534
|
# If you delete only one of the limits, the other limit remains
|
2531
2535
|
# unchanged. To specify which gateway to work with, use the Amazon
|
2532
2536
|
# Resource Name (ARN) of the gateway in your request. This operation is
|
2533
|
-
# supported for the stored volume, cached volume and tape gateway
|
2537
|
+
# supported only for the stored volume, cached volume, and tape gateway
|
2538
|
+
# types.
|
2534
2539
|
#
|
2535
2540
|
# @option params [required, String] :gateway_arn
|
2536
2541
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
@@ -3042,11 +3047,12 @@ module Aws::StorageGateway
|
|
3042
3047
|
|
3043
3048
|
# Returns the bandwidth rate limits of a gateway. By default, these
|
3044
3049
|
# limits are not set, which means no bandwidth rate limiting is in
|
3045
|
-
# effect. This operation is supported for the stored volume, cached
|
3046
|
-
# volume, and tape gateway types.
|
3050
|
+
# effect. This operation is supported only for the stored volume, cached
|
3051
|
+
# volume, and tape gateway types. To describe bandwidth rate limits for
|
3052
|
+
# S3 file gateways, use DescribeBandwidthRateLimitSchedule.
|
3047
3053
|
#
|
3048
|
-
# This operation
|
3049
|
-
#
|
3054
|
+
# This operation returns a value for a bandwidth rate limit only if the
|
3055
|
+
# limit is set. If no limits are set for the gateway, then this
|
3050
3056
|
# operation returns only the gateway ARN in the response body. To
|
3051
3057
|
# specify which gateway to describe, use the Amazon Resource Name (ARN)
|
3052
3058
|
# of the gateway in your request.
|
@@ -3102,7 +3108,8 @@ module Aws::StorageGateway
|
|
3102
3108
|
# Returns information about the bandwidth rate limit schedule of a
|
3103
3109
|
# gateway. By default, gateways do not have bandwidth rate limit
|
3104
3110
|
# schedules, which means no bandwidth rate limiting is in effect. This
|
3105
|
-
# operation is supported only
|
3111
|
+
# operation is supported only for volume, tape and S3 file gateways. FSx
|
3112
|
+
# file gateways do not support bandwidth rate limits.
|
3106
3113
|
#
|
3107
3114
|
# This operation returns information about a gateway's bandwidth rate
|
3108
3115
|
# limit schedule. A bandwidth rate limit schedule consists of one or
|
@@ -6068,8 +6075,9 @@ module Aws::StorageGateway
|
|
6068
6075
|
# Updates the bandwidth rate limits of a gateway. You can update both
|
6069
6076
|
# the upload and download bandwidth rate limit or specify only one of
|
6070
6077
|
# the two. If you don't set a bandwidth rate limit, the existing rate
|
6071
|
-
# limit remains. This operation is supported for the stored volume,
|
6072
|
-
# cached volume, and tape gateway types.
|
6078
|
+
# limit remains. This operation is supported only for the stored volume,
|
6079
|
+
# cached volume, and tape gateway types. To update bandwidth rate limits
|
6080
|
+
# for S3 file gateways, use UpdateBandwidthRateLimitSchedule.
|
6073
6081
|
#
|
6074
6082
|
# By default, a gateway's bandwidth rate limits are not set. If you
|
6075
6083
|
# don't set any limit, the gateway does not have any limitations on its
|
@@ -6136,7 +6144,8 @@ module Aws::StorageGateway
|
|
6136
6144
|
# default, gateways do not have bandwidth rate limit schedules, which
|
6137
6145
|
# means no bandwidth rate limiting is in effect. Use this to initiate or
|
6138
6146
|
# update a gateway's bandwidth rate limit schedule. This operation is
|
6139
|
-
# supported
|
6147
|
+
# supported only for volume, tape and S3 file gateways. FSx file
|
6148
|
+
# gateways do not support bandwidth rate limits.
|
6140
6149
|
#
|
6141
6150
|
# @option params [required, String] :gateway_arn
|
6142
6151
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
@@ -7213,7 +7222,7 @@ module Aws::StorageGateway
|
|
7213
7222
|
params: params,
|
7214
7223
|
config: config)
|
7215
7224
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7216
|
-
context[:gem_version] = '1.
|
7225
|
+
context[:gem_version] = '1.67.0'
|
7217
7226
|
Seahorse::Client::Request.new(handlers, context)
|
7218
7227
|
end
|
7219
7228
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-storagegateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.67.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|