aws-sdk-storagegateway 1.61.0 → 1.65.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +44 -15
- data/lib/aws-sdk-storagegateway/client_api.rb +4 -0
- data/lib/aws-sdk-storagegateway/types.rb +26 -5
- 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: e9ad308ac780fbd56790c84b83c059584d9d6f9c37266943a9a962ed868c8f69
|
4
|
+
data.tar.gz: 6ee4f19d5d3bcfb13dc29e03b0e6f4f4954ec0f6510e7d2899f912b70afc8142
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f68bdcfea8f7632cd61d458bfd9cee54eb12c461e4ce240c6bbad5367ff44aff4a576ec51a6acef655de960b55105772f2462b74e02b825d1c497d341a94d944
|
7
|
+
data.tar.gz: e245b1d54131beffa5ac590bebb9ec27c9602606191099c757624b255ebaa7f2653d3939e80c5b4ea89780df7eb916107a261cdaaad87b0486868e87d089648e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2022-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation update for adding bandwidth throttling support for S3 File Gateways.
|
8
|
+
|
9
|
+
1.64.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.63.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Added gateway type VTL_SNOW. Added new SNOWBALL HostEnvironment for gateways running on a Snowball device. Added new field HostEnvironmentId to serve as an identifier for the HostEnvironment on which the gateway is running.
|
18
|
+
|
19
|
+
1.62.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.61.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
@@ -27,6 +27,7 @@ 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/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::StorageGateway
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::StorageGateway
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::StorageGateway
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -285,6 +293,15 @@ module Aws::StorageGateway
|
|
285
293
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
294
|
# requests are made, and retries are disabled.
|
287
295
|
#
|
296
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
297
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
298
|
+
# will be used if available.
|
299
|
+
#
|
300
|
+
# @option options [Boolean] :use_fips_endpoint
|
301
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
302
|
+
# When a `fips` region is used, the region is normalized and this config
|
303
|
+
# is set to `true`.
|
304
|
+
#
|
288
305
|
# @option options [Boolean] :validate_params (true)
|
289
306
|
# When `true`, request parameters are validated before
|
290
307
|
# sending the request.
|
@@ -296,7 +313,7 @@ module Aws::StorageGateway
|
|
296
313
|
# seconds to wait when opening a HTTP session before raising a
|
297
314
|
# `Timeout::Error`.
|
298
315
|
#
|
299
|
-
# @option options [
|
316
|
+
# @option options [Float] :http_read_timeout (60) The default
|
300
317
|
# number of seconds to wait for response data. This value can
|
301
318
|
# safely be set per-request on the session.
|
302
319
|
#
|
@@ -312,6 +329,9 @@ module Aws::StorageGateway
|
|
312
329
|
# disables this behaviour. This value can safely be set per
|
313
330
|
# request on the session.
|
314
331
|
#
|
332
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
333
|
+
# in seconds.
|
334
|
+
#
|
315
335
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
316
336
|
# HTTP debug output will be sent to the `:logger`.
|
317
337
|
#
|
@@ -398,8 +418,8 @@ module Aws::StorageGateway
|
|
398
418
|
# specified is critical to all later functions of the gateway and cannot
|
399
419
|
# be changed after activation. The default value is `CACHED`.
|
400
420
|
#
|
401
|
-
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `
|
402
|
-
# `FILE_FSX_SMB
|
421
|
+
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `VTL_SNOW` \| `FILE_S3`
|
422
|
+
# \| `FILE_FSX_SMB`
|
403
423
|
#
|
404
424
|
# @option params [String] :tape_drive_type
|
405
425
|
# The value that indicates the type of tape drive to use for tape
|
@@ -2510,7 +2530,8 @@ module Aws::StorageGateway
|
|
2510
2530
|
# If you delete only one of the limits, the other limit remains
|
2511
2531
|
# unchanged. To specify which gateway to work with, use the Amazon
|
2512
2532
|
# Resource Name (ARN) of the gateway in your request. This operation is
|
2513
|
-
# supported for the stored volume, cached volume and tape gateway
|
2533
|
+
# supported only for the stored volume, cached volume, and tape gateway
|
2534
|
+
# types.
|
2514
2535
|
#
|
2515
2536
|
# @option params [required, String] :gateway_arn
|
2516
2537
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
@@ -3022,11 +3043,12 @@ module Aws::StorageGateway
|
|
3022
3043
|
|
3023
3044
|
# Returns the bandwidth rate limits of a gateway. By default, these
|
3024
3045
|
# limits are not set, which means no bandwidth rate limiting is in
|
3025
|
-
# effect. This operation is supported for the stored volume, cached
|
3026
|
-
# volume, and tape gateway types.
|
3046
|
+
# effect. This operation is supported only for the stored volume, cached
|
3047
|
+
# volume, and tape gateway types. To describe bandwidth rate limits for
|
3048
|
+
# S3 file gateways, use DescribeBandwidthRateLimitSchedule.
|
3027
3049
|
#
|
3028
|
-
# This operation
|
3029
|
-
#
|
3050
|
+
# This operation returns a value for a bandwidth rate limit only if the
|
3051
|
+
# limit is set. If no limits are set for the gateway, then this
|
3030
3052
|
# operation returns only the gateway ARN in the response body. To
|
3031
3053
|
# specify which gateway to describe, use the Amazon Resource Name (ARN)
|
3032
3054
|
# of the gateway in your request.
|
@@ -3082,7 +3104,8 @@ module Aws::StorageGateway
|
|
3082
3104
|
# Returns information about the bandwidth rate limit schedule of a
|
3083
3105
|
# gateway. By default, gateways do not have bandwidth rate limit
|
3084
3106
|
# schedules, which means no bandwidth rate limiting is in effect. This
|
3085
|
-
# operation is supported only
|
3107
|
+
# operation is supported only for volume, tape and S3 file gateways. FSx
|
3108
|
+
# file gateways do not support bandwidth rate limits.
|
3086
3109
|
#
|
3087
3110
|
# This operation returns information about a gateway's bandwidth rate
|
3088
3111
|
# limit schedule. A bandwidth rate limit schedule consists of one or
|
@@ -3426,6 +3449,7 @@ module Aws::StorageGateway
|
|
3426
3449
|
# * {Types::DescribeGatewayInformationOutput#deprecation_date #deprecation_date} => String
|
3427
3450
|
# * {Types::DescribeGatewayInformationOutput#gateway_capacity #gateway_capacity} => String
|
3428
3451
|
# * {Types::DescribeGatewayInformationOutput#supported_gateway_capacities #supported_gateway_capacities} => Array<String>
|
3452
|
+
# * {Types::DescribeGatewayInformationOutput#host_environment_id #host_environment_id} => String
|
3429
3453
|
#
|
3430
3454
|
#
|
3431
3455
|
# @example Example: To describe metadata about the gateway
|
@@ -3481,13 +3505,14 @@ module Aws::StorageGateway
|
|
3481
3505
|
# resp.tags[0].value #=> String
|
3482
3506
|
# resp.vpc_endpoint #=> String
|
3483
3507
|
# resp.cloud_watch_log_group_arn #=> String
|
3484
|
-
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER"
|
3508
|
+
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
3485
3509
|
# resp.endpoint_type #=> String
|
3486
3510
|
# resp.software_updates_end_date #=> String
|
3487
3511
|
# resp.deprecation_date #=> String
|
3488
3512
|
# resp.gateway_capacity #=> String, one of "Small", "Medium", "Large"
|
3489
3513
|
# resp.supported_gateway_capacities #=> Array
|
3490
3514
|
# resp.supported_gateway_capacities[0] #=> String, one of "Small", "Medium", "Large"
|
3515
|
+
# resp.host_environment_id #=> String
|
3491
3516
|
#
|
3492
3517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformation AWS API Documentation
|
3493
3518
|
#
|
@@ -4870,6 +4895,8 @@ module Aws::StorageGateway
|
|
4870
4895
|
# resp.gateways[0].gateway_name #=> String
|
4871
4896
|
# resp.gateways[0].ec2_instance_id #=> String
|
4872
4897
|
# resp.gateways[0].ec2_instance_region #=> String
|
4898
|
+
# resp.gateways[0].host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
4899
|
+
# resp.gateways[0].host_environment_id #=> String
|
4873
4900
|
# resp.marker #=> String
|
4874
4901
|
#
|
4875
4902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListGateways AWS API Documentation
|
@@ -6044,8 +6071,9 @@ module Aws::StorageGateway
|
|
6044
6071
|
# Updates the bandwidth rate limits of a gateway. You can update both
|
6045
6072
|
# the upload and download bandwidth rate limit or specify only one of
|
6046
6073
|
# the two. If you don't set a bandwidth rate limit, the existing rate
|
6047
|
-
# limit remains. This operation is supported for the stored volume,
|
6048
|
-
# cached volume, and tape gateway types.
|
6074
|
+
# limit remains. This operation is supported only for the stored volume,
|
6075
|
+
# cached volume, and tape gateway types. To update bandwidth rate limits
|
6076
|
+
# for S3 file gateways, use UpdateBandwidthRateLimitSchedule.
|
6049
6077
|
#
|
6050
6078
|
# By default, a gateway's bandwidth rate limits are not set. If you
|
6051
6079
|
# don't set any limit, the gateway does not have any limitations on its
|
@@ -6112,7 +6140,8 @@ module Aws::StorageGateway
|
|
6112
6140
|
# default, gateways do not have bandwidth rate limit schedules, which
|
6113
6141
|
# means no bandwidth rate limiting is in effect. Use this to initiate or
|
6114
6142
|
# update a gateway's bandwidth rate limit schedule. This operation is
|
6115
|
-
# supported
|
6143
|
+
# supported only for volume, tape and S3 file gateways. FSx file
|
6144
|
+
# gateways do not support bandwidth rate limits.
|
6116
6145
|
#
|
6117
6146
|
# @option params [required, String] :gateway_arn
|
6118
6147
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
@@ -7189,7 +7218,7 @@ module Aws::StorageGateway
|
|
7189
7218
|
params: params,
|
7190
7219
|
config: config)
|
7191
7220
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7192
|
-
context[:gem_version] = '1.
|
7221
|
+
context[:gem_version] = '1.65.0'
|
7193
7222
|
Seahorse::Client::Request.new(handlers, context)
|
7194
7223
|
end
|
7195
7224
|
|
@@ -203,6 +203,7 @@ module Aws::StorageGateway
|
|
203
203
|
Gateways = Shapes::ListShape.new(name: 'Gateways')
|
204
204
|
Host = Shapes::StringShape.new(name: 'Host')
|
205
205
|
HostEnvironment = Shapes::StringShape.new(name: 'HostEnvironment')
|
206
|
+
HostEnvironmentId = Shapes::StringShape.new(name: 'HostEnvironmentId')
|
206
207
|
Hosts = Shapes::ListShape.new(name: 'Hosts')
|
207
208
|
HourOfDay = Shapes::IntegerShape.new(name: 'HourOfDay')
|
208
209
|
IPV4Address = Shapes::StringShape.new(name: 'IPV4Address')
|
@@ -829,6 +830,7 @@ module Aws::StorageGateway
|
|
829
830
|
DescribeGatewayInformationOutput.add_member(:deprecation_date, Shapes::ShapeRef.new(shape: DeprecationDate, location_name: "DeprecationDate"))
|
830
831
|
DescribeGatewayInformationOutput.add_member(:gateway_capacity, Shapes::ShapeRef.new(shape: GatewayCapacity, location_name: "GatewayCapacity"))
|
831
832
|
DescribeGatewayInformationOutput.add_member(:supported_gateway_capacities, Shapes::ShapeRef.new(shape: SupportedGatewayCapacities, location_name: "SupportedGatewayCapacities"))
|
833
|
+
DescribeGatewayInformationOutput.add_member(:host_environment_id, Shapes::ShapeRef.new(shape: HostEnvironmentId, location_name: "HostEnvironmentId"))
|
832
834
|
DescribeGatewayInformationOutput.struct_class = Types::DescribeGatewayInformationOutput
|
833
835
|
|
834
836
|
DescribeMaintenanceStartTimeInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
@@ -1036,6 +1038,8 @@ module Aws::StorageGateway
|
|
1036
1038
|
GatewayInfo.add_member(:gateway_name, Shapes::ShapeRef.new(shape: string, location_name: "GatewayName"))
|
1037
1039
|
GatewayInfo.add_member(:ec2_instance_id, Shapes::ShapeRef.new(shape: Ec2InstanceId, location_name: "Ec2InstanceId"))
|
1038
1040
|
GatewayInfo.add_member(:ec2_instance_region, Shapes::ShapeRef.new(shape: Ec2InstanceRegion, location_name: "Ec2InstanceRegion"))
|
1041
|
+
GatewayInfo.add_member(:host_environment, Shapes::ShapeRef.new(shape: HostEnvironment, location_name: "HostEnvironment"))
|
1042
|
+
GatewayInfo.add_member(:host_environment_id, Shapes::ShapeRef.new(shape: HostEnvironmentId, location_name: "HostEnvironmentId"))
|
1039
1043
|
GatewayInfo.struct_class = Types::GatewayInfo
|
1040
1044
|
|
1041
1045
|
GatewayNetworkInterfaces.member = Shapes::ShapeRef.new(shape: NetworkInterface)
|
@@ -98,8 +98,8 @@ module Aws::StorageGateway
|
|
98
98
|
# specified is critical to all later functions of the gateway and
|
99
99
|
# cannot be changed after activation. The default value is `CACHED`.
|
100
100
|
#
|
101
|
-
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `
|
102
|
-
# `FILE_FSX_SMB
|
101
|
+
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `VTL_SNOW` \|
|
102
|
+
# `FILE_S3` \| `FILE_FSX_SMB`
|
103
103
|
# @return [String]
|
104
104
|
#
|
105
105
|
# @!attribute [rw] tape_drive_type
|
@@ -3324,7 +3324,8 @@ module Aws::StorageGateway
|
|
3324
3324
|
# @return [String]
|
3325
3325
|
#
|
3326
3326
|
# @!attribute [rw] host_environment
|
3327
|
-
# The type of
|
3327
|
+
# The type of hardware or software platform on which the gateway is
|
3328
|
+
# running.
|
3328
3329
|
# @return [String]
|
3329
3330
|
#
|
3330
3331
|
# @!attribute [rw] endpoint_type
|
@@ -3352,6 +3353,12 @@ module Aws::StorageGateway
|
|
3352
3353
|
# based on its current hardware specifications.
|
3353
3354
|
# @return [Array<String>]
|
3354
3355
|
#
|
3356
|
+
# @!attribute [rw] host_environment_id
|
3357
|
+
# A unique identifier for the specific instance of the host platform
|
3358
|
+
# running the gateway. This value is only available for certain host
|
3359
|
+
# environments, and its format depends on the host environment type.
|
3360
|
+
# @return [String]
|
3361
|
+
#
|
3355
3362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformationOutput AWS API Documentation
|
3356
3363
|
#
|
3357
3364
|
class DescribeGatewayInformationOutput < Struct.new(
|
@@ -3374,7 +3381,8 @@ module Aws::StorageGateway
|
|
3374
3381
|
:software_updates_end_date,
|
3375
3382
|
:deprecation_date,
|
3376
3383
|
:gateway_capacity,
|
3377
|
-
:supported_gateway_capacities
|
3384
|
+
:supported_gateway_capacities,
|
3385
|
+
:host_environment_id)
|
3378
3386
|
SENSITIVE = []
|
3379
3387
|
include Aws::Structure
|
3380
3388
|
end
|
@@ -4643,6 +4651,17 @@ module Aws::StorageGateway
|
|
4643
4651
|
# located.
|
4644
4652
|
# @return [String]
|
4645
4653
|
#
|
4654
|
+
# @!attribute [rw] host_environment
|
4655
|
+
# The type of hardware or software platform on which the gateway is
|
4656
|
+
# running.
|
4657
|
+
# @return [String]
|
4658
|
+
#
|
4659
|
+
# @!attribute [rw] host_environment_id
|
4660
|
+
# A unique identifier for the specific instance of the host platform
|
4661
|
+
# running the gateway. This value is only available for certain host
|
4662
|
+
# environments, and its format depends on the host environment type.
|
4663
|
+
# @return [String]
|
4664
|
+
#
|
4646
4665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/GatewayInfo AWS API Documentation
|
4647
4666
|
#
|
4648
4667
|
class GatewayInfo < Struct.new(
|
@@ -4652,7 +4671,9 @@ module Aws::StorageGateway
|
|
4652
4671
|
:gateway_operational_state,
|
4653
4672
|
:gateway_name,
|
4654
4673
|
:ec2_instance_id,
|
4655
|
-
:ec2_instance_region
|
4674
|
+
:ec2_instance_region,
|
4675
|
+
:host_environment,
|
4676
|
+
:host_environment_id)
|
4656
4677
|
SENSITIVE = []
|
4657
4678
|
include Aws::Structure
|
4658
4679
|
end
|
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.65.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-01-18 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.125.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.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|