aws-sdk-databasemigrationservice 1.84.0 → 1.86.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +1849 -19
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +873 -0
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +392 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +56 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +2122 -63
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- metadata +2 -2
@@ -68,6 +68,20 @@ module Aws::DatabaseMigrationService
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
+
class CreateDataProvider
|
72
|
+
def self.build(context)
|
73
|
+
unless context.config.regional_endpoint
|
74
|
+
endpoint = context.config.endpoint.to_s
|
75
|
+
end
|
76
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
77
|
+
region: context.config.region,
|
78
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
79
|
+
use_fips: context.config.use_fips_endpoint,
|
80
|
+
endpoint: endpoint,
|
81
|
+
)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
71
85
|
class CreateEndpoint
|
72
86
|
def self.build(context)
|
73
87
|
unless context.config.regional_endpoint
|
@@ -110,6 +124,34 @@ module Aws::DatabaseMigrationService
|
|
110
124
|
end
|
111
125
|
end
|
112
126
|
|
127
|
+
class CreateInstanceProfile
|
128
|
+
def self.build(context)
|
129
|
+
unless context.config.regional_endpoint
|
130
|
+
endpoint = context.config.endpoint.to_s
|
131
|
+
end
|
132
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
133
|
+
region: context.config.region,
|
134
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
135
|
+
use_fips: context.config.use_fips_endpoint,
|
136
|
+
endpoint: endpoint,
|
137
|
+
)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
class CreateMigrationProject
|
142
|
+
def self.build(context)
|
143
|
+
unless context.config.regional_endpoint
|
144
|
+
endpoint = context.config.endpoint.to_s
|
145
|
+
end
|
146
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
147
|
+
region: context.config.region,
|
148
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
149
|
+
use_fips: context.config.use_fips_endpoint,
|
150
|
+
endpoint: endpoint,
|
151
|
+
)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
113
155
|
class CreateReplicationConfig
|
114
156
|
def self.build(context)
|
115
157
|
unless context.config.regional_endpoint
|
@@ -194,6 +236,20 @@ module Aws::DatabaseMigrationService
|
|
194
236
|
end
|
195
237
|
end
|
196
238
|
|
239
|
+
class DeleteDataProvider
|
240
|
+
def self.build(context)
|
241
|
+
unless context.config.regional_endpoint
|
242
|
+
endpoint = context.config.endpoint.to_s
|
243
|
+
end
|
244
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
245
|
+
region: context.config.region,
|
246
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
247
|
+
use_fips: context.config.use_fips_endpoint,
|
248
|
+
endpoint: endpoint,
|
249
|
+
)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
197
253
|
class DeleteEndpoint
|
198
254
|
def self.build(context)
|
199
255
|
unless context.config.regional_endpoint
|
@@ -250,6 +306,34 @@ module Aws::DatabaseMigrationService
|
|
250
306
|
end
|
251
307
|
end
|
252
308
|
|
309
|
+
class DeleteInstanceProfile
|
310
|
+
def self.build(context)
|
311
|
+
unless context.config.regional_endpoint
|
312
|
+
endpoint = context.config.endpoint.to_s
|
313
|
+
end
|
314
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
315
|
+
region: context.config.region,
|
316
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
317
|
+
use_fips: context.config.use_fips_endpoint,
|
318
|
+
endpoint: endpoint,
|
319
|
+
)
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
323
|
+
class DeleteMigrationProject
|
324
|
+
def self.build(context)
|
325
|
+
unless context.config.regional_endpoint
|
326
|
+
endpoint = context.config.endpoint.to_s
|
327
|
+
end
|
328
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
329
|
+
region: context.config.region,
|
330
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
331
|
+
use_fips: context.config.use_fips_endpoint,
|
332
|
+
endpoint: endpoint,
|
333
|
+
)
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
253
337
|
class DeleteReplicationConfig
|
254
338
|
def self.build(context)
|
255
339
|
unless context.config.regional_endpoint
|
@@ -376,6 +460,34 @@ module Aws::DatabaseMigrationService
|
|
376
460
|
end
|
377
461
|
end
|
378
462
|
|
463
|
+
class DescribeConversionConfiguration
|
464
|
+
def self.build(context)
|
465
|
+
unless context.config.regional_endpoint
|
466
|
+
endpoint = context.config.endpoint.to_s
|
467
|
+
end
|
468
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
469
|
+
region: context.config.region,
|
470
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
471
|
+
use_fips: context.config.use_fips_endpoint,
|
472
|
+
endpoint: endpoint,
|
473
|
+
)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
477
|
+
class DescribeDataProviders
|
478
|
+
def self.build(context)
|
479
|
+
unless context.config.regional_endpoint
|
480
|
+
endpoint = context.config.endpoint.to_s
|
481
|
+
end
|
482
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
483
|
+
region: context.config.region,
|
484
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
485
|
+
use_fips: context.config.use_fips_endpoint,
|
486
|
+
endpoint: endpoint,
|
487
|
+
)
|
488
|
+
end
|
489
|
+
end
|
490
|
+
|
379
491
|
class DescribeEndpointSettings
|
380
492
|
def self.build(context)
|
381
493
|
unless context.config.regional_endpoint
|
@@ -418,6 +530,20 @@ module Aws::DatabaseMigrationService
|
|
418
530
|
end
|
419
531
|
end
|
420
532
|
|
533
|
+
class DescribeEngineVersions
|
534
|
+
def self.build(context)
|
535
|
+
unless context.config.regional_endpoint
|
536
|
+
endpoint = context.config.endpoint.to_s
|
537
|
+
end
|
538
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
539
|
+
region: context.config.region,
|
540
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
541
|
+
use_fips: context.config.use_fips_endpoint,
|
542
|
+
endpoint: endpoint,
|
543
|
+
)
|
544
|
+
end
|
545
|
+
end
|
546
|
+
|
421
547
|
class DescribeEventCategories
|
422
548
|
def self.build(context)
|
423
549
|
unless context.config.regional_endpoint
|
@@ -460,6 +586,20 @@ module Aws::DatabaseMigrationService
|
|
460
586
|
end
|
461
587
|
end
|
462
588
|
|
589
|
+
class DescribeExtensionPackAssociations
|
590
|
+
def self.build(context)
|
591
|
+
unless context.config.regional_endpoint
|
592
|
+
endpoint = context.config.endpoint.to_s
|
593
|
+
end
|
594
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
595
|
+
region: context.config.region,
|
596
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
597
|
+
use_fips: context.config.use_fips_endpoint,
|
598
|
+
endpoint: endpoint,
|
599
|
+
)
|
600
|
+
end
|
601
|
+
end
|
602
|
+
|
463
603
|
class DescribeFleetAdvisorCollectors
|
464
604
|
def self.build(context)
|
465
605
|
unless context.config.regional_endpoint
|
@@ -530,6 +670,104 @@ module Aws::DatabaseMigrationService
|
|
530
670
|
end
|
531
671
|
end
|
532
672
|
|
673
|
+
class DescribeInstanceProfiles
|
674
|
+
def self.build(context)
|
675
|
+
unless context.config.regional_endpoint
|
676
|
+
endpoint = context.config.endpoint.to_s
|
677
|
+
end
|
678
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
679
|
+
region: context.config.region,
|
680
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
681
|
+
use_fips: context.config.use_fips_endpoint,
|
682
|
+
endpoint: endpoint,
|
683
|
+
)
|
684
|
+
end
|
685
|
+
end
|
686
|
+
|
687
|
+
class DescribeMetadataModelAssessments
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
class DescribeMetadataModelConversions
|
702
|
+
def self.build(context)
|
703
|
+
unless context.config.regional_endpoint
|
704
|
+
endpoint = context.config.endpoint.to_s
|
705
|
+
end
|
706
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
707
|
+
region: context.config.region,
|
708
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
709
|
+
use_fips: context.config.use_fips_endpoint,
|
710
|
+
endpoint: endpoint,
|
711
|
+
)
|
712
|
+
end
|
713
|
+
end
|
714
|
+
|
715
|
+
class DescribeMetadataModelExportsAsScript
|
716
|
+
def self.build(context)
|
717
|
+
unless context.config.regional_endpoint
|
718
|
+
endpoint = context.config.endpoint.to_s
|
719
|
+
end
|
720
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
721
|
+
region: context.config.region,
|
722
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
723
|
+
use_fips: context.config.use_fips_endpoint,
|
724
|
+
endpoint: endpoint,
|
725
|
+
)
|
726
|
+
end
|
727
|
+
end
|
728
|
+
|
729
|
+
class DescribeMetadataModelExportsToTarget
|
730
|
+
def self.build(context)
|
731
|
+
unless context.config.regional_endpoint
|
732
|
+
endpoint = context.config.endpoint.to_s
|
733
|
+
end
|
734
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
735
|
+
region: context.config.region,
|
736
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
737
|
+
use_fips: context.config.use_fips_endpoint,
|
738
|
+
endpoint: endpoint,
|
739
|
+
)
|
740
|
+
end
|
741
|
+
end
|
742
|
+
|
743
|
+
class DescribeMetadataModelImports
|
744
|
+
def self.build(context)
|
745
|
+
unless context.config.regional_endpoint
|
746
|
+
endpoint = context.config.endpoint.to_s
|
747
|
+
end
|
748
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
749
|
+
region: context.config.region,
|
750
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
751
|
+
use_fips: context.config.use_fips_endpoint,
|
752
|
+
endpoint: endpoint,
|
753
|
+
)
|
754
|
+
end
|
755
|
+
end
|
756
|
+
|
757
|
+
class DescribeMigrationProjects
|
758
|
+
def self.build(context)
|
759
|
+
unless context.config.regional_endpoint
|
760
|
+
endpoint = context.config.endpoint.to_s
|
761
|
+
end
|
762
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
763
|
+
region: context.config.region,
|
764
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
765
|
+
use_fips: context.config.use_fips_endpoint,
|
766
|
+
endpoint: endpoint,
|
767
|
+
)
|
768
|
+
end
|
769
|
+
end
|
770
|
+
|
533
771
|
class DescribeOrderableReplicationInstances
|
534
772
|
def self.build(context)
|
535
773
|
unless context.config.regional_endpoint
|
@@ -768,6 +1006,20 @@ module Aws::DatabaseMigrationService
|
|
768
1006
|
end
|
769
1007
|
end
|
770
1008
|
|
1009
|
+
class ExportMetadataModelAssessment
|
1010
|
+
def self.build(context)
|
1011
|
+
unless context.config.regional_endpoint
|
1012
|
+
endpoint = context.config.endpoint.to_s
|
1013
|
+
end
|
1014
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1015
|
+
region: context.config.region,
|
1016
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1017
|
+
use_fips: context.config.use_fips_endpoint,
|
1018
|
+
endpoint: endpoint,
|
1019
|
+
)
|
1020
|
+
end
|
1021
|
+
end
|
1022
|
+
|
771
1023
|
class ImportCertificate
|
772
1024
|
def self.build(context)
|
773
1025
|
unless context.config.regional_endpoint
|
@@ -796,6 +1048,34 @@ module Aws::DatabaseMigrationService
|
|
796
1048
|
end
|
797
1049
|
end
|
798
1050
|
|
1051
|
+
class ModifyConversionConfiguration
|
1052
|
+
def self.build(context)
|
1053
|
+
unless context.config.regional_endpoint
|
1054
|
+
endpoint = context.config.endpoint.to_s
|
1055
|
+
end
|
1056
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1057
|
+
region: context.config.region,
|
1058
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1059
|
+
use_fips: context.config.use_fips_endpoint,
|
1060
|
+
endpoint: endpoint,
|
1061
|
+
)
|
1062
|
+
end
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
class ModifyDataProvider
|
1066
|
+
def self.build(context)
|
1067
|
+
unless context.config.regional_endpoint
|
1068
|
+
endpoint = context.config.endpoint.to_s
|
1069
|
+
end
|
1070
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1071
|
+
region: context.config.region,
|
1072
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1073
|
+
use_fips: context.config.use_fips_endpoint,
|
1074
|
+
endpoint: endpoint,
|
1075
|
+
)
|
1076
|
+
end
|
1077
|
+
end
|
1078
|
+
|
799
1079
|
class ModifyEndpoint
|
800
1080
|
def self.build(context)
|
801
1081
|
unless context.config.regional_endpoint
|
@@ -824,6 +1104,34 @@ module Aws::DatabaseMigrationService
|
|
824
1104
|
end
|
825
1105
|
end
|
826
1106
|
|
1107
|
+
class ModifyInstanceProfile
|
1108
|
+
def self.build(context)
|
1109
|
+
unless context.config.regional_endpoint
|
1110
|
+
endpoint = context.config.endpoint.to_s
|
1111
|
+
end
|
1112
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1113
|
+
region: context.config.region,
|
1114
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1115
|
+
use_fips: context.config.use_fips_endpoint,
|
1116
|
+
endpoint: endpoint,
|
1117
|
+
)
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class ModifyMigrationProject
|
1122
|
+
def self.build(context)
|
1123
|
+
unless context.config.regional_endpoint
|
1124
|
+
endpoint = context.config.endpoint.to_s
|
1125
|
+
end
|
1126
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1127
|
+
region: context.config.region,
|
1128
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1129
|
+
use_fips: context.config.use_fips_endpoint,
|
1130
|
+
endpoint: endpoint,
|
1131
|
+
)
|
1132
|
+
end
|
1133
|
+
end
|
1134
|
+
|
827
1135
|
class ModifyReplicationConfig
|
828
1136
|
def self.build(context)
|
829
1137
|
unless context.config.regional_endpoint
|
@@ -978,6 +1286,90 @@ module Aws::DatabaseMigrationService
|
|
978
1286
|
end
|
979
1287
|
end
|
980
1288
|
|
1289
|
+
class StartExtensionPackAssociation
|
1290
|
+
def self.build(context)
|
1291
|
+
unless context.config.regional_endpoint
|
1292
|
+
endpoint = context.config.endpoint.to_s
|
1293
|
+
end
|
1294
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1295
|
+
region: context.config.region,
|
1296
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1297
|
+
use_fips: context.config.use_fips_endpoint,
|
1298
|
+
endpoint: endpoint,
|
1299
|
+
)
|
1300
|
+
end
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
class StartMetadataModelAssessment
|
1304
|
+
def self.build(context)
|
1305
|
+
unless context.config.regional_endpoint
|
1306
|
+
endpoint = context.config.endpoint.to_s
|
1307
|
+
end
|
1308
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1309
|
+
region: context.config.region,
|
1310
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1311
|
+
use_fips: context.config.use_fips_endpoint,
|
1312
|
+
endpoint: endpoint,
|
1313
|
+
)
|
1314
|
+
end
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
class StartMetadataModelConversion
|
1318
|
+
def self.build(context)
|
1319
|
+
unless context.config.regional_endpoint
|
1320
|
+
endpoint = context.config.endpoint.to_s
|
1321
|
+
end
|
1322
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1323
|
+
region: context.config.region,
|
1324
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1325
|
+
use_fips: context.config.use_fips_endpoint,
|
1326
|
+
endpoint: endpoint,
|
1327
|
+
)
|
1328
|
+
end
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
class StartMetadataModelExportAsScript
|
1332
|
+
def self.build(context)
|
1333
|
+
unless context.config.regional_endpoint
|
1334
|
+
endpoint = context.config.endpoint.to_s
|
1335
|
+
end
|
1336
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1337
|
+
region: context.config.region,
|
1338
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1339
|
+
use_fips: context.config.use_fips_endpoint,
|
1340
|
+
endpoint: endpoint,
|
1341
|
+
)
|
1342
|
+
end
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
class StartMetadataModelExportToTarget
|
1346
|
+
def self.build(context)
|
1347
|
+
unless context.config.regional_endpoint
|
1348
|
+
endpoint = context.config.endpoint.to_s
|
1349
|
+
end
|
1350
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1351
|
+
region: context.config.region,
|
1352
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1353
|
+
use_fips: context.config.use_fips_endpoint,
|
1354
|
+
endpoint: endpoint,
|
1355
|
+
)
|
1356
|
+
end
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
class StartMetadataModelImport
|
1360
|
+
def self.build(context)
|
1361
|
+
unless context.config.regional_endpoint
|
1362
|
+
endpoint = context.config.endpoint.to_s
|
1363
|
+
end
|
1364
|
+
Aws::DatabaseMigrationService::EndpointParameters.new(
|
1365
|
+
region: context.config.region,
|
1366
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1367
|
+
use_fips: context.config.use_fips_endpoint,
|
1368
|
+
endpoint: endpoint,
|
1369
|
+
)
|
1370
|
+
end
|
1371
|
+
end
|
1372
|
+
|
981
1373
|
class StartRecommendations
|
982
1374
|
def self.build(context)
|
983
1375
|
unless context.config.regional_endpoint
|
@@ -64,12 +64,18 @@ module Aws::DatabaseMigrationService
|
|
64
64
|
Aws::DatabaseMigrationService::Endpoints::BatchStartRecommendations.build(context)
|
65
65
|
when :cancel_replication_task_assessment_run
|
66
66
|
Aws::DatabaseMigrationService::Endpoints::CancelReplicationTaskAssessmentRun.build(context)
|
67
|
+
when :create_data_provider
|
68
|
+
Aws::DatabaseMigrationService::Endpoints::CreateDataProvider.build(context)
|
67
69
|
when :create_endpoint
|
68
70
|
Aws::DatabaseMigrationService::Endpoints::CreateEndpoint.build(context)
|
69
71
|
when :create_event_subscription
|
70
72
|
Aws::DatabaseMigrationService::Endpoints::CreateEventSubscription.build(context)
|
71
73
|
when :create_fleet_advisor_collector
|
72
74
|
Aws::DatabaseMigrationService::Endpoints::CreateFleetAdvisorCollector.build(context)
|
75
|
+
when :create_instance_profile
|
76
|
+
Aws::DatabaseMigrationService::Endpoints::CreateInstanceProfile.build(context)
|
77
|
+
when :create_migration_project
|
78
|
+
Aws::DatabaseMigrationService::Endpoints::CreateMigrationProject.build(context)
|
73
79
|
when :create_replication_config
|
74
80
|
Aws::DatabaseMigrationService::Endpoints::CreateReplicationConfig.build(context)
|
75
81
|
when :create_replication_instance
|
@@ -82,6 +88,8 @@ module Aws::DatabaseMigrationService
|
|
82
88
|
Aws::DatabaseMigrationService::Endpoints::DeleteCertificate.build(context)
|
83
89
|
when :delete_connection
|
84
90
|
Aws::DatabaseMigrationService::Endpoints::DeleteConnection.build(context)
|
91
|
+
when :delete_data_provider
|
92
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteDataProvider.build(context)
|
85
93
|
when :delete_endpoint
|
86
94
|
Aws::DatabaseMigrationService::Endpoints::DeleteEndpoint.build(context)
|
87
95
|
when :delete_event_subscription
|
@@ -90,6 +98,10 @@ module Aws::DatabaseMigrationService
|
|
90
98
|
Aws::DatabaseMigrationService::Endpoints::DeleteFleetAdvisorCollector.build(context)
|
91
99
|
when :delete_fleet_advisor_databases
|
92
100
|
Aws::DatabaseMigrationService::Endpoints::DeleteFleetAdvisorDatabases.build(context)
|
101
|
+
when :delete_instance_profile
|
102
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteInstanceProfile.build(context)
|
103
|
+
when :delete_migration_project
|
104
|
+
Aws::DatabaseMigrationService::Endpoints::DeleteMigrationProject.build(context)
|
93
105
|
when :delete_replication_config
|
94
106
|
Aws::DatabaseMigrationService::Endpoints::DeleteReplicationConfig.build(context)
|
95
107
|
when :delete_replication_instance
|
@@ -108,18 +120,26 @@ module Aws::DatabaseMigrationService
|
|
108
120
|
Aws::DatabaseMigrationService::Endpoints::DescribeCertificates.build(context)
|
109
121
|
when :describe_connections
|
110
122
|
Aws::DatabaseMigrationService::Endpoints::DescribeConnections.build(context)
|
123
|
+
when :describe_conversion_configuration
|
124
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeConversionConfiguration.build(context)
|
125
|
+
when :describe_data_providers
|
126
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeDataProviders.build(context)
|
111
127
|
when :describe_endpoint_settings
|
112
128
|
Aws::DatabaseMigrationService::Endpoints::DescribeEndpointSettings.build(context)
|
113
129
|
when :describe_endpoint_types
|
114
130
|
Aws::DatabaseMigrationService::Endpoints::DescribeEndpointTypes.build(context)
|
115
131
|
when :describe_endpoints
|
116
132
|
Aws::DatabaseMigrationService::Endpoints::DescribeEndpoints.build(context)
|
133
|
+
when :describe_engine_versions
|
134
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeEngineVersions.build(context)
|
117
135
|
when :describe_event_categories
|
118
136
|
Aws::DatabaseMigrationService::Endpoints::DescribeEventCategories.build(context)
|
119
137
|
when :describe_event_subscriptions
|
120
138
|
Aws::DatabaseMigrationService::Endpoints::DescribeEventSubscriptions.build(context)
|
121
139
|
when :describe_events
|
122
140
|
Aws::DatabaseMigrationService::Endpoints::DescribeEvents.build(context)
|
141
|
+
when :describe_extension_pack_associations
|
142
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeExtensionPackAssociations.build(context)
|
123
143
|
when :describe_fleet_advisor_collectors
|
124
144
|
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorCollectors.build(context)
|
125
145
|
when :describe_fleet_advisor_databases
|
@@ -130,6 +150,20 @@ module Aws::DatabaseMigrationService
|
|
130
150
|
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorSchemaObjectSummary.build(context)
|
131
151
|
when :describe_fleet_advisor_schemas
|
132
152
|
Aws::DatabaseMigrationService::Endpoints::DescribeFleetAdvisorSchemas.build(context)
|
153
|
+
when :describe_instance_profiles
|
154
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeInstanceProfiles.build(context)
|
155
|
+
when :describe_metadata_model_assessments
|
156
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeMetadataModelAssessments.build(context)
|
157
|
+
when :describe_metadata_model_conversions
|
158
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeMetadataModelConversions.build(context)
|
159
|
+
when :describe_metadata_model_exports_as_script
|
160
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeMetadataModelExportsAsScript.build(context)
|
161
|
+
when :describe_metadata_model_exports_to_target
|
162
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeMetadataModelExportsToTarget.build(context)
|
163
|
+
when :describe_metadata_model_imports
|
164
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeMetadataModelImports.build(context)
|
165
|
+
when :describe_migration_projects
|
166
|
+
Aws::DatabaseMigrationService::Endpoints::DescribeMigrationProjects.build(context)
|
133
167
|
when :describe_orderable_replication_instances
|
134
168
|
Aws::DatabaseMigrationService::Endpoints::DescribeOrderableReplicationInstances.build(context)
|
135
169
|
when :describe_pending_maintenance_actions
|
@@ -164,14 +198,24 @@ module Aws::DatabaseMigrationService
|
|
164
198
|
Aws::DatabaseMigrationService::Endpoints::DescribeSchemas.build(context)
|
165
199
|
when :describe_table_statistics
|
166
200
|
Aws::DatabaseMigrationService::Endpoints::DescribeTableStatistics.build(context)
|
201
|
+
when :export_metadata_model_assessment
|
202
|
+
Aws::DatabaseMigrationService::Endpoints::ExportMetadataModelAssessment.build(context)
|
167
203
|
when :import_certificate
|
168
204
|
Aws::DatabaseMigrationService::Endpoints::ImportCertificate.build(context)
|
169
205
|
when :list_tags_for_resource
|
170
206
|
Aws::DatabaseMigrationService::Endpoints::ListTagsForResource.build(context)
|
207
|
+
when :modify_conversion_configuration
|
208
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyConversionConfiguration.build(context)
|
209
|
+
when :modify_data_provider
|
210
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyDataProvider.build(context)
|
171
211
|
when :modify_endpoint
|
172
212
|
Aws::DatabaseMigrationService::Endpoints::ModifyEndpoint.build(context)
|
173
213
|
when :modify_event_subscription
|
174
214
|
Aws::DatabaseMigrationService::Endpoints::ModifyEventSubscription.build(context)
|
215
|
+
when :modify_instance_profile
|
216
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyInstanceProfile.build(context)
|
217
|
+
when :modify_migration_project
|
218
|
+
Aws::DatabaseMigrationService::Endpoints::ModifyMigrationProject.build(context)
|
175
219
|
when :modify_replication_config
|
176
220
|
Aws::DatabaseMigrationService::Endpoints::ModifyReplicationConfig.build(context)
|
177
221
|
when :modify_replication_instance
|
@@ -194,6 +238,18 @@ module Aws::DatabaseMigrationService
|
|
194
238
|
Aws::DatabaseMigrationService::Endpoints::RemoveTagsFromResource.build(context)
|
195
239
|
when :run_fleet_advisor_lsa_analysis
|
196
240
|
Aws::DatabaseMigrationService::Endpoints::RunFleetAdvisorLsaAnalysis.build(context)
|
241
|
+
when :start_extension_pack_association
|
242
|
+
Aws::DatabaseMigrationService::Endpoints::StartExtensionPackAssociation.build(context)
|
243
|
+
when :start_metadata_model_assessment
|
244
|
+
Aws::DatabaseMigrationService::Endpoints::StartMetadataModelAssessment.build(context)
|
245
|
+
when :start_metadata_model_conversion
|
246
|
+
Aws::DatabaseMigrationService::Endpoints::StartMetadataModelConversion.build(context)
|
247
|
+
when :start_metadata_model_export_as_script
|
248
|
+
Aws::DatabaseMigrationService::Endpoints::StartMetadataModelExportAsScript.build(context)
|
249
|
+
when :start_metadata_model_export_to_target
|
250
|
+
Aws::DatabaseMigrationService::Endpoints::StartMetadataModelExportToTarget.build(context)
|
251
|
+
when :start_metadata_model_import
|
252
|
+
Aws::DatabaseMigrationService::Endpoints::StartMetadataModelImport.build(context)
|
197
253
|
when :start_recommendations
|
198
254
|
Aws::DatabaseMigrationService::Endpoints::StartRecommendations.build(context)
|
199
255
|
when :start_replication
|