aws-sdk-backupgateway 1.16.0 → 1.18.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a18970142ad3c4850df54f3c6597bb82d85000f524e8d61a43fc5a26edd3212
4
- data.tar.gz: 8e165256c806ba1e9025755270d465367e29fd06a40cd5745f0277f00c983d50
3
+ metadata.gz: 1ebff2cb431124921d16e7c9471cbb25418ade1b932b2b293b4152a4a849a10c
4
+ data.tar.gz: 198e82a974a5c020ca879d4c70857540c4fee428e0c0542e4212f4eff6a173c2
5
5
  SHA512:
6
- metadata.gz: 7f51c2c764d25615b4ffd57d15f7a991ae6f4473126adef8fc2c9925bc11a57efae90893356ed0c0ee4fbc15f4cd9a49b6efd45d7ce236dcac2fdd17838f926f
7
- data.tar.gz: daa8dac09ed85b8a8519d71241660cc2276e0bdc81eef80c074693213abfce9e85a764118750033349a2e6ce995b44f6e6d9f50d24b37927d4b85e9941327574
6
+ metadata.gz: 6551b76c2e7215940234c3c4fba5d963922e3a7a395f904ebdd8fb7558bcd79aee999444d58555b4f62908d79aadfcd207ec00029375f1bb959b4fdb145ed877
7
+ data.tar.gz: f914c85b011258c4f71830073323ca4689409b60c8d26378abd1f6f8749f8969582fcc0dc72012e3d2974dab8aeb58643bca84d2361c043b549b1b29c78bac14
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.17.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.16.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -1412,7 +1412,7 @@ module Aws::BackupGateway
1412
1412
  params: params,
1413
1413
  config: config)
1414
1414
  context[:gem_name] = 'aws-sdk-backupgateway'
1415
- context[:gem_version] = '1.16.0'
1415
+ context[:gem_version] = '1.18.0'
1416
1416
  Seahorse::Client::Request.new(handlers, context)
1417
1417
  end
1418
1418
 
@@ -14,6 +14,7 @@ module Aws::BackupGateway
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::BackupGateway::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::BackupGateway
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-backupgateway/customizations'
52
52
  # @!group service
53
53
  module Aws::BackupGateway
54
54
 
55
- GEM_VERSION = '1.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,396 @@
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 BackupGateway
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/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 _AssociateGatewayToServerResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateGatewayToServerOutput]
78
+ def gateway_arn: () -> ::String
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#associate_gateway_to_server-instance_method
81
+ def associate_gateway_to_server: (
82
+ gateway_arn: ::String,
83
+ server_arn: ::String
84
+ ) -> _AssociateGatewayToServerResponseSuccess
85
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateGatewayToServerResponseSuccess
86
+
87
+ interface _CreateGatewayResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGatewayOutput]
89
+ def gateway_arn: () -> ::String
90
+ end
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#create_gateway-instance_method
92
+ def create_gateway: (
93
+ activation_key: ::String,
94
+ gateway_display_name: ::String,
95
+ gateway_type: ("BACKUP_VM"),
96
+ ?tags: Array[
97
+ {
98
+ key: ::String,
99
+ value: ::String
100
+ },
101
+ ]
102
+ ) -> _CreateGatewayResponseSuccess
103
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
104
+
105
+ interface _DeleteGatewayResponseSuccess
106
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayOutput]
107
+ def gateway_arn: () -> ::String
108
+ end
109
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#delete_gateway-instance_method
110
+ def delete_gateway: (
111
+ gateway_arn: ::String
112
+ ) -> _DeleteGatewayResponseSuccess
113
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayResponseSuccess
114
+
115
+ interface _DeleteHypervisorResponseSuccess
116
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteHypervisorOutput]
117
+ def hypervisor_arn: () -> ::String
118
+ end
119
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#delete_hypervisor-instance_method
120
+ def delete_hypervisor: (
121
+ hypervisor_arn: ::String
122
+ ) -> _DeleteHypervisorResponseSuccess
123
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteHypervisorResponseSuccess
124
+
125
+ interface _DisassociateGatewayFromServerResponseSuccess
126
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateGatewayFromServerOutput]
127
+ def gateway_arn: () -> ::String
128
+ end
129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#disassociate_gateway_from_server-instance_method
130
+ def disassociate_gateway_from_server: (
131
+ gateway_arn: ::String
132
+ ) -> _DisassociateGatewayFromServerResponseSuccess
133
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateGatewayFromServerResponseSuccess
134
+
135
+ interface _GetBandwidthRateLimitScheduleResponseSuccess
136
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBandwidthRateLimitScheduleOutput]
137
+ def bandwidth_rate_limit_intervals: () -> ::Array[Types::BandwidthRateLimitInterval]
138
+ def gateway_arn: () -> ::String
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#get_bandwidth_rate_limit_schedule-instance_method
141
+ def get_bandwidth_rate_limit_schedule: (
142
+ gateway_arn: ::String
143
+ ) -> _GetBandwidthRateLimitScheduleResponseSuccess
144
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBandwidthRateLimitScheduleResponseSuccess
145
+
146
+ interface _GetGatewayResponseSuccess
147
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGatewayOutput]
148
+ def gateway: () -> Types::GatewayDetails
149
+ end
150
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#get_gateway-instance_method
151
+ def get_gateway: (
152
+ gateway_arn: ::String
153
+ ) -> _GetGatewayResponseSuccess
154
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayResponseSuccess
155
+
156
+ interface _GetHypervisorResponseSuccess
157
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetHypervisorOutput]
158
+ def hypervisor: () -> Types::HypervisorDetails
159
+ end
160
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#get_hypervisor-instance_method
161
+ def get_hypervisor: (
162
+ hypervisor_arn: ::String
163
+ ) -> _GetHypervisorResponseSuccess
164
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHypervisorResponseSuccess
165
+
166
+ interface _GetHypervisorPropertyMappingsResponseSuccess
167
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetHypervisorPropertyMappingsOutput]
168
+ def hypervisor_arn: () -> ::String
169
+ def iam_role_arn: () -> ::String
170
+ def vmware_to_aws_tag_mappings: () -> ::Array[Types::VmwareToAwsTagMapping]
171
+ end
172
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#get_hypervisor_property_mappings-instance_method
173
+ def get_hypervisor_property_mappings: (
174
+ hypervisor_arn: ::String
175
+ ) -> _GetHypervisorPropertyMappingsResponseSuccess
176
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHypervisorPropertyMappingsResponseSuccess
177
+
178
+ interface _GetVirtualMachineResponseSuccess
179
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVirtualMachineOutput]
180
+ def virtual_machine: () -> Types::VirtualMachineDetails
181
+ end
182
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#get_virtual_machine-instance_method
183
+ def get_virtual_machine: (
184
+ resource_arn: ::String
185
+ ) -> _GetVirtualMachineResponseSuccess
186
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVirtualMachineResponseSuccess
187
+
188
+ interface _ImportHypervisorConfigurationResponseSuccess
189
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportHypervisorConfigurationOutput]
190
+ def hypervisor_arn: () -> ::String
191
+ end
192
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#import_hypervisor_configuration-instance_method
193
+ def import_hypervisor_configuration: (
194
+ host: ::String,
195
+ ?kms_key_arn: ::String,
196
+ name: ::String,
197
+ ?password: ::String,
198
+ ?tags: Array[
199
+ {
200
+ key: ::String,
201
+ value: ::String
202
+ },
203
+ ],
204
+ ?username: ::String
205
+ ) -> _ImportHypervisorConfigurationResponseSuccess
206
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportHypervisorConfigurationResponseSuccess
207
+
208
+ interface _ListGatewaysResponseSuccess
209
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewaysOutput]
210
+ def gateways: () -> ::Array[Types::Gateway]
211
+ def next_token: () -> ::String
212
+ end
213
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#list_gateways-instance_method
214
+ def list_gateways: (
215
+ ?max_results: ::Integer,
216
+ ?next_token: ::String
217
+ ) -> _ListGatewaysResponseSuccess
218
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewaysResponseSuccess
219
+
220
+ interface _ListHypervisorsResponseSuccess
221
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListHypervisorsOutput]
222
+ def hypervisors: () -> ::Array[Types::Hypervisor]
223
+ def next_token: () -> ::String
224
+ end
225
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#list_hypervisors-instance_method
226
+ def list_hypervisors: (
227
+ ?max_results: ::Integer,
228
+ ?next_token: ::String
229
+ ) -> _ListHypervisorsResponseSuccess
230
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHypervisorsResponseSuccess
231
+
232
+ interface _ListTagsForResourceResponseSuccess
233
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
234
+ def resource_arn: () -> ::String
235
+ def tags: () -> ::Array[Types::Tag]
236
+ end
237
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#list_tags_for_resource-instance_method
238
+ def list_tags_for_resource: (
239
+ resource_arn: ::String
240
+ ) -> _ListTagsForResourceResponseSuccess
241
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
242
+
243
+ interface _ListVirtualMachinesResponseSuccess
244
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVirtualMachinesOutput]
245
+ def next_token: () -> ::String
246
+ def virtual_machines: () -> ::Array[Types::VirtualMachine]
247
+ end
248
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#list_virtual_machines-instance_method
249
+ def list_virtual_machines: (
250
+ ?hypervisor_arn: ::String,
251
+ ?max_results: ::Integer,
252
+ ?next_token: ::String
253
+ ) -> _ListVirtualMachinesResponseSuccess
254
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVirtualMachinesResponseSuccess
255
+
256
+ interface _PutBandwidthRateLimitScheduleResponseSuccess
257
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutBandwidthRateLimitScheduleOutput]
258
+ def gateway_arn: () -> ::String
259
+ end
260
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#put_bandwidth_rate_limit_schedule-instance_method
261
+ def put_bandwidth_rate_limit_schedule: (
262
+ bandwidth_rate_limit_intervals: Array[
263
+ {
264
+ average_upload_rate_limit_in_bits_per_sec: ::Integer?,
265
+ days_of_week: Array[::Integer],
266
+ end_hour_of_day: ::Integer,
267
+ end_minute_of_hour: ::Integer,
268
+ start_hour_of_day: ::Integer,
269
+ start_minute_of_hour: ::Integer
270
+ },
271
+ ],
272
+ gateway_arn: ::String
273
+ ) -> _PutBandwidthRateLimitScheduleResponseSuccess
274
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutBandwidthRateLimitScheduleResponseSuccess
275
+
276
+ interface _PutHypervisorPropertyMappingsResponseSuccess
277
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutHypervisorPropertyMappingsOutput]
278
+ def hypervisor_arn: () -> ::String
279
+ end
280
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#put_hypervisor_property_mappings-instance_method
281
+ def put_hypervisor_property_mappings: (
282
+ hypervisor_arn: ::String,
283
+ iam_role_arn: ::String,
284
+ vmware_to_aws_tag_mappings: Array[
285
+ {
286
+ aws_tag_key: ::String,
287
+ aws_tag_value: ::String,
288
+ vmware_category: ::String,
289
+ vmware_tag_name: ::String
290
+ },
291
+ ]
292
+ ) -> _PutHypervisorPropertyMappingsResponseSuccess
293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutHypervisorPropertyMappingsResponseSuccess
294
+
295
+ interface _PutMaintenanceStartTimeResponseSuccess
296
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutMaintenanceStartTimeOutput]
297
+ def gateway_arn: () -> ::String
298
+ end
299
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#put_maintenance_start_time-instance_method
300
+ def put_maintenance_start_time: (
301
+ ?day_of_month: ::Integer,
302
+ ?day_of_week: ::Integer,
303
+ gateway_arn: ::String,
304
+ hour_of_day: ::Integer,
305
+ minute_of_hour: ::Integer
306
+ ) -> _PutMaintenanceStartTimeResponseSuccess
307
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutMaintenanceStartTimeResponseSuccess
308
+
309
+ interface _StartVirtualMachinesMetadataSyncResponseSuccess
310
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartVirtualMachinesMetadataSyncOutput]
311
+ def hypervisor_arn: () -> ::String
312
+ end
313
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#start_virtual_machines_metadata_sync-instance_method
314
+ def start_virtual_machines_metadata_sync: (
315
+ hypervisor_arn: ::String
316
+ ) -> _StartVirtualMachinesMetadataSyncResponseSuccess
317
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartVirtualMachinesMetadataSyncResponseSuccess
318
+
319
+ interface _TagResourceResponseSuccess
320
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
321
+ def resource_arn: () -> ::String
322
+ end
323
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#tag_resource-instance_method
324
+ def tag_resource: (
325
+ resource_arn: ::String,
326
+ tags: Array[
327
+ {
328
+ key: ::String,
329
+ value: ::String
330
+ },
331
+ ]
332
+ ) -> _TagResourceResponseSuccess
333
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
334
+
335
+ interface _TestHypervisorConfigurationResponseSuccess
336
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestHypervisorConfigurationOutput]
337
+ end
338
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#test_hypervisor_configuration-instance_method
339
+ def test_hypervisor_configuration: (
340
+ gateway_arn: ::String,
341
+ host: ::String,
342
+ ?password: ::String,
343
+ ?username: ::String
344
+ ) -> _TestHypervisorConfigurationResponseSuccess
345
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestHypervisorConfigurationResponseSuccess
346
+
347
+ interface _UntagResourceResponseSuccess
348
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
349
+ def resource_arn: () -> ::String
350
+ end
351
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#untag_resource-instance_method
352
+ def untag_resource: (
353
+ resource_arn: ::String,
354
+ tag_keys: Array[::String]
355
+ ) -> _UntagResourceResponseSuccess
356
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
357
+
358
+ interface _UpdateGatewayInformationResponseSuccess
359
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayInformationOutput]
360
+ def gateway_arn: () -> ::String
361
+ end
362
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#update_gateway_information-instance_method
363
+ def update_gateway_information: (
364
+ gateway_arn: ::String,
365
+ ?gateway_display_name: ::String
366
+ ) -> _UpdateGatewayInformationResponseSuccess
367
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayInformationResponseSuccess
368
+
369
+ interface _UpdateGatewaySoftwareNowResponseSuccess
370
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewaySoftwareNowOutput]
371
+ def gateway_arn: () -> ::String
372
+ end
373
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#update_gateway_software_now-instance_method
374
+ def update_gateway_software_now: (
375
+ gateway_arn: ::String
376
+ ) -> _UpdateGatewaySoftwareNowResponseSuccess
377
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewaySoftwareNowResponseSuccess
378
+
379
+ interface _UpdateHypervisorResponseSuccess
380
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateHypervisorOutput]
381
+ def hypervisor_arn: () -> ::String
382
+ end
383
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Client.html#update_hypervisor-instance_method
384
+ def update_hypervisor: (
385
+ ?host: ::String,
386
+ hypervisor_arn: ::String,
387
+ ?log_group_arn: ::String,
388
+ ?name: ::String,
389
+ ?password: ::String,
390
+ ?username: ::String
391
+ ) -> _UpdateHypervisorResponseSuccess
392
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateHypervisorResponseSuccess
393
+ end
394
+ end
395
+ end
396
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,40 @@
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 BackupGateway
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def error_code: () -> ::String
16
+ def message: () -> ::String
17
+ end
18
+ class ConflictException < ::Aws::Errors::ServiceError
19
+ def error_code: () -> ::String
20
+ def message: () -> ::String
21
+ end
22
+ class InternalServerException < ::Aws::Errors::ServiceError
23
+ def error_code: () -> ::String
24
+ def message: () -> ::String
25
+ end
26
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
27
+ def error_code: () -> ::String
28
+ def message: () -> ::String
29
+ end
30
+ class ThrottlingException < ::Aws::Errors::ServiceError
31
+ def error_code: () -> ::String
32
+ def message: () -> ::String
33
+ end
34
+ class ValidationException < ::Aws::Errors::ServiceError
35
+ def error_code: () -> ::String
36
+ def message: () -> ::String
37
+ end
38
+ end
39
+ end
40
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,80 @@
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 BackupGateway
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BackupGateway/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
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
+ ) -> void
73
+ | (?Hash[Symbol, untyped]) -> void
74
+
75
+ def client: () -> Client
76
+
77
+
78
+ end
79
+ end
80
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,436 @@
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::BackupGateway
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor error_code: ::String
13
+ attr_accessor message: ::String
14
+ SENSITIVE: []
15
+ end
16
+
17
+ class AssociateGatewayToServerInput
18
+ attr_accessor gateway_arn: ::String
19
+ attr_accessor server_arn: ::String
20
+ SENSITIVE: []
21
+ end
22
+
23
+ class AssociateGatewayToServerOutput
24
+ attr_accessor gateway_arn: ::String
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class BandwidthRateLimitInterval
29
+ attr_accessor average_upload_rate_limit_in_bits_per_sec: ::Integer
30
+ attr_accessor days_of_week: ::Array[::Integer]
31
+ attr_accessor end_hour_of_day: ::Integer
32
+ attr_accessor end_minute_of_hour: ::Integer
33
+ attr_accessor start_hour_of_day: ::Integer
34
+ attr_accessor start_minute_of_hour: ::Integer
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class ConflictException
39
+ attr_accessor error_code: ::String
40
+ attr_accessor message: ::String
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class CreateGatewayInput
45
+ attr_accessor activation_key: ::String
46
+ attr_accessor gateway_display_name: ::String
47
+ attr_accessor gateway_type: ("BACKUP_VM")
48
+ attr_accessor tags: ::Array[Types::Tag]
49
+ SENSITIVE: []
50
+ end
51
+
52
+ class CreateGatewayOutput
53
+ attr_accessor gateway_arn: ::String
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class DeleteGatewayInput
58
+ attr_accessor gateway_arn: ::String
59
+ SENSITIVE: []
60
+ end
61
+
62
+ class DeleteGatewayOutput
63
+ attr_accessor gateway_arn: ::String
64
+ SENSITIVE: []
65
+ end
66
+
67
+ class DeleteHypervisorInput
68
+ attr_accessor hypervisor_arn: ::String
69
+ SENSITIVE: []
70
+ end
71
+
72
+ class DeleteHypervisorOutput
73
+ attr_accessor hypervisor_arn: ::String
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class DisassociateGatewayFromServerInput
78
+ attr_accessor gateway_arn: ::String
79
+ SENSITIVE: []
80
+ end
81
+
82
+ class DisassociateGatewayFromServerOutput
83
+ attr_accessor gateway_arn: ::String
84
+ SENSITIVE: []
85
+ end
86
+
87
+ class Gateway
88
+ attr_accessor gateway_arn: ::String
89
+ attr_accessor gateway_display_name: ::String
90
+ attr_accessor gateway_type: ("BACKUP_VM")
91
+ attr_accessor hypervisor_id: ::String
92
+ attr_accessor last_seen_time: ::Time
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class GatewayDetails
97
+ attr_accessor gateway_arn: ::String
98
+ attr_accessor gateway_display_name: ::String
99
+ attr_accessor gateway_type: ("BACKUP_VM")
100
+ attr_accessor hypervisor_id: ::String
101
+ attr_accessor last_seen_time: ::Time
102
+ attr_accessor maintenance_start_time: Types::MaintenanceStartTime
103
+ attr_accessor next_update_availability_time: ::Time
104
+ attr_accessor vpc_endpoint: ::String
105
+ SENSITIVE: []
106
+ end
107
+
108
+ class GetBandwidthRateLimitScheduleInput
109
+ attr_accessor gateway_arn: ::String
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class GetBandwidthRateLimitScheduleOutput
114
+ attr_accessor bandwidth_rate_limit_intervals: ::Array[Types::BandwidthRateLimitInterval]
115
+ attr_accessor gateway_arn: ::String
116
+ SENSITIVE: []
117
+ end
118
+
119
+ class GetGatewayInput
120
+ attr_accessor gateway_arn: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class GetGatewayOutput
125
+ attr_accessor gateway: Types::GatewayDetails
126
+ SENSITIVE: []
127
+ end
128
+
129
+ class GetHypervisorInput
130
+ attr_accessor hypervisor_arn: ::String
131
+ SENSITIVE: []
132
+ end
133
+
134
+ class GetHypervisorOutput
135
+ attr_accessor hypervisor: Types::HypervisorDetails
136
+ SENSITIVE: []
137
+ end
138
+
139
+ class GetHypervisorPropertyMappingsInput
140
+ attr_accessor hypervisor_arn: ::String
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class GetHypervisorPropertyMappingsOutput
145
+ attr_accessor hypervisor_arn: ::String
146
+ attr_accessor iam_role_arn: ::String
147
+ attr_accessor vmware_to_aws_tag_mappings: ::Array[Types::VmwareToAwsTagMapping]
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class GetVirtualMachineInput
152
+ attr_accessor resource_arn: ::String
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class GetVirtualMachineOutput
157
+ attr_accessor virtual_machine: Types::VirtualMachineDetails
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class Hypervisor
162
+ attr_accessor host: ::String
163
+ attr_accessor hypervisor_arn: ::String
164
+ attr_accessor kms_key_arn: ::String
165
+ attr_accessor name: ::String
166
+ attr_accessor state: ("PENDING" | "ONLINE" | "OFFLINE" | "ERROR")
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class HypervisorDetails
171
+ attr_accessor host: ::String
172
+ attr_accessor hypervisor_arn: ::String
173
+ attr_accessor kms_key_arn: ::String
174
+ attr_accessor last_successful_metadata_sync_time: ::Time
175
+ attr_accessor latest_metadata_sync_status: ("CREATED" | "RUNNING" | "FAILED" | "PARTIALLY_FAILED" | "SUCCEEDED")
176
+ attr_accessor latest_metadata_sync_status_message: ::String
177
+ attr_accessor log_group_arn: ::String
178
+ attr_accessor name: ::String
179
+ attr_accessor state: ("PENDING" | "ONLINE" | "OFFLINE" | "ERROR")
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class ImportHypervisorConfigurationInput
184
+ attr_accessor host: ::String
185
+ attr_accessor kms_key_arn: ::String
186
+ attr_accessor name: ::String
187
+ attr_accessor password: ::String
188
+ attr_accessor tags: ::Array[Types::Tag]
189
+ attr_accessor username: ::String
190
+ SENSITIVE: [:password, :username]
191
+ end
192
+
193
+ class ImportHypervisorConfigurationOutput
194
+ attr_accessor hypervisor_arn: ::String
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class InternalServerException
199
+ attr_accessor error_code: ::String
200
+ attr_accessor message: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class ListGatewaysInput
205
+ attr_accessor max_results: ::Integer
206
+ attr_accessor next_token: ::String
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class ListGatewaysOutput
211
+ attr_accessor gateways: ::Array[Types::Gateway]
212
+ attr_accessor next_token: ::String
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class ListHypervisorsInput
217
+ attr_accessor max_results: ::Integer
218
+ attr_accessor next_token: ::String
219
+ SENSITIVE: []
220
+ end
221
+
222
+ class ListHypervisorsOutput
223
+ attr_accessor hypervisors: ::Array[Types::Hypervisor]
224
+ attr_accessor next_token: ::String
225
+ SENSITIVE: []
226
+ end
227
+
228
+ class ListTagsForResourceInput
229
+ attr_accessor resource_arn: ::String
230
+ SENSITIVE: []
231
+ end
232
+
233
+ class ListTagsForResourceOutput
234
+ attr_accessor resource_arn: ::String
235
+ attr_accessor tags: ::Array[Types::Tag]
236
+ SENSITIVE: []
237
+ end
238
+
239
+ class ListVirtualMachinesInput
240
+ attr_accessor hypervisor_arn: ::String
241
+ attr_accessor max_results: ::Integer
242
+ attr_accessor next_token: ::String
243
+ SENSITIVE: []
244
+ end
245
+
246
+ class ListVirtualMachinesOutput
247
+ attr_accessor next_token: ::String
248
+ attr_accessor virtual_machines: ::Array[Types::VirtualMachine]
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class MaintenanceStartTime
253
+ attr_accessor day_of_month: ::Integer
254
+ attr_accessor day_of_week: ::Integer
255
+ attr_accessor hour_of_day: ::Integer
256
+ attr_accessor minute_of_hour: ::Integer
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class PutBandwidthRateLimitScheduleInput
261
+ attr_accessor bandwidth_rate_limit_intervals: ::Array[Types::BandwidthRateLimitInterval]
262
+ attr_accessor gateway_arn: ::String
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class PutBandwidthRateLimitScheduleOutput
267
+ attr_accessor gateway_arn: ::String
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class PutHypervisorPropertyMappingsInput
272
+ attr_accessor hypervisor_arn: ::String
273
+ attr_accessor iam_role_arn: ::String
274
+ attr_accessor vmware_to_aws_tag_mappings: ::Array[Types::VmwareToAwsTagMapping]
275
+ SENSITIVE: []
276
+ end
277
+
278
+ class PutHypervisorPropertyMappingsOutput
279
+ attr_accessor hypervisor_arn: ::String
280
+ SENSITIVE: []
281
+ end
282
+
283
+ class PutMaintenanceStartTimeInput
284
+ attr_accessor day_of_month: ::Integer
285
+ attr_accessor day_of_week: ::Integer
286
+ attr_accessor gateway_arn: ::String
287
+ attr_accessor hour_of_day: ::Integer
288
+ attr_accessor minute_of_hour: ::Integer
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class PutMaintenanceStartTimeOutput
293
+ attr_accessor gateway_arn: ::String
294
+ SENSITIVE: []
295
+ end
296
+
297
+ class ResourceNotFoundException
298
+ attr_accessor error_code: ::String
299
+ attr_accessor message: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class StartVirtualMachinesMetadataSyncInput
304
+ attr_accessor hypervisor_arn: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class StartVirtualMachinesMetadataSyncOutput
309
+ attr_accessor hypervisor_arn: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class Tag
314
+ attr_accessor key: ::String
315
+ attr_accessor value: ::String
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class TagResourceInput
320
+ attr_accessor resource_arn: ::String
321
+ attr_accessor tags: ::Array[Types::Tag]
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class TagResourceOutput
326
+ attr_accessor resource_arn: ::String
327
+ SENSITIVE: []
328
+ end
329
+
330
+ class TestHypervisorConfigurationInput
331
+ attr_accessor gateway_arn: ::String
332
+ attr_accessor host: ::String
333
+ attr_accessor password: ::String
334
+ attr_accessor username: ::String
335
+ SENSITIVE: [:password, :username]
336
+ end
337
+
338
+ class TestHypervisorConfigurationOutput < Aws::EmptyStructure
339
+ end
340
+
341
+ class ThrottlingException
342
+ attr_accessor error_code: ::String
343
+ attr_accessor message: ::String
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class UntagResourceInput
348
+ attr_accessor resource_arn: ::String
349
+ attr_accessor tag_keys: ::Array[::String]
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class UntagResourceOutput
354
+ attr_accessor resource_arn: ::String
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class UpdateGatewayInformationInput
359
+ attr_accessor gateway_arn: ::String
360
+ attr_accessor gateway_display_name: ::String
361
+ SENSITIVE: []
362
+ end
363
+
364
+ class UpdateGatewayInformationOutput
365
+ attr_accessor gateway_arn: ::String
366
+ SENSITIVE: []
367
+ end
368
+
369
+ class UpdateGatewaySoftwareNowInput
370
+ attr_accessor gateway_arn: ::String
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class UpdateGatewaySoftwareNowOutput
375
+ attr_accessor gateway_arn: ::String
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class UpdateHypervisorInput
380
+ attr_accessor host: ::String
381
+ attr_accessor hypervisor_arn: ::String
382
+ attr_accessor log_group_arn: ::String
383
+ attr_accessor name: ::String
384
+ attr_accessor password: ::String
385
+ attr_accessor username: ::String
386
+ SENSITIVE: [:password, :username]
387
+ end
388
+
389
+ class UpdateHypervisorOutput
390
+ attr_accessor hypervisor_arn: ::String
391
+ SENSITIVE: []
392
+ end
393
+
394
+ class ValidationException
395
+ attr_accessor error_code: ::String
396
+ attr_accessor message: ::String
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class VirtualMachine
401
+ attr_accessor host_name: ::String
402
+ attr_accessor hypervisor_id: ::String
403
+ attr_accessor last_backup_date: ::Time
404
+ attr_accessor name: ::String
405
+ attr_accessor path: ::String
406
+ attr_accessor resource_arn: ::String
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class VirtualMachineDetails
411
+ attr_accessor host_name: ::String
412
+ attr_accessor hypervisor_id: ::String
413
+ attr_accessor last_backup_date: ::Time
414
+ attr_accessor name: ::String
415
+ attr_accessor path: ::String
416
+ attr_accessor resource_arn: ::String
417
+ attr_accessor vmware_tags: ::Array[Types::VmwareTag]
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class VmwareTag
422
+ attr_accessor vmware_category: ::String
423
+ attr_accessor vmware_tag_description: ::String
424
+ attr_accessor vmware_tag_name: ::String
425
+ SENSITIVE: []
426
+ end
427
+
428
+ class VmwareToAwsTagMapping
429
+ attr_accessor aws_tag_key: ::String
430
+ attr_accessor aws_tag_value: ::String
431
+ attr_accessor vmware_category: ::String
432
+ attr_accessor vmware_tag_name: ::String
433
+ SENSITIVE: []
434
+ end
435
+ end
436
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 BackupGateway
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-backupgateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-01-26 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.188.0
22
+ version: 3.191.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.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-backupgateway/plugins/endpoints.rb
67
67
  - lib/aws-sdk-backupgateway/resource.rb
68
68
  - lib/aws-sdk-backupgateway/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-backupgateway
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-backupgateway/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - AWS Backup Gateway
94
99
  test_files: []