aws-sdk-storagegateway 1.62.0 → 1.63.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 845cd3f657d811ba5d9ddb16d0d30277fb2e99a89ff4accb26f44811f387f5ef
4
- data.tar.gz: 48edf607e0f22fb5f42f379eac6f512a814e71533e4e9c75fd4f68e4f6bad13c
3
+ metadata.gz: 77d48a6cdb51729a7728cfaa028ed916033a09c884cc5392f82c0c32ab5ae548
4
+ data.tar.gz: f54c9e44ef7cb7ea4dd6db91cb00d34274f94e6a9904c418c69d369a30d12602
5
5
  SHA512:
6
- metadata.gz: 850fbcb6a01ff6f97bef8b13a286b4b27beb72a98ede7c3e817c52894bd3c473509cd1f2382621cc5d286656a3ba6e309a28c86fe6723e18ea3536eb2b7168c1
7
- data.tar.gz: e2454c85f82eff5668f483c2081e7404b3f0726fe9a823b7f3bbdbfadaef510c1321858addc5cac6a188e2da49483a67c581140b05852a5185362b79e6959ac4
6
+ metadata.gz: 27641cacbc4c3e081547e6cacc8184972644603a003ed6715fb3bd22b46067f7d52ef6bd5304a089343c6155a3f236ef0bb65369546d7bc4da054f9501fdc85f
7
+ data.tar.gz: bd1efcf9b14d39ce05509726771a0b946ef1d69cee624aef1a79ca6a17e50ccc116ec4f6e6ffa94510805663b2eac800e34c79297a706ea668aeeca9a32bfc1e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.62.0 (2021-11-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -119,7 +119,9 @@ module Aws::StorageGateway
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -407,8 +409,8 @@ module Aws::StorageGateway
407
409
  # specified is critical to all later functions of the gateway and cannot
408
410
  # be changed after activation. The default value is `CACHED`.
409
411
  #
410
- # Valid Values: `STORED` \| `CACHED` \| `VTL` \| `FILE_S3` \|
411
- # `FILE_FSX_SMB|`
412
+ # Valid Values: `STORED` \| `CACHED` \| `VTL` \| `VTL_SNOW` \| `FILE_S3`
413
+ # \| `FILE_FSX_SMB`
412
414
  #
413
415
  # @option params [String] :tape_drive_type
414
416
  # The value that indicates the type of tape drive to use for tape
@@ -3435,6 +3437,7 @@ module Aws::StorageGateway
3435
3437
  # * {Types::DescribeGatewayInformationOutput#deprecation_date #deprecation_date} => String
3436
3438
  # * {Types::DescribeGatewayInformationOutput#gateway_capacity #gateway_capacity} => String
3437
3439
  # * {Types::DescribeGatewayInformationOutput#supported_gateway_capacities #supported_gateway_capacities} => Array<String>
3440
+ # * {Types::DescribeGatewayInformationOutput#host_environment_id #host_environment_id} => String
3438
3441
  #
3439
3442
  #
3440
3443
  # @example Example: To describe metadata about the gateway
@@ -3490,13 +3493,14 @@ module Aws::StorageGateway
3490
3493
  # resp.tags[0].value #=> String
3491
3494
  # resp.vpc_endpoint #=> String
3492
3495
  # resp.cloud_watch_log_group_arn #=> String
3493
- # resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER"
3496
+ # resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
3494
3497
  # resp.endpoint_type #=> String
3495
3498
  # resp.software_updates_end_date #=> String
3496
3499
  # resp.deprecation_date #=> String
3497
3500
  # resp.gateway_capacity #=> String, one of "Small", "Medium", "Large"
3498
3501
  # resp.supported_gateway_capacities #=> Array
3499
3502
  # resp.supported_gateway_capacities[0] #=> String, one of "Small", "Medium", "Large"
3503
+ # resp.host_environment_id #=> String
3500
3504
  #
3501
3505
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformation AWS API Documentation
3502
3506
  #
@@ -4879,6 +4883,8 @@ module Aws::StorageGateway
4879
4883
  # resp.gateways[0].gateway_name #=> String
4880
4884
  # resp.gateways[0].ec2_instance_id #=> String
4881
4885
  # resp.gateways[0].ec2_instance_region #=> String
4886
+ # resp.gateways[0].host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
4887
+ # resp.gateways[0].host_environment_id #=> String
4882
4888
  # resp.marker #=> String
4883
4889
  #
4884
4890
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListGateways AWS API Documentation
@@ -7198,7 +7204,7 @@ module Aws::StorageGateway
7198
7204
  params: params,
7199
7205
  config: config)
7200
7206
  context[:gem_name] = 'aws-sdk-storagegateway'
7201
- context[:gem_version] = '1.62.0'
7207
+ context[:gem_version] = '1.63.0'
7202
7208
  Seahorse::Client::Request.new(handlers, context)
7203
7209
  end
7204
7210
 
@@ -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` \| `FILE_S3` \|
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 hypervisor environment used by the host.
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-storagegateway/customizations'
48
48
  # @!group service
49
49
  module Aws::StorageGateway
50
50
 
51
- GEM_VERSION = '1.62.0'
51
+ GEM_VERSION = '1.63.0'
52
52
 
53
53
  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.62.0
4
+ version: 1.63.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-04 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core