aws-sdk-drs 1.11.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-drs/client.rb +31 -6
- data/lib/aws-sdk-drs/client_api.rb +10 -4
- data/lib/aws-sdk-drs/types.rb +30 -0
- data/lib/aws-sdk-drs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52ed499d49a7c0c5228c52201a14ab18decf29cc6abc68b41613d4d758120d9f
|
4
|
+
data.tar.gz: dc28c3ec3f515aeea0bf21a5fc12dab3e32999169b0e909ccd16da0ef4c1e651
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76e028dd7d15f08acc07f11a22252139106718b03eba4641bba1734dff69848ba0a6d9222abc5a27f781637d0972eb7cc080fcfd00ed204eeb2b4057d51f162e
|
7
|
+
data.tar.gz: 1dd7a2ad9fd990515dec5d277eeda5e12c08360445ca0c5d5a704069673447e617e6247794e6a11bf8527c143a326a13e6e25c1cfb9e557719ff256271b202d1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.12.0 (2023-03-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding a field to the replication configuration APIs to support the auto replicate new disks feature. We also deprecated RetryDataReplication.
|
8
|
+
|
4
9
|
1.11.0 (2023-02-27)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.12.0
|
data/lib/aws-sdk-drs/client.rb
CHANGED
@@ -468,6 +468,10 @@ module Aws::Drs
|
|
468
468
|
# Whether to associate the default Elastic Disaster Recovery Security
|
469
469
|
# group with the Replication Configuration Template.
|
470
470
|
#
|
471
|
+
# @option params [Boolean] :auto_replicate_new_disks
|
472
|
+
# Whether to allow the AWS replication agent to automatically replicate
|
473
|
+
# newly added disks.
|
474
|
+
#
|
471
475
|
# @option params [required, Integer] :bandwidth_throttling
|
472
476
|
# Configure bandwidth throttling for the outbound data transfer rate of
|
473
477
|
# the Source Server in Mbps.
|
@@ -517,6 +521,7 @@ module Aws::Drs
|
|
517
521
|
#
|
518
522
|
# * {Types::ReplicationConfigurationTemplate#arn #arn} => String
|
519
523
|
# * {Types::ReplicationConfigurationTemplate#associate_default_security_group #associate_default_security_group} => Boolean
|
524
|
+
# * {Types::ReplicationConfigurationTemplate#auto_replicate_new_disks #auto_replicate_new_disks} => Boolean
|
520
525
|
# * {Types::ReplicationConfigurationTemplate#bandwidth_throttling #bandwidth_throttling} => Integer
|
521
526
|
# * {Types::ReplicationConfigurationTemplate#create_public_ip #create_public_ip} => Boolean
|
522
527
|
# * {Types::ReplicationConfigurationTemplate#data_plane_routing #data_plane_routing} => String
|
@@ -536,6 +541,7 @@ module Aws::Drs
|
|
536
541
|
#
|
537
542
|
# resp = client.create_replication_configuration_template({
|
538
543
|
# associate_default_security_group: false, # required
|
544
|
+
# auto_replicate_new_disks: false,
|
539
545
|
# bandwidth_throttling: 1, # required
|
540
546
|
# create_public_ip: false, # required
|
541
547
|
# data_plane_routing: "PRIVATE_IP", # required, accepts PRIVATE_IP, PUBLIC_IP
|
@@ -567,6 +573,7 @@ module Aws::Drs
|
|
567
573
|
#
|
568
574
|
# resp.arn #=> String
|
569
575
|
# resp.associate_default_security_group #=> Boolean
|
576
|
+
# resp.auto_replicate_new_disks #=> Boolean
|
570
577
|
# resp.bandwidth_throttling #=> Integer
|
571
578
|
# resp.create_public_ip #=> Boolean
|
572
579
|
# resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
|
@@ -725,7 +732,7 @@ module Aws::Drs
|
|
725
732
|
# resp.items[0].event_data.conversion_properties.root_volume_name #=> String
|
726
733
|
# resp.items[0].event_data.conversion_properties.volume_to_conversion_map #=> Hash
|
727
734
|
# resp.items[0].event_data.conversion_properties.volume_to_conversion_map["LargeBoundedString"] #=> Hash
|
728
|
-
# resp.items[0].event_data.conversion_properties.volume_to_conversion_map["LargeBoundedString"]["
|
735
|
+
# resp.items[0].event_data.conversion_properties.volume_to_conversion_map["LargeBoundedString"]["EbsSnapshot"] #=> String
|
729
736
|
# resp.items[0].event_data.conversion_properties.volume_to_volume_size #=> Hash
|
730
737
|
# resp.items[0].event_data.conversion_properties.volume_to_volume_size["LargeBoundedString"] #=> Integer
|
731
738
|
# resp.items[0].event_data.conversion_server_id #=> String
|
@@ -997,6 +1004,7 @@ module Aws::Drs
|
|
997
1004
|
# resp.items #=> Array
|
998
1005
|
# resp.items[0].arn #=> String
|
999
1006
|
# resp.items[0].associate_default_security_group #=> Boolean
|
1007
|
+
# resp.items[0].auto_replicate_new_disks #=> Boolean
|
1000
1008
|
# resp.items[0].bandwidth_throttling #=> Integer
|
1001
1009
|
# resp.items[0].create_public_ip #=> Boolean
|
1002
1010
|
# resp.items[0].data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
|
@@ -1364,6 +1372,7 @@ module Aws::Drs
|
|
1364
1372
|
# @return [Types::ReplicationConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1365
1373
|
#
|
1366
1374
|
# * {Types::ReplicationConfiguration#associate_default_security_group #associate_default_security_group} => Boolean
|
1375
|
+
# * {Types::ReplicationConfiguration#auto_replicate_new_disks #auto_replicate_new_disks} => Boolean
|
1367
1376
|
# * {Types::ReplicationConfiguration#bandwidth_throttling #bandwidth_throttling} => Integer
|
1368
1377
|
# * {Types::ReplicationConfiguration#create_public_ip #create_public_ip} => Boolean
|
1369
1378
|
# * {Types::ReplicationConfiguration#data_plane_routing #data_plane_routing} => String
|
@@ -1389,6 +1398,7 @@ module Aws::Drs
|
|
1389
1398
|
# @example Response structure
|
1390
1399
|
#
|
1391
1400
|
# resp.associate_default_security_group #=> Boolean
|
1401
|
+
# resp.auto_replicate_new_disks #=> Boolean
|
1392
1402
|
# resp.bandwidth_throttling #=> Integer
|
1393
1403
|
# resp.create_public_ip #=> Boolean
|
1394
1404
|
# resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
|
@@ -1555,10 +1565,11 @@ module Aws::Drs
|
|
1555
1565
|
req.send_request(options)
|
1556
1566
|
end
|
1557
1567
|
|
1558
|
-
#
|
1559
|
-
#
|
1560
|
-
#
|
1561
|
-
#
|
1568
|
+
# WARNING: RetryDataReplication is deprecated. Causes the data
|
1569
|
+
# replication initiation sequence to begin immediately upon next
|
1570
|
+
# Handshake for the specified Source Server ID, regardless of when the
|
1571
|
+
# previous initiation started. This command will work only if the Source
|
1572
|
+
# Server is stalled or is in a DISCONNECTED or STOPPED state.
|
1562
1573
|
#
|
1563
1574
|
# @option params [required, String] :source_server_id
|
1564
1575
|
# The ID of the Source Server whose data replication should be retried.
|
@@ -2212,6 +2223,10 @@ module Aws::Drs
|
|
2212
2223
|
# Whether to associate the default Elastic Disaster Recovery Security
|
2213
2224
|
# group with the Replication Configuration.
|
2214
2225
|
#
|
2226
|
+
# @option params [Boolean] :auto_replicate_new_disks
|
2227
|
+
# Whether to allow the AWS replication agent to automatically replicate
|
2228
|
+
# newly added disks.
|
2229
|
+
#
|
2215
2230
|
# @option params [Integer] :bandwidth_throttling
|
2216
2231
|
# Configure bandwidth throttling for the outbound data transfer rate of
|
2217
2232
|
# the Source Server in Mbps.
|
@@ -2265,6 +2280,7 @@ module Aws::Drs
|
|
2265
2280
|
# @return [Types::ReplicationConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2266
2281
|
#
|
2267
2282
|
# * {Types::ReplicationConfiguration#associate_default_security_group #associate_default_security_group} => Boolean
|
2283
|
+
# * {Types::ReplicationConfiguration#auto_replicate_new_disks #auto_replicate_new_disks} => Boolean
|
2268
2284
|
# * {Types::ReplicationConfiguration#bandwidth_throttling #bandwidth_throttling} => Integer
|
2269
2285
|
# * {Types::ReplicationConfiguration#create_public_ip #create_public_ip} => Boolean
|
2270
2286
|
# * {Types::ReplicationConfiguration#data_plane_routing #data_plane_routing} => String
|
@@ -2285,6 +2301,7 @@ module Aws::Drs
|
|
2285
2301
|
#
|
2286
2302
|
# resp = client.update_replication_configuration({
|
2287
2303
|
# associate_default_security_group: false,
|
2304
|
+
# auto_replicate_new_disks: false,
|
2288
2305
|
# bandwidth_throttling: 1,
|
2289
2306
|
# create_public_ip: false,
|
2290
2307
|
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
@@ -2324,6 +2341,7 @@ module Aws::Drs
|
|
2324
2341
|
# @example Response structure
|
2325
2342
|
#
|
2326
2343
|
# resp.associate_default_security_group #=> Boolean
|
2344
|
+
# resp.auto_replicate_new_disks #=> Boolean
|
2327
2345
|
# resp.bandwidth_throttling #=> Integer
|
2328
2346
|
# resp.create_public_ip #=> Boolean
|
2329
2347
|
# resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
|
@@ -2371,6 +2389,10 @@ module Aws::Drs
|
|
2371
2389
|
# Whether to associate the default Elastic Disaster Recovery Security
|
2372
2390
|
# group with the Replication Configuration Template.
|
2373
2391
|
#
|
2392
|
+
# @option params [Boolean] :auto_replicate_new_disks
|
2393
|
+
# Whether to allow the AWS replication agent to automatically replicate
|
2394
|
+
# newly added disks.
|
2395
|
+
#
|
2374
2396
|
# @option params [Integer] :bandwidth_throttling
|
2375
2397
|
# Configure bandwidth throttling for the outbound data transfer rate of
|
2376
2398
|
# the Source Server in Mbps.
|
@@ -2419,6 +2441,7 @@ module Aws::Drs
|
|
2419
2441
|
#
|
2420
2442
|
# * {Types::ReplicationConfigurationTemplate#arn #arn} => String
|
2421
2443
|
# * {Types::ReplicationConfigurationTemplate#associate_default_security_group #associate_default_security_group} => Boolean
|
2444
|
+
# * {Types::ReplicationConfigurationTemplate#auto_replicate_new_disks #auto_replicate_new_disks} => Boolean
|
2422
2445
|
# * {Types::ReplicationConfigurationTemplate#bandwidth_throttling #bandwidth_throttling} => Integer
|
2423
2446
|
# * {Types::ReplicationConfigurationTemplate#create_public_ip #create_public_ip} => Boolean
|
2424
2447
|
# * {Types::ReplicationConfigurationTemplate#data_plane_routing #data_plane_routing} => String
|
@@ -2439,6 +2462,7 @@ module Aws::Drs
|
|
2439
2462
|
# resp = client.update_replication_configuration_template({
|
2440
2463
|
# arn: "ARN",
|
2441
2464
|
# associate_default_security_group: false,
|
2465
|
+
# auto_replicate_new_disks: false,
|
2442
2466
|
# bandwidth_throttling: 1,
|
2443
2467
|
# create_public_ip: false,
|
2444
2468
|
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
@@ -2468,6 +2492,7 @@ module Aws::Drs
|
|
2468
2492
|
#
|
2469
2493
|
# resp.arn #=> String
|
2470
2494
|
# resp.associate_default_security_group #=> Boolean
|
2495
|
+
# resp.auto_replicate_new_disks #=> Boolean
|
2471
2496
|
# resp.bandwidth_throttling #=> Integer
|
2472
2497
|
# resp.create_public_ip #=> Boolean
|
2473
2498
|
# resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
|
@@ -2513,7 +2538,7 @@ module Aws::Drs
|
|
2513
2538
|
params: params,
|
2514
2539
|
config: config)
|
2515
2540
|
context[:gem_name] = 'aws-sdk-drs'
|
2516
|
-
context[:gem_version] = '1.
|
2541
|
+
context[:gem_version] = '1.12.0'
|
2517
2542
|
Seahorse::Client::Request.new(handlers, context)
|
2518
2543
|
end
|
2519
2544
|
|
@@ -75,6 +75,7 @@ module Aws::Drs
|
|
75
75
|
EC2InstanceID = Shapes::StringShape.new(name: 'EC2InstanceID')
|
76
76
|
EC2InstanceState = Shapes::StringShape.new(name: 'EC2InstanceState')
|
77
77
|
EC2InstanceType = Shapes::StringShape.new(name: 'EC2InstanceType')
|
78
|
+
EbsSnapshot = Shapes::StringShape.new(name: 'EbsSnapshot')
|
78
79
|
EbsSnapshotsList = Shapes::ListShape.new(name: 'EbsSnapshotsList')
|
79
80
|
EbsVolumeID = Shapes::StringShape.new(name: 'EbsVolumeID')
|
80
81
|
ExtensionStatus = Shapes::StringShape.new(name: 'ExtensionStatus')
|
@@ -218,7 +219,6 @@ module Aws::Drs
|
|
218
219
|
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
219
220
|
VolumeToConversionMap = Shapes::MapShape.new(name: 'VolumeToConversionMap')
|
220
221
|
VolumeToSizeMap = Shapes::MapShape.new(name: 'VolumeToSizeMap')
|
221
|
-
ebsSnapshot = Shapes::StringShape.new(name: 'ebsSnapshot')
|
222
222
|
|
223
223
|
AccessDeniedException.add_member(:code, Shapes::ShapeRef.new(shape: LargeBoundedString, location_name: "code"))
|
224
224
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: LargeBoundedString, location_name: "message"))
|
@@ -241,8 +241,8 @@ module Aws::Drs
|
|
241
241
|
ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: LargeBoundedString, location_name: "resourceType"))
|
242
242
|
ConflictException.struct_class = Types::ConflictException
|
243
243
|
|
244
|
-
ConversionMap.key = Shapes::ShapeRef.new(shape:
|
245
|
-
ConversionMap.value = Shapes::ShapeRef.new(shape:
|
244
|
+
ConversionMap.key = Shapes::ShapeRef.new(shape: EbsSnapshot)
|
245
|
+
ConversionMap.value = Shapes::ShapeRef.new(shape: EbsSnapshot)
|
246
246
|
|
247
247
|
ConversionProperties.add_member(:data_timestamp, Shapes::ShapeRef.new(shape: LargeBoundedString, location_name: "dataTimestamp"))
|
248
248
|
ConversionProperties.add_member(:force_uefi, Shapes::ShapeRef.new(shape: Boolean, location_name: "forceUefi"))
|
@@ -261,6 +261,7 @@ module Aws::Drs
|
|
261
261
|
CreateExtendedSourceServerResponse.struct_class = Types::CreateExtendedSourceServerResponse
|
262
262
|
|
263
263
|
CreateReplicationConfigurationTemplateRequest.add_member(:associate_default_security_group, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "associateDefaultSecurityGroup"))
|
264
|
+
CreateReplicationConfigurationTemplateRequest.add_member(:auto_replicate_new_disks, Shapes::ShapeRef.new(shape: Boolean, location_name: "autoReplicateNewDisks"))
|
264
265
|
CreateReplicationConfigurationTemplateRequest.add_member(:bandwidth_throttling, Shapes::ShapeRef.new(shape: PositiveInteger, required: true, location_name: "bandwidthThrottling"))
|
265
266
|
CreateReplicationConfigurationTemplateRequest.add_member(:create_public_ip, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "createPublicIP"))
|
266
267
|
CreateReplicationConfigurationTemplateRequest.add_member(:data_plane_routing, Shapes::ShapeRef.new(shape: ReplicationConfigurationDataPlaneRouting, required: true, location_name: "dataPlaneRouting"))
|
@@ -419,7 +420,7 @@ module Aws::Drs
|
|
419
420
|
|
420
421
|
Disks.member = Shapes::ShapeRef.new(shape: Disk)
|
421
422
|
|
422
|
-
EbsSnapshotsList.member = Shapes::ShapeRef.new(shape:
|
423
|
+
EbsSnapshotsList.member = Shapes::ShapeRef.new(shape: EbsSnapshot)
|
423
424
|
|
424
425
|
GetFailbackReplicationConfigurationRequest.add_member(:recovery_instance_id, Shapes::ShapeRef.new(shape: RecoveryInstanceID, required: true, location_name: "recoveryInstanceID"))
|
425
426
|
GetFailbackReplicationConfigurationRequest.struct_class = Types::GetFailbackReplicationConfigurationRequest
|
@@ -647,6 +648,7 @@ module Aws::Drs
|
|
647
648
|
RecoverySnapshotsList.member = Shapes::ShapeRef.new(shape: RecoverySnapshot)
|
648
649
|
|
649
650
|
ReplicationConfiguration.add_member(:associate_default_security_group, Shapes::ShapeRef.new(shape: Boolean, location_name: "associateDefaultSecurityGroup"))
|
651
|
+
ReplicationConfiguration.add_member(:auto_replicate_new_disks, Shapes::ShapeRef.new(shape: Boolean, location_name: "autoReplicateNewDisks"))
|
650
652
|
ReplicationConfiguration.add_member(:bandwidth_throttling, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "bandwidthThrottling"))
|
651
653
|
ReplicationConfiguration.add_member(:create_public_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "createPublicIP"))
|
652
654
|
ReplicationConfiguration.add_member(:data_plane_routing, Shapes::ShapeRef.new(shape: ReplicationConfigurationDataPlaneRouting, location_name: "dataPlaneRouting"))
|
@@ -676,6 +678,7 @@ module Aws::Drs
|
|
676
678
|
|
677
679
|
ReplicationConfigurationTemplate.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "arn"))
|
678
680
|
ReplicationConfigurationTemplate.add_member(:associate_default_security_group, Shapes::ShapeRef.new(shape: Boolean, location_name: "associateDefaultSecurityGroup"))
|
681
|
+
ReplicationConfigurationTemplate.add_member(:auto_replicate_new_disks, Shapes::ShapeRef.new(shape: Boolean, location_name: "autoReplicateNewDisks"))
|
679
682
|
ReplicationConfigurationTemplate.add_member(:bandwidth_throttling, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "bandwidthThrottling"))
|
680
683
|
ReplicationConfigurationTemplate.add_member(:create_public_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "createPublicIP"))
|
681
684
|
ReplicationConfigurationTemplate.add_member(:data_plane_routing, Shapes::ShapeRef.new(shape: ReplicationConfigurationDataPlaneRouting, location_name: "dataPlaneRouting"))
|
@@ -850,6 +853,7 @@ module Aws::Drs
|
|
850
853
|
UpdateLaunchConfigurationRequest.struct_class = Types::UpdateLaunchConfigurationRequest
|
851
854
|
|
852
855
|
UpdateReplicationConfigurationRequest.add_member(:associate_default_security_group, Shapes::ShapeRef.new(shape: Boolean, location_name: "associateDefaultSecurityGroup"))
|
856
|
+
UpdateReplicationConfigurationRequest.add_member(:auto_replicate_new_disks, Shapes::ShapeRef.new(shape: Boolean, location_name: "autoReplicateNewDisks"))
|
853
857
|
UpdateReplicationConfigurationRequest.add_member(:bandwidth_throttling, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "bandwidthThrottling"))
|
854
858
|
UpdateReplicationConfigurationRequest.add_member(:create_public_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "createPublicIP"))
|
855
859
|
UpdateReplicationConfigurationRequest.add_member(:data_plane_routing, Shapes::ShapeRef.new(shape: ReplicationConfigurationDataPlaneRouting, location_name: "dataPlaneRouting"))
|
@@ -869,6 +873,7 @@ module Aws::Drs
|
|
869
873
|
|
870
874
|
UpdateReplicationConfigurationTemplateRequest.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "arn"))
|
871
875
|
UpdateReplicationConfigurationTemplateRequest.add_member(:associate_default_security_group, Shapes::ShapeRef.new(shape: Boolean, location_name: "associateDefaultSecurityGroup"))
|
876
|
+
UpdateReplicationConfigurationTemplateRequest.add_member(:auto_replicate_new_disks, Shapes::ShapeRef.new(shape: Boolean, location_name: "autoReplicateNewDisks"))
|
872
877
|
UpdateReplicationConfigurationTemplateRequest.add_member(:bandwidth_throttling, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "bandwidthThrottling"))
|
873
878
|
UpdateReplicationConfigurationTemplateRequest.add_member(:create_public_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "createPublicIP"))
|
874
879
|
UpdateReplicationConfigurationTemplateRequest.add_member(:data_plane_routing, Shapes::ShapeRef.new(shape: ReplicationConfigurationDataPlaneRouting, location_name: "dataPlaneRouting"))
|
@@ -1243,6 +1248,7 @@ module Aws::Drs
|
|
1243
1248
|
o.name = "RetryDataReplication"
|
1244
1249
|
o.http_method = "POST"
|
1245
1250
|
o.http_request_uri = "/RetryDataReplication"
|
1251
|
+
o.deprecated = true
|
1246
1252
|
o.input = Shapes::ShapeRef.new(shape: RetryDataReplicationRequest)
|
1247
1253
|
o.output = Shapes::ShapeRef.new(shape: SourceServer)
|
1248
1254
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
data/lib/aws-sdk-drs/types.rb
CHANGED
@@ -158,6 +158,11 @@ module Aws::Drs
|
|
158
158
|
# group with the Replication Configuration Template.
|
159
159
|
# @return [Boolean]
|
160
160
|
#
|
161
|
+
# @!attribute [rw] auto_replicate_new_disks
|
162
|
+
# Whether to allow the AWS replication agent to automatically
|
163
|
+
# replicate newly added disks.
|
164
|
+
# @return [Boolean]
|
165
|
+
#
|
161
166
|
# @!attribute [rw] bandwidth_throttling
|
162
167
|
# Configure bandwidth throttling for the outbound data transfer rate
|
163
168
|
# of the Source Server in Mbps.
|
@@ -220,6 +225,7 @@ module Aws::Drs
|
|
220
225
|
#
|
221
226
|
class CreateReplicationConfigurationTemplateRequest < Struct.new(
|
222
227
|
:associate_default_security_group,
|
228
|
+
:auto_replicate_new_disks,
|
223
229
|
:bandwidth_throttling,
|
224
230
|
:create_public_ip,
|
225
231
|
:data_plane_routing,
|
@@ -1799,6 +1805,11 @@ module Aws::Drs
|
|
1799
1805
|
# group with the Replication Configuration.
|
1800
1806
|
# @return [Boolean]
|
1801
1807
|
#
|
1808
|
+
# @!attribute [rw] auto_replicate_new_disks
|
1809
|
+
# Whether to allow the AWS replication agent to automatically
|
1810
|
+
# replicate newly added disks.
|
1811
|
+
# @return [Boolean]
|
1812
|
+
#
|
1802
1813
|
# @!attribute [rw] bandwidth_throttling
|
1803
1814
|
# Configure bandwidth throttling for the outbound data transfer rate
|
1804
1815
|
# of the Source Server in Mbps.
|
@@ -1869,6 +1880,7 @@ module Aws::Drs
|
|
1869
1880
|
#
|
1870
1881
|
class ReplicationConfiguration < Struct.new(
|
1871
1882
|
:associate_default_security_group,
|
1883
|
+
:auto_replicate_new_disks,
|
1872
1884
|
:bandwidth_throttling,
|
1873
1885
|
:create_public_ip,
|
1874
1886
|
:data_plane_routing,
|
@@ -1938,6 +1950,11 @@ module Aws::Drs
|
|
1938
1950
|
# group with the Replication Configuration Template.
|
1939
1951
|
# @return [Boolean]
|
1940
1952
|
#
|
1953
|
+
# @!attribute [rw] auto_replicate_new_disks
|
1954
|
+
# Whether to allow the AWS replication agent to automatically
|
1955
|
+
# replicate newly added disks.
|
1956
|
+
# @return [Boolean]
|
1957
|
+
#
|
1941
1958
|
# @!attribute [rw] bandwidth_throttling
|
1942
1959
|
# Configure bandwidth throttling for the outbound data transfer rate
|
1943
1960
|
# of the Source Server in Mbps.
|
@@ -2005,6 +2022,7 @@ module Aws::Drs
|
|
2005
2022
|
class ReplicationConfigurationTemplate < Struct.new(
|
2006
2023
|
:arn,
|
2007
2024
|
:associate_default_security_group,
|
2025
|
+
:auto_replicate_new_disks,
|
2008
2026
|
:bandwidth_throttling,
|
2009
2027
|
:create_public_ip,
|
2010
2028
|
:data_plane_routing,
|
@@ -2667,6 +2685,11 @@ module Aws::Drs
|
|
2667
2685
|
# group with the Replication Configuration.
|
2668
2686
|
# @return [Boolean]
|
2669
2687
|
#
|
2688
|
+
# @!attribute [rw] auto_replicate_new_disks
|
2689
|
+
# Whether to allow the AWS replication agent to automatically
|
2690
|
+
# replicate newly added disks.
|
2691
|
+
# @return [Boolean]
|
2692
|
+
#
|
2670
2693
|
# @!attribute [rw] bandwidth_throttling
|
2671
2694
|
# Configure bandwidth throttling for the outbound data transfer rate
|
2672
2695
|
# of the Source Server in Mbps.
|
@@ -2737,6 +2760,7 @@ module Aws::Drs
|
|
2737
2760
|
#
|
2738
2761
|
class UpdateReplicationConfigurationRequest < Struct.new(
|
2739
2762
|
:associate_default_security_group,
|
2763
|
+
:auto_replicate_new_disks,
|
2740
2764
|
:bandwidth_throttling,
|
2741
2765
|
:create_public_ip,
|
2742
2766
|
:data_plane_routing,
|
@@ -2765,6 +2789,11 @@ module Aws::Drs
|
|
2765
2789
|
# group with the Replication Configuration Template.
|
2766
2790
|
# @return [Boolean]
|
2767
2791
|
#
|
2792
|
+
# @!attribute [rw] auto_replicate_new_disks
|
2793
|
+
# Whether to allow the AWS replication agent to automatically
|
2794
|
+
# replicate newly added disks.
|
2795
|
+
# @return [Boolean]
|
2796
|
+
#
|
2768
2797
|
# @!attribute [rw] bandwidth_throttling
|
2769
2798
|
# Configure bandwidth throttling for the outbound data transfer rate
|
2770
2799
|
# of the Source Server in Mbps.
|
@@ -2827,6 +2856,7 @@ module Aws::Drs
|
|
2827
2856
|
class UpdateReplicationConfigurationTemplateRequest < Struct.new(
|
2828
2857
|
:arn,
|
2829
2858
|
:associate_default_security_group,
|
2859
|
+
:auto_replicate_new_disks,
|
2830
2860
|
:bandwidth_throttling,
|
2831
2861
|
:create_public_ip,
|
2832
2862
|
:data_plane_routing,
|
data/lib/aws-sdk-drs.rb
CHANGED
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.
|
4
|
+
version: 1.12.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: 2023-
|
11
|
+
date: 2023-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|