aws-sdk-storagegateway 1.14.0 → 1.15.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
  SHA1:
3
- metadata.gz: 67b33d976ee65cdbde5de0b5d2dc5edab520f5dd
4
- data.tar.gz: 2847d1dcab5ddf6e6430c0857294ebc996473f75
3
+ metadata.gz: d07625bb8a8362207d549e990a406384e5155f0a
4
+ data.tar.gz: 67db84863908beedbcdb551dcde5a53dc4a7d0d4
5
5
  SHA512:
6
- metadata.gz: fe4824898e28e14448073d6b98e88130114fd15bf42c8c09cd914831042591a7e1e649e2b3ab508b1c29ed3469148333812a436a20a7a75ff7f40d9f003f093b
7
- data.tar.gz: c7152d44df8d98eddd1e8092dfbb2e447d62ff5bdd97636f1f5d6875be0739f60eed8ad0ce4f3d0711e7542008b4e72f8dead800b26ddd6111fa4bb18439433b
6
+ metadata.gz: 742a23ff96bb13aa2027f436a660d8226280381cdb3a0f2301dd4df7f2749754285e5ef0f468e1767916c007f383c3200419b343e185fd590ccadfaac2e96972
7
+ data.tar.gz: e896e6200109af519c88801282861805074b35b7fd535e4765f88a786bee3871d61ebafbd74748b6de86ce79bbcbce1ec766c9dae988a181120ee3175ff28ebc
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-storagegateway/customizations'
42
42
  # @service
43
43
  module Aws::StorageGateway
44
44
 
45
- GEM_VERSION = '1.14.0'
45
+ GEM_VERSION = '1.15.0'
46
46
 
47
47
  end
@@ -259,14 +259,12 @@ module Aws::StorageGateway
259
259
  # available regions and endpoints for AWS Storage Gateway, see [Regions
260
260
  # and Endpoints][1] in the *Amazon Web Services Glossary*.
261
261
  #
262
- # Valid Values: "us-east-1", "us-east-2", "us-west-1",
263
- # "us-west-2", "ca-central-1", "eu-west-1", "eu-central-1",
264
- # "eu-west-2", "eu-west-3", "ap-northeast-1", "ap-northeast-2",
265
- # "ap-southeast-1", "ap-southeast-2", "ap-south-1", "sa-east-1"
262
+ # Valid Values: See [AWS Storage Gateway Regions and Endpoints][1] in
263
+ # the AWS General Reference.
266
264
  #
267
265
  #
268
266
  #
269
- # [1]: http://docs.aws.amazon.com/general/latest/gr/rande.html#sg_region
267
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html#sg_region
270
268
  #
271
269
  # @option params [String] :gateway_type
272
270
  # A value that defines the type of gateway to activate. The type
@@ -287,6 +285,17 @@ module Aws::StorageGateway
287
285
  #
288
286
  # Valid Values: "STK-L700", "AWS-Gateway-VTL"
289
287
  #
288
+ # @option params [Array<Types::Tag>] :tags
289
+ # A list of up to ten (10) tags assigned to the gateway may be
290
+ # specified. Every tag is a key-value pair.
291
+ #
292
+ # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
293
+ # representable in UTF-8 format, and the following special characters: +
294
+ # - = . \_ : / @. The maximum length of a tag's key is 128 characters,
295
+ # and the maximum length for a tag's value is 256.
296
+ #
297
+ # </note>
298
+ #
290
299
  # @return [Types::ActivateGatewayOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
291
300
  #
292
301
  # * {Types::ActivateGatewayOutput#gateway_arn #gateway_arn} => String
@@ -321,6 +330,12 @@ module Aws::StorageGateway
321
330
  # gateway_type: "GatewayType",
322
331
  # tape_drive_type: "TapeDriveType",
323
332
  # medium_changer_type: "MediumChangerType",
333
+ # tags: [
334
+ # {
335
+ # key: "TagKey", # required
336
+ # value: "TagValue", # required
337
+ # },
338
+ # ],
324
339
  # })
325
340
  #
326
341
  # @example Response structure
@@ -346,13 +361,16 @@ module Aws::StorageGateway
346
361
  #
347
362
  #
348
363
  #
349
- # [1]: http://docs.aws.amazon.com/storagegateway/latest/userguide/StorageGatewayConcepts.html
364
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/StorageGatewayConcepts.html
350
365
  #
351
366
  # @option params [required, String] :gateway_arn
352
367
  # The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
353
368
  # operation to return a list of gateways for your account and region.
354
369
  #
355
370
  # @option params [required, Array<String>] :disk_ids
371
+ # An array of strings that identify disks that are to be configured as
372
+ # working storage. Each string have a minimum length of 1 and maximum
373
+ # length of 300. You can get the disk IDs from the ListLocalDisks API.
356
374
  #
357
375
  # @return [Types::AddCacheOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
358
376
  #
@@ -405,17 +423,11 @@ module Aws::StorageGateway
405
423
  #
406
424
  # * Storage gateways of all types
407
425
  #
408
- # ^
409
- # ^
410
- #
411
426
  # * Storage Volumes
412
427
  #
413
- # ^
414
- # ^
415
- #
416
428
  # * Virtual Tapes
417
429
  #
418
- # ^
430
+ # * NFS and SMB File Shares
419
431
  #
420
432
  # You can create a maximum of 10 tags for each resource. Virtual tapes
421
433
  # and storage volumes that are recovered to a new gateway maintain their
@@ -431,7 +443,8 @@ module Aws::StorageGateway
431
443
  #
432
444
  # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
433
445
  # representable in UTF-8 format, and the following special characters: +
434
- # - = . \_ : / @.
446
+ # - = . \_ : / @. The maximum length of a tag's key is 128 characters,
447
+ # and the maximum length for a tag's value is 256.
435
448
  #
436
449
  # </note>
437
450
  #
@@ -497,6 +510,9 @@ module Aws::StorageGateway
497
510
  # operation to return a list of gateways for your account and region.
498
511
  #
499
512
  # @option params [required, Array<String>] :disk_ids
513
+ # An array of strings that identify disks that are to be configured as
514
+ # working storage. Each string have a minimum length of 1 and maximum
515
+ # length of 300. You can get the disk IDs from the ListLocalDisks API.
500
516
  #
501
517
  # @return [Types::AddUploadBufferOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
502
518
  #
@@ -815,14 +831,17 @@ module Aws::StorageGateway
815
831
  #
816
832
  #
817
833
  #
818
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
834
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
819
835
  #
820
836
  # @option params [required, String] :target_name
821
- # The name of the iSCSI target used by initiators to connect to the
822
- # target and as a suffix for the target ARN. For example, specifying
823
- # `TargetName` as *myvolume* results in the target ARN of
824
- # arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume.
825
- # The target name must be unique across all volumes of a gateway.
837
+ # The name of the iSCSI target used by an initiator to connect to a
838
+ # volume and used as a suffix for the target ARN. For example,
839
+ # specifying `TargetName` as *myvolume* results in the target ARN of
840
+ # `arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume`.
841
+ # The target name must be unique across all volumes on a gateway.
842
+ #
843
+ # If you don't specify a value, Storage Gateway uses the value that was
844
+ # previously used for this volume as the new target name.
826
845
  #
827
846
  # @option params [String] :source_volume_arn
828
847
  # The ARN for an existing volume. Specifying this ARN makes the new
@@ -986,6 +1005,17 @@ module Aws::StorageGateway
986
1005
  # the Amazon S3 bucket that a file gateway puts objects into. The
987
1006
  # default value is `private`.
988
1007
  #
1008
+ # @option params [Array<Types::Tag>] :tags
1009
+ # A list of up to ten (10) tags can be assigned to the NFS file share.
1010
+ # Every tag is a key-value pair.
1011
+ #
1012
+ # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
1013
+ # representable in UTF-8 format, and the following special characters: +
1014
+ # - = . \_ : / @. The maximum length of a tag's key is 128 characters,
1015
+ # and the maximum length for a tag's value is 256.
1016
+ #
1017
+ # </note>
1018
+ #
989
1019
  # @return [Types::CreateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
990
1020
  #
991
1021
  # * {Types::CreateNFSFileShareOutput#file_share_arn #file_share_arn} => String
@@ -1012,6 +1042,12 @@ module Aws::StorageGateway
1012
1042
  # read_only: false,
1013
1043
  # guess_mime_type_enabled: false,
1014
1044
  # requester_pays: false,
1045
+ # tags: [
1046
+ # {
1047
+ # key: "TagKey", # required
1048
+ # value: "TagValue", # required
1049
+ # },
1050
+ # ],
1015
1051
  # })
1016
1052
  #
1017
1053
  # @example Response structure
@@ -1047,7 +1083,7 @@ module Aws::StorageGateway
1047
1083
  #
1048
1084
  #
1049
1085
  #
1050
- # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
1086
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
1051
1087
  #
1052
1088
  # @option params [required, String] :client_token
1053
1089
  # A unique string value that you supply that is used by file gateway to
@@ -1116,6 +1152,17 @@ module Aws::StorageGateway
1116
1152
  # Valid values are `ActiveDirectory` or `GuestAccess`. The default is
1117
1153
  # `ActiveDirectory`.
1118
1154
  #
1155
+ # @option params [Array<Types::Tag>] :tags
1156
+ # A list of up to ten (10) tags can be assigned to the NFS file share.
1157
+ # Every tag is a key-value pair.
1158
+ #
1159
+ # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
1160
+ # representable in UTF-8 format, and the following special characters: +
1161
+ # - = . \_ : / @. The maximum length of a tag's key is 128 characters,
1162
+ # and the maximum length for a tag's value is 256.
1163
+ #
1164
+ # </note>
1165
+ #
1119
1166
  # @return [Types::CreateSMBFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1120
1167
  #
1121
1168
  # * {Types::CreateSMBFileShareOutput#file_share_arn #file_share_arn} => String
@@ -1137,6 +1184,12 @@ module Aws::StorageGateway
1137
1184
  # valid_user_list: ["FileShareUser"],
1138
1185
  # invalid_user_list: ["FileShareUser"],
1139
1186
  # authentication: "Authentication",
1187
+ # tags: [
1188
+ # {
1189
+ # key: "TagKey", # required
1190
+ # value: "TagValue", # required
1191
+ # },
1192
+ # ],
1140
1193
  # })
1141
1194
  #
1142
1195
  # @example Response structure
@@ -1183,9 +1236,9 @@ module Aws::StorageGateway
1183
1236
  #
1184
1237
  #
1185
1238
  #
1186
- # [1]: http://docs.aws.amazon.com/storagegateway/latest/userguide/managing-volumes.html#SchedulingSnapshot
1187
- # [2]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Operations.html
1188
- # [3]: http://docs.aws.amazon.com/storagegateway/latest/APIReference/Welcome.html
1239
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/managing-volumes.html#SchedulingSnapshot
1240
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Operations.html
1241
+ # [3]: https://docs.aws.amazon.com/storagegateway/latest/APIReference/Welcome.html
1189
1242
  #
1190
1243
  # @option params [required, String] :volume_arn
1191
1244
  # The Amazon Resource Name (ARN) of the volume. Use the ListVolumes
@@ -1262,8 +1315,15 @@ module Aws::StorageGateway
1262
1315
  # </note>
1263
1316
  #
1264
1317
  # @option params [required, String] :volume_arn
1318
+ # The Amazon Resource Name (ARN) of the iSCSI volume target. Use the
1319
+ # DescribeStorediSCSIVolumes operation to return to retrieve the
1320
+ # TargetARN for specified VolumeARN.
1265
1321
  #
1266
1322
  # @option params [required, String] :snapshot_description
1323
+ # Textual description of the snapshot that appears in the Amazon EC2
1324
+ # console, Elastic Block Store snapshots panel in the **Description**
1325
+ # field, and in the AWS Storage Gateway snapshot **Details** pane,
1326
+ # **Description** field
1267
1327
  #
1268
1328
  # @return [Types::CreateSnapshotFromVolumeRecoveryPointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1269
1329
  #
@@ -1336,7 +1396,7 @@ module Aws::StorageGateway
1336
1396
  #
1337
1397
  #
1338
1398
  #
1339
- # [1]: http://docs.aws.amazon.com/storagegateway/latest/userguide/API_ListLocalDisks.html
1399
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/API_ListLocalDisks.html
1340
1400
  #
1341
1401
  # @option params [String] :snapshot_id
1342
1402
  # The snapshot ID (e.g. "snap-1122aabb") of the snapshot to restore as
@@ -1347,7 +1407,7 @@ module Aws::StorageGateway
1347
1407
  #
1348
1408
  #
1349
1409
  #
1350
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
1410
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
1351
1411
  #
1352
1412
  # @option params [required, Boolean] :preserve_existing_data
1353
1413
  # Specify this field as true if you want to preserve the data on the
@@ -1357,11 +1417,14 @@ module Aws::StorageGateway
1357
1417
  # Valid Values: true, false
1358
1418
  #
1359
1419
  # @option params [required, String] :target_name
1360
- # The name of the iSCSI target used by initiators to connect to the
1361
- # target and as a suffix for the target ARN. For example, specifying
1362
- # `TargetName` as *myvolume* results in the target ARN of
1363
- # arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume.
1364
- # The target name must be unique across all volumes of a gateway.
1420
+ # The name of the iSCSI target used by an initiator to connect to a
1421
+ # volume and used as a suffix for the target ARN. For example,
1422
+ # specifying `TargetName` as *myvolume* results in the target ARN of
1423
+ # `arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume`.
1424
+ # The target name must be unique across all volumes on a gateway.
1425
+ #
1426
+ # If you don't specify a value, Storage Gateway uses the value that was
1427
+ # previously used for this volume as the new target name.
1365
1428
  #
1366
1429
  # @option params [required, String] :network_interface_id
1367
1430
  # The network interface of the gateway on which to expose the iSCSI
@@ -1850,9 +1913,10 @@ module Aws::StorageGateway
1850
1913
  #
1851
1914
  #
1852
1915
  #
1853
- # [1]: http://docs.aws.amazon.com/storagegateway/latest/userguide/WorkingWithSnapshots.html
1916
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/WorkingWithSnapshots.html
1854
1917
  #
1855
1918
  # @option params [required, String] :volume_arn
1919
+ # The volume which snapshot schedule to delete.
1856
1920
  #
1857
1921
  # @return [Types::DeleteSnapshotScheduleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1858
1922
  #
@@ -2005,7 +2069,7 @@ module Aws::StorageGateway
2005
2069
  #
2006
2070
  #
2007
2071
  #
2008
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
2072
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
2009
2073
  #
2010
2074
  # @option params [required, String] :volume_arn
2011
2075
  # The Amazon Resource Name (ARN) of the volume. Use the ListVolumes
@@ -2183,6 +2247,10 @@ module Aws::StorageGateway
2183
2247
  # sorted by volume Amazon Resource Name (ARN).
2184
2248
  #
2185
2249
  # @option params [required, Array<String>] :volume_arns
2250
+ # An array of strings where each string represents the Amazon Resource
2251
+ # Name (ARN) of a cached volume. All of the specified cached volumes
2252
+ # must from the same gateway. Use ListVolumes to get volume ARNs for a
2253
+ # gateway.
2186
2254
  #
2187
2255
  # @return [Types::DescribeCachediSCSIVolumesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2188
2256
  #
@@ -2333,6 +2401,7 @@ module Aws::StorageGateway
2333
2401
  # * {Types::DescribeGatewayInformationOutput#gateway_type #gateway_type} => String
2334
2402
  # * {Types::DescribeGatewayInformationOutput#next_update_availability_date #next_update_availability_date} => String
2335
2403
  # * {Types::DescribeGatewayInformationOutput#last_software_update #last_software_update} => String
2404
+ # * {Types::DescribeGatewayInformationOutput#tags #tags} => Array&lt;Types::Tag&gt;
2336
2405
  #
2337
2406
  #
2338
2407
  # @example Example: To describe metadata about the gateway
@@ -2381,6 +2450,9 @@ module Aws::StorageGateway
2381
2450
  # resp.gateway_type #=> String
2382
2451
  # resp.next_update_availability_date #=> String
2383
2452
  # resp.last_software_update #=> String
2453
+ # resp.tags #=> Array
2454
+ # resp.tags[0].key #=> String
2455
+ # resp.tags[0].value #=> String
2384
2456
  #
2385
2457
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformation AWS API Documentation
2386
2458
  #
@@ -2490,6 +2562,9 @@ module Aws::StorageGateway
2490
2562
  # resp.nfs_file_share_info_list[0].read_only #=> Boolean
2491
2563
  # resp.nfs_file_share_info_list[0].guess_mime_type_enabled #=> Boolean
2492
2564
  # resp.nfs_file_share_info_list[0].requester_pays #=> Boolean
2565
+ # resp.nfs_file_share_info_list[0].tags #=> Array
2566
+ # resp.nfs_file_share_info_list[0].tags[0].key #=> String
2567
+ # resp.nfs_file_share_info_list[0].tags[0].value #=> String
2493
2568
  #
2494
2569
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeNFSFileShares AWS API Documentation
2495
2570
  #
@@ -2540,6 +2615,9 @@ module Aws::StorageGateway
2540
2615
  # resp.smb_file_share_info_list[0].invalid_user_list #=> Array
2541
2616
  # resp.smb_file_share_info_list[0].invalid_user_list[0] #=> String
2542
2617
  # resp.smb_file_share_info_list[0].authentication #=> String
2618
+ # resp.smb_file_share_info_list[0].tags #=> Array
2619
+ # resp.smb_file_share_info_list[0].tags[0].key #=> String
2620
+ # resp.smb_file_share_info_list[0].tags[0].value #=> String
2543
2621
  #
2544
2622
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeSMBFileShares AWS API Documentation
2545
2623
  #
@@ -4679,6 +4757,7 @@ module Aws::StorageGateway
4679
4757
  # The name you configured for your gateway.
4680
4758
  #
4681
4759
  # @option params [String] :gateway_timezone
4760
+ # A value that indicates the time zone of the gateway.
4682
4761
  #
4683
4762
  # @return [Types::UpdateGatewayInformationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4684
4763
  #
@@ -4743,8 +4822,8 @@ module Aws::StorageGateway
4743
4822
  #
4744
4823
  #
4745
4824
  #
4746
- # [1]: http://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorWindowsClient.html#CustomizeWindowsiSCSISettings
4747
- # [2]: http://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorRedHatClient.html#CustomizeLinuxiSCSISettings
4825
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorWindowsClient.html#CustomizeWindowsiSCSISettings
4826
+ # [2]: https://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorRedHatClient.html#CustomizeLinuxiSCSISettings
4748
4827
  #
4749
4828
  # @option params [required, String] :gateway_arn
4750
4829
  # The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
@@ -4990,7 +5069,7 @@ module Aws::StorageGateway
4990
5069
  #
4991
5070
  #
4992
5071
  #
4993
- # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
5072
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
4994
5073
  #
4995
5074
  # @option params [required, String] :file_share_arn
4996
5075
  # The Amazon Resource Name (ARN) of the SMB file share that you want to
@@ -5213,7 +5292,7 @@ module Aws::StorageGateway
5213
5292
  params: params,
5214
5293
  config: config)
5215
5294
  context[:gem_name] = 'aws-sdk-storagegateway'
5216
- context[:gem_version] = '1.14.0'
5295
+ context[:gem_version] = '1.15.0'
5217
5296
  Seahorse::Client::Request.new(handlers, context)
5218
5297
  end
5219
5298
 
@@ -308,6 +308,7 @@ module Aws::StorageGateway
308
308
  ActivateGatewayInput.add_member(:gateway_type, Shapes::ShapeRef.new(shape: GatewayType, location_name: "GatewayType"))
309
309
  ActivateGatewayInput.add_member(:tape_drive_type, Shapes::ShapeRef.new(shape: TapeDriveType, location_name: "TapeDriveType"))
310
310
  ActivateGatewayInput.add_member(:medium_changer_type, Shapes::ShapeRef.new(shape: MediumChangerType, location_name: "MediumChangerType"))
311
+ ActivateGatewayInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
311
312
  ActivateGatewayInput.struct_class = Types::ActivateGatewayInput
312
313
 
313
314
  ActivateGatewayOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
@@ -420,6 +421,7 @@ module Aws::StorageGateway
420
421
  CreateNFSFileShareInput.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
421
422
  CreateNFSFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
422
423
  CreateNFSFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
424
+ CreateNFSFileShareInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
423
425
  CreateNFSFileShareInput.struct_class = Types::CreateNFSFileShareInput
424
426
 
425
427
  CreateNFSFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
@@ -439,6 +441,7 @@ module Aws::StorageGateway
439
441
  CreateSMBFileShareInput.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
440
442
  CreateSMBFileShareInput.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
441
443
  CreateSMBFileShareInput.add_member(:authentication, Shapes::ShapeRef.new(shape: Authentication, location_name: "Authentication"))
444
+ CreateSMBFileShareInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
442
445
  CreateSMBFileShareInput.struct_class = Types::CreateSMBFileShareInput
443
446
 
444
447
  CreateSMBFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
@@ -595,6 +598,7 @@ module Aws::StorageGateway
595
598
  DescribeGatewayInformationOutput.add_member(:gateway_type, Shapes::ShapeRef.new(shape: GatewayType, location_name: "GatewayType"))
596
599
  DescribeGatewayInformationOutput.add_member(:next_update_availability_date, Shapes::ShapeRef.new(shape: NextUpdateAvailabilityDate, location_name: "NextUpdateAvailabilityDate"))
597
600
  DescribeGatewayInformationOutput.add_member(:last_software_update, Shapes::ShapeRef.new(shape: LastSoftwareUpdate, location_name: "LastSoftwareUpdate"))
601
+ DescribeGatewayInformationOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
598
602
  DescribeGatewayInformationOutput.struct_class = Types::DescribeGatewayInformationOutput
599
603
 
600
604
  DescribeMaintenanceStartTimeInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
@@ -869,6 +873,7 @@ module Aws::StorageGateway
869
873
  NFSFileShareInfo.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
870
874
  NFSFileShareInfo.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
871
875
  NFSFileShareInfo.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
876
+ NFSFileShareInfo.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
872
877
  NFSFileShareInfo.struct_class = Types::NFSFileShareInfo
873
878
 
874
879
  NFSFileShareInfoList.member = Shapes::ShapeRef.new(shape: NFSFileShareInfo)
@@ -938,6 +943,7 @@ module Aws::StorageGateway
938
943
  SMBFileShareInfo.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
939
944
  SMBFileShareInfo.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
940
945
  SMBFileShareInfo.add_member(:authentication, Shapes::ShapeRef.new(shape: Authentication, location_name: "Authentication"))
946
+ SMBFileShareInfo.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
941
947
  SMBFileShareInfo.struct_class = Types::SMBFileShareInfo
942
948
 
943
949
  SMBFileShareInfoList.member = Shapes::ShapeRef.new(shape: SMBFileShareInfo)
@@ -35,6 +35,12 @@ module Aws::StorageGateway
35
35
  # gateway_type: "GatewayType",
36
36
  # tape_drive_type: "TapeDriveType",
37
37
  # medium_changer_type: "MediumChangerType",
38
+ # tags: [
39
+ # {
40
+ # key: "TagKey", # required
41
+ # value: "TagValue", # required
42
+ # },
43
+ # ],
38
44
  # }
39
45
  #
40
46
  # @!attribute [rw] activation_key
@@ -72,15 +78,12 @@ module Aws::StorageGateway
72
78
  # available regions and endpoints for AWS Storage Gateway, see
73
79
  # [Regions and Endpoints][1] in the *Amazon Web Services Glossary*.
74
80
  #
75
- # Valid Values: "us-east-1", "us-east-2", "us-west-1",
76
- # "us-west-2", "ca-central-1", "eu-west-1", "eu-central-1",
77
- # "eu-west-2", "eu-west-3", "ap-northeast-1",
78
- # "ap-northeast-2", "ap-southeast-1", "ap-southeast-2",
79
- # "ap-south-1", "sa-east-1"
81
+ # Valid Values: See [AWS Storage Gateway Regions and Endpoints][1] in
82
+ # the AWS General Reference.
80
83
  #
81
84
  #
82
85
  #
83
- # [1]: http://docs.aws.amazon.com/general/latest/gr/rande.html#sg_region
86
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html#sg_region
84
87
  # @return [String]
85
88
  #
86
89
  # @!attribute [rw] gateway_type
@@ -105,6 +108,18 @@ module Aws::StorageGateway
105
108
  # Valid Values: "STK-L700", "AWS-Gateway-VTL"
106
109
  # @return [String]
107
110
  #
111
+ # @!attribute [rw] tags
112
+ # A list of up to ten (10) tags assigned to the gateway may be
113
+ # specified. Every tag is a key-value pair.
114
+ #
115
+ # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
116
+ # representable in UTF-8 format, and the following special characters:
117
+ # + - = . \_ : / @. The maximum length of a tag's key is 128
118
+ # characters, and the maximum length for a tag's value is 256.
119
+ #
120
+ # </note>
121
+ # @return [Array<Types::Tag>]
122
+ #
108
123
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ActivateGatewayInput AWS API Documentation
109
124
  #
110
125
  class ActivateGatewayInput < Struct.new(
@@ -114,7 +129,8 @@ module Aws::StorageGateway
114
129
  :gateway_region,
115
130
  :gateway_type,
116
131
  :tape_drive_type,
117
- :medium_changer_type)
132
+ :medium_changer_type,
133
+ :tags)
118
134
  include Aws::Structure
119
135
  end
120
136
 
@@ -156,6 +172,9 @@ module Aws::StorageGateway
156
172
  # @return [String]
157
173
  #
158
174
  # @!attribute [rw] disk_ids
175
+ # An array of strings that identify disks that are to be configured as
176
+ # working storage. Each string have a minimum length of 1 and maximum
177
+ # length of 300. You can get the disk IDs from the ListLocalDisks API.
159
178
  # @return [Array<String>]
160
179
  #
161
180
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/AddCacheInput AWS API Documentation
@@ -204,7 +223,8 @@ module Aws::StorageGateway
204
223
  #
205
224
  # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
206
225
  # representable in UTF-8 format, and the following special characters:
207
- # + - = . \_ : / @.
226
+ # + - = . \_ : / @. The maximum length of a tag's key is 128
227
+ # characters, and the maximum length for a tag's value is 256.
208
228
  #
209
229
  # </note>
210
230
  # @return [Array<Types::Tag>]
@@ -245,6 +265,9 @@ module Aws::StorageGateway
245
265
  # @return [String]
246
266
  #
247
267
  # @!attribute [rw] disk_ids
268
+ # An array of strings that identify disks that are to be configured as
269
+ # working storage. Each string have a minimum length of 1 and maximum
270
+ # length of 300. You can get the disk IDs from the ListLocalDisks API.
248
271
  # @return [Array<String>]
249
272
  #
250
273
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/AddUploadBufferInput AWS API Documentation
@@ -418,7 +441,12 @@ module Aws::StorageGateway
418
441
  #
419
442
  # @!attribute [rw] volume_attachment_status
420
443
  # A value that indicates whether a storage volume is attached to or
421
- # detached from a gateway.
444
+ # detached from a gateway. For more information, see [Moving Your
445
+ # Volumes to a Different Gateway][1].
446
+ #
447
+ #
448
+ #
449
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/managing-volumes.html#attach-detach-volume
422
450
  # @return [String]
423
451
  #
424
452
  # @!attribute [rw] volume_size_in_bytes
@@ -464,10 +492,14 @@ module Aws::StorageGateway
464
492
  # @return [String]
465
493
  #
466
494
  # @!attribute [rw] target_name
467
- # The name of the iSCSI target that is used by an initiator to connect
468
- # to a volume and used as a suffix for the target ARN. For example,
495
+ # The name of the iSCSI target used by an initiator to connect to a
496
+ # volume and used as a suffix for the target ARN. For example,
469
497
  # specifying `TargetName` as *myvolume* results in the target ARN of
470
498
  # `arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume`.
499
+ # The target name must be unique across all volumes on a gateway.
500
+ #
501
+ # If you don't specify a value, Storage Gateway uses the value that
502
+ # was previously used for this volume as the new target name.
471
503
  # @return [String]
472
504
  #
473
505
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CachediSCSIVolume AWS API Documentation
@@ -642,15 +674,18 @@ module Aws::StorageGateway
642
674
  #
643
675
  #
644
676
  #
645
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
677
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
646
678
  # @return [String]
647
679
  #
648
680
  # @!attribute [rw] target_name
649
- # The name of the iSCSI target used by initiators to connect to the
650
- # target and as a suffix for the target ARN. For example, specifying
651
- # `TargetName` as *myvolume* results in the target ARN of
652
- # arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume.
653
- # The target name must be unique across all volumes of a gateway.
681
+ # The name of the iSCSI target used by an initiator to connect to a
682
+ # volume and used as a suffix for the target ARN. For example,
683
+ # specifying `TargetName` as *myvolume* results in the target ARN of
684
+ # `arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume`.
685
+ # The target name must be unique across all volumes on a gateway.
686
+ #
687
+ # If you don't specify a value, Storage Gateway uses the value that
688
+ # was previously used for this volume as the new target name.
654
689
  # @return [String]
655
690
  #
656
691
  # @!attribute [rw] source_volume_arn
@@ -744,6 +779,12 @@ module Aws::StorageGateway
744
779
  # read_only: false,
745
780
  # guess_mime_type_enabled: false,
746
781
  # requester_pays: false,
782
+ # tags: [
783
+ # {
784
+ # key: "TagKey", # required
785
+ # value: "TagValue", # required
786
+ # },
787
+ # ],
747
788
  # }
748
789
  #
749
790
  # @!attribute [rw] client_token
@@ -825,6 +866,18 @@ module Aws::StorageGateway
825
866
  # default value is `private`.
826
867
  # @return [Boolean]
827
868
  #
869
+ # @!attribute [rw] tags
870
+ # A list of up to ten (10) tags can be assigned to the NFS file share.
871
+ # Every tag is a key-value pair.
872
+ #
873
+ # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
874
+ # representable in UTF-8 format, and the following special characters:
875
+ # + - = . \_ : / @. The maximum length of a tag's key is 128
876
+ # characters, and the maximum length for a tag's value is 256.
877
+ #
878
+ # </note>
879
+ # @return [Array<Types::Tag>]
880
+ #
828
881
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateNFSFileShareInput AWS API Documentation
829
882
  #
830
883
  class CreateNFSFileShareInput < Struct.new(
@@ -841,7 +894,8 @@ module Aws::StorageGateway
841
894
  :squash,
842
895
  :read_only,
843
896
  :guess_mime_type_enabled,
844
- :requester_pays)
897
+ :requester_pays,
898
+ :tags)
845
899
  include Aws::Structure
846
900
  end
847
901
 
@@ -878,6 +932,12 @@ module Aws::StorageGateway
878
932
  # valid_user_list: ["FileShareUser"],
879
933
  # invalid_user_list: ["FileShareUser"],
880
934
  # authentication: "Authentication",
935
+ # tags: [
936
+ # {
937
+ # key: "TagKey", # required
938
+ # value: "TagValue", # required
939
+ # },
940
+ # ],
881
941
  # }
882
942
  #
883
943
  # @!attribute [rw] client_token
@@ -961,6 +1021,18 @@ module Aws::StorageGateway
961
1021
  # `ActiveDirectory`.
962
1022
  # @return [String]
963
1023
  #
1024
+ # @!attribute [rw] tags
1025
+ # A list of up to ten (10) tags can be assigned to the NFS file share.
1026
+ # Every tag is a key-value pair.
1027
+ #
1028
+ # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
1029
+ # representable in UTF-8 format, and the following special characters:
1030
+ # + - = . \_ : / @. The maximum length of a tag's key is 128
1031
+ # characters, and the maximum length for a tag's value is 256.
1032
+ #
1033
+ # </note>
1034
+ # @return [Array<Types::Tag>]
1035
+ #
964
1036
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateSMBFileShareInput AWS API Documentation
965
1037
  #
966
1038
  class CreateSMBFileShareInput < Struct.new(
@@ -977,7 +1049,8 @@ module Aws::StorageGateway
977
1049
  :requester_pays,
978
1050
  :valid_user_list,
979
1051
  :invalid_user_list,
980
- :authentication)
1052
+ :authentication,
1053
+ :tags)
981
1054
  include Aws::Structure
982
1055
  end
983
1056
 
@@ -1003,9 +1076,16 @@ module Aws::StorageGateway
1003
1076
  # }
1004
1077
  #
1005
1078
  # @!attribute [rw] volume_arn
1079
+ # The Amazon Resource Name (ARN) of the iSCSI volume target. Use the
1080
+ # DescribeStorediSCSIVolumes operation to return to retrieve the
1081
+ # TargetARN for specified VolumeARN.
1006
1082
  # @return [String]
1007
1083
  #
1008
1084
  # @!attribute [rw] snapshot_description
1085
+ # Textual description of the snapshot that appears in the Amazon EC2
1086
+ # console, Elastic Block Store snapshots panel in the **Description**
1087
+ # field, and in the AWS Storage Gateway snapshot **Details** pane,
1088
+ # **Description** field
1009
1089
  # @return [String]
1010
1090
  #
1011
1091
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateSnapshotFromVolumeRecoveryPointInput AWS API Documentation
@@ -1017,12 +1097,17 @@ module Aws::StorageGateway
1017
1097
  end
1018
1098
 
1019
1099
  # @!attribute [rw] snapshot_id
1100
+ # The ID of the snapshot.
1020
1101
  # @return [String]
1021
1102
  #
1022
1103
  # @!attribute [rw] volume_arn
1104
+ # The Amazon Resource Name (ARN) of the iSCSI volume target. Use the
1105
+ # DescribeStorediSCSIVolumes operation to return to retrieve the
1106
+ # TargetARN for specified VolumeARN.
1023
1107
  # @return [String]
1024
1108
  #
1025
1109
  # @!attribute [rw] volume_recovery_point_time
1110
+ # The time the volume was created from the recovery point.
1026
1111
  # @return [String]
1027
1112
  #
1028
1113
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateSnapshotFromVolumeRecoveryPointOutput AWS API Documentation
@@ -1128,7 +1213,7 @@ module Aws::StorageGateway
1128
1213
  #
1129
1214
  #
1130
1215
  #
1131
- # [1]: http://docs.aws.amazon.com/storagegateway/latest/userguide/API_ListLocalDisks.html
1216
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/API_ListLocalDisks.html
1132
1217
  # @return [String]
1133
1218
  #
1134
1219
  # @!attribute [rw] snapshot_id
@@ -1141,7 +1226,7 @@ module Aws::StorageGateway
1141
1226
  #
1142
1227
  #
1143
1228
  #
1144
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
1229
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html
1145
1230
  # @return [String]
1146
1231
  #
1147
1232
  # @!attribute [rw] preserve_existing_data
@@ -1153,11 +1238,14 @@ module Aws::StorageGateway
1153
1238
  # @return [Boolean]
1154
1239
  #
1155
1240
  # @!attribute [rw] target_name
1156
- # The name of the iSCSI target used by initiators to connect to the
1157
- # target and as a suffix for the target ARN. For example, specifying
1158
- # `TargetName` as *myvolume* results in the target ARN of
1159
- # arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume.
1160
- # The target name must be unique across all volumes of a gateway.
1241
+ # The name of the iSCSI target used by an initiator to connect to a
1242
+ # volume and used as a suffix for the target ARN. For example,
1243
+ # specifying `TargetName` as *myvolume* results in the target ARN of
1244
+ # `arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume`.
1245
+ # The target name must be unique across all volumes on a gateway.
1246
+ #
1247
+ # If you don't specify a value, Storage Gateway uses the value that
1248
+ # was previously used for this volume as the new target name.
1161
1249
  # @return [String]
1162
1250
  #
1163
1251
  # @!attribute [rw] network_interface_id
@@ -1567,6 +1655,7 @@ module Aws::StorageGateway
1567
1655
  # }
1568
1656
  #
1569
1657
  # @!attribute [rw] volume_arn
1658
+ # The volume which snapshot schedule to delete.
1570
1659
  # @return [String]
1571
1660
  #
1572
1661
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DeleteSnapshotScheduleInput AWS API Documentation
@@ -1577,6 +1666,7 @@ module Aws::StorageGateway
1577
1666
  end
1578
1667
 
1579
1668
  # @!attribute [rw] volume_arn
1669
+ # The volume which snapshot schedule was deleted.
1580
1670
  # @return [String]
1581
1671
  #
1582
1672
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DeleteSnapshotScheduleOutput AWS API Documentation
@@ -1771,18 +1861,31 @@ module Aws::StorageGateway
1771
1861
  # @return [String]
1772
1862
  #
1773
1863
  # @!attribute [rw] disk_ids
1864
+ # An array of strings that identify disks that are to be configured as
1865
+ # working storage. Each string have a minimum length of 1 and maximum
1866
+ # length of 300. You can get the disk IDs from the ListLocalDisks API.
1774
1867
  # @return [Array<String>]
1775
1868
  #
1776
1869
  # @!attribute [rw] cache_allocated_in_bytes
1870
+ # The amount of cache in bytes allocated to the a gateway.
1777
1871
  # @return [Integer]
1778
1872
  #
1779
1873
  # @!attribute [rw] cache_used_percentage
1874
+ # Percent use of the gateway's cache storage. This metric applies
1875
+ # only to the gateway-cached volume setup. The sample is taken at the
1876
+ # end of the reporting period.
1780
1877
  # @return [Float]
1781
1878
  #
1782
1879
  # @!attribute [rw] cache_dirty_percentage
1880
+ # The file share's contribution to the overall percentage of the
1881
+ # gateway's cache that has not been persisted to AWS. The sample is
1882
+ # taken at the end of the reporting period.
1783
1883
  # @return [Float]
1784
1884
  #
1785
1885
  # @!attribute [rw] cache_hit_percentage
1886
+ # Percent of application read operations from the file shares that are
1887
+ # served from cache. The sample is taken at the end of the reporting
1888
+ # period.
1786
1889
  # @return [Float]
1787
1890
  #
1788
1891
  # @!attribute [rw] cache_miss_percentage
@@ -1809,6 +1912,10 @@ module Aws::StorageGateway
1809
1912
  # }
1810
1913
  #
1811
1914
  # @!attribute [rw] volume_arns
1915
+ # An array of strings where each string represents the Amazon Resource
1916
+ # Name (ARN) of a cached volume. All of the specified cached volumes
1917
+ # must from the same gateway. Use ListVolumes to get volume ARNs for a
1918
+ # gateway.
1812
1919
  # @return [Array<String>]
1813
1920
  #
1814
1921
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeCachediSCSIVolumesInput AWS API Documentation
@@ -1953,6 +2060,13 @@ module Aws::StorageGateway
1953
2060
  # return a value in the response.
1954
2061
  # @return [String]
1955
2062
  #
2063
+ # @!attribute [rw] tags
2064
+ # A list of up to ten (10) tags assigned to the gateway are returned,
2065
+ # sorted alphabetically by key name. Every tag is a key-value pair.
2066
+ # For a gateway with more than 10 tags assigned, you can view all tags
2067
+ # using the `ListTagsForResource` API.
2068
+ # @return [Array<Types::Tag>]
2069
+ #
1956
2070
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformationOutput AWS API Documentation
1957
2071
  #
1958
2072
  class DescribeGatewayInformationOutput < Struct.new(
@@ -1964,7 +2078,8 @@ module Aws::StorageGateway
1964
2078
  :gateway_network_interfaces,
1965
2079
  :gateway_type,
1966
2080
  :next_update_availability_date,
1967
- :last_software_update)
2081
+ :last_software_update,
2082
+ :tags)
1968
2083
  include Aws::Structure
1969
2084
  end
1970
2085
 
@@ -2023,6 +2138,9 @@ module Aws::StorageGateway
2023
2138
  # @return [Integer]
2024
2139
  #
2025
2140
  # @!attribute [rw] timezone
2141
+ # A value that indicates the time zone that is set for the gateway.
2142
+ # The start time and day of week specified should be in the time zone
2143
+ # of the gateway.
2026
2144
  # @return [String]
2027
2145
  #
2028
2146
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeMaintenanceStartTimeOutput AWS API Documentation
@@ -2169,18 +2287,26 @@ module Aws::StorageGateway
2169
2287
  end
2170
2288
 
2171
2289
  # @!attribute [rw] volume_arn
2290
+ # The Amazon Resource Name (ARN) of the volume that was specified in
2291
+ # the request.
2172
2292
  # @return [String]
2173
2293
  #
2174
2294
  # @!attribute [rw] start_at
2295
+ # The hour of the day at which the snapshot schedule begins
2296
+ # represented as *hh*, where *hh* is the hour (0 to 23). The hour of
2297
+ # the day is in the time zone of the gateway.
2175
2298
  # @return [Integer]
2176
2299
  #
2177
2300
  # @!attribute [rw] recurrence_in_hours
2301
+ # The number of hours between snapshots.
2178
2302
  # @return [Integer]
2179
2303
  #
2180
2304
  # @!attribute [rw] description
2305
+ # The snapshot description.
2181
2306
  # @return [String]
2182
2307
  #
2183
2308
  # @!attribute [rw] timezone
2309
+ # A value that indicates the time zone of the gateway.
2184
2310
  # @return [String]
2185
2311
  #
2186
2312
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeSnapshotScheduleOutput AWS API Documentation
@@ -2219,6 +2345,59 @@ module Aws::StorageGateway
2219
2345
  end
2220
2346
 
2221
2347
  # @!attribute [rw] stored_iscsi_volumes
2348
+ # Describes a single unit of output from DescribeStorediSCSIVolumes.
2349
+ # The following fields are returned:
2350
+ #
2351
+ # * **ChapEnabled**\: Indicates whether mutual CHAP is enabled for the
2352
+ # iSCSI target.
2353
+ #
2354
+ # * **LunNumber**\: The logical disk number.
2355
+ #
2356
+ # * **NetworkInterfaceId**\: The network interface ID of the stored
2357
+ # volume that initiator use to map the stored volume as an iSCSI
2358
+ # target.
2359
+ #
2360
+ # * **NetworkInterfacePort**\: The port used to communicate with iSCSI
2361
+ # targets.
2362
+ #
2363
+ # * **PreservedExistingData**\: Indicates if when the stored volume
2364
+ # was created, existing data on the underlying local disk was
2365
+ # preserved.
2366
+ #
2367
+ # * **SourceSnapshotId**\: If the stored volume was created from a
2368
+ # snapshot, this field contains the snapshot ID used, e.g.
2369
+ # snap-1122aabb. Otherwise, this field is not included.
2370
+ #
2371
+ # * **StorediSCSIVolumes**\: An array of StorediSCSIVolume objects
2372
+ # where each object contains metadata about one stored volume.
2373
+ #
2374
+ # * **TargetARN**\: The Amazon Resource Name (ARN) of the volume
2375
+ # target.
2376
+ #
2377
+ # * **VolumeARN**\: The Amazon Resource Name (ARN) of the stored
2378
+ # volume.
2379
+ #
2380
+ # * **VolumeDiskId**\: The disk ID of the local disk that was
2381
+ # specified in the CreateStorediSCSIVolume operation.
2382
+ #
2383
+ # * **VolumeId**\: The unique identifier of the storage volume, e.g.
2384
+ # vol-1122AABB.
2385
+ #
2386
+ # * **VolumeiSCSIAttributes**\: An VolumeiSCSIAttributes object that
2387
+ # represents a collection of iSCSI attributes for one stored volume.
2388
+ #
2389
+ # * **VolumeProgress**\: Represents the percentage complete if the
2390
+ # volume is restoring or bootstrapping that represents the percent
2391
+ # of data transferred. This field does not appear in the response if
2392
+ # the stored volume is not restoring or bootstrapping.
2393
+ #
2394
+ # * **VolumeSizeInBytes**\: The size of the volume in bytes.
2395
+ #
2396
+ # * **VolumeStatus**\: One of the `VolumeStatus` values that indicates
2397
+ # the state of the volume.
2398
+ #
2399
+ # * **VolumeType**\: One of the enumeration values describing the type
2400
+ # of the volume. Currently, on STORED volumes are supported.
2222
2401
  # @return [Array<Types::StorediSCSIVolume>]
2223
2402
  #
2224
2403
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeStorediSCSIVolumesOutput AWS API Documentation
@@ -2452,12 +2631,20 @@ module Aws::StorageGateway
2452
2631
  # @return [String]
2453
2632
  #
2454
2633
  # @!attribute [rw] disk_ids
2634
+ # An array of the gateway's local disk IDs that are configured as
2635
+ # working storage. Each local disk ID is specified as a string
2636
+ # (minimum length of 1 and maximum length of 300). If no local disks
2637
+ # are configured as working storage, then the DiskIds array is empty.
2455
2638
  # @return [Array<String>]
2456
2639
  #
2457
2640
  # @!attribute [rw] upload_buffer_used_in_bytes
2641
+ # The total number of bytes being used in the gateway's upload
2642
+ # buffer.
2458
2643
  # @return [Integer]
2459
2644
  #
2460
2645
  # @!attribute [rw] upload_buffer_allocated_in_bytes
2646
+ # The total number of bytes allocated in the gateway's as upload
2647
+ # buffer.
2461
2648
  # @return [Integer]
2462
2649
  #
2463
2650
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeUploadBufferOutput AWS API Documentation
@@ -3005,9 +3192,13 @@ module Aws::StorageGateway
3005
3192
  end
3006
3193
 
3007
3194
  # @!attribute [rw] gateways
3195
+ # An array of GatewayInfo objects.
3008
3196
  # @return [Array<Types::GatewayInfo>]
3009
3197
  #
3010
3198
  # @!attribute [rw] marker
3199
+ # Use the marker in your next request to fetch the next set of
3200
+ # gateways in the list. If there are no more gateways to list, this
3201
+ # field does not appear in the response.
3011
3202
  # @return [String]
3012
3203
  #
3013
3204
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListGatewaysOutput AWS API Documentation
@@ -3045,6 +3236,11 @@ module Aws::StorageGateway
3045
3236
  # @return [String]
3046
3237
  #
3047
3238
  # @!attribute [rw] disks
3239
+ # A JSON object containing the following fields:
3240
+ #
3241
+ # * ListLocalDisksOutput$Disks
3242
+ #
3243
+ # ^
3048
3244
  # @return [Array<Types::Disk>]
3049
3245
  #
3050
3246
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListLocalDisksOutput AWS API Documentation
@@ -3244,6 +3440,7 @@ module Aws::StorageGateway
3244
3440
  # @return [String]
3245
3441
  #
3246
3442
  # @!attribute [rw] volume_recovery_point_infos
3443
+ # An array of VolumeRecoveryPointInfo objects.
3247
3444
  # @return [Array<Types::VolumeRecoveryPointInfo>]
3248
3445
  #
3249
3446
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListVolumeRecoveryPointsOutput AWS API Documentation
@@ -3294,15 +3491,27 @@ module Aws::StorageGateway
3294
3491
  include Aws::Structure
3295
3492
  end
3296
3493
 
3494
+ # A JSON object containing the following fields:
3495
+ #
3496
+ # * ListVolumesOutput$Marker
3497
+ #
3498
+ # * ListVolumesOutput$VolumeInfos
3499
+ #
3297
3500
  # @!attribute [rw] gateway_arn
3298
3501
  # The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
3299
3502
  # operation to return a list of gateways for your account and region.
3300
3503
  # @return [String]
3301
3504
  #
3302
3505
  # @!attribute [rw] marker
3506
+ # Use the marker in your next request to continue pagination of iSCSI
3507
+ # volumes. If there are no more volumes to list, this field does not
3508
+ # appear in the response body.
3303
3509
  # @return [String]
3304
3510
  #
3305
3511
  # @!attribute [rw] volume_infos
3512
+ # An array of VolumeInfo objects, where each object describes an iSCSI
3513
+ # volume. If no volumes are defined for the gateway, then
3514
+ # `VolumeInfos` is an empty array "\[\]".
3306
3515
  # @return [Array<Types::VolumeInfo>]
3307
3516
  #
3308
3517
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListVolumesOutput AWS API Documentation
@@ -3464,6 +3673,13 @@ module Aws::StorageGateway
3464
3673
  # default value is `private`.
3465
3674
  # @return [Boolean]
3466
3675
  #
3676
+ # @!attribute [rw] tags
3677
+ # A list of up to ten (10) tags assigned to the NFS file share are
3678
+ # returned, sorted alphabetically by key name. Every tag is a
3679
+ # key-value pair. For a gateway with more than 10 tags assigned, you
3680
+ # can view all tags using the `ListTagsForResource` API.
3681
+ # @return [Array<Types::Tag>]
3682
+ #
3467
3683
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/NFSFileShareInfo AWS API Documentation
3468
3684
  #
3469
3685
  class NFSFileShareInfo < Struct.new(
@@ -3483,7 +3699,8 @@ module Aws::StorageGateway
3483
3699
  :squash,
3484
3700
  :read_only,
3485
3701
  :guess_mime_type_enabled,
3486
- :requester_pays)
3702
+ :requester_pays,
3703
+ :tags)
3487
3704
  include Aws::Structure
3488
3705
  end
3489
3706
 
@@ -3871,6 +4088,13 @@ module Aws::StorageGateway
3871
4088
  # `ActiveDirectory`.
3872
4089
  # @return [String]
3873
4090
  #
4091
+ # @!attribute [rw] tags
4092
+ # A list of up to ten (10) tags assigned to the SMB file share are
4093
+ # returned, sorted alphabetically by key name. Every tag is a
4094
+ # key-value pair. For a gateway with more than 10 tags assigned, you
4095
+ # can view all tags using the `ListTagsForResource` API.
4096
+ # @return [Array<Types::Tag>]
4097
+ #
3874
4098
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/SMBFileShareInfo AWS API Documentation
3875
4099
  #
3876
4100
  class SMBFileShareInfo < Struct.new(
@@ -3890,7 +4114,8 @@ module Aws::StorageGateway
3890
4114
  :requester_pays,
3891
4115
  :valid_user_list,
3892
4116
  :invalid_user_list,
3893
- :authentication)
4117
+ :authentication,
4118
+ :tags)
3894
4119
  include Aws::Structure
3895
4120
  end
3896
4121
 
@@ -4085,7 +4310,13 @@ module Aws::StorageGateway
4085
4310
  #
4086
4311
  # @!attribute [rw] volume_attachment_status
4087
4312
  # A value that indicates whether a storage volume is attached to,
4088
- # detached from, or is in the process of detaching from a gateway.
4313
+ # detached from, or is in the process of detaching from a gateway. For
4314
+ # more information, see [Moving Your Volumes to a Different
4315
+ # Gateway][1].
4316
+ #
4317
+ #
4318
+ #
4319
+ # [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/managing-volumes.html#attach-detach-volume
4089
4320
  # @return [String]
4090
4321
  #
4091
4322
  # @!attribute [rw] volume_size_in_bytes
@@ -4143,10 +4374,14 @@ module Aws::StorageGateway
4143
4374
  # @return [String]
4144
4375
  #
4145
4376
  # @!attribute [rw] target_name
4146
- # The name of the iSCSI target that is used by an initiator to connect
4147
- # to a volume and used as a suffix for the target ARN. For example,
4377
+ # The name of the iSCSI target used by an initiator to connect to a
4378
+ # volume and used as a suffix for the target ARN. For example,
4148
4379
  # specifying `TargetName` as *myvolume* results in the target ARN of
4149
4380
  # `arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume`.
4381
+ # The target name must be unique across all volumes on a gateway.
4382
+ #
4383
+ # If you don't specify a value, Storage Gateway uses the value that
4384
+ # was previously used for this volume as the new target name.
4150
4385
  # @return [String]
4151
4386
  #
4152
4387
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/StorediSCSIVolume AWS API Documentation
@@ -4170,6 +4405,10 @@ module Aws::StorageGateway
4170
4405
  include Aws::Structure
4171
4406
  end
4172
4407
 
4408
+ # A key-value pair that helps you manage, filter, and search for your
4409
+ # resource. Allowed characters: letters, white space, and numbers,
4410
+ # representable in UTF-8, and the following characters: + - = . \_ : /
4411
+ #
4173
4412
  # @note When making an API call, you may pass Tag
4174
4413
  # data as a hash:
4175
4414
  #
@@ -4179,9 +4418,11 @@ module Aws::StorageGateway
4179
4418
  # }
4180
4419
  #
4181
4420
  # @!attribute [rw] key
4421
+ # Tag key (String). The key can't start with aws:.
4182
4422
  # @return [String]
4183
4423
  #
4184
4424
  # @!attribute [rw] value
4425
+ # Value of the tag key.
4185
4426
  # @return [String]
4186
4427
  #
4187
4428
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/Tag AWS API Documentation
@@ -4374,6 +4615,7 @@ module Aws::StorageGateway
4374
4615
  # @return [Integer]
4375
4616
  #
4376
4617
  # @!attribute [rw] tape_status
4618
+ # The status of the virtual tapes.
4377
4619
  # @return [String]
4378
4620
  #
4379
4621
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/TapeRecoveryPointInfo AWS API Documentation
@@ -4539,6 +4781,7 @@ module Aws::StorageGateway
4539
4781
  # @return [String]
4540
4782
  #
4541
4783
  # @!attribute [rw] gateway_timezone
4784
+ # A value that indicates the time zone of the gateway.
4542
4785
  # @return [String]
4543
4786
  #
4544
4787
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateGatewayInformationInput AWS API Documentation
@@ -4558,6 +4801,7 @@ module Aws::StorageGateway
4558
4801
  # @return [String]
4559
4802
  #
4560
4803
  # @!attribute [rw] gateway_name
4804
+ # The name you configured for your gateway.
4561
4805
  # @return [String]
4562
4806
  #
4563
4807
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateGatewayInformationOutput AWS API Documentation
@@ -4947,6 +5191,8 @@ module Aws::StorageGateway
4947
5191
  # A JSON object containing the of the updated storage volume.
4948
5192
  #
4949
5193
  # @!attribute [rw] volume_arn
5194
+ # The Amazon Resource Name (ARN) of the volume. Use the ListVolumes
5195
+ # operation to return a list of gateway volumes.
4950
5196
  # @return [String]
4951
5197
  #
4952
5198
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateSnapshotScheduleOutput AWS API Documentation
@@ -5005,12 +5251,16 @@ module Aws::StorageGateway
5005
5251
  # @return [String]
5006
5252
  #
5007
5253
  # @!attribute [rw] vtl_device_type
5254
+ # Specifies the type of device that the VTL device emulates.
5008
5255
  # @return [String]
5009
5256
  #
5010
5257
  # @!attribute [rw] vtl_device_vendor
5258
+ # Specifies the vendor of the device that the VTL device object
5259
+ # emulates.
5011
5260
  # @return [String]
5012
5261
  #
5013
5262
  # @!attribute [rw] vtl_device_product_identifier
5263
+ # Specifies the model number of device that the VTL device emulates.
5014
5264
  # @return [String]
5015
5265
  #
5016
5266
  # @!attribute [rw] device_iscsi_attributes
@@ -5064,6 +5314,8 @@ module Aws::StorageGateway
5064
5314
  # @return [String]
5065
5315
  #
5066
5316
  # @!attribute [rw] volume_type
5317
+ # One of the VolumeType enumeration values describing the type of the
5318
+ # volume.
5067
5319
  # @return [String]
5068
5320
  #
5069
5321
  # @!attribute [rw] volume_size_in_bytes
@@ -5074,6 +5326,8 @@ module Aws::StorageGateway
5074
5326
  # @return [Integer]
5075
5327
  #
5076
5328
  # @!attribute [rw] volume_attachment_status
5329
+ # One of the VolumeStatus values that indicates the state of the
5330
+ # storage volume.
5077
5331
  # @return [String]
5078
5332
  #
5079
5333
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/VolumeInfo AWS API Documentation
@@ -5089,16 +5343,27 @@ module Aws::StorageGateway
5089
5343
  include Aws::Structure
5090
5344
  end
5091
5345
 
5346
+ # Describes a storage volume recovery point object.
5347
+ #
5092
5348
  # @!attribute [rw] volume_arn
5349
+ # The Amazon Resource Name (ARN) of the volume target.
5093
5350
  # @return [String]
5094
5351
  #
5095
5352
  # @!attribute [rw] volume_size_in_bytes
5353
+ # The size of the volume in bytes.
5096
5354
  # @return [Integer]
5097
5355
  #
5098
5356
  # @!attribute [rw] volume_usage_in_bytes
5357
+ # The size of the data stored on the volume in bytes.
5358
+ #
5359
+ # <note markdown="1"> This value is not available for volumes created prior to May 13,
5360
+ # 2015, until you store data on the volume.
5361
+ #
5362
+ # </note>
5099
5363
  # @return [Integer]
5100
5364
  #
5101
5365
  # @!attribute [rw] volume_recovery_point_time
5366
+ # The time the recovery point was taken.
5102
5367
  # @return [String]
5103
5368
  #
5104
5369
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/VolumeRecoveryPointInfo AWS API Documentation
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.14.0
4
+ version: 1.15.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: 2019-01-14 00:00:00.000000000 Z
11
+ date: 2019-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core