aws-sdk-storagegateway 1.93.0 → 1.95.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +182 -32
- data/lib/aws-sdk-storagegateway/client_api.rb +13 -6
- data/lib/aws-sdk-storagegateway/endpoints.rb +90 -360
- data/lib/aws-sdk-storagegateway/plugins/endpoints.rb +10 -1
- data/lib/aws-sdk-storagegateway/types.rb +310 -65
- data/lib/aws-sdk-storagegateway.rb +1 -1
- data/sig/client.rbs +4 -0
- data/sig/types.rbs +6 -0
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -261,6 +261,7 @@ module Aws
|
|
261
261
|
owner_id: ::Integer?
|
262
262
|
},
|
263
263
|
gateway_arn: ::String,
|
264
|
+
?encryption_type: ("SseS3" | "SseKms" | "DsseKms"),
|
264
265
|
?kms_encrypted: bool,
|
265
266
|
?kms_key: ::String,
|
266
267
|
role: ::String,
|
@@ -297,6 +298,7 @@ module Aws
|
|
297
298
|
def create_smb_file_share: (
|
298
299
|
client_token: ::String,
|
299
300
|
gateway_arn: ::String,
|
301
|
+
?encryption_type: ("SseS3" | "SseKms" | "DsseKms"),
|
300
302
|
?kms_encrypted: bool,
|
301
303
|
?kms_key: ::String,
|
302
304
|
role: ::String,
|
@@ -1271,6 +1273,7 @@ module Aws
|
|
1271
1273
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_nfs_file_share-instance_method
|
1272
1274
|
def update_nfs_file_share: (
|
1273
1275
|
file_share_arn: ::String,
|
1276
|
+
?encryption_type: ("SseS3" | "SseKms" | "DsseKms"),
|
1274
1277
|
?kms_encrypted: bool,
|
1275
1278
|
?kms_key: ::String,
|
1276
1279
|
?nfs_file_share_defaults: {
|
@@ -1302,6 +1305,7 @@ module Aws
|
|
1302
1305
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_smb_file_share-instance_method
|
1303
1306
|
def update_smb_file_share: (
|
1304
1307
|
file_share_arn: ::String,
|
1308
|
+
?encryption_type: ("SseS3" | "SseKms" | "DsseKms"),
|
1305
1309
|
?kms_encrypted: bool,
|
1306
1310
|
?kms_key: ::String,
|
1307
1311
|
?default_storage_class: ::String,
|
data/sig/types.rbs
CHANGED
@@ -216,6 +216,7 @@ module Aws::StorageGateway
|
|
216
216
|
attr_accessor client_token: ::String
|
217
217
|
attr_accessor nfs_file_share_defaults: Types::NFSFileShareDefaults
|
218
218
|
attr_accessor gateway_arn: ::String
|
219
|
+
attr_accessor encryption_type: ("SseS3" | "SseKms" | "DsseKms")
|
219
220
|
attr_accessor kms_encrypted: bool
|
220
221
|
attr_accessor kms_key: ::String
|
221
222
|
attr_accessor role: ::String
|
@@ -245,6 +246,7 @@ module Aws::StorageGateway
|
|
245
246
|
class CreateSMBFileShareInput
|
246
247
|
attr_accessor client_token: ::String
|
247
248
|
attr_accessor gateway_arn: ::String
|
249
|
+
attr_accessor encryption_type: ("SseS3" | "SseKms" | "DsseKms")
|
248
250
|
attr_accessor kms_encrypted: bool
|
249
251
|
attr_accessor kms_key: ::String
|
250
252
|
attr_accessor role: ::String
|
@@ -1038,6 +1040,7 @@ module Aws::StorageGateway
|
|
1038
1040
|
attr_accessor file_share_id: ::String
|
1039
1041
|
attr_accessor file_share_status: ::String
|
1040
1042
|
attr_accessor gateway_arn: ::String
|
1043
|
+
attr_accessor encryption_type: ("SseS3" | "SseKms" | "DsseKms")
|
1041
1044
|
attr_accessor kms_encrypted: bool
|
1042
1045
|
attr_accessor kms_key: ::String
|
1043
1046
|
attr_accessor path: ::String
|
@@ -1149,6 +1152,7 @@ module Aws::StorageGateway
|
|
1149
1152
|
attr_accessor file_share_id: ::String
|
1150
1153
|
attr_accessor file_share_status: ::String
|
1151
1154
|
attr_accessor gateway_arn: ::String
|
1155
|
+
attr_accessor encryption_type: ("SseS3" | "SseKms" | "DsseKms")
|
1152
1156
|
attr_accessor kms_encrypted: bool
|
1153
1157
|
attr_accessor kms_key: ::String
|
1154
1158
|
attr_accessor path: ::String
|
@@ -1434,6 +1438,7 @@ module Aws::StorageGateway
|
|
1434
1438
|
|
1435
1439
|
class UpdateNFSFileShareInput
|
1436
1440
|
attr_accessor file_share_arn: ::String
|
1441
|
+
attr_accessor encryption_type: ("SseS3" | "SseKms" | "DsseKms")
|
1437
1442
|
attr_accessor kms_encrypted: bool
|
1438
1443
|
attr_accessor kms_key: ::String
|
1439
1444
|
attr_accessor nfs_file_share_defaults: Types::NFSFileShareDefaults
|
@@ -1458,6 +1463,7 @@ module Aws::StorageGateway
|
|
1458
1463
|
|
1459
1464
|
class UpdateSMBFileShareInput
|
1460
1465
|
attr_accessor file_share_arn: ::String
|
1466
|
+
attr_accessor encryption_type: ("SseS3" | "SseKms" | "DsseKms")
|
1461
1467
|
attr_accessor kms_encrypted: bool
|
1462
1468
|
attr_accessor kms_key: ::String
|
1463
1469
|
attr_accessor default_storage_class: ::String
|
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.95.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: 2024-09-
|
11
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.205.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.205.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|