aws-sdk-storagegateway 1.59.0 → 1.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +260 -113
- data/lib/aws-sdk-storagegateway/client_api.rb +40 -0
- data/lib/aws-sdk-storagegateway/types.rb +459 -153
- data/lib/aws-sdk-storagegateway.rb +1 -1
- metadata +4 -4
@@ -119,7 +119,9 @@ module Aws::StorageGateway
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
124
|
+
# to true.
|
123
125
|
#
|
124
126
|
# @option options [required, String] :region
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -285,6 +287,15 @@ module Aws::StorageGateway
|
|
285
287
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
288
|
# requests are made, and retries are disabled.
|
287
289
|
#
|
290
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
291
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
|
+
# will be used if available.
|
293
|
+
#
|
294
|
+
# @option options [Boolean] :use_fips_endpoint
|
295
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
296
|
+
# When a `fips` region is used, the region is normalized and this config
|
297
|
+
# is set to `true`.
|
298
|
+
#
|
288
299
|
# @option options [Boolean] :validate_params (true)
|
289
300
|
# When `true`, request parameters are validated before
|
290
301
|
# sending the request.
|
@@ -338,12 +349,12 @@ module Aws::StorageGateway
|
|
338
349
|
# @!group API Operations
|
339
350
|
|
340
351
|
# Activates the gateway you previously deployed on your host. In the
|
341
|
-
# activation process, you specify information such as the
|
342
|
-
# you want to use for storing snapshots or tapes,
|
343
|
-
# scheduled snapshots the gateway snapshot schedule
|
344
|
-
# activation key, and a name for your gateway. The activation
|
345
|
-
# also associates your gateway with your account. For more
|
346
|
-
# see UpdateGatewayInformation.
|
352
|
+
# activation process, you specify information such as the Amazon Web
|
353
|
+
# Services Region that you want to use for storing snapshots or tapes,
|
354
|
+
# the time zone for scheduled snapshots the gateway snapshot schedule
|
355
|
+
# window, an activation key, and a name for your gateway. The activation
|
356
|
+
# process also associates your gateway with your account. For more
|
357
|
+
# information, see UpdateGatewayInformation.
|
347
358
|
#
|
348
359
|
# <note markdown="1"> You must turn on the gateway VM before you can activate your gateway.
|
349
360
|
#
|
@@ -378,12 +389,13 @@ module Aws::StorageGateway
|
|
378
389
|
# schedule.
|
379
390
|
#
|
380
391
|
# @option params [required, String] :gateway_region
|
381
|
-
# A value that indicates the Region where you want
|
382
|
-
#
|
383
|
-
#
|
384
|
-
#
|
385
|
-
#
|
386
|
-
#
|
392
|
+
# A value that indicates the Amazon Web Services Region where you want
|
393
|
+
# to store your data. The gateway Amazon Web Services Region specified
|
394
|
+
# must be the same Amazon Web Services Region as the Amazon Web Services
|
395
|
+
# Region in your `Host` header in the request. For more information
|
396
|
+
# about available Amazon Web Services Regions and endpoints for Storage
|
397
|
+
# Gateway, see [ Storage Gateway endpoints and quotas][1] in the *Amazon
|
398
|
+
# Web Services General Reference*.
|
387
399
|
#
|
388
400
|
# Valid Values: See [ Storage Gateway endpoints and quotas][1] in the
|
389
401
|
# *Amazon Web Services General Reference*.
|
@@ -397,8 +409,8 @@ module Aws::StorageGateway
|
|
397
409
|
# specified is critical to all later functions of the gateway and cannot
|
398
410
|
# be changed after activation. The default value is `CACHED`.
|
399
411
|
#
|
400
|
-
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `
|
401
|
-
# `FILE_FSX_SMB
|
412
|
+
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `VTL_SNOW` \| `FILE_S3`
|
413
|
+
# \| `FILE_FSX_SMB`
|
402
414
|
#
|
403
415
|
# @option params [String] :tape_drive_type
|
404
416
|
# The value that indicates the type of tape drive to use for tape
|
@@ -493,7 +505,8 @@ module Aws::StorageGateway
|
|
493
505
|
#
|
494
506
|
# @option params [required, String] :gateway_arn
|
495
507
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
496
|
-
# operation to return a list of gateways for your account and
|
508
|
+
# operation to return a list of gateways for your account and Amazon Web
|
509
|
+
# Services Region.
|
497
510
|
#
|
498
511
|
# @option params [required, Array<String>] :disk_ids
|
499
512
|
# An array of strings that identify disks that are to be configured as
|
@@ -637,7 +650,8 @@ module Aws::StorageGateway
|
|
637
650
|
#
|
638
651
|
# @option params [required, String] :gateway_arn
|
639
652
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
640
|
-
# operation to return a list of gateways for your account and
|
653
|
+
# operation to return a list of gateways for your account and Amazon Web
|
654
|
+
# Services Region.
|
641
655
|
#
|
642
656
|
# @option params [required, Array<String>] :disk_ids
|
643
657
|
# An array of strings that identify disks that are to be configured as
|
@@ -703,7 +717,8 @@ module Aws::StorageGateway
|
|
703
717
|
#
|
704
718
|
# @option params [required, String] :gateway_arn
|
705
719
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
706
|
-
# operation to return a list of gateways for your account and
|
720
|
+
# operation to return a list of gateways for your account and Amazon Web
|
721
|
+
# Services Region.
|
707
722
|
#
|
708
723
|
# @option params [required, Array<String>] :disk_ids
|
709
724
|
# An array of strings that identify disks that are to be configured as
|
@@ -828,7 +843,8 @@ module Aws::StorageGateway
|
|
828
843
|
#
|
829
844
|
# @option params [required, String] :gateway_arn
|
830
845
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
831
|
-
# operation to return a list of gateways for your account and
|
846
|
+
# operation to return a list of gateways for your account and Amazon Web
|
847
|
+
# Services Region.
|
832
848
|
#
|
833
849
|
# @option params [required, String] :location_arn
|
834
850
|
# The Amazon Resource Name (ARN) of the Amazon FSx file system to
|
@@ -965,7 +981,8 @@ module Aws::StorageGateway
|
|
965
981
|
#
|
966
982
|
# @option params [required, String] :gateway_arn
|
967
983
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
968
|
-
# operation to return a list of gateways for your account and
|
984
|
+
# operation to return a list of gateways for your account and Amazon Web
|
985
|
+
# Services Region.
|
969
986
|
#
|
970
987
|
# @option params [required, String] :tape_arn
|
971
988
|
# The Amazon Resource Name (ARN) of the virtual tape you want to cancel
|
@@ -1017,7 +1034,8 @@ module Aws::StorageGateway
|
|
1017
1034
|
#
|
1018
1035
|
# @option params [required, String] :gateway_arn
|
1019
1036
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
1020
|
-
# operation to return a list of gateways for your account and
|
1037
|
+
# operation to return a list of gateways for your account and Amazon Web
|
1038
|
+
# Services Region.
|
1021
1039
|
#
|
1022
1040
|
# @option params [required, String] :tape_arn
|
1023
1041
|
# The Amazon Resource Name (ARN) of the virtual tape you want to cancel
|
@@ -1087,7 +1105,8 @@ module Aws::StorageGateway
|
|
1087
1105
|
#
|
1088
1106
|
# @option params [required, String] :gateway_arn
|
1089
1107
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
1090
|
-
# operation to return a list of gateways for your account and
|
1108
|
+
# operation to return a list of gateways for your account and Amazon Web
|
1109
|
+
# Services Region.
|
1091
1110
|
#
|
1092
1111
|
# @option params [required, Integer] :volume_size_in_bytes
|
1093
1112
|
# The size of the volume in bytes.
|
@@ -1221,12 +1240,15 @@ module Aws::StorageGateway
|
|
1221
1240
|
# using an NFS interface. This operation is only supported for S3 File
|
1222
1241
|
# Gateways.
|
1223
1242
|
#
|
1224
|
-
# S3 File gateway requires Security Token Service (
|
1225
|
-
# to enable you to create a file share. Make sure
|
1226
|
-
#
|
1227
|
-
#
|
1228
|
-
#
|
1229
|
-
#
|
1243
|
+
# S3 File gateway requires Security Token Service (Amazon Web Services
|
1244
|
+
# STS) to be activated to enable you to create a file share. Make sure
|
1245
|
+
# Amazon Web Services STS is activated in the Amazon Web Services Region
|
1246
|
+
# you are creating your S3 File Gateway in. If Amazon Web Services STS
|
1247
|
+
# is not activated in the Amazon Web Services Region, activate it. For
|
1248
|
+
# information about how to activate Amazon Web Services STS, see
|
1249
|
+
# [Activating and deactivating Amazon Web Services STS in an Amazon Web
|
1250
|
+
# Services Region][1] in the *Identity and Access Management User
|
1251
|
+
# Guide*.
|
1230
1252
|
#
|
1231
1253
|
# S3 File Gateways do not support creating hard or symbolic links on a
|
1232
1254
|
# file share.
|
@@ -1263,18 +1285,29 @@ module Aws::StorageGateway
|
|
1263
1285
|
# File Gateway assumes when it accesses the underlying storage.
|
1264
1286
|
#
|
1265
1287
|
# @option params [required, String] :location_arn
|
1266
|
-
#
|
1267
|
-
#
|
1288
|
+
# A custom ARN for the backend storage used for storing data for file
|
1289
|
+
# shares. It includes a resource ARN with an optional prefix
|
1290
|
+
# concatenation. The prefix must end with a forward slash (/).
|
1291
|
+
#
|
1292
|
+
# <note markdown="1"> You can specify LocationARN as a bucket ARN, access point ARN or
|
1293
|
+
# access point alias, as shown in the following examples.
|
1294
|
+
#
|
1295
|
+
# Bucket ARN:
|
1296
|
+
#
|
1297
|
+
# `arn:aws:s3:::my-bucket/prefix/`
|
1268
1298
|
#
|
1269
|
-
#
|
1270
|
-
# ARN that includes the bucket region as shown:
|
1299
|
+
# Access point ARN:
|
1271
1300
|
#
|
1272
|
-
# `arn:aws:s3:region:account-id:accesspoint/access-point-name
|
1301
|
+
# `arn:aws:s3:region:account-id:accesspoint/access-point-name/prefix/`
|
1273
1302
|
#
|
1274
|
-
# If you specify
|
1275
|
-
#
|
1276
|
-
#
|
1277
|
-
#
|
1303
|
+
# If you specify an access point, the bucket policy must be configured
|
1304
|
+
# to delegate access control to the access point. For information, see
|
1305
|
+
# [Delegating access control to access points][1] in the *Amazon S3 User
|
1306
|
+
# Guide*.
|
1307
|
+
#
|
1308
|
+
# Access point alias:
|
1309
|
+
#
|
1310
|
+
# `test-ap-ab123cdef4gehijklmn5opqrstuvuse1a-s3alias`
|
1278
1311
|
#
|
1279
1312
|
# </note>
|
1280
1313
|
#
|
@@ -1353,7 +1386,7 @@ module Aws::StorageGateway
|
|
1353
1386
|
# The name of the file share. Optional.
|
1354
1387
|
#
|
1355
1388
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1356
|
-
# `LocationARN
|
1389
|
+
# `LocationARN`, or if an access point or access point alias is used.
|
1357
1390
|
#
|
1358
1391
|
# </note>
|
1359
1392
|
#
|
@@ -1403,6 +1436,9 @@ module Aws::StorageGateway
|
|
1403
1436
|
#
|
1404
1437
|
# </note>
|
1405
1438
|
#
|
1439
|
+
# @option params [String] :audit_destination_arn
|
1440
|
+
# The Amazon Resource Name (ARN) of the storage used for audit logs.
|
1441
|
+
#
|
1406
1442
|
# @return [Types::CreateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1407
1443
|
#
|
1408
1444
|
# * {Types::CreateNFSFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -1442,6 +1478,7 @@ module Aws::StorageGateway
|
|
1442
1478
|
# notification_policy: "NotificationPolicy",
|
1443
1479
|
# vpc_endpoint_dns_name: "DNSHostName",
|
1444
1480
|
# bucket_region: "RegionId",
|
1481
|
+
# audit_destination_arn: "AuditDestinationARN",
|
1445
1482
|
# })
|
1446
1483
|
#
|
1447
1484
|
# @example Response structure
|
@@ -1463,12 +1500,15 @@ module Aws::StorageGateway
|
|
1463
1500
|
# using an SMB interface. This operation is only supported for S3 File
|
1464
1501
|
# Gateways.
|
1465
1502
|
#
|
1466
|
-
# S3 File Gateways require Security Token Service (
|
1467
|
-
# to enable you to create a file share. Make sure
|
1468
|
-
#
|
1469
|
-
#
|
1470
|
-
#
|
1471
|
-
#
|
1503
|
+
# S3 File Gateways require Security Token Service (Amazon Web Services
|
1504
|
+
# STS) to be activated to enable you to create a file share. Make sure
|
1505
|
+
# that Amazon Web Services STS is activated in the Amazon Web Services
|
1506
|
+
# Region you are creating your S3 File Gateway in. If Amazon Web
|
1507
|
+
# Services STS is not activated in this Amazon Web Services Region,
|
1508
|
+
# activate it. For information about how to activate Amazon Web Services
|
1509
|
+
# STS, see [Activating and deactivating Amazon Web Services STS in an
|
1510
|
+
# Amazon Web Services Region][1] in the *Identity and Access Management
|
1511
|
+
# User Guide*.
|
1472
1512
|
#
|
1473
1513
|
# File gateways don't support creating hard or symbolic links on a
|
1474
1514
|
# file
|
@@ -1503,18 +1543,29 @@ module Aws::StorageGateway
|
|
1503
1543
|
# File Gateway assumes when it accesses the underlying storage.
|
1504
1544
|
#
|
1505
1545
|
# @option params [required, String] :location_arn
|
1506
|
-
#
|
1507
|
-
#
|
1546
|
+
# A custom ARN for the backend storage used for storing data for file
|
1547
|
+
# shares. It includes a resource ARN with an optional prefix
|
1548
|
+
# concatenation. The prefix must end with a forward slash (/).
|
1549
|
+
#
|
1550
|
+
# <note markdown="1"> You can specify LocationARN as a bucket ARN, access point ARN or
|
1551
|
+
# access point alias, as shown in the following examples.
|
1552
|
+
#
|
1553
|
+
# Bucket ARN:
|
1554
|
+
#
|
1555
|
+
# `arn:aws:s3:::my-bucket/prefix/`
|
1556
|
+
#
|
1557
|
+
# Access point ARN:
|
1558
|
+
#
|
1559
|
+
# `arn:aws:s3:region:account-id:accesspoint/access-point-name/prefix/`
|
1508
1560
|
#
|
1509
|
-
#
|
1510
|
-
#
|
1561
|
+
# If you specify an access point, the bucket policy must be configured
|
1562
|
+
# to delegate access control to the access point. For information, see
|
1563
|
+
# [Delegating access control to access points][1] in the *Amazon S3 User
|
1564
|
+
# Guide*.
|
1511
1565
|
#
|
1512
|
-
#
|
1566
|
+
# Access point alias:
|
1513
1567
|
#
|
1514
|
-
#
|
1515
|
-
# must be configured to delegate access control to the access point. For
|
1516
|
-
# information, see [Delegating access control to access points][1] in
|
1517
|
-
# the *Amazon S3 User Guide*.
|
1568
|
+
# `test-ap-ab123cdef4gehijklmn5opqrstuvuse1a-s3alias`
|
1518
1569
|
#
|
1519
1570
|
# </note>
|
1520
1571
|
#
|
@@ -1634,7 +1685,7 @@ module Aws::StorageGateway
|
|
1634
1685
|
# The name of the file share. Optional.
|
1635
1686
|
#
|
1636
1687
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1637
|
-
# `LocationARN
|
1688
|
+
# `LocationARN`, or if an access point or access point alias is used.
|
1638
1689
|
#
|
1639
1690
|
# </note>
|
1640
1691
|
#
|
@@ -1973,7 +2024,8 @@ module Aws::StorageGateway
|
|
1973
2024
|
#
|
1974
2025
|
# @option params [required, String] :gateway_arn
|
1975
2026
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
1976
|
-
# operation to return a list of gateways for your account and
|
2027
|
+
# operation to return a list of gateways for your account and Amazon Web
|
2028
|
+
# Services Region.
|
1977
2029
|
#
|
1978
2030
|
# @option params [required, String] :disk_id
|
1979
2031
|
# The unique identifier for the gateway local disk that is configured as
|
@@ -2117,10 +2169,11 @@ module Aws::StorageGateway
|
|
2117
2169
|
#
|
2118
2170
|
# @option params [String] :retention_lock_type
|
2119
2171
|
# Tape retention lock can be configured in two modes. When configured in
|
2120
|
-
# governance mode, accounts with specific IAM
|
2121
|
-
# to remove the tape retention lock from
|
2122
|
-
# configured in compliance mode, the tape
|
2123
|
-
# removed by any user, including the root
|
2172
|
+
# governance mode, Amazon Web Services accounts with specific IAM
|
2173
|
+
# permissions are authorized to remove the tape retention lock from
|
2174
|
+
# archived virtual tapes. When configured in compliance mode, the tape
|
2175
|
+
# retention lock cannot be removed by any user, including the root
|
2176
|
+
# Amazon Web Services account.
|
2124
2177
|
#
|
2125
2178
|
# @option params [Integer] :retention_lock_time_in_days
|
2126
2179
|
# Tape retention lock time is set in days. Tape retention lock can be
|
@@ -2184,7 +2237,8 @@ module Aws::StorageGateway
|
|
2184
2237
|
# @option params [required, String] :gateway_arn
|
2185
2238
|
# The unique Amazon Resource Name (ARN) that represents the gateway to
|
2186
2239
|
# associate the virtual tape with. Use the ListGateways operation to
|
2187
|
-
# return a list of gateways for your account and
|
2240
|
+
# return a list of gateways for your account and Amazon Web Services
|
2241
|
+
# Region.
|
2188
2242
|
#
|
2189
2243
|
# @option params [required, Integer] :tape_size_in_bytes
|
2190
2244
|
# The size, in bytes, of the virtual tape that you want to create.
|
@@ -2301,7 +2355,8 @@ module Aws::StorageGateway
|
|
2301
2355
|
# @option params [required, String] :gateway_arn
|
2302
2356
|
# The unique Amazon Resource Name (ARN) that represents the gateway to
|
2303
2357
|
# associate the virtual tapes with. Use the ListGateways operation to
|
2304
|
-
# return a list of gateways for your account and
|
2358
|
+
# return a list of gateways for your account and Amazon Web Services
|
2359
|
+
# Region.
|
2305
2360
|
#
|
2306
2361
|
# @option params [required, Integer] :tape_size_in_bytes
|
2307
2362
|
# The size, in bytes, of the virtual tapes that you want to create.
|
@@ -2435,7 +2490,8 @@ module Aws::StorageGateway
|
|
2435
2490
|
#
|
2436
2491
|
# @option params [required, String] :gateway_arn
|
2437
2492
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
2438
|
-
# operation to return a list of gateways for your account and
|
2493
|
+
# operation to return a list of gateways for your account and Amazon Web
|
2494
|
+
# Services Region.
|
2439
2495
|
#
|
2440
2496
|
# @return [Types::DeleteAutomaticTapeCreationPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2441
2497
|
#
|
@@ -2469,7 +2525,8 @@ module Aws::StorageGateway
|
|
2469
2525
|
#
|
2470
2526
|
# @option params [required, String] :gateway_arn
|
2471
2527
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
2472
|
-
# operation to return a list of gateways for your account and
|
2528
|
+
# operation to return a list of gateways for your account and Amazon Web
|
2529
|
+
# Services Region.
|
2473
2530
|
#
|
2474
2531
|
# @option params [required, String] :bandwidth_type
|
2475
2532
|
# One of the BandwidthType values that indicates the gateway bandwidth
|
@@ -2635,7 +2692,8 @@ module Aws::StorageGateway
|
|
2635
2692
|
#
|
2636
2693
|
# @option params [required, String] :gateway_arn
|
2637
2694
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
2638
|
-
# operation to return a list of gateways for your account and
|
2695
|
+
# operation to return a list of gateways for your account and Amazon Web
|
2696
|
+
# Services Region.
|
2639
2697
|
#
|
2640
2698
|
# @return [Types::DeleteGatewayOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2641
2699
|
#
|
@@ -2740,7 +2798,8 @@ module Aws::StorageGateway
|
|
2740
2798
|
# @option params [required, String] :gateway_arn
|
2741
2799
|
# The unique Amazon Resource Name (ARN) of the gateway that the virtual
|
2742
2800
|
# tape to delete is associated with. Use the ListGateways operation to
|
2743
|
-
# return a list of gateways for your account and
|
2801
|
+
# return a list of gateways for your account and Amazon Web Services
|
2802
|
+
# Region.
|
2744
2803
|
#
|
2745
2804
|
# @option params [required, String] :tape_arn
|
2746
2805
|
# The Amazon Resource Name (ARN) of the virtual tape to delete.
|
@@ -2942,7 +3001,8 @@ module Aws::StorageGateway
|
|
2942
3001
|
#
|
2943
3002
|
# @option params [required, String] :gateway_arn
|
2944
3003
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
2945
|
-
# operation to return a list of gateways for your account and
|
3004
|
+
# operation to return a list of gateways for your account and Amazon Web
|
3005
|
+
# Services Region.
|
2946
3006
|
#
|
2947
3007
|
# @return [Types::DescribeAvailabilityMonitorTestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2948
3008
|
#
|
@@ -2984,7 +3044,8 @@ module Aws::StorageGateway
|
|
2984
3044
|
#
|
2985
3045
|
# @option params [required, String] :gateway_arn
|
2986
3046
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
2987
|
-
# operation to return a list of gateways for your account and
|
3047
|
+
# operation to return a list of gateways for your account and Amazon Web
|
3048
|
+
# Services Region.
|
2988
3049
|
#
|
2989
3050
|
# @return [Types::DescribeBandwidthRateLimitOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2990
3051
|
#
|
@@ -3052,7 +3113,8 @@ module Aws::StorageGateway
|
|
3052
3113
|
#
|
3053
3114
|
# @option params [required, String] :gateway_arn
|
3054
3115
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
3055
|
-
# operation to return a list of gateways for your account and
|
3116
|
+
# operation to return a list of gateways for your account and Amazon Web
|
3117
|
+
# Services Region.
|
3056
3118
|
#
|
3057
3119
|
# @return [Types::DescribeBandwidthRateLimitScheduleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3058
3120
|
#
|
@@ -3095,7 +3157,8 @@ module Aws::StorageGateway
|
|
3095
3157
|
#
|
3096
3158
|
# @option params [required, String] :gateway_arn
|
3097
3159
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
3098
|
-
# operation to return a list of gateways for your account and
|
3160
|
+
# operation to return a list of gateways for your account and Amazon Web
|
3161
|
+
# Services Region.
|
3099
3162
|
#
|
3100
3163
|
# @return [Types::DescribeCacheOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3101
3164
|
#
|
@@ -3330,6 +3393,8 @@ module Aws::StorageGateway
|
|
3330
3393
|
# resp.file_system_association_info_list[0].cache_attributes.cache_stale_timeout_in_seconds #=> Integer
|
3331
3394
|
# resp.file_system_association_info_list[0].endpoint_network_configuration.ip_addresses #=> Array
|
3332
3395
|
# resp.file_system_association_info_list[0].endpoint_network_configuration.ip_addresses[0] #=> String
|
3396
|
+
# resp.file_system_association_info_list[0].file_system_association_status_details #=> Array
|
3397
|
+
# resp.file_system_association_info_list[0].file_system_association_status_details[0].error_code #=> String
|
3333
3398
|
#
|
3334
3399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeFileSystemAssociations AWS API Documentation
|
3335
3400
|
#
|
@@ -3347,7 +3412,8 @@ module Aws::StorageGateway
|
|
3347
3412
|
#
|
3348
3413
|
# @option params [required, String] :gateway_arn
|
3349
3414
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
3350
|
-
# operation to return a list of gateways for your account and
|
3415
|
+
# operation to return a list of gateways for your account and Amazon Web
|
3416
|
+
# Services Region.
|
3351
3417
|
#
|
3352
3418
|
# @return [Types::DescribeGatewayInformationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3353
3419
|
#
|
@@ -3371,6 +3437,7 @@ module Aws::StorageGateway
|
|
3371
3437
|
# * {Types::DescribeGatewayInformationOutput#deprecation_date #deprecation_date} => String
|
3372
3438
|
# * {Types::DescribeGatewayInformationOutput#gateway_capacity #gateway_capacity} => String
|
3373
3439
|
# * {Types::DescribeGatewayInformationOutput#supported_gateway_capacities #supported_gateway_capacities} => Array<String>
|
3440
|
+
# * {Types::DescribeGatewayInformationOutput#host_environment_id #host_environment_id} => String
|
3374
3441
|
#
|
3375
3442
|
#
|
3376
3443
|
# @example Example: To describe metadata about the gateway
|
@@ -3426,13 +3493,14 @@ module Aws::StorageGateway
|
|
3426
3493
|
# resp.tags[0].value #=> String
|
3427
3494
|
# resp.vpc_endpoint #=> String
|
3428
3495
|
# resp.cloud_watch_log_group_arn #=> String
|
3429
|
-
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER"
|
3496
|
+
# resp.host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
3430
3497
|
# resp.endpoint_type #=> String
|
3431
3498
|
# resp.software_updates_end_date #=> String
|
3432
3499
|
# resp.deprecation_date #=> String
|
3433
3500
|
# resp.gateway_capacity #=> String, one of "Small", "Medium", "Large"
|
3434
3501
|
# resp.supported_gateway_capacities #=> Array
|
3435
3502
|
# resp.supported_gateway_capacities[0] #=> String, one of "Small", "Medium", "Large"
|
3503
|
+
# resp.host_environment_id #=> String
|
3436
3504
|
#
|
3437
3505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeGatewayInformation AWS API Documentation
|
3438
3506
|
#
|
@@ -3449,7 +3517,8 @@ module Aws::StorageGateway
|
|
3449
3517
|
#
|
3450
3518
|
# @option params [required, String] :gateway_arn
|
3451
3519
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
3452
|
-
# operation to return a list of gateways for your account and
|
3520
|
+
# operation to return a list of gateways for your account and Amazon Web
|
3521
|
+
# Services Region.
|
3453
3522
|
#
|
3454
3523
|
# @return [Types::DescribeMaintenanceStartTimeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3455
3524
|
#
|
@@ -3552,6 +3621,7 @@ module Aws::StorageGateway
|
|
3552
3621
|
# resp.nfs_file_share_info_list[0].notification_policy #=> String
|
3553
3622
|
# resp.nfs_file_share_info_list[0].vpc_endpoint_dns_name #=> String
|
3554
3623
|
# resp.nfs_file_share_info_list[0].bucket_region #=> String
|
3624
|
+
# resp.nfs_file_share_info_list[0].audit_destination_arn #=> String
|
3555
3625
|
#
|
3556
3626
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeNFSFileShares AWS API Documentation
|
3557
3627
|
#
|
@@ -3633,7 +3703,8 @@ module Aws::StorageGateway
|
|
3633
3703
|
#
|
3634
3704
|
# @option params [required, String] :gateway_arn
|
3635
3705
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
3636
|
-
# operation to return a list of gateways for your account and
|
3706
|
+
# operation to return a list of gateways for your account and Amazon Web
|
3707
|
+
# Services Region.
|
3637
3708
|
#
|
3638
3709
|
# @return [Types::DescribeSMBSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3639
3710
|
#
|
@@ -3643,6 +3714,7 @@ module Aws::StorageGateway
|
|
3643
3714
|
# * {Types::DescribeSMBSettingsOutput#smb_guest_password_set #smb_guest_password_set} => Boolean
|
3644
3715
|
# * {Types::DescribeSMBSettingsOutput#smb_security_strategy #smb_security_strategy} => String
|
3645
3716
|
# * {Types::DescribeSMBSettingsOutput#file_shares_visible #file_shares_visible} => Boolean
|
3717
|
+
# * {Types::DescribeSMBSettingsOutput#smb_local_groups #smb_local_groups} => Types::SMBLocalGroups
|
3646
3718
|
#
|
3647
3719
|
# @example Request syntax with placeholder values
|
3648
3720
|
#
|
@@ -3658,6 +3730,8 @@ module Aws::StorageGateway
|
|
3658
3730
|
# resp.smb_guest_password_set #=> Boolean
|
3659
3731
|
# resp.smb_security_strategy #=> String, one of "ClientSpecified", "MandatorySigning", "MandatoryEncryption"
|
3660
3732
|
# resp.file_shares_visible #=> Boolean
|
3733
|
+
# resp.smb_local_groups.gateway_admins #=> Array
|
3734
|
+
# resp.smb_local_groups.gateway_admins[0] #=> String
|
3661
3735
|
#
|
3662
3736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeSMBSettings AWS API Documentation
|
3663
3737
|
#
|
@@ -3925,7 +3999,8 @@ module Aws::StorageGateway
|
|
3925
3999
|
#
|
3926
4000
|
# @option params [required, String] :gateway_arn
|
3927
4001
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
3928
|
-
# operation to return a list of gateways for your account and
|
4002
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4003
|
+
# Services Region.
|
3929
4004
|
#
|
3930
4005
|
# @option params [String] :marker
|
3931
4006
|
# An opaque string that indicates the position at which to begin
|
@@ -4002,7 +4077,8 @@ module Aws::StorageGateway
|
|
4002
4077
|
#
|
4003
4078
|
# @option params [required, String] :gateway_arn
|
4004
4079
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4005
|
-
# operation to return a list of gateways for your account and
|
4080
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4081
|
+
# Services Region.
|
4006
4082
|
#
|
4007
4083
|
# @option params [Array<String>] :tape_arns
|
4008
4084
|
# Specifies one or more unique Amazon Resource Names (ARNs) that
|
@@ -4113,7 +4189,8 @@ module Aws::StorageGateway
|
|
4113
4189
|
#
|
4114
4190
|
# @option params [required, String] :gateway_arn
|
4115
4191
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4116
|
-
# operation to return a list of gateways for your account and
|
4192
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4193
|
+
# Services Region.
|
4117
4194
|
#
|
4118
4195
|
# @return [Types::DescribeUploadBufferOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4119
4196
|
#
|
@@ -4194,7 +4271,8 @@ module Aws::StorageGateway
|
|
4194
4271
|
#
|
4195
4272
|
# @option params [required, String] :gateway_arn
|
4196
4273
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4197
|
-
# operation to return a list of gateways for your account and
|
4274
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4275
|
+
# Services Region.
|
4198
4276
|
#
|
4199
4277
|
# @option params [Array<String>] :vtl_device_arns
|
4200
4278
|
# An array of strings, where each string represents the Amazon Resource
|
@@ -4327,7 +4405,8 @@ module Aws::StorageGateway
|
|
4327
4405
|
#
|
4328
4406
|
# @option params [required, String] :gateway_arn
|
4329
4407
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4330
|
-
# operation to return a list of gateways for your account and
|
4408
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4409
|
+
# Services Region.
|
4331
4410
|
#
|
4332
4411
|
# @return [Types::DescribeWorkingStorageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4333
4412
|
#
|
@@ -4436,7 +4515,8 @@ module Aws::StorageGateway
|
|
4436
4515
|
#
|
4437
4516
|
# @option params [required, String] :gateway_arn
|
4438
4517
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4439
|
-
# operation to return a list of gateways for your account and
|
4518
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4519
|
+
# Services Region.
|
4440
4520
|
#
|
4441
4521
|
# @return [Types::DisableGatewayOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4442
4522
|
#
|
@@ -4521,7 +4601,8 @@ module Aws::StorageGateway
|
|
4521
4601
|
#
|
4522
4602
|
# @option params [required, String] :gateway_arn
|
4523
4603
|
# The Amazon Resource Name (ARN) of the gateway. Use the `ListGateways`
|
4524
|
-
# operation to return a list of gateways for your account and
|
4604
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4605
|
+
# Services Region.
|
4525
4606
|
#
|
4526
4607
|
# @option params [required, String] :domain_name
|
4527
4608
|
# The name of the domain that you want the gateway to join.
|
@@ -4591,7 +4672,8 @@ module Aws::StorageGateway
|
|
4591
4672
|
#
|
4592
4673
|
# @option params [String] :gateway_arn
|
4593
4674
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4594
|
-
# operation to return a list of gateways for your account and
|
4675
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4676
|
+
# Services Region.
|
4595
4677
|
#
|
4596
4678
|
# @return [Types::ListAutomaticTapeCreationPoliciesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4597
4679
|
#
|
@@ -4683,7 +4765,8 @@ module Aws::StorageGateway
|
|
4683
4765
|
#
|
4684
4766
|
# @option params [String] :gateway_arn
|
4685
4767
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4686
|
-
# operation to return a list of gateways for your account and
|
4768
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4769
|
+
# Services Region.
|
4687
4770
|
#
|
4688
4771
|
# @option params [Integer] :limit
|
4689
4772
|
# The maximum number of file system associations to return in the
|
@@ -4731,9 +4814,9 @@ module Aws::StorageGateway
|
|
4731
4814
|
req.send_request(options)
|
4732
4815
|
end
|
4733
4816
|
|
4734
|
-
# Lists gateways owned by an account in an
|
4735
|
-
# request. The returned list is
|
4736
|
-
# (ARN).
|
4817
|
+
# Lists gateways owned by an Amazon Web Services account in an Amazon
|
4818
|
+
# Web Services Region specified in the request. The returned list is
|
4819
|
+
# ordered by gateway Amazon Resource Name (ARN).
|
4737
4820
|
#
|
4738
4821
|
# By default, the operation returns a maximum of 100 gateways. This
|
4739
4822
|
# operation supports pagination that allows you to optionally reduce the
|
@@ -4800,6 +4883,8 @@ module Aws::StorageGateway
|
|
4800
4883
|
# resp.gateways[0].gateway_name #=> String
|
4801
4884
|
# resp.gateways[0].ec2_instance_id #=> String
|
4802
4885
|
# resp.gateways[0].ec2_instance_region #=> String
|
4886
|
+
# resp.gateways[0].host_environment #=> String, one of "VMWARE", "HYPER-V", "EC2", "KVM", "OTHER", "SNOWBALL"
|
4887
|
+
# resp.gateways[0].host_environment_id #=> String
|
4803
4888
|
# resp.marker #=> String
|
4804
4889
|
#
|
4805
4890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ListGateways AWS API Documentation
|
@@ -4825,7 +4910,8 @@ module Aws::StorageGateway
|
|
4825
4910
|
#
|
4826
4911
|
# @option params [required, String] :gateway_arn
|
4827
4912
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
4828
|
-
# operation to return a list of gateways for your account and
|
4913
|
+
# operation to return a list of gateways for your account and Amazon Web
|
4914
|
+
# Services Region.
|
4829
4915
|
#
|
4830
4916
|
# @return [Types::ListLocalDisksOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4831
4917
|
#
|
@@ -5133,7 +5219,8 @@ module Aws::StorageGateway
|
|
5133
5219
|
#
|
5134
5220
|
# @option params [required, String] :gateway_arn
|
5135
5221
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5136
|
-
# operation to return a list of gateways for your account and
|
5222
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5223
|
+
# Services Region.
|
5137
5224
|
#
|
5138
5225
|
# @return [Types::ListVolumeRecoveryPointsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5139
5226
|
#
|
@@ -5202,7 +5289,8 @@ module Aws::StorageGateway
|
|
5202
5289
|
#
|
5203
5290
|
# @option params [String] :gateway_arn
|
5204
5291
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5205
|
-
# operation to return a list of gateways for your account and
|
5292
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5293
|
+
# Services Region.
|
5206
5294
|
#
|
5207
5295
|
# @option params [String] :marker
|
5208
5296
|
# A string that indicates the position at which to begin the returned
|
@@ -5493,7 +5581,8 @@ module Aws::StorageGateway
|
|
5493
5581
|
#
|
5494
5582
|
# @option params [required, String] :gateway_arn
|
5495
5583
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5496
|
-
# operation to return a list of gateways for your account and
|
5584
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5585
|
+
# Services Region.
|
5497
5586
|
#
|
5498
5587
|
# @return [Types::ResetCacheOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5499
5588
|
#
|
@@ -5551,7 +5640,7 @@ module Aws::StorageGateway
|
|
5551
5640
|
# @option params [required, String] :gateway_arn
|
5552
5641
|
# The Amazon Resource Name (ARN) of the gateway you want to retrieve the
|
5553
5642
|
# virtual tape to. Use the ListGateways operation to return a list of
|
5554
|
-
# gateways for your account and Region.
|
5643
|
+
# gateways for your account and Amazon Web Services Region.
|
5555
5644
|
#
|
5556
5645
|
# You retrieve archived virtual tapes to only one gateway and the
|
5557
5646
|
# gateway must be a tape gateway.
|
@@ -5616,7 +5705,8 @@ module Aws::StorageGateway
|
|
5616
5705
|
#
|
5617
5706
|
# @option params [required, String] :gateway_arn
|
5618
5707
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5619
|
-
# operation to return a list of gateways for your account and
|
5708
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5709
|
+
# Services Region.
|
5620
5710
|
#
|
5621
5711
|
# @return [Types::RetrieveTapeRecoveryPointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5622
5712
|
#
|
@@ -5664,7 +5754,8 @@ module Aws::StorageGateway
|
|
5664
5754
|
#
|
5665
5755
|
# @option params [required, String] :gateway_arn
|
5666
5756
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5667
|
-
# operation to return a list of gateways for your account and
|
5757
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5758
|
+
# Services Region.
|
5668
5759
|
#
|
5669
5760
|
# @option params [required, String] :local_console_password
|
5670
5761
|
# The password you want to set for your VM local console.
|
@@ -5774,7 +5865,8 @@ module Aws::StorageGateway
|
|
5774
5865
|
#
|
5775
5866
|
# @option params [required, String] :gateway_arn
|
5776
5867
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5777
|
-
# operation to return a list of gateways for your account and
|
5868
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5869
|
+
# Services Region.
|
5778
5870
|
#
|
5779
5871
|
# @return [Types::ShutdownGatewayOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5780
5872
|
#
|
@@ -5828,7 +5920,8 @@ module Aws::StorageGateway
|
|
5828
5920
|
#
|
5829
5921
|
# @option params [required, String] :gateway_arn
|
5830
5922
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5831
|
-
# operation to return a list of gateways for your account and
|
5923
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5924
|
+
# Services Region.
|
5832
5925
|
#
|
5833
5926
|
# @return [Types::StartAvailabilityMonitorTestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5834
5927
|
#
|
@@ -5871,7 +5964,8 @@ module Aws::StorageGateway
|
|
5871
5964
|
#
|
5872
5965
|
# @option params [required, String] :gateway_arn
|
5873
5966
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5874
|
-
# operation to return a list of gateways for your account and
|
5967
|
+
# operation to return a list of gateways for your account and Amazon Web
|
5968
|
+
# Services Region.
|
5875
5969
|
#
|
5876
5970
|
# @return [Types::StartGatewayOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5877
5971
|
#
|
@@ -5927,7 +6021,8 @@ module Aws::StorageGateway
|
|
5927
6021
|
#
|
5928
6022
|
# @option params [required, String] :gateway_arn
|
5929
6023
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5930
|
-
# operation to return a list of gateways for your account and
|
6024
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6025
|
+
# Services Region.
|
5931
6026
|
#
|
5932
6027
|
# @return [Types::UpdateAutomaticTapeCreationPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5933
6028
|
#
|
@@ -5977,7 +6072,8 @@ module Aws::StorageGateway
|
|
5977
6072
|
#
|
5978
6073
|
# @option params [required, String] :gateway_arn
|
5979
6074
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5980
|
-
# operation to return a list of gateways for your account and
|
6075
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6076
|
+
# Services Region.
|
5981
6077
|
#
|
5982
6078
|
# @option params [Integer] :average_upload_rate_limit_in_bits_per_sec
|
5983
6079
|
# The average upload bandwidth rate limit in bits per second.
|
@@ -6035,7 +6131,8 @@ module Aws::StorageGateway
|
|
6035
6131
|
#
|
6036
6132
|
# @option params [required, String] :gateway_arn
|
6037
6133
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6038
|
-
# operation to return a list of gateways for your account and
|
6134
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6135
|
+
# Services Region.
|
6039
6136
|
#
|
6040
6137
|
# @option params [required, Array<Types::BandwidthRateLimitInterval>] :bandwidth_rate_limit_intervals
|
6041
6138
|
# An array containing bandwidth rate limit schedule intervals for a
|
@@ -6219,7 +6316,8 @@ module Aws::StorageGateway
|
|
6219
6316
|
#
|
6220
6317
|
# @option params [required, String] :gateway_arn
|
6221
6318
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6222
|
-
# operation to return a list of gateways for your account and
|
6319
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6320
|
+
# Services Region.
|
6223
6321
|
#
|
6224
6322
|
# @option params [String] :gateway_name
|
6225
6323
|
# The name you configured for your gateway.
|
@@ -6310,7 +6408,8 @@ module Aws::StorageGateway
|
|
6310
6408
|
#
|
6311
6409
|
# @option params [required, String] :gateway_arn
|
6312
6410
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6313
|
-
# operation to return a list of gateways for your account and
|
6411
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6412
|
+
# Services Region.
|
6314
6413
|
#
|
6315
6414
|
# @return [Types::UpdateGatewaySoftwareNowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6316
6415
|
#
|
@@ -6355,7 +6454,8 @@ module Aws::StorageGateway
|
|
6355
6454
|
#
|
6356
6455
|
# @option params [required, String] :gateway_arn
|
6357
6456
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6358
|
-
# operation to return a list of gateways for your account and
|
6457
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6458
|
+
# Services Region.
|
6359
6459
|
#
|
6360
6460
|
# @option params [required, Integer] :hour_of_day
|
6361
6461
|
# The hour component of the maintenance start time represented as *hh*,
|
@@ -6520,12 +6620,12 @@ module Aws::StorageGateway
|
|
6520
6620
|
# The name of the file share. Optional.
|
6521
6621
|
#
|
6522
6622
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
6523
|
-
# `LocationARN
|
6623
|
+
# `LocationARN`, or if an access point or access point alias is used.
|
6524
6624
|
#
|
6525
6625
|
# </note>
|
6526
6626
|
#
|
6527
6627
|
# @option params [Types::CacheAttributes] :cache_attributes
|
6528
|
-
#
|
6628
|
+
# Specifies refresh cache information for the file share.
|
6529
6629
|
#
|
6530
6630
|
# @option params [String] :notification_policy
|
6531
6631
|
# The notification policy of the file share. `SettlingTimeInSeconds`
|
@@ -6550,6 +6650,9 @@ module Aws::StorageGateway
|
|
6550
6650
|
#
|
6551
6651
|
# `\{\}`
|
6552
6652
|
#
|
6653
|
+
# @option params [String] :audit_destination_arn
|
6654
|
+
# The Amazon Resource Name (ARN) of the storage used for audit logs.
|
6655
|
+
#
|
6553
6656
|
# @return [Types::UpdateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6554
6657
|
#
|
6555
6658
|
# * {Types::UpdateNFSFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -6578,6 +6681,7 @@ module Aws::StorageGateway
|
|
6578
6681
|
# cache_stale_timeout_in_seconds: 1,
|
6579
6682
|
# },
|
6580
6683
|
# notification_policy: "NotificationPolicy",
|
6684
|
+
# audit_destination_arn: "AuditDestinationARN",
|
6581
6685
|
# })
|
6582
6686
|
#
|
6583
6687
|
# @example Response structure
|
@@ -6601,12 +6705,15 @@ module Aws::StorageGateway
|
|
6601
6705
|
#
|
6602
6706
|
# </note>
|
6603
6707
|
#
|
6604
|
-
# File gateways require Security Token Service (
|
6605
|
-
# enable you to create a file share. Make sure that
|
6606
|
-
#
|
6607
|
-
#
|
6608
|
-
#
|
6609
|
-
#
|
6708
|
+
# File gateways require Security Token Service (Amazon Web Services STS)
|
6709
|
+
# to be activated to enable you to create a file share. Make sure that
|
6710
|
+
# Amazon Web Services STS is activated in the Amazon Web Services Region
|
6711
|
+
# you are creating your file gateway in. If Amazon Web Services STS is
|
6712
|
+
# not activated in this Amazon Web Services Region, activate it. For
|
6713
|
+
# information about how to activate Amazon Web Services STS, see
|
6714
|
+
# [Activating and deactivating Amazon Web Services STS in an Amazon Web
|
6715
|
+
# Services Region][1] in the *Identity and Access Management User
|
6716
|
+
# Guide*.
|
6610
6717
|
#
|
6611
6718
|
# File gateways don't support creating hard or symbolic links on a
|
6612
6719
|
# file
|
@@ -6725,7 +6832,7 @@ module Aws::StorageGateway
|
|
6725
6832
|
# The name of the file share. Optional.
|
6726
6833
|
#
|
6727
6834
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
6728
|
-
# `LocationARN
|
6835
|
+
# `LocationARN`, or if an access point or access point alias is used.
|
6729
6836
|
#
|
6730
6837
|
# </note>
|
6731
6838
|
#
|
@@ -6816,7 +6923,8 @@ module Aws::StorageGateway
|
|
6816
6923
|
#
|
6817
6924
|
# @option params [required, String] :gateway_arn
|
6818
6925
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6819
|
-
# operation to return a list of gateways for your account and
|
6926
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6927
|
+
# Services Region.
|
6820
6928
|
#
|
6821
6929
|
# @option params [required, Boolean] :file_shares_visible
|
6822
6930
|
# The shares on this gateway appear when listing shares.
|
@@ -6845,6 +6953,44 @@ module Aws::StorageGateway
|
|
6845
6953
|
req.send_request(options)
|
6846
6954
|
end
|
6847
6955
|
|
6956
|
+
# Updates the list of Active Directory users and groups that have
|
6957
|
+
# special permissions for SMB file shares on the gateway.
|
6958
|
+
#
|
6959
|
+
# @option params [required, String] :gateway_arn
|
6960
|
+
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6961
|
+
# operation to return a list of gateways for your account and Amazon Web
|
6962
|
+
# Services Region.
|
6963
|
+
#
|
6964
|
+
# @option params [required, Types::SMBLocalGroups] :smb_local_groups
|
6965
|
+
# A list of Active Directory users and groups that you want to grant
|
6966
|
+
# special permissions for SMB file shares on the gateway.
|
6967
|
+
#
|
6968
|
+
# @return [Types::UpdateSMBLocalGroupsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6969
|
+
#
|
6970
|
+
# * {Types::UpdateSMBLocalGroupsOutput#gateway_arn #gateway_arn} => String
|
6971
|
+
#
|
6972
|
+
# @example Request syntax with placeholder values
|
6973
|
+
#
|
6974
|
+
# resp = client.update_smb_local_groups({
|
6975
|
+
# gateway_arn: "GatewayARN", # required
|
6976
|
+
# smb_local_groups: { # required
|
6977
|
+
# gateway_admins: ["UserListUser"],
|
6978
|
+
# },
|
6979
|
+
# })
|
6980
|
+
#
|
6981
|
+
# @example Response structure
|
6982
|
+
#
|
6983
|
+
# resp.gateway_arn #=> String
|
6984
|
+
#
|
6985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateSMBLocalGroups AWS API Documentation
|
6986
|
+
#
|
6987
|
+
# @overload update_smb_local_groups(params = {})
|
6988
|
+
# @param [Hash] params ({})
|
6989
|
+
def update_smb_local_groups(params = {}, options = {})
|
6990
|
+
req = build_request(:update_smb_local_groups, params)
|
6991
|
+
req.send_request(options)
|
6992
|
+
end
|
6993
|
+
|
6848
6994
|
# Updates the SMB security strategy on a file gateway. This action is
|
6849
6995
|
# only supported in file gateways.
|
6850
6996
|
#
|
@@ -6856,7 +7002,8 @@ module Aws::StorageGateway
|
|
6856
7002
|
#
|
6857
7003
|
# @option params [required, String] :gateway_arn
|
6858
7004
|
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6859
|
-
# operation to return a list of gateways for your account and
|
7005
|
+
# operation to return a list of gateways for your account and Amazon Web
|
7006
|
+
# Services Region.
|
6860
7007
|
#
|
6861
7008
|
# @option params [required, String] :smb_security_strategy
|
6862
7009
|
# Specifies the type of security strategy.
|
@@ -7057,7 +7204,7 @@ module Aws::StorageGateway
|
|
7057
7204
|
params: params,
|
7058
7205
|
config: config)
|
7059
7206
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7060
|
-
context[:gem_version] = '1.
|
7207
|
+
context[:gem_version] = '1.63.0'
|
7061
7208
|
Seahorse::Client::Request.new(handlers, context)
|
7062
7209
|
end
|
7063
7210
|
|