aws-sdk-storagegateway 1.62.0 → 1.66.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +37 -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: 8a71725bb45b7661ae8c6a6ac40732996204a57ed33bf78439a770f2330526d7
|
4
|
+
data.tar.gz: 52ec7bcbcb8f4c772b8e9a4798b3722147be1ba5386aa20e544151627f616a4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa067dfbc3b661790061857bbbe7d24440850f42433ffb4dd4bd939f1838b136ceb16a2b0bbac367333f242f447060cd81c5011de48cb0a2e3aad8c37d3ae730
|
7
|
+
data.tar.gz: e69e2622cdb8c0692fb8c422fd17b1b2d52871ae0ffbf80ed60d79a069380038d9cb08296ebe9235c853f014a27100446ccf385493ea601fc274951d1e033190
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.66.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.65.0 (2022-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation update for adding bandwidth throttling support for S3 File Gateways.
|
13
|
+
|
14
|
+
1.64.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.63.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* 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.
|
23
|
+
|
4
24
|
1.62.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.66.0
|
@@ -27,6 +27,8 @@ 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'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::StorageGateway
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::StorageGateway
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::StorageGateway
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -305,7 +315,7 @@ module Aws::StorageGateway
|
|
305
315
|
# seconds to wait when opening a HTTP session before raising a
|
306
316
|
# `Timeout::Error`.
|
307
317
|
#
|
308
|
-
# @option options [
|
318
|
+
# @option options [Float] :http_read_timeout (60) The default
|
309
319
|
# number of seconds to wait for response data. This value can
|
310
320
|
# safely be set per-request on the session.
|
311
321
|
#
|
@@ -321,6 +331,9 @@ module Aws::StorageGateway
|
|
321
331
|
# disables this behaviour. This value can safely be set per
|
322
332
|
# request on the session.
|
323
333
|
#
|
334
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
335
|
+
# in seconds.
|
336
|
+
#
|
324
337
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
325
338
|
# HTTP debug output will be sent to the `:logger`.
|
326
339
|
#
|
@@ -407,8 +420,8 @@ module Aws::StorageGateway
|
|
407
420
|
# specified is critical to all later functions of the gateway and cannot
|
408
421
|
# be changed after activation. The default value is `CACHED`.
|
409
422
|
#
|
410
|
-
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `
|
411
|
-
# `FILE_FSX_SMB
|
423
|
+
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `VTL_SNOW` \| `FILE_S3`
|
424
|
+
# \| `FILE_FSX_SMB`
|
412
425
|
#
|
413
426
|
# @option params [String] :tape_drive_type
|
414
427
|
# The value that indicates the type of tape drive to use for tape
|
@@ -2519,7 +2532,8 @@ module Aws::StorageGateway
|
|
2519
2532
|
# If you delete only one of the limits, the other limit remains
|
2520
2533
|
# unchanged. To specify which gateway to work with, use the Amazon
|
2521
2534
|
# Resource Name (ARN) of the gateway in your request. This operation is
|
2522
|
-
# supported for the stored volume, cached volume and tape gateway
|
2535
|
+
# supported only for the stored volume, cached volume, and tape gateway
|
2536
|
+
# types.
|
2523
2537
|
#
|
2524
2538
|
# @option params [required, String] :gateway_arn
|
2525
2539
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
@@ -3031,11 +3045,12 @@ module Aws::StorageGateway
|
|
3031
3045
|
|
3032
3046
|
# Returns the bandwidth rate limits of a gateway. By default, these
|
3033
3047
|
# limits are not set, which means no bandwidth rate limiting is in
|
3034
|
-
# effect. This operation is supported for the stored volume, cached
|
3035
|
-
# volume, and tape gateway types.
|
3048
|
+
# effect. This operation is supported only for the stored volume, cached
|
3049
|
+
# volume, and tape gateway types. To describe bandwidth rate limits for
|
3050
|
+
# S3 file gateways, use DescribeBandwidthRateLimitSchedule.
|
3036
3051
|
#
|
3037
|
-
# This operation
|
3038
|
-
#
|
3052
|
+
# This operation returns a value for a bandwidth rate limit only if the
|
3053
|
+
# limit is set. If no limits are set for the gateway, then this
|
3039
3054
|
# operation returns only the gateway ARN in the response body. To
|
3040
3055
|
# specify which gateway to describe, use the Amazon Resource Name (ARN)
|
3041
3056
|
# of the gateway in your request.
|
@@ -3091,7 +3106,8 @@ module Aws::StorageGateway
|
|
3091
3106
|
# Returns information about the bandwidth rate limit schedule of a
|
3092
3107
|
# gateway. By default, gateways do not have bandwidth rate limit
|
3093
3108
|
# schedules, which means no bandwidth rate limiting is in effect. This
|
3094
|
-
# operation is supported only
|
3109
|
+
# operation is supported only for volume, tape and S3 file gateways. FSx
|
3110
|
+
# file gateways do not support bandwidth rate limits.
|
3095
3111
|
#
|
3096
3112
|
# This operation returns information about a gateway's bandwidth rate
|
3097
3113
|
# limit schedule. A bandwidth rate limit schedule consists of one or
|
@@ -3435,6 +3451,7 @@ module Aws::StorageGateway
|
|
3435
3451
|
# * {Types::DescribeGatewayInformationOutput#deprecation_date #deprecation_date} => String
|
3436
3452
|
# * {Types::DescribeGatewayInformationOutput#gateway_capacity #gateway_capacity} => String
|
3437
3453
|
# * {Types::DescribeGatewayInformationOutput#supported_gateway_capacities #supported_gateway_capacities} => Array<String>
|
3454
|
+
# * {Types::DescribeGatewayInformationOutput#host_environment_id #host_environment_id} => String
|
3438
3455
|
#
|
3439
3456
|
#
|
3440
3457
|
# @example Example: To describe metadata about the gateway
|
@@ -3490,13 +3507,14 @@ module Aws::StorageGateway
|
|
3490
3507
|
# resp.tags[0].value #=> String
|
3491
3508
|
# resp.vpc_endpoint #=> String
|
3492
3509
|
# resp.cloud_watch_log_group_arn #=> String
|
3493
|
-
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER"
|
3510
|
+
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
3494
3511
|
# resp.endpoint_type #=> String
|
3495
3512
|
# resp.software_updates_end_date #=> String
|
3496
3513
|
# resp.deprecation_date #=> String
|
3497
3514
|
# resp.gateway_capacity #=> String, one of "Small", "Medium", "Large"
|
3498
3515
|
# resp.supported_gateway_capacities #=> Array
|
3499
3516
|
# resp.supported_gateway_capacities[0] #=> String, one of "Small", "Medium", "Large"
|
3517
|
+
# resp.host_environment_id #=> String
|
3500
3518
|
#
|
3501
3519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformation AWS API Documentation
|
3502
3520
|
#
|
@@ -4879,6 +4897,8 @@ module Aws::StorageGateway
|
|
4879
4897
|
# resp.gateways[0].gateway_name #=> String
|
4880
4898
|
# resp.gateways[0].ec2_instance_id #=> String
|
4881
4899
|
# resp.gateways[0].ec2_instance_region #=> String
|
4900
|
+
# resp.gateways[0].host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
4901
|
+
# resp.gateways[0].host_environment_id #=> String
|
4882
4902
|
# resp.marker #=> String
|
4883
4903
|
#
|
4884
4904
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListGateways AWS API Documentation
|
@@ -6053,8 +6073,9 @@ module Aws::StorageGateway
|
|
6053
6073
|
# Updates the bandwidth rate limits of a gateway. You can update both
|
6054
6074
|
# the upload and download bandwidth rate limit or specify only one of
|
6055
6075
|
# the two. If you don't set a bandwidth rate limit, the existing rate
|
6056
|
-
# limit remains. This operation is supported for the stored volume,
|
6057
|
-
# cached volume, and tape gateway types.
|
6076
|
+
# limit remains. This operation is supported only for the stored volume,
|
6077
|
+
# cached volume, and tape gateway types. To update bandwidth rate limits
|
6078
|
+
# for S3 file gateways, use UpdateBandwidthRateLimitSchedule.
|
6058
6079
|
#
|
6059
6080
|
# By default, a gateway's bandwidth rate limits are not set. If you
|
6060
6081
|
# don't set any limit, the gateway does not have any limitations on its
|
@@ -6121,7 +6142,8 @@ module Aws::StorageGateway
|
|
6121
6142
|
# default, gateways do not have bandwidth rate limit schedules, which
|
6122
6143
|
# means no bandwidth rate limiting is in effect. Use this to initiate or
|
6123
6144
|
# update a gateway's bandwidth rate limit schedule. This operation is
|
6124
|
-
# supported
|
6145
|
+
# supported only for volume, tape and S3 file gateways. FSx file
|
6146
|
+
# gateways do not support bandwidth rate limits.
|
6125
6147
|
#
|
6126
6148
|
# @option params [required, String] :gateway_arn
|
6127
6149
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
@@ -7198,7 +7220,7 @@ module Aws::StorageGateway
|
|
7198
7220
|
params: params,
|
7199
7221
|
config: config)
|
7200
7222
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7201
|
-
context[:gem_version] = '1.
|
7223
|
+
context[:gem_version] = '1.66.0'
|
7202
7224
|
Seahorse::Client::Request.new(handlers, context)
|
7203
7225
|
end
|
7204
7226
|
|
@@ -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.66.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-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|