aws-sdk-storagegateway 1.103.0 → 1.105.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 +341 -38
- data/lib/aws-sdk-storagegateway/client_api.rb +134 -0
- data/lib/aws-sdk-storagegateway/types.rb +329 -0
- data/lib/aws-sdk-storagegateway.rb +1 -1
- data/sig/client.rbs +74 -0
- data/sig/types.rbs +81 -0
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -214,6 +214,16 @@ module Aws
|
|
214
214
|
) -> _CancelArchivalResponseSuccess
|
215
215
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelArchivalResponseSuccess
|
216
216
|
|
217
|
+
interface _CancelCacheReportResponseSuccess
|
218
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelCacheReportOutput]
|
219
|
+
def cache_report_arn: () -> ::String
|
220
|
+
end
|
221
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#cancel_cache_report-instance_method
|
222
|
+
def cancel_cache_report: (
|
223
|
+
cache_report_arn: ::String
|
224
|
+
) -> _CancelCacheReportResponseSuccess
|
225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelCacheReportResponseSuccess
|
226
|
+
|
217
227
|
interface _CancelRetrievalResponseSuccess
|
218
228
|
include ::Seahorse::Client::_ResponseSuccess[Types::CancelRetrievalOutput]
|
219
229
|
def tape_arn: () -> ::String
|
@@ -484,6 +494,16 @@ module Aws
|
|
484
494
|
) -> _DeleteBandwidthRateLimitResponseSuccess
|
485
495
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBandwidthRateLimitResponseSuccess
|
486
496
|
|
497
|
+
interface _DeleteCacheReportResponseSuccess
|
498
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCacheReportOutput]
|
499
|
+
def cache_report_arn: () -> ::String
|
500
|
+
end
|
501
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_cache_report-instance_method
|
502
|
+
def delete_cache_report: (
|
503
|
+
cache_report_arn: ::String
|
504
|
+
) -> _DeleteCacheReportResponseSuccess
|
505
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCacheReportResponseSuccess
|
506
|
+
|
487
507
|
interface _DeleteChapCredentialsResponseSuccess
|
488
508
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChapCredentialsOutput]
|
489
509
|
def target_arn: () -> ::String
|
@@ -621,6 +641,16 @@ module Aws
|
|
621
641
|
) -> _DescribeCacheResponseSuccess
|
622
642
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCacheResponseSuccess
|
623
643
|
|
644
|
+
interface _DescribeCacheReportResponseSuccess
|
645
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCacheReportOutput]
|
646
|
+
def cache_report_info: () -> Types::CacheReportInfo
|
647
|
+
end
|
648
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_cache_report-instance_method
|
649
|
+
def describe_cache_report: (
|
650
|
+
cache_report_arn: ::String
|
651
|
+
) -> _DescribeCacheReportResponseSuccess
|
652
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCacheReportResponseSuccess
|
653
|
+
|
624
654
|
interface _DescribeCachediSCSIVolumesResponseSuccess
|
625
655
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCachediSCSIVolumesOutput]
|
626
656
|
def cached_iscsi_volumes: () -> ::Array[Types::CachediSCSIVolume]
|
@@ -900,6 +930,17 @@ module Aws
|
|
900
930
|
) -> _ListAutomaticTapeCreationPoliciesResponseSuccess
|
901
931
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAutomaticTapeCreationPoliciesResponseSuccess
|
902
932
|
|
933
|
+
interface _ListCacheReportsResponseSuccess
|
934
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCacheReportsOutput]
|
935
|
+
def cache_report_list: () -> ::Array[Types::CacheReportInfo]
|
936
|
+
def marker: () -> ::String
|
937
|
+
end
|
938
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_cache_reports-instance_method
|
939
|
+
def list_cache_reports: (
|
940
|
+
?marker: ::String
|
941
|
+
) -> _ListCacheReportsResponseSuccess
|
942
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCacheReportsResponseSuccess
|
943
|
+
|
903
944
|
interface _ListFileSharesResponseSuccess
|
904
945
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListFileSharesOutput]
|
905
946
|
def marker: () -> ::String
|
@@ -1135,6 +1176,39 @@ module Aws
|
|
1135
1176
|
) -> _StartAvailabilityMonitorTestResponseSuccess
|
1136
1177
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAvailabilityMonitorTestResponseSuccess
|
1137
1178
|
|
1179
|
+
interface _StartCacheReportResponseSuccess
|
1180
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartCacheReportOutput]
|
1181
|
+
def cache_report_arn: () -> ::String
|
1182
|
+
end
|
1183
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#start_cache_report-instance_method
|
1184
|
+
def start_cache_report: (
|
1185
|
+
file_share_arn: ::String,
|
1186
|
+
role: ::String,
|
1187
|
+
location_arn: ::String,
|
1188
|
+
bucket_region: ::String,
|
1189
|
+
?vpc_endpoint_dns_name: ::String,
|
1190
|
+
?inclusion_filters: Array[
|
1191
|
+
{
|
1192
|
+
name: ("UploadState" | "UploadFailureReason"),
|
1193
|
+
values: Array[::String]
|
1194
|
+
},
|
1195
|
+
],
|
1196
|
+
?exclusion_filters: Array[
|
1197
|
+
{
|
1198
|
+
name: ("UploadState" | "UploadFailureReason"),
|
1199
|
+
values: Array[::String]
|
1200
|
+
},
|
1201
|
+
],
|
1202
|
+
client_token: ::String,
|
1203
|
+
?tags: Array[
|
1204
|
+
{
|
1205
|
+
key: ::String,
|
1206
|
+
value: ::String
|
1207
|
+
},
|
1208
|
+
]
|
1209
|
+
) -> _StartCacheReportResponseSuccess
|
1210
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCacheReportResponseSuccess
|
1211
|
+
|
1138
1212
|
interface _StartGatewayResponseSuccess
|
1139
1213
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartGatewayOutput]
|
1140
1214
|
def gateway_arn: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -145,6 +145,28 @@ module Aws::StorageGateway
|
|
145
145
|
SENSITIVE: []
|
146
146
|
end
|
147
147
|
|
148
|
+
class CacheReportFilter
|
149
|
+
attr_accessor name: ("UploadState" | "UploadFailureReason")
|
150
|
+
attr_accessor values: ::Array[::String]
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class CacheReportInfo
|
155
|
+
attr_accessor cache_report_arn: ::String
|
156
|
+
attr_accessor cache_report_status: ("IN_PROGRESS" | "COMPLETED" | "CANCELED" | "FAILED" | "ERROR")
|
157
|
+
attr_accessor report_completion_percent: ::Integer
|
158
|
+
attr_accessor end_time: ::Time
|
159
|
+
attr_accessor role: ::String
|
160
|
+
attr_accessor file_share_arn: ::String
|
161
|
+
attr_accessor location_arn: ::String
|
162
|
+
attr_accessor start_time: ::Time
|
163
|
+
attr_accessor inclusion_filters: ::Array[Types::CacheReportFilter]
|
164
|
+
attr_accessor exclusion_filters: ::Array[Types::CacheReportFilter]
|
165
|
+
attr_accessor report_name: ::String
|
166
|
+
attr_accessor tags: ::Array[Types::Tag]
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
148
170
|
class CachediSCSIVolume
|
149
171
|
attr_accessor volume_arn: ::String
|
150
172
|
attr_accessor volume_id: ::String
|
@@ -173,6 +195,16 @@ module Aws::StorageGateway
|
|
173
195
|
SENSITIVE: []
|
174
196
|
end
|
175
197
|
|
198
|
+
class CancelCacheReportInput
|
199
|
+
attr_accessor cache_report_arn: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class CancelCacheReportOutput
|
204
|
+
attr_accessor cache_report_arn: ::String
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
176
208
|
class CancelRetrievalInput
|
177
209
|
attr_accessor gateway_arn: ::String
|
178
210
|
attr_accessor tape_arn: ::String
|
@@ -397,6 +429,16 @@ module Aws::StorageGateway
|
|
397
429
|
SENSITIVE: []
|
398
430
|
end
|
399
431
|
|
432
|
+
class DeleteCacheReportInput
|
433
|
+
attr_accessor cache_report_arn: ::String
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class DeleteCacheReportOutput
|
438
|
+
attr_accessor cache_report_arn: ::String
|
439
|
+
SENSITIVE: []
|
440
|
+
end
|
441
|
+
|
400
442
|
class DeleteChapCredentialsInput
|
401
443
|
attr_accessor target_arn: ::String
|
402
444
|
attr_accessor initiator_name: ::String
|
@@ -534,6 +576,16 @@ module Aws::StorageGateway
|
|
534
576
|
SENSITIVE: []
|
535
577
|
end
|
536
578
|
|
579
|
+
class DescribeCacheReportInput
|
580
|
+
attr_accessor cache_report_arn: ::String
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class DescribeCacheReportOutput
|
585
|
+
attr_accessor cache_report_info: Types::CacheReportInfo
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
537
589
|
class DescribeCachediSCSIVolumesInput
|
538
590
|
attr_accessor volume_arns: ::Array[::String]
|
539
591
|
SENSITIVE: []
|
@@ -900,6 +952,17 @@ module Aws::StorageGateway
|
|
900
952
|
SENSITIVE: []
|
901
953
|
end
|
902
954
|
|
955
|
+
class ListCacheReportsInput
|
956
|
+
attr_accessor marker: ::String
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
960
|
+
class ListCacheReportsOutput
|
961
|
+
attr_accessor cache_report_list: ::Array[Types::CacheReportInfo]
|
962
|
+
attr_accessor marker: ::String
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
903
966
|
class ListFileSharesInput
|
904
967
|
attr_accessor gateway_arn: ::String
|
905
968
|
attr_accessor limit: ::Integer
|
@@ -1239,6 +1302,24 @@ module Aws::StorageGateway
|
|
1239
1302
|
SENSITIVE: []
|
1240
1303
|
end
|
1241
1304
|
|
1305
|
+
class StartCacheReportInput
|
1306
|
+
attr_accessor file_share_arn: ::String
|
1307
|
+
attr_accessor role: ::String
|
1308
|
+
attr_accessor location_arn: ::String
|
1309
|
+
attr_accessor bucket_region: ::String
|
1310
|
+
attr_accessor vpc_endpoint_dns_name: ::String
|
1311
|
+
attr_accessor inclusion_filters: ::Array[Types::CacheReportFilter]
|
1312
|
+
attr_accessor exclusion_filters: ::Array[Types::CacheReportFilter]
|
1313
|
+
attr_accessor client_token: ::String
|
1314
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1315
|
+
SENSITIVE: []
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
class StartCacheReportOutput
|
1319
|
+
attr_accessor cache_report_arn: ::String
|
1320
|
+
SENSITIVE: []
|
1321
|
+
end
|
1322
|
+
|
1242
1323
|
class StartGatewayInput
|
1243
1324
|
attr_accessor gateway_arn: ::String
|
1244
1325
|
SENSITIVE: []
|
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.105.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: 2025-02-
|
11
|
+
date: 2025-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|