aws-sdk-mgn 1.61.0 → 1.62.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-mgn/client.rb +24 -1
- data/lib/aws-sdk-mgn/client_api.rb +5 -0
- data/lib/aws-sdk-mgn/types.rb +32 -5
- data/lib/aws-sdk-mgn.rb +1 -1
- data/sig/client.rbs +10 -3
- data/sig/types.rbs +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5366d0c4ff08168d60eadb4a768848009632a70125220e01f15bb333a96c1236
|
|
4
|
+
data.tar.gz: 99af837dd7a60388b97374589ce9fe9e7d9b15a9da63902bea5e7caaa7d8c0a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 702ef803e093f85666dee4e4de8a5f8bff06715514531f1ff1a4d0b0abece92b917203f12888bfb1998bb97847884f33967dcc079f5ce7342f83960b5d0e7262
|
|
7
|
+
data.tar.gz: a9034c7704bff3620e1322de229187c4a50da7c25b4f27a3c032843e74f56e16ca2b9d3f77da4b132d07fb5a12541ebaa4b7130b33acd46d151407fdbb04bfd2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.62.0 (2026-03-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for new storeSnapshotOnLocalZone field in ReplicationConfiguration and updateReplicationConfiguration
|
|
8
|
+
|
|
4
9
|
1.61.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.62.0
|
data/lib/aws-sdk-mgn/client.rb
CHANGED
|
@@ -1131,6 +1131,10 @@ module Aws::Mgn
|
|
|
1131
1131
|
# @option params [String] :internet_protocol
|
|
1132
1132
|
# Request to configure the internet protocol to IPv4 or IPv6.
|
|
1133
1133
|
#
|
|
1134
|
+
# @option params [Boolean] :store_snapshot_on_local_zone
|
|
1135
|
+
# Request to store snapshot on local zone during Replication Settings
|
|
1136
|
+
# template creation.
|
|
1137
|
+
#
|
|
1134
1138
|
# @return [Types::ReplicationConfigurationTemplate] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1135
1139
|
#
|
|
1136
1140
|
# * {Types::ReplicationConfigurationTemplate#replication_configuration_template_id #replication_configuration_template_id} => String
|
|
@@ -1150,6 +1154,7 @@ module Aws::Mgn
|
|
|
1150
1154
|
# * {Types::ReplicationConfigurationTemplate#use_fips_endpoint #use_fips_endpoint} => Boolean
|
|
1151
1155
|
# * {Types::ReplicationConfigurationTemplate#tags #tags} => Hash<String,String>
|
|
1152
1156
|
# * {Types::ReplicationConfigurationTemplate#internet_protocol #internet_protocol} => String
|
|
1157
|
+
# * {Types::ReplicationConfigurationTemplate#store_snapshot_on_local_zone #store_snapshot_on_local_zone} => Boolean
|
|
1153
1158
|
#
|
|
1154
1159
|
# @example Request syntax with placeholder values
|
|
1155
1160
|
#
|
|
@@ -1173,6 +1178,7 @@ module Aws::Mgn
|
|
|
1173
1178
|
# "TagKey" => "TagValue",
|
|
1174
1179
|
# },
|
|
1175
1180
|
# internet_protocol: "IPV4", # accepts IPV4, IPV6
|
|
1181
|
+
# store_snapshot_on_local_zone: false,
|
|
1176
1182
|
# })
|
|
1177
1183
|
#
|
|
1178
1184
|
# @example Response structure
|
|
@@ -1197,6 +1203,7 @@ module Aws::Mgn
|
|
|
1197
1203
|
# resp.tags #=> Hash
|
|
1198
1204
|
# resp.tags["TagKey"] #=> String
|
|
1199
1205
|
# resp.internet_protocol #=> String, one of "IPV4", "IPV6"
|
|
1206
|
+
# resp.store_snapshot_on_local_zone #=> Boolean
|
|
1200
1207
|
#
|
|
1201
1208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateReplicationConfigurationTemplate AWS API Documentation
|
|
1202
1209
|
#
|
|
@@ -1731,6 +1738,7 @@ module Aws::Mgn
|
|
|
1731
1738
|
# resp.items[0].tags #=> Hash
|
|
1732
1739
|
# resp.items[0].tags["TagKey"] #=> String
|
|
1733
1740
|
# resp.items[0].internet_protocol #=> String, one of "IPV4", "IPV6"
|
|
1741
|
+
# resp.items[0].store_snapshot_on_local_zone #=> Boolean
|
|
1734
1742
|
# resp.next_token #=> String
|
|
1735
1743
|
#
|
|
1736
1744
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeReplicationConfigurationTemplates AWS API Documentation
|
|
@@ -2305,6 +2313,7 @@ module Aws::Mgn
|
|
|
2305
2313
|
# * {Types::ReplicationConfiguration#staging_area_tags #staging_area_tags} => Hash<String,String>
|
|
2306
2314
|
# * {Types::ReplicationConfiguration#use_fips_endpoint #use_fips_endpoint} => Boolean
|
|
2307
2315
|
# * {Types::ReplicationConfiguration#internet_protocol #internet_protocol} => String
|
|
2316
|
+
# * {Types::ReplicationConfiguration#store_snapshot_on_local_zone #store_snapshot_on_local_zone} => Boolean
|
|
2308
2317
|
#
|
|
2309
2318
|
# @example Request syntax with placeholder values
|
|
2310
2319
|
#
|
|
@@ -2339,6 +2348,7 @@ module Aws::Mgn
|
|
|
2339
2348
|
# resp.staging_area_tags["TagKey"] #=> String
|
|
2340
2349
|
# resp.use_fips_endpoint #=> Boolean
|
|
2341
2350
|
# resp.internet_protocol #=> String, one of "IPV4", "IPV6"
|
|
2351
|
+
# resp.store_snapshot_on_local_zone #=> Boolean
|
|
2342
2352
|
#
|
|
2343
2353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/GetReplicationConfiguration AWS API Documentation
|
|
2344
2354
|
#
|
|
@@ -4888,6 +4898,9 @@ module Aws::Mgn
|
|
|
4888
4898
|
# @option params [String] :internet_protocol
|
|
4889
4899
|
# Update replication configuration internet protocol.
|
|
4890
4900
|
#
|
|
4901
|
+
# @option params [Boolean] :store_snapshot_on_local_zone
|
|
4902
|
+
# Update replication configuration store snapshot on local zone.
|
|
4903
|
+
#
|
|
4891
4904
|
# @return [Types::ReplicationConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4892
4905
|
#
|
|
4893
4906
|
# * {Types::ReplicationConfiguration#source_server_id #source_server_id} => String
|
|
@@ -4907,6 +4920,7 @@ module Aws::Mgn
|
|
|
4907
4920
|
# * {Types::ReplicationConfiguration#staging_area_tags #staging_area_tags} => Hash<String,String>
|
|
4908
4921
|
# * {Types::ReplicationConfiguration#use_fips_endpoint #use_fips_endpoint} => Boolean
|
|
4909
4922
|
# * {Types::ReplicationConfiguration#internet_protocol #internet_protocol} => String
|
|
4923
|
+
# * {Types::ReplicationConfiguration#store_snapshot_on_local_zone #store_snapshot_on_local_zone} => Boolean
|
|
4910
4924
|
#
|
|
4911
4925
|
# @example Request syntax with placeholder values
|
|
4912
4926
|
#
|
|
@@ -4939,6 +4953,7 @@ module Aws::Mgn
|
|
|
4939
4953
|
# use_fips_endpoint: false,
|
|
4940
4954
|
# account_id: "AccountID",
|
|
4941
4955
|
# internet_protocol: "IPV4", # accepts IPV4, IPV6
|
|
4956
|
+
# store_snapshot_on_local_zone: false,
|
|
4942
4957
|
# })
|
|
4943
4958
|
#
|
|
4944
4959
|
# @example Response structure
|
|
@@ -4967,6 +4982,7 @@ module Aws::Mgn
|
|
|
4967
4982
|
# resp.staging_area_tags["TagKey"] #=> String
|
|
4968
4983
|
# resp.use_fips_endpoint #=> Boolean
|
|
4969
4984
|
# resp.internet_protocol #=> String, one of "IPV4", "IPV6"
|
|
4985
|
+
# resp.store_snapshot_on_local_zone #=> Boolean
|
|
4970
4986
|
#
|
|
4971
4987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfiguration AWS API Documentation
|
|
4972
4988
|
#
|
|
@@ -5035,6 +5051,10 @@ module Aws::Mgn
|
|
|
5035
5051
|
# @option params [String] :internet_protocol
|
|
5036
5052
|
# Update replication configuration template internet protocol request.
|
|
5037
5053
|
#
|
|
5054
|
+
# @option params [Boolean] :store_snapshot_on_local_zone
|
|
5055
|
+
# Update replication configuration template store snapshot on local zone
|
|
5056
|
+
# request.
|
|
5057
|
+
#
|
|
5038
5058
|
# @return [Types::ReplicationConfigurationTemplate] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5039
5059
|
#
|
|
5040
5060
|
# * {Types::ReplicationConfigurationTemplate#replication_configuration_template_id #replication_configuration_template_id} => String
|
|
@@ -5054,6 +5074,7 @@ module Aws::Mgn
|
|
|
5054
5074
|
# * {Types::ReplicationConfigurationTemplate#use_fips_endpoint #use_fips_endpoint} => Boolean
|
|
5055
5075
|
# * {Types::ReplicationConfigurationTemplate#tags #tags} => Hash<String,String>
|
|
5056
5076
|
# * {Types::ReplicationConfigurationTemplate#internet_protocol #internet_protocol} => String
|
|
5077
|
+
# * {Types::ReplicationConfigurationTemplate#store_snapshot_on_local_zone #store_snapshot_on_local_zone} => Boolean
|
|
5057
5078
|
#
|
|
5058
5079
|
# @example Request syntax with placeholder values
|
|
5059
5080
|
#
|
|
@@ -5076,6 +5097,7 @@ module Aws::Mgn
|
|
|
5076
5097
|
# },
|
|
5077
5098
|
# use_fips_endpoint: false,
|
|
5078
5099
|
# internet_protocol: "IPV4", # accepts IPV4, IPV6
|
|
5100
|
+
# store_snapshot_on_local_zone: false,
|
|
5079
5101
|
# })
|
|
5080
5102
|
#
|
|
5081
5103
|
# @example Response structure
|
|
@@ -5100,6 +5122,7 @@ module Aws::Mgn
|
|
|
5100
5122
|
# resp.tags #=> Hash
|
|
5101
5123
|
# resp.tags["TagKey"] #=> String
|
|
5102
5124
|
# resp.internet_protocol #=> String, one of "IPV4", "IPV6"
|
|
5125
|
+
# resp.store_snapshot_on_local_zone #=> Boolean
|
|
5103
5126
|
#
|
|
5104
5127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfigurationTemplate AWS API Documentation
|
|
5105
5128
|
#
|
|
@@ -5423,7 +5446,7 @@ module Aws::Mgn
|
|
|
5423
5446
|
tracer: tracer
|
|
5424
5447
|
)
|
|
5425
5448
|
context[:gem_name] = 'aws-sdk-mgn'
|
|
5426
|
-
context[:gem_version] = '1.
|
|
5449
|
+
context[:gem_version] = '1.62.0'
|
|
5427
5450
|
Seahorse::Client::Request.new(handlers, context)
|
|
5428
5451
|
end
|
|
5429
5452
|
|
|
@@ -489,6 +489,7 @@ module Aws::Mgn
|
|
|
489
489
|
CreateReplicationConfigurationTemplateRequest.add_member(:use_fips_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "useFipsEndpoint"))
|
|
490
490
|
CreateReplicationConfigurationTemplateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
491
491
|
CreateReplicationConfigurationTemplateRequest.add_member(:internet_protocol, Shapes::ShapeRef.new(shape: InternetProtocol, location_name: "internetProtocol"))
|
|
492
|
+
CreateReplicationConfigurationTemplateRequest.add_member(:store_snapshot_on_local_zone, Shapes::ShapeRef.new(shape: Boolean, location_name: "storeSnapshotOnLocalZone"))
|
|
492
493
|
CreateReplicationConfigurationTemplateRequest.struct_class = Types::CreateReplicationConfigurationTemplateRequest
|
|
493
494
|
|
|
494
495
|
CreateWaveRequest.add_member(:name, Shapes::ShapeRef.new(shape: WaveName, required: true, location_name: "name"))
|
|
@@ -1137,6 +1138,7 @@ module Aws::Mgn
|
|
|
1137
1138
|
ReplicationConfiguration.add_member(:staging_area_tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "stagingAreaTags"))
|
|
1138
1139
|
ReplicationConfiguration.add_member(:use_fips_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "useFipsEndpoint"))
|
|
1139
1140
|
ReplicationConfiguration.add_member(:internet_protocol, Shapes::ShapeRef.new(shape: InternetProtocol, location_name: "internetProtocol"))
|
|
1141
|
+
ReplicationConfiguration.add_member(:store_snapshot_on_local_zone, Shapes::ShapeRef.new(shape: Boolean, location_name: "storeSnapshotOnLocalZone"))
|
|
1140
1142
|
ReplicationConfiguration.struct_class = Types::ReplicationConfiguration
|
|
1141
1143
|
|
|
1142
1144
|
ReplicationConfigurationReplicatedDisk.add_member(:device_name, Shapes::ShapeRef.new(shape: BoundedString, location_name: "deviceName"))
|
|
@@ -1165,6 +1167,7 @@ module Aws::Mgn
|
|
|
1165
1167
|
ReplicationConfigurationTemplate.add_member(:use_fips_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "useFipsEndpoint"))
|
|
1166
1168
|
ReplicationConfigurationTemplate.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
1167
1169
|
ReplicationConfigurationTemplate.add_member(:internet_protocol, Shapes::ShapeRef.new(shape: InternetProtocol, location_name: "internetProtocol"))
|
|
1170
|
+
ReplicationConfigurationTemplate.add_member(:store_snapshot_on_local_zone, Shapes::ShapeRef.new(shape: Boolean, location_name: "storeSnapshotOnLocalZone"))
|
|
1168
1171
|
ReplicationConfigurationTemplate.struct_class = Types::ReplicationConfigurationTemplate
|
|
1169
1172
|
|
|
1170
1173
|
ReplicationConfigurationTemplateIDs.member = Shapes::ShapeRef.new(shape: ReplicationConfigurationTemplateID)
|
|
@@ -1449,6 +1452,7 @@ module Aws::Mgn
|
|
|
1449
1452
|
UpdateReplicationConfigurationRequest.add_member(:use_fips_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "useFipsEndpoint"))
|
|
1450
1453
|
UpdateReplicationConfigurationRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountID, location_name: "accountID"))
|
|
1451
1454
|
UpdateReplicationConfigurationRequest.add_member(:internet_protocol, Shapes::ShapeRef.new(shape: InternetProtocol, location_name: "internetProtocol"))
|
|
1455
|
+
UpdateReplicationConfigurationRequest.add_member(:store_snapshot_on_local_zone, Shapes::ShapeRef.new(shape: Boolean, location_name: "storeSnapshotOnLocalZone"))
|
|
1452
1456
|
UpdateReplicationConfigurationRequest.struct_class = Types::UpdateReplicationConfigurationRequest
|
|
1453
1457
|
|
|
1454
1458
|
UpdateReplicationConfigurationTemplateRequest.add_member(:replication_configuration_template_id, Shapes::ShapeRef.new(shape: ReplicationConfigurationTemplateID, required: true, location_name: "replicationConfigurationTemplateID"))
|
|
@@ -1467,6 +1471,7 @@ module Aws::Mgn
|
|
|
1467
1471
|
UpdateReplicationConfigurationTemplateRequest.add_member(:staging_area_tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "stagingAreaTags"))
|
|
1468
1472
|
UpdateReplicationConfigurationTemplateRequest.add_member(:use_fips_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "useFipsEndpoint"))
|
|
1469
1473
|
UpdateReplicationConfigurationTemplateRequest.add_member(:internet_protocol, Shapes::ShapeRef.new(shape: InternetProtocol, location_name: "internetProtocol"))
|
|
1474
|
+
UpdateReplicationConfigurationTemplateRequest.add_member(:store_snapshot_on_local_zone, Shapes::ShapeRef.new(shape: Boolean, location_name: "storeSnapshotOnLocalZone"))
|
|
1470
1475
|
UpdateReplicationConfigurationTemplateRequest.struct_class = Types::UpdateReplicationConfigurationTemplateRequest
|
|
1471
1476
|
|
|
1472
1477
|
UpdateSourceServerReplicationTypeRequest.add_member(:source_server_id, Shapes::ShapeRef.new(shape: SourceServerID, required: true, location_name: "sourceServerID"))
|
data/lib/aws-sdk-mgn/types.rb
CHANGED
|
@@ -570,6 +570,11 @@ module Aws::Mgn
|
|
|
570
570
|
# Request to configure the internet protocol to IPv4 or IPv6.
|
|
571
571
|
# @return [String]
|
|
572
572
|
#
|
|
573
|
+
# @!attribute [rw] store_snapshot_on_local_zone
|
|
574
|
+
# Request to store snapshot on local zone during Replication Settings
|
|
575
|
+
# template creation.
|
|
576
|
+
# @return [Boolean]
|
|
577
|
+
#
|
|
573
578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateReplicationConfigurationTemplateRequest AWS API Documentation
|
|
574
579
|
#
|
|
575
580
|
class CreateReplicationConfigurationTemplateRequest < Struct.new(
|
|
@@ -587,7 +592,8 @@ module Aws::Mgn
|
|
|
587
592
|
:staging_area_tags,
|
|
588
593
|
:use_fips_endpoint,
|
|
589
594
|
:tags,
|
|
590
|
-
:internet_protocol
|
|
595
|
+
:internet_protocol,
|
|
596
|
+
:store_snapshot_on_local_zone)
|
|
591
597
|
SENSITIVE = [:staging_area_tags, :tags]
|
|
592
598
|
include Aws::Structure
|
|
593
599
|
end
|
|
@@ -3333,6 +3339,10 @@ module Aws::Mgn
|
|
|
3333
3339
|
# Replication Configuration internet protocol.
|
|
3334
3340
|
# @return [String]
|
|
3335
3341
|
#
|
|
3342
|
+
# @!attribute [rw] store_snapshot_on_local_zone
|
|
3343
|
+
# Replication Configuration store snapshot on local zone.
|
|
3344
|
+
# @return [Boolean]
|
|
3345
|
+
#
|
|
3336
3346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ReplicationConfiguration AWS API Documentation
|
|
3337
3347
|
#
|
|
3338
3348
|
class ReplicationConfiguration < Struct.new(
|
|
@@ -3352,7 +3362,8 @@ module Aws::Mgn
|
|
|
3352
3362
|
:create_public_ip,
|
|
3353
3363
|
:staging_area_tags,
|
|
3354
3364
|
:use_fips_endpoint,
|
|
3355
|
-
:internet_protocol
|
|
3365
|
+
:internet_protocol,
|
|
3366
|
+
:store_snapshot_on_local_zone)
|
|
3356
3367
|
SENSITIVE = [:staging_area_tags]
|
|
3357
3368
|
include Aws::Structure
|
|
3358
3369
|
end
|
|
@@ -3461,6 +3472,10 @@ module Aws::Mgn
|
|
|
3461
3472
|
# Replication Configuration template internet protocol.
|
|
3462
3473
|
# @return [String]
|
|
3463
3474
|
#
|
|
3475
|
+
# @!attribute [rw] store_snapshot_on_local_zone
|
|
3476
|
+
# Replication Configuration template store snapshot on local zone.
|
|
3477
|
+
# @return [Boolean]
|
|
3478
|
+
#
|
|
3464
3479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ReplicationConfigurationTemplate AWS API Documentation
|
|
3465
3480
|
#
|
|
3466
3481
|
class ReplicationConfigurationTemplate < Struct.new(
|
|
@@ -3480,7 +3495,8 @@ module Aws::Mgn
|
|
|
3480
3495
|
:staging_area_tags,
|
|
3481
3496
|
:use_fips_endpoint,
|
|
3482
3497
|
:tags,
|
|
3483
|
-
:internet_protocol
|
|
3498
|
+
:internet_protocol,
|
|
3499
|
+
:store_snapshot_on_local_zone)
|
|
3484
3500
|
SENSITIVE = [:staging_area_tags, :tags]
|
|
3485
3501
|
include Aws::Structure
|
|
3486
3502
|
end
|
|
@@ -4620,6 +4636,10 @@ module Aws::Mgn
|
|
|
4620
4636
|
# Update replication configuration internet protocol.
|
|
4621
4637
|
# @return [String]
|
|
4622
4638
|
#
|
|
4639
|
+
# @!attribute [rw] store_snapshot_on_local_zone
|
|
4640
|
+
# Update replication configuration store snapshot on local zone.
|
|
4641
|
+
# @return [Boolean]
|
|
4642
|
+
#
|
|
4623
4643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfigurationRequest AWS API Documentation
|
|
4624
4644
|
#
|
|
4625
4645
|
class UpdateReplicationConfigurationRequest < Struct.new(
|
|
@@ -4640,7 +4660,8 @@ module Aws::Mgn
|
|
|
4640
4660
|
:staging_area_tags,
|
|
4641
4661
|
:use_fips_endpoint,
|
|
4642
4662
|
:account_id,
|
|
4643
|
-
:internet_protocol
|
|
4663
|
+
:internet_protocol,
|
|
4664
|
+
:store_snapshot_on_local_zone)
|
|
4644
4665
|
SENSITIVE = [:staging_area_tags]
|
|
4645
4666
|
include Aws::Structure
|
|
4646
4667
|
end
|
|
@@ -4718,6 +4739,11 @@ module Aws::Mgn
|
|
|
4718
4739
|
# Update replication configuration template internet protocol request.
|
|
4719
4740
|
# @return [String]
|
|
4720
4741
|
#
|
|
4742
|
+
# @!attribute [rw] store_snapshot_on_local_zone
|
|
4743
|
+
# Update replication configuration template store snapshot on local
|
|
4744
|
+
# zone request.
|
|
4745
|
+
# @return [Boolean]
|
|
4746
|
+
#
|
|
4721
4747
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfigurationTemplateRequest AWS API Documentation
|
|
4722
4748
|
#
|
|
4723
4749
|
class UpdateReplicationConfigurationTemplateRequest < Struct.new(
|
|
@@ -4736,7 +4762,8 @@ module Aws::Mgn
|
|
|
4736
4762
|
:create_public_ip,
|
|
4737
4763
|
:staging_area_tags,
|
|
4738
4764
|
:use_fips_endpoint,
|
|
4739
|
-
:internet_protocol
|
|
4765
|
+
:internet_protocol,
|
|
4766
|
+
:store_snapshot_on_local_zone)
|
|
4740
4767
|
SENSITIVE = [:staging_area_tags]
|
|
4741
4768
|
include Aws::Structure
|
|
4742
4769
|
end
|
data/lib/aws-sdk-mgn.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -305,6 +305,7 @@ module Aws
|
|
|
305
305
|
def use_fips_endpoint: () -> bool
|
|
306
306
|
def tags: () -> ::Hash[::String, ::String]
|
|
307
307
|
def internet_protocol: () -> ("IPV4" | "IPV6")
|
|
308
|
+
def store_snapshot_on_local_zone: () -> bool
|
|
308
309
|
end
|
|
309
310
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_replication_configuration_template-instance_method
|
|
310
311
|
def create_replication_configuration_template: (
|
|
@@ -322,7 +323,8 @@ module Aws
|
|
|
322
323
|
staging_area_tags: Hash[::String, ::String],
|
|
323
324
|
?use_fips_endpoint: bool,
|
|
324
325
|
?tags: Hash[::String, ::String],
|
|
325
|
-
?internet_protocol: ("IPV4" | "IPV6")
|
|
326
|
+
?internet_protocol: ("IPV4" | "IPV6"),
|
|
327
|
+
?store_snapshot_on_local_zone: bool
|
|
326
328
|
) -> _CreateReplicationConfigurationTemplateResponseSuccess
|
|
327
329
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationConfigurationTemplateResponseSuccess
|
|
328
330
|
|
|
@@ -618,6 +620,7 @@ module Aws
|
|
|
618
620
|
def staging_area_tags: () -> ::Hash[::String, ::String]
|
|
619
621
|
def use_fips_endpoint: () -> bool
|
|
620
622
|
def internet_protocol: () -> ("IPV4" | "IPV6")
|
|
623
|
+
def store_snapshot_on_local_zone: () -> bool
|
|
621
624
|
end
|
|
622
625
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#get_replication_configuration-instance_method
|
|
623
626
|
def get_replication_configuration: (
|
|
@@ -1355,6 +1358,7 @@ module Aws
|
|
|
1355
1358
|
def staging_area_tags: () -> ::Hash[::String, ::String]
|
|
1356
1359
|
def use_fips_endpoint: () -> bool
|
|
1357
1360
|
def internet_protocol: () -> ("IPV4" | "IPV6")
|
|
1361
|
+
def store_snapshot_on_local_zone: () -> bool
|
|
1358
1362
|
end
|
|
1359
1363
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_replication_configuration-instance_method
|
|
1360
1364
|
def update_replication_configuration: (
|
|
@@ -1383,7 +1387,8 @@ module Aws
|
|
|
1383
1387
|
?staging_area_tags: Hash[::String, ::String],
|
|
1384
1388
|
?use_fips_endpoint: bool,
|
|
1385
1389
|
?account_id: ::String,
|
|
1386
|
-
?internet_protocol: ("IPV4" | "IPV6")
|
|
1390
|
+
?internet_protocol: ("IPV4" | "IPV6"),
|
|
1391
|
+
?store_snapshot_on_local_zone: bool
|
|
1387
1392
|
) -> _UpdateReplicationConfigurationResponseSuccess
|
|
1388
1393
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationConfigurationResponseSuccess
|
|
1389
1394
|
|
|
@@ -1406,6 +1411,7 @@ module Aws
|
|
|
1406
1411
|
def use_fips_endpoint: () -> bool
|
|
1407
1412
|
def tags: () -> ::Hash[::String, ::String]
|
|
1408
1413
|
def internet_protocol: () -> ("IPV4" | "IPV6")
|
|
1414
|
+
def store_snapshot_on_local_zone: () -> bool
|
|
1409
1415
|
end
|
|
1410
1416
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_replication_configuration_template-instance_method
|
|
1411
1417
|
def update_replication_configuration_template: (
|
|
@@ -1424,7 +1430,8 @@ module Aws
|
|
|
1424
1430
|
?create_public_ip: bool,
|
|
1425
1431
|
?staging_area_tags: Hash[::String, ::String],
|
|
1426
1432
|
?use_fips_endpoint: bool,
|
|
1427
|
-
?internet_protocol: ("IPV4" | "IPV6")
|
|
1433
|
+
?internet_protocol: ("IPV4" | "IPV6"),
|
|
1434
|
+
?store_snapshot_on_local_zone: bool
|
|
1428
1435
|
) -> _UpdateReplicationConfigurationTemplateResponseSuccess
|
|
1429
1436
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationConfigurationTemplateResponseSuccess
|
|
1430
1437
|
|
data/sig/types.rbs
CHANGED
|
@@ -165,6 +165,7 @@ module Aws::Mgn
|
|
|
165
165
|
attr_accessor use_fips_endpoint: bool
|
|
166
166
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
167
167
|
attr_accessor internet_protocol: ("IPV4" | "IPV6")
|
|
168
|
+
attr_accessor store_snapshot_on_local_zone: bool
|
|
168
169
|
SENSITIVE: [:staging_area_tags, :tags]
|
|
169
170
|
end
|
|
170
171
|
|
|
@@ -993,6 +994,7 @@ module Aws::Mgn
|
|
|
993
994
|
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
|
994
995
|
attr_accessor use_fips_endpoint: bool
|
|
995
996
|
attr_accessor internet_protocol: ("IPV4" | "IPV6")
|
|
997
|
+
attr_accessor store_snapshot_on_local_zone: bool
|
|
996
998
|
SENSITIVE: [:staging_area_tags]
|
|
997
999
|
end
|
|
998
1000
|
|
|
@@ -1023,6 +1025,7 @@ module Aws::Mgn
|
|
|
1023
1025
|
attr_accessor use_fips_endpoint: bool
|
|
1024
1026
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1025
1027
|
attr_accessor internet_protocol: ("IPV4" | "IPV6")
|
|
1028
|
+
attr_accessor store_snapshot_on_local_zone: bool
|
|
1026
1029
|
SENSITIVE: [:staging_area_tags, :tags]
|
|
1027
1030
|
end
|
|
1028
1031
|
|
|
@@ -1351,6 +1354,7 @@ module Aws::Mgn
|
|
|
1351
1354
|
attr_accessor use_fips_endpoint: bool
|
|
1352
1355
|
attr_accessor account_id: ::String
|
|
1353
1356
|
attr_accessor internet_protocol: ("IPV4" | "IPV6")
|
|
1357
|
+
attr_accessor store_snapshot_on_local_zone: bool
|
|
1354
1358
|
SENSITIVE: [:staging_area_tags]
|
|
1355
1359
|
end
|
|
1356
1360
|
|
|
@@ -1371,6 +1375,7 @@ module Aws::Mgn
|
|
|
1371
1375
|
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
|
1372
1376
|
attr_accessor use_fips_endpoint: bool
|
|
1373
1377
|
attr_accessor internet_protocol: ("IPV4" | "IPV6")
|
|
1378
|
+
attr_accessor store_snapshot_on_local_zone: bool
|
|
1374
1379
|
SENSITIVE: [:staging_area_tags]
|
|
1375
1380
|
end
|
|
1376
1381
|
|