aws-sdk-storagegateway 1.2.0 → 1.3.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a389998fe94bb087322bb10e0624df398a2ee1f
|
4
|
+
data.tar.gz: 645c3e751e976b61f1ad69e7fbfa3cde54bdb903
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3ce4a2cb0bbd4926a44c6ae3ef182f2446fe839944c8505f373bc2065eb1ce9945c34ee3b7e78b50eb7cfc31c3d3ae38cdc5c54e06abd7c1bf7cd7c1b5911f1
|
7
|
+
data.tar.gz: 813a1a96e9bea54c6a80af5ef0a0f9261dad47f82d063f5739f8756d33c2e27f3c7c949f60f891b1a449bbab12cfa695698f772de713352c8f27eb2b5af3472b
|
@@ -155,8 +155,7 @@ module Aws::StorageGateway
|
|
155
155
|
|
156
156
|
# @!group API Operations
|
157
157
|
|
158
|
-
# Activates the gateway you previously deployed on your host.
|
159
|
-
# information, see [ Activate the AWS Storage Gateway][1]. In the
|
158
|
+
# Activates the gateway you previously deployed on your host. In the
|
160
159
|
# activation process, you specify information such as the region you
|
161
160
|
# want to use for storing snapshots or tapes, the time zone for
|
162
161
|
# scheduled snapshots the gateway snapshot schedule window, an
|
@@ -168,10 +167,6 @@ module Aws::StorageGateway
|
|
168
167
|
#
|
169
168
|
# </note>
|
170
169
|
#
|
171
|
-
#
|
172
|
-
#
|
173
|
-
# [1]: http://docs.aws.amazon.com/storagegateway/latest/userguide/GettingStartedActivateGateway-common.html
|
174
|
-
#
|
175
170
|
# @option params [required, String] :activation_key
|
176
171
|
# Your gateway activation key. You can obtain the activation key by
|
177
172
|
# sending an HTTP GET request with redirects enabled to the gateway IP
|
@@ -182,6 +177,10 @@ module Aws::StorageGateway
|
|
182
177
|
# pass to the `ActivateGateway` API call determine the actual
|
183
178
|
# configuration of your gateway.
|
184
179
|
#
|
180
|
+
# For more information, see
|
181
|
+
# https://docs.aws.amazon.com/storagegateway/latest/userguide/get-activation-key.html
|
182
|
+
# in the Storage Gateway User Guide.
|
183
|
+
#
|
185
184
|
# @option params [required, String] :gateway_name
|
186
185
|
# The name you configured for your gateway.
|
187
186
|
#
|
@@ -202,7 +201,7 @@ module Aws::StorageGateway
|
|
202
201
|
#
|
203
202
|
# Valid Values: "us-east-1", "us-east-2", "us-west-1",
|
204
203
|
# "us-west-2", "ca-central-1", "eu-west-1", "eu-central-1",
|
205
|
-
# "eu-west-2", "ap-northeast-1", "ap-northeast-2",
|
204
|
+
# "eu-west-2", "eu-west-3", "ap-northeast-1", "ap-northeast-2",
|
206
205
|
# "ap-southeast-1", "ap-southeast-2", "ap-south-1", "sa-east-1"
|
207
206
|
#
|
208
207
|
#
|
@@ -793,6 +792,11 @@ module Aws::StorageGateway
|
|
793
792
|
# this field is not populated, the default value S3\_STANDARD is used.
|
794
793
|
# Optional.
|
795
794
|
#
|
795
|
+
# @option params [String] :object_acl
|
796
|
+
# Sets the access control list permission for objects in the Amazon S3
|
797
|
+
# bucket that a file gateway puts objects into. The default value is
|
798
|
+
# "private".
|
799
|
+
#
|
796
800
|
# @option params [Array<String>] :client_list
|
797
801
|
# The list of clients that are allowed to access the file gateway. The
|
798
802
|
# list must contain either valid IP addresses or valid CIDR blocks.
|
@@ -807,13 +811,18 @@ module Aws::StorageGateway
|
|
807
811
|
# * "AllSquash" - Everyone is mapped to anonymous user.
|
808
812
|
#
|
809
813
|
# @option params [Boolean] :read_only
|
810
|
-
# Sets the write status of a file share
|
811
|
-
# read-only, and otherwise
|
814
|
+
# Sets the write status of a file share. This value is true if the write
|
815
|
+
# status is read-only, and otherwise false.
|
812
816
|
#
|
813
817
|
# @option params [Boolean] :guess_mime_type_enabled
|
814
818
|
# Enables guessing of the MIME type for uploaded objects based on file
|
815
|
-
# extensions
|
816
|
-
#
|
819
|
+
# extensions. Set this value to true to enable MIME type guessing, and
|
820
|
+
# otherwise to false. The default value is true.
|
821
|
+
#
|
822
|
+
# @option params [Boolean] :requester_pays
|
823
|
+
# Sets who pays the cost of the request and the data download from the
|
824
|
+
# Amazon S3 bucket. Set this value to true if you want the requester to
|
825
|
+
# pay instead of the bucket owner, and otherwise to false.
|
817
826
|
#
|
818
827
|
# @return [Types::CreateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
819
828
|
#
|
@@ -835,10 +844,12 @@ module Aws::StorageGateway
|
|
835
844
|
# role: "Role", # required
|
836
845
|
# location_arn: "LocationARN", # required
|
837
846
|
# default_storage_class: "StorageClass",
|
847
|
+
# object_acl: "private", # accepts private, public-read, public-read-write, authenticated-read, bucket-owner-read, bucket-owner-full-control, aws-exec-read
|
838
848
|
# client_list: ["IPV4AddressCIDR"],
|
839
849
|
# squash: "Squash",
|
840
850
|
# read_only: false,
|
841
851
|
# guess_mime_type_enabled: false,
|
852
|
+
# requester_pays: false,
|
842
853
|
# })
|
843
854
|
#
|
844
855
|
# @example Response structure
|
@@ -2148,11 +2159,13 @@ module Aws::StorageGateway
|
|
2148
2159
|
# resp.nfs_file_share_info_list[0].role #=> String
|
2149
2160
|
# resp.nfs_file_share_info_list[0].location_arn #=> String
|
2150
2161
|
# resp.nfs_file_share_info_list[0].default_storage_class #=> String
|
2162
|
+
# resp.nfs_file_share_info_list[0].object_acl #=> String, one of "private", "public-read", "public-read-write", "authenticated-read", "bucket-owner-read", "bucket-owner-full-control", "aws-exec-read"
|
2151
2163
|
# resp.nfs_file_share_info_list[0].client_list #=> Array
|
2152
2164
|
# resp.nfs_file_share_info_list[0].client_list[0] #=> String
|
2153
2165
|
# resp.nfs_file_share_info_list[0].squash #=> String
|
2154
2166
|
# resp.nfs_file_share_info_list[0].read_only #=> Boolean
|
2155
2167
|
# resp.nfs_file_share_info_list[0].guess_mime_type_enabled #=> Boolean
|
2168
|
+
# resp.nfs_file_share_info_list[0].requester_pays #=> Boolean
|
2156
2169
|
#
|
2157
2170
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeNFSFileShares AWS API Documentation
|
2158
2171
|
#
|
@@ -3434,18 +3447,22 @@ module Aws::StorageGateway
|
|
3434
3447
|
req.send_request(options)
|
3435
3448
|
end
|
3436
3449
|
|
3437
|
-
# Sends you notification
|
3438
|
-
# share
|
3450
|
+
# Sends you notification through CloudWatch Events when all files
|
3451
|
+
# written to your NFS file share have been uploaded to Amazon S3.
|
3439
3452
|
#
|
3440
3453
|
# AWS Storage Gateway can send a notification through Amazon CloudWatch
|
3441
3454
|
# Events when all files written to your file share up to that point in
|
3442
3455
|
# time have been uploaded to Amazon S3. These files include files
|
3443
3456
|
# written to the NFS file share up to the time that you make a request
|
3444
3457
|
# for notification. When the upload is done, Storage Gateway sends you
|
3445
|
-
# notification through an Amazon CloudWatch
|
3446
|
-
# CloudWatch Events to
|
3447
|
-
# as
|
3448
|
-
#
|
3458
|
+
# notification through an Amazon CloudWatch Event. You can configure
|
3459
|
+
# CloudWatch Events to send the notification through event targets such
|
3460
|
+
# as Amazon SNS or AWS Lambda function. This operation is only supported
|
3461
|
+
# in the file gateway type.
|
3462
|
+
#
|
3463
|
+
# For more information, see Getting File Upload Notification in the
|
3464
|
+
# Storage Gateway User Guide
|
3465
|
+
# (https://docs.aws.amazon.com/storagegateway/latest/userguide/monitoring-file-gateway.html#get-upload-notification).
|
3449
3466
|
#
|
3450
3467
|
# @option params [required, String] :file_share_arn
|
3451
3468
|
# The Amazon Resource Name (ARN) of the file share.
|
@@ -3567,7 +3584,7 @@ module Aws::StorageGateway
|
|
3567
3584
|
# occur when a disk is corrupted or removed from the gateway. When a
|
3568
3585
|
# cache is reset, the gateway loses its cache storage. At this point you
|
3569
3586
|
# can reconfigure the disks as cache disks. This operation is only
|
3570
|
-
# supported in the cached volume
|
3587
|
+
# supported in the cached volume and tape types.
|
3571
3588
|
#
|
3572
3589
|
# If the cache disk you are resetting contains data that has not been
|
3573
3590
|
# uploaded to Amazon S3 yet, that data can be lost. After you reset
|
@@ -4302,6 +4319,11 @@ module Aws::StorageGateway
|
|
4302
4319
|
# If this field is not populated, the default value S3\_STANDARD is
|
4303
4320
|
# used. Optional.
|
4304
4321
|
#
|
4322
|
+
# @option params [String] :object_acl
|
4323
|
+
# Sets the access control list permission for objects in the S3 bucket
|
4324
|
+
# that a file gateway puts objects into. The default value is
|
4325
|
+
# "private".
|
4326
|
+
#
|
4305
4327
|
# @option params [Array<String>] :client_list
|
4306
4328
|
# The list of clients that are allowed to access the file gateway. The
|
4307
4329
|
# list must contain either valid IP addresses or valid CIDR blocks.
|
@@ -4316,13 +4338,18 @@ module Aws::StorageGateway
|
|
4316
4338
|
# * "AllSquash" - Everyone is mapped to anonymous user.
|
4317
4339
|
#
|
4318
4340
|
# @option params [Boolean] :read_only
|
4319
|
-
# Sets the write status of a file share
|
4320
|
-
# read-only, otherwise
|
4341
|
+
# Sets the write status of a file share. This value is true if the write
|
4342
|
+
# status is read-only, and otherwise false.
|
4321
4343
|
#
|
4322
4344
|
# @option params [Boolean] :guess_mime_type_enabled
|
4323
4345
|
# Enables guessing of the MIME type for uploaded objects based on file
|
4324
|
-
# extensions
|
4325
|
-
#
|
4346
|
+
# extensions. Set this value to true to enable MIME type guessing, and
|
4347
|
+
# otherwise to false. The default value is true.
|
4348
|
+
#
|
4349
|
+
# @option params [Boolean] :requester_pays
|
4350
|
+
# Sets who pays the cost of the request and the data download from the
|
4351
|
+
# Amazon S3 bucket. Set this value to true if you want the requester to
|
4352
|
+
# pay instead of the bucket owner, and otherwise to false.
|
4326
4353
|
#
|
4327
4354
|
# @return [Types::UpdateNFSFileShareOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4328
4355
|
#
|
@@ -4341,10 +4368,12 @@ module Aws::StorageGateway
|
|
4341
4368
|
# owner_id: 1,
|
4342
4369
|
# },
|
4343
4370
|
# default_storage_class: "StorageClass",
|
4371
|
+
# object_acl: "private", # accepts private, public-read, public-read-write, authenticated-read, bucket-owner-read, bucket-owner-full-control, aws-exec-read
|
4344
4372
|
# client_list: ["IPV4AddressCIDR"],
|
4345
4373
|
# squash: "Squash",
|
4346
4374
|
# read_only: false,
|
4347
4375
|
# guess_mime_type_enabled: false,
|
4376
|
+
# requester_pays: false,
|
4348
4377
|
# })
|
4349
4378
|
#
|
4350
4379
|
# @example Response structure
|
@@ -4499,7 +4528,7 @@ module Aws::StorageGateway
|
|
4499
4528
|
params: params,
|
4500
4529
|
config: config)
|
4501
4530
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
4502
|
-
context[:gem_version] = '1.
|
4531
|
+
context[:gem_version] = '1.3.0'
|
4503
4532
|
Seahorse::Client::Request.new(handlers, context)
|
4504
4533
|
end
|
4505
4534
|
|
@@ -167,6 +167,7 @@ module Aws::StorageGateway
|
|
167
167
|
NotifyWhenUploadedInput = Shapes::StructureShape.new(name: 'NotifyWhenUploadedInput')
|
168
168
|
NotifyWhenUploadedOutput = Shapes::StructureShape.new(name: 'NotifyWhenUploadedOutput')
|
169
169
|
NumTapesToCreate = Shapes::IntegerShape.new(name: 'NumTapesToCreate')
|
170
|
+
ObjectACL = Shapes::StringShape.new(name: 'ObjectACL')
|
170
171
|
Path = Shapes::StringShape.new(name: 'Path')
|
171
172
|
PermissionId = Shapes::IntegerShape.new(name: 'PermissionId')
|
172
173
|
PermissionMode = Shapes::StringShape.new(name: 'PermissionMode')
|
@@ -363,10 +364,12 @@ module Aws::StorageGateway
|
|
363
364
|
CreateNFSFileShareInput.add_member(:role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "Role"))
|
364
365
|
CreateNFSFileShareInput.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationARN, required: true, location_name: "LocationARN"))
|
365
366
|
CreateNFSFileShareInput.add_member(:default_storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "DefaultStorageClass"))
|
367
|
+
CreateNFSFileShareInput.add_member(:object_acl, Shapes::ShapeRef.new(shape: ObjectACL, location_name: "ObjectACL"))
|
366
368
|
CreateNFSFileShareInput.add_member(:client_list, Shapes::ShapeRef.new(shape: FileShareClientList, location_name: "ClientList"))
|
367
369
|
CreateNFSFileShareInput.add_member(:squash, Shapes::ShapeRef.new(shape: Squash, location_name: "Squash"))
|
368
370
|
CreateNFSFileShareInput.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
|
369
371
|
CreateNFSFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
372
|
+
CreateNFSFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
370
373
|
CreateNFSFileShareInput.struct_class = Types::CreateNFSFileShareInput
|
371
374
|
|
372
375
|
CreateNFSFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -743,10 +746,12 @@ module Aws::StorageGateway
|
|
743
746
|
NFSFileShareInfo.add_member(:role, Shapes::ShapeRef.new(shape: Role, location_name: "Role"))
|
744
747
|
NFSFileShareInfo.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationARN, location_name: "LocationARN"))
|
745
748
|
NFSFileShareInfo.add_member(:default_storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "DefaultStorageClass"))
|
749
|
+
NFSFileShareInfo.add_member(:object_acl, Shapes::ShapeRef.new(shape: ObjectACL, location_name: "ObjectACL"))
|
746
750
|
NFSFileShareInfo.add_member(:client_list, Shapes::ShapeRef.new(shape: FileShareClientList, location_name: "ClientList"))
|
747
751
|
NFSFileShareInfo.add_member(:squash, Shapes::ShapeRef.new(shape: Squash, location_name: "Squash"))
|
748
752
|
NFSFileShareInfo.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
|
749
753
|
NFSFileShareInfo.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
754
|
+
NFSFileShareInfo.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
750
755
|
NFSFileShareInfo.struct_class = Types::NFSFileShareInfo
|
751
756
|
|
752
757
|
NFSFileShareInfoList.member = Shapes::ShapeRef.new(shape: NFSFileShareInfo)
|
@@ -933,10 +938,12 @@ module Aws::StorageGateway
|
|
933
938
|
UpdateNFSFileShareInput.add_member(:kms_key, Shapes::ShapeRef.new(shape: KMSKey, location_name: "KMSKey"))
|
934
939
|
UpdateNFSFileShareInput.add_member(:nfs_file_share_defaults, Shapes::ShapeRef.new(shape: NFSFileShareDefaults, location_name: "NFSFileShareDefaults"))
|
935
940
|
UpdateNFSFileShareInput.add_member(:default_storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "DefaultStorageClass"))
|
941
|
+
UpdateNFSFileShareInput.add_member(:object_acl, Shapes::ShapeRef.new(shape: ObjectACL, location_name: "ObjectACL"))
|
936
942
|
UpdateNFSFileShareInput.add_member(:client_list, Shapes::ShapeRef.new(shape: FileShareClientList, location_name: "ClientList"))
|
937
943
|
UpdateNFSFileShareInput.add_member(:squash, Shapes::ShapeRef.new(shape: Squash, location_name: "Squash"))
|
938
944
|
UpdateNFSFileShareInput.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadOnly"))
|
939
945
|
UpdateNFSFileShareInput.add_member(:guess_mime_type_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "GuessMIMETypeEnabled"))
|
946
|
+
UpdateNFSFileShareInput.add_member(:requester_pays, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequesterPays"))
|
940
947
|
UpdateNFSFileShareInput.struct_class = Types::UpdateNFSFileShareInput
|
941
948
|
|
942
949
|
UpdateNFSFileShareOutput.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -46,6 +46,10 @@ module Aws::StorageGateway
|
|
46
46
|
# activation-related parameters, however, these are merely defaults --
|
47
47
|
# the arguments you pass to the `ActivateGateway` API call determine
|
48
48
|
# the actual configuration of your gateway.
|
49
|
+
#
|
50
|
+
# For more information, see
|
51
|
+
# https://docs.aws.amazon.com/storagegateway/latest/userguide/get-activation-key.html
|
52
|
+
# in the Storage Gateway User Guide.
|
49
53
|
# @return [String]
|
50
54
|
#
|
51
55
|
# @!attribute [rw] gateway_name
|
@@ -70,9 +74,9 @@ module Aws::StorageGateway
|
|
70
74
|
#
|
71
75
|
# Valid Values: "us-east-1", "us-east-2", "us-west-1",
|
72
76
|
# "us-west-2", "ca-central-1", "eu-west-1", "eu-central-1",
|
73
|
-
# "eu-west-2", "
|
74
|
-
# "ap-
|
75
|
-
# "sa-east-1"
|
77
|
+
# "eu-west-2", "eu-west-3", "ap-northeast-1",
|
78
|
+
# "ap-northeast-2", "ap-southeast-1", "ap-southeast-2",
|
79
|
+
# "ap-south-1", "sa-east-1"
|
76
80
|
#
|
77
81
|
#
|
78
82
|
#
|
@@ -589,10 +593,12 @@ module Aws::StorageGateway
|
|
589
593
|
# role: "Role", # required
|
590
594
|
# location_arn: "LocationARN", # required
|
591
595
|
# default_storage_class: "StorageClass",
|
596
|
+
# object_acl: "private", # accepts private, public-read, public-read-write, authenticated-read, bucket-owner-read, bucket-owner-full-control, aws-exec-read
|
592
597
|
# client_list: ["IPV4AddressCIDR"],
|
593
598
|
# squash: "Squash",
|
594
599
|
# read_only: false,
|
595
600
|
# guess_mime_type_enabled: false,
|
601
|
+
# requester_pays: false,
|
596
602
|
# }
|
597
603
|
#
|
598
604
|
# @!attribute [rw] client_token
|
@@ -635,6 +641,12 @@ module Aws::StorageGateway
|
|
635
641
|
# S3\_STANDARD is used. Optional.
|
636
642
|
# @return [String]
|
637
643
|
#
|
644
|
+
# @!attribute [rw] object_acl
|
645
|
+
# Sets the access control list permission for objects in the Amazon S3
|
646
|
+
# bucket that a file gateway puts objects into. The default value is
|
647
|
+
# "private".
|
648
|
+
# @return [String]
|
649
|
+
#
|
638
650
|
# @!attribute [rw] client_list
|
639
651
|
# The list of clients that are allowed to access the file gateway. The
|
640
652
|
# list must contain either valid IP addresses or valid CIDR blocks.
|
@@ -651,14 +663,20 @@ module Aws::StorageGateway
|
|
651
663
|
# @return [String]
|
652
664
|
#
|
653
665
|
# @!attribute [rw] read_only
|
654
|
-
# Sets the write status of a file share
|
655
|
-
# is read-only, and otherwise
|
666
|
+
# Sets the write status of a file share. This value is true if the
|
667
|
+
# write status is read-only, and otherwise false.
|
656
668
|
# @return [Boolean]
|
657
669
|
#
|
658
670
|
# @!attribute [rw] guess_mime_type_enabled
|
659
671
|
# Enables guessing of the MIME type for uploaded objects based on file
|
660
|
-
# extensions
|
661
|
-
#
|
672
|
+
# extensions. Set this value to true to enable MIME type guessing, and
|
673
|
+
# otherwise to false. The default value is true.
|
674
|
+
# @return [Boolean]
|
675
|
+
#
|
676
|
+
# @!attribute [rw] requester_pays
|
677
|
+
# Sets who pays the cost of the request and the data download from the
|
678
|
+
# Amazon S3 bucket. Set this value to true if you want the requester
|
679
|
+
# to pay instead of the bucket owner, and otherwise to false.
|
662
680
|
# @return [Boolean]
|
663
681
|
#
|
664
682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/CreateNFSFileShareInput AWS API Documentation
|
@@ -672,10 +690,12 @@ module Aws::StorageGateway
|
|
672
690
|
:role,
|
673
691
|
:location_arn,
|
674
692
|
:default_storage_class,
|
693
|
+
:object_acl,
|
675
694
|
:client_list,
|
676
695
|
:squash,
|
677
696
|
:read_only,
|
678
|
-
:guess_mime_type_enabled
|
697
|
+
:guess_mime_type_enabled,
|
698
|
+
:requester_pays)
|
679
699
|
include Aws::Structure
|
680
700
|
end
|
681
701
|
|
@@ -2859,6 +2879,12 @@ module Aws::StorageGateway
|
|
2859
2879
|
# S3\_STANDARD is used. Optional.
|
2860
2880
|
# @return [String]
|
2861
2881
|
#
|
2882
|
+
# @!attribute [rw] object_acl
|
2883
|
+
# Sets the access control list permission for objects in the S3 bucket
|
2884
|
+
# that a file gateway puts objects into. The default value is
|
2885
|
+
# "private".
|
2886
|
+
# @return [String]
|
2887
|
+
#
|
2862
2888
|
# @!attribute [rw] client_list
|
2863
2889
|
# The list of clients that are allowed to access the file gateway. The
|
2864
2890
|
# list must contain either valid IP addresses or valid CIDR blocks.
|
@@ -2875,15 +2901,20 @@ module Aws::StorageGateway
|
|
2875
2901
|
# @return [String]
|
2876
2902
|
#
|
2877
2903
|
# @!attribute [rw] read_only
|
2878
|
-
#
|
2879
|
-
#
|
2880
|
-
# "false".
|
2904
|
+
# Sets the write status of a file share. This value is true if the
|
2905
|
+
# write status is read-only, and otherwise false.
|
2881
2906
|
# @return [Boolean]
|
2882
2907
|
#
|
2883
2908
|
# @!attribute [rw] guess_mime_type_enabled
|
2884
2909
|
# Enables guessing of the MIME type for uploaded objects based on file
|
2885
|
-
# extensions
|
2886
|
-
#
|
2910
|
+
# extensions. Set this value to true to enable MIME type guessing, and
|
2911
|
+
# otherwise to false. The default value is true.
|
2912
|
+
# @return [Boolean]
|
2913
|
+
#
|
2914
|
+
# @!attribute [rw] requester_pays
|
2915
|
+
# Sets who pays the cost of the request and the data download from the
|
2916
|
+
# Amazon S3 bucket. Set this value to true if you want the requester
|
2917
|
+
# to pay instead of the bucket owner, and otherwise to false.
|
2887
2918
|
# @return [Boolean]
|
2888
2919
|
#
|
2889
2920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/NFSFileShareInfo AWS API Documentation
|
@@ -2900,10 +2931,12 @@ module Aws::StorageGateway
|
|
2900
2931
|
:role,
|
2901
2932
|
:location_arn,
|
2902
2933
|
:default_storage_class,
|
2934
|
+
:object_acl,
|
2903
2935
|
:client_list,
|
2904
2936
|
:squash,
|
2905
2937
|
:read_only,
|
2906
|
-
:guess_mime_type_enabled
|
2938
|
+
:guess_mime_type_enabled,
|
2939
|
+
:requester_pays)
|
2907
2940
|
include Aws::Structure
|
2908
2941
|
end
|
2909
2942
|
|
@@ -3874,10 +3907,12 @@ module Aws::StorageGateway
|
|
3874
3907
|
# owner_id: 1,
|
3875
3908
|
# },
|
3876
3909
|
# default_storage_class: "StorageClass",
|
3910
|
+
# object_acl: "private", # accepts private, public-read, public-read-write, authenticated-read, bucket-owner-read, bucket-owner-full-control, aws-exec-read
|
3877
3911
|
# client_list: ["IPV4AddressCIDR"],
|
3878
3912
|
# squash: "Squash",
|
3879
3913
|
# read_only: false,
|
3880
3914
|
# guess_mime_type_enabled: false,
|
3915
|
+
# requester_pays: false,
|
3881
3916
|
# }
|
3882
3917
|
#
|
3883
3918
|
# @!attribute [rw] file_share_arn
|
@@ -3905,6 +3940,12 @@ module Aws::StorageGateway
|
|
3905
3940
|
# S3\_STANDARD is used. Optional.
|
3906
3941
|
# @return [String]
|
3907
3942
|
#
|
3943
|
+
# @!attribute [rw] object_acl
|
3944
|
+
# Sets the access control list permission for objects in the S3 bucket
|
3945
|
+
# that a file gateway puts objects into. The default value is
|
3946
|
+
# "private".
|
3947
|
+
# @return [String]
|
3948
|
+
#
|
3908
3949
|
# @!attribute [rw] client_list
|
3909
3950
|
# The list of clients that are allowed to access the file gateway. The
|
3910
3951
|
# list must contain either valid IP addresses or valid CIDR blocks.
|
@@ -3921,14 +3962,20 @@ module Aws::StorageGateway
|
|
3921
3962
|
# @return [String]
|
3922
3963
|
#
|
3923
3964
|
# @!attribute [rw] read_only
|
3924
|
-
# Sets the write status of a file share
|
3925
|
-
# is read-only, otherwise
|
3965
|
+
# Sets the write status of a file share. This value is true if the
|
3966
|
+
# write status is read-only, and otherwise false.
|
3926
3967
|
# @return [Boolean]
|
3927
3968
|
#
|
3928
3969
|
# @!attribute [rw] guess_mime_type_enabled
|
3929
3970
|
# Enables guessing of the MIME type for uploaded objects based on file
|
3930
|
-
# extensions
|
3931
|
-
#
|
3971
|
+
# extensions. Set this value to true to enable MIME type guessing, and
|
3972
|
+
# otherwise to false. The default value is true.
|
3973
|
+
# @return [Boolean]
|
3974
|
+
#
|
3975
|
+
# @!attribute [rw] requester_pays
|
3976
|
+
# Sets who pays the cost of the request and the data download from the
|
3977
|
+
# Amazon S3 bucket. Set this value to true if you want the requester
|
3978
|
+
# to pay instead of the bucket owner, and otherwise to false.
|
3932
3979
|
# @return [Boolean]
|
3933
3980
|
#
|
3934
3981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateNFSFileShareInput AWS API Documentation
|
@@ -3939,10 +3986,12 @@ module Aws::StorageGateway
|
|
3939
3986
|
:kms_key,
|
3940
3987
|
:nfs_file_share_defaults,
|
3941
3988
|
:default_storage_class,
|
3989
|
+
:object_acl,
|
3942
3990
|
:client_list,
|
3943
3991
|
:squash,
|
3944
3992
|
:read_only,
|
3945
|
-
:guess_mime_type_enabled
|
3993
|
+
:guess_mime_type_enabled,
|
3994
|
+
:requester_pays)
|
3946
3995
|
include Aws::Structure
|
3947
3996
|
end
|
3948
3997
|
|
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.3.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:
|
11
|
+
date: 2018-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|