aws-sdk-storagegateway 1.60.0 → 1.64.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 +30 -6
- 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: 99742414ffba1b60a011ea4574d68333725532f1814975278bda78456d6e2d04
|
4
|
+
data.tar.gz: 7e395d40df4a0a4e011cf61ead2599d682c082b63b4c784f059ec83896732244
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c8da31a48c90f80c79e16b5b28aaf700c4c83af91dc98cfa8df6e6c6d41aadc273f5e60ef7565eaa9519abfbb35059e5b4f7edd0a4b0bc5ef5db013e443f619
|
7
|
+
data.tar.gz: 29d1a9daa4238bbfb44f338fd58264f78ce250b1a76047ebba6373ee5869f1127ca5182f1f7483dae555ea3e0a41e346dc343f9d5e0057f9cb4793fd310b94ed
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.64.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.63.0 (2021-11-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
14
|
+
1.62.0 (2021-11-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.61.0 (2021-10-18)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.60.0 (2021-10-13)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.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
|
@@ -3426,6 +3446,7 @@ module Aws::StorageGateway
|
|
3426
3446
|
# * {Types::DescribeGatewayInformationOutput#deprecation_date #deprecation_date} => String
|
3427
3447
|
# * {Types::DescribeGatewayInformationOutput#gateway_capacity #gateway_capacity} => String
|
3428
3448
|
# * {Types::DescribeGatewayInformationOutput#supported_gateway_capacities #supported_gateway_capacities} => Array<String>
|
3449
|
+
# * {Types::DescribeGatewayInformationOutput#host_environment_id #host_environment_id} => String
|
3429
3450
|
#
|
3430
3451
|
#
|
3431
3452
|
# @example Example: To describe metadata about the gateway
|
@@ -3481,13 +3502,14 @@ module Aws::StorageGateway
|
|
3481
3502
|
# resp.tags[0].value #=> String
|
3482
3503
|
# resp.vpc_endpoint #=> String
|
3483
3504
|
# resp.cloud_watch_log_group_arn #=> String
|
3484
|
-
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER"
|
3505
|
+
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
3485
3506
|
# resp.endpoint_type #=> String
|
3486
3507
|
# resp.software_updates_end_date #=> String
|
3487
3508
|
# resp.deprecation_date #=> String
|
3488
3509
|
# resp.gateway_capacity #=> String, one of "Small", "Medium", "Large"
|
3489
3510
|
# resp.supported_gateway_capacities #=> Array
|
3490
3511
|
# resp.supported_gateway_capacities[0] #=> String, one of "Small", "Medium", "Large"
|
3512
|
+
# resp.host_environment_id #=> String
|
3491
3513
|
#
|
3492
3514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformation AWS API Documentation
|
3493
3515
|
#
|
@@ -4870,6 +4892,8 @@ module Aws::StorageGateway
|
|
4870
4892
|
# resp.gateways[0].gateway_name #=> String
|
4871
4893
|
# resp.gateways[0].ec2_instance_id #=> String
|
4872
4894
|
# resp.gateways[0].ec2_instance_region #=> String
|
4895
|
+
# resp.gateways[0].host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
4896
|
+
# resp.gateways[0].host_environment_id #=> String
|
4873
4897
|
# resp.marker #=> String
|
4874
4898
|
#
|
4875
4899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListGateways AWS API Documentation
|
@@ -7189,7 +7213,7 @@ module Aws::StorageGateway
|
|
7189
7213
|
params: params,
|
7190
7214
|
config: config)
|
7191
7215
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7192
|
-
context[:gem_version] = '1.
|
7216
|
+
context[:gem_version] = '1.64.0'
|
7193
7217
|
Seahorse::Client::Request.new(handlers, context)
|
7194
7218
|
end
|
7195
7219
|
|
@@ -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.64.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: 2021-
|
11
|
+
date: 2021-12-21 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
|