aws-sdk-mgn 1.11.0 → 1.14.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mgn/client.rb +396 -44
- data/lib/aws-sdk-mgn/client_api.rb +176 -6
- data/lib/aws-sdk-mgn/errors.rb +10 -0
- data/lib/aws-sdk-mgn/types.rb +527 -43
- data/lib/aws-sdk-mgn.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-mgn/types.rb
CHANGED
@@ -101,21 +101,26 @@ module Aws::Mgn
|
|
101
101
|
# @!attribute [rw] code
|
102
102
|
# @return [String]
|
103
103
|
#
|
104
|
+
# @!attribute [rw] errors
|
105
|
+
# Conflict Exception specific errors.
|
106
|
+
# @return [Array<Types::ErrorDetails>]
|
107
|
+
#
|
104
108
|
# @!attribute [rw] message
|
105
109
|
# @return [String]
|
106
110
|
#
|
107
111
|
# @!attribute [rw] resource_id
|
108
|
-
# A conflict
|
112
|
+
# A conflict occurred when prompting for the Resource ID.
|
109
113
|
# @return [String]
|
110
114
|
#
|
111
115
|
# @!attribute [rw] resource_type
|
112
|
-
# A conflict
|
116
|
+
# A conflict occurred when prompting for resource type.
|
113
117
|
# @return [String]
|
114
118
|
#
|
115
119
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ConflictException AWS API Documentation
|
116
120
|
#
|
117
121
|
class ConflictException < Struct.new(
|
118
122
|
:code,
|
123
|
+
:errors,
|
119
124
|
:message,
|
120
125
|
:resource_id,
|
121
126
|
:resource_type)
|
@@ -123,6 +128,56 @@ module Aws::Mgn
|
|
123
128
|
include Aws::Structure
|
124
129
|
end
|
125
130
|
|
131
|
+
# @note When making an API call, you may pass CreateLaunchConfigurationTemplateRequest
|
132
|
+
# data as a hash:
|
133
|
+
#
|
134
|
+
# {
|
135
|
+
# post_launch_actions: {
|
136
|
+
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
137
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
138
|
+
# s3_log_bucket: "S3LogBucketName",
|
139
|
+
# s3_output_key_prefix: "BoundedString",
|
140
|
+
# ssm_documents: [
|
141
|
+
# {
|
142
|
+
# action_name: "BoundedString", # required
|
143
|
+
# must_succeed_for_cutover: false,
|
144
|
+
# parameters: {
|
145
|
+
# "SsmDocumentParameterName" => [
|
146
|
+
# {
|
147
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
148
|
+
# parameter_type: "STRING", # required, accepts STRING
|
149
|
+
# },
|
150
|
+
# ],
|
151
|
+
# },
|
152
|
+
# ssm_document_name: "SsmDocumentName", # required
|
153
|
+
# timeout_seconds: 1,
|
154
|
+
# },
|
155
|
+
# ],
|
156
|
+
# },
|
157
|
+
# tags: {
|
158
|
+
# "TagKey" => "TagValue",
|
159
|
+
# },
|
160
|
+
# }
|
161
|
+
#
|
162
|
+
# @!attribute [rw] post_launch_actions
|
163
|
+
# Request to associate the default Application Migration Service
|
164
|
+
# Security group with the Replication Settings template.
|
165
|
+
# @return [Types::PostLaunchActions]
|
166
|
+
#
|
167
|
+
# @!attribute [rw] tags
|
168
|
+
# Request to associate the default Application Migration Service
|
169
|
+
# Security group with the Replication Settings template.
|
170
|
+
# @return [Hash<String,String>]
|
171
|
+
#
|
172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateLaunchConfigurationTemplateRequest AWS API Documentation
|
173
|
+
#
|
174
|
+
class CreateLaunchConfigurationTemplateRequest < Struct.new(
|
175
|
+
:post_launch_actions,
|
176
|
+
:tags)
|
177
|
+
SENSITIVE = [:tags]
|
178
|
+
include Aws::Structure
|
179
|
+
end
|
180
|
+
|
126
181
|
# @note When making an API call, you may pass CreateReplicationConfigurationTemplateRequest
|
127
182
|
# data as a hash:
|
128
183
|
#
|
@@ -131,7 +186,7 @@ module Aws::Mgn
|
|
131
186
|
# bandwidth_throttling: 1, # required
|
132
187
|
# create_public_ip: false, # required
|
133
188
|
# data_plane_routing: "PRIVATE_IP", # required, accepts PRIVATE_IP, PUBLIC_IP
|
134
|
-
# default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1
|
189
|
+
# default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1, GP3
|
135
190
|
# ebs_encryption: "DEFAULT", # required, accepts DEFAULT, CUSTOM
|
136
191
|
# ebs_encryption_key_arn: "ARN",
|
137
192
|
# replication_server_instance_type: "EC2InstanceType", # required
|
@@ -167,17 +222,17 @@ module Aws::Mgn
|
|
167
222
|
# @return [String]
|
168
223
|
#
|
169
224
|
# @!attribute [rw] default_large_staging_disk_type
|
170
|
-
# Request to configure the
|
225
|
+
# Request to configure the default large staging disk EBS volume type
|
171
226
|
# during Replication Settings template creation.
|
172
227
|
# @return [String]
|
173
228
|
#
|
174
229
|
# @!attribute [rw] ebs_encryption
|
175
|
-
# Request to configure EBS
|
230
|
+
# Request to configure EBS encryption during Replication Settings
|
176
231
|
# template creation.
|
177
232
|
# @return [String]
|
178
233
|
#
|
179
234
|
# @!attribute [rw] ebs_encryption_key_arn
|
180
|
-
# Request to configure an EBS
|
235
|
+
# Request to configure an EBS encryption key during Replication
|
181
236
|
# Settings template creation.
|
182
237
|
# @return [String]
|
183
238
|
#
|
@@ -187,8 +242,8 @@ module Aws::Mgn
|
|
187
242
|
# @return [String]
|
188
243
|
#
|
189
244
|
# @!attribute [rw] replication_servers_security_groups_i_ds
|
190
|
-
# Request to configure the Replication Server
|
191
|
-
#
|
245
|
+
# Request to configure the Replication Server Security group ID during
|
246
|
+
# Replication Settings template creation.
|
192
247
|
# @return [Array<String>]
|
193
248
|
#
|
194
249
|
# @!attribute [rw] staging_area_subnet_id
|
@@ -197,7 +252,7 @@ module Aws::Mgn
|
|
197
252
|
# @return [String]
|
198
253
|
#
|
199
254
|
# @!attribute [rw] staging_area_tags
|
200
|
-
# Request to configure
|
255
|
+
# Request to configure Staging Area tags during Replication Settings
|
201
256
|
# template creation.
|
202
257
|
# @return [Hash<String,String>]
|
203
258
|
#
|
@@ -269,7 +324,7 @@ module Aws::Mgn
|
|
269
324
|
# @return [String]
|
270
325
|
#
|
271
326
|
# @!attribute [rw] lag_duration
|
272
|
-
# Request to query data replication lag
|
327
|
+
# Request to query data replication lag duration.
|
273
328
|
# @return [String]
|
274
329
|
#
|
275
330
|
# @!attribute [rw] last_snapshot_date_time
|
@@ -352,7 +407,7 @@ module Aws::Mgn
|
|
352
407
|
include Aws::Structure
|
353
408
|
end
|
354
409
|
|
355
|
-
# Data replication
|
410
|
+
# Data replication initiation step.
|
356
411
|
#
|
357
412
|
# @!attribute [rw] name
|
358
413
|
# Request to query data initiation step name.
|
@@ -394,6 +449,29 @@ module Aws::Mgn
|
|
394
449
|
#
|
395
450
|
class DeleteJobResponse < Aws::EmptyStructure; end
|
396
451
|
|
452
|
+
# @note When making an API call, you may pass DeleteLaunchConfigurationTemplateRequest
|
453
|
+
# data as a hash:
|
454
|
+
#
|
455
|
+
# {
|
456
|
+
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
457
|
+
# }
|
458
|
+
#
|
459
|
+
# @!attribute [rw] launch_configuration_template_id
|
460
|
+
# ID of resource to be deleted.
|
461
|
+
# @return [String]
|
462
|
+
#
|
463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteLaunchConfigurationTemplateRequest AWS API Documentation
|
464
|
+
#
|
465
|
+
class DeleteLaunchConfigurationTemplateRequest < Struct.new(
|
466
|
+
:launch_configuration_template_id)
|
467
|
+
SENSITIVE = []
|
468
|
+
include Aws::Structure
|
469
|
+
end
|
470
|
+
|
471
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteLaunchConfigurationTemplateResponse AWS API Documentation
|
472
|
+
#
|
473
|
+
class DeleteLaunchConfigurationTemplateResponse < Aws::EmptyStructure; end
|
474
|
+
|
397
475
|
# @note When making an API call, you may pass DeleteReplicationConfigurationTemplateRequest
|
398
476
|
# data as a hash:
|
399
477
|
#
|
@@ -512,7 +590,7 @@ module Aws::Mgn
|
|
512
590
|
# data as a hash:
|
513
591
|
#
|
514
592
|
# {
|
515
|
-
# filters: {
|
593
|
+
# filters: {
|
516
594
|
# from_date: "ISO8601DatetimeString",
|
517
595
|
# job_i_ds: ["JobID"],
|
518
596
|
# to_date: "ISO8601DatetimeString",
|
@@ -526,11 +604,11 @@ module Aws::Mgn
|
|
526
604
|
# @return [Types::DescribeJobsRequestFilters]
|
527
605
|
#
|
528
606
|
# @!attribute [rw] max_results
|
529
|
-
# Request to describe
|
607
|
+
# Request to describe job log items by max results.
|
530
608
|
# @return [Integer]
|
531
609
|
#
|
532
610
|
# @!attribute [rw] next_token
|
533
|
-
# Request to describe
|
611
|
+
# Request to describe job log items by next token.
|
534
612
|
# @return [String]
|
535
613
|
#
|
536
614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeJobsRequest AWS API Documentation
|
@@ -563,7 +641,7 @@ module Aws::Mgn
|
|
563
641
|
# @return [Array<String>]
|
564
642
|
#
|
565
643
|
# @!attribute [rw] to_date
|
566
|
-
# Request to describe
|
644
|
+
# Request to describe job log items by last date.
|
567
645
|
# @return [String]
|
568
646
|
#
|
569
647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeJobsRequestFilters AWS API Documentation
|
@@ -593,13 +671,61 @@ module Aws::Mgn
|
|
593
671
|
include Aws::Structure
|
594
672
|
end
|
595
673
|
|
674
|
+
# @note When making an API call, you may pass DescribeLaunchConfigurationTemplatesRequest
|
675
|
+
# data as a hash:
|
676
|
+
#
|
677
|
+
# {
|
678
|
+
# launch_configuration_template_i_ds: ["LaunchConfigurationTemplateID"],
|
679
|
+
# max_results: 1,
|
680
|
+
# next_token: "PaginationToken",
|
681
|
+
# }
|
682
|
+
#
|
683
|
+
# @!attribute [rw] launch_configuration_template_i_ds
|
684
|
+
# Request to disconnect Source Server from service by Server ID.
|
685
|
+
# @return [Array<String>]
|
686
|
+
#
|
687
|
+
# @!attribute [rw] max_results
|
688
|
+
# Request to disconnect Source Server from service by Server ID.
|
689
|
+
# @return [Integer]
|
690
|
+
#
|
691
|
+
# @!attribute [rw] next_token
|
692
|
+
# Request to disconnect Source Server from service by Server ID.
|
693
|
+
# @return [String]
|
694
|
+
#
|
695
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesRequest AWS API Documentation
|
696
|
+
#
|
697
|
+
class DescribeLaunchConfigurationTemplatesRequest < Struct.new(
|
698
|
+
:launch_configuration_template_i_ds,
|
699
|
+
:max_results,
|
700
|
+
:next_token)
|
701
|
+
SENSITIVE = []
|
702
|
+
include Aws::Structure
|
703
|
+
end
|
704
|
+
|
705
|
+
# @!attribute [rw] items
|
706
|
+
# Request to disconnect Source Server from service by Server ID.
|
707
|
+
# @return [Array<Types::LaunchConfigurationTemplate>]
|
708
|
+
#
|
709
|
+
# @!attribute [rw] next_token
|
710
|
+
# Request to disconnect Source Server from service by Server ID.
|
711
|
+
# @return [String]
|
712
|
+
#
|
713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesResponse AWS API Documentation
|
714
|
+
#
|
715
|
+
class DescribeLaunchConfigurationTemplatesResponse < Struct.new(
|
716
|
+
:items,
|
717
|
+
:next_token)
|
718
|
+
SENSITIVE = []
|
719
|
+
include Aws::Structure
|
720
|
+
end
|
721
|
+
|
596
722
|
# @note When making an API call, you may pass DescribeReplicationConfigurationTemplatesRequest
|
597
723
|
# data as a hash:
|
598
724
|
#
|
599
725
|
# {
|
600
726
|
# max_results: 1,
|
601
727
|
# next_token: "PaginationToken",
|
602
|
-
# replication_configuration_template_i_ds: ["ReplicationConfigurationTemplateID"],
|
728
|
+
# replication_configuration_template_i_ds: ["ReplicationConfigurationTemplateID"],
|
603
729
|
# }
|
604
730
|
#
|
605
731
|
# @!attribute [rw] max_results
|
@@ -649,7 +775,7 @@ module Aws::Mgn
|
|
649
775
|
# data as a hash:
|
650
776
|
#
|
651
777
|
# {
|
652
|
-
# filters: {
|
778
|
+
# filters: {
|
653
779
|
# is_archived: false,
|
654
780
|
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
655
781
|
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
@@ -817,6 +943,35 @@ module Aws::Mgn
|
|
817
943
|
include Aws::Structure
|
818
944
|
end
|
819
945
|
|
946
|
+
# Error details.
|
947
|
+
#
|
948
|
+
# @!attribute [rw] code
|
949
|
+
# Error details code.
|
950
|
+
# @return [String]
|
951
|
+
#
|
952
|
+
# @!attribute [rw] message
|
953
|
+
# Error details message.
|
954
|
+
# @return [String]
|
955
|
+
#
|
956
|
+
# @!attribute [rw] resource_id
|
957
|
+
# Error details resourceId.
|
958
|
+
# @return [String]
|
959
|
+
#
|
960
|
+
# @!attribute [rw] resource_type
|
961
|
+
# Error details resourceType.
|
962
|
+
# @return [String]
|
963
|
+
#
|
964
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ErrorDetails AWS API Documentation
|
965
|
+
#
|
966
|
+
class ErrorDetails < Struct.new(
|
967
|
+
:code,
|
968
|
+
:message,
|
969
|
+
:resource_id,
|
970
|
+
:resource_type)
|
971
|
+
SENSITIVE = []
|
972
|
+
include Aws::Structure
|
973
|
+
end
|
974
|
+
|
820
975
|
# @note When making an API call, you may pass FinalizeCutoverRequest
|
821
976
|
# data as a hash:
|
822
977
|
#
|
@@ -825,7 +980,7 @@ module Aws::Mgn
|
|
825
980
|
# }
|
826
981
|
#
|
827
982
|
# @!attribute [rw] source_server_id
|
828
|
-
# Request to finalize Cutover by
|
983
|
+
# Request to finalize Cutover by Source Server ID.
|
829
984
|
# @return [String]
|
830
985
|
#
|
831
986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/FinalizeCutoverRequest AWS API Documentation
|
@@ -863,7 +1018,7 @@ module Aws::Mgn
|
|
863
1018
|
# }
|
864
1019
|
#
|
865
1020
|
# @!attribute [rw] source_server_id
|
866
|
-
# Request to get Replication
|
1021
|
+
# Request to get Replication Configuration by Source Server ID.
|
867
1022
|
# @return [String]
|
868
1023
|
#
|
869
1024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/GetReplicationConfigurationRequest AWS API Documentation
|
@@ -970,7 +1125,7 @@ module Aws::Mgn
|
|
970
1125
|
# @return [String]
|
971
1126
|
#
|
972
1127
|
# @!attribute [rw] tags
|
973
|
-
# Tags associated with
|
1128
|
+
# Tags associated with specific Job.
|
974
1129
|
# @return [Hash<String,String>]
|
975
1130
|
#
|
976
1131
|
# @!attribute [rw] type
|
@@ -1046,6 +1201,44 @@ module Aws::Mgn
|
|
1046
1201
|
include Aws::Structure
|
1047
1202
|
end
|
1048
1203
|
|
1204
|
+
# Job type.
|
1205
|
+
#
|
1206
|
+
# @!attribute [rw] execution_id
|
1207
|
+
# Job type.
|
1208
|
+
# @return [String]
|
1209
|
+
#
|
1210
|
+
# @!attribute [rw] execution_status
|
1211
|
+
# Job type.
|
1212
|
+
# @return [String]
|
1213
|
+
#
|
1214
|
+
# @!attribute [rw] failure_reason
|
1215
|
+
# Job type.
|
1216
|
+
# @return [String]
|
1217
|
+
#
|
1218
|
+
# @!attribute [rw] ssm_document
|
1219
|
+
# Job type.
|
1220
|
+
# @return [Types::SsmDocument]
|
1221
|
+
#
|
1222
|
+
# @!attribute [rw] ssm_document_type
|
1223
|
+
# Job type.
|
1224
|
+
# @return [String]
|
1225
|
+
#
|
1226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/JobPostLaunchActionsLaunchStatus AWS API Documentation
|
1227
|
+
#
|
1228
|
+
class JobPostLaunchActionsLaunchStatus < Struct.new(
|
1229
|
+
:execution_id,
|
1230
|
+
:execution_status,
|
1231
|
+
:failure_reason,
|
1232
|
+
:ssm_document,
|
1233
|
+
:ssm_document_type)
|
1234
|
+
SENSITIVE = []
|
1235
|
+
include Aws::Structure
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
# @!attribute [rw] boot_mode
|
1239
|
+
# Launch configuration boot mode.
|
1240
|
+
# @return [String]
|
1241
|
+
#
|
1049
1242
|
# @!attribute [rw] copy_private_ip
|
1050
1243
|
# Copy Private IP during Launch Configuration.
|
1051
1244
|
# @return [Boolean]
|
@@ -1055,57 +1248,89 @@ module Aws::Mgn
|
|
1055
1248
|
# @return [Boolean]
|
1056
1249
|
#
|
1057
1250
|
# @!attribute [rw] ec2_launch_template_id
|
1058
|
-
#
|
1251
|
+
# Launch configuration EC2 Launch template ID.
|
1059
1252
|
# @return [String]
|
1060
1253
|
#
|
1061
1254
|
# @!attribute [rw] launch_disposition
|
1062
|
-
#
|
1255
|
+
# Launch disposition for launch configuration.
|
1063
1256
|
# @return [String]
|
1064
1257
|
#
|
1065
1258
|
# @!attribute [rw] licensing
|
1066
|
-
#
|
1259
|
+
# Launch configuration OS licensing.
|
1067
1260
|
# @return [Types::Licensing]
|
1068
1261
|
#
|
1069
1262
|
# @!attribute [rw] name
|
1070
|
-
#
|
1263
|
+
# Launch configuration name.
|
1071
1264
|
# @return [String]
|
1072
1265
|
#
|
1266
|
+
# @!attribute [rw] post_launch_actions
|
1267
|
+
# Server participating in Job.
|
1268
|
+
# @return [Types::PostLaunchActions]
|
1269
|
+
#
|
1073
1270
|
# @!attribute [rw] source_server_id
|
1074
|
-
#
|
1271
|
+
# Launch configuration Source Server ID.
|
1075
1272
|
# @return [String]
|
1076
1273
|
#
|
1077
1274
|
# @!attribute [rw] target_instance_type_right_sizing_method
|
1078
|
-
#
|
1079
|
-
# method.
|
1275
|
+
# Launch configuration Target instance type right sizing method.
|
1080
1276
|
# @return [String]
|
1081
1277
|
#
|
1082
1278
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchConfiguration AWS API Documentation
|
1083
1279
|
#
|
1084
1280
|
class LaunchConfiguration < Struct.new(
|
1281
|
+
:boot_mode,
|
1085
1282
|
:copy_private_ip,
|
1086
1283
|
:copy_tags,
|
1087
1284
|
:ec2_launch_template_id,
|
1088
1285
|
:launch_disposition,
|
1089
1286
|
:licensing,
|
1090
1287
|
:name,
|
1288
|
+
:post_launch_actions,
|
1091
1289
|
:source_server_id,
|
1092
1290
|
:target_instance_type_right_sizing_method)
|
1093
1291
|
SENSITIVE = []
|
1094
1292
|
include Aws::Structure
|
1095
1293
|
end
|
1096
1294
|
|
1097
|
-
#
|
1295
|
+
# @!attribute [rw] arn
|
1296
|
+
# Copy Private IP during Launch Configuration.
|
1297
|
+
# @return [String]
|
1298
|
+
#
|
1299
|
+
# @!attribute [rw] launch_configuration_template_id
|
1300
|
+
# Copy Private IP during Launch Configuration.
|
1301
|
+
# @return [String]
|
1302
|
+
#
|
1303
|
+
# @!attribute [rw] post_launch_actions
|
1304
|
+
# Copy Private IP during Launch Configuration.
|
1305
|
+
# @return [Types::PostLaunchActions]
|
1306
|
+
#
|
1307
|
+
# @!attribute [rw] tags
|
1308
|
+
# Copy Private IP during Launch Configuration.
|
1309
|
+
# @return [Hash<String,String>]
|
1310
|
+
#
|
1311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchConfigurationTemplate AWS API Documentation
|
1312
|
+
#
|
1313
|
+
class LaunchConfigurationTemplate < Struct.new(
|
1314
|
+
:arn,
|
1315
|
+
:launch_configuration_template_id,
|
1316
|
+
:post_launch_actions,
|
1317
|
+
:tags)
|
1318
|
+
SENSITIVE = [:tags]
|
1319
|
+
include Aws::Structure
|
1320
|
+
end
|
1321
|
+
|
1322
|
+
# Launched instance.
|
1098
1323
|
#
|
1099
1324
|
# @!attribute [rw] ec2_instance_id
|
1100
|
-
#
|
1325
|
+
# Launched instance EC2 ID.
|
1101
1326
|
# @return [String]
|
1102
1327
|
#
|
1103
1328
|
# @!attribute [rw] first_boot
|
1104
|
-
#
|
1329
|
+
# Launched instance first boot.
|
1105
1330
|
# @return [String]
|
1106
1331
|
#
|
1107
1332
|
# @!attribute [rw] job_id
|
1108
|
-
#
|
1333
|
+
# Launched instance Job ID.
|
1109
1334
|
# @return [String]
|
1110
1335
|
#
|
1111
1336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchedInstance AWS API Documentation
|
@@ -1256,7 +1481,7 @@ module Aws::Mgn
|
|
1256
1481
|
# Lifecycle last Test.
|
1257
1482
|
#
|
1258
1483
|
# @!attribute [rw] finalized
|
1259
|
-
# Lifecycle last Test
|
1484
|
+
# Lifecycle last Test finalized.
|
1260
1485
|
# @return [Types::LifeCycleLastTestFinalized]
|
1261
1486
|
#
|
1262
1487
|
# @!attribute [rw] initiated
|
@@ -1277,7 +1502,7 @@ module Aws::Mgn
|
|
1277
1502
|
include Aws::Structure
|
1278
1503
|
end
|
1279
1504
|
|
1280
|
-
# Lifecycle last Test
|
1505
|
+
# Lifecycle last Test finalized.
|
1281
1506
|
#
|
1282
1507
|
# @!attribute [rw] api_call_date_time
|
1283
1508
|
# Lifecycle Test failed API call date and time.
|
@@ -1418,6 +1643,14 @@ module Aws::Mgn
|
|
1418
1643
|
# Participating server launch status.
|
1419
1644
|
# @return [String]
|
1420
1645
|
#
|
1646
|
+
# @!attribute [rw] launched_ec2_instance_id
|
1647
|
+
# Participating server Source Server ID.
|
1648
|
+
# @return [String]
|
1649
|
+
#
|
1650
|
+
# @!attribute [rw] post_launch_actions_status
|
1651
|
+
# Participating server Source Server ID.
|
1652
|
+
# @return [Types::PostLaunchActionsStatus]
|
1653
|
+
#
|
1421
1654
|
# @!attribute [rw] source_server_id
|
1422
1655
|
# Participating server Source Server ID.
|
1423
1656
|
# @return [String]
|
@@ -1426,11 +1659,92 @@ module Aws::Mgn
|
|
1426
1659
|
#
|
1427
1660
|
class ParticipatingServer < Struct.new(
|
1428
1661
|
:launch_status,
|
1662
|
+
:launched_ec2_instance_id,
|
1663
|
+
:post_launch_actions_status,
|
1429
1664
|
:source_server_id)
|
1430
1665
|
SENSITIVE = []
|
1431
1666
|
include Aws::Structure
|
1432
1667
|
end
|
1433
1668
|
|
1669
|
+
# Server participating in Job.
|
1670
|
+
#
|
1671
|
+
# @note When making an API call, you may pass PostLaunchActions
|
1672
|
+
# data as a hash:
|
1673
|
+
#
|
1674
|
+
# {
|
1675
|
+
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
1676
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
1677
|
+
# s3_log_bucket: "S3LogBucketName",
|
1678
|
+
# s3_output_key_prefix: "BoundedString",
|
1679
|
+
# ssm_documents: [
|
1680
|
+
# {
|
1681
|
+
# action_name: "BoundedString", # required
|
1682
|
+
# must_succeed_for_cutover: false,
|
1683
|
+
# parameters: {
|
1684
|
+
# "SsmDocumentParameterName" => [
|
1685
|
+
# {
|
1686
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
1687
|
+
# parameter_type: "STRING", # required, accepts STRING
|
1688
|
+
# },
|
1689
|
+
# ],
|
1690
|
+
# },
|
1691
|
+
# ssm_document_name: "SsmDocumentName", # required
|
1692
|
+
# timeout_seconds: 1,
|
1693
|
+
# },
|
1694
|
+
# ],
|
1695
|
+
# }
|
1696
|
+
#
|
1697
|
+
# @!attribute [rw] cloud_watch_log_group_name
|
1698
|
+
# Server participating in Job.
|
1699
|
+
# @return [String]
|
1700
|
+
#
|
1701
|
+
# @!attribute [rw] deployment
|
1702
|
+
# Server participating in Job.
|
1703
|
+
# @return [String]
|
1704
|
+
#
|
1705
|
+
# @!attribute [rw] s3_log_bucket
|
1706
|
+
# Server participating in Job.
|
1707
|
+
# @return [String]
|
1708
|
+
#
|
1709
|
+
# @!attribute [rw] s3_output_key_prefix
|
1710
|
+
# Server participating in Job.
|
1711
|
+
# @return [String]
|
1712
|
+
#
|
1713
|
+
# @!attribute [rw] ssm_documents
|
1714
|
+
# Server participating in Job.
|
1715
|
+
# @return [Array<Types::SsmDocument>]
|
1716
|
+
#
|
1717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActions AWS API Documentation
|
1718
|
+
#
|
1719
|
+
class PostLaunchActions < Struct.new(
|
1720
|
+
:cloud_watch_log_group_name,
|
1721
|
+
:deployment,
|
1722
|
+
:s3_log_bucket,
|
1723
|
+
:s3_output_key_prefix,
|
1724
|
+
:ssm_documents)
|
1725
|
+
SENSITIVE = []
|
1726
|
+
include Aws::Structure
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
# Server participating in Job.
|
1730
|
+
#
|
1731
|
+
# @!attribute [rw] post_launch_actions_launch_status_list
|
1732
|
+
# Server participating in Job.
|
1733
|
+
# @return [Array<Types::JobPostLaunchActionsLaunchStatus>]
|
1734
|
+
#
|
1735
|
+
# @!attribute [rw] ssm_agent_discovery_datetime
|
1736
|
+
# Server participating in Job.
|
1737
|
+
# @return [String]
|
1738
|
+
#
|
1739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActionsStatus AWS API Documentation
|
1740
|
+
#
|
1741
|
+
class PostLaunchActionsStatus < Struct.new(
|
1742
|
+
:post_launch_actions_launch_status_list,
|
1743
|
+
:ssm_agent_discovery_datetime)
|
1744
|
+
SENSITIVE = []
|
1745
|
+
include Aws::Structure
|
1746
|
+
end
|
1747
|
+
|
1434
1748
|
# @!attribute [rw] associate_default_security_group
|
1435
1749
|
# Replication Configuration associate default Application Migration
|
1436
1750
|
# Service Security Group.
|
@@ -1523,7 +1837,8 @@ module Aws::Mgn
|
|
1523
1837
|
# device_name: "BoundedString",
|
1524
1838
|
# iops: 1,
|
1525
1839
|
# is_boot_disk: false,
|
1526
|
-
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD
|
1840
|
+
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
|
1841
|
+
# throughput: 1,
|
1527
1842
|
# }
|
1528
1843
|
#
|
1529
1844
|
# @!attribute [rw] device_name
|
@@ -1542,13 +1857,18 @@ module Aws::Mgn
|
|
1542
1857
|
# Replication Configuration replicated disk staging disk type.
|
1543
1858
|
# @return [String]
|
1544
1859
|
#
|
1860
|
+
# @!attribute [rw] throughput
|
1861
|
+
# Replication Configuration replicated disk throughput.
|
1862
|
+
# @return [Integer]
|
1863
|
+
#
|
1545
1864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ReplicationConfigurationReplicatedDisk AWS API Documentation
|
1546
1865
|
#
|
1547
1866
|
class ReplicationConfigurationReplicatedDisk < Struct.new(
|
1548
1867
|
:device_name,
|
1549
1868
|
:iops,
|
1550
1869
|
:is_boot_disk,
|
1551
|
-
:staging_disk_type
|
1870
|
+
:staging_disk_type,
|
1871
|
+
:throughput)
|
1552
1872
|
SENSITIVE = []
|
1553
1873
|
include Aws::Structure
|
1554
1874
|
end
|
@@ -1563,7 +1883,7 @@ module Aws::Mgn
|
|
1563
1883
|
# @return [Boolean]
|
1564
1884
|
#
|
1565
1885
|
# @!attribute [rw] bandwidth_throttling
|
1566
|
-
# Replication Configuration template bandwidth
|
1886
|
+
# Replication Configuration template bandwidth throttling.
|
1567
1887
|
# @return [Integer]
|
1568
1888
|
#
|
1569
1889
|
# @!attribute [rw] create_public_ip
|
@@ -1575,7 +1895,7 @@ module Aws::Mgn
|
|
1575
1895
|
# @return [String]
|
1576
1896
|
#
|
1577
1897
|
# @!attribute [rw] default_large_staging_disk_type
|
1578
|
-
# Replication Configuration template use
|
1898
|
+
# Replication Configuration template use default large Staging Disk
|
1579
1899
|
# type.
|
1580
1900
|
# @return [String]
|
1581
1901
|
#
|
@@ -1588,7 +1908,7 @@ module Aws::Mgn
|
|
1588
1908
|
# @return [String]
|
1589
1909
|
#
|
1590
1910
|
# @!attribute [rw] replication_configuration_template_id
|
1591
|
-
# Replication Configuration template
|
1911
|
+
# Replication Configuration template ID.
|
1592
1912
|
# @return [String]
|
1593
1913
|
#
|
1594
1914
|
# @!attribute [rw] replication_server_instance_type
|
@@ -1696,8 +2016,12 @@ module Aws::Mgn
|
|
1696
2016
|
# Exceeded the service quota code.
|
1697
2017
|
# @return [String]
|
1698
2018
|
#
|
2019
|
+
# @!attribute [rw] quota_value
|
2020
|
+
# Exceeded the service quota value.
|
2021
|
+
# @return [Integer]
|
2022
|
+
#
|
1699
2023
|
# @!attribute [rw] resource_id
|
1700
|
-
# Exceeded the service quota resource
|
2024
|
+
# Exceeded the service quota resource ID.
|
1701
2025
|
# @return [String]
|
1702
2026
|
#
|
1703
2027
|
# @!attribute [rw] resource_type
|
@@ -1714,6 +2038,7 @@ module Aws::Mgn
|
|
1714
2038
|
:code,
|
1715
2039
|
:message,
|
1716
2040
|
:quota_code,
|
2041
|
+
:quota_value,
|
1717
2042
|
:resource_id,
|
1718
2043
|
:resource_type,
|
1719
2044
|
:service_code)
|
@@ -1827,6 +2152,85 @@ module Aws::Mgn
|
|
1827
2152
|
include Aws::Structure
|
1828
2153
|
end
|
1829
2154
|
|
2155
|
+
# Source server replication type.
|
2156
|
+
#
|
2157
|
+
# @note When making an API call, you may pass SsmDocument
|
2158
|
+
# data as a hash:
|
2159
|
+
#
|
2160
|
+
# {
|
2161
|
+
# action_name: "BoundedString", # required
|
2162
|
+
# must_succeed_for_cutover: false,
|
2163
|
+
# parameters: {
|
2164
|
+
# "SsmDocumentParameterName" => [
|
2165
|
+
# {
|
2166
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
2167
|
+
# parameter_type: "STRING", # required, accepts STRING
|
2168
|
+
# },
|
2169
|
+
# ],
|
2170
|
+
# },
|
2171
|
+
# ssm_document_name: "SsmDocumentName", # required
|
2172
|
+
# timeout_seconds: 1,
|
2173
|
+
# }
|
2174
|
+
#
|
2175
|
+
# @!attribute [rw] action_name
|
2176
|
+
# Source server replication type.
|
2177
|
+
# @return [String]
|
2178
|
+
#
|
2179
|
+
# @!attribute [rw] must_succeed_for_cutover
|
2180
|
+
# Source server replication type.
|
2181
|
+
# @return [Boolean]
|
2182
|
+
#
|
2183
|
+
# @!attribute [rw] parameters
|
2184
|
+
# Source server replication type.
|
2185
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2186
|
+
#
|
2187
|
+
# @!attribute [rw] ssm_document_name
|
2188
|
+
# Source server replication type.
|
2189
|
+
# @return [String]
|
2190
|
+
#
|
2191
|
+
# @!attribute [rw] timeout_seconds
|
2192
|
+
# Source server replication type.
|
2193
|
+
# @return [Integer]
|
2194
|
+
#
|
2195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmDocument AWS API Documentation
|
2196
|
+
#
|
2197
|
+
class SsmDocument < Struct.new(
|
2198
|
+
:action_name,
|
2199
|
+
:must_succeed_for_cutover,
|
2200
|
+
:parameters,
|
2201
|
+
:ssm_document_name,
|
2202
|
+
:timeout_seconds)
|
2203
|
+
SENSITIVE = []
|
2204
|
+
include Aws::Structure
|
2205
|
+
end
|
2206
|
+
|
2207
|
+
# Source server replication type.
|
2208
|
+
#
|
2209
|
+
# @note When making an API call, you may pass SsmParameterStoreParameter
|
2210
|
+
# data as a hash:
|
2211
|
+
#
|
2212
|
+
# {
|
2213
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
2214
|
+
# parameter_type: "STRING", # required, accepts STRING
|
2215
|
+
# }
|
2216
|
+
#
|
2217
|
+
# @!attribute [rw] parameter_name
|
2218
|
+
# Source server replication type.
|
2219
|
+
# @return [String]
|
2220
|
+
#
|
2221
|
+
# @!attribute [rw] parameter_type
|
2222
|
+
# Source server replication type.
|
2223
|
+
# @return [String]
|
2224
|
+
#
|
2225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmParameterStoreParameter AWS API Documentation
|
2226
|
+
#
|
2227
|
+
class SsmParameterStoreParameter < Struct.new(
|
2228
|
+
:parameter_name,
|
2229
|
+
:parameter_type)
|
2230
|
+
SENSITIVE = []
|
2231
|
+
include Aws::Structure
|
2232
|
+
end
|
2233
|
+
|
1830
2234
|
# @note When making an API call, you may pass StartCutoverRequest
|
1831
2235
|
# data as a hash:
|
1832
2236
|
#
|
@@ -2018,7 +2422,7 @@ module Aws::Mgn
|
|
2018
2422
|
include Aws::Structure
|
2019
2423
|
end
|
2020
2424
|
|
2021
|
-
#
|
2425
|
+
# Uninitialized account exception.
|
2022
2426
|
#
|
2023
2427
|
# @!attribute [rw] code
|
2024
2428
|
# @return [String]
|
@@ -2064,6 +2468,7 @@ module Aws::Mgn
|
|
2064
2468
|
# data as a hash:
|
2065
2469
|
#
|
2066
2470
|
# {
|
2471
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
2067
2472
|
# copy_private_ip: false,
|
2068
2473
|
# copy_tags: false,
|
2069
2474
|
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
@@ -2071,10 +2476,36 @@ module Aws::Mgn
|
|
2071
2476
|
# os_byol: false,
|
2072
2477
|
# },
|
2073
2478
|
# name: "SmallBoundedString",
|
2479
|
+
# post_launch_actions: {
|
2480
|
+
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
2481
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
2482
|
+
# s3_log_bucket: "S3LogBucketName",
|
2483
|
+
# s3_output_key_prefix: "BoundedString",
|
2484
|
+
# ssm_documents: [
|
2485
|
+
# {
|
2486
|
+
# action_name: "BoundedString", # required
|
2487
|
+
# must_succeed_for_cutover: false,
|
2488
|
+
# parameters: {
|
2489
|
+
# "SsmDocumentParameterName" => [
|
2490
|
+
# {
|
2491
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
2492
|
+
# parameter_type: "STRING", # required, accepts STRING
|
2493
|
+
# },
|
2494
|
+
# ],
|
2495
|
+
# },
|
2496
|
+
# ssm_document_name: "SsmDocumentName", # required
|
2497
|
+
# timeout_seconds: 1,
|
2498
|
+
# },
|
2499
|
+
# ],
|
2500
|
+
# },
|
2074
2501
|
# source_server_id: "SourceServerID", # required
|
2075
2502
|
# target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
|
2076
2503
|
# }
|
2077
2504
|
#
|
2505
|
+
# @!attribute [rw] boot_mode
|
2506
|
+
# Update Launch configuration boot mode request.
|
2507
|
+
# @return [String]
|
2508
|
+
#
|
2078
2509
|
# @!attribute [rw] copy_private_ip
|
2079
2510
|
# Update Launch configuration copy Private IP request.
|
2080
2511
|
# @return [Boolean]
|
@@ -2095,6 +2526,10 @@ module Aws::Mgn
|
|
2095
2526
|
# Update Launch configuration name request.
|
2096
2527
|
# @return [String]
|
2097
2528
|
#
|
2529
|
+
# @!attribute [rw] post_launch_actions
|
2530
|
+
# Server participating in Job.
|
2531
|
+
# @return [Types::PostLaunchActions]
|
2532
|
+
#
|
2098
2533
|
# @!attribute [rw] source_server_id
|
2099
2534
|
# Update Launch configuration by Source Server ID request.
|
2100
2535
|
# @return [String]
|
@@ -2106,17 +2541,65 @@ module Aws::Mgn
|
|
2106
2541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateLaunchConfigurationRequest AWS API Documentation
|
2107
2542
|
#
|
2108
2543
|
class UpdateLaunchConfigurationRequest < Struct.new(
|
2544
|
+
:boot_mode,
|
2109
2545
|
:copy_private_ip,
|
2110
2546
|
:copy_tags,
|
2111
2547
|
:launch_disposition,
|
2112
2548
|
:licensing,
|
2113
2549
|
:name,
|
2550
|
+
:post_launch_actions,
|
2114
2551
|
:source_server_id,
|
2115
2552
|
:target_instance_type_right_sizing_method)
|
2116
2553
|
SENSITIVE = []
|
2117
2554
|
include Aws::Structure
|
2118
2555
|
end
|
2119
2556
|
|
2557
|
+
# @note When making an API call, you may pass UpdateLaunchConfigurationTemplateRequest
|
2558
|
+
# data as a hash:
|
2559
|
+
#
|
2560
|
+
# {
|
2561
|
+
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
2562
|
+
# post_launch_actions: {
|
2563
|
+
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
2564
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
2565
|
+
# s3_log_bucket: "S3LogBucketName",
|
2566
|
+
# s3_output_key_prefix: "BoundedString",
|
2567
|
+
# ssm_documents: [
|
2568
|
+
# {
|
2569
|
+
# action_name: "BoundedString", # required
|
2570
|
+
# must_succeed_for_cutover: false,
|
2571
|
+
# parameters: {
|
2572
|
+
# "SsmDocumentParameterName" => [
|
2573
|
+
# {
|
2574
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
2575
|
+
# parameter_type: "STRING", # required, accepts STRING
|
2576
|
+
# },
|
2577
|
+
# ],
|
2578
|
+
# },
|
2579
|
+
# ssm_document_name: "SsmDocumentName", # required
|
2580
|
+
# timeout_seconds: 1,
|
2581
|
+
# },
|
2582
|
+
# ],
|
2583
|
+
# },
|
2584
|
+
# }
|
2585
|
+
#
|
2586
|
+
# @!attribute [rw] launch_configuration_template_id
|
2587
|
+
# Update Launch configuration Target instance right sizing request.
|
2588
|
+
# @return [String]
|
2589
|
+
#
|
2590
|
+
# @!attribute [rw] post_launch_actions
|
2591
|
+
# Update Launch configuration Target instance right sizing request.
|
2592
|
+
# @return [Types::PostLaunchActions]
|
2593
|
+
#
|
2594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateLaunchConfigurationTemplateRequest AWS API Documentation
|
2595
|
+
#
|
2596
|
+
class UpdateLaunchConfigurationTemplateRequest < Struct.new(
|
2597
|
+
:launch_configuration_template_id,
|
2598
|
+
:post_launch_actions)
|
2599
|
+
SENSITIVE = []
|
2600
|
+
include Aws::Structure
|
2601
|
+
end
|
2602
|
+
|
2120
2603
|
# @note When making an API call, you may pass UpdateReplicationConfigurationRequest
|
2121
2604
|
# data as a hash:
|
2122
2605
|
#
|
@@ -2125,7 +2608,7 @@ module Aws::Mgn
|
|
2125
2608
|
# bandwidth_throttling: 1,
|
2126
2609
|
# create_public_ip: false,
|
2127
2610
|
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
2128
|
-
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1
|
2611
|
+
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
|
2129
2612
|
# ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
|
2130
2613
|
# ebs_encryption_key_arn: "ARN",
|
2131
2614
|
# name: "SmallBoundedString",
|
@@ -2134,7 +2617,8 @@ module Aws::Mgn
|
|
2134
2617
|
# device_name: "BoundedString",
|
2135
2618
|
# iops: 1,
|
2136
2619
|
# is_boot_disk: false,
|
2137
|
-
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD
|
2620
|
+
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
|
2621
|
+
# throughput: 1,
|
2138
2622
|
# },
|
2139
2623
|
# ],
|
2140
2624
|
# replication_server_instance_type: "EC2InstanceType",
|
@@ -2243,7 +2727,7 @@ module Aws::Mgn
|
|
2243
2727
|
# bandwidth_throttling: 1,
|
2244
2728
|
# create_public_ip: false,
|
2245
2729
|
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
2246
|
-
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1
|
2730
|
+
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
|
2247
2731
|
# ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
|
2248
2732
|
# ebs_encryption_key_arn: "ARN",
|
2249
2733
|
# replication_configuration_template_id: "ReplicationConfigurationTemplateID", # required
|