aws-sdk-storagegateway 1.44.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-storagegateway.rb +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +104 -17
- data/lib/aws-sdk-storagegateway/client_api.rb +22 -0
- data/lib/aws-sdk-storagegateway/types.rb +200 -28
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a09a0f53b6c568dda3f0b6fa19ba505f18ac7eea2db3f0f954df33cf91265e6c
|
4
|
+
data.tar.gz: 1e6f616b6b5d77c7b038de8e7ad9b251fdd88f1aee1fb43d10e1cdba4fbb700e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe347436c349c66f15dcabc8b79e9bf6c70cc4ca24ec8a7fb1d0c08ce734038a627f1c356a8f07b0940f98185a4ad8a91502f1f6f0c69c5b338ac52402573f5b
|
7
|
+
data.tar.gz: 678df12d15ecd03022173fce4b65548bf89c0fb514358c52c57964c1ce7e3281ad8c44ddd0319afa479c8dfc5242a0bacf2ad89378b5e7a223451bcbc8e8a800
|
@@ -1157,7 +1157,8 @@ module Aws::StorageGateway
|
|
1157
1157
|
# file gateway assumes when it accesses the underlying storage.
|
1158
1158
|
#
|
1159
1159
|
# @option params [required, String] :location_arn
|
1160
|
-
# The ARN of the
|
1160
|
+
# The ARN of the backend storage used for storing file data. A prefix
|
1161
|
+
# name can be added to the S3 bucket name. It must end with a "/".
|
1161
1162
|
#
|
1162
1163
|
# @option params [String] :default_storage_class
|
1163
1164
|
# The default storage class for objects put into an Amazon S3 bucket by
|
@@ -1226,6 +1227,17 @@ module Aws::StorageGateway
|
|
1226
1227
|
#
|
1227
1228
|
# </note>
|
1228
1229
|
#
|
1230
|
+
# @option params [String] :file_share_name
|
1231
|
+
# The name of the file share. Optional.
|
1232
|
+
#
|
1233
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1234
|
+
# `LocationARN`.
|
1235
|
+
#
|
1236
|
+
# </note>
|
1237
|
+
#
|
1238
|
+
# @option params [Types::CacheAttributes] :cache_attributes
|
1239
|
+
# Refresh cache information.
|
1240
|
+
#
|
1229
1241
|
# @return [Types::CreateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1230
1242
|
#
|
1231
1243
|
# * {Types::CreateNFSFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -1258,6 +1270,10 @@ module Aws::StorageGateway
|
|
1258
1270
|
# value: "TagValue", # required
|
1259
1271
|
# },
|
1260
1272
|
# ],
|
1273
|
+
# file_share_name: "FileShareName",
|
1274
|
+
# cache_attributes: {
|
1275
|
+
# cache_stale_timeout_in_seconds: 1,
|
1276
|
+
# },
|
1261
1277
|
# })
|
1262
1278
|
#
|
1263
1279
|
# @example Response structure
|
@@ -1319,7 +1335,8 @@ module Aws::StorageGateway
|
|
1319
1335
|
# file gateway assumes when it accesses the underlying storage.
|
1320
1336
|
#
|
1321
1337
|
# @option params [required, String] :location_arn
|
1322
|
-
# The ARN of the
|
1338
|
+
# The ARN of the backend storage used for storing file data. A prefix
|
1339
|
+
# name can be added to the S3 bucket name. It must end with a "/".
|
1323
1340
|
#
|
1324
1341
|
# @option params [String] :default_storage_class
|
1325
1342
|
# The default storage class for objects put into an Amazon S3 bucket by
|
@@ -1378,24 +1395,27 @@ module Aws::StorageGateway
|
|
1378
1395
|
# [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/smb-acl.html
|
1379
1396
|
#
|
1380
1397
|
# @option params [Array<String>] :admin_user_list
|
1381
|
-
# A list of users in the Active Directory that will be granted
|
1398
|
+
# A list of users or groups in the Active Directory that will be granted
|
1382
1399
|
# administrator privileges on the file share. These users can do all
|
1383
|
-
# file operations as the super-user.
|
1400
|
+
# file operations as the super-user. Acceptable formats include:
|
1401
|
+
# `DOMAIN\User1`, `user1`, `@group1`, and `@DOMAIN\group1`.
|
1384
1402
|
#
|
1385
1403
|
# Use this option very carefully, because any user in this list can do
|
1386
1404
|
# anything they like on the file share, regardless of file permissions.
|
1387
1405
|
#
|
1388
1406
|
# @option params [Array<String>] :valid_user_list
|
1389
1407
|
# A list of users or groups in the Active Directory that are allowed to
|
1390
|
-
# access the file share. A group must be prefixed with the @
|
1391
|
-
#
|
1392
|
-
#
|
1408
|
+
# access the file []() share. A group must be prefixed with the @
|
1409
|
+
# character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
1410
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication is
|
1411
|
+
# set to `ActiveDirectory`.
|
1393
1412
|
#
|
1394
1413
|
# @option params [Array<String>] :invalid_user_list
|
1395
1414
|
# A list of users or groups in the Active Directory that are not allowed
|
1396
1415
|
# to access the file share. A group must be prefixed with the @
|
1397
|
-
# character.
|
1398
|
-
#
|
1416
|
+
# character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
1417
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication is
|
1418
|
+
# set to `ActiveDirectory`.
|
1399
1419
|
#
|
1400
1420
|
# @option params [String] :audit_destination_arn
|
1401
1421
|
# The Amazon Resource Name (ARN) of the storage used for the audit logs.
|
@@ -1406,6 +1426,12 @@ module Aws::StorageGateway
|
|
1406
1426
|
#
|
1407
1427
|
# Valid Values: `ActiveDirectory` \| `GuestAccess`
|
1408
1428
|
#
|
1429
|
+
# @option params [String] :case_sensitivity
|
1430
|
+
# The case of an object name in an Amazon S3 bucket. For
|
1431
|
+
# `ClientSpecified`, the client determines the case sensitivity. For
|
1432
|
+
# `CaseSensitive`, the gateway determines the case sensitivity. The
|
1433
|
+
# default value is `ClientSpecified`.
|
1434
|
+
#
|
1409
1435
|
# @option params [Array<Types::Tag>] :tags
|
1410
1436
|
# A list of up to 50 tags that can be assigned to the NFS file share.
|
1411
1437
|
# Each tag is a key-value pair.
|
@@ -1417,6 +1443,17 @@ module Aws::StorageGateway
|
|
1417
1443
|
#
|
1418
1444
|
# </note>
|
1419
1445
|
#
|
1446
|
+
# @option params [String] :file_share_name
|
1447
|
+
# The name of the file share. Optional.
|
1448
|
+
#
|
1449
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1450
|
+
# `LocationARN`.
|
1451
|
+
#
|
1452
|
+
# </note>
|
1453
|
+
#
|
1454
|
+
# @option params [Types::CacheAttributes] :cache_attributes
|
1455
|
+
# Refresh cache information.
|
1456
|
+
#
|
1420
1457
|
# @return [Types::CreateSMBFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1421
1458
|
#
|
1422
1459
|
# * {Types::CreateSMBFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -1441,12 +1478,17 @@ module Aws::StorageGateway
|
|
1441
1478
|
# invalid_user_list: ["FileShareUser"],
|
1442
1479
|
# audit_destination_arn: "AuditDestinationARN",
|
1443
1480
|
# authentication: "Authentication",
|
1481
|
+
# case_sensitivity: "ClientSpecified", # accepts ClientSpecified, CaseSensitive
|
1444
1482
|
# tags: [
|
1445
1483
|
# {
|
1446
1484
|
# key: "TagKey", # required
|
1447
1485
|
# value: "TagValue", # required
|
1448
1486
|
# },
|
1449
1487
|
# ],
|
1488
|
+
# file_share_name: "FileShareName",
|
1489
|
+
# cache_attributes: {
|
1490
|
+
# cache_stale_timeout_in_seconds: 1,
|
1491
|
+
# },
|
1450
1492
|
# })
|
1451
1493
|
#
|
1452
1494
|
# @example Response structure
|
@@ -3040,6 +3082,8 @@ module Aws::StorageGateway
|
|
3040
3082
|
# resp.nfs_file_share_info_list[0].tags #=> Array
|
3041
3083
|
# resp.nfs_file_share_info_list[0].tags[0].key #=> String
|
3042
3084
|
# resp.nfs_file_share_info_list[0].tags[0].value #=> String
|
3085
|
+
# resp.nfs_file_share_info_list[0].file_share_name #=> String
|
3086
|
+
# resp.nfs_file_share_info_list[0].cache_attributes.cache_stale_timeout_in_seconds #=> Integer
|
3043
3087
|
#
|
3044
3088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeNFSFileShares AWS API Documentation
|
3045
3089
|
#
|
@@ -3094,9 +3138,12 @@ module Aws::StorageGateway
|
|
3094
3138
|
# resp.smb_file_share_info_list[0].invalid_user_list[0] #=> String
|
3095
3139
|
# resp.smb_file_share_info_list[0].audit_destination_arn #=> String
|
3096
3140
|
# resp.smb_file_share_info_list[0].authentication #=> String
|
3141
|
+
# resp.smb_file_share_info_list[0].case_sensitivity #=> String, one of "ClientSpecified", "CaseSensitive"
|
3097
3142
|
# resp.smb_file_share_info_list[0].tags #=> Array
|
3098
3143
|
# resp.smb_file_share_info_list[0].tags[0].key #=> String
|
3099
3144
|
# resp.smb_file_share_info_list[0].tags[0].value #=> String
|
3145
|
+
# resp.smb_file_share_info_list[0].file_share_name #=> String
|
3146
|
+
# resp.smb_file_share_info_list[0].cache_attributes.cache_stale_timeout_in_seconds #=> Integer
|
3100
3147
|
#
|
3101
3148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeSMBFileShares AWS API Documentation
|
3102
3149
|
#
|
@@ -4663,7 +4710,7 @@ module Aws::StorageGateway
|
|
4663
4710
|
end
|
4664
4711
|
|
4665
4712
|
# Refreshes the cache for the specified file share. This operation finds
|
4666
|
-
# objects in the Amazon S3 bucket that were added, removed or replaced
|
4713
|
+
# objects in the Amazon S3 bucket that were added, removed, or replaced
|
4667
4714
|
# since the gateway last listed the bucket's contents and cached the
|
4668
4715
|
# results. This operation is only supported in the file gateway type.
|
4669
4716
|
# You can subscribe to be notified through an Amazon CloudWatch event
|
@@ -5750,6 +5797,17 @@ module Aws::StorageGateway
|
|
5750
5797
|
#
|
5751
5798
|
# Valid Values: `true` \| `false`
|
5752
5799
|
#
|
5800
|
+
# @option params [String] :file_share_name
|
5801
|
+
# The name of the file share. Optional.
|
5802
|
+
#
|
5803
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
5804
|
+
# `LocationARN`.
|
5805
|
+
#
|
5806
|
+
# </note>
|
5807
|
+
#
|
5808
|
+
# @option params [Types::CacheAttributes] :cache_attributes
|
5809
|
+
# Refresh cache information.
|
5810
|
+
#
|
5753
5811
|
# @return [Types::UpdateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5754
5812
|
#
|
5755
5813
|
# * {Types::UpdateNFSFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -5773,6 +5831,10 @@ module Aws::StorageGateway
|
|
5773
5831
|
# read_only: false,
|
5774
5832
|
# guess_mime_type_enabled: false,
|
5775
5833
|
# requester_pays: false,
|
5834
|
+
# file_share_name: "FileShareName",
|
5835
|
+
# cache_attributes: {
|
5836
|
+
# cache_stale_timeout_in_seconds: 1,
|
5837
|
+
# },
|
5776
5838
|
# })
|
5777
5839
|
#
|
5778
5840
|
# @example Response structure
|
@@ -5884,26 +5946,46 @@ module Aws::StorageGateway
|
|
5884
5946
|
# [1]: https://docs.aws.amazon.com/storagegateway/latest/userguide/smb-acl.html
|
5885
5947
|
#
|
5886
5948
|
# @option params [Array<String>] :admin_user_list
|
5887
|
-
# A list of users in the Active Directory that have
|
5888
|
-
# to the file share. A group must be prefixed with
|
5889
|
-
#
|
5890
|
-
#
|
5949
|
+
# A list of users or groups in the Active Directory that have
|
5950
|
+
# administrator rights to the file share. A group must be prefixed with
|
5951
|
+
# the @ character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
5952
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication is
|
5953
|
+
# set to `ActiveDirectory`.
|
5891
5954
|
#
|
5892
5955
|
# @option params [Array<String>] :valid_user_list
|
5893
5956
|
# A list of users or groups in the Active Directory that are allowed to
|
5894
5957
|
# access the file share. A group must be prefixed with the @ character.
|
5895
|
-
#
|
5958
|
+
# Acceptable formats include: `DOMAIN\User1`, `user1`, `@group1`, and
|
5959
|
+
# `@DOMAIN\group1`. Can only be set if Authentication is set to
|
5896
5960
|
# `ActiveDirectory`.
|
5897
5961
|
#
|
5898
5962
|
# @option params [Array<String>] :invalid_user_list
|
5899
5963
|
# A list of users or groups in the Active Directory that are not allowed
|
5900
5964
|
# to access the file share. A group must be prefixed with the @
|
5901
|
-
# character.
|
5965
|
+
# character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
5966
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication is
|
5902
5967
|
# set to `ActiveDirectory`.
|
5903
5968
|
#
|
5904
5969
|
# @option params [String] :audit_destination_arn
|
5905
5970
|
# The Amazon Resource Name (ARN) of the storage used for the audit logs.
|
5906
5971
|
#
|
5972
|
+
# @option params [String] :case_sensitivity
|
5973
|
+
# The case of an object name in an Amazon S3 bucket. For
|
5974
|
+
# `ClientSpecified`, the client determines the case sensitivity. For
|
5975
|
+
# `CaseSensitive`, the gateway determines the case sensitivity. The
|
5976
|
+
# default value is `ClientSpecified`.
|
5977
|
+
#
|
5978
|
+
# @option params [String] :file_share_name
|
5979
|
+
# The name of the file share. Optional.
|
5980
|
+
#
|
5981
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
5982
|
+
# `LocationARN`.
|
5983
|
+
#
|
5984
|
+
# </note>
|
5985
|
+
#
|
5986
|
+
# @option params [Types::CacheAttributes] :cache_attributes
|
5987
|
+
# Refresh cache information.
|
5988
|
+
#
|
5907
5989
|
# @return [Types::UpdateSMBFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5908
5990
|
#
|
5909
5991
|
# * {Types::UpdateSMBFileShareOutput#file_share_arn #file_share_arn} => String
|
@@ -5924,6 +6006,11 @@ module Aws::StorageGateway
|
|
5924
6006
|
# valid_user_list: ["FileShareUser"],
|
5925
6007
|
# invalid_user_list: ["FileShareUser"],
|
5926
6008
|
# audit_destination_arn: "AuditDestinationARN",
|
6009
|
+
# case_sensitivity: "ClientSpecified", # accepts ClientSpecified, CaseSensitive
|
6010
|
+
# file_share_name: "FileShareName",
|
6011
|
+
# cache_attributes: {
|
6012
|
+
# cache_stale_timeout_in_seconds: 1,
|
6013
|
+
# },
|
5927
6014
|
# })
|
5928
6015
|
#
|
5929
6016
|
# @example Response structure
|
@@ -6152,7 +6239,7 @@ module Aws::StorageGateway
|
|
6152
6239
|
params: params,
|
6153
6240
|
config: config)
|
6154
6241
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
6155
|
-
context[:gem_version] = '1.
|
6242
|
+
context[:gem_version] = '1.45.0'
|
6156
6243
|
Seahorse::Client::Request.new(handlers, context)
|
6157
6244
|
end
|
6158
6245
|
|
@@ -40,12 +40,15 @@ module Aws::StorageGateway
|
|
40
40
|
BandwidthType = Shapes::StringShape.new(name: 'BandwidthType')
|
41
41
|
BandwidthUploadRateLimit = Shapes::IntegerShape.new(name: 'BandwidthUploadRateLimit')
|
42
42
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
43
|
+
CacheAttributes = Shapes::StructureShape.new(name: 'CacheAttributes')
|
44
|
+
CacheStaleTimeoutInSeconds = Shapes::IntegerShape.new(name: 'CacheStaleTimeoutInSeconds')
|
43
45
|
CachediSCSIVolume = Shapes::StructureShape.new(name: 'CachediSCSIVolume')
|
44
46
|
CachediSCSIVolumes = Shapes::ListShape.new(name: 'CachediSCSIVolumes')
|
45
47
|
CancelArchivalInput = Shapes::StructureShape.new(name: 'CancelArchivalInput')
|
46
48
|
CancelArchivalOutput = Shapes::StructureShape.new(name: 'CancelArchivalOutput')
|
47
49
|
CancelRetrievalInput = Shapes::StructureShape.new(name: 'CancelRetrievalInput')
|
48
50
|
CancelRetrievalOutput = Shapes::StructureShape.new(name: 'CancelRetrievalOutput')
|
51
|
+
CaseSensitivity = Shapes::StringShape.new(name: 'CaseSensitivity')
|
49
52
|
ChapCredentials = Shapes::ListShape.new(name: 'ChapCredentials')
|
50
53
|
ChapInfo = Shapes::StructureShape.new(name: 'ChapInfo')
|
51
54
|
ChapSecret = Shapes::StringShape.new(name: 'ChapSecret')
|
@@ -152,6 +155,7 @@ module Aws::StorageGateway
|
|
152
155
|
FileShareId = Shapes::StringShape.new(name: 'FileShareId')
|
153
156
|
FileShareInfo = Shapes::StructureShape.new(name: 'FileShareInfo')
|
154
157
|
FileShareInfoList = Shapes::ListShape.new(name: 'FileShareInfoList')
|
158
|
+
FileShareName = Shapes::StringShape.new(name: 'FileShareName')
|
155
159
|
FileShareStatus = Shapes::StringShape.new(name: 'FileShareStatus')
|
156
160
|
FileShareType = Shapes::StringShape.new(name: 'FileShareType')
|
157
161
|
FileShareUser = Shapes::StringShape.new(name: 'FileShareUser')
|
@@ -407,6 +411,9 @@ module Aws::StorageGateway
|
|
407
411
|
|
408
412
|
AutomaticTapeCreationRules.member = Shapes::ShapeRef.new(shape: AutomaticTapeCreationRule)
|
409
413
|
|
414
|
+
CacheAttributes.add_member(:cache_stale_timeout_in_seconds, Shapes::ShapeRef.new(shape: CacheStaleTimeoutInSeconds, location_name: "CacheStaleTimeoutInSeconds"))
|
415
|
+
CacheAttributes.struct_class = Types::CacheAttributes
|
416
|
+
|
410
417
|
CachediSCSIVolume.add_member(:volume_arn, Shapes::ShapeRef.new(shape: VolumeARN, location_name: "VolumeARN"))
|
411
418
|
CachediSCSIVolume.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "VolumeId"))
|
412
419
|
CachediSCSIVolume.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "VolumeType"))
|
@@ -477,6 +484,8 @@ module Aws::StorageGateway
|
|
477
484
|
CreateNFSFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
478
485
|
CreateNFSFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
479
486
|
CreateNFSFileShareInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
487
|
+
CreateNFSFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
488
|
+
CreateNFSFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
480
489
|
CreateNFSFileShareInput.struct_class = Types::CreateNFSFileShareInput
|
481
490
|
|
482
491
|
CreateNFSFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -499,7 +508,10 @@ module Aws::StorageGateway
|
|
499
508
|
CreateSMBFileShareInput.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
|
500
509
|
CreateSMBFileShareInput.add_member(:audit_destination_arn, Shapes::ShapeRef.new(shape: AuditDestinationARN, location_name: "AuditDestinationARN"))
|
501
510
|
CreateSMBFileShareInput.add_member(:authentication, Shapes::ShapeRef.new(shape: Authentication, location_name: "Authentication"))
|
511
|
+
CreateSMBFileShareInput.add_member(:case_sensitivity, Shapes::ShapeRef.new(shape: CaseSensitivity, location_name: "CaseSensitivity"))
|
502
512
|
CreateSMBFileShareInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
513
|
+
CreateSMBFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
514
|
+
CreateSMBFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
503
515
|
CreateSMBFileShareInput.struct_class = Types::CreateSMBFileShareInput
|
504
516
|
|
505
517
|
CreateSMBFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -981,6 +993,8 @@ module Aws::StorageGateway
|
|
981
993
|
NFSFileShareInfo.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
982
994
|
NFSFileShareInfo.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
983
995
|
NFSFileShareInfo.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
996
|
+
NFSFileShareInfo.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
997
|
+
NFSFileShareInfo.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
984
998
|
NFSFileShareInfo.struct_class = Types::NFSFileShareInfo
|
985
999
|
|
986
1000
|
NFSFileShareInfoList.member = Shapes::ShapeRef.new(shape: NFSFileShareInfo)
|
@@ -1053,7 +1067,10 @@ module Aws::StorageGateway
|
|
1053
1067
|
SMBFileShareInfo.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
|
1054
1068
|
SMBFileShareInfo.add_member(:audit_destination_arn, Shapes::ShapeRef.new(shape: AuditDestinationARN, location_name: "AuditDestinationARN"))
|
1055
1069
|
SMBFileShareInfo.add_member(:authentication, Shapes::ShapeRef.new(shape: Authentication, location_name: "Authentication"))
|
1070
|
+
SMBFileShareInfo.add_member(:case_sensitivity, Shapes::ShapeRef.new(shape: CaseSensitivity, location_name: "CaseSensitivity"))
|
1056
1071
|
SMBFileShareInfo.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
1072
|
+
SMBFileShareInfo.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
1073
|
+
SMBFileShareInfo.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
1057
1074
|
SMBFileShareInfo.struct_class = Types::SMBFileShareInfo
|
1058
1075
|
|
1059
1076
|
SMBFileShareInfoList.member = Shapes::ShapeRef.new(shape: SMBFileShareInfo)
|
@@ -1235,6 +1252,8 @@ module Aws::StorageGateway
|
|
1235
1252
|
UpdateNFSFileShareInput.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
|
1236
1253
|
UpdateNFSFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
1237
1254
|
UpdateNFSFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
1255
|
+
UpdateNFSFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
1256
|
+
UpdateNFSFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
1238
1257
|
UpdateNFSFileShareInput.struct_class = Types::UpdateNFSFileShareInput
|
1239
1258
|
|
1240
1259
|
UpdateNFSFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -1253,6 +1272,9 @@ module Aws::StorageGateway
|
|
1253
1272
|
UpdateSMBFileShareInput.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
|
1254
1273
|
UpdateSMBFileShareInput.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
|
1255
1274
|
UpdateSMBFileShareInput.add_member(:audit_destination_arn, Shapes::ShapeRef.new(shape: AuditDestinationARN, location_name: "AuditDestinationARN"))
|
1275
|
+
UpdateSMBFileShareInput.add_member(:case_sensitivity, Shapes::ShapeRef.new(shape: CaseSensitivity, location_name: "CaseSensitivity"))
|
1276
|
+
UpdateSMBFileShareInput.add_member(:file_share_name, Shapes::ShapeRef.new(shape: FileShareName, location_name: "FileShareName"))
|
1277
|
+
UpdateSMBFileShareInput.add_member(:cache_attributes, Shapes::ShapeRef.new(shape: CacheAttributes, location_name: "CacheAttributes"))
|
1256
1278
|
UpdateSMBFileShareInput.struct_class = Types::UpdateSMBFileShareInput
|
1257
1279
|
|
1258
1280
|
UpdateSMBFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -572,6 +572,33 @@ module Aws::StorageGateway
|
|
572
572
|
include Aws::Structure
|
573
573
|
end
|
574
574
|
|
575
|
+
# Lists refresh cache information.
|
576
|
+
#
|
577
|
+
# @note When making an API call, you may pass CacheAttributes
|
578
|
+
# data as a hash:
|
579
|
+
#
|
580
|
+
# {
|
581
|
+
# cache_stale_timeout_in_seconds: 1,
|
582
|
+
# }
|
583
|
+
#
|
584
|
+
# @!attribute [rw] cache_stale_timeout_in_seconds
|
585
|
+
# Refreshes a file share's cache by using Time To Live (TTL). TTL is
|
586
|
+
# the length of time since the last refresh after which access to the
|
587
|
+
# directory would cause the file gateway to first refresh that
|
588
|
+
# directory's contents from the Amazon S3 bucket. The TTL duration is
|
589
|
+
# in seconds.
|
590
|
+
#
|
591
|
+
# Valid Values: 300 to 2,592,000 seconds (5 minutes to 30 days)
|
592
|
+
# @return [Integer]
|
593
|
+
#
|
594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CacheAttributes AWS API Documentation
|
595
|
+
#
|
596
|
+
class CacheAttributes < Struct.new(
|
597
|
+
:cache_stale_timeout_in_seconds)
|
598
|
+
SENSITIVE = []
|
599
|
+
include Aws::Structure
|
600
|
+
end
|
601
|
+
|
575
602
|
# Describes an iSCSI cached volume.
|
576
603
|
#
|
577
604
|
# @!attribute [rw] volume_arn
|
@@ -979,6 +1006,10 @@ module Aws::StorageGateway
|
|
979
1006
|
# value: "TagValue", # required
|
980
1007
|
# },
|
981
1008
|
# ],
|
1009
|
+
# file_share_name: "FileShareName",
|
1010
|
+
# cache_attributes: {
|
1011
|
+
# cache_stale_timeout_in_seconds: 1,
|
1012
|
+
# },
|
982
1013
|
# }
|
983
1014
|
#
|
984
1015
|
# @!attribute [rw] client_token
|
@@ -1015,7 +1046,8 @@ module Aws::StorageGateway
|
|
1015
1046
|
# @return [String]
|
1016
1047
|
#
|
1017
1048
|
# @!attribute [rw] location_arn
|
1018
|
-
# The ARN of the
|
1049
|
+
# The ARN of the backend storage used for storing file data. A prefix
|
1050
|
+
# name can be added to the S3 bucket name. It must end with a "/".
|
1019
1051
|
# @return [String]
|
1020
1052
|
#
|
1021
1053
|
# @!attribute [rw] default_storage_class
|
@@ -1095,6 +1127,19 @@ module Aws::StorageGateway
|
|
1095
1127
|
# </note>
|
1096
1128
|
# @return [Array<Types::Tag>]
|
1097
1129
|
#
|
1130
|
+
# @!attribute [rw] file_share_name
|
1131
|
+
# The name of the file share. Optional.
|
1132
|
+
#
|
1133
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1134
|
+
# `LocationARN`.
|
1135
|
+
#
|
1136
|
+
# </note>
|
1137
|
+
# @return [String]
|
1138
|
+
#
|
1139
|
+
# @!attribute [rw] cache_attributes
|
1140
|
+
# Refresh cache information.
|
1141
|
+
# @return [Types::CacheAttributes]
|
1142
|
+
#
|
1098
1143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateNFSFileShareInput AWS API Documentation
|
1099
1144
|
#
|
1100
1145
|
class CreateNFSFileShareInput < Struct.new(
|
@@ -1112,7 +1157,9 @@ module Aws::StorageGateway
|
|
1112
1157
|
:read_only,
|
1113
1158
|
:guess_mime_type_enabled,
|
1114
1159
|
:requester_pays,
|
1115
|
-
:tags
|
1160
|
+
:tags,
|
1161
|
+
:file_share_name,
|
1162
|
+
:cache_attributes)
|
1116
1163
|
SENSITIVE = []
|
1117
1164
|
include Aws::Structure
|
1118
1165
|
end
|
@@ -1154,12 +1201,17 @@ module Aws::StorageGateway
|
|
1154
1201
|
# invalid_user_list: ["FileShareUser"],
|
1155
1202
|
# audit_destination_arn: "AuditDestinationARN",
|
1156
1203
|
# authentication: "Authentication",
|
1204
|
+
# case_sensitivity: "ClientSpecified", # accepts ClientSpecified, CaseSensitive
|
1157
1205
|
# tags: [
|
1158
1206
|
# {
|
1159
1207
|
# key: "TagKey", # required
|
1160
1208
|
# value: "TagValue", # required
|
1161
1209
|
# },
|
1162
1210
|
# ],
|
1211
|
+
# file_share_name: "FileShareName",
|
1212
|
+
# cache_attributes: {
|
1213
|
+
# cache_stale_timeout_in_seconds: 1,
|
1214
|
+
# },
|
1163
1215
|
# }
|
1164
1216
|
#
|
1165
1217
|
# @!attribute [rw] client_token
|
@@ -1192,7 +1244,8 @@ module Aws::StorageGateway
|
|
1192
1244
|
# @return [String]
|
1193
1245
|
#
|
1194
1246
|
# @!attribute [rw] location_arn
|
1195
|
-
# The ARN of the
|
1247
|
+
# The ARN of the backend storage used for storing file data. A prefix
|
1248
|
+
# name can be added to the S3 bucket name. It must end with a "/".
|
1196
1249
|
# @return [String]
|
1197
1250
|
#
|
1198
1251
|
# @!attribute [rw] default_storage_class
|
@@ -1260,9 +1313,10 @@ module Aws::StorageGateway
|
|
1260
1313
|
# @return [Boolean]
|
1261
1314
|
#
|
1262
1315
|
# @!attribute [rw] admin_user_list
|
1263
|
-
# A list of users in the Active Directory that will be
|
1264
|
-
# administrator privileges on the file share. These users can
|
1265
|
-
# file operations as the super-user.
|
1316
|
+
# A list of users or groups in the Active Directory that will be
|
1317
|
+
# granted administrator privileges on the file share. These users can
|
1318
|
+
# do all file operations as the super-user. Acceptable formats
|
1319
|
+
# include: `DOMAIN\User1`, `user1`, `@group1`, and `@DOMAIN\group1`.
|
1266
1320
|
#
|
1267
1321
|
# Use this option very carefully, because any user in this list can do
|
1268
1322
|
# anything they like on the file share, regardless of file
|
@@ -1271,16 +1325,18 @@ module Aws::StorageGateway
|
|
1271
1325
|
#
|
1272
1326
|
# @!attribute [rw] valid_user_list
|
1273
1327
|
# A list of users or groups in the Active Directory that are allowed
|
1274
|
-
# to access the file share. A group must be prefixed with the @
|
1275
|
-
# character.
|
1328
|
+
# to access the file []() share. A group must be prefixed with the @
|
1329
|
+
# character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
1330
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication
|
1276
1331
|
# is set to `ActiveDirectory`.
|
1277
1332
|
# @return [Array<String>]
|
1278
1333
|
#
|
1279
1334
|
# @!attribute [rw] invalid_user_list
|
1280
1335
|
# A list of users or groups in the Active Directory that are not
|
1281
1336
|
# allowed to access the file share. A group must be prefixed with the
|
1282
|
-
# @ character.
|
1283
|
-
#
|
1337
|
+
# @ character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
1338
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication
|
1339
|
+
# is set to `ActiveDirectory`.
|
1284
1340
|
# @return [Array<String>]
|
1285
1341
|
#
|
1286
1342
|
# @!attribute [rw] audit_destination_arn
|
@@ -1295,6 +1351,13 @@ module Aws::StorageGateway
|
|
1295
1351
|
# Valid Values: `ActiveDirectory` \| `GuestAccess`
|
1296
1352
|
# @return [String]
|
1297
1353
|
#
|
1354
|
+
# @!attribute [rw] case_sensitivity
|
1355
|
+
# The case of an object name in an Amazon S3 bucket. For
|
1356
|
+
# `ClientSpecified`, the client determines the case sensitivity. For
|
1357
|
+
# `CaseSensitive`, the gateway determines the case sensitivity. The
|
1358
|
+
# default value is `ClientSpecified`.
|
1359
|
+
# @return [String]
|
1360
|
+
#
|
1298
1361
|
# @!attribute [rw] tags
|
1299
1362
|
# A list of up to 50 tags that can be assigned to the NFS file share.
|
1300
1363
|
# Each tag is a key-value pair.
|
@@ -1307,6 +1370,19 @@ module Aws::StorageGateway
|
|
1307
1370
|
# </note>
|
1308
1371
|
# @return [Array<Types::Tag>]
|
1309
1372
|
#
|
1373
|
+
# @!attribute [rw] file_share_name
|
1374
|
+
# The name of the file share. Optional.
|
1375
|
+
#
|
1376
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1377
|
+
# `LocationARN`.
|
1378
|
+
#
|
1379
|
+
# </note>
|
1380
|
+
# @return [String]
|
1381
|
+
#
|
1382
|
+
# @!attribute [rw] cache_attributes
|
1383
|
+
# Refresh cache information.
|
1384
|
+
# @return [Types::CacheAttributes]
|
1385
|
+
#
|
1310
1386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateSMBFileShareInput AWS API Documentation
|
1311
1387
|
#
|
1312
1388
|
class CreateSMBFileShareInput < Struct.new(
|
@@ -1327,7 +1403,10 @@ module Aws::StorageGateway
|
|
1327
1403
|
:invalid_user_list,
|
1328
1404
|
:audit_destination_arn,
|
1329
1405
|
:authentication,
|
1330
|
-
:
|
1406
|
+
:case_sensitivity,
|
1407
|
+
:tags,
|
1408
|
+
:file_share_name,
|
1409
|
+
:cache_attributes)
|
1331
1410
|
SENSITIVE = []
|
1332
1411
|
include Aws::Structure
|
1333
1412
|
end
|
@@ -4477,7 +4556,8 @@ module Aws::StorageGateway
|
|
4477
4556
|
# @return [String]
|
4478
4557
|
#
|
4479
4558
|
# @!attribute [rw] location_arn
|
4480
|
-
# The ARN of the backend storage used for storing file data.
|
4559
|
+
# The ARN of the backend storage used for storing file data. A prefix
|
4560
|
+
# name can be added to the S3 bucket name. It must end with a "/".
|
4481
4561
|
# @return [String]
|
4482
4562
|
#
|
4483
4563
|
# @!attribute [rw] default_storage_class
|
@@ -4550,6 +4630,19 @@ module Aws::StorageGateway
|
|
4550
4630
|
# the `ListTagsForResource` API operation.
|
4551
4631
|
# @return [Array<Types::Tag>]
|
4552
4632
|
#
|
4633
|
+
# @!attribute [rw] file_share_name
|
4634
|
+
# The name of the file share. Optional.
|
4635
|
+
#
|
4636
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
4637
|
+
# `LocationARN`.
|
4638
|
+
#
|
4639
|
+
# </note>
|
4640
|
+
# @return [String]
|
4641
|
+
#
|
4642
|
+
# @!attribute [rw] cache_attributes
|
4643
|
+
# Refresh cache information.
|
4644
|
+
# @return [Types::CacheAttributes]
|
4645
|
+
#
|
4553
4646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/NFSFileShareInfo AWS API Documentation
|
4554
4647
|
#
|
4555
4648
|
class NFSFileShareInfo < Struct.new(
|
@@ -4570,7 +4663,9 @@ module Aws::StorageGateway
|
|
4570
4663
|
:read_only,
|
4571
4664
|
:guess_mime_type_enabled,
|
4572
4665
|
:requester_pays,
|
4573
|
-
:tags
|
4666
|
+
:tags,
|
4667
|
+
:file_share_name,
|
4668
|
+
:cache_attributes)
|
4574
4669
|
SENSITIVE = []
|
4575
4670
|
include Aws::Structure
|
4576
4671
|
end
|
@@ -4928,7 +5023,8 @@ module Aws::StorageGateway
|
|
4928
5023
|
# @return [String]
|
4929
5024
|
#
|
4930
5025
|
# @!attribute [rw] location_arn
|
4931
|
-
# The ARN of the backend storage used for storing file data.
|
5026
|
+
# The ARN of the backend storage used for storing file data. A prefix
|
5027
|
+
# name can be added to the S3 bucket name. It must end with a "/".
|
4932
5028
|
# @return [String]
|
4933
5029
|
#
|
4934
5030
|
# @!attribute [rw] default_storage_class
|
@@ -4997,22 +5093,25 @@ module Aws::StorageGateway
|
|
4997
5093
|
# @!attribute [rw] admin_user_list
|
4998
5094
|
# A list of users or groups in the Active Directory that have
|
4999
5095
|
# administrator rights to the file share. A group must be prefixed
|
5000
|
-
# with the @ character.
|
5096
|
+
# with the @ character. Acceptable formats include: `DOMAIN\User1`,
|
5097
|
+
# `user1`, `@group1`, and `@DOMAIN\group1`. Can only be set if
|
5001
5098
|
# Authentication is set to `ActiveDirectory`.
|
5002
5099
|
# @return [Array<String>]
|
5003
5100
|
#
|
5004
5101
|
# @!attribute [rw] valid_user_list
|
5005
5102
|
# A list of users or groups in the Active Directory that are allowed
|
5006
5103
|
# to access the file share. A group must be prefixed with the @
|
5007
|
-
# character.
|
5104
|
+
# character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
5105
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication
|
5008
5106
|
# is set to `ActiveDirectory`.
|
5009
5107
|
# @return [Array<String>]
|
5010
5108
|
#
|
5011
5109
|
# @!attribute [rw] invalid_user_list
|
5012
5110
|
# A list of users or groups in the Active Directory that are not
|
5013
5111
|
# allowed to access the file share. A group must be prefixed with the
|
5014
|
-
# @ character.
|
5015
|
-
#
|
5112
|
+
# @ character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
5113
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication
|
5114
|
+
# is set to `ActiveDirectory`.
|
5016
5115
|
# @return [Array<String>]
|
5017
5116
|
#
|
5018
5117
|
# @!attribute [rw] audit_destination_arn
|
@@ -5027,6 +5126,13 @@ module Aws::StorageGateway
|
|
5027
5126
|
# Valid Values: `ActiveDirectory` \| `GuestAccess`
|
5028
5127
|
# @return [String]
|
5029
5128
|
#
|
5129
|
+
# @!attribute [rw] case_sensitivity
|
5130
|
+
# The case of an object name in an Amazon S3 bucket. For
|
5131
|
+
# `ClientSpecified`, the client determines the case sensitivity. For
|
5132
|
+
# `CaseSensitive`, the gateway determines the case sensitivity. The
|
5133
|
+
# default value is `ClientSpecified`.
|
5134
|
+
# @return [String]
|
5135
|
+
#
|
5030
5136
|
# @!attribute [rw] tags
|
5031
5137
|
# A list of up to 50 tags assigned to the SMB file share, sorted
|
5032
5138
|
# alphabetically by key name. Each tag is a key-value pair. For a
|
@@ -5034,6 +5140,19 @@ module Aws::StorageGateway
|
|
5034
5140
|
# the `ListTagsForResource` API operation.
|
5035
5141
|
# @return [Array<Types::Tag>]
|
5036
5142
|
#
|
5143
|
+
# @!attribute [rw] file_share_name
|
5144
|
+
# The name of the file share. Optional.
|
5145
|
+
#
|
5146
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
5147
|
+
# `LocationARN`.
|
5148
|
+
#
|
5149
|
+
# </note>
|
5150
|
+
# @return [String]
|
5151
|
+
#
|
5152
|
+
# @!attribute [rw] cache_attributes
|
5153
|
+
# Refresh cache information.
|
5154
|
+
# @return [Types::CacheAttributes]
|
5155
|
+
#
|
5037
5156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/SMBFileShareInfo AWS API Documentation
|
5038
5157
|
#
|
5039
5158
|
class SMBFileShareInfo < Struct.new(
|
@@ -5057,7 +5176,10 @@ module Aws::StorageGateway
|
|
5057
5176
|
:invalid_user_list,
|
5058
5177
|
:audit_destination_arn,
|
5059
5178
|
:authentication,
|
5060
|
-
:
|
5179
|
+
:case_sensitivity,
|
5180
|
+
:tags,
|
5181
|
+
:file_share_name,
|
5182
|
+
:cache_attributes)
|
5061
5183
|
SENSITIVE = []
|
5062
5184
|
include Aws::Structure
|
5063
5185
|
end
|
@@ -6098,6 +6220,10 @@ module Aws::StorageGateway
|
|
6098
6220
|
# read_only: false,
|
6099
6221
|
# guess_mime_type_enabled: false,
|
6100
6222
|
# requester_pays: false,
|
6223
|
+
# file_share_name: "FileShareName",
|
6224
|
+
# cache_attributes: {
|
6225
|
+
# cache_stale_timeout_in_seconds: 1,
|
6226
|
+
# },
|
6101
6227
|
# }
|
6102
6228
|
#
|
6103
6229
|
# @!attribute [rw] file_share_arn
|
@@ -6187,6 +6313,19 @@ module Aws::StorageGateway
|
|
6187
6313
|
# Valid Values: `true` \| `false`
|
6188
6314
|
# @return [Boolean]
|
6189
6315
|
#
|
6316
|
+
# @!attribute [rw] file_share_name
|
6317
|
+
# The name of the file share. Optional.
|
6318
|
+
#
|
6319
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
6320
|
+
# `LocationARN`.
|
6321
|
+
#
|
6322
|
+
# </note>
|
6323
|
+
# @return [String]
|
6324
|
+
#
|
6325
|
+
# @!attribute [rw] cache_attributes
|
6326
|
+
# Refresh cache information.
|
6327
|
+
# @return [Types::CacheAttributes]
|
6328
|
+
#
|
6190
6329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateNFSFileShareInput AWS API Documentation
|
6191
6330
|
#
|
6192
6331
|
class UpdateNFSFileShareInput < Struct.new(
|
@@ -6200,7 +6339,9 @@ module Aws::StorageGateway
|
|
6200
6339
|
:squash,
|
6201
6340
|
:read_only,
|
6202
6341
|
:guess_mime_type_enabled,
|
6203
|
-
:requester_pays
|
6342
|
+
:requester_pays,
|
6343
|
+
:file_share_name,
|
6344
|
+
:cache_attributes)
|
6204
6345
|
SENSITIVE = []
|
6205
6346
|
include Aws::Structure
|
6206
6347
|
end
|
@@ -6238,6 +6379,11 @@ module Aws::StorageGateway
|
|
6238
6379
|
# valid_user_list: ["FileShareUser"],
|
6239
6380
|
# invalid_user_list: ["FileShareUser"],
|
6240
6381
|
# audit_destination_arn: "AuditDestinationARN",
|
6382
|
+
# case_sensitivity: "ClientSpecified", # accepts ClientSpecified, CaseSensitive
|
6383
|
+
# file_share_name: "FileShareName",
|
6384
|
+
# cache_attributes: {
|
6385
|
+
# cache_stale_timeout_in_seconds: 1,
|
6386
|
+
# },
|
6241
6387
|
# }
|
6242
6388
|
#
|
6243
6389
|
# @!attribute [rw] file_share_arn
|
@@ -6324,24 +6470,27 @@ module Aws::StorageGateway
|
|
6324
6470
|
# @return [Boolean]
|
6325
6471
|
#
|
6326
6472
|
# @!attribute [rw] admin_user_list
|
6327
|
-
# A list of users in the Active Directory that have
|
6328
|
-
# rights to the file share. A group must be prefixed
|
6329
|
-
#
|
6330
|
-
#
|
6473
|
+
# A list of users or groups in the Active Directory that have
|
6474
|
+
# administrator rights to the file share. A group must be prefixed
|
6475
|
+
# with the @ character. Acceptable formats include: `DOMAIN\User1`,
|
6476
|
+
# `user1`, `@group1`, and `@DOMAIN\group1`. Can only be set if
|
6477
|
+
# Authentication is set to `ActiveDirectory`.
|
6331
6478
|
# @return [Array<String>]
|
6332
6479
|
#
|
6333
6480
|
# @!attribute [rw] valid_user_list
|
6334
6481
|
# A list of users or groups in the Active Directory that are allowed
|
6335
6482
|
# to access the file share. A group must be prefixed with the @
|
6336
|
-
# character.
|
6483
|
+
# character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
6484
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication
|
6337
6485
|
# is set to `ActiveDirectory`.
|
6338
6486
|
# @return [Array<String>]
|
6339
6487
|
#
|
6340
6488
|
# @!attribute [rw] invalid_user_list
|
6341
6489
|
# A list of users or groups in the Active Directory that are not
|
6342
6490
|
# allowed to access the file share. A group must be prefixed with the
|
6343
|
-
# @ character.
|
6344
|
-
#
|
6491
|
+
# @ character. Acceptable formats include: `DOMAIN\User1`, `user1`,
|
6492
|
+
# `@group1`, and `@DOMAIN\group1`. Can only be set if Authentication
|
6493
|
+
# is set to `ActiveDirectory`.
|
6345
6494
|
# @return [Array<String>]
|
6346
6495
|
#
|
6347
6496
|
# @!attribute [rw] audit_destination_arn
|
@@ -6349,6 +6498,26 @@ module Aws::StorageGateway
|
|
6349
6498
|
# logs.
|
6350
6499
|
# @return [String]
|
6351
6500
|
#
|
6501
|
+
# @!attribute [rw] case_sensitivity
|
6502
|
+
# The case of an object name in an Amazon S3 bucket. For
|
6503
|
+
# `ClientSpecified`, the client determines the case sensitivity. For
|
6504
|
+
# `CaseSensitive`, the gateway determines the case sensitivity. The
|
6505
|
+
# default value is `ClientSpecified`.
|
6506
|
+
# @return [String]
|
6507
|
+
#
|
6508
|
+
# @!attribute [rw] file_share_name
|
6509
|
+
# The name of the file share. Optional.
|
6510
|
+
#
|
6511
|
+
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
6512
|
+
# `LocationARN`.
|
6513
|
+
#
|
6514
|
+
# </note>
|
6515
|
+
# @return [String]
|
6516
|
+
#
|
6517
|
+
# @!attribute [rw] cache_attributes
|
6518
|
+
# Refresh cache information.
|
6519
|
+
# @return [Types::CacheAttributes]
|
6520
|
+
#
|
6352
6521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateSMBFileShareInput AWS API Documentation
|
6353
6522
|
#
|
6354
6523
|
class UpdateSMBFileShareInput < Struct.new(
|
@@ -6364,7 +6533,10 @@ module Aws::StorageGateway
|
|
6364
6533
|
:admin_user_list,
|
6365
6534
|
:valid_user_list,
|
6366
6535
|
:invalid_user_list,
|
6367
|
-
:audit_destination_arn
|
6536
|
+
:audit_destination_arn,
|
6537
|
+
:case_sensitivity,
|
6538
|
+
:file_share_name,
|
6539
|
+
:cache_attributes)
|
6368
6540
|
SENSITIVE = []
|
6369
6541
|
include Aws::Structure
|
6370
6542
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-storagegateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|