aws-sdk-storagegateway 1.81.0 → 1.82.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1389 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module StorageGateway
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _ActivateGatewayResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::ActivateGatewayOutput]
78
+ def gateway_arn: () -> ::String
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#activate_gateway-instance_method
81
+ def activate_gateway: (
82
+ activation_key: ::String,
83
+ gateway_name: ::String,
84
+ gateway_timezone: ::String,
85
+ gateway_region: ::String,
86
+ ?gateway_type: ::String,
87
+ ?tape_drive_type: ::String,
88
+ ?medium_changer_type: ::String,
89
+ ?tags: Array[
90
+ {
91
+ key: ::String,
92
+ value: ::String
93
+ },
94
+ ]
95
+ ) -> _ActivateGatewayResponseSuccess
96
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ActivateGatewayResponseSuccess
97
+
98
+ interface _AddCacheResponseSuccess
99
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddCacheOutput]
100
+ def gateway_arn: () -> ::String
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#add_cache-instance_method
103
+ def add_cache: (
104
+ gateway_arn: ::String,
105
+ disk_ids: Array[::String]
106
+ ) -> _AddCacheResponseSuccess
107
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddCacheResponseSuccess
108
+
109
+ interface _AddTagsToResourceResponseSuccess
110
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddTagsToResourceOutput]
111
+ def resource_arn: () -> ::String
112
+ end
113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#add_tags_to_resource-instance_method
114
+ def add_tags_to_resource: (
115
+ resource_arn: ::String,
116
+ tags: Array[
117
+ {
118
+ key: ::String,
119
+ value: ::String
120
+ },
121
+ ]
122
+ ) -> _AddTagsToResourceResponseSuccess
123
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddTagsToResourceResponseSuccess
124
+
125
+ interface _AddUploadBufferResponseSuccess
126
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddUploadBufferOutput]
127
+ def gateway_arn: () -> ::String
128
+ end
129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#add_upload_buffer-instance_method
130
+ def add_upload_buffer: (
131
+ gateway_arn: ::String,
132
+ disk_ids: Array[::String]
133
+ ) -> _AddUploadBufferResponseSuccess
134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddUploadBufferResponseSuccess
135
+
136
+ interface _AddWorkingStorageResponseSuccess
137
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddWorkingStorageOutput]
138
+ def gateway_arn: () -> ::String
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#add_working_storage-instance_method
141
+ def add_working_storage: (
142
+ gateway_arn: ::String,
143
+ disk_ids: Array[::String]
144
+ ) -> _AddWorkingStorageResponseSuccess
145
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddWorkingStorageResponseSuccess
146
+
147
+ interface _AssignTapePoolResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssignTapePoolOutput]
149
+ def tape_arn: () -> ::String
150
+ end
151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#assign_tape_pool-instance_method
152
+ def assign_tape_pool: (
153
+ tape_arn: ::String,
154
+ pool_id: ::String,
155
+ ?bypass_governance_retention: bool
156
+ ) -> _AssignTapePoolResponseSuccess
157
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssignTapePoolResponseSuccess
158
+
159
+ interface _AssociateFileSystemResponseSuccess
160
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateFileSystemOutput]
161
+ def file_system_association_arn: () -> ::String
162
+ end
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#associate_file_system-instance_method
164
+ def associate_file_system: (
165
+ user_name: ::String,
166
+ password: ::String,
167
+ client_token: ::String,
168
+ gateway_arn: ::String,
169
+ location_arn: ::String,
170
+ ?tags: Array[
171
+ {
172
+ key: ::String,
173
+ value: ::String
174
+ },
175
+ ],
176
+ ?audit_destination_arn: ::String,
177
+ ?cache_attributes: {
178
+ cache_stale_timeout_in_seconds: ::Integer?
179
+ },
180
+ ?endpoint_network_configuration: {
181
+ ip_addresses: Array[::String]?
182
+ }
183
+ ) -> _AssociateFileSystemResponseSuccess
184
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateFileSystemResponseSuccess
185
+
186
+ interface _AttachVolumeResponseSuccess
187
+ include ::Seahorse::Client::_ResponseSuccess[Types::AttachVolumeOutput]
188
+ def volume_arn: () -> ::String
189
+ def target_arn: () -> ::String
190
+ end
191
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#attach_volume-instance_method
192
+ def attach_volume: (
193
+ gateway_arn: ::String,
194
+ ?target_name: ::String,
195
+ volume_arn: ::String,
196
+ network_interface_id: ::String,
197
+ ?disk_id: ::String
198
+ ) -> _AttachVolumeResponseSuccess
199
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachVolumeResponseSuccess
200
+
201
+ interface _CancelArchivalResponseSuccess
202
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelArchivalOutput]
203
+ def tape_arn: () -> ::String
204
+ end
205
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#cancel_archival-instance_method
206
+ def cancel_archival: (
207
+ gateway_arn: ::String,
208
+ tape_arn: ::String
209
+ ) -> _CancelArchivalResponseSuccess
210
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelArchivalResponseSuccess
211
+
212
+ interface _CancelRetrievalResponseSuccess
213
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelRetrievalOutput]
214
+ def tape_arn: () -> ::String
215
+ end
216
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#cancel_retrieval-instance_method
217
+ def cancel_retrieval: (
218
+ gateway_arn: ::String,
219
+ tape_arn: ::String
220
+ ) -> _CancelRetrievalResponseSuccess
221
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelRetrievalResponseSuccess
222
+
223
+ interface _CreateCachediSCSIVolumeResponseSuccess
224
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCachediSCSIVolumeOutput]
225
+ def volume_arn: () -> ::String
226
+ def target_arn: () -> ::String
227
+ end
228
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_cached_iscsi_volume-instance_method
229
+ def create_cached_iscsi_volume: (
230
+ gateway_arn: ::String,
231
+ volume_size_in_bytes: ::Integer,
232
+ ?snapshot_id: ::String,
233
+ target_name: ::String,
234
+ ?source_volume_arn: ::String,
235
+ network_interface_id: ::String,
236
+ client_token: ::String,
237
+ ?kms_encrypted: bool,
238
+ ?kms_key: ::String,
239
+ ?tags: Array[
240
+ {
241
+ key: ::String,
242
+ value: ::String
243
+ },
244
+ ]
245
+ ) -> _CreateCachediSCSIVolumeResponseSuccess
246
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCachediSCSIVolumeResponseSuccess
247
+
248
+ interface _CreateNFSFileShareResponseSuccess
249
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateNFSFileShareOutput]
250
+ def file_share_arn: () -> ::String
251
+ end
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_nfs_file_share-instance_method
253
+ def create_nfs_file_share: (
254
+ client_token: ::String,
255
+ ?nfs_file_share_defaults: {
256
+ file_mode: ::String?,
257
+ directory_mode: ::String?,
258
+ group_id: ::Integer?,
259
+ owner_id: ::Integer?
260
+ },
261
+ gateway_arn: ::String,
262
+ ?kms_encrypted: bool,
263
+ ?kms_key: ::String,
264
+ role: ::String,
265
+ location_arn: ::String,
266
+ ?default_storage_class: ::String,
267
+ ?object_acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control" | "aws-exec-read"),
268
+ ?client_list: Array[::String],
269
+ ?squash: ::String,
270
+ ?read_only: bool,
271
+ ?guess_mime_type_enabled: bool,
272
+ ?requester_pays: bool,
273
+ ?tags: Array[
274
+ {
275
+ key: ::String,
276
+ value: ::String
277
+ },
278
+ ],
279
+ ?file_share_name: ::String,
280
+ ?cache_attributes: {
281
+ cache_stale_timeout_in_seconds: ::Integer?
282
+ },
283
+ ?notification_policy: ::String,
284
+ ?vpc_endpoint_dns_name: ::String,
285
+ ?bucket_region: ::String,
286
+ ?audit_destination_arn: ::String
287
+ ) -> _CreateNFSFileShareResponseSuccess
288
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNFSFileShareResponseSuccess
289
+
290
+ interface _CreateSMBFileShareResponseSuccess
291
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSMBFileShareOutput]
292
+ def file_share_arn: () -> ::String
293
+ end
294
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_smb_file_share-instance_method
295
+ def create_smb_file_share: (
296
+ client_token: ::String,
297
+ gateway_arn: ::String,
298
+ ?kms_encrypted: bool,
299
+ ?kms_key: ::String,
300
+ role: ::String,
301
+ location_arn: ::String,
302
+ ?default_storage_class: ::String,
303
+ ?object_acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control" | "aws-exec-read"),
304
+ ?read_only: bool,
305
+ ?guess_mime_type_enabled: bool,
306
+ ?requester_pays: bool,
307
+ ?smbacl_enabled: bool,
308
+ ?access_based_enumeration: bool,
309
+ ?admin_user_list: Array[::String],
310
+ ?valid_user_list: Array[::String],
311
+ ?invalid_user_list: Array[::String],
312
+ ?audit_destination_arn: ::String,
313
+ ?authentication: ::String,
314
+ ?case_sensitivity: ("ClientSpecified" | "CaseSensitive"),
315
+ ?tags: Array[
316
+ {
317
+ key: ::String,
318
+ value: ::String
319
+ },
320
+ ],
321
+ ?file_share_name: ::String,
322
+ ?cache_attributes: {
323
+ cache_stale_timeout_in_seconds: ::Integer?
324
+ },
325
+ ?notification_policy: ::String,
326
+ ?vpc_endpoint_dns_name: ::String,
327
+ ?bucket_region: ::String,
328
+ ?oplocks_enabled: bool
329
+ ) -> _CreateSMBFileShareResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSMBFileShareResponseSuccess
331
+
332
+ interface _CreateSnapshotResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSnapshotOutput]
334
+ def volume_arn: () -> ::String
335
+ def snapshot_id: () -> ::String
336
+ end
337
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_snapshot-instance_method
338
+ def create_snapshot: (
339
+ volume_arn: ::String,
340
+ snapshot_description: ::String,
341
+ ?tags: Array[
342
+ {
343
+ key: ::String,
344
+ value: ::String
345
+ },
346
+ ]
347
+ ) -> _CreateSnapshotResponseSuccess
348
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSnapshotResponseSuccess
349
+
350
+ interface _CreateSnapshotFromVolumeRecoveryPointResponseSuccess
351
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSnapshotFromVolumeRecoveryPointOutput]
352
+ def snapshot_id: () -> ::String
353
+ def volume_arn: () -> ::String
354
+ def volume_recovery_point_time: () -> ::String
355
+ end
356
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_snapshot_from_volume_recovery_point-instance_method
357
+ def create_snapshot_from_volume_recovery_point: (
358
+ volume_arn: ::String,
359
+ snapshot_description: ::String,
360
+ ?tags: Array[
361
+ {
362
+ key: ::String,
363
+ value: ::String
364
+ },
365
+ ]
366
+ ) -> _CreateSnapshotFromVolumeRecoveryPointResponseSuccess
367
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSnapshotFromVolumeRecoveryPointResponseSuccess
368
+
369
+ interface _CreateStorediSCSIVolumeResponseSuccess
370
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStorediSCSIVolumeOutput]
371
+ def volume_arn: () -> ::String
372
+ def volume_size_in_bytes: () -> ::Integer
373
+ def target_arn: () -> ::String
374
+ end
375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_stored_iscsi_volume-instance_method
376
+ def create_stored_iscsi_volume: (
377
+ gateway_arn: ::String,
378
+ disk_id: ::String,
379
+ ?snapshot_id: ::String,
380
+ preserve_existing_data: bool,
381
+ target_name: ::String,
382
+ network_interface_id: ::String,
383
+ ?kms_encrypted: bool,
384
+ ?kms_key: ::String,
385
+ ?tags: Array[
386
+ {
387
+ key: ::String,
388
+ value: ::String
389
+ },
390
+ ]
391
+ ) -> _CreateStorediSCSIVolumeResponseSuccess
392
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStorediSCSIVolumeResponseSuccess
393
+
394
+ interface _CreateTapePoolResponseSuccess
395
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTapePoolOutput]
396
+ def pool_arn: () -> ::String
397
+ end
398
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_tape_pool-instance_method
399
+ def create_tape_pool: (
400
+ pool_name: ::String,
401
+ storage_class: ("DEEP_ARCHIVE" | "GLACIER"),
402
+ ?retention_lock_type: ("COMPLIANCE" | "GOVERNANCE" | "NONE"),
403
+ ?retention_lock_time_in_days: ::Integer,
404
+ ?tags: Array[
405
+ {
406
+ key: ::String,
407
+ value: ::String
408
+ },
409
+ ]
410
+ ) -> _CreateTapePoolResponseSuccess
411
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTapePoolResponseSuccess
412
+
413
+ interface _CreateTapeWithBarcodeResponseSuccess
414
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTapeWithBarcodeOutput]
415
+ def tape_arn: () -> ::String
416
+ end
417
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_tape_with_barcode-instance_method
418
+ def create_tape_with_barcode: (
419
+ gateway_arn: ::String,
420
+ tape_size_in_bytes: ::Integer,
421
+ tape_barcode: ::String,
422
+ ?kms_encrypted: bool,
423
+ ?kms_key: ::String,
424
+ ?pool_id: ::String,
425
+ ?worm: bool,
426
+ ?tags: Array[
427
+ {
428
+ key: ::String,
429
+ value: ::String
430
+ },
431
+ ]
432
+ ) -> _CreateTapeWithBarcodeResponseSuccess
433
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTapeWithBarcodeResponseSuccess
434
+
435
+ interface _CreateTapesResponseSuccess
436
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTapesOutput]
437
+ def tape_arns: () -> ::Array[::String]
438
+ end
439
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#create_tapes-instance_method
440
+ def create_tapes: (
441
+ gateway_arn: ::String,
442
+ tape_size_in_bytes: ::Integer,
443
+ client_token: ::String,
444
+ num_tapes_to_create: ::Integer,
445
+ tape_barcode_prefix: ::String,
446
+ ?kms_encrypted: bool,
447
+ ?kms_key: ::String,
448
+ ?pool_id: ::String,
449
+ ?worm: bool,
450
+ ?tags: Array[
451
+ {
452
+ key: ::String,
453
+ value: ::String
454
+ },
455
+ ]
456
+ ) -> _CreateTapesResponseSuccess
457
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTapesResponseSuccess
458
+
459
+ interface _DeleteAutomaticTapeCreationPolicyResponseSuccess
460
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAutomaticTapeCreationPolicyOutput]
461
+ def gateway_arn: () -> ::String
462
+ end
463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_automatic_tape_creation_policy-instance_method
464
+ def delete_automatic_tape_creation_policy: (
465
+ gateway_arn: ::String
466
+ ) -> _DeleteAutomaticTapeCreationPolicyResponseSuccess
467
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAutomaticTapeCreationPolicyResponseSuccess
468
+
469
+ interface _DeleteBandwidthRateLimitResponseSuccess
470
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBandwidthRateLimitOutput]
471
+ def gateway_arn: () -> ::String
472
+ end
473
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_bandwidth_rate_limit-instance_method
474
+ def delete_bandwidth_rate_limit: (
475
+ gateway_arn: ::String,
476
+ bandwidth_type: ::String
477
+ ) -> _DeleteBandwidthRateLimitResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBandwidthRateLimitResponseSuccess
479
+
480
+ interface _DeleteChapCredentialsResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChapCredentialsOutput]
482
+ def target_arn: () -> ::String
483
+ def initiator_name: () -> ::String
484
+ end
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_chap_credentials-instance_method
486
+ def delete_chap_credentials: (
487
+ target_arn: ::String,
488
+ initiator_name: ::String
489
+ ) -> _DeleteChapCredentialsResponseSuccess
490
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChapCredentialsResponseSuccess
491
+
492
+ interface _DeleteFileShareResponseSuccess
493
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFileShareOutput]
494
+ def file_share_arn: () -> ::String
495
+ end
496
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_file_share-instance_method
497
+ def delete_file_share: (
498
+ file_share_arn: ::String,
499
+ ?force_delete: bool
500
+ ) -> _DeleteFileShareResponseSuccess
501
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFileShareResponseSuccess
502
+
503
+ interface _DeleteGatewayResponseSuccess
504
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayOutput]
505
+ def gateway_arn: () -> ::String
506
+ end
507
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_gateway-instance_method
508
+ def delete_gateway: (
509
+ gateway_arn: ::String
510
+ ) -> _DeleteGatewayResponseSuccess
511
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayResponseSuccess
512
+
513
+ interface _DeleteSnapshotScheduleResponseSuccess
514
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSnapshotScheduleOutput]
515
+ def volume_arn: () -> ::String
516
+ end
517
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_snapshot_schedule-instance_method
518
+ def delete_snapshot_schedule: (
519
+ volume_arn: ::String
520
+ ) -> _DeleteSnapshotScheduleResponseSuccess
521
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSnapshotScheduleResponseSuccess
522
+
523
+ interface _DeleteTapeResponseSuccess
524
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTapeOutput]
525
+ def tape_arn: () -> ::String
526
+ end
527
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_tape-instance_method
528
+ def delete_tape: (
529
+ gateway_arn: ::String,
530
+ tape_arn: ::String,
531
+ ?bypass_governance_retention: bool
532
+ ) -> _DeleteTapeResponseSuccess
533
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTapeResponseSuccess
534
+
535
+ interface _DeleteTapeArchiveResponseSuccess
536
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTapeArchiveOutput]
537
+ def tape_arn: () -> ::String
538
+ end
539
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_tape_archive-instance_method
540
+ def delete_tape_archive: (
541
+ tape_arn: ::String,
542
+ ?bypass_governance_retention: bool
543
+ ) -> _DeleteTapeArchiveResponseSuccess
544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTapeArchiveResponseSuccess
545
+
546
+ interface _DeleteTapePoolResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTapePoolOutput]
548
+ def pool_arn: () -> ::String
549
+ end
550
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_tape_pool-instance_method
551
+ def delete_tape_pool: (
552
+ pool_arn: ::String
553
+ ) -> _DeleteTapePoolResponseSuccess
554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTapePoolResponseSuccess
555
+
556
+ interface _DeleteVolumeResponseSuccess
557
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVolumeOutput]
558
+ def volume_arn: () -> ::String
559
+ end
560
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#delete_volume-instance_method
561
+ def delete_volume: (
562
+ volume_arn: ::String
563
+ ) -> _DeleteVolumeResponseSuccess
564
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVolumeResponseSuccess
565
+
566
+ interface _DescribeAvailabilityMonitorTestResponseSuccess
567
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAvailabilityMonitorTestOutput]
568
+ def gateway_arn: () -> ::String
569
+ def status: () -> ("COMPLETE" | "FAILED" | "PENDING")
570
+ def start_time: () -> ::Time
571
+ end
572
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_availability_monitor_test-instance_method
573
+ def describe_availability_monitor_test: (
574
+ gateway_arn: ::String
575
+ ) -> _DescribeAvailabilityMonitorTestResponseSuccess
576
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAvailabilityMonitorTestResponseSuccess
577
+
578
+ interface _DescribeBandwidthRateLimitResponseSuccess
579
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBandwidthRateLimitOutput]
580
+ def gateway_arn: () -> ::String
581
+ def average_upload_rate_limit_in_bits_per_sec: () -> ::Integer
582
+ def average_download_rate_limit_in_bits_per_sec: () -> ::Integer
583
+ end
584
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_bandwidth_rate_limit-instance_method
585
+ def describe_bandwidth_rate_limit: (
586
+ gateway_arn: ::String
587
+ ) -> _DescribeBandwidthRateLimitResponseSuccess
588
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBandwidthRateLimitResponseSuccess
589
+
590
+ interface _DescribeBandwidthRateLimitScheduleResponseSuccess
591
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBandwidthRateLimitScheduleOutput]
592
+ def gateway_arn: () -> ::String
593
+ def bandwidth_rate_limit_intervals: () -> ::Array[Types::BandwidthRateLimitInterval]
594
+ end
595
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_bandwidth_rate_limit_schedule-instance_method
596
+ def describe_bandwidth_rate_limit_schedule: (
597
+ gateway_arn: ::String
598
+ ) -> _DescribeBandwidthRateLimitScheduleResponseSuccess
599
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBandwidthRateLimitScheduleResponseSuccess
600
+
601
+ interface _DescribeCacheResponseSuccess
602
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCacheOutput]
603
+ def gateway_arn: () -> ::String
604
+ def disk_ids: () -> ::Array[::String]
605
+ def cache_allocated_in_bytes: () -> ::Integer
606
+ def cache_used_percentage: () -> ::Float
607
+ def cache_dirty_percentage: () -> ::Float
608
+ def cache_hit_percentage: () -> ::Float
609
+ def cache_miss_percentage: () -> ::Float
610
+ end
611
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_cache-instance_method
612
+ def describe_cache: (
613
+ gateway_arn: ::String
614
+ ) -> _DescribeCacheResponseSuccess
615
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCacheResponseSuccess
616
+
617
+ interface _DescribeCachediSCSIVolumesResponseSuccess
618
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCachediSCSIVolumesOutput]
619
+ def cached_iscsi_volumes: () -> ::Array[Types::CachediSCSIVolume]
620
+ end
621
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_cached_iscsi_volumes-instance_method
622
+ def describe_cached_iscsi_volumes: (
623
+ volume_arns: Array[::String]
624
+ ) -> _DescribeCachediSCSIVolumesResponseSuccess
625
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCachediSCSIVolumesResponseSuccess
626
+
627
+ interface _DescribeChapCredentialsResponseSuccess
628
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChapCredentialsOutput]
629
+ def chap_credentials: () -> ::Array[Types::ChapInfo]
630
+ end
631
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_chap_credentials-instance_method
632
+ def describe_chap_credentials: (
633
+ target_arn: ::String
634
+ ) -> _DescribeChapCredentialsResponseSuccess
635
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChapCredentialsResponseSuccess
636
+
637
+ interface _DescribeFileSystemAssociationsResponseSuccess
638
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFileSystemAssociationsOutput]
639
+ def file_system_association_info_list: () -> ::Array[Types::FileSystemAssociationInfo]
640
+ end
641
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_file_system_associations-instance_method
642
+ def describe_file_system_associations: (
643
+ file_system_association_arn_list: Array[::String]
644
+ ) -> _DescribeFileSystemAssociationsResponseSuccess
645
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFileSystemAssociationsResponseSuccess
646
+
647
+ interface _DescribeGatewayInformationResponseSuccess
648
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGatewayInformationOutput]
649
+ def gateway_arn: () -> ::String
650
+ def gateway_id: () -> ::String
651
+ def gateway_name: () -> ::String
652
+ def gateway_timezone: () -> ::String
653
+ def gateway_state: () -> ::String
654
+ def gateway_network_interfaces: () -> ::Array[Types::NetworkInterface]
655
+ def gateway_type: () -> ::String
656
+ def next_update_availability_date: () -> ::String
657
+ def last_software_update: () -> ::String
658
+ def ec2_instance_id: () -> ::String
659
+ def ec2_instance_region: () -> ::String
660
+ def tags: () -> ::Array[Types::Tag]
661
+ def vpc_endpoint: () -> ::String
662
+ def cloud_watch_log_group_arn: () -> ::String
663
+ def host_environment: () -> ("VMWARE" | "HYPER-V" | "EC2" | "KVM" | "OTHER" | "SNOWBALL")
664
+ def endpoint_type: () -> ::String
665
+ def software_updates_end_date: () -> ::String
666
+ def deprecation_date: () -> ::String
667
+ def gateway_capacity: () -> ("Small" | "Medium" | "Large")
668
+ def supported_gateway_capacities: () -> ::Array[("Small" | "Medium" | "Large")]
669
+ def host_environment_id: () -> ::String
670
+ def software_version: () -> ::String
671
+ end
672
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_gateway_information-instance_method
673
+ def describe_gateway_information: (
674
+ gateway_arn: ::String
675
+ ) -> _DescribeGatewayInformationResponseSuccess
676
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGatewayInformationResponseSuccess
677
+
678
+ interface _DescribeMaintenanceStartTimeResponseSuccess
679
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMaintenanceStartTimeOutput]
680
+ def gateway_arn: () -> ::String
681
+ def hour_of_day: () -> ::Integer
682
+ def minute_of_hour: () -> ::Integer
683
+ def day_of_week: () -> ::Integer
684
+ def day_of_month: () -> ::Integer
685
+ def timezone: () -> ::String
686
+ end
687
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_maintenance_start_time-instance_method
688
+ def describe_maintenance_start_time: (
689
+ gateway_arn: ::String
690
+ ) -> _DescribeMaintenanceStartTimeResponseSuccess
691
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMaintenanceStartTimeResponseSuccess
692
+
693
+ interface _DescribeNFSFileSharesResponseSuccess
694
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeNFSFileSharesOutput]
695
+ def nfs_file_share_info_list: () -> ::Array[Types::NFSFileShareInfo]
696
+ end
697
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_nfs_file_shares-instance_method
698
+ def describe_nfs_file_shares: (
699
+ file_share_arn_list: Array[::String]
700
+ ) -> _DescribeNFSFileSharesResponseSuccess
701
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeNFSFileSharesResponseSuccess
702
+
703
+ interface _DescribeSMBFileSharesResponseSuccess
704
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSMBFileSharesOutput]
705
+ def smb_file_share_info_list: () -> ::Array[Types::SMBFileShareInfo]
706
+ end
707
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_smb_file_shares-instance_method
708
+ def describe_smb_file_shares: (
709
+ file_share_arn_list: Array[::String]
710
+ ) -> _DescribeSMBFileSharesResponseSuccess
711
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSMBFileSharesResponseSuccess
712
+
713
+ interface _DescribeSMBSettingsResponseSuccess
714
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSMBSettingsOutput]
715
+ def gateway_arn: () -> ::String
716
+ def domain_name: () -> ::String
717
+ def active_directory_status: () -> ("ACCESS_DENIED" | "DETACHED" | "JOINED" | "JOINING" | "NETWORK_ERROR" | "TIMEOUT" | "UNKNOWN_ERROR")
718
+ def smb_guest_password_set: () -> bool
719
+ def smb_security_strategy: () -> ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption")
720
+ def file_shares_visible: () -> bool
721
+ def smb_local_groups: () -> Types::SMBLocalGroups
722
+ end
723
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_smb_settings-instance_method
724
+ def describe_smb_settings: (
725
+ gateway_arn: ::String
726
+ ) -> _DescribeSMBSettingsResponseSuccess
727
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSMBSettingsResponseSuccess
728
+
729
+ interface _DescribeSnapshotScheduleResponseSuccess
730
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSnapshotScheduleOutput]
731
+ def volume_arn: () -> ::String
732
+ def start_at: () -> ::Integer
733
+ def recurrence_in_hours: () -> ::Integer
734
+ def description: () -> ::String
735
+ def timezone: () -> ::String
736
+ def tags: () -> ::Array[Types::Tag]
737
+ end
738
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_snapshot_schedule-instance_method
739
+ def describe_snapshot_schedule: (
740
+ volume_arn: ::String
741
+ ) -> _DescribeSnapshotScheduleResponseSuccess
742
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSnapshotScheduleResponseSuccess
743
+
744
+ interface _DescribeStorediSCSIVolumesResponseSuccess
745
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStorediSCSIVolumesOutput]
746
+ def stored_iscsi_volumes: () -> ::Array[Types::StorediSCSIVolume]
747
+ end
748
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_stored_iscsi_volumes-instance_method
749
+ def describe_stored_iscsi_volumes: (
750
+ volume_arns: Array[::String]
751
+ ) -> _DescribeStorediSCSIVolumesResponseSuccess
752
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStorediSCSIVolumesResponseSuccess
753
+
754
+ interface _DescribeTapeArchivesResponseSuccess
755
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTapeArchivesOutput]
756
+ def tape_archives: () -> ::Array[Types::TapeArchive]
757
+ def marker: () -> ::String
758
+ end
759
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_tape_archives-instance_method
760
+ def describe_tape_archives: (
761
+ ?tape_arns: Array[::String],
762
+ ?marker: ::String,
763
+ ?limit: ::Integer
764
+ ) -> _DescribeTapeArchivesResponseSuccess
765
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTapeArchivesResponseSuccess
766
+
767
+ interface _DescribeTapeRecoveryPointsResponseSuccess
768
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTapeRecoveryPointsOutput]
769
+ def gateway_arn: () -> ::String
770
+ def tape_recovery_point_infos: () -> ::Array[Types::TapeRecoveryPointInfo]
771
+ def marker: () -> ::String
772
+ end
773
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_tape_recovery_points-instance_method
774
+ def describe_tape_recovery_points: (
775
+ gateway_arn: ::String,
776
+ ?marker: ::String,
777
+ ?limit: ::Integer
778
+ ) -> _DescribeTapeRecoveryPointsResponseSuccess
779
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTapeRecoveryPointsResponseSuccess
780
+
781
+ interface _DescribeTapesResponseSuccess
782
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTapesOutput]
783
+ def tapes: () -> ::Array[Types::Tape]
784
+ def marker: () -> ::String
785
+ end
786
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_tapes-instance_method
787
+ def describe_tapes: (
788
+ gateway_arn: ::String,
789
+ ?tape_arns: Array[::String],
790
+ ?marker: ::String,
791
+ ?limit: ::Integer
792
+ ) -> _DescribeTapesResponseSuccess
793
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTapesResponseSuccess
794
+
795
+ interface _DescribeUploadBufferResponseSuccess
796
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUploadBufferOutput]
797
+ def gateway_arn: () -> ::String
798
+ def disk_ids: () -> ::Array[::String]
799
+ def upload_buffer_used_in_bytes: () -> ::Integer
800
+ def upload_buffer_allocated_in_bytes: () -> ::Integer
801
+ end
802
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_upload_buffer-instance_method
803
+ def describe_upload_buffer: (
804
+ gateway_arn: ::String
805
+ ) -> _DescribeUploadBufferResponseSuccess
806
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeUploadBufferResponseSuccess
807
+
808
+ interface _DescribeVTLDevicesResponseSuccess
809
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVTLDevicesOutput]
810
+ def gateway_arn: () -> ::String
811
+ def vtl_devices: () -> ::Array[Types::VTLDevice]
812
+ def marker: () -> ::String
813
+ end
814
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_vtl_devices-instance_method
815
+ def describe_vtl_devices: (
816
+ gateway_arn: ::String,
817
+ ?vtl_device_arns: Array[::String],
818
+ ?marker: ::String,
819
+ ?limit: ::Integer
820
+ ) -> _DescribeVTLDevicesResponseSuccess
821
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVTLDevicesResponseSuccess
822
+
823
+ interface _DescribeWorkingStorageResponseSuccess
824
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorkingStorageOutput]
825
+ def gateway_arn: () -> ::String
826
+ def disk_ids: () -> ::Array[::String]
827
+ def working_storage_used_in_bytes: () -> ::Integer
828
+ def working_storage_allocated_in_bytes: () -> ::Integer
829
+ end
830
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_working_storage-instance_method
831
+ def describe_working_storage: (
832
+ gateway_arn: ::String
833
+ ) -> _DescribeWorkingStorageResponseSuccess
834
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorkingStorageResponseSuccess
835
+
836
+ interface _DetachVolumeResponseSuccess
837
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetachVolumeOutput]
838
+ def volume_arn: () -> ::String
839
+ end
840
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#detach_volume-instance_method
841
+ def detach_volume: (
842
+ volume_arn: ::String,
843
+ ?force_detach: bool
844
+ ) -> _DetachVolumeResponseSuccess
845
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetachVolumeResponseSuccess
846
+
847
+ interface _DisableGatewayResponseSuccess
848
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisableGatewayOutput]
849
+ def gateway_arn: () -> ::String
850
+ end
851
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#disable_gateway-instance_method
852
+ def disable_gateway: (
853
+ gateway_arn: ::String
854
+ ) -> _DisableGatewayResponseSuccess
855
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableGatewayResponseSuccess
856
+
857
+ interface _DisassociateFileSystemResponseSuccess
858
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateFileSystemOutput]
859
+ def file_system_association_arn: () -> ::String
860
+ end
861
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#disassociate_file_system-instance_method
862
+ def disassociate_file_system: (
863
+ file_system_association_arn: ::String,
864
+ ?force_delete: bool
865
+ ) -> _DisassociateFileSystemResponseSuccess
866
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFileSystemResponseSuccess
867
+
868
+ interface _JoinDomainResponseSuccess
869
+ include ::Seahorse::Client::_ResponseSuccess[Types::JoinDomainOutput]
870
+ def gateway_arn: () -> ::String
871
+ def active_directory_status: () -> ("ACCESS_DENIED" | "DETACHED" | "JOINED" | "JOINING" | "NETWORK_ERROR" | "TIMEOUT" | "UNKNOWN_ERROR")
872
+ end
873
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#join_domain-instance_method
874
+ def join_domain: (
875
+ gateway_arn: ::String,
876
+ domain_name: ::String,
877
+ ?organizational_unit: ::String,
878
+ ?domain_controllers: Array[::String],
879
+ ?timeout_in_seconds: ::Integer,
880
+ user_name: ::String,
881
+ password: ::String
882
+ ) -> _JoinDomainResponseSuccess
883
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _JoinDomainResponseSuccess
884
+
885
+ interface _ListAutomaticTapeCreationPoliciesResponseSuccess
886
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAutomaticTapeCreationPoliciesOutput]
887
+ def automatic_tape_creation_policy_infos: () -> ::Array[Types::AutomaticTapeCreationPolicyInfo]
888
+ end
889
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_automatic_tape_creation_policies-instance_method
890
+ def list_automatic_tape_creation_policies: (
891
+ ?gateway_arn: ::String
892
+ ) -> _ListAutomaticTapeCreationPoliciesResponseSuccess
893
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAutomaticTapeCreationPoliciesResponseSuccess
894
+
895
+ interface _ListFileSharesResponseSuccess
896
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFileSharesOutput]
897
+ def marker: () -> ::String
898
+ def next_marker: () -> ::String
899
+ def file_share_info_list: () -> ::Array[Types::FileShareInfo]
900
+ end
901
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_file_shares-instance_method
902
+ def list_file_shares: (
903
+ ?gateway_arn: ::String,
904
+ ?limit: ::Integer,
905
+ ?marker: ::String
906
+ ) -> _ListFileSharesResponseSuccess
907
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFileSharesResponseSuccess
908
+
909
+ interface _ListFileSystemAssociationsResponseSuccess
910
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFileSystemAssociationsOutput]
911
+ def marker: () -> ::String
912
+ def next_marker: () -> ::String
913
+ def file_system_association_summary_list: () -> ::Array[Types::FileSystemAssociationSummary]
914
+ end
915
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_file_system_associations-instance_method
916
+ def list_file_system_associations: (
917
+ ?gateway_arn: ::String,
918
+ ?limit: ::Integer,
919
+ ?marker: ::String
920
+ ) -> _ListFileSystemAssociationsResponseSuccess
921
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFileSystemAssociationsResponseSuccess
922
+
923
+ interface _ListGatewaysResponseSuccess
924
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewaysOutput]
925
+ def gateways: () -> ::Array[Types::GatewayInfo]
926
+ def marker: () -> ::String
927
+ end
928
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_gateways-instance_method
929
+ def list_gateways: (
930
+ ?marker: ::String,
931
+ ?limit: ::Integer
932
+ ) -> _ListGatewaysResponseSuccess
933
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewaysResponseSuccess
934
+
935
+ interface _ListLocalDisksResponseSuccess
936
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLocalDisksOutput]
937
+ def gateway_arn: () -> ::String
938
+ def disks: () -> ::Array[Types::Disk]
939
+ end
940
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_local_disks-instance_method
941
+ def list_local_disks: (
942
+ gateway_arn: ::String
943
+ ) -> _ListLocalDisksResponseSuccess
944
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLocalDisksResponseSuccess
945
+
946
+ interface _ListTagsForResourceResponseSuccess
947
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
948
+ def resource_arn: () -> ::String
949
+ def marker: () -> ::String
950
+ def tags: () -> ::Array[Types::Tag]
951
+ end
952
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_tags_for_resource-instance_method
953
+ def list_tags_for_resource: (
954
+ resource_arn: ::String,
955
+ ?marker: ::String,
956
+ ?limit: ::Integer
957
+ ) -> _ListTagsForResourceResponseSuccess
958
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
959
+
960
+ interface _ListTapePoolsResponseSuccess
961
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTapePoolsOutput]
962
+ def pool_infos: () -> ::Array[Types::PoolInfo]
963
+ def marker: () -> ::String
964
+ end
965
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_tape_pools-instance_method
966
+ def list_tape_pools: (
967
+ ?pool_arns: Array[::String],
968
+ ?marker: ::String,
969
+ ?limit: ::Integer
970
+ ) -> _ListTapePoolsResponseSuccess
971
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTapePoolsResponseSuccess
972
+
973
+ interface _ListTapesResponseSuccess
974
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTapesOutput]
975
+ def tape_infos: () -> ::Array[Types::TapeInfo]
976
+ def marker: () -> ::String
977
+ end
978
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_tapes-instance_method
979
+ def list_tapes: (
980
+ ?tape_arns: Array[::String],
981
+ ?marker: ::String,
982
+ ?limit: ::Integer
983
+ ) -> _ListTapesResponseSuccess
984
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTapesResponseSuccess
985
+
986
+ interface _ListVolumeInitiatorsResponseSuccess
987
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVolumeInitiatorsOutput]
988
+ def initiators: () -> ::Array[::String]
989
+ end
990
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_volume_initiators-instance_method
991
+ def list_volume_initiators: (
992
+ volume_arn: ::String
993
+ ) -> _ListVolumeInitiatorsResponseSuccess
994
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVolumeInitiatorsResponseSuccess
995
+
996
+ interface _ListVolumeRecoveryPointsResponseSuccess
997
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVolumeRecoveryPointsOutput]
998
+ def gateway_arn: () -> ::String
999
+ def volume_recovery_point_infos: () -> ::Array[Types::VolumeRecoveryPointInfo]
1000
+ end
1001
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_volume_recovery_points-instance_method
1002
+ def list_volume_recovery_points: (
1003
+ gateway_arn: ::String
1004
+ ) -> _ListVolumeRecoveryPointsResponseSuccess
1005
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVolumeRecoveryPointsResponseSuccess
1006
+
1007
+ interface _ListVolumesResponseSuccess
1008
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVolumesOutput]
1009
+ def gateway_arn: () -> ::String
1010
+ def marker: () -> ::String
1011
+ def volume_infos: () -> ::Array[Types::VolumeInfo]
1012
+ end
1013
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#list_volumes-instance_method
1014
+ def list_volumes: (
1015
+ ?gateway_arn: ::String,
1016
+ ?marker: ::String,
1017
+ ?limit: ::Integer
1018
+ ) -> _ListVolumesResponseSuccess
1019
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVolumesResponseSuccess
1020
+
1021
+ interface _NotifyWhenUploadedResponseSuccess
1022
+ include ::Seahorse::Client::_ResponseSuccess[Types::NotifyWhenUploadedOutput]
1023
+ def file_share_arn: () -> ::String
1024
+ def notification_id: () -> ::String
1025
+ end
1026
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#notify_when_uploaded-instance_method
1027
+ def notify_when_uploaded: (
1028
+ file_share_arn: ::String
1029
+ ) -> _NotifyWhenUploadedResponseSuccess
1030
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _NotifyWhenUploadedResponseSuccess
1031
+
1032
+ interface _RefreshCacheResponseSuccess
1033
+ include ::Seahorse::Client::_ResponseSuccess[Types::RefreshCacheOutput]
1034
+ def file_share_arn: () -> ::String
1035
+ def notification_id: () -> ::String
1036
+ end
1037
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#refresh_cache-instance_method
1038
+ def refresh_cache: (
1039
+ file_share_arn: ::String,
1040
+ ?folder_list: Array[::String],
1041
+ ?recursive: bool
1042
+ ) -> _RefreshCacheResponseSuccess
1043
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RefreshCacheResponseSuccess
1044
+
1045
+ interface _RemoveTagsFromResourceResponseSuccess
1046
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveTagsFromResourceOutput]
1047
+ def resource_arn: () -> ::String
1048
+ end
1049
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#remove_tags_from_resource-instance_method
1050
+ def remove_tags_from_resource: (
1051
+ resource_arn: ::String,
1052
+ tag_keys: Array[::String]
1053
+ ) -> _RemoveTagsFromResourceResponseSuccess
1054
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveTagsFromResourceResponseSuccess
1055
+
1056
+ interface _ResetCacheResponseSuccess
1057
+ include ::Seahorse::Client::_ResponseSuccess[Types::ResetCacheOutput]
1058
+ def gateway_arn: () -> ::String
1059
+ end
1060
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#reset_cache-instance_method
1061
+ def reset_cache: (
1062
+ gateway_arn: ::String
1063
+ ) -> _ResetCacheResponseSuccess
1064
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResetCacheResponseSuccess
1065
+
1066
+ interface _RetrieveTapeArchiveResponseSuccess
1067
+ include ::Seahorse::Client::_ResponseSuccess[Types::RetrieveTapeArchiveOutput]
1068
+ def tape_arn: () -> ::String
1069
+ end
1070
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#retrieve_tape_archive-instance_method
1071
+ def retrieve_tape_archive: (
1072
+ tape_arn: ::String,
1073
+ gateway_arn: ::String
1074
+ ) -> _RetrieveTapeArchiveResponseSuccess
1075
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RetrieveTapeArchiveResponseSuccess
1076
+
1077
+ interface _RetrieveTapeRecoveryPointResponseSuccess
1078
+ include ::Seahorse::Client::_ResponseSuccess[Types::RetrieveTapeRecoveryPointOutput]
1079
+ def tape_arn: () -> ::String
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#retrieve_tape_recovery_point-instance_method
1082
+ def retrieve_tape_recovery_point: (
1083
+ tape_arn: ::String,
1084
+ gateway_arn: ::String
1085
+ ) -> _RetrieveTapeRecoveryPointResponseSuccess
1086
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RetrieveTapeRecoveryPointResponseSuccess
1087
+
1088
+ interface _SetLocalConsolePasswordResponseSuccess
1089
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetLocalConsolePasswordOutput]
1090
+ def gateway_arn: () -> ::String
1091
+ end
1092
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#set_local_console_password-instance_method
1093
+ def set_local_console_password: (
1094
+ gateway_arn: ::String,
1095
+ local_console_password: ::String
1096
+ ) -> _SetLocalConsolePasswordResponseSuccess
1097
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetLocalConsolePasswordResponseSuccess
1098
+
1099
+ interface _SetSMBGuestPasswordResponseSuccess
1100
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetSMBGuestPasswordOutput]
1101
+ def gateway_arn: () -> ::String
1102
+ end
1103
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#set_smb_guest_password-instance_method
1104
+ def set_smb_guest_password: (
1105
+ gateway_arn: ::String,
1106
+ password: ::String
1107
+ ) -> _SetSMBGuestPasswordResponseSuccess
1108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetSMBGuestPasswordResponseSuccess
1109
+
1110
+ interface _ShutdownGatewayResponseSuccess
1111
+ include ::Seahorse::Client::_ResponseSuccess[Types::ShutdownGatewayOutput]
1112
+ def gateway_arn: () -> ::String
1113
+ end
1114
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#shutdown_gateway-instance_method
1115
+ def shutdown_gateway: (
1116
+ gateway_arn: ::String
1117
+ ) -> _ShutdownGatewayResponseSuccess
1118
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ShutdownGatewayResponseSuccess
1119
+
1120
+ interface _StartAvailabilityMonitorTestResponseSuccess
1121
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartAvailabilityMonitorTestOutput]
1122
+ def gateway_arn: () -> ::String
1123
+ end
1124
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#start_availability_monitor_test-instance_method
1125
+ def start_availability_monitor_test: (
1126
+ gateway_arn: ::String
1127
+ ) -> _StartAvailabilityMonitorTestResponseSuccess
1128
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAvailabilityMonitorTestResponseSuccess
1129
+
1130
+ interface _StartGatewayResponseSuccess
1131
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartGatewayOutput]
1132
+ def gateway_arn: () -> ::String
1133
+ end
1134
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#start_gateway-instance_method
1135
+ def start_gateway: (
1136
+ gateway_arn: ::String
1137
+ ) -> _StartGatewayResponseSuccess
1138
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartGatewayResponseSuccess
1139
+
1140
+ interface _UpdateAutomaticTapeCreationPolicyResponseSuccess
1141
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAutomaticTapeCreationPolicyOutput]
1142
+ def gateway_arn: () -> ::String
1143
+ end
1144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_automatic_tape_creation_policy-instance_method
1145
+ def update_automatic_tape_creation_policy: (
1146
+ automatic_tape_creation_rules: Array[
1147
+ {
1148
+ tape_barcode_prefix: ::String,
1149
+ pool_id: ::String,
1150
+ tape_size_in_bytes: ::Integer,
1151
+ minimum_num_tapes: ::Integer,
1152
+ worm: bool?
1153
+ },
1154
+ ],
1155
+ gateway_arn: ::String
1156
+ ) -> _UpdateAutomaticTapeCreationPolicyResponseSuccess
1157
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAutomaticTapeCreationPolicyResponseSuccess
1158
+
1159
+ interface _UpdateBandwidthRateLimitResponseSuccess
1160
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBandwidthRateLimitOutput]
1161
+ def gateway_arn: () -> ::String
1162
+ end
1163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_bandwidth_rate_limit-instance_method
1164
+ def update_bandwidth_rate_limit: (
1165
+ gateway_arn: ::String,
1166
+ ?average_upload_rate_limit_in_bits_per_sec: ::Integer,
1167
+ ?average_download_rate_limit_in_bits_per_sec: ::Integer
1168
+ ) -> _UpdateBandwidthRateLimitResponseSuccess
1169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBandwidthRateLimitResponseSuccess
1170
+
1171
+ interface _UpdateBandwidthRateLimitScheduleResponseSuccess
1172
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBandwidthRateLimitScheduleOutput]
1173
+ def gateway_arn: () -> ::String
1174
+ end
1175
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_bandwidth_rate_limit_schedule-instance_method
1176
+ def update_bandwidth_rate_limit_schedule: (
1177
+ gateway_arn: ::String,
1178
+ bandwidth_rate_limit_intervals: Array[
1179
+ {
1180
+ start_hour_of_day: ::Integer,
1181
+ start_minute_of_hour: ::Integer,
1182
+ end_hour_of_day: ::Integer,
1183
+ end_minute_of_hour: ::Integer,
1184
+ days_of_week: Array[::Integer],
1185
+ average_upload_rate_limit_in_bits_per_sec: ::Integer?,
1186
+ average_download_rate_limit_in_bits_per_sec: ::Integer?
1187
+ },
1188
+ ]
1189
+ ) -> _UpdateBandwidthRateLimitScheduleResponseSuccess
1190
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBandwidthRateLimitScheduleResponseSuccess
1191
+
1192
+ interface _UpdateChapCredentialsResponseSuccess
1193
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChapCredentialsOutput]
1194
+ def target_arn: () -> ::String
1195
+ def initiator_name: () -> ::String
1196
+ end
1197
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_chap_credentials-instance_method
1198
+ def update_chap_credentials: (
1199
+ target_arn: ::String,
1200
+ secret_to_authenticate_initiator: ::String,
1201
+ initiator_name: ::String,
1202
+ ?secret_to_authenticate_target: ::String
1203
+ ) -> _UpdateChapCredentialsResponseSuccess
1204
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChapCredentialsResponseSuccess
1205
+
1206
+ interface _UpdateFileSystemAssociationResponseSuccess
1207
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFileSystemAssociationOutput]
1208
+ def file_system_association_arn: () -> ::String
1209
+ end
1210
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_file_system_association-instance_method
1211
+ def update_file_system_association: (
1212
+ file_system_association_arn: ::String,
1213
+ ?user_name: ::String,
1214
+ ?password: ::String,
1215
+ ?audit_destination_arn: ::String,
1216
+ ?cache_attributes: {
1217
+ cache_stale_timeout_in_seconds: ::Integer?
1218
+ }
1219
+ ) -> _UpdateFileSystemAssociationResponseSuccess
1220
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFileSystemAssociationResponseSuccess
1221
+
1222
+ interface _UpdateGatewayInformationResponseSuccess
1223
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayInformationOutput]
1224
+ def gateway_arn: () -> ::String
1225
+ def gateway_name: () -> ::String
1226
+ end
1227
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_gateway_information-instance_method
1228
+ def update_gateway_information: (
1229
+ gateway_arn: ::String,
1230
+ ?gateway_name: ::String,
1231
+ ?gateway_timezone: ::String,
1232
+ ?cloud_watch_log_group_arn: ::String,
1233
+ ?gateway_capacity: ("Small" | "Medium" | "Large")
1234
+ ) -> _UpdateGatewayInformationResponseSuccess
1235
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayInformationResponseSuccess
1236
+
1237
+ interface _UpdateGatewaySoftwareNowResponseSuccess
1238
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewaySoftwareNowOutput]
1239
+ def gateway_arn: () -> ::String
1240
+ end
1241
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_gateway_software_now-instance_method
1242
+ def update_gateway_software_now: (
1243
+ gateway_arn: ::String
1244
+ ) -> _UpdateGatewaySoftwareNowResponseSuccess
1245
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewaySoftwareNowResponseSuccess
1246
+
1247
+ interface _UpdateMaintenanceStartTimeResponseSuccess
1248
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMaintenanceStartTimeOutput]
1249
+ def gateway_arn: () -> ::String
1250
+ end
1251
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_maintenance_start_time-instance_method
1252
+ def update_maintenance_start_time: (
1253
+ gateway_arn: ::String,
1254
+ hour_of_day: ::Integer,
1255
+ minute_of_hour: ::Integer,
1256
+ ?day_of_week: ::Integer,
1257
+ ?day_of_month: ::Integer
1258
+ ) -> _UpdateMaintenanceStartTimeResponseSuccess
1259
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMaintenanceStartTimeResponseSuccess
1260
+
1261
+ interface _UpdateNFSFileShareResponseSuccess
1262
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNFSFileShareOutput]
1263
+ def file_share_arn: () -> ::String
1264
+ end
1265
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_nfs_file_share-instance_method
1266
+ def update_nfs_file_share: (
1267
+ file_share_arn: ::String,
1268
+ ?kms_encrypted: bool,
1269
+ ?kms_key: ::String,
1270
+ ?nfs_file_share_defaults: {
1271
+ file_mode: ::String?,
1272
+ directory_mode: ::String?,
1273
+ group_id: ::Integer?,
1274
+ owner_id: ::Integer?
1275
+ },
1276
+ ?default_storage_class: ::String,
1277
+ ?object_acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control" | "aws-exec-read"),
1278
+ ?client_list: Array[::String],
1279
+ ?squash: ::String,
1280
+ ?read_only: bool,
1281
+ ?guess_mime_type_enabled: bool,
1282
+ ?requester_pays: bool,
1283
+ ?file_share_name: ::String,
1284
+ ?cache_attributes: {
1285
+ cache_stale_timeout_in_seconds: ::Integer?
1286
+ },
1287
+ ?notification_policy: ::String,
1288
+ ?audit_destination_arn: ::String
1289
+ ) -> _UpdateNFSFileShareResponseSuccess
1290
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNFSFileShareResponseSuccess
1291
+
1292
+ interface _UpdateSMBFileShareResponseSuccess
1293
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSMBFileShareOutput]
1294
+ def file_share_arn: () -> ::String
1295
+ end
1296
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_smb_file_share-instance_method
1297
+ def update_smb_file_share: (
1298
+ file_share_arn: ::String,
1299
+ ?kms_encrypted: bool,
1300
+ ?kms_key: ::String,
1301
+ ?default_storage_class: ::String,
1302
+ ?object_acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control" | "aws-exec-read"),
1303
+ ?read_only: bool,
1304
+ ?guess_mime_type_enabled: bool,
1305
+ ?requester_pays: bool,
1306
+ ?smbacl_enabled: bool,
1307
+ ?access_based_enumeration: bool,
1308
+ ?admin_user_list: Array[::String],
1309
+ ?valid_user_list: Array[::String],
1310
+ ?invalid_user_list: Array[::String],
1311
+ ?audit_destination_arn: ::String,
1312
+ ?case_sensitivity: ("ClientSpecified" | "CaseSensitive"),
1313
+ ?file_share_name: ::String,
1314
+ ?cache_attributes: {
1315
+ cache_stale_timeout_in_seconds: ::Integer?
1316
+ },
1317
+ ?notification_policy: ::String,
1318
+ ?oplocks_enabled: bool
1319
+ ) -> _UpdateSMBFileShareResponseSuccess
1320
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSMBFileShareResponseSuccess
1321
+
1322
+ interface _UpdateSMBFileShareVisibilityResponseSuccess
1323
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSMBFileShareVisibilityOutput]
1324
+ def gateway_arn: () -> ::String
1325
+ end
1326
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_smb_file_share_visibility-instance_method
1327
+ def update_smb_file_share_visibility: (
1328
+ gateway_arn: ::String,
1329
+ file_shares_visible: bool
1330
+ ) -> _UpdateSMBFileShareVisibilityResponseSuccess
1331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSMBFileShareVisibilityResponseSuccess
1332
+
1333
+ interface _UpdateSMBLocalGroupsResponseSuccess
1334
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSMBLocalGroupsOutput]
1335
+ def gateway_arn: () -> ::String
1336
+ end
1337
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_smb_local_groups-instance_method
1338
+ def update_smb_local_groups: (
1339
+ gateway_arn: ::String,
1340
+ smb_local_groups: {
1341
+ gateway_admins: Array[::String]?
1342
+ }
1343
+ ) -> _UpdateSMBLocalGroupsResponseSuccess
1344
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSMBLocalGroupsResponseSuccess
1345
+
1346
+ interface _UpdateSMBSecurityStrategyResponseSuccess
1347
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSMBSecurityStrategyOutput]
1348
+ def gateway_arn: () -> ::String
1349
+ end
1350
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_smb_security_strategy-instance_method
1351
+ def update_smb_security_strategy: (
1352
+ gateway_arn: ::String,
1353
+ smb_security_strategy: ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption")
1354
+ ) -> _UpdateSMBSecurityStrategyResponseSuccess
1355
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSMBSecurityStrategyResponseSuccess
1356
+
1357
+ interface _UpdateSnapshotScheduleResponseSuccess
1358
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSnapshotScheduleOutput]
1359
+ def volume_arn: () -> ::String
1360
+ end
1361
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_snapshot_schedule-instance_method
1362
+ def update_snapshot_schedule: (
1363
+ volume_arn: ::String,
1364
+ start_at: ::Integer,
1365
+ recurrence_in_hours: ::Integer,
1366
+ ?description: ::String,
1367
+ ?tags: Array[
1368
+ {
1369
+ key: ::String,
1370
+ value: ::String
1371
+ },
1372
+ ]
1373
+ ) -> _UpdateSnapshotScheduleResponseSuccess
1374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSnapshotScheduleResponseSuccess
1375
+
1376
+ interface _UpdateVTLDeviceTypeResponseSuccess
1377
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVTLDeviceTypeOutput]
1378
+ def vtl_device_arn: () -> ::String
1379
+ end
1380
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_vtl_device_type-instance_method
1381
+ def update_vtl_device_type: (
1382
+ vtl_device_arn: ::String,
1383
+ device_type: ::String
1384
+ ) -> _UpdateVTLDeviceTypeResponseSuccess
1385
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVTLDeviceTypeResponseSuccess
1386
+ end
1387
+ end
1388
+ end
1389
+