aws-sdk-storagegateway 1.19.0 → 1.20.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/lib/aws-sdk-storagegateway.rb +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +152 -25
- data/lib/aws-sdk-storagegateway/client_api.rb +14 -1
- data/lib/aws-sdk-storagegateway/types.rb +215 -36
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 599837e491af7e6784e3fc3a11f4eb2c5b1629a2
|
4
|
+
data.tar.gz: 8e1b7df737229c68d5b1a891894bbc69373bedd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 537dc82648c9f6b1f76e1c2e3559671e4626b27c5f2b1fe2e8d68944f6224f3cd9e08ae720651fd3d42270a9f92914593fd2b54e8aa4b3c7fad05a47f3819449
|
7
|
+
data.tar.gz: e20d04c0126cab86b9e8e4ebe555bfa8b8a6b500b1e2bdb3903d33ba592931b292206fb30467788f973d35608782846b43a90554e0ad21e47e40091318a65a6c
|
@@ -329,7 +329,7 @@ module Aws::StorageGateway
|
|
329
329
|
# Valid Values: "STK-L700", "AWS-Gateway-VTL"
|
330
330
|
#
|
331
331
|
# @option params [Array<Types::Tag>] :tags
|
332
|
-
# A list of up to
|
332
|
+
# A list of up to 50 tags that can be assigned to the gateway. Each tag
|
333
333
|
# is a key-value pair.
|
334
334
|
#
|
335
335
|
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
@@ -472,7 +472,7 @@ module Aws::StorageGateway
|
|
472
472
|
#
|
473
473
|
# * NFS and SMB file shares
|
474
474
|
#
|
475
|
-
# You can create a maximum of
|
475
|
+
# You can create a maximum of 50 tags for each resource. Virtual tapes
|
476
476
|
# and storage volumes that are recovered to a new gateway maintain their
|
477
477
|
# tags.
|
478
478
|
#
|
@@ -914,6 +914,17 @@ module Aws::StorageGateway
|
|
914
914
|
# server side encryption. This value can only be set when KMSEncrypted
|
915
915
|
# is true. Optional.
|
916
916
|
#
|
917
|
+
# @option params [Array<Types::Tag>] :tags
|
918
|
+
# A list of up to 50 tags that can be assigned to a cached volume. Each
|
919
|
+
# tag is a key-value pair.
|
920
|
+
#
|
921
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
922
|
+
# representable in UTF-8 format, and the following special characters: +
|
923
|
+
# - = . \_ : / @. The maximum length of a tag's key is 128 characters,
|
924
|
+
# and the maximum length for a tag's value is 256.
|
925
|
+
#
|
926
|
+
# </note>
|
927
|
+
#
|
917
928
|
# @return [Types::CreateCachediSCSIVolumeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
918
929
|
#
|
919
930
|
# * {Types::CreateCachediSCSIVolumeOutput#volume_arn #volume_arn} => String
|
@@ -951,6 +962,12 @@ module Aws::StorageGateway
|
|
951
962
|
# client_token: "ClientToken", # required
|
952
963
|
# kms_encrypted: false,
|
953
964
|
# kms_key: "KMSKey",
|
965
|
+
# tags: [
|
966
|
+
# {
|
967
|
+
# key: "TagKey", # required
|
968
|
+
# value: "TagValue", # required
|
969
|
+
# },
|
970
|
+
# ],
|
954
971
|
# })
|
955
972
|
#
|
956
973
|
# @example Response structure
|
@@ -1045,12 +1062,20 @@ module Aws::StorageGateway
|
|
1045
1062
|
# guessing, and otherwise to false. The default value is true.
|
1046
1063
|
#
|
1047
1064
|
# @option params [Boolean] :requester_pays
|
1048
|
-
# A value that sets the
|
1049
|
-
#
|
1050
|
-
#
|
1065
|
+
# A value that sets who pays the cost of the request and the cost
|
1066
|
+
# associated with data download from the S3 bucket. If this value is set
|
1067
|
+
# to true, the requester pays the costs. Otherwise the S3 bucket owner
|
1068
|
+
# pays. However, the S3 bucket owner always pays the cost of storing
|
1069
|
+
# data.
|
1070
|
+
#
|
1071
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
1072
|
+
# file share, so make sure that the configuration on the file share is
|
1073
|
+
# the same as the S3 bucket configuration.
|
1074
|
+
#
|
1075
|
+
# </note>
|
1051
1076
|
#
|
1052
1077
|
# @option params [Array<Types::Tag>] :tags
|
1053
|
-
# A list of up to
|
1078
|
+
# A list of up to 50 tags that can be assigned to the NFS file share.
|
1054
1079
|
# Each tag is a key-value pair.
|
1055
1080
|
#
|
1056
1081
|
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
@@ -1174,9 +1199,17 @@ module Aws::StorageGateway
|
|
1174
1199
|
# guessing, and otherwise to false. The default value is true.
|
1175
1200
|
#
|
1176
1201
|
# @option params [Boolean] :requester_pays
|
1177
|
-
# A value that sets the
|
1178
|
-
#
|
1179
|
-
#
|
1202
|
+
# A value that sets who pays the cost of the request and the cost
|
1203
|
+
# associated with data download from the S3 bucket. If this value is set
|
1204
|
+
# to true, the requester pays the costs. Otherwise the S3 bucket owner
|
1205
|
+
# pays. However, the S3 bucket owner always pays the cost of storing
|
1206
|
+
# data.
|
1207
|
+
#
|
1208
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
1209
|
+
# file share, so make sure that the configuration on the file share is
|
1210
|
+
# the same as the S3 bucket configuration.
|
1211
|
+
#
|
1212
|
+
# </note>
|
1180
1213
|
#
|
1181
1214
|
# @option params [Array<String>] :valid_user_list
|
1182
1215
|
# A list of users or groups in the Active Directory that are allowed to
|
@@ -1197,7 +1230,7 @@ module Aws::StorageGateway
|
|
1197
1230
|
# `ActiveDirectory`.
|
1198
1231
|
#
|
1199
1232
|
# @option params [Array<Types::Tag>] :tags
|
1200
|
-
# A list of up to
|
1233
|
+
# A list of up to 50 tags that can be assigned to the NFS file share.
|
1201
1234
|
# Each tag is a key-value pair.
|
1202
1235
|
#
|
1203
1236
|
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
@@ -1255,7 +1288,7 @@ module Aws::StorageGateway
|
|
1255
1288
|
# snapshots of your data to Amazon Simple Storage (S3) for durable
|
1256
1289
|
# off-site recovery, as well as import the data to an Amazon Elastic
|
1257
1290
|
# Block Store (EBS) volume in Amazon Elastic Compute Cloud (EC2). You
|
1258
|
-
# can take snapshots of your gateway volume on a scheduled or ad
|
1291
|
+
# can take snapshots of your gateway volume on a scheduled or ad hoc
|
1259
1292
|
# basis. This API enables you to take ad-hoc snapshot. For more
|
1260
1293
|
# information, see [Editing a Snapshot Schedule][1].
|
1261
1294
|
#
|
@@ -1487,6 +1520,17 @@ module Aws::StorageGateway
|
|
1487
1520
|
# server side encryption. This value can only be set when KMSEncrypted
|
1488
1521
|
# is true. Optional.
|
1489
1522
|
#
|
1523
|
+
# @option params [Array<Types::Tag>] :tags
|
1524
|
+
# A list of up to 50 tags that can be assigned to a stored volume. Each
|
1525
|
+
# tag is a key-value pair.
|
1526
|
+
#
|
1527
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
1528
|
+
# representable in UTF-8 format, and the following special characters: +
|
1529
|
+
# - = . \_ : / @. The maximum length of a tag's key is 128 characters,
|
1530
|
+
# and the maximum length for a tag's value is 256.
|
1531
|
+
#
|
1532
|
+
# </note>
|
1533
|
+
#
|
1490
1534
|
# @return [Types::CreateStorediSCSIVolumeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1491
1535
|
#
|
1492
1536
|
# * {Types::CreateStorediSCSIVolumeOutput#volume_arn #volume_arn} => String
|
@@ -1525,6 +1569,12 @@ module Aws::StorageGateway
|
|
1525
1569
|
# network_interface_id: "NetworkInterfaceId", # required
|
1526
1570
|
# kms_encrypted: false,
|
1527
1571
|
# kms_key: "KMSKey",
|
1572
|
+
# tags: [
|
1573
|
+
# {
|
1574
|
+
# key: "TagKey", # required
|
1575
|
+
# value: "TagValue", # required
|
1576
|
+
# },
|
1577
|
+
# ],
|
1528
1578
|
# })
|
1529
1579
|
#
|
1530
1580
|
# @example Response structure
|
@@ -1592,6 +1642,17 @@ module Aws::StorageGateway
|
|
1592
1642
|
#
|
1593
1643
|
# Valid values: "GLACIER", "DEEP\_ARCHIVE"
|
1594
1644
|
#
|
1645
|
+
# @option params [Array<Types::Tag>] :tags
|
1646
|
+
# A list of up to 50 tags that can be assigned to a virtual tape that
|
1647
|
+
# has a barcode. Each tag is a key-value pair.
|
1648
|
+
#
|
1649
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
1650
|
+
# representable in UTF-8 format, and the following special characters: +
|
1651
|
+
# - = . \_ : / @. The maximum length of a tag's key is 128 characters,
|
1652
|
+
# and the maximum length for a tag's value is 256.
|
1653
|
+
#
|
1654
|
+
# </note>
|
1655
|
+
#
|
1595
1656
|
# @return [Types::CreateTapeWithBarcodeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1596
1657
|
#
|
1597
1658
|
# * {Types::CreateTapeWithBarcodeOutput#tape_arn #tape_arn} => String
|
@@ -1621,6 +1682,12 @@ module Aws::StorageGateway
|
|
1621
1682
|
# kms_encrypted: false,
|
1622
1683
|
# kms_key: "KMSKey",
|
1623
1684
|
# pool_id: "PoolId",
|
1685
|
+
# tags: [
|
1686
|
+
# {
|
1687
|
+
# key: "TagKey", # required
|
1688
|
+
# value: "TagValue", # required
|
1689
|
+
# },
|
1690
|
+
# ],
|
1624
1691
|
# })
|
1625
1692
|
#
|
1626
1693
|
# @example Response structure
|
@@ -1691,13 +1758,24 @@ module Aws::StorageGateway
|
|
1691
1758
|
#
|
1692
1759
|
# @option params [String] :pool_id
|
1693
1760
|
# The ID of the pool that you want to add your tape to for archiving.
|
1694
|
-
# The tape in this pool is archived in the S3 storage class
|
1695
|
-
#
|
1761
|
+
# The tape in this pool is archived in the S3 storage class that is
|
1762
|
+
# associated with the pool. When you use your backup application to
|
1696
1763
|
# eject the tape, the tape is archived directly into the storage class
|
1697
|
-
# (Glacier or Deep Archive).
|
1764
|
+
# (Glacier or Deep Archive) that corresponds to the pool.
|
1698
1765
|
#
|
1699
1766
|
# Valid values: "GLACIER", "DEEP\_ARCHIVE"
|
1700
1767
|
#
|
1768
|
+
# @option params [Array<Types::Tag>] :tags
|
1769
|
+
# A list of up to 50 tags that can be assigned to a virtual tape. Each
|
1770
|
+
# tag is a key-value pair.
|
1771
|
+
#
|
1772
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
1773
|
+
# representable in UTF-8 format, and the following special characters: +
|
1774
|
+
# - = . \_ : / @. The maximum length of a tag's key is 128 characters,
|
1775
|
+
# and the maximum length for a tag's value is 256.
|
1776
|
+
#
|
1777
|
+
# </note>
|
1778
|
+
#
|
1701
1779
|
# @return [Types::CreateTapesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1702
1780
|
#
|
1703
1781
|
# * {Types::CreateTapesOutput#tape_arns #tape_arns} => Array<String>
|
@@ -1735,6 +1813,12 @@ module Aws::StorageGateway
|
|
1735
1813
|
# kms_encrypted: false,
|
1736
1814
|
# kms_key: "KMSKey",
|
1737
1815
|
# pool_id: "PoolId",
|
1816
|
+
# tags: [
|
1817
|
+
# {
|
1818
|
+
# key: "TagKey", # required
|
1819
|
+
# value: "TagValue", # required
|
1820
|
+
# },
|
1821
|
+
# ],
|
1738
1822
|
# })
|
1739
1823
|
#
|
1740
1824
|
# @example Response structure
|
@@ -2465,6 +2549,8 @@ module Aws::StorageGateway
|
|
2465
2549
|
# * {Types::DescribeGatewayInformationOutput#gateway_type #gateway_type} => String
|
2466
2550
|
# * {Types::DescribeGatewayInformationOutput#next_update_availability_date #next_update_availability_date} => String
|
2467
2551
|
# * {Types::DescribeGatewayInformationOutput#last_software_update #last_software_update} => String
|
2552
|
+
# * {Types::DescribeGatewayInformationOutput#ec2_instance_id #ec2_instance_id} => String
|
2553
|
+
# * {Types::DescribeGatewayInformationOutput#ec2_instance_region #ec2_instance_region} => String
|
2468
2554
|
# * {Types::DescribeGatewayInformationOutput#tags #tags} => Array<Types::Tag>
|
2469
2555
|
#
|
2470
2556
|
#
|
@@ -2514,6 +2600,8 @@ module Aws::StorageGateway
|
|
2514
2600
|
# resp.gateway_type #=> String
|
2515
2601
|
# resp.next_update_availability_date #=> String
|
2516
2602
|
# resp.last_software_update #=> String
|
2603
|
+
# resp.ec2_instance_id #=> String
|
2604
|
+
# resp.ec2_instance_region #=> String
|
2517
2605
|
# resp.tags #=> Array
|
2518
2606
|
# resp.tags[0].key #=> String
|
2519
2607
|
# resp.tags[0].value #=> String
|
@@ -2541,6 +2629,7 @@ module Aws::StorageGateway
|
|
2541
2629
|
# * {Types::DescribeMaintenanceStartTimeOutput#hour_of_day #hour_of_day} => Integer
|
2542
2630
|
# * {Types::DescribeMaintenanceStartTimeOutput#minute_of_hour #minute_of_hour} => Integer
|
2543
2631
|
# * {Types::DescribeMaintenanceStartTimeOutput#day_of_week #day_of_week} => Integer
|
2632
|
+
# * {Types::DescribeMaintenanceStartTimeOutput#day_of_month #day_of_month} => Integer
|
2544
2633
|
# * {Types::DescribeMaintenanceStartTimeOutput#timezone #timezone} => String
|
2545
2634
|
#
|
2546
2635
|
#
|
@@ -2573,6 +2662,7 @@ module Aws::StorageGateway
|
|
2573
2662
|
# resp.hour_of_day #=> Integer
|
2574
2663
|
# resp.minute_of_hour #=> Integer
|
2575
2664
|
# resp.day_of_week #=> Integer
|
2665
|
+
# resp.day_of_month #=> Integer
|
2576
2666
|
# resp.timezone #=> String
|
2577
2667
|
#
|
2578
2668
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeMaintenanceStartTime AWS API Documentation
|
@@ -3688,6 +3778,8 @@ module Aws::StorageGateway
|
|
3688
3778
|
# resp.gateways[0].gateway_type #=> String
|
3689
3779
|
# resp.gateways[0].gateway_operational_state #=> String
|
3690
3780
|
# resp.gateways[0].gateway_name #=> String
|
3781
|
+
# resp.gateways[0].ec2_instance_id #=> String
|
3782
|
+
# resp.gateways[0].ec2_instance_region #=> String
|
3691
3783
|
# resp.marker #=> String
|
3692
3784
|
#
|
3693
3785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListGateways AWS API Documentation
|
@@ -4161,6 +4253,14 @@ module Aws::StorageGateway
|
|
4161
4253
|
# when your RefreshCache operation completes. For more information, see
|
4162
4254
|
# [Getting Notified About File Operations][1].
|
4163
4255
|
#
|
4256
|
+
# When this API is called, it only initiates the refresh operation. When
|
4257
|
+
# the API call completes and returns a success code, it doesn't
|
4258
|
+
# necessarily mean that the file refresh has completed. You should use
|
4259
|
+
# the refresh-complete notification to determine that the operation has
|
4260
|
+
# completed before you check for new files on the gateway file share.
|
4261
|
+
# You can subscribe to be notified through an CloudWatch event when your
|
4262
|
+
# `RefreshCache` operation completes.
|
4263
|
+
#
|
4164
4264
|
#
|
4165
4265
|
#
|
4166
4266
|
# [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/monitoring-file-gateway.html#get-notification
|
@@ -4951,9 +5051,19 @@ module Aws::StorageGateway
|
|
4951
5051
|
# *mm*, where *mm* is the minute (00 to 59). The minute of the hour is
|
4952
5052
|
# in the time zone of the gateway.
|
4953
5053
|
#
|
4954
|
-
# @option params [
|
4955
|
-
# The
|
4956
|
-
# number from 0 to 6, where 0 represents
|
5054
|
+
# @option params [Integer] :day_of_week
|
5055
|
+
# The day of the week component of the maintenance start time week
|
5056
|
+
# represented as an ordinal number from 0 to 6, where 0 represents
|
5057
|
+
# Sunday and 6 Saturday.
|
5058
|
+
#
|
5059
|
+
# @option params [Integer] :day_of_month
|
5060
|
+
# The day of the month component of the maintenance start time
|
5061
|
+
# represented as an ordinal number from 1 to 28, where 1 represents the
|
5062
|
+
# first day of the month and 28 represents the last day of the month.
|
5063
|
+
#
|
5064
|
+
# <note markdown="1"> This value is only available for tape and volume gateways.
|
5065
|
+
#
|
5066
|
+
# </note>
|
4957
5067
|
#
|
4958
5068
|
# @return [Types::UpdateMaintenanceStartTimeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4959
5069
|
#
|
@@ -4983,7 +5093,8 @@ module Aws::StorageGateway
|
|
4983
5093
|
# gateway_arn: "GatewayARN", # required
|
4984
5094
|
# hour_of_day: 1, # required
|
4985
5095
|
# minute_of_hour: 1, # required
|
4986
|
-
# day_of_week: 1,
|
5096
|
+
# day_of_week: 1,
|
5097
|
+
# day_of_month: 1,
|
4987
5098
|
# })
|
4988
5099
|
#
|
4989
5100
|
# @example Response structure
|
@@ -5073,9 +5184,17 @@ module Aws::StorageGateway
|
|
5073
5184
|
# guessing, and otherwise to false. The default value is true.
|
5074
5185
|
#
|
5075
5186
|
# @option params [Boolean] :requester_pays
|
5076
|
-
# A value that sets the
|
5077
|
-
#
|
5078
|
-
#
|
5187
|
+
# A value that sets who pays the cost of the request and the cost
|
5188
|
+
# associated with data download from the S3 bucket. If this value is set
|
5189
|
+
# to true, the requester pays the costs. Otherwise the S3 bucket owner
|
5190
|
+
# pays. However, the S3 bucket owner always pays the cost of storing
|
5191
|
+
# data.
|
5192
|
+
#
|
5193
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
5194
|
+
# file share, so make sure that the configuration on the file share is
|
5195
|
+
# the same as the S3 bucket configuration.
|
5196
|
+
#
|
5197
|
+
# </note>
|
5079
5198
|
#
|
5080
5199
|
# @return [Types::UpdateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5081
5200
|
#
|
@@ -5172,9 +5291,17 @@ module Aws::StorageGateway
|
|
5172
5291
|
# guessing, and otherwise to false. The default value is true.
|
5173
5292
|
#
|
5174
5293
|
# @option params [Boolean] :requester_pays
|
5175
|
-
# A value that sets the
|
5176
|
-
#
|
5177
|
-
#
|
5294
|
+
# A value that sets who pays the cost of the request and the cost
|
5295
|
+
# associated with data download from the S3 bucket. If this value is set
|
5296
|
+
# to true, the requester pays the costs. Otherwise the S3 bucket owner
|
5297
|
+
# pays. However, the S3 bucket owner always pays the cost of storing
|
5298
|
+
# data.
|
5299
|
+
#
|
5300
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
5301
|
+
# file share, so make sure that the configuration on the file share is
|
5302
|
+
# the same as the S3 bucket configuration.
|
5303
|
+
#
|
5304
|
+
# </note>
|
5178
5305
|
#
|
5179
5306
|
# @option params [Array<String>] :valid_user_list
|
5180
5307
|
# A list of users or groups in the Active Directory that are allowed to
|
@@ -5359,7 +5486,7 @@ module Aws::StorageGateway
|
|
5359
5486
|
params: params,
|
5360
5487
|
config: config)
|
5361
5488
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
5362
|
-
context[:gem_version] = '1.
|
5489
|
+
context[:gem_version] = '1.20.0'
|
5363
5490
|
Seahorse::Client::Request.new(handlers, context)
|
5364
5491
|
end
|
5365
5492
|
|
@@ -56,6 +56,7 @@ module Aws::StorageGateway
|
|
56
56
|
CreateTapesInput = Shapes::StructureShape.new(name: 'CreateTapesInput')
|
57
57
|
CreateTapesOutput = Shapes::StructureShape.new(name: 'CreateTapesOutput')
|
58
58
|
CreatedDate = Shapes::TimestampShape.new(name: 'CreatedDate')
|
59
|
+
DayOfMonth = Shapes::IntegerShape.new(name: 'DayOfMonth')
|
59
60
|
DayOfWeek = Shapes::IntegerShape.new(name: 'DayOfWeek')
|
60
61
|
DeleteBandwidthRateLimitInput = Shapes::StructureShape.new(name: 'DeleteBandwidthRateLimitInput')
|
61
62
|
DeleteBandwidthRateLimitOutput = Shapes::StructureShape.new(name: 'DeleteBandwidthRateLimitOutput')
|
@@ -125,6 +126,8 @@ module Aws::StorageGateway
|
|
125
126
|
DomainUserName = Shapes::StringShape.new(name: 'DomainUserName')
|
126
127
|
DomainUserPassword = Shapes::StringShape.new(name: 'DomainUserPassword')
|
127
128
|
DoubleObject = Shapes::FloatShape.new(name: 'DoubleObject')
|
129
|
+
Ec2InstanceId = Shapes::StringShape.new(name: 'Ec2InstanceId')
|
130
|
+
Ec2InstanceRegion = Shapes::StringShape.new(name: 'Ec2InstanceRegion')
|
128
131
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
129
132
|
FileShareARN = Shapes::StringShape.new(name: 'FileShareARN')
|
130
133
|
FileShareARNList = Shapes::ListShape.new(name: 'FileShareARNList')
|
@@ -402,6 +405,7 @@ module Aws::StorageGateway
|
|
402
405
|
CreateCachediSCSIVolumeInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken"))
|
403
406
|
CreateCachediSCSIVolumeInput.add_member(:kms_encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "KMSEncrypted"))
|
404
407
|
CreateCachediSCSIVolumeInput.add_member(:kms_key, Shapes::ShapeRef.new(shape: KMSKey, location_name: "KMSKey"))
|
408
|
+
CreateCachediSCSIVolumeInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
405
409
|
CreateCachediSCSIVolumeInput.struct_class = Types::CreateCachediSCSIVolumeInput
|
406
410
|
|
407
411
|
CreateCachediSCSIVolumeOutput.add_member(:volume_arn, Shapes::ShapeRef.new(shape: VolumeARN, location_name: "VolumeARN"))
|
@@ -473,6 +477,7 @@ module Aws::StorageGateway
|
|
473
477
|
CreateStorediSCSIVolumeInput.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, required: true, location_name: "NetworkInterfaceId"))
|
474
478
|
CreateStorediSCSIVolumeInput.add_member(:kms_encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "KMSEncrypted"))
|
475
479
|
CreateStorediSCSIVolumeInput.add_member(:kms_key, Shapes::ShapeRef.new(shape: KMSKey, location_name: "KMSKey"))
|
480
|
+
CreateStorediSCSIVolumeInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
476
481
|
CreateStorediSCSIVolumeInput.struct_class = Types::CreateStorediSCSIVolumeInput
|
477
482
|
|
478
483
|
CreateStorediSCSIVolumeOutput.add_member(:volume_arn, Shapes::ShapeRef.new(shape: VolumeARN, location_name: "VolumeARN"))
|
@@ -486,6 +491,7 @@ module Aws::StorageGateway
|
|
486
491
|
CreateTapeWithBarcodeInput.add_member(:kms_encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "KMSEncrypted"))
|
487
492
|
CreateTapeWithBarcodeInput.add_member(:kms_key, Shapes::ShapeRef.new(shape: KMSKey, location_name: "KMSKey"))
|
488
493
|
CreateTapeWithBarcodeInput.add_member(:pool_id, Shapes::ShapeRef.new(shape: PoolId, location_name: "PoolId"))
|
494
|
+
CreateTapeWithBarcodeInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
489
495
|
CreateTapeWithBarcodeInput.struct_class = Types::CreateTapeWithBarcodeInput
|
490
496
|
|
491
497
|
CreateTapeWithBarcodeOutput.add_member(:tape_arn, Shapes::ShapeRef.new(shape: TapeARN, location_name: "TapeARN"))
|
@@ -499,6 +505,7 @@ module Aws::StorageGateway
|
|
499
505
|
CreateTapesInput.add_member(:kms_encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "KMSEncrypted"))
|
500
506
|
CreateTapesInput.add_member(:kms_key, Shapes::ShapeRef.new(shape: KMSKey, location_name: "KMSKey"))
|
501
507
|
CreateTapesInput.add_member(:pool_id, Shapes::ShapeRef.new(shape: PoolId, location_name: "PoolId"))
|
508
|
+
CreateTapesInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
502
509
|
CreateTapesInput.struct_class = Types::CreateTapesInput
|
503
510
|
|
504
511
|
CreateTapesOutput.add_member(:tape_arns, Shapes::ShapeRef.new(shape: TapeARNs, location_name: "TapeARNs"))
|
@@ -601,6 +608,8 @@ module Aws::StorageGateway
|
|
601
608
|
DescribeGatewayInformationOutput.add_member(:gateway_type, Shapes::ShapeRef.new(shape: GatewayType, location_name: "GatewayType"))
|
602
609
|
DescribeGatewayInformationOutput.add_member(:next_update_availability_date, Shapes::ShapeRef.new(shape: NextUpdateAvailabilityDate, location_name: "NextUpdateAvailabilityDate"))
|
603
610
|
DescribeGatewayInformationOutput.add_member(:last_software_update, Shapes::ShapeRef.new(shape: LastSoftwareUpdate, location_name: "LastSoftwareUpdate"))
|
611
|
+
DescribeGatewayInformationOutput.add_member(:ec2_instance_id, Shapes::ShapeRef.new(shape: Ec2InstanceId, location_name: "Ec2InstanceId"))
|
612
|
+
DescribeGatewayInformationOutput.add_member(:ec2_instance_region, Shapes::ShapeRef.new(shape: Ec2InstanceRegion, location_name: "Ec2InstanceRegion"))
|
604
613
|
DescribeGatewayInformationOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
605
614
|
DescribeGatewayInformationOutput.struct_class = Types::DescribeGatewayInformationOutput
|
606
615
|
|
@@ -611,6 +620,7 @@ module Aws::StorageGateway
|
|
611
620
|
DescribeMaintenanceStartTimeOutput.add_member(:hour_of_day, Shapes::ShapeRef.new(shape: HourOfDay, location_name: "HourOfDay"))
|
612
621
|
DescribeMaintenanceStartTimeOutput.add_member(:minute_of_hour, Shapes::ShapeRef.new(shape: MinuteOfHour, location_name: "MinuteOfHour"))
|
613
622
|
DescribeMaintenanceStartTimeOutput.add_member(:day_of_week, Shapes::ShapeRef.new(shape: DayOfWeek, location_name: "DayOfWeek"))
|
623
|
+
DescribeMaintenanceStartTimeOutput.add_member(:day_of_month, Shapes::ShapeRef.new(shape: DayOfMonth, location_name: "DayOfMonth"))
|
614
624
|
DescribeMaintenanceStartTimeOutput.add_member(:timezone, Shapes::ShapeRef.new(shape: GatewayTimezone, location_name: "Timezone"))
|
615
625
|
DescribeMaintenanceStartTimeOutput.struct_class = Types::DescribeMaintenanceStartTimeOutput
|
616
626
|
|
@@ -765,6 +775,8 @@ module Aws::StorageGateway
|
|
765
775
|
GatewayInfo.add_member(:gateway_type, Shapes::ShapeRef.new(shape: GatewayType, location_name: "GatewayType"))
|
766
776
|
GatewayInfo.add_member(:gateway_operational_state, Shapes::ShapeRef.new(shape: GatewayOperationalState, location_name: "GatewayOperationalState"))
|
767
777
|
GatewayInfo.add_member(:gateway_name, Shapes::ShapeRef.new(shape: string, location_name: "GatewayName"))
|
778
|
+
GatewayInfo.add_member(:ec2_instance_id, Shapes::ShapeRef.new(shape: Ec2InstanceId, location_name: "Ec2InstanceId"))
|
779
|
+
GatewayInfo.add_member(:ec2_instance_region, Shapes::ShapeRef.new(shape: Ec2InstanceRegion, location_name: "Ec2InstanceRegion"))
|
768
780
|
GatewayInfo.struct_class = Types::GatewayInfo
|
769
781
|
|
770
782
|
GatewayNetworkInterfaces.member = Shapes::ShapeRef.new(shape: NetworkInterface)
|
@@ -1092,7 +1104,8 @@ module Aws::StorageGateway
|
|
1092
1104
|
UpdateMaintenanceStartTimeInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
1093
1105
|
UpdateMaintenanceStartTimeInput.add_member(:hour_of_day, Shapes::ShapeRef.new(shape: HourOfDay, required: true, location_name: "HourOfDay"))
|
1094
1106
|
UpdateMaintenanceStartTimeInput.add_member(:minute_of_hour, Shapes::ShapeRef.new(shape: MinuteOfHour, required: true, location_name: "MinuteOfHour"))
|
1095
|
-
UpdateMaintenanceStartTimeInput.add_member(:day_of_week, Shapes::ShapeRef.new(shape: DayOfWeek,
|
1107
|
+
UpdateMaintenanceStartTimeInput.add_member(:day_of_week, Shapes::ShapeRef.new(shape: DayOfWeek, location_name: "DayOfWeek"))
|
1108
|
+
UpdateMaintenanceStartTimeInput.add_member(:day_of_month, Shapes::ShapeRef.new(shape: DayOfMonth, location_name: "DayOfMonth"))
|
1096
1109
|
UpdateMaintenanceStartTimeInput.struct_class = Types::UpdateMaintenanceStartTimeInput
|
1097
1110
|
|
1098
1111
|
UpdateMaintenanceStartTimeOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
|
@@ -109,7 +109,7 @@ module Aws::StorageGateway
|
|
109
109
|
# @return [String]
|
110
110
|
#
|
111
111
|
# @!attribute [rw] tags
|
112
|
-
# A list of up to
|
112
|
+
# A list of up to 50 tags that can be assigned to the gateway. Each
|
113
113
|
# tag is a key-value pair.
|
114
114
|
#
|
115
115
|
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
@@ -653,6 +653,12 @@ module Aws::StorageGateway
|
|
653
653
|
# client_token: "ClientToken", # required
|
654
654
|
# kms_encrypted: false,
|
655
655
|
# kms_key: "KMSKey",
|
656
|
+
# tags: [
|
657
|
+
# {
|
658
|
+
# key: "TagKey", # required
|
659
|
+
# value: "TagValue", # required
|
660
|
+
# },
|
661
|
+
# ],
|
656
662
|
# }
|
657
663
|
#
|
658
664
|
# @!attribute [rw] gateway_arn
|
@@ -722,6 +728,18 @@ module Aws::StorageGateway
|
|
722
728
|
# is true. Optional.
|
723
729
|
# @return [String]
|
724
730
|
#
|
731
|
+
# @!attribute [rw] tags
|
732
|
+
# A list of up to 50 tags that can be assigned to a cached volume.
|
733
|
+
# Each tag is a key-value pair.
|
734
|
+
#
|
735
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
736
|
+
# representable in UTF-8 format, and the following special characters:
|
737
|
+
# + - = . \_ : / @. The maximum length of a tag's key is 128
|
738
|
+
# characters, and the maximum length for a tag's value is 256.
|
739
|
+
#
|
740
|
+
# </note>
|
741
|
+
# @return [Array<Types::Tag>]
|
742
|
+
#
|
725
743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateCachediSCSIVolumeInput AWS API Documentation
|
726
744
|
#
|
727
745
|
class CreateCachediSCSIVolumeInput < Struct.new(
|
@@ -733,7 +751,8 @@ module Aws::StorageGateway
|
|
733
751
|
:network_interface_id,
|
734
752
|
:client_token,
|
735
753
|
:kms_encrypted,
|
736
|
-
:kms_key
|
754
|
+
:kms_key,
|
755
|
+
:tags)
|
737
756
|
include Aws::Structure
|
738
757
|
end
|
739
758
|
|
@@ -862,13 +881,21 @@ module Aws::StorageGateway
|
|
862
881
|
# @return [Boolean]
|
863
882
|
#
|
864
883
|
# @!attribute [rw] requester_pays
|
865
|
-
# A value that sets the
|
866
|
-
#
|
867
|
-
#
|
884
|
+
# A value that sets who pays the cost of the request and the cost
|
885
|
+
# associated with data download from the S3 bucket. If this value is
|
886
|
+
# set to true, the requester pays the costs. Otherwise the S3 bucket
|
887
|
+
# owner pays. However, the S3 bucket owner always pays the cost of
|
888
|
+
# storing data.
|
889
|
+
#
|
890
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
891
|
+
# file share, so make sure that the configuration on the file share is
|
892
|
+
# the same as the S3 bucket configuration.
|
893
|
+
#
|
894
|
+
# </note>
|
868
895
|
# @return [Boolean]
|
869
896
|
#
|
870
897
|
# @!attribute [rw] tags
|
871
|
-
# A list of up to
|
898
|
+
# A list of up to 50 tags that can be assigned to the NFS file share.
|
872
899
|
# Each tag is a key-value pair.
|
873
900
|
#
|
874
901
|
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
@@ -996,9 +1023,17 @@ module Aws::StorageGateway
|
|
996
1023
|
# @return [Boolean]
|
997
1024
|
#
|
998
1025
|
# @!attribute [rw] requester_pays
|
999
|
-
# A value that sets the
|
1000
|
-
#
|
1001
|
-
#
|
1026
|
+
# A value that sets who pays the cost of the request and the cost
|
1027
|
+
# associated with data download from the S3 bucket. If this value is
|
1028
|
+
# set to true, the requester pays the costs. Otherwise the S3 bucket
|
1029
|
+
# owner pays. However, the S3 bucket owner always pays the cost of
|
1030
|
+
# storing data.
|
1031
|
+
#
|
1032
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
1033
|
+
# file share, so make sure that the configuration on the file share is
|
1034
|
+
# the same as the S3 bucket configuration.
|
1035
|
+
#
|
1036
|
+
# </note>
|
1002
1037
|
# @return [Boolean]
|
1003
1038
|
#
|
1004
1039
|
# @!attribute [rw] valid_user_list
|
@@ -1023,7 +1058,7 @@ module Aws::StorageGateway
|
|
1023
1058
|
# @return [String]
|
1024
1059
|
#
|
1025
1060
|
# @!attribute [rw] tags
|
1026
|
-
# A list of up to
|
1061
|
+
# A list of up to 50 tags that can be assigned to the NFS file share.
|
1027
1062
|
# Each tag is a key-value pair.
|
1028
1063
|
#
|
1029
1064
|
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
@@ -1200,6 +1235,12 @@ module Aws::StorageGateway
|
|
1200
1235
|
# network_interface_id: "NetworkInterfaceId", # required
|
1201
1236
|
# kms_encrypted: false,
|
1202
1237
|
# kms_key: "KMSKey",
|
1238
|
+
# tags: [
|
1239
|
+
# {
|
1240
|
+
# key: "TagKey", # required
|
1241
|
+
# value: "TagValue", # required
|
1242
|
+
# },
|
1243
|
+
# ],
|
1203
1244
|
# }
|
1204
1245
|
#
|
1205
1246
|
# @!attribute [rw] gateway_arn
|
@@ -1269,6 +1310,18 @@ module Aws::StorageGateway
|
|
1269
1310
|
# is true. Optional.
|
1270
1311
|
# @return [String]
|
1271
1312
|
#
|
1313
|
+
# @!attribute [rw] tags
|
1314
|
+
# A list of up to 50 tags that can be assigned to a stored volume.
|
1315
|
+
# Each tag is a key-value pair.
|
1316
|
+
#
|
1317
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
1318
|
+
# representable in UTF-8 format, and the following special characters:
|
1319
|
+
# + - = . \_ : / @. The maximum length of a tag's key is 128
|
1320
|
+
# characters, and the maximum length for a tag's value is 256.
|
1321
|
+
#
|
1322
|
+
# </note>
|
1323
|
+
# @return [Array<Types::Tag>]
|
1324
|
+
#
|
1272
1325
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateStorediSCSIVolumeInput AWS API Documentation
|
1273
1326
|
#
|
1274
1327
|
class CreateStorediSCSIVolumeInput < Struct.new(
|
@@ -1279,7 +1332,8 @@ module Aws::StorageGateway
|
|
1279
1332
|
:target_name,
|
1280
1333
|
:network_interface_id,
|
1281
1334
|
:kms_encrypted,
|
1282
|
-
:kms_key
|
1335
|
+
:kms_key,
|
1336
|
+
:tags)
|
1283
1337
|
include Aws::Structure
|
1284
1338
|
end
|
1285
1339
|
|
@@ -1319,6 +1373,12 @@ module Aws::StorageGateway
|
|
1319
1373
|
# kms_encrypted: false,
|
1320
1374
|
# kms_key: "KMSKey",
|
1321
1375
|
# pool_id: "PoolId",
|
1376
|
+
# tags: [
|
1377
|
+
# {
|
1378
|
+
# key: "TagKey", # required
|
1379
|
+
# value: "TagValue", # required
|
1380
|
+
# },
|
1381
|
+
# ],
|
1322
1382
|
# }
|
1323
1383
|
#
|
1324
1384
|
# @!attribute [rw] gateway_arn
|
@@ -1365,6 +1425,18 @@ module Aws::StorageGateway
|
|
1365
1425
|
# Valid values: "GLACIER", "DEEP\_ARCHIVE"
|
1366
1426
|
# @return [String]
|
1367
1427
|
#
|
1428
|
+
# @!attribute [rw] tags
|
1429
|
+
# A list of up to 50 tags that can be assigned to a virtual tape that
|
1430
|
+
# has a barcode. Each tag is a key-value pair.
|
1431
|
+
#
|
1432
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
1433
|
+
# representable in UTF-8 format, and the following special characters:
|
1434
|
+
# + - = . \_ : / @. The maximum length of a tag's key is 128
|
1435
|
+
# characters, and the maximum length for a tag's value is 256.
|
1436
|
+
#
|
1437
|
+
# </note>
|
1438
|
+
# @return [Array<Types::Tag>]
|
1439
|
+
#
|
1368
1440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateTapeWithBarcodeInput AWS API Documentation
|
1369
1441
|
#
|
1370
1442
|
class CreateTapeWithBarcodeInput < Struct.new(
|
@@ -1373,7 +1445,8 @@ module Aws::StorageGateway
|
|
1373
1445
|
:tape_barcode,
|
1374
1446
|
:kms_encrypted,
|
1375
1447
|
:kms_key,
|
1376
|
-
:pool_id
|
1448
|
+
:pool_id,
|
1449
|
+
:tags)
|
1377
1450
|
include Aws::Structure
|
1378
1451
|
end
|
1379
1452
|
|
@@ -1405,6 +1478,12 @@ module Aws::StorageGateway
|
|
1405
1478
|
# kms_encrypted: false,
|
1406
1479
|
# kms_key: "KMSKey",
|
1407
1480
|
# pool_id: "PoolId",
|
1481
|
+
# tags: [
|
1482
|
+
# {
|
1483
|
+
# key: "TagKey", # required
|
1484
|
+
# value: "TagValue", # required
|
1485
|
+
# },
|
1486
|
+
# ],
|
1408
1487
|
# }
|
1409
1488
|
#
|
1410
1489
|
# @!attribute [rw] gateway_arn
|
@@ -1459,14 +1538,26 @@ module Aws::StorageGateway
|
|
1459
1538
|
#
|
1460
1539
|
# @!attribute [rw] pool_id
|
1461
1540
|
# The ID of the pool that you want to add your tape to for archiving.
|
1462
|
-
# The tape in this pool is archived in the S3 storage class
|
1463
|
-
#
|
1541
|
+
# The tape in this pool is archived in the S3 storage class that is
|
1542
|
+
# associated with the pool. When you use your backup application to
|
1464
1543
|
# eject the tape, the tape is archived directly into the storage class
|
1465
|
-
# (Glacier or Deep Archive).
|
1544
|
+
# (Glacier or Deep Archive) that corresponds to the pool.
|
1466
1545
|
#
|
1467
1546
|
# Valid values: "GLACIER", "DEEP\_ARCHIVE"
|
1468
1547
|
# @return [String]
|
1469
1548
|
#
|
1549
|
+
# @!attribute [rw] tags
|
1550
|
+
# A list of up to 50 tags that can be assigned to a virtual tape. Each
|
1551
|
+
# tag is a key-value pair.
|
1552
|
+
#
|
1553
|
+
# <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
|
1554
|
+
# representable in UTF-8 format, and the following special characters:
|
1555
|
+
# + - = . \_ : / @. The maximum length of a tag's key is 128
|
1556
|
+
# characters, and the maximum length for a tag's value is 256.
|
1557
|
+
#
|
1558
|
+
# </note>
|
1559
|
+
# @return [Array<Types::Tag>]
|
1560
|
+
#
|
1470
1561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateTapesInput AWS API Documentation
|
1471
1562
|
#
|
1472
1563
|
class CreateTapesInput < Struct.new(
|
@@ -1477,7 +1568,8 @@ module Aws::StorageGateway
|
|
1477
1568
|
:tape_barcode_prefix,
|
1478
1569
|
:kms_encrypted,
|
1479
1570
|
:kms_key,
|
1480
|
-
:pool_id
|
1571
|
+
:pool_id,
|
1572
|
+
:tags)
|
1481
1573
|
include Aws::Structure
|
1482
1574
|
end
|
1483
1575
|
|
@@ -1914,6 +2006,9 @@ module Aws::StorageGateway
|
|
1914
2006
|
# @return [Float]
|
1915
2007
|
#
|
1916
2008
|
# @!attribute [rw] cache_miss_percentage
|
2009
|
+
# Percent of application read operations from the file shares that are
|
2010
|
+
# not served from cache. The sample is taken at the end of the
|
2011
|
+
# reporting period.
|
1917
2012
|
# @return [Float]
|
1918
2013
|
#
|
1919
2014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeCacheOutput AWS API Documentation
|
@@ -2085,8 +2180,17 @@ module Aws::StorageGateway
|
|
2085
2180
|
# return a value in the response.
|
2086
2181
|
# @return [String]
|
2087
2182
|
#
|
2183
|
+
# @!attribute [rw] ec2_instance_id
|
2184
|
+
# The ID of the Amazon EC2 instance that was used to launch the
|
2185
|
+
# gateway.
|
2186
|
+
# @return [String]
|
2187
|
+
#
|
2188
|
+
# @!attribute [rw] ec2_instance_region
|
2189
|
+
# The AWS Region where the Amazon EC2 instance is located.
|
2190
|
+
# @return [String]
|
2191
|
+
#
|
2088
2192
|
# @!attribute [rw] tags
|
2089
|
-
# A list of up to
|
2193
|
+
# A list of up to 50 tags assigned to the gateway, sorted
|
2090
2194
|
# alphabetically by key name. Each tag is a key-value pair. For a
|
2091
2195
|
# gateway with more than 10 tags assigned, you can view all tags using
|
2092
2196
|
# the `ListTagsForResource` API operation.
|
@@ -2104,6 +2208,8 @@ module Aws::StorageGateway
|
|
2104
2208
|
:gateway_type,
|
2105
2209
|
:next_update_availability_date,
|
2106
2210
|
:last_software_update,
|
2211
|
+
:ec2_instance_id,
|
2212
|
+
:ec2_instance_region,
|
2107
2213
|
:tags)
|
2108
2214
|
include Aws::Structure
|
2109
2215
|
end
|
@@ -2131,6 +2237,8 @@ module Aws::StorageGateway
|
|
2131
2237
|
|
2132
2238
|
# A JSON object containing the following fields:
|
2133
2239
|
#
|
2240
|
+
# * DescribeMaintenanceStartTimeOutput$DayOfMonth
|
2241
|
+
#
|
2134
2242
|
# * DescribeMaintenanceStartTimeOutput$DayOfWeek
|
2135
2243
|
#
|
2136
2244
|
# * DescribeMaintenanceStartTimeOutput$HourOfDay
|
@@ -2162,6 +2270,17 @@ module Aws::StorageGateway
|
|
2162
2270
|
# of week is in the time zone of the gateway.
|
2163
2271
|
# @return [Integer]
|
2164
2272
|
#
|
2273
|
+
# @!attribute [rw] day_of_month
|
2274
|
+
# The day of the month component of the maintenance start time
|
2275
|
+
# represented as an ordinal number from 1 to 28, where 1 represents
|
2276
|
+
# the first day of the month and 28 represents the last day of the
|
2277
|
+
# month.
|
2278
|
+
#
|
2279
|
+
# <note markdown="1"> This value is only available for tape and volume gateways.
|
2280
|
+
#
|
2281
|
+
# </note>
|
2282
|
+
# @return [Integer]
|
2283
|
+
#
|
2165
2284
|
# @!attribute [rw] timezone
|
2166
2285
|
# A value that indicates the time zone that is set for the gateway.
|
2167
2286
|
# The start time and day of week specified should be in the time zone
|
@@ -2175,6 +2294,7 @@ module Aws::StorageGateway
|
|
2175
2294
|
:hour_of_day,
|
2176
2295
|
:minute_of_hour,
|
2177
2296
|
:day_of_week,
|
2297
|
+
:day_of_month,
|
2178
2298
|
:timezone)
|
2179
2299
|
include Aws::Structure
|
2180
2300
|
end
|
@@ -3037,6 +3157,15 @@ module Aws::StorageGateway
|
|
3037
3157
|
# The name of the gateway.
|
3038
3158
|
# @return [String]
|
3039
3159
|
#
|
3160
|
+
# @!attribute [rw] ec2_instance_id
|
3161
|
+
# The ID of the Amazon EC2 instance that was used to launch the
|
3162
|
+
# gateway.
|
3163
|
+
# @return [String]
|
3164
|
+
#
|
3165
|
+
# @!attribute [rw] ec2_instance_region
|
3166
|
+
# The AWS Region where the Amazon EC2 instance is located.
|
3167
|
+
# @return [String]
|
3168
|
+
#
|
3040
3169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/GatewayInfo AWS API Documentation
|
3041
3170
|
#
|
3042
3171
|
class GatewayInfo < Struct.new(
|
@@ -3044,7 +3173,9 @@ module Aws::StorageGateway
|
|
3044
3173
|
:gateway_arn,
|
3045
3174
|
:gateway_type,
|
3046
3175
|
:gateway_operational_state,
|
3047
|
-
:gateway_name
|
3176
|
+
:gateway_name,
|
3177
|
+
:ec2_instance_id,
|
3178
|
+
:ec2_instance_region)
|
3048
3179
|
include Aws::Structure
|
3049
3180
|
end
|
3050
3181
|
|
@@ -3693,13 +3824,21 @@ module Aws::StorageGateway
|
|
3693
3824
|
# @return [Boolean]
|
3694
3825
|
#
|
3695
3826
|
# @!attribute [rw] requester_pays
|
3696
|
-
# A value that sets the
|
3697
|
-
#
|
3698
|
-
#
|
3827
|
+
# A value that sets who pays the cost of the request and the cost
|
3828
|
+
# associated with data download from the S3 bucket. If this value is
|
3829
|
+
# set to true, the requester pays the costs. Otherwise the S3 bucket
|
3830
|
+
# owner pays. However, the S3 bucket owner always pays the cost of
|
3831
|
+
# storing data.
|
3832
|
+
#
|
3833
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
3834
|
+
# file share, so make sure that the configuration on the file share is
|
3835
|
+
# the same as the S3 bucket configuration.
|
3836
|
+
#
|
3837
|
+
# </note>
|
3699
3838
|
# @return [Boolean]
|
3700
3839
|
#
|
3701
3840
|
# @!attribute [rw] tags
|
3702
|
-
# A list of up to
|
3841
|
+
# A list of up to 50 tags assigned to the NFS file share, sorted
|
3703
3842
|
# alphabetically by key name. Each tag is a key-value pair. For a
|
3704
3843
|
# gateway with more than 10 tags assigned, you can view all tags using
|
3705
3844
|
# the `ListTagsForResource` API operation.
|
@@ -4087,9 +4226,17 @@ module Aws::StorageGateway
|
|
4087
4226
|
# @return [Boolean]
|
4088
4227
|
#
|
4089
4228
|
# @!attribute [rw] requester_pays
|
4090
|
-
# A value that sets the
|
4091
|
-
#
|
4092
|
-
#
|
4229
|
+
# A value that sets who pays the cost of the request and the cost
|
4230
|
+
# associated with data download from the S3 bucket. If this value is
|
4231
|
+
# set to true, the requester pays the costs. Otherwise the S3 bucket
|
4232
|
+
# owner pays. However, the S3 bucket owner always pays the cost of
|
4233
|
+
# storing data.
|
4234
|
+
#
|
4235
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
4236
|
+
# file share, so make sure that the configuration on the file share is
|
4237
|
+
# the same as the S3 bucket configuration.
|
4238
|
+
#
|
4239
|
+
# </note>
|
4093
4240
|
# @return [Boolean]
|
4094
4241
|
#
|
4095
4242
|
# @!attribute [rw] valid_user_list
|
@@ -4114,7 +4261,7 @@ module Aws::StorageGateway
|
|
4114
4261
|
# @return [String]
|
4115
4262
|
#
|
4116
4263
|
# @!attribute [rw] tags
|
4117
|
-
# A list of up to
|
4264
|
+
# A list of up to 50 tags assigned to the SMB file share, sorted
|
4118
4265
|
# alphabetically by key name. Each tag is a key-value pair. For a
|
4119
4266
|
# gateway with more than 10 tags assigned, you can view all tags using
|
4120
4267
|
# the `ListTagsForResource` API operation.
|
@@ -4905,6 +5052,8 @@ module Aws::StorageGateway
|
|
4905
5052
|
|
4906
5053
|
# A JSON object containing the following fields:
|
4907
5054
|
#
|
5055
|
+
# * UpdateMaintenanceStartTimeInput$DayOfMonth
|
5056
|
+
#
|
4908
5057
|
# * UpdateMaintenanceStartTimeInput$DayOfWeek
|
4909
5058
|
#
|
4910
5059
|
# * UpdateMaintenanceStartTimeInput$HourOfDay
|
@@ -4918,7 +5067,8 @@ module Aws::StorageGateway
|
|
4918
5067
|
# gateway_arn: "GatewayARN", # required
|
4919
5068
|
# hour_of_day: 1, # required
|
4920
5069
|
# minute_of_hour: 1, # required
|
4921
|
-
# day_of_week: 1,
|
5070
|
+
# day_of_week: 1,
|
5071
|
+
# day_of_month: 1,
|
4922
5072
|
# }
|
4923
5073
|
#
|
4924
5074
|
# @!attribute [rw] gateway_arn
|
@@ -4939,8 +5089,20 @@ module Aws::StorageGateway
|
|
4939
5089
|
# @return [Integer]
|
4940
5090
|
#
|
4941
5091
|
# @!attribute [rw] day_of_week
|
4942
|
-
# The
|
4943
|
-
# number from 0 to 6, where 0 represents
|
5092
|
+
# The day of the week component of the maintenance start time week
|
5093
|
+
# represented as an ordinal number from 0 to 6, where 0 represents
|
5094
|
+
# Sunday and 6 Saturday.
|
5095
|
+
# @return [Integer]
|
5096
|
+
#
|
5097
|
+
# @!attribute [rw] day_of_month
|
5098
|
+
# The day of the month component of the maintenance start time
|
5099
|
+
# represented as an ordinal number from 1 to 28, where 1 represents
|
5100
|
+
# the first day of the month and 28 represents the last day of the
|
5101
|
+
# month.
|
5102
|
+
#
|
5103
|
+
# <note markdown="1"> This value is only available for tape and volume gateways.
|
5104
|
+
#
|
5105
|
+
# </note>
|
4944
5106
|
# @return [Integer]
|
4945
5107
|
#
|
4946
5108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateMaintenanceStartTimeInput AWS API Documentation
|
@@ -4949,7 +5111,8 @@ module Aws::StorageGateway
|
|
4949
5111
|
:gateway_arn,
|
4950
5112
|
:hour_of_day,
|
4951
5113
|
:minute_of_hour,
|
4952
|
-
:day_of_week
|
5114
|
+
:day_of_week,
|
5115
|
+
:day_of_month)
|
4953
5116
|
include Aws::Structure
|
4954
5117
|
end
|
4955
5118
|
|
@@ -5051,9 +5214,17 @@ module Aws::StorageGateway
|
|
5051
5214
|
# @return [Boolean]
|
5052
5215
|
#
|
5053
5216
|
# @!attribute [rw] requester_pays
|
5054
|
-
# A value that sets the
|
5055
|
-
#
|
5056
|
-
#
|
5217
|
+
# A value that sets who pays the cost of the request and the cost
|
5218
|
+
# associated with data download from the S3 bucket. If this value is
|
5219
|
+
# set to true, the requester pays the costs. Otherwise the S3 bucket
|
5220
|
+
# owner pays. However, the S3 bucket owner always pays the cost of
|
5221
|
+
# storing data.
|
5222
|
+
#
|
5223
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
5224
|
+
# file share, so make sure that the configuration on the file share is
|
5225
|
+
# the same as the S3 bucket configuration.
|
5226
|
+
#
|
5227
|
+
# </note>
|
5057
5228
|
# @return [Boolean]
|
5058
5229
|
#
|
5059
5230
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateNFSFileShareInput AWS API Documentation
|
@@ -5145,9 +5316,17 @@ module Aws::StorageGateway
|
|
5145
5316
|
# @return [Boolean]
|
5146
5317
|
#
|
5147
5318
|
# @!attribute [rw] requester_pays
|
5148
|
-
# A value that sets the
|
5149
|
-
#
|
5150
|
-
#
|
5319
|
+
# A value that sets who pays the cost of the request and the cost
|
5320
|
+
# associated with data download from the S3 bucket. If this value is
|
5321
|
+
# set to true, the requester pays the costs. Otherwise the S3 bucket
|
5322
|
+
# owner pays. However, the S3 bucket owner always pays the cost of
|
5323
|
+
# storing data.
|
5324
|
+
#
|
5325
|
+
# <note markdown="1"> `RequesterPays` is a configuration for the S3 bucket that backs the
|
5326
|
+
# file share, so make sure that the configuration on the file share is
|
5327
|
+
# the same as the S3 bucket configuration.
|
5328
|
+
#
|
5329
|
+
# </note>
|
5151
5330
|
# @return [Boolean]
|
5152
5331
|
#
|
5153
5332
|
# @!attribute [rw] valid_user_list
|
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.20.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-
|
11
|
+
date: 2019-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|