aws-sdk-drs 1.29.0 → 1.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2eb0a3c5654df3bdf9de04d49b15dc718ddf545105a29bdabd0c3a000a3559a
4
- data.tar.gz: 66e1f4b8269041e977a504d9d755d84445546d6a2070799ce3d38a80cce05310
3
+ metadata.gz: e6afc688de2e34cd9fb4ed9ca87f0e6912743963506aa86d649a68cbea48368b
4
+ data.tar.gz: 18d98bf6b98b0e40caf7ed28fc5d4dd2178e1192ec91dbda18f1a8bac6336a08
5
5
  SHA512:
6
- metadata.gz: 772d155c8f0b45f5bd6e5e8d90c167c89c40336e4a79fdbe6f666da475a8557e5db72b9364dde5ffb46db3481642a9cc5b73169e510e4089340d8dd172dd7d3c
7
- data.tar.gz: d9ec63eaaaa23d229cc88507ebc579857540edd7fab388efbff04271dfe77a098f51dfad1ec5f74cb6ce085fd50c2c506936b94f90812ff4812e0e568cd64e2a
6
+ metadata.gz: aba61a8c7ccccaf5538222e5cf16c4a43a56ba454adcd68a8db04582bb5027e894542f6897c3b9ae9d60a0bf4721c3da92cdb422f66fd342ddb2a58d414440e1
7
+ data.tar.gz: 182afd777210a823abf00293d5705f1d8b8df71ef0bb90a99b6a8e72131f555f4cac25cf226952578c6fe8df1be2a5a8b14aea9afd84d0c1cfa711f3e4c8fba1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.30.0 (2024-04-18)
10
+ ------------------
11
+
12
+ * Feature - Outpost ARN added to Source Server and Recovery Instance
13
+
4
14
  1.29.0 (2024-02-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.31.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::Drs
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::Drs
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::Drs
337
346
  # @option options [Aws::Drs::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Drs::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -498,8 +522,9 @@ module Aws::Drs
498
522
  # resp.source_server.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
499
523
  # resp.source_server.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
500
524
  # resp.source_server.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
501
- # resp.source_server.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"
525
+ # resp.source_server.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE", "PENDING"
502
526
  # resp.source_server.data_replication_info.staging_availability_zone #=> String
527
+ # resp.source_server.data_replication_info.staging_outpost_arn #=> String
503
528
  # resp.source_server.last_launch_result #=> String, one of "NOT_STARTED", "PENDING", "SUCCEEDED", "FAILED"
504
529
  # resp.source_server.life_cycle.added_to_service_date_time #=> String
505
530
  # resp.source_server.life_cycle.elapsed_replication_duration #=> String
@@ -515,6 +540,7 @@ module Aws::Drs
515
540
  # resp.source_server.source_cloud_properties.origin_account_id #=> String
516
541
  # resp.source_server.source_cloud_properties.origin_availability_zone #=> String
517
542
  # resp.source_server.source_cloud_properties.origin_region #=> String
543
+ # resp.source_server.source_cloud_properties.source_outpost_arn #=> String
518
544
  # resp.source_server.source_network_id #=> String
519
545
  # resp.source_server.source_properties.cpus #=> Array
520
546
  # resp.source_server.source_properties.cpus[0].cores #=> Integer
@@ -1229,6 +1255,7 @@ module Aws::Drs
1229
1255
  # resp.items[0].data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
1230
1256
  # resp.items[0].data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
1231
1257
  # resp.items[0].data_replication_info.staging_availability_zone #=> String
1258
+ # resp.items[0].data_replication_info.staging_outpost_arn #=> String
1232
1259
  # resp.items[0].ec2_instance_id #=> String
1233
1260
  # resp.items[0].ec2_instance_state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "SHUTTING-DOWN", "TERMINATED", "NOT_FOUND"
1234
1261
  # resp.items[0].failback.agent_last_seen_by_service_date_time #=> String
@@ -1266,6 +1293,7 @@ module Aws::Drs
1266
1293
  # resp.items[0].recovery_instance_properties.network_interfaces[0].mac_address #=> String
1267
1294
  # resp.items[0].recovery_instance_properties.os.full_string #=> String
1268
1295
  # resp.items[0].recovery_instance_properties.ram_bytes #=> Integer
1296
+ # resp.items[0].source_outpost_arn #=> String
1269
1297
  # resp.items[0].source_server_id #=> String
1270
1298
  # resp.items[0].tags #=> Hash
1271
1299
  # resp.items[0].tags["TagKey"] #=> String
@@ -1513,8 +1541,9 @@ module Aws::Drs
1513
1541
  # resp.items[0].data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
1514
1542
  # resp.items[0].data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
1515
1543
  # resp.items[0].data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
1516
- # resp.items[0].data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"
1544
+ # resp.items[0].data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE", "PENDING"
1517
1545
  # resp.items[0].data_replication_info.staging_availability_zone #=> String
1546
+ # resp.items[0].data_replication_info.staging_outpost_arn #=> String
1518
1547
  # resp.items[0].last_launch_result #=> String, one of "NOT_STARTED", "PENDING", "SUCCEEDED", "FAILED"
1519
1548
  # resp.items[0].life_cycle.added_to_service_date_time #=> String
1520
1549
  # resp.items[0].life_cycle.elapsed_replication_duration #=> String
@@ -1530,6 +1559,7 @@ module Aws::Drs
1530
1559
  # resp.items[0].source_cloud_properties.origin_account_id #=> String
1531
1560
  # resp.items[0].source_cloud_properties.origin_availability_zone #=> String
1532
1561
  # resp.items[0].source_cloud_properties.origin_region #=> String
1562
+ # resp.items[0].source_cloud_properties.source_outpost_arn #=> String
1533
1563
  # resp.items[0].source_network_id #=> String
1534
1564
  # resp.items[0].source_properties.cpus #=> Array
1535
1565
  # resp.items[0].source_properties.cpus[0].cores #=> Integer
@@ -1664,8 +1694,9 @@ module Aws::Drs
1664
1694
  # resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
1665
1695
  # resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
1666
1696
  # resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
1667
- # resp.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"
1697
+ # resp.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE", "PENDING"
1668
1698
  # resp.data_replication_info.staging_availability_zone #=> String
1699
+ # resp.data_replication_info.staging_outpost_arn #=> String
1669
1700
  # resp.last_launch_result #=> String, one of "NOT_STARTED", "PENDING", "SUCCEEDED", "FAILED"
1670
1701
  # resp.life_cycle.added_to_service_date_time #=> String
1671
1702
  # resp.life_cycle.elapsed_replication_duration #=> String
@@ -1681,6 +1712,7 @@ module Aws::Drs
1681
1712
  # resp.source_cloud_properties.origin_account_id #=> String
1682
1713
  # resp.source_cloud_properties.origin_availability_zone #=> String
1683
1714
  # resp.source_cloud_properties.origin_region #=> String
1715
+ # resp.source_cloud_properties.source_outpost_arn #=> String
1684
1716
  # resp.source_network_id #=> String
1685
1717
  # resp.source_properties.cpus #=> Array
1686
1718
  # resp.source_properties.cpus[0].cores #=> Integer
@@ -2241,8 +2273,9 @@ module Aws::Drs
2241
2273
  # resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
2242
2274
  # resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
2243
2275
  # resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
2244
- # resp.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"
2276
+ # resp.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE", "PENDING"
2245
2277
  # resp.data_replication_info.staging_availability_zone #=> String
2278
+ # resp.data_replication_info.staging_outpost_arn #=> String
2246
2279
  # resp.last_launch_result #=> String, one of "NOT_STARTED", "PENDING", "SUCCEEDED", "FAILED"
2247
2280
  # resp.life_cycle.added_to_service_date_time #=> String
2248
2281
  # resp.life_cycle.elapsed_replication_duration #=> String
@@ -2258,6 +2291,7 @@ module Aws::Drs
2258
2291
  # resp.source_cloud_properties.origin_account_id #=> String
2259
2292
  # resp.source_cloud_properties.origin_availability_zone #=> String
2260
2293
  # resp.source_cloud_properties.origin_region #=> String
2294
+ # resp.source_cloud_properties.source_outpost_arn #=> String
2261
2295
  # resp.source_network_id #=> String
2262
2296
  # resp.source_properties.cpus #=> Array
2263
2297
  # resp.source_properties.cpus[0].cores #=> Integer
@@ -2514,8 +2548,9 @@ module Aws::Drs
2514
2548
  # resp.source_server.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
2515
2549
  # resp.source_server.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
2516
2550
  # resp.source_server.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
2517
- # resp.source_server.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"
2551
+ # resp.source_server.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE", "PENDING"
2518
2552
  # resp.source_server.data_replication_info.staging_availability_zone #=> String
2553
+ # resp.source_server.data_replication_info.staging_outpost_arn #=> String
2519
2554
  # resp.source_server.last_launch_result #=> String, one of "NOT_STARTED", "PENDING", "SUCCEEDED", "FAILED"
2520
2555
  # resp.source_server.life_cycle.added_to_service_date_time #=> String
2521
2556
  # resp.source_server.life_cycle.elapsed_replication_duration #=> String
@@ -2531,6 +2566,7 @@ module Aws::Drs
2531
2566
  # resp.source_server.source_cloud_properties.origin_account_id #=> String
2532
2567
  # resp.source_server.source_cloud_properties.origin_availability_zone #=> String
2533
2568
  # resp.source_server.source_cloud_properties.origin_region #=> String
2569
+ # resp.source_server.source_cloud_properties.source_outpost_arn #=> String
2534
2570
  # resp.source_server.source_network_id #=> String
2535
2571
  # resp.source_server.source_properties.cpus #=> Array
2536
2572
  # resp.source_server.source_properties.cpus[0].cores #=> Integer
@@ -2751,8 +2787,9 @@ module Aws::Drs
2751
2787
  # resp.source_server.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
2752
2788
  # resp.source_server.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
2753
2789
  # resp.source_server.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
2754
- # resp.source_server.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"
2790
+ # resp.source_server.data_replication_info.replicated_disks[0].volume_status #=> String, one of "REGULAR", "CONTAINS_MARKETPLACE_PRODUCT_CODES", "MISSING_VOLUME_ATTRIBUTES", "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE", "PENDING"
2755
2791
  # resp.source_server.data_replication_info.staging_availability_zone #=> String
2792
+ # resp.source_server.data_replication_info.staging_outpost_arn #=> String
2756
2793
  # resp.source_server.last_launch_result #=> String, one of "NOT_STARTED", "PENDING", "SUCCEEDED", "FAILED"
2757
2794
  # resp.source_server.life_cycle.added_to_service_date_time #=> String
2758
2795
  # resp.source_server.life_cycle.elapsed_replication_duration #=> String
@@ -2768,6 +2805,7 @@ module Aws::Drs
2768
2805
  # resp.source_server.source_cloud_properties.origin_account_id #=> String
2769
2806
  # resp.source_server.source_cloud_properties.origin_availability_zone #=> String
2770
2807
  # resp.source_server.source_cloud_properties.origin_region #=> String
2808
+ # resp.source_server.source_cloud_properties.source_outpost_arn #=> String
2771
2809
  # resp.source_server.source_network_id #=> String
2772
2810
  # resp.source_server.source_properties.cpus #=> Array
2773
2811
  # resp.source_server.source_properties.cpus[0].cores #=> Integer
@@ -3491,7 +3529,7 @@ module Aws::Drs
3491
3529
  params: params,
3492
3530
  config: config)
3493
3531
  context[:gem_name] = 'aws-sdk-drs'
3494
- context[:gem_version] = '1.29.0'
3532
+ context[:gem_version] = '1.31.0'
3495
3533
  Seahorse::Client::Request.new(handlers, context)
3496
3534
  end
3497
3535
 
@@ -179,6 +179,7 @@ module Aws::Drs
179
179
  NetworkInterfaces = Shapes::ListShape.new(name: 'NetworkInterfaces')
180
180
  OS = Shapes::StructureShape.new(name: 'OS')
181
181
  OriginEnvironment = Shapes::StringShape.new(name: 'OriginEnvironment')
182
+ OutpostARN = Shapes::StringShape.new(name: 'OutpostARN')
182
183
  PITPolicy = Shapes::ListShape.new(name: 'PITPolicy')
183
184
  PITPolicyRule = Shapes::StructureShape.new(name: 'PITPolicyRule')
184
185
  PITPolicyRuleUnits = Shapes::StringShape.new(name: 'PITPolicyRuleUnits')
@@ -405,6 +406,7 @@ module Aws::Drs
405
406
  DataReplicationInfo.add_member(:lag_duration, Shapes::ShapeRef.new(shape: ISO8601DurationString, location_name: "lagDuration"))
406
407
  DataReplicationInfo.add_member(:replicated_disks, Shapes::ShapeRef.new(shape: DataReplicationInfoReplicatedDisks, location_name: "replicatedDisks"))
407
408
  DataReplicationInfo.add_member(:staging_availability_zone, Shapes::ShapeRef.new(shape: AwsAvailabilityZone, location_name: "stagingAvailabilityZone"))
409
+ DataReplicationInfo.add_member(:staging_outpost_arn, Shapes::ShapeRef.new(shape: OutpostARN, location_name: "stagingOutpostArn"))
408
410
  DataReplicationInfo.struct_class = Types::DataReplicationInfo
409
411
 
410
412
  DataReplicationInfoReplicatedDisk.add_member(:backlogged_storage_bytes, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "backloggedStorageBytes"))
@@ -861,6 +863,7 @@ module Aws::Drs
861
863
  RecoveryInstance.add_member(:point_in_time_snapshot_date_time, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "pointInTimeSnapshotDateTime"))
862
864
  RecoveryInstance.add_member(:recovery_instance_id, Shapes::ShapeRef.new(shape: RecoveryInstanceID, location_name: "recoveryInstanceID"))
863
865
  RecoveryInstance.add_member(:recovery_instance_properties, Shapes::ShapeRef.new(shape: RecoveryInstanceProperties, location_name: "recoveryInstanceProperties"))
866
+ RecoveryInstance.add_member(:source_outpost_arn, Shapes::ShapeRef.new(shape: OutpostARN, location_name: "sourceOutpostArn"))
864
867
  RecoveryInstance.add_member(:source_server_id, Shapes::ShapeRef.new(shape: SourceServerID, location_name: "sourceServerID"))
865
868
  RecoveryInstance.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
866
869
  RecoveryInstance.struct_class = Types::RecoveryInstance
@@ -876,6 +879,7 @@ module Aws::Drs
876
879
  RecoveryInstanceDataReplicationInfo.add_member(:lag_duration, Shapes::ShapeRef.new(shape: ISO8601DatetimeString, location_name: "lagDuration"))
877
880
  RecoveryInstanceDataReplicationInfo.add_member(:replicated_disks, Shapes::ShapeRef.new(shape: RecoveryInstanceDataReplicationInfoReplicatedDisks, location_name: "replicatedDisks"))
878
881
  RecoveryInstanceDataReplicationInfo.add_member(:staging_availability_zone, Shapes::ShapeRef.new(shape: AwsAvailabilityZone, location_name: "stagingAvailabilityZone"))
882
+ RecoveryInstanceDataReplicationInfo.add_member(:staging_outpost_arn, Shapes::ShapeRef.new(shape: OutpostARN, location_name: "stagingOutpostArn"))
879
883
  RecoveryInstanceDataReplicationInfo.struct_class = Types::RecoveryInstanceDataReplicationInfo
880
884
 
881
885
  RecoveryInstanceDataReplicationInfoReplicatedDisk.add_member(:backlogged_storage_bytes, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "backloggedStorageBytes"))
@@ -1023,6 +1027,7 @@ module Aws::Drs
1023
1027
  SourceCloudProperties.add_member(:origin_account_id, Shapes::ShapeRef.new(shape: AccountID, location_name: "originAccountID"))
1024
1028
  SourceCloudProperties.add_member(:origin_availability_zone, Shapes::ShapeRef.new(shape: AwsAvailabilityZone, location_name: "originAvailabilityZone"))
1025
1029
  SourceCloudProperties.add_member(:origin_region, Shapes::ShapeRef.new(shape: AwsRegion, location_name: "originRegion"))
1030
+ SourceCloudProperties.add_member(:source_outpost_arn, Shapes::ShapeRef.new(shape: OutpostARN, location_name: "sourceOutpostArn"))
1026
1031
  SourceCloudProperties.struct_class = Types::SourceCloudProperties
1027
1032
 
1028
1033
  SourceNetwork.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "arn"))
@@ -433,6 +433,10 @@ module Aws::Drs
433
433
  # AWS Availability zone into which data is being replicated.
434
434
  # @return [String]
435
435
  #
436
+ # @!attribute [rw] staging_outpost_arn
437
+ # The ARN of the staging Outpost
438
+ # @return [String]
439
+ #
436
440
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/DataReplicationInfo AWS API Documentation
437
441
  #
438
442
  class DataReplicationInfo < Struct.new(
@@ -442,7 +446,8 @@ module Aws::Drs
442
446
  :eta_date_time,
443
447
  :lag_duration,
444
448
  :replicated_disks,
445
- :staging_availability_zone)
449
+ :staging_availability_zone,
450
+ :staging_outpost_arn)
446
451
  SENSITIVE = []
447
452
  include Aws::Structure
448
453
  end
@@ -2308,6 +2313,10 @@ module Aws::Drs
2308
2313
  # Properties of the Recovery Instance machine.
2309
2314
  # @return [Types::RecoveryInstanceProperties]
2310
2315
  #
2316
+ # @!attribute [rw] source_outpost_arn
2317
+ # The ARN of the source Outpost
2318
+ # @return [String]
2319
+ #
2311
2320
  # @!attribute [rw] source_server_id
2312
2321
  # The Source Server ID that this Recovery Instance is associated with.
2313
2322
  # @return [String]
@@ -2332,6 +2341,7 @@ module Aws::Drs
2332
2341
  :point_in_time_snapshot_date_time,
2333
2342
  :recovery_instance_id,
2334
2343
  :recovery_instance_properties,
2344
+ :source_outpost_arn,
2335
2345
  :source_server_id,
2336
2346
  :tags)
2337
2347
  SENSITIVE = [:tags]
@@ -2387,6 +2397,10 @@ module Aws::Drs
2387
2397
  # AWS Availability zone into which data is being replicated.
2388
2398
  # @return [String]
2389
2399
  #
2400
+ # @!attribute [rw] staging_outpost_arn
2401
+ # The ARN of the staging Outpost
2402
+ # @return [String]
2403
+ #
2390
2404
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/RecoveryInstanceDataReplicationInfo AWS API Documentation
2391
2405
  #
2392
2406
  class RecoveryInstanceDataReplicationInfo < Struct.new(
@@ -2396,7 +2410,8 @@ module Aws::Drs
2396
2410
  :eta_date_time,
2397
2411
  :lag_duration,
2398
2412
  :replicated_disks,
2399
- :staging_availability_zone)
2413
+ :staging_availability_zone,
2414
+ :staging_outpost_arn)
2400
2415
  SENSITIVE = []
2401
2416
  include Aws::Structure
2402
2417
  end
@@ -3029,12 +3044,17 @@ module Aws::Drs
3029
3044
  # AWS Region for an EC2-originated Source Server.
3030
3045
  # @return [String]
3031
3046
  #
3047
+ # @!attribute [rw] source_outpost_arn
3048
+ # The ARN of the source Outpost
3049
+ # @return [String]
3050
+ #
3032
3051
  # @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/SourceCloudProperties AWS API Documentation
3033
3052
  #
3034
3053
  class SourceCloudProperties < Struct.new(
3035
3054
  :origin_account_id,
3036
3055
  :origin_availability_zone,
3037
- :origin_region)
3056
+ :origin_region,
3057
+ :source_outpost_arn)
3038
3058
  SENSITIVE = []
3039
3059
  include Aws::Structure
3040
3060
  end
data/lib/aws-sdk-drs.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-drs/customizations'
52
52
  # @!group service
53
53
  module Aws::Drs
54
54
 
55
- GEM_VERSION = '1.29.0'
55
+ GEM_VERSION = '1.31.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -129,6 +129,7 @@ module Aws::Drs
129
129
  attr_accessor lag_duration: ::String
130
130
  attr_accessor replicated_disks: ::Array[Types::DataReplicationInfoReplicatedDisk]
131
131
  attr_accessor staging_availability_zone: ::String
132
+ attr_accessor staging_outpost_arn: ::String
132
133
  SENSITIVE: []
133
134
  end
134
135
 
@@ -138,7 +139,7 @@ module Aws::Drs
138
139
  attr_accessor replicated_storage_bytes: ::Integer
139
140
  attr_accessor rescanned_storage_bytes: ::Integer
140
141
  attr_accessor total_storage_bytes: ::Integer
141
- attr_accessor volume_status: ("REGULAR" | "CONTAINS_MARKETPLACE_PRODUCT_CODES" | "MISSING_VOLUME_ATTRIBUTES" | "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE")
142
+ attr_accessor volume_status: ("REGULAR" | "CONTAINS_MARKETPLACE_PRODUCT_CODES" | "MISSING_VOLUME_ATTRIBUTES" | "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE" | "PENDING")
142
143
  SENSITIVE: []
143
144
  end
144
145
 
@@ -706,6 +707,7 @@ module Aws::Drs
706
707
  attr_accessor point_in_time_snapshot_date_time: ::String
707
708
  attr_accessor recovery_instance_id: ::String
708
709
  attr_accessor recovery_instance_properties: Types::RecoveryInstanceProperties
710
+ attr_accessor source_outpost_arn: ::String
709
711
  attr_accessor source_server_id: ::String
710
712
  attr_accessor tags: ::Hash[::String, ::String]
711
713
  SENSITIVE: [:tags]
@@ -725,6 +727,7 @@ module Aws::Drs
725
727
  attr_accessor lag_duration: ::String
726
728
  attr_accessor replicated_disks: ::Array[Types::RecoveryInstanceDataReplicationInfoReplicatedDisk]
727
729
  attr_accessor staging_availability_zone: ::String
730
+ attr_accessor staging_outpost_arn: ::String
728
731
  SENSITIVE: []
729
732
  end
730
733
 
@@ -886,6 +889,7 @@ module Aws::Drs
886
889
  attr_accessor origin_account_id: ::String
887
890
  attr_accessor origin_availability_zone: ::String
888
891
  attr_accessor origin_region: ::String
892
+ attr_accessor source_outpost_arn: ::String
889
893
  SENSITIVE: []
890
894
  end
891
895
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-drs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement