aws-sdk-storagegateway 1.20.0 → 1.21.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 599837e491af7e6784e3fc3a11f4eb2c5b1629a2
4
- data.tar.gz: 8e1b7df737229c68d5b1a891894bbc69373bedd3
3
+ metadata.gz: ca825f4187c3e264e5f437cf12e3a42c4d9ed535
4
+ data.tar.gz: e9ac382679120d188d71432703990ed9507992e2
5
5
  SHA512:
6
- metadata.gz: 537dc82648c9f6b1f76e1c2e3559671e4626b27c5f2b1fe2e8d68944f6224f3cd9e08ae720651fd3d42270a9f92914593fd2b54e8aa4b3c7fad05a47f3819449
7
- data.tar.gz: e20d04c0126cab86b9e8e4ebe555bfa8b8a6b500b1e2bdb3903d33ba592931b292206fb30467788f973d35608782846b43a90554e0ad21e47e40091318a65a6c
6
+ metadata.gz: f6be770013b42294556cdc6b1555c4f6533fa1495b0f02b6ea39765ccfe67b548da415c8b717bb004a474b0dfa44a7fdf3efca1185e341a28722a0ae2e6b7e42
7
+ data.tar.gz: 788caaa5a638865c9e8c132cfeb4a54a93971cf0796a517b084d793ff39d8353cac972abe3bb16e4649ff64f6276896c89cb1eaeb48cdb502978510225927169
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-storagegateway/customizations'
42
42
  # @service
43
43
  module Aws::StorageGateway
44
44
 
45
- GEM_VERSION = '1.20.0'
45
+ GEM_VERSION = '1.21.0'
46
46
 
47
47
  end
@@ -1211,6 +1211,11 @@ module Aws::StorageGateway
1211
1211
  #
1212
1212
  # </note>
1213
1213
  #
1214
+ # @option params [Boolean] :smbacl_enabled
1215
+ # Set this value to "true to enable ACL (access control list) on the
1216
+ # SMB file share. Set it to "false" to map file and directory
1217
+ # permissions to the POSIX permissions.
1218
+ #
1214
1219
  # @option params [Array<String>] :valid_user_list
1215
1220
  # A list of users or groups in the Active Directory that are allowed to
1216
1221
  # access the file share. A group must be prefixed with the @ character.
@@ -1258,6 +1263,7 @@ module Aws::StorageGateway
1258
1263
  # read_only: false,
1259
1264
  # guess_mime_type_enabled: false,
1260
1265
  # requester_pays: false,
1266
+ # smbacl_enabled: false,
1261
1267
  # valid_user_list: ["FileShareUser"],
1262
1268
  # invalid_user_list: ["FileShareUser"],
1263
1269
  # authentication: "Authentication",
@@ -2764,6 +2770,7 @@ module Aws::StorageGateway
2764
2770
  # resp.smb_file_share_info_list[0].read_only #=> Boolean
2765
2771
  # resp.smb_file_share_info_list[0].guess_mime_type_enabled #=> Boolean
2766
2772
  # resp.smb_file_share_info_list[0].requester_pays #=> Boolean
2773
+ # resp.smb_file_share_info_list[0].smbacl_enabled #=> Boolean
2767
2774
  # resp.smb_file_share_info_list[0].valid_user_list #=> Array
2768
2775
  # resp.smb_file_share_info_list[0].valid_user_list[0] #=> String
2769
2776
  # resp.smb_file_share_info_list[0].invalid_user_list #=> Array
@@ -5303,6 +5310,11 @@ module Aws::StorageGateway
5303
5310
  #
5304
5311
  # </note>
5305
5312
  #
5313
+ # @option params [Boolean] :smbacl_enabled
5314
+ # Set this value to "true to enable ACL (access control list) on the
5315
+ # SMB file share. Set it to "false" to map file and directory
5316
+ # permissions to the POSIX permissions.
5317
+ #
5306
5318
  # @option params [Array<String>] :valid_user_list
5307
5319
  # A list of users or groups in the Active Directory that are allowed to
5308
5320
  # access the file share. A group must be prefixed with the @ character.
@@ -5330,6 +5342,7 @@ module Aws::StorageGateway
5330
5342
  # read_only: false,
5331
5343
  # guess_mime_type_enabled: false,
5332
5344
  # requester_pays: false,
5345
+ # smbacl_enabled: false,
5333
5346
  # valid_user_list: ["FileShareUser"],
5334
5347
  # invalid_user_list: ["FileShareUser"],
5335
5348
  # })
@@ -5486,7 +5499,7 @@ module Aws::StorageGateway
5486
5499
  params: params,
5487
5500
  config: config)
5488
5501
  context[:gem_name] = 'aws-sdk-storagegateway'
5489
- context[:gem_version] = '1.20.0'
5502
+ context[:gem_version] = '1.21.0'
5490
5503
  Seahorse::Client::Request.new(handlers, context)
5491
5504
  end
5492
5505
 
@@ -443,6 +443,7 @@ module Aws::StorageGateway
443
443
  CreateSMBFileShareInput.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
444
444
  CreateSMBFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
445
445
  CreateSMBFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
446
+ CreateSMBFileShareInput.add_member(:smbacl_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SMBACLEnabled"))
446
447
  CreateSMBFileShareInput.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
447
448
  CreateSMBFileShareInput.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
448
449
  CreateSMBFileShareInput.add_member(:authentication, Shapes::ShapeRef.new(shape: Authentication, location_name: "Authentication"))
@@ -955,6 +956,7 @@ module Aws::StorageGateway
955
956
  SMBFileShareInfo.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
956
957
  SMBFileShareInfo.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
957
958
  SMBFileShareInfo.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
959
+ SMBFileShareInfo.add_member(:smbacl_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SMBACLEnabled"))
958
960
  SMBFileShareInfo.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
959
961
  SMBFileShareInfo.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
960
962
  SMBFileShareInfo.add_member(:authentication, Shapes::ShapeRef.new(shape: Authentication, location_name: "Authentication"))
@@ -1135,6 +1137,7 @@ module Aws::StorageGateway
1135
1137
  UpdateSMBFileShareInput.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
1136
1138
  UpdateSMBFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
1137
1139
  UpdateSMBFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
1140
+ UpdateSMBFileShareInput.add_member(:smbacl_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SMBACLEnabled"))
1138
1141
  UpdateSMBFileShareInput.add_member(:valid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "ValidUserList"))
1139
1142
  UpdateSMBFileShareInput.add_member(:invalid_user_list, Shapes::ShapeRef.new(shape: FileShareUserList, location_name: "InvalidUserList"))
1140
1143
  UpdateSMBFileShareInput.struct_class = Types::UpdateSMBFileShareInput
@@ -1692,6 +1695,12 @@ module Aws::StorageGateway
1692
1695
  o.output = Shapes::ShapeRef.new(shape: ListFileSharesOutput)
1693
1696
  o.errors << Shapes::ShapeRef.new(shape: InvalidGatewayRequestException)
1694
1697
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
1698
+ o[:pager] = Aws::Pager.new(
1699
+ limit_key: "limit",
1700
+ tokens: {
1701
+ "next_marker" => "marker"
1702
+ }
1703
+ )
1695
1704
  end)
1696
1705
 
1697
1706
  api.add_operation(:list_gateways, Seahorse::Model::Operation.new.tap do |o|
@@ -1728,6 +1737,12 @@ module Aws::StorageGateway
1728
1737
  o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceOutput)
1729
1738
  o.errors << Shapes::ShapeRef.new(shape: InvalidGatewayRequestException)
1730
1739
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
1740
+ o[:pager] = Aws::Pager.new(
1741
+ limit_key: "limit",
1742
+ tokens: {
1743
+ "marker" => "marker"
1744
+ }
1745
+ )
1731
1746
  end)
1732
1747
 
1733
1748
  api.add_operation(:list_tapes, Seahorse::Model::Operation.new.tap do |o|
@@ -1738,6 +1753,12 @@ module Aws::StorageGateway
1738
1753
  o.output = Shapes::ShapeRef.new(shape: ListTapesOutput)
1739
1754
  o.errors << Shapes::ShapeRef.new(shape: InvalidGatewayRequestException)
1740
1755
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
1756
+ o[:pager] = Aws::Pager.new(
1757
+ limit_key: "limit",
1758
+ tokens: {
1759
+ "marker" => "marker"
1760
+ }
1761
+ )
1741
1762
  end)
1742
1763
 
1743
1764
  api.add_operation(:list_volume_initiators, Seahorse::Model::Operation.new.tap do |o|
@@ -477,7 +477,13 @@ module Aws::StorageGateway
477
477
  # @return [Time]
478
478
  #
479
479
  # @!attribute [rw] volume_used_in_bytes
480
- # The size of the data stored on the volume in bytes.
480
+ # The size of the data stored on the volume in bytes. This value is
481
+ # calculated based on the number of blocks that are touched, instead
482
+ # of the actual amount of data written. This value can be useful for
483
+ # sequential write patterns but less accurate for random write
484
+ # patterns. `VolumeUsedInBytes` is different from the compressed size
485
+ # of the volume, which is the value that is used to calculate your
486
+ # bill.
481
487
  #
482
488
  # <note markdown="1"> This value is not available for volumes created prior to May 13,
483
489
  # 2015, until you store data on the volume.
@@ -957,6 +963,7 @@ module Aws::StorageGateway
957
963
  # read_only: false,
958
964
  # guess_mime_type_enabled: false,
959
965
  # requester_pays: false,
966
+ # smbacl_enabled: false,
960
967
  # valid_user_list: ["FileShareUser"],
961
968
  # invalid_user_list: ["FileShareUser"],
962
969
  # authentication: "Authentication",
@@ -1036,6 +1043,12 @@ module Aws::StorageGateway
1036
1043
  # </note>
1037
1044
  # @return [Boolean]
1038
1045
  #
1046
+ # @!attribute [rw] smbacl_enabled
1047
+ # Set this value to "true to enable ACL (access control list) on the
1048
+ # SMB file share. Set it to "false" to map file and directory
1049
+ # permissions to the POSIX permissions.
1050
+ # @return [Boolean]
1051
+ #
1039
1052
  # @!attribute [rw] valid_user_list
1040
1053
  # A list of users or groups in the Active Directory that are allowed
1041
1054
  # to access the file share. A group must be prefixed with the @
@@ -1083,6 +1096,7 @@ module Aws::StorageGateway
1083
1096
  :read_only,
1084
1097
  :guess_mime_type_enabled,
1085
1098
  :requester_pays,
1099
+ :smbacl_enabled,
1086
1100
  :valid_user_list,
1087
1101
  :invalid_user_list,
1088
1102
  :authentication,
@@ -4239,6 +4253,13 @@ module Aws::StorageGateway
4239
4253
  # </note>
4240
4254
  # @return [Boolean]
4241
4255
  #
4256
+ # @!attribute [rw] smbacl_enabled
4257
+ # If this value is set to "true", indicates that ACL (access control
4258
+ # list) is enabled on the SMB file share. If it is set to "false",
4259
+ # it indicates that file and directory permissions are mapped to the
4260
+ # POSIX permission.
4261
+ # @return [Boolean]
4262
+ #
4242
4263
  # @!attribute [rw] valid_user_list
4243
4264
  # A list of users or groups in the Active Directory that are allowed
4244
4265
  # to access the file share. A group must be prefixed with the @
@@ -4284,6 +4305,7 @@ module Aws::StorageGateway
4284
4305
  :read_only,
4285
4306
  :guess_mime_type_enabled,
4286
4307
  :requester_pays,
4308
+ :smbacl_enabled,
4287
4309
  :valid_user_list,
4288
4310
  :invalid_user_list,
4289
4311
  :authentication,
@@ -4531,7 +4553,13 @@ module Aws::StorageGateway
4531
4553
  # @return [Time]
4532
4554
  #
4533
4555
  # @!attribute [rw] volume_used_in_bytes
4534
- # The size of the data stored on the volume in bytes.
4556
+ # The size of the data stored on the volume in bytes. This value is
4557
+ # calculated based on the number of blocks that are touched, instead
4558
+ # of the actual amount of data written. This value can be useful for
4559
+ # sequential write patterns but less accurate for random write
4560
+ # patterns. `VolumeUsedInBytes` is different from the compressed size
4561
+ # of the volume, which is the value that is used to calculate your
4562
+ # bill.
4535
4563
  #
4536
4564
  # <note markdown="1"> This value is not available for volumes created prior to May 13,
4537
4565
  # 2015, until you store data on the volume.
@@ -5271,6 +5299,7 @@ module Aws::StorageGateway
5271
5299
  # read_only: false,
5272
5300
  # guess_mime_type_enabled: false,
5273
5301
  # requester_pays: false,
5302
+ # smbacl_enabled: false,
5274
5303
  # valid_user_list: ["FileShareUser"],
5275
5304
  # invalid_user_list: ["FileShareUser"],
5276
5305
  # }
@@ -5329,6 +5358,12 @@ module Aws::StorageGateway
5329
5358
  # </note>
5330
5359
  # @return [Boolean]
5331
5360
  #
5361
+ # @!attribute [rw] smbacl_enabled
5362
+ # Set this value to "true to enable ACL (access control list) on the
5363
+ # SMB file share. Set it to "false" to map file and directory
5364
+ # permissions to the POSIX permissions.
5365
+ # @return [Boolean]
5366
+ #
5332
5367
  # @!attribute [rw] valid_user_list
5333
5368
  # A list of users or groups in the Active Directory that are allowed
5334
5369
  # to access the file share. A group must be prefixed with the @
@@ -5354,6 +5389,7 @@ module Aws::StorageGateway
5354
5389
  :read_only,
5355
5390
  :guess_mime_type_enabled,
5356
5391
  :requester_pays,
5392
+ :smbacl_enabled,
5357
5393
  :valid_user_list,
5358
5394
  :invalid_user_list)
5359
5395
  include Aws::Structure
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.20.0
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-16 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -59,7 +59,7 @@ files:
59
59
  - lib/aws-sdk-storagegateway/errors.rb
60
60
  - lib/aws-sdk-storagegateway/resource.rb
61
61
  - lib/aws-sdk-storagegateway/types.rb
62
- homepage: http://github.com/aws/aws-sdk-ruby
62
+ homepage: https://github.com/aws/aws-sdk-ruby
63
63
  licenses:
64
64
  - Apache-2.0
65
65
  metadata: