aws-sdk-storagegateway 1.67.0 → 1.69.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +41 -25
- data/lib/aws-sdk-storagegateway/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-storagegateway/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-storagegateway/endpoints.rb +1275 -0
- data/lib/aws-sdk-storagegateway/plugins/endpoints.rb +248 -0
- data/lib/aws-sdk-storagegateway/types.rb +25 -28
- data/lib/aws-sdk-storagegateway.rb +5 -1
- metadata +8 -4
@@ -0,0 +1,248 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
module Aws::StorageGateway
|
12
|
+
module Plugins
|
13
|
+
class Endpoints < Seahorse::Client::Plugin
|
14
|
+
option(
|
15
|
+
:endpoint_provider,
|
16
|
+
doc_type: 'Aws::StorageGateway::EndpointProvider',
|
17
|
+
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
|
+
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
|
+
'where `parameters` is a Struct similar to '\
|
20
|
+
'`Aws::StorageGateway::EndpointParameters`'
|
21
|
+
) do |cfg|
|
22
|
+
Aws::StorageGateway::EndpointProvider.new
|
23
|
+
end
|
24
|
+
|
25
|
+
# @api private
|
26
|
+
class Handler < Seahorse::Client::Handler
|
27
|
+
def call(context)
|
28
|
+
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
|
+
unless context[:discovered_endpoint]
|
30
|
+
params = parameters_for_operation(context)
|
31
|
+
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
|
+
|
33
|
+
context.http_request.endpoint = endpoint.url
|
34
|
+
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
end
|
36
|
+
|
37
|
+
context[:endpoint_params] = params
|
38
|
+
context[:auth_scheme] =
|
39
|
+
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
|
+
|
41
|
+
@handler.call(context)
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def apply_endpoint_headers(context, headers)
|
47
|
+
headers.each do |key, values|
|
48
|
+
value = values
|
49
|
+
.compact
|
50
|
+
.map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
|
51
|
+
.join(',')
|
52
|
+
|
53
|
+
context.http_request.headers[key] = value
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def parameters_for_operation(context)
|
58
|
+
case context.operation_name
|
59
|
+
when :activate_gateway
|
60
|
+
Aws::StorageGateway::Endpoints::ActivateGateway.build(context)
|
61
|
+
when :add_cache
|
62
|
+
Aws::StorageGateway::Endpoints::AddCache.build(context)
|
63
|
+
when :add_tags_to_resource
|
64
|
+
Aws::StorageGateway::Endpoints::AddTagsToResource.build(context)
|
65
|
+
when :add_upload_buffer
|
66
|
+
Aws::StorageGateway::Endpoints::AddUploadBuffer.build(context)
|
67
|
+
when :add_working_storage
|
68
|
+
Aws::StorageGateway::Endpoints::AddWorkingStorage.build(context)
|
69
|
+
when :assign_tape_pool
|
70
|
+
Aws::StorageGateway::Endpoints::AssignTapePool.build(context)
|
71
|
+
when :associate_file_system
|
72
|
+
Aws::StorageGateway::Endpoints::AssociateFileSystem.build(context)
|
73
|
+
when :attach_volume
|
74
|
+
Aws::StorageGateway::Endpoints::AttachVolume.build(context)
|
75
|
+
when :cancel_archival
|
76
|
+
Aws::StorageGateway::Endpoints::CancelArchival.build(context)
|
77
|
+
when :cancel_retrieval
|
78
|
+
Aws::StorageGateway::Endpoints::CancelRetrieval.build(context)
|
79
|
+
when :create_cached_iscsi_volume
|
80
|
+
Aws::StorageGateway::Endpoints::CreateCachediSCSIVolume.build(context)
|
81
|
+
when :create_nfs_file_share
|
82
|
+
Aws::StorageGateway::Endpoints::CreateNFSFileShare.build(context)
|
83
|
+
when :create_smb_file_share
|
84
|
+
Aws::StorageGateway::Endpoints::CreateSMBFileShare.build(context)
|
85
|
+
when :create_snapshot
|
86
|
+
Aws::StorageGateway::Endpoints::CreateSnapshot.build(context)
|
87
|
+
when :create_snapshot_from_volume_recovery_point
|
88
|
+
Aws::StorageGateway::Endpoints::CreateSnapshotFromVolumeRecoveryPoint.build(context)
|
89
|
+
when :create_stored_iscsi_volume
|
90
|
+
Aws::StorageGateway::Endpoints::CreateStorediSCSIVolume.build(context)
|
91
|
+
when :create_tape_pool
|
92
|
+
Aws::StorageGateway::Endpoints::CreateTapePool.build(context)
|
93
|
+
when :create_tape_with_barcode
|
94
|
+
Aws::StorageGateway::Endpoints::CreateTapeWithBarcode.build(context)
|
95
|
+
when :create_tapes
|
96
|
+
Aws::StorageGateway::Endpoints::CreateTapes.build(context)
|
97
|
+
when :delete_automatic_tape_creation_policy
|
98
|
+
Aws::StorageGateway::Endpoints::DeleteAutomaticTapeCreationPolicy.build(context)
|
99
|
+
when :delete_bandwidth_rate_limit
|
100
|
+
Aws::StorageGateway::Endpoints::DeleteBandwidthRateLimit.build(context)
|
101
|
+
when :delete_chap_credentials
|
102
|
+
Aws::StorageGateway::Endpoints::DeleteChapCredentials.build(context)
|
103
|
+
when :delete_file_share
|
104
|
+
Aws::StorageGateway::Endpoints::DeleteFileShare.build(context)
|
105
|
+
when :delete_gateway
|
106
|
+
Aws::StorageGateway::Endpoints::DeleteGateway.build(context)
|
107
|
+
when :delete_snapshot_schedule
|
108
|
+
Aws::StorageGateway::Endpoints::DeleteSnapshotSchedule.build(context)
|
109
|
+
when :delete_tape
|
110
|
+
Aws::StorageGateway::Endpoints::DeleteTape.build(context)
|
111
|
+
when :delete_tape_archive
|
112
|
+
Aws::StorageGateway::Endpoints::DeleteTapeArchive.build(context)
|
113
|
+
when :delete_tape_pool
|
114
|
+
Aws::StorageGateway::Endpoints::DeleteTapePool.build(context)
|
115
|
+
when :delete_volume
|
116
|
+
Aws::StorageGateway::Endpoints::DeleteVolume.build(context)
|
117
|
+
when :describe_availability_monitor_test
|
118
|
+
Aws::StorageGateway::Endpoints::DescribeAvailabilityMonitorTest.build(context)
|
119
|
+
when :describe_bandwidth_rate_limit
|
120
|
+
Aws::StorageGateway::Endpoints::DescribeBandwidthRateLimit.build(context)
|
121
|
+
when :describe_bandwidth_rate_limit_schedule
|
122
|
+
Aws::StorageGateway::Endpoints::DescribeBandwidthRateLimitSchedule.build(context)
|
123
|
+
when :describe_cache
|
124
|
+
Aws::StorageGateway::Endpoints::DescribeCache.build(context)
|
125
|
+
when :describe_cached_iscsi_volumes
|
126
|
+
Aws::StorageGateway::Endpoints::DescribeCachediSCSIVolumes.build(context)
|
127
|
+
when :describe_chap_credentials
|
128
|
+
Aws::StorageGateway::Endpoints::DescribeChapCredentials.build(context)
|
129
|
+
when :describe_file_system_associations
|
130
|
+
Aws::StorageGateway::Endpoints::DescribeFileSystemAssociations.build(context)
|
131
|
+
when :describe_gateway_information
|
132
|
+
Aws::StorageGateway::Endpoints::DescribeGatewayInformation.build(context)
|
133
|
+
when :describe_maintenance_start_time
|
134
|
+
Aws::StorageGateway::Endpoints::DescribeMaintenanceStartTime.build(context)
|
135
|
+
when :describe_nfs_file_shares
|
136
|
+
Aws::StorageGateway::Endpoints::DescribeNFSFileShares.build(context)
|
137
|
+
when :describe_smb_file_shares
|
138
|
+
Aws::StorageGateway::Endpoints::DescribeSMBFileShares.build(context)
|
139
|
+
when :describe_smb_settings
|
140
|
+
Aws::StorageGateway::Endpoints::DescribeSMBSettings.build(context)
|
141
|
+
when :describe_snapshot_schedule
|
142
|
+
Aws::StorageGateway::Endpoints::DescribeSnapshotSchedule.build(context)
|
143
|
+
when :describe_stored_iscsi_volumes
|
144
|
+
Aws::StorageGateway::Endpoints::DescribeStorediSCSIVolumes.build(context)
|
145
|
+
when :describe_tape_archives
|
146
|
+
Aws::StorageGateway::Endpoints::DescribeTapeArchives.build(context)
|
147
|
+
when :describe_tape_recovery_points
|
148
|
+
Aws::StorageGateway::Endpoints::DescribeTapeRecoveryPoints.build(context)
|
149
|
+
when :describe_tapes
|
150
|
+
Aws::StorageGateway::Endpoints::DescribeTapes.build(context)
|
151
|
+
when :describe_upload_buffer
|
152
|
+
Aws::StorageGateway::Endpoints::DescribeUploadBuffer.build(context)
|
153
|
+
when :describe_vtl_devices
|
154
|
+
Aws::StorageGateway::Endpoints::DescribeVTLDevices.build(context)
|
155
|
+
when :describe_working_storage
|
156
|
+
Aws::StorageGateway::Endpoints::DescribeWorkingStorage.build(context)
|
157
|
+
when :detach_volume
|
158
|
+
Aws::StorageGateway::Endpoints::DetachVolume.build(context)
|
159
|
+
when :disable_gateway
|
160
|
+
Aws::StorageGateway::Endpoints::DisableGateway.build(context)
|
161
|
+
when :disassociate_file_system
|
162
|
+
Aws::StorageGateway::Endpoints::DisassociateFileSystem.build(context)
|
163
|
+
when :join_domain
|
164
|
+
Aws::StorageGateway::Endpoints::JoinDomain.build(context)
|
165
|
+
when :list_automatic_tape_creation_policies
|
166
|
+
Aws::StorageGateway::Endpoints::ListAutomaticTapeCreationPolicies.build(context)
|
167
|
+
when :list_file_shares
|
168
|
+
Aws::StorageGateway::Endpoints::ListFileShares.build(context)
|
169
|
+
when :list_file_system_associations
|
170
|
+
Aws::StorageGateway::Endpoints::ListFileSystemAssociations.build(context)
|
171
|
+
when :list_gateways
|
172
|
+
Aws::StorageGateway::Endpoints::ListGateways.build(context)
|
173
|
+
when :list_local_disks
|
174
|
+
Aws::StorageGateway::Endpoints::ListLocalDisks.build(context)
|
175
|
+
when :list_tags_for_resource
|
176
|
+
Aws::StorageGateway::Endpoints::ListTagsForResource.build(context)
|
177
|
+
when :list_tape_pools
|
178
|
+
Aws::StorageGateway::Endpoints::ListTapePools.build(context)
|
179
|
+
when :list_tapes
|
180
|
+
Aws::StorageGateway::Endpoints::ListTapes.build(context)
|
181
|
+
when :list_volume_initiators
|
182
|
+
Aws::StorageGateway::Endpoints::ListVolumeInitiators.build(context)
|
183
|
+
when :list_volume_recovery_points
|
184
|
+
Aws::StorageGateway::Endpoints::ListVolumeRecoveryPoints.build(context)
|
185
|
+
when :list_volumes
|
186
|
+
Aws::StorageGateway::Endpoints::ListVolumes.build(context)
|
187
|
+
when :notify_when_uploaded
|
188
|
+
Aws::StorageGateway::Endpoints::NotifyWhenUploaded.build(context)
|
189
|
+
when :refresh_cache
|
190
|
+
Aws::StorageGateway::Endpoints::RefreshCache.build(context)
|
191
|
+
when :remove_tags_from_resource
|
192
|
+
Aws::StorageGateway::Endpoints::RemoveTagsFromResource.build(context)
|
193
|
+
when :reset_cache
|
194
|
+
Aws::StorageGateway::Endpoints::ResetCache.build(context)
|
195
|
+
when :retrieve_tape_archive
|
196
|
+
Aws::StorageGateway::Endpoints::RetrieveTapeArchive.build(context)
|
197
|
+
when :retrieve_tape_recovery_point
|
198
|
+
Aws::StorageGateway::Endpoints::RetrieveTapeRecoveryPoint.build(context)
|
199
|
+
when :set_local_console_password
|
200
|
+
Aws::StorageGateway::Endpoints::SetLocalConsolePassword.build(context)
|
201
|
+
when :set_smb_guest_password
|
202
|
+
Aws::StorageGateway::Endpoints::SetSMBGuestPassword.build(context)
|
203
|
+
when :shutdown_gateway
|
204
|
+
Aws::StorageGateway::Endpoints::ShutdownGateway.build(context)
|
205
|
+
when :start_availability_monitor_test
|
206
|
+
Aws::StorageGateway::Endpoints::StartAvailabilityMonitorTest.build(context)
|
207
|
+
when :start_gateway
|
208
|
+
Aws::StorageGateway::Endpoints::StartGateway.build(context)
|
209
|
+
when :update_automatic_tape_creation_policy
|
210
|
+
Aws::StorageGateway::Endpoints::UpdateAutomaticTapeCreationPolicy.build(context)
|
211
|
+
when :update_bandwidth_rate_limit
|
212
|
+
Aws::StorageGateway::Endpoints::UpdateBandwidthRateLimit.build(context)
|
213
|
+
when :update_bandwidth_rate_limit_schedule
|
214
|
+
Aws::StorageGateway::Endpoints::UpdateBandwidthRateLimitSchedule.build(context)
|
215
|
+
when :update_chap_credentials
|
216
|
+
Aws::StorageGateway::Endpoints::UpdateChapCredentials.build(context)
|
217
|
+
when :update_file_system_association
|
218
|
+
Aws::StorageGateway::Endpoints::UpdateFileSystemAssociation.build(context)
|
219
|
+
when :update_gateway_information
|
220
|
+
Aws::StorageGateway::Endpoints::UpdateGatewayInformation.build(context)
|
221
|
+
when :update_gateway_software_now
|
222
|
+
Aws::StorageGateway::Endpoints::UpdateGatewaySoftwareNow.build(context)
|
223
|
+
when :update_maintenance_start_time
|
224
|
+
Aws::StorageGateway::Endpoints::UpdateMaintenanceStartTime.build(context)
|
225
|
+
when :update_nfs_file_share
|
226
|
+
Aws::StorageGateway::Endpoints::UpdateNFSFileShare.build(context)
|
227
|
+
when :update_smb_file_share
|
228
|
+
Aws::StorageGateway::Endpoints::UpdateSMBFileShare.build(context)
|
229
|
+
when :update_smb_file_share_visibility
|
230
|
+
Aws::StorageGateway::Endpoints::UpdateSMBFileShareVisibility.build(context)
|
231
|
+
when :update_smb_local_groups
|
232
|
+
Aws::StorageGateway::Endpoints::UpdateSMBLocalGroups.build(context)
|
233
|
+
when :update_smb_security_strategy
|
234
|
+
Aws::StorageGateway::Endpoints::UpdateSMBSecurityStrategy.build(context)
|
235
|
+
when :update_snapshot_schedule
|
236
|
+
Aws::StorageGateway::Endpoints::UpdateSnapshotSchedule.build(context)
|
237
|
+
when :update_vtl_device_type
|
238
|
+
Aws::StorageGateway::Endpoints::UpdateVTLDeviceType.build(context)
|
239
|
+
end
|
240
|
+
end
|
241
|
+
end
|
242
|
+
|
243
|
+
def add_handlers(handlers, _config)
|
244
|
+
handlers.add(Handler, step: :build, priority: 75)
|
245
|
+
end
|
246
|
+
end
|
247
|
+
end
|
248
|
+
end
|
@@ -385,8 +385,6 @@ module Aws::StorageGateway
|
|
385
385
|
# eject the tape, the tape is archived directly into the storage class
|
386
386
|
# (S3 Glacier or S3 Glacier Deep Archive) that corresponds to the
|
387
387
|
# pool.
|
388
|
-
#
|
389
|
-
# Valid Values: `GLACIER` \| `DEEP_ARCHIVE`
|
390
388
|
# @return [String]
|
391
389
|
#
|
392
390
|
# @!attribute [rw] bypass_governance_retention
|
@@ -671,8 +669,6 @@ module Aws::StorageGateway
|
|
671
669
|
# application to eject the tape, the tape is archived directly into
|
672
670
|
# the storage class (S3 Glacier or S3 Glacier Deep Archive) that
|
673
671
|
# corresponds to the pool.
|
674
|
-
#
|
675
|
-
# Valid Values: `GLACIER` \| `DEEP_ARCHIVE`
|
676
672
|
# @return [String]
|
677
673
|
#
|
678
674
|
# @!attribute [rw] tape_size_in_bytes
|
@@ -878,6 +874,13 @@ module Aws::StorageGateway
|
|
878
874
|
# <note markdown="1"> This value is not available for volumes created prior to May 13,
|
879
875
|
# 2015, until you store data on the volume.
|
880
876
|
#
|
877
|
+
# If you use a delete tool that overwrites the data on your volume
|
878
|
+
# with random data, your usage will not be reduced. This is because
|
879
|
+
# the random data is not compressible. If you want to reduce the
|
880
|
+
# amount of billed storage on your volume, we recommend overwriting
|
881
|
+
# your files with zeros to compress the data to a negligible amount of
|
882
|
+
# actual storage.
|
883
|
+
#
|
881
884
|
# </note>
|
882
885
|
# @return [Integer]
|
883
886
|
#
|
@@ -1293,8 +1296,8 @@ module Aws::StorageGateway
|
|
1293
1296
|
#
|
1294
1297
|
# @!attribute [rw] default_storage_class
|
1295
1298
|
# The default storage class for objects put into an Amazon S3 bucket
|
1296
|
-
# by the S3 File Gateway. The default value is
|
1297
|
-
#
|
1299
|
+
# by the S3 File Gateway. The default value is `S3_STANDARD`.
|
1300
|
+
# Optional.
|
1298
1301
|
#
|
1299
1302
|
# Valid Values: `S3_STANDARD` \| `S3_INTELLIGENT_TIERING` \|
|
1300
1303
|
# `S3_STANDARD_IA` \| `S3_ONEZONE_IA`
|
@@ -1578,8 +1581,8 @@ module Aws::StorageGateway
|
|
1578
1581
|
#
|
1579
1582
|
# @!attribute [rw] default_storage_class
|
1580
1583
|
# The default storage class for objects put into an Amazon S3 bucket
|
1581
|
-
# by the S3 File Gateway. The default value is
|
1582
|
-
#
|
1584
|
+
# by the S3 File Gateway. The default value is `S3_STANDARD`.
|
1585
|
+
# Optional.
|
1583
1586
|
#
|
1584
1587
|
# Valid Values: `S3_STANDARD` \| `S3_INTELLIGENT_TIERING` \|
|
1585
1588
|
# `S3_STANDARD_IA` \| `S3_ONEZONE_IA`
|
@@ -2269,8 +2272,6 @@ module Aws::StorageGateway
|
|
2269
2272
|
# associated with the pool. When you use your backup application to
|
2270
2273
|
# eject the tape, the tape is archived directly into the storage class
|
2271
2274
|
# (S3 Glacier or S3 Deep Archive) that corresponds to the pool.
|
2272
|
-
#
|
2273
|
-
# Valid Values: `GLACIER` \| `DEEP_ARCHIVE`
|
2274
2275
|
# @return [String]
|
2275
2276
|
#
|
2276
2277
|
# @!attribute [rw] worm
|
@@ -2404,8 +2405,6 @@ module Aws::StorageGateway
|
|
2404
2405
|
# eject the tape, the tape is archived directly into the storage class
|
2405
2406
|
# (S3 Glacier or S3 Glacier Deep Archive) that corresponds to the
|
2406
2407
|
# pool.
|
2407
|
-
#
|
2408
|
-
# Valid Values: `GLACIER` \| `DEEP_ARCHIVE`
|
2409
2408
|
# @return [String]
|
2410
2409
|
#
|
2411
2410
|
# @!attribute [rw] worm
|
@@ -3293,7 +3292,9 @@ module Aws::StorageGateway
|
|
3293
3292
|
# @!attribute [rw] last_software_update
|
3294
3293
|
# The date on which the last software update was applied to the
|
3295
3294
|
# gateway. If the gateway has never been updated, this field does not
|
3296
|
-
# return a value in the response.
|
3295
|
+
# return a value in the response. This only only exist and returns
|
3296
|
+
# once it have been chosen and set by the SGW service, based on the OS
|
3297
|
+
# version of the gateway VM
|
3297
3298
|
# @return [String]
|
3298
3299
|
#
|
3299
3300
|
# @!attribute [rw] ec2_instance_id
|
@@ -3320,7 +3321,9 @@ module Aws::StorageGateway
|
|
3320
3321
|
#
|
3321
3322
|
# @!attribute [rw] cloud_watch_log_group_arn
|
3322
3323
|
# The Amazon Resource Name (ARN) of the Amazon CloudWatch log group
|
3323
|
-
# that is used to monitor events in the gateway.
|
3324
|
+
# that is used to monitor events in the gateway. This field only only
|
3325
|
+
# exist and returns once it have been chosen and set by the SGW
|
3326
|
+
# service, based on the OS version of the gateway VM
|
3324
3327
|
# @return [String]
|
3325
3328
|
#
|
3326
3329
|
# @!attribute [rw] host_environment
|
@@ -5578,8 +5581,8 @@ module Aws::StorageGateway
|
|
5578
5581
|
#
|
5579
5582
|
# @!attribute [rw] default_storage_class
|
5580
5583
|
# The default storage class for objects put into an Amazon S3 bucket
|
5581
|
-
# by the S3 File Gateway. The default value is
|
5582
|
-
#
|
5584
|
+
# by the S3 File Gateway. The default value is `S3_STANDARD`.
|
5585
|
+
# Optional.
|
5583
5586
|
#
|
5584
5587
|
# Valid Values: `S3_STANDARD` \| `S3_INTELLIGENT_TIERING` \|
|
5585
5588
|
# `S3_STANDARD_IA` \| `S3_ONEZONE_IA`
|
@@ -6178,8 +6181,8 @@ module Aws::StorageGateway
|
|
6178
6181
|
#
|
6179
6182
|
# @!attribute [rw] default_storage_class
|
6180
6183
|
# The default storage class for objects put into an Amazon S3 bucket
|
6181
|
-
# by the S3 File Gateway. The default value is
|
6182
|
-
#
|
6184
|
+
# by the S3 File Gateway. The default value is `S3_STANDARD`.
|
6185
|
+
# Optional.
|
6183
6186
|
#
|
6184
6187
|
# Valid Values: `S3_STANDARD` \| `S3_INTELLIGENT_TIERING` \|
|
6185
6188
|
# `S3_STANDARD_IA` \| `S3_ONEZONE_IA`
|
@@ -6881,8 +6884,6 @@ module Aws::StorageGateway
|
|
6881
6884
|
# eject the tape, the tape is archived directly into the storage class
|
6882
6885
|
# (S3 Glacier or S3 Glacier Deep Archive) that corresponds to the
|
6883
6886
|
# pool.
|
6884
|
-
#
|
6885
|
-
# Valid Values: `GLACIER` \| `DEEP_ARCHIVE`
|
6886
6887
|
# @return [String]
|
6887
6888
|
#
|
6888
6889
|
# @!attribute [rw] worm
|
@@ -6975,8 +6976,6 @@ module Aws::StorageGateway
|
|
6975
6976
|
# The ID of the pool that was used to archive the tape. The tapes in
|
6976
6977
|
# this pool are archived in the S3 storage class that is associated
|
6977
6978
|
# with the pool.
|
6978
|
-
#
|
6979
|
-
# Valid Values: `GLACIER` \| `DEEP_ARCHIVE`
|
6980
6979
|
# @return [String]
|
6981
6980
|
#
|
6982
6981
|
# @!attribute [rw] worm
|
@@ -7047,8 +7046,6 @@ module Aws::StorageGateway
|
|
7047
7046
|
# eject the tape, the tape is archived directly into the storage class
|
7048
7047
|
# (S3 Glacier or S3 Glacier Deep Archive) that corresponds to the
|
7049
7048
|
# pool.
|
7050
|
-
#
|
7051
|
-
# Valid Values: `GLACIER` \| `DEEP_ARCHIVE`
|
7052
7049
|
# @return [String]
|
7053
7050
|
#
|
7054
7051
|
# @!attribute [rw] retention_start_date
|
@@ -7664,8 +7661,8 @@ module Aws::StorageGateway
|
|
7664
7661
|
#
|
7665
7662
|
# @!attribute [rw] default_storage_class
|
7666
7663
|
# The default storage class for objects put into an Amazon S3 bucket
|
7667
|
-
# by the S3 File Gateway. The default value is
|
7668
|
-
#
|
7664
|
+
# by the S3 File Gateway. The default value is `S3_STANDARD`.
|
7665
|
+
# Optional.
|
7669
7666
|
#
|
7670
7667
|
# Valid Values: `S3_STANDARD` \| `S3_INTELLIGENT_TIERING` \|
|
7671
7668
|
# `S3_STANDARD_IA` \| `S3_ONEZONE_IA`
|
@@ -7855,8 +7852,8 @@ module Aws::StorageGateway
|
|
7855
7852
|
#
|
7856
7853
|
# @!attribute [rw] default_storage_class
|
7857
7854
|
# The default storage class for objects put into an Amazon S3 bucket
|
7858
|
-
# by the S3 File Gateway. The default value is
|
7859
|
-
#
|
7855
|
+
# by the S3 File Gateway. The default value is `S3_STANDARD`.
|
7856
|
+
# Optional.
|
7860
7857
|
#
|
7861
7858
|
# Valid Values: `S3_STANDARD` \| `S3_INTELLIGENT_TIERING` \|
|
7862
7859
|
# `S3_STANDARD_IA` \| `S3_ONEZONE_IA`
|
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-storagegateway/types'
|
15
15
|
require_relative 'aws-sdk-storagegateway/client_api'
|
16
|
+
require_relative 'aws-sdk-storagegateway/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-storagegateway/client'
|
17
18
|
require_relative 'aws-sdk-storagegateway/errors'
|
18
19
|
require_relative 'aws-sdk-storagegateway/resource'
|
20
|
+
require_relative 'aws-sdk-storagegateway/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-storagegateway/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-storagegateway/endpoints'
|
19
23
|
require_relative 'aws-sdk-storagegateway/customizations'
|
20
24
|
|
21
25
|
# This module provides support for AWS Storage Gateway. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-storagegateway/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::StorageGateway
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.69.0'
|
52
56
|
|
53
57
|
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.69.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: 2022-
|
11
|
+
date: 2022-10-25 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.165.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.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-storagegateway/client.rb
|
60
60
|
- lib/aws-sdk-storagegateway/client_api.rb
|
61
61
|
- lib/aws-sdk-storagegateway/customizations.rb
|
62
|
+
- lib/aws-sdk-storagegateway/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-storagegateway/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-storagegateway/endpoints.rb
|
62
65
|
- lib/aws-sdk-storagegateway/errors.rb
|
66
|
+
- lib/aws-sdk-storagegateway/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-storagegateway/resource.rb
|
64
68
|
- lib/aws-sdk-storagegateway/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|