aws-sdk-storagegateway 1.99.0 → 1.100.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +26 -3
- data/lib/aws-sdk-storagegateway/types.rb +54 -5
- data/lib/aws-sdk-storagegateway.rb +1 -1
- 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: 48d495bf22d45081d22c6dc5fbe791311e9afa6d156c861256bba16f90cee305
|
4
|
+
data.tar.gz: dc82ca87b7b1eb06849430a093539eae3f74ef046f150f2598107b3789652de8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3273f5c44885a70dcbfcbd412e4364f350655318b3ad5464b4667fa4c4eade20b3ebbd7d1b631bc8a1d3ac4dce3ee85b44cc3eed47901f0d42af95245913c343
|
7
|
+
data.tar.gz: c6a00ae6bb916ce22c1d8e4fc1ab5c375f90e84e3d28ddb43338a89c0feff35666f0ba76ea7ddd4b725aedf0e12a669f4bce7399bc916a73d67606ec1bd04d8b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.100.0
|
@@ -516,9 +516,18 @@ module Aws::StorageGateway
|
|
516
516
|
# specified is critical to all later functions of the gateway and cannot
|
517
517
|
# be changed after activation. The default value is `CACHED`.
|
518
518
|
#
|
519
|
+
# Amazon FSx File Gateway is no longer available to new customers.
|
520
|
+
# Existing customers of FSx File Gateway can continue to use the service
|
521
|
+
# normally. For capabilities similar to FSx File Gateway, visit [this
|
522
|
+
# blog post][1].
|
523
|
+
#
|
519
524
|
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `FILE_S3` \|
|
520
525
|
# `FILE_FSX_SMB`
|
521
526
|
#
|
527
|
+
#
|
528
|
+
#
|
529
|
+
# [1]: https://aws.amazon.com/blogs/storage/switch-your-file-share-access-from-amazon-fsx-file-gateway-to-amazon-fsx-for-windows-file-server/
|
530
|
+
#
|
522
531
|
# @option params [String] :tape_drive_type
|
523
532
|
# The value that indicates the type of tape drive to use for tape
|
524
533
|
# gateway. This field is optional.
|
@@ -1428,7 +1437,7 @@ module Aws::StorageGateway
|
|
1428
1437
|
#
|
1429
1438
|
# Bucket ARN:
|
1430
1439
|
#
|
1431
|
-
# `arn:aws:s3:::
|
1440
|
+
# `arn:aws:s3:::amzn-s3-demo-bucket/prefix/`
|
1432
1441
|
#
|
1433
1442
|
# Access point ARN:
|
1434
1443
|
#
|
@@ -1521,6 +1530,9 @@ module Aws::StorageGateway
|
|
1521
1530
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1522
1531
|
# `LocationARN`, or if an access point or access point alias is used.
|
1523
1532
|
#
|
1533
|
+
# A valid NFS file share name can only contain the following characters:
|
1534
|
+
# `a`-`z`, `A`-`Z`, `0`-`9`, `-`, `.`, and `_`.
|
1535
|
+
#
|
1524
1536
|
# </note>
|
1525
1537
|
#
|
1526
1538
|
# @option params [Types::CacheAttributes] :cache_attributes
|
@@ -1721,7 +1733,7 @@ module Aws::StorageGateway
|
|
1721
1733
|
#
|
1722
1734
|
# Bucket ARN:
|
1723
1735
|
#
|
1724
|
-
# `arn:aws:s3:::
|
1736
|
+
# `arn:aws:s3:::amzn-s3-demo-bucket/prefix/`
|
1725
1737
|
#
|
1726
1738
|
# Access point ARN:
|
1727
1739
|
#
|
@@ -1855,6 +1867,10 @@ module Aws::StorageGateway
|
|
1855
1867
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1856
1868
|
# `LocationARN`, or if an access point or access point alias is used.
|
1857
1869
|
#
|
1870
|
+
# A valid SMB file share name cannot contain the following characters:
|
1871
|
+
# `[`,`]`,`#`,`;`,`<`,`>`,`:`,`"`,``,`/`,`|`,`?`,`*`,`+`, or ASCII
|
1872
|
+
# control characters `1-31`.
|
1873
|
+
#
|
1858
1874
|
# </note>
|
1859
1875
|
#
|
1860
1876
|
# @option params [Types::CacheAttributes] :cache_attributes
|
@@ -6916,6 +6932,9 @@ module Aws::StorageGateway
|
|
6916
6932
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
6917
6933
|
# `LocationARN`, or if an access point or access point alias is used.
|
6918
6934
|
#
|
6935
|
+
# A valid NFS file share name can only contain the following characters:
|
6936
|
+
# `a`-`z`, `A`-`Z`, `0`-`9`, `-`, `.`, and `_`.
|
6937
|
+
#
|
6919
6938
|
# </note>
|
6920
6939
|
#
|
6921
6940
|
# @option params [Types::CacheAttributes] :cache_attributes
|
@@ -7163,6 +7182,10 @@ module Aws::StorageGateway
|
|
7163
7182
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
7164
7183
|
# `LocationARN`, or if an access point or access point alias is used.
|
7165
7184
|
#
|
7185
|
+
# A valid SMB file share name cannot contain the following characters:
|
7186
|
+
# `[`,`]`,`#`,`;`,`<`,`>`,`:`,`"`,``,`/`,`|`,`?`,`*`,`+`, or ASCII
|
7187
|
+
# control characters `1-31`.
|
7188
|
+
#
|
7166
7189
|
# </note>
|
7167
7190
|
#
|
7168
7191
|
# @option params [Types::CacheAttributes] :cache_attributes
|
@@ -7557,7 +7580,7 @@ module Aws::StorageGateway
|
|
7557
7580
|
tracer: tracer
|
7558
7581
|
)
|
7559
7582
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7560
|
-
context[:gem_version] = '1.
|
7583
|
+
context[:gem_version] = '1.100.0'
|
7561
7584
|
Seahorse::Client::Request.new(handlers, context)
|
7562
7585
|
end
|
7563
7586
|
|
@@ -80,8 +80,17 @@ module Aws::StorageGateway
|
|
80
80
|
# specified is critical to all later functions of the gateway and
|
81
81
|
# cannot be changed after activation. The default value is `CACHED`.
|
82
82
|
#
|
83
|
+
# Amazon FSx File Gateway is no longer available to new customers.
|
84
|
+
# Existing customers of FSx File Gateway can continue to use the
|
85
|
+
# service normally. For capabilities similar to FSx File Gateway,
|
86
|
+
# visit [this blog post][1].
|
87
|
+
#
|
83
88
|
# Valid Values: `STORED` \| `CACHED` \| `VTL` \| `FILE_S3` \|
|
84
89
|
# `FILE_FSX_SMB`
|
90
|
+
#
|
91
|
+
#
|
92
|
+
#
|
93
|
+
# [1]: https://aws.amazon.com/blogs/storage/switch-your-file-share-access-from-amazon-fsx-file-gateway-to-amazon-fsx-for-windows-file-server/
|
85
94
|
# @return [String]
|
86
95
|
#
|
87
96
|
# @!attribute [rw] tape_drive_type
|
@@ -602,6 +611,10 @@ module Aws::StorageGateway
|
|
602
611
|
# one or more days of the week, during which bandwidth rate limits are
|
603
612
|
# specified for uploading, downloading, or both.
|
604
613
|
#
|
614
|
+
# <note markdown="1"> FSx File Gateway does not support this feature.
|
615
|
+
#
|
616
|
+
# </note>
|
617
|
+
#
|
605
618
|
# @!attribute [rw] start_hour_of_day
|
606
619
|
# The hour of the day to start the bandwidth rate limit interval.
|
607
620
|
# @return [Integer]
|
@@ -636,7 +649,7 @@ module Aws::StorageGateway
|
|
636
649
|
#
|
637
650
|
# <note markdown="1"> For Tape Gateway and Volume Gateway, the minimum value is `51200`.
|
638
651
|
#
|
639
|
-
#
|
652
|
+
# This field is required for S3 File Gateway, and the minimum value is
|
640
653
|
# `104857600`.
|
641
654
|
#
|
642
655
|
# </note>
|
@@ -646,6 +659,10 @@ module Aws::StorageGateway
|
|
646
659
|
# The average download rate limit component of the bandwidth rate
|
647
660
|
# limit interval, in bits per second. This field does not appear in
|
648
661
|
# the response if the download rate limit is not set.
|
662
|
+
#
|
663
|
+
# <note markdown="1"> S3 File Gateway does not support this feature.
|
664
|
+
#
|
665
|
+
# </note>
|
649
666
|
# @return [Integer]
|
650
667
|
#
|
651
668
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/BandwidthRateLimitInterval AWS API Documentation
|
@@ -1106,7 +1123,7 @@ module Aws::StorageGateway
|
|
1106
1123
|
#
|
1107
1124
|
# Bucket ARN:
|
1108
1125
|
#
|
1109
|
-
# `arn:aws:s3:::
|
1126
|
+
# `arn:aws:s3:::amzn-s3-demo-bucket/prefix/`
|
1110
1127
|
#
|
1111
1128
|
# Access point ARN:
|
1112
1129
|
#
|
@@ -1212,6 +1229,9 @@ module Aws::StorageGateway
|
|
1212
1229
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1213
1230
|
# `LocationARN`, or if an access point or access point alias is used.
|
1214
1231
|
#
|
1232
|
+
# A valid NFS file share name can only contain the following
|
1233
|
+
# characters: `a`-`z`, `A`-`Z`, `0`-`9`, `-`, `.`, and `_`.
|
1234
|
+
#
|
1215
1235
|
# </note>
|
1216
1236
|
# @return [String]
|
1217
1237
|
#
|
@@ -1390,7 +1410,7 @@ module Aws::StorageGateway
|
|
1390
1410
|
#
|
1391
1411
|
# Bucket ARN:
|
1392
1412
|
#
|
1393
|
-
# `arn:aws:s3:::
|
1413
|
+
# `arn:aws:s3:::amzn-s3-demo-bucket/prefix/`
|
1394
1414
|
#
|
1395
1415
|
# Access point ARN:
|
1396
1416
|
#
|
@@ -1543,6 +1563,10 @@ module Aws::StorageGateway
|
|
1543
1563
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
1544
1564
|
# `LocationARN`, or if an access point or access point alias is used.
|
1545
1565
|
#
|
1566
|
+
# A valid SMB file share name cannot contain the following characters:
|
1567
|
+
# `[`,`]`,`#`,`;`,`<`,`>`,`:`,`"`,``,`/`,`|`,`?`,`*`,`+`, or ASCII
|
1568
|
+
# control characters `1-31`.
|
1569
|
+
#
|
1546
1570
|
# </note>
|
1547
1571
|
# @return [String]
|
1548
1572
|
#
|
@@ -2884,6 +2908,15 @@ module Aws::StorageGateway
|
|
2884
2908
|
#
|
2885
2909
|
# @!attribute [rw] gateway_type
|
2886
2910
|
# The type of the gateway.
|
2911
|
+
#
|
2912
|
+
# Amazon FSx File Gateway is no longer available to new customers.
|
2913
|
+
# Existing customers of FSx File Gateway can continue to use the
|
2914
|
+
# service normally. For capabilities similar to FSx File Gateway,
|
2915
|
+
# visit [this blog post][1].
|
2916
|
+
#
|
2917
|
+
#
|
2918
|
+
#
|
2919
|
+
# [1]: https://aws.amazon.com/blogs/storage/switch-your-file-share-access-from-amazon-fsx-file-gateway-to-amazon-fsx-for-windows-file-server/
|
2887
2920
|
# @return [String]
|
2888
2921
|
#
|
2889
2922
|
# @!attribute [rw] next_update_availability_date
|
@@ -4147,6 +4180,15 @@ module Aws::StorageGateway
|
|
4147
4180
|
#
|
4148
4181
|
# @!attribute [rw] gateway_type
|
4149
4182
|
# The type of the gateway.
|
4183
|
+
#
|
4184
|
+
# Amazon FSx File Gateway is no longer available to new customers.
|
4185
|
+
# Existing customers of FSx File Gateway can continue to use the
|
4186
|
+
# service normally. For capabilities similar to FSx File Gateway,
|
4187
|
+
# visit [this blog post][1].
|
4188
|
+
#
|
4189
|
+
#
|
4190
|
+
#
|
4191
|
+
# [1]: https://aws.amazon.com/blogs/storage/switch-your-file-share-access-from-amazon-fsx-file-gateway-to-amazon-fsx-for-windows-file-server/
|
4150
4192
|
# @return [String]
|
4151
4193
|
#
|
4152
4194
|
# @!attribute [rw] gateway_operational_state
|
@@ -5005,7 +5047,7 @@ module Aws::StorageGateway
|
|
5005
5047
|
#
|
5006
5048
|
# Bucket ARN:
|
5007
5049
|
#
|
5008
|
-
# `arn:aws:s3:::
|
5050
|
+
# `arn:aws:s3:::amzn-s3-demo-bucket/prefix/`
|
5009
5051
|
#
|
5010
5052
|
# Access point ARN:
|
5011
5053
|
#
|
@@ -5599,7 +5641,7 @@ module Aws::StorageGateway
|
|
5599
5641
|
#
|
5600
5642
|
# Bucket ARN:
|
5601
5643
|
#
|
5602
|
-
# `arn:aws:s3:::
|
5644
|
+
# `arn:aws:s3:::amzn-s3-demo-bucket/prefix/`
|
5603
5645
|
#
|
5604
5646
|
# Access point ARN:
|
5605
5647
|
#
|
@@ -7089,6 +7131,9 @@ module Aws::StorageGateway
|
|
7089
7131
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
7090
7132
|
# `LocationARN`, or if an access point or access point alias is used.
|
7091
7133
|
#
|
7134
|
+
# A valid NFS file share name can only contain the following
|
7135
|
+
# characters: `a`-`z`, `A`-`Z`, `0`-`9`, `-`, `.`, and `_`.
|
7136
|
+
#
|
7092
7137
|
# </note>
|
7093
7138
|
# @return [String]
|
7094
7139
|
#
|
@@ -7328,6 +7373,10 @@ module Aws::StorageGateway
|
|
7328
7373
|
# <note markdown="1"> `FileShareName` must be set if an S3 prefix name is set in
|
7329
7374
|
# `LocationARN`, or if an access point or access point alias is used.
|
7330
7375
|
#
|
7376
|
+
# A valid SMB file share name cannot contain the following characters:
|
7377
|
+
# `[`,`]`,`#`,`;`,`<`,`>`,`:`,`"`,``,`/`,`|`,`?`,`*`,`+`, or ASCII
|
7378
|
+
# control characters `1-31`.
|
7379
|
+
#
|
7331
7380
|
# </note>
|
7332
7381
|
# @return [String]
|
7333
7382
|
#
|
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.100.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-10-
|
11
|
+
date: 2024-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|