aws-sdk-storagegateway 1.49.0 → 1.54.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 +353 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-storagegateway.rb +2 -2
- data/lib/aws-sdk-storagegateway/client.rb +183 -10
- data/lib/aws-sdk-storagegateway/client_api.rb +91 -1
- data/lib/aws-sdk-storagegateway/errors.rb +1 -1
- data/lib/aws-sdk-storagegateway/resource.rb +1 -1
- data/lib/aws-sdk-storagegateway/types.rb +273 -8
- metadata +8 -5
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.54.0
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-storagegateway/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::StorageGateway
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.54.0'
|
52
52
|
|
53
53
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -1264,6 +1264,9 @@ module Aws::StorageGateway
|
|
1264
1264
|
# @option params [Types::CacheAttributes] :cache_attributes
|
1265
1265
|
# Refresh cache information.
|
1266
1266
|
#
|
1267
|
+
# @option params [String] :notification_policy
|
1268
|
+
# The notification policy of the file share.
|
1269
|
+
#
|
1267
1270
|
# @return [Types::CreateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1268
1271
|
#
|
1269
1272
|
# * {Types::CreateNFSFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -1300,6 +1303,7 @@ module Aws::StorageGateway
|
|
1300
1303
|
# cache_attributes: {
|
1301
1304
|
# cache_stale_timeout_in_seconds: 1,
|
1302
1305
|
# },
|
1306
|
+
# notification_policy: "NotificationPolicy",
|
1303
1307
|
# })
|
1304
1308
|
#
|
1305
1309
|
# @example Response structure
|
@@ -1420,6 +1424,10 @@ module Aws::StorageGateway
|
|
1420
1424
|
#
|
1421
1425
|
# [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/smb-acl.html
|
1422
1426
|
#
|
1427
|
+
# @option params [Boolean] :access_based_enumeration
|
1428
|
+
# The files and folders on this share will only be visible to users with
|
1429
|
+
# read access.
|
1430
|
+
#
|
1423
1431
|
# @option params [Array<String>] :admin_user_list
|
1424
1432
|
# A list of users or groups in the Active Directory that will be granted
|
1425
1433
|
# administrator privileges on the file share. These users can do all
|
@@ -1480,6 +1488,9 @@ module Aws::StorageGateway
|
|
1480
1488
|
# @option params [Types::CacheAttributes] :cache_attributes
|
1481
1489
|
# Refresh cache information.
|
1482
1490
|
#
|
1491
|
+
# @option params [String] :notification_policy
|
1492
|
+
# The notification policy of the file share.
|
1493
|
+
#
|
1483
1494
|
# @return [Types::CreateSMBFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1484
1495
|
#
|
1485
1496
|
# * {Types::CreateSMBFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -1499,6 +1510,7 @@ module Aws::StorageGateway
|
|
1499
1510
|
# guess_mime_type_enabled: false,
|
1500
1511
|
# requester_pays: false,
|
1501
1512
|
# smbacl_enabled: false,
|
1513
|
+
# access_based_enumeration: false,
|
1502
1514
|
# admin_user_list: ["FileShareUser"],
|
1503
1515
|
# valid_user_list: ["FileShareUser"],
|
1504
1516
|
# invalid_user_list: ["FileShareUser"],
|
@@ -1515,6 +1527,7 @@ module Aws::StorageGateway
|
|
1515
1527
|
# cache_attributes: {
|
1516
1528
|
# cache_stale_timeout_in_seconds: 1,
|
1517
1529
|
# },
|
1530
|
+
# notification_policy: "NotificationPolicy",
|
1518
1531
|
# })
|
1519
1532
|
#
|
1520
1533
|
# @example Response structure
|
@@ -2815,6 +2828,65 @@ module Aws::StorageGateway
|
|
2815
2828
|
req.send_request(options)
|
2816
2829
|
end
|
2817
2830
|
|
2831
|
+
# Returns information about the bandwidth rate limit schedule of a
|
2832
|
+
# gateway. By default, gateways do not have bandwidth rate limit
|
2833
|
+
# schedules, which means no bandwidth rate limiting is in effect. This
|
2834
|
+
# operation is supported only in the volume and tape gateway types.
|
2835
|
+
#
|
2836
|
+
# This operation returns information about a gateway's bandwidth rate
|
2837
|
+
# limit schedule. A bandwidth rate limit schedule consists of one or
|
2838
|
+
# more bandwidth rate limit intervals. A bandwidth rate limit interval
|
2839
|
+
# defines a period of time on one or more days of the week, during which
|
2840
|
+
# bandwidth rate limits are specified for uploading, downloading, or
|
2841
|
+
# both.
|
2842
|
+
#
|
2843
|
+
# A bandwidth rate limit interval consists of one or more days of the
|
2844
|
+
# week, a start hour and minute, an ending hour and minute, and
|
2845
|
+
# bandwidth rate limits for uploading and downloading
|
2846
|
+
#
|
2847
|
+
# If no bandwidth rate limit schedule intervals are set for the gateway,
|
2848
|
+
# this operation returns an empty response. To specify which gateway to
|
2849
|
+
# describe, use the Amazon Resource Name (ARN) of the gateway in your
|
2850
|
+
# request.
|
2851
|
+
#
|
2852
|
+
# @option params [required, String] :gateway_arn
|
2853
|
+
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
2854
|
+
# operation to return a list of gateways for your account and AWS
|
2855
|
+
# Region.
|
2856
|
+
#
|
2857
|
+
# @return [Types::DescribeBandwidthRateLimitScheduleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2858
|
+
#
|
2859
|
+
# * {Types::DescribeBandwidthRateLimitScheduleOutput#gateway_arn #gateway_arn} => String
|
2860
|
+
# * {Types::DescribeBandwidthRateLimitScheduleOutput#bandwidth_rate_limit_intervals #bandwidth_rate_limit_intervals} => Array<Types::BandwidthRateLimitInterval>
|
2861
|
+
#
|
2862
|
+
# @example Request syntax with placeholder values
|
2863
|
+
#
|
2864
|
+
# resp = client.describe_bandwidth_rate_limit_schedule({
|
2865
|
+
# gateway_arn: "GatewayARN", # required
|
2866
|
+
# })
|
2867
|
+
#
|
2868
|
+
# @example Response structure
|
2869
|
+
#
|
2870
|
+
# resp.gateway_arn #=> String
|
2871
|
+
# resp.bandwidth_rate_limit_intervals #=> Array
|
2872
|
+
# resp.bandwidth_rate_limit_intervals[0].start_hour_of_day #=> Integer
|
2873
|
+
# resp.bandwidth_rate_limit_intervals[0].start_minute_of_hour #=> Integer
|
2874
|
+
# resp.bandwidth_rate_limit_intervals[0].end_hour_of_day #=> Integer
|
2875
|
+
# resp.bandwidth_rate_limit_intervals[0].end_minute_of_hour #=> Integer
|
2876
|
+
# resp.bandwidth_rate_limit_intervals[0].days_of_week #=> Array
|
2877
|
+
# resp.bandwidth_rate_limit_intervals[0].days_of_week[0] #=> Integer
|
2878
|
+
# resp.bandwidth_rate_limit_intervals[0].average_upload_rate_limit_in_bits_per_sec #=> Integer
|
2879
|
+
# resp.bandwidth_rate_limit_intervals[0].average_download_rate_limit_in_bits_per_sec #=> Integer
|
2880
|
+
#
|
2881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeBandwidthRateLimitSchedule AWS API Documentation
|
2882
|
+
#
|
2883
|
+
# @overload describe_bandwidth_rate_limit_schedule(params = {})
|
2884
|
+
# @param [Hash] params ({})
|
2885
|
+
def describe_bandwidth_rate_limit_schedule(params = {}, options = {})
|
2886
|
+
req = build_request(:describe_bandwidth_rate_limit_schedule, params)
|
2887
|
+
req.send_request(options)
|
2888
|
+
end
|
2889
|
+
|
2818
2890
|
# Returns information about the cache of a gateway. This operation is
|
2819
2891
|
# only supported in the cached volume, tape, and file gateway types.
|
2820
2892
|
#
|
@@ -3234,6 +3306,7 @@ module Aws::StorageGateway
|
|
3234
3306
|
# resp.nfs_file_share_info_list[0].tags[0].value #=> String
|
3235
3307
|
# resp.nfs_file_share_info_list[0].file_share_name #=> String
|
3236
3308
|
# resp.nfs_file_share_info_list[0].cache_attributes.cache_stale_timeout_in_seconds #=> Integer
|
3309
|
+
# resp.nfs_file_share_info_list[0].notification_policy #=> String
|
3237
3310
|
#
|
3238
3311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeNFSFileShares AWS API Documentation
|
3239
3312
|
#
|
@@ -3280,6 +3353,7 @@ module Aws::StorageGateway
|
|
3280
3353
|
# resp.smb_file_share_info_list[0].guess_mime_type_enabled #=> Boolean
|
3281
3354
|
# resp.smb_file_share_info_list[0].requester_pays #=> Boolean
|
3282
3355
|
# resp.smb_file_share_info_list[0].smbacl_enabled #=> Boolean
|
3356
|
+
# resp.smb_file_share_info_list[0].access_based_enumeration #=> Boolean
|
3283
3357
|
# resp.smb_file_share_info_list[0].admin_user_list #=> Array
|
3284
3358
|
# resp.smb_file_share_info_list[0].admin_user_list[0] #=> String
|
3285
3359
|
# resp.smb_file_share_info_list[0].valid_user_list #=> Array
|
@@ -3294,6 +3368,7 @@ module Aws::StorageGateway
|
|
3294
3368
|
# resp.smb_file_share_info_list[0].tags[0].value #=> String
|
3295
3369
|
# resp.smb_file_share_info_list[0].file_share_name #=> String
|
3296
3370
|
# resp.smb_file_share_info_list[0].cache_attributes.cache_stale_timeout_in_seconds #=> Integer
|
3371
|
+
# resp.smb_file_share_info_list[0].notification_policy #=> String
|
3297
3372
|
#
|
3298
3373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeSMBFileShares AWS API Documentation
|
3299
3374
|
#
|
@@ -3320,6 +3395,7 @@ module Aws::StorageGateway
|
|
3320
3395
|
# * {Types::DescribeSMBSettingsOutput#active_directory_status #active_directory_status} => String
|
3321
3396
|
# * {Types::DescribeSMBSettingsOutput#smb_guest_password_set #smb_guest_password_set} => Boolean
|
3322
3397
|
# * {Types::DescribeSMBSettingsOutput#smb_security_strategy #smb_security_strategy} => String
|
3398
|
+
# * {Types::DescribeSMBSettingsOutput#file_shares_visible #file_shares_visible} => Boolean
|
3323
3399
|
#
|
3324
3400
|
# @example Request syntax with placeholder values
|
3325
3401
|
#
|
@@ -3334,6 +3410,7 @@ module Aws::StorageGateway
|
|
3334
3410
|
# resp.active_directory_status #=> String, one of "ACCESS_DENIED", "DETACHED", "JOINED", "JOINING", "NETWORK_ERROR", "TIMEOUT", "UNKNOWN_ERROR"
|
3335
3411
|
# resp.smb_guest_password_set #=> Boolean
|
3336
3412
|
# resp.smb_security_strategy #=> String, one of "ClientSpecified", "MandatorySigning", "MandatoryEncryption"
|
3413
|
+
# resp.file_shares_visible #=> Boolean
|
3337
3414
|
#
|
3338
3415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeSMBSettings AWS API Documentation
|
3339
3416
|
#
|
@@ -4586,6 +4663,8 @@ module Aws::StorageGateway
|
|
4586
4663
|
# * {Types::ListTapePoolsOutput#pool_infos #pool_infos} => Array<Types::PoolInfo>
|
4587
4664
|
# * {Types::ListTapePoolsOutput#marker #marker} => String
|
4588
4665
|
#
|
4666
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4667
|
+
#
|
4589
4668
|
# @example Request syntax with placeholder values
|
4590
4669
|
#
|
4591
4670
|
# resp = client.list_tape_pools({
|
@@ -5620,6 +5699,56 @@ module Aws::StorageGateway
|
|
5620
5699
|
req.send_request(options)
|
5621
5700
|
end
|
5622
5701
|
|
5702
|
+
# Updates the bandwidth rate limit schedule for a specified gateway. By
|
5703
|
+
# default, gateways do not have bandwidth rate limit schedules, which
|
5704
|
+
# means no bandwidth rate limiting is in effect. Use this to initiate or
|
5705
|
+
# update a gateway's bandwidth rate limit schedule. This operation is
|
5706
|
+
# supported in the volume and tape gateway types.
|
5707
|
+
#
|
5708
|
+
# @option params [required, String] :gateway_arn
|
5709
|
+
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
5710
|
+
# operation to return a list of gateways for your account and AWS
|
5711
|
+
# Region.
|
5712
|
+
#
|
5713
|
+
# @option params [required, Array<Types::BandwidthRateLimitInterval>] :bandwidth_rate_limit_intervals
|
5714
|
+
# An array containing bandwidth rate limit schedule intervals for a
|
5715
|
+
# gateway. When no bandwidth rate limit intervals have been scheduled,
|
5716
|
+
# the array is empty.
|
5717
|
+
#
|
5718
|
+
# @return [Types::UpdateBandwidthRateLimitScheduleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5719
|
+
#
|
5720
|
+
# * {Types::UpdateBandwidthRateLimitScheduleOutput#gateway_arn #gateway_arn} => String
|
5721
|
+
#
|
5722
|
+
# @example Request syntax with placeholder values
|
5723
|
+
#
|
5724
|
+
# resp = client.update_bandwidth_rate_limit_schedule({
|
5725
|
+
# gateway_arn: "GatewayARN", # required
|
5726
|
+
# bandwidth_rate_limit_intervals: [ # required
|
5727
|
+
# {
|
5728
|
+
# start_hour_of_day: 1, # required
|
5729
|
+
# start_minute_of_hour: 1, # required
|
5730
|
+
# end_hour_of_day: 1, # required
|
5731
|
+
# end_minute_of_hour: 1, # required
|
5732
|
+
# days_of_week: [1], # required
|
5733
|
+
# average_upload_rate_limit_in_bits_per_sec: 1,
|
5734
|
+
# average_download_rate_limit_in_bits_per_sec: 1,
|
5735
|
+
# },
|
5736
|
+
# ],
|
5737
|
+
# })
|
5738
|
+
#
|
5739
|
+
# @example Response structure
|
5740
|
+
#
|
5741
|
+
# resp.gateway_arn #=> String
|
5742
|
+
#
|
5743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateBandwidthRateLimitSchedule AWS API Documentation
|
5744
|
+
#
|
5745
|
+
# @overload update_bandwidth_rate_limit_schedule(params = {})
|
5746
|
+
# @param [Hash] params ({})
|
5747
|
+
def update_bandwidth_rate_limit_schedule(params = {}, options = {})
|
5748
|
+
req = build_request(:update_bandwidth_rate_limit_schedule, params)
|
5749
|
+
req.send_request(options)
|
5750
|
+
end
|
5751
|
+
|
5623
5752
|
# Updates the Challenge-Handshake Authentication Protocol (CHAP)
|
5624
5753
|
# credentials for a specified iSCSI target. By default, a gateway does
|
5625
5754
|
# not have CHAP enabled; however, for added security, you might use it.
|
@@ -5923,7 +6052,7 @@ module Aws::StorageGateway
|
|
5923
6052
|
#
|
5924
6053
|
# </note>
|
5925
6054
|
#
|
5926
|
-
# Updates the following file share
|
6055
|
+
# Updates the following file share settings:
|
5927
6056
|
#
|
5928
6057
|
# * Default storage class for your S3 bucket
|
5929
6058
|
#
|
@@ -5935,11 +6064,6 @@ module Aws::StorageGateway
|
|
5935
6064
|
#
|
5936
6065
|
# * Write status of your file share
|
5937
6066
|
#
|
5938
|
-
# <note markdown="1"> To leave a file share field unchanged, set the corresponding input
|
5939
|
-
# field to null. This operation is only supported in file gateways.
|
5940
|
-
#
|
5941
|
-
# </note>
|
5942
|
-
#
|
5943
6067
|
# @option params [required, String] :file_share_arn
|
5944
6068
|
# The Amazon Resource Name (ARN) of the file share to be updated.
|
5945
6069
|
#
|
@@ -6025,6 +6149,9 @@ module Aws::StorageGateway
|
|
6025
6149
|
# @option params [Types::CacheAttributes] :cache_attributes
|
6026
6150
|
# Refresh cache information.
|
6027
6151
|
#
|
6152
|
+
# @option params [String] :notification_policy
|
6153
|
+
# The notification policy of the file share.
|
6154
|
+
#
|
6028
6155
|
# @return [Types::UpdateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6029
6156
|
#
|
6030
6157
|
# * {Types::UpdateNFSFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -6052,6 +6179,7 @@ module Aws::StorageGateway
|
|
6052
6179
|
# cache_attributes: {
|
6053
6180
|
# cache_stale_timeout_in_seconds: 1,
|
6054
6181
|
# },
|
6182
|
+
# notification_policy: "NotificationPolicy",
|
6055
6183
|
# })
|
6056
6184
|
#
|
6057
6185
|
# @example Response structure
|
@@ -6067,10 +6195,11 @@ module Aws::StorageGateway
|
|
6067
6195
|
req.send_request(options)
|
6068
6196
|
end
|
6069
6197
|
|
6070
|
-
# Updates a Server Message Block (SMB) file share.
|
6198
|
+
# Updates a Server Message Block (SMB) file share. This operation is
|
6199
|
+
# only supported for file gateways.
|
6071
6200
|
#
|
6072
6201
|
# <note markdown="1"> To leave a file share field unchanged, set the corresponding input
|
6073
|
-
# field to null.
|
6202
|
+
# field to null.
|
6074
6203
|
#
|
6075
6204
|
# </note>
|
6076
6205
|
#
|
@@ -6162,6 +6291,10 @@ module Aws::StorageGateway
|
|
6162
6291
|
#
|
6163
6292
|
# [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/smb-acl.html
|
6164
6293
|
#
|
6294
|
+
# @option params [Boolean] :access_based_enumeration
|
6295
|
+
# The files and folders on this share will only be visible to users with
|
6296
|
+
# read access.
|
6297
|
+
#
|
6165
6298
|
# @option params [Array<String>] :admin_user_list
|
6166
6299
|
# A list of users or groups in the Active Directory that have
|
6167
6300
|
# administrator rights to the file share. A group must be prefixed with
|
@@ -6203,6 +6336,9 @@ module Aws::StorageGateway
|
|
6203
6336
|
# @option params [Types::CacheAttributes] :cache_attributes
|
6204
6337
|
# Refresh cache information.
|
6205
6338
|
#
|
6339
|
+
# @option params [String] :notification_policy
|
6340
|
+
# The notification policy of the file share.
|
6341
|
+
#
|
6206
6342
|
# @return [Types::UpdateSMBFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6207
6343
|
#
|
6208
6344
|
# * {Types::UpdateSMBFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -6219,6 +6355,7 @@ module Aws::StorageGateway
|
|
6219
6355
|
# guess_mime_type_enabled: false,
|
6220
6356
|
# requester_pays: false,
|
6221
6357
|
# smbacl_enabled: false,
|
6358
|
+
# access_based_enumeration: false,
|
6222
6359
|
# admin_user_list: ["FileShareUser"],
|
6223
6360
|
# valid_user_list: ["FileShareUser"],
|
6224
6361
|
# invalid_user_list: ["FileShareUser"],
|
@@ -6228,6 +6365,7 @@ module Aws::StorageGateway
|
|
6228
6365
|
# cache_attributes: {
|
6229
6366
|
# cache_stale_timeout_in_seconds: 1,
|
6230
6367
|
# },
|
6368
|
+
# notification_policy: "NotificationPolicy",
|
6231
6369
|
# })
|
6232
6370
|
#
|
6233
6371
|
# @example Response structure
|
@@ -6243,6 +6381,41 @@ module Aws::StorageGateway
|
|
6243
6381
|
req.send_request(options)
|
6244
6382
|
end
|
6245
6383
|
|
6384
|
+
# Controls whether the shares on a gateway are visible in a net view or
|
6385
|
+
# browse list.
|
6386
|
+
#
|
6387
|
+
# @option params [required, String] :gateway_arn
|
6388
|
+
# The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
|
6389
|
+
# operation to return a list of gateways for your account and AWS
|
6390
|
+
# Region.
|
6391
|
+
#
|
6392
|
+
# @option params [required, Boolean] :file_shares_visible
|
6393
|
+
# The shares on this gateway appear when listing shares.
|
6394
|
+
#
|
6395
|
+
# @return [Types::UpdateSMBFileShareVisibilityOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6396
|
+
#
|
6397
|
+
# * {Types::UpdateSMBFileShareVisibilityOutput#gateway_arn #gateway_arn} => String
|
6398
|
+
#
|
6399
|
+
# @example Request syntax with placeholder values
|
6400
|
+
#
|
6401
|
+
# resp = client.update_smb_file_share_visibility({
|
6402
|
+
# gateway_arn: "GatewayARN", # required
|
6403
|
+
# file_shares_visible: false, # required
|
6404
|
+
# })
|
6405
|
+
#
|
6406
|
+
# @example Response structure
|
6407
|
+
#
|
6408
|
+
# resp.gateway_arn #=> String
|
6409
|
+
#
|
6410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateSMBFileShareVisibility AWS API Documentation
|
6411
|
+
#
|
6412
|
+
# @overload update_smb_file_share_visibility(params = {})
|
6413
|
+
# @param [Hash] params ({})
|
6414
|
+
def update_smb_file_share_visibility(params = {}, options = {})
|
6415
|
+
req = build_request(:update_smb_file_share_visibility, params)
|
6416
|
+
req.send_request(options)
|
6417
|
+
end
|
6418
|
+
|
6246
6419
|
# Updates the SMB security strategy on a file gateway. This action is
|
6247
6420
|
# only supported in file gateways.
|
6248
6421
|
#
|
@@ -6456,7 +6629,7 @@ module Aws::StorageGateway
|
|
6456
6629
|
params: params,
|
6457
6630
|
config: config)
|
6458
6631
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
6459
|
-
context[:gem_version] = '1.
|
6632
|
+
context[:gem_version] = '1.54.0'
|
6460
6633
|
Seahorse::Client::Request.new(handlers, context)
|
6461
6634
|
end
|
6462
6635
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -37,6 +37,8 @@ module Aws::StorageGateway
|
|
37
37
|
AutomaticTapeCreationRules = Shapes::ListShape.new(name: 'AutomaticTapeCreationRules')
|
38
38
|
AvailabilityMonitorTestStatus = Shapes::StringShape.new(name: 'AvailabilityMonitorTestStatus')
|
39
39
|
BandwidthDownloadRateLimit = Shapes::IntegerShape.new(name: 'BandwidthDownloadRateLimit')
|
40
|
+
BandwidthRateLimitInterval = Shapes::StructureShape.new(name: 'BandwidthRateLimitInterval')
|
41
|
+
BandwidthRateLimitIntervals = Shapes::ListShape.new(name: 'BandwidthRateLimitIntervals')
|
40
42
|
BandwidthType = Shapes::StringShape.new(name: 'BandwidthType')
|
41
43
|
BandwidthUploadRateLimit = Shapes::IntegerShape.new(name: 'BandwidthUploadRateLimit')
|
42
44
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
@@ -75,6 +77,7 @@ module Aws::StorageGateway
|
|
75
77
|
CreatedDate = Shapes::TimestampShape.new(name: 'CreatedDate')
|
76
78
|
DayOfMonth = Shapes::IntegerShape.new(name: 'DayOfMonth')
|
77
79
|
DayOfWeek = Shapes::IntegerShape.new(name: 'DayOfWeek')
|
80
|
+
DaysOfWeek = Shapes::ListShape.new(name: 'DaysOfWeek')
|
78
81
|
DeleteAutomaticTapeCreationPolicyInput = Shapes::StructureShape.new(name: 'DeleteAutomaticTapeCreationPolicyInput')
|
79
82
|
DeleteAutomaticTapeCreationPolicyOutput = Shapes::StructureShape.new(name: 'DeleteAutomaticTapeCreationPolicyOutput')
|
80
83
|
DeleteBandwidthRateLimitInput = Shapes::StructureShape.new(name: 'DeleteBandwidthRateLimitInput')
|
@@ -100,6 +103,8 @@ module Aws::StorageGateway
|
|
100
103
|
DescribeAvailabilityMonitorTestOutput = Shapes::StructureShape.new(name: 'DescribeAvailabilityMonitorTestOutput')
|
101
104
|
DescribeBandwidthRateLimitInput = Shapes::StructureShape.new(name: 'DescribeBandwidthRateLimitInput')
|
102
105
|
DescribeBandwidthRateLimitOutput = Shapes::StructureShape.new(name: 'DescribeBandwidthRateLimitOutput')
|
106
|
+
DescribeBandwidthRateLimitScheduleInput = Shapes::StructureShape.new(name: 'DescribeBandwidthRateLimitScheduleInput')
|
107
|
+
DescribeBandwidthRateLimitScheduleOutput = Shapes::StructureShape.new(name: 'DescribeBandwidthRateLimitScheduleOutput')
|
103
108
|
DescribeCacheInput = Shapes::StructureShape.new(name: 'DescribeCacheInput')
|
104
109
|
DescribeCacheOutput = Shapes::StructureShape.new(name: 'DescribeCacheOutput')
|
105
110
|
DescribeCachediSCSIVolumesInput = Shapes::StructureShape.new(name: 'DescribeCachediSCSIVolumesInput')
|
@@ -224,6 +229,7 @@ module Aws::StorageGateway
|
|
224
229
|
NetworkInterfaceId = Shapes::StringShape.new(name: 'NetworkInterfaceId')
|
225
230
|
NextUpdateAvailabilityDate = Shapes::StringShape.new(name: 'NextUpdateAvailabilityDate')
|
226
231
|
NotificationId = Shapes::StringShape.new(name: 'NotificationId')
|
232
|
+
NotificationPolicy = Shapes::StringShape.new(name: 'NotificationPolicy')
|
227
233
|
NotifyWhenUploadedInput = Shapes::StructureShape.new(name: 'NotifyWhenUploadedInput')
|
228
234
|
NotifyWhenUploadedOutput = Shapes::StructureShape.new(name: 'NotifyWhenUploadedOutput')
|
229
235
|
NumTapesToCreate = Shapes::IntegerShape.new(name: 'NumTapesToCreate')
|
@@ -311,6 +317,8 @@ module Aws::StorageGateway
|
|
311
317
|
UpdateAutomaticTapeCreationPolicyOutput = Shapes::StructureShape.new(name: 'UpdateAutomaticTapeCreationPolicyOutput')
|
312
318
|
UpdateBandwidthRateLimitInput = Shapes::StructureShape.new(name: 'UpdateBandwidthRateLimitInput')
|
313
319
|
UpdateBandwidthRateLimitOutput = Shapes::StructureShape.new(name: 'UpdateBandwidthRateLimitOutput')
|
320
|
+
UpdateBandwidthRateLimitScheduleInput = Shapes::StructureShape.new(name: 'UpdateBandwidthRateLimitScheduleInput')
|
321
|
+
UpdateBandwidthRateLimitScheduleOutput = Shapes::StructureShape.new(name: 'UpdateBandwidthRateLimitScheduleOutput')
|
314
322
|
UpdateChapCredentialsInput = Shapes::StructureShape.new(name: 'UpdateChapCredentialsInput')
|
315
323
|
UpdateChapCredentialsOutput = Shapes::StructureShape.new(name: 'UpdateChapCredentialsOutput')
|
316
324
|
UpdateGatewayInformationInput = Shapes::StructureShape.new(name: 'UpdateGatewayInformationInput')
|
@@ -323,6 +331,8 @@ module Aws::StorageGateway
|
|
323
331
|
UpdateNFSFileShareOutput = Shapes::StructureShape.new(name: 'UpdateNFSFileShareOutput')
|
324
332
|
UpdateSMBFileShareInput = Shapes::StructureShape.new(name: 'UpdateSMBFileShareInput')
|
325
333
|
UpdateSMBFileShareOutput = Shapes::StructureShape.new(name: 'UpdateSMBFileShareOutput')
|
334
|
+
UpdateSMBFileShareVisibilityInput = Shapes::StructureShape.new(name: 'UpdateSMBFileShareVisibilityInput')
|
335
|
+
UpdateSMBFileShareVisibilityOutput = Shapes::StructureShape.new(name: 'UpdateSMBFileShareVisibilityOutput')
|
326
336
|
UpdateSMBSecurityStrategyInput = Shapes::StructureShape.new(name: 'UpdateSMBSecurityStrategyInput')
|
327
337
|
UpdateSMBSecurityStrategyOutput = Shapes::StructureShape.new(name: 'UpdateSMBSecurityStrategyOutput')
|
328
338
|
UpdateSnapshotScheduleInput = Shapes::StructureShape.new(name: 'UpdateSnapshotScheduleInput')
|
@@ -430,6 +440,17 @@ module Aws::StorageGateway
|
|
430
440
|
|
431
441
|
AutomaticTapeCreationRules.member = Shapes::ShapeRef.new(shape: AutomaticTapeCreationRule)
|
432
442
|
|
443
|
+
BandwidthRateLimitInterval.add_member(:start_hour_of_day, Shapes::ShapeRef.new(shape: HourOfDay, required: true, location_name: "StartHourOfDay"))
|
444
|
+
BandwidthRateLimitInterval.add_member(:start_minute_of_hour, Shapes::ShapeRef.new(shape: MinuteOfHour, required: true, location_name: "StartMinuteOfHour"))
|
445
|
+
BandwidthRateLimitInterval.add_member(:end_hour_of_day, Shapes::ShapeRef.new(shape: HourOfDay, required: true, location_name: "EndHourOfDay"))
|
446
|
+
BandwidthRateLimitInterval.add_member(:end_minute_of_hour, Shapes::ShapeRef.new(shape: MinuteOfHour, required: true, location_name: "EndMinuteOfHour"))
|
447
|
+
BandwidthRateLimitInterval.add_member(:days_of_week, Shapes::ShapeRef.new(shape: DaysOfWeek, required: true, location_name: "DaysOfWeek"))
|
448
|
+
BandwidthRateLimitInterval.add_member(:average_upload_rate_limit_in_bits_per_sec, Shapes::ShapeRef.new(shape: BandwidthUploadRateLimit, location_name: "AverageUploadRateLimitInBitsPerSec"))
|
449
|
+
BandwidthRateLimitInterval.add_member(:average_download_rate_limit_in_bits_per_sec, Shapes::ShapeRef.new(shape: BandwidthDownloadRateLimit, location_name: "AverageDownloadRateLimitInBitsPerSec"))
|
450
|
+
BandwidthRateLimitInterval.struct_class = Types::BandwidthRateLimitInterval
|
451
|
+
|
452
|
+
BandwidthRateLimitIntervals.member = Shapes::ShapeRef.new(shape: BandwidthRateLimitInterval)
|
453
|
+
|
433
454
|
CacheAttributes.add_member(:cache_stale_timeout_in_seconds, Shapes::ShapeRef.new(shape: CacheStaleTimeoutInSeconds, location_name: "CacheStaleTimeoutInSeconds"))
|
434
455
|
CacheAttributes.struct_class = Types::CacheAttributes
|
435
456
|
|
@@ -505,6 +526,7 @@ module Aws::StorageGateway
|
|
505
526
|
CreateNFSFileShareInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
506
527
|
CreateNFSFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
507
528
|
CreateNFSFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
529
|
+
CreateNFSFileShareInput.add_member(:notification_policy, Shapes::ShapeRef.new(shape: NotificationPolicy, location_name: "NotificationPolicy"))
|
508
530
|
CreateNFSFileShareInput.struct_class = Types::CreateNFSFileShareInput
|
509
531
|
|
510
532
|
CreateNFSFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -522,6 +544,7 @@ module Aws::StorageGateway
|
|
522
544
|
CreateSMBFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
523
545
|
CreateSMBFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
524
546
|
CreateSMBFileShareInput.add_member(:smbacl_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SMBACLEnabled"))
|
547
|
+
CreateSMBFileShareInput.add_member(:access_based_enumeration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AccessBasedEnumeration"))
|
525
548
|
CreateSMBFileShareInput.add_member(:admin_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "AdminUserList"))
|
526
549
|
CreateSMBFileShareInput.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
|
527
550
|
CreateSMBFileShareInput.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
|
@@ -531,6 +554,7 @@ module Aws::StorageGateway
|
|
531
554
|
CreateSMBFileShareInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
532
555
|
CreateSMBFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
533
556
|
CreateSMBFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
557
|
+
CreateSMBFileShareInput.add_member(:notification_policy, Shapes::ShapeRef.new(shape: NotificationPolicy, location_name: "NotificationPolicy"))
|
534
558
|
CreateSMBFileShareInput.struct_class = Types::CreateSMBFileShareInput
|
535
559
|
|
536
560
|
CreateSMBFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -609,6 +633,8 @@ module Aws::StorageGateway
|
|
609
633
|
CreateTapesOutput.add_member(:tape_arns, Shapes::ShapeRef.new(shape: TapeARNs, location_name: "TapeARNs"))
|
610
634
|
CreateTapesOutput.struct_class = Types::CreateTapesOutput
|
611
635
|
|
636
|
+
DaysOfWeek.member = Shapes::ShapeRef.new(shape: DayOfWeek)
|
637
|
+
|
612
638
|
DeleteAutomaticTapeCreationPolicyInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
613
639
|
DeleteAutomaticTapeCreationPolicyInput.struct_class = Types::DeleteAutomaticTapeCreationPolicyInput
|
614
640
|
|
@@ -692,6 +718,13 @@ module Aws::StorageGateway
|
|
692
718
|
DescribeBandwidthRateLimitOutput.add_member(:average_download_rate_limit_in_bits_per_sec, Shapes::ShapeRef.new(shape: BandwidthDownloadRateLimit, location_name: "AverageDownloadRateLimitInBitsPerSec"))
|
693
719
|
DescribeBandwidthRateLimitOutput.struct_class = Types::DescribeBandwidthRateLimitOutput
|
694
720
|
|
721
|
+
DescribeBandwidthRateLimitScheduleInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
722
|
+
DescribeBandwidthRateLimitScheduleInput.struct_class = Types::DescribeBandwidthRateLimitScheduleInput
|
723
|
+
|
724
|
+
DescribeBandwidthRateLimitScheduleOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
|
725
|
+
DescribeBandwidthRateLimitScheduleOutput.add_member(:bandwidth_rate_limit_intervals, Shapes::ShapeRef.new(shape: BandwidthRateLimitIntervals, location_name: "BandwidthRateLimitIntervals"))
|
726
|
+
DescribeBandwidthRateLimitScheduleOutput.struct_class = Types::DescribeBandwidthRateLimitScheduleOutput
|
727
|
+
|
695
728
|
DescribeCacheInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
696
729
|
DescribeCacheInput.struct_class = Types::DescribeCacheInput
|
697
730
|
|
@@ -770,6 +803,7 @@ module Aws::StorageGateway
|
|
770
803
|
DescribeSMBSettingsOutput.add_member(:active_directory_status, Shapes::ShapeRef.new(shape: ActiveDirectoryStatus, location_name: "ActiveDirectoryStatus"))
|
771
804
|
DescribeSMBSettingsOutput.add_member(:smb_guest_password_set, Shapes::ShapeRef.new(shape: Boolean, location_name: "SMBGuestPasswordSet"))
|
772
805
|
DescribeSMBSettingsOutput.add_member(:smb_security_strategy, Shapes::ShapeRef.new(shape: SMBSecurityStrategy, location_name: "SMBSecurityStrategy"))
|
806
|
+
DescribeSMBSettingsOutput.add_member(:file_shares_visible, Shapes::ShapeRef.new(shape: Boolean, location_name: "FileSharesVisible"))
|
773
807
|
DescribeSMBSettingsOutput.struct_class = Types::DescribeSMBSettingsOutput
|
774
808
|
|
775
809
|
DescribeSnapshotScheduleInput.add_member(:volume_arn, Shapes::ShapeRef.new(shape: VolumeARN, required: true, location_name: "VolumeARN"))
|
@@ -1045,6 +1079,7 @@ module Aws::StorageGateway
|
|
1045
1079
|
NFSFileShareInfo.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
1046
1080
|
NFSFileShareInfo.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
1047
1081
|
NFSFileShareInfo.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
1082
|
+
NFSFileShareInfo.add_member(:notification_policy, Shapes::ShapeRef.new(shape: NotificationPolicy, location_name: "NotificationPolicy"))
|
1048
1083
|
NFSFileShareInfo.struct_class = Types::NFSFileShareInfo
|
1049
1084
|
|
1050
1085
|
NFSFileShareInfoList.member = Shapes::ShapeRef.new(shape: NFSFileShareInfo)
|
@@ -1124,6 +1159,7 @@ module Aws::StorageGateway
|
|
1124
1159
|
SMBFileShareInfo.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
1125
1160
|
SMBFileShareInfo.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
1126
1161
|
SMBFileShareInfo.add_member(:smbacl_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SMBACLEnabled"))
|
1162
|
+
SMBFileShareInfo.add_member(:access_based_enumeration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AccessBasedEnumeration"))
|
1127
1163
|
SMBFileShareInfo.add_member(:admin_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "AdminUserList"))
|
1128
1164
|
SMBFileShareInfo.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
|
1129
1165
|
SMBFileShareInfo.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
|
@@ -1133,6 +1169,7 @@ module Aws::StorageGateway
|
|
1133
1169
|
SMBFileShareInfo.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
1134
1170
|
SMBFileShareInfo.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
1135
1171
|
SMBFileShareInfo.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
1172
|
+
SMBFileShareInfo.add_member(:notification_policy, Shapes::ShapeRef.new(shape: NotificationPolicy, location_name: "NotificationPolicy"))
|
1136
1173
|
SMBFileShareInfo.struct_class = Types::SMBFileShareInfo
|
1137
1174
|
|
1138
1175
|
SMBFileShareInfoList.member = Shapes::ShapeRef.new(shape: SMBFileShareInfo)
|
@@ -1275,6 +1312,13 @@ module Aws::StorageGateway
|
|
1275
1312
|
UpdateBandwidthRateLimitOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
|
1276
1313
|
UpdateBandwidthRateLimitOutput.struct_class = Types::UpdateBandwidthRateLimitOutput
|
1277
1314
|
|
1315
|
+
UpdateBandwidthRateLimitScheduleInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
1316
|
+
UpdateBandwidthRateLimitScheduleInput.add_member(:bandwidth_rate_limit_intervals, Shapes::ShapeRef.new(shape: BandwidthRateLimitIntervals, required: true, location_name: "BandwidthRateLimitIntervals"))
|
1317
|
+
UpdateBandwidthRateLimitScheduleInput.struct_class = Types::UpdateBandwidthRateLimitScheduleInput
|
1318
|
+
|
1319
|
+
UpdateBandwidthRateLimitScheduleOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
|
1320
|
+
UpdateBandwidthRateLimitScheduleOutput.struct_class = Types::UpdateBandwidthRateLimitScheduleOutput
|
1321
|
+
|
1278
1322
|
UpdateChapCredentialsInput.add_member(:target_arn, Shapes::ShapeRef.new(shape: TargetARN, required: true, location_name: "TargetARN"))
|
1279
1323
|
UpdateChapCredentialsInput.add_member(:secret_to_authenticate_initiator, Shapes::ShapeRef.new(shape: ChapSecret, required: true, location_name: "SecretToAuthenticateInitiator"))
|
1280
1324
|
UpdateChapCredentialsInput.add_member(:initiator_name, Shapes::ShapeRef.new(shape: IqnName, required: true, location_name: "InitiatorName"))
|
@@ -1324,6 +1368,7 @@ module Aws::StorageGateway
|
|
1324
1368
|
UpdateNFSFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
1325
1369
|
UpdateNFSFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
1326
1370
|
UpdateNFSFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
1371
|
+
UpdateNFSFileShareInput.add_member(:notification_policy, Shapes::ShapeRef.new(shape: NotificationPolicy, location_name: "NotificationPolicy"))
|
1327
1372
|
UpdateNFSFileShareInput.struct_class = Types::UpdateNFSFileShareInput
|
1328
1373
|
|
1329
1374
|
UpdateNFSFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -1338,6 +1383,7 @@ module Aws::StorageGateway
|
|
1338
1383
|
UpdateSMBFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
1339
1384
|
UpdateSMBFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
1340
1385
|
UpdateSMBFileShareInput.add_member(:smbacl_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SMBACLEnabled"))
|
1386
|
+
UpdateSMBFileShareInput.add_member(:access_based_enumeration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AccessBasedEnumeration"))
|
1341
1387
|
UpdateSMBFileShareInput.add_member(:admin_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "AdminUserList"))
|
1342
1388
|
UpdateSMBFileShareInput.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
|
1343
1389
|
UpdateSMBFileShareInput.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
|
@@ -1345,11 +1391,19 @@ module Aws::StorageGateway
|
|
1345
1391
|
UpdateSMBFileShareInput.add_member(:case_sensitivity, Shapes::ShapeRef.new(shape: CaseSensitivity, location_name: "CaseSensitivity"))
|
1346
1392
|
UpdateSMBFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
1347
1393
|
UpdateSMBFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
1394
|
+
UpdateSMBFileShareInput.add_member(:notification_policy, Shapes::ShapeRef.new(shape: NotificationPolicy, location_name: "NotificationPolicy"))
|
1348
1395
|
UpdateSMBFileShareInput.struct_class = Types::UpdateSMBFileShareInput
|
1349
1396
|
|
1350
1397
|
UpdateSMBFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
1351
1398
|
UpdateSMBFileShareOutput.struct_class = Types::UpdateSMBFileShareOutput
|
1352
1399
|
|
1400
|
+
UpdateSMBFileShareVisibilityInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
1401
|
+
UpdateSMBFileShareVisibilityInput.add_member(:file_shares_visible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "FileSharesVisible"))
|
1402
|
+
UpdateSMBFileShareVisibilityInput.struct_class = Types::UpdateSMBFileShareVisibilityInput
|
1403
|
+
|
1404
|
+
UpdateSMBFileShareVisibilityOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
|
1405
|
+
UpdateSMBFileShareVisibilityOutput.struct_class = Types::UpdateSMBFileShareVisibilityOutput
|
1406
|
+
|
1353
1407
|
UpdateSMBSecurityStrategyInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
|
1354
1408
|
UpdateSMBSecurityStrategyInput.add_member(:smb_security_strategy, Shapes::ShapeRef.new(shape: SMBSecurityStrategy, required: true, location_name: "SMBSecurityStrategy"))
|
1355
1409
|
UpdateSMBSecurityStrategyInput.struct_class = Types::UpdateSMBSecurityStrategyInput
|
@@ -1736,6 +1790,16 @@ module Aws::StorageGateway
|
|
1736
1790
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
1737
1791
|
end)
|
1738
1792
|
|
1793
|
+
api.add_operation(:describe_bandwidth_rate_limit_schedule, Seahorse::Model::Operation.new.tap do |o|
|
1794
|
+
o.name = "DescribeBandwidthRateLimitSchedule"
|
1795
|
+
o.http_method = "POST"
|
1796
|
+
o.http_request_uri = "/"
|
1797
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeBandwidthRateLimitScheduleInput)
|
1798
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeBandwidthRateLimitScheduleOutput)
|
1799
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidGatewayRequestException)
|
1800
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
1801
|
+
end)
|
1802
|
+
|
1739
1803
|
api.add_operation(:describe_cache, Seahorse::Model::Operation.new.tap do |o|
|
1740
1804
|
o.name = "DescribeCache"
|
1741
1805
|
o.http_method = "POST"
|
@@ -2026,6 +2090,12 @@ module Aws::StorageGateway
|
|
2026
2090
|
o.output = Shapes::ShapeRef.new(shape: ListTapePoolsOutput)
|
2027
2091
|
o.errors << Shapes::ShapeRef.new(shape: InvalidGatewayRequestException)
|
2028
2092
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
2093
|
+
o[:pager] = Aws::Pager.new(
|
2094
|
+
limit_key: "limit",
|
2095
|
+
tokens: {
|
2096
|
+
"marker" => "marker"
|
2097
|
+
}
|
2098
|
+
)
|
2029
2099
|
end)
|
2030
2100
|
|
2031
2101
|
api.add_operation(:list_tapes, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2210,6 +2280,16 @@ module Aws::StorageGateway
|
|
2210
2280
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
2211
2281
|
end)
|
2212
2282
|
|
2283
|
+
api.add_operation(:update_bandwidth_rate_limit_schedule, Seahorse::Model::Operation.new.tap do |o|
|
2284
|
+
o.name = "UpdateBandwidthRateLimitSchedule"
|
2285
|
+
o.http_method = "POST"
|
2286
|
+
o.http_request_uri = "/"
|
2287
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateBandwidthRateLimitScheduleInput)
|
2288
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateBandwidthRateLimitScheduleOutput)
|
2289
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidGatewayRequestException)
|
2290
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
2291
|
+
end)
|
2292
|
+
|
2213
2293
|
api.add_operation(:update_chap_credentials, Seahorse::Model::Operation.new.tap do |o|
|
2214
2294
|
o.name = "UpdateChapCredentials"
|
2215
2295
|
o.http_method = "POST"
|
@@ -2270,6 +2350,16 @@ module Aws::StorageGateway
|
|
2270
2350
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
2271
2351
|
end)
|
2272
2352
|
|
2353
|
+
api.add_operation(:update_smb_file_share_visibility, Seahorse::Model::Operation.new.tap do |o|
|
2354
|
+
o.name = "UpdateSMBFileShareVisibility"
|
2355
|
+
o.http_method = "POST"
|
2356
|
+
o.http_request_uri = "/"
|
2357
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateSMBFileShareVisibilityInput)
|
2358
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateSMBFileShareVisibilityOutput)
|
2359
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidGatewayRequestException)
|
2360
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
2361
|
+
end)
|
2362
|
+
|
2273
2363
|
api.add_operation(:update_smb_security_strategy, Seahorse::Model::Operation.new.tap do |o|
|
2274
2364
|
o.name = "UpdateSMBSecurityStrategy"
|
2275
2365
|
o.http_method = "POST"
|