aws-sdk-databasemigrationservice 1.38.0 → 1.39.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/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +868 -14
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +292 -2
- data/lib/aws-sdk-databasemigrationservice/errors.rb +48 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +1463 -109
- 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: 7b481499cb6712d83b2377d234d31c56f05c339218a42a1138f682296491b630
|
4
|
+
data.tar.gz: 4125d885a713daf475b99ab7d7a78c5dc0108c360fe43ce90f5027486fdf0c79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5c3e635db88f873262e0ef48d6fbe59f075ab5f754658ceb0132e5bdc6ea9536473e74a108ba56b54e392f683677f618929dd6d6480396ad6727d2d61bf2793
|
7
|
+
data.tar.gz: e52e8ca67922dbb66a23c8bf4b241dc66c9f4caa87286fadcfa43c5b869ebace10509e575dd804aeca50e11ca67798383f8c3fa2cb4d07431fcba2a2f01e7198
|
@@ -438,6 +438,51 @@ module Aws::DatabaseMigrationService
|
|
438
438
|
req.send_request(options)
|
439
439
|
end
|
440
440
|
|
441
|
+
# Cancels a single premigration assessment run.
|
442
|
+
#
|
443
|
+
# This operation prevents any individual assessments from running if
|
444
|
+
# they haven't started running. It also attempts to cancel any
|
445
|
+
# individual assessments that are currently running.
|
446
|
+
#
|
447
|
+
# @option params [required, String] :replication_task_assessment_run_arn
|
448
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
449
|
+
# canceled.
|
450
|
+
#
|
451
|
+
# @return [Types::CancelReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
452
|
+
#
|
453
|
+
# * {Types::CancelReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
|
454
|
+
#
|
455
|
+
# @example Request syntax with placeholder values
|
456
|
+
#
|
457
|
+
# resp = client.cancel_replication_task_assessment_run({
|
458
|
+
# replication_task_assessment_run_arn: "String", # required
|
459
|
+
# })
|
460
|
+
#
|
461
|
+
# @example Response structure
|
462
|
+
#
|
463
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
|
464
|
+
# resp.replication_task_assessment_run.replication_task_arn #=> String
|
465
|
+
# resp.replication_task_assessment_run.status #=> String
|
466
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
|
467
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
|
468
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
|
469
|
+
# resp.replication_task_assessment_run.last_failure_message #=> String
|
470
|
+
# resp.replication_task_assessment_run.service_access_role_arn #=> String
|
471
|
+
# resp.replication_task_assessment_run.result_location_bucket #=> String
|
472
|
+
# resp.replication_task_assessment_run.result_location_folder #=> String
|
473
|
+
# resp.replication_task_assessment_run.result_encryption_mode #=> String
|
474
|
+
# resp.replication_task_assessment_run.result_kms_key_arn #=> String
|
475
|
+
# resp.replication_task_assessment_run.assessment_run_name #=> String
|
476
|
+
#
|
477
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRun AWS API Documentation
|
478
|
+
#
|
479
|
+
# @overload cancel_replication_task_assessment_run(params = {})
|
480
|
+
# @param [Hash] params ({})
|
481
|
+
def cancel_replication_task_assessment_run(params = {}, options = {})
|
482
|
+
req = build_request(:cancel_replication_task_assessment_run, params)
|
483
|
+
req.send_request(options)
|
484
|
+
end
|
485
|
+
|
441
486
|
# Creates an endpoint using the provided settings.
|
442
487
|
#
|
443
488
|
# @option params [required, String] :endpoint_identifier
|
@@ -607,6 +652,78 @@ module Aws::DatabaseMigrationService
|
|
607
652
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
608
653
|
# Provides information that defines an Amazon Redshift endpoint.
|
609
654
|
#
|
655
|
+
# @option params [Types::PostgreSQLSettings] :postgre_sql_settings
|
656
|
+
# Settings in JSON format for the source and target PostgreSQL endpoint.
|
657
|
+
# For information about other available settings, see [Extra connection
|
658
|
+
# attributes when using PostgreSQL as a source for AWS DMS][1] and [
|
659
|
+
# Extra connection attributes when using PostgreSQL as a target for AWS
|
660
|
+
# DMS][2] in the *AWS Database Migration Service User Guide.*
|
661
|
+
#
|
662
|
+
#
|
663
|
+
#
|
664
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
665
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
666
|
+
#
|
667
|
+
# @option params [Types::MySQLSettings] :my_sql_settings
|
668
|
+
# Settings in JSON format for the source and target MySQL endpoint. For
|
669
|
+
# information about other available settings, see [Extra connection
|
670
|
+
# attributes when using MySQL as a source for AWS DMS][1] and [Extra
|
671
|
+
# connection attributes when using a MySQL-compatible database as a
|
672
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
673
|
+
# Guide.*
|
674
|
+
#
|
675
|
+
#
|
676
|
+
#
|
677
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
678
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
679
|
+
#
|
680
|
+
# @option params [Types::OracleSettings] :oracle_settings
|
681
|
+
# Settings in JSON format for the source and target Oracle endpoint. For
|
682
|
+
# information about other available settings, see [Extra connection
|
683
|
+
# attributes when using Oracle as a source for AWS DMS][1] and [ Extra
|
684
|
+
# connection attributes when using Oracle as a target for AWS DMS][2] in
|
685
|
+
# the *AWS Database Migration Service User Guide.*
|
686
|
+
#
|
687
|
+
#
|
688
|
+
#
|
689
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
690
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
691
|
+
#
|
692
|
+
# @option params [Types::SybaseSettings] :sybase_settings
|
693
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
694
|
+
# For information about other available settings, see [Extra connection
|
695
|
+
# attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
|
696
|
+
# connection attributes when using SAP ASE as a target for AWS DMS][2]
|
697
|
+
# in the *AWS Database Migration Service User Guide.*
|
698
|
+
#
|
699
|
+
#
|
700
|
+
#
|
701
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
702
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
703
|
+
#
|
704
|
+
# @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
|
705
|
+
# Settings in JSON format for the source and target Microsoft SQL Server
|
706
|
+
# endpoint. For information about other available settings, see [Extra
|
707
|
+
# connection attributes when using SQL Server as a source for AWS
|
708
|
+
# DMS][1] and [ Extra connection attributes when using SQL Server as a
|
709
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
710
|
+
# Guide.*
|
711
|
+
#
|
712
|
+
#
|
713
|
+
#
|
714
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
715
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
716
|
+
#
|
717
|
+
# @option params [Types::IBMDb2Settings] :ibm_db_2_settings
|
718
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
719
|
+
# information about other available settings, see [Extra connection
|
720
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
|
721
|
+
# Database Migration Service User Guide.*
|
722
|
+
#
|
723
|
+
#
|
724
|
+
#
|
725
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
726
|
+
#
|
610
727
|
# @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
611
728
|
#
|
612
729
|
# * {Types::CreateEndpointResponse#endpoint #endpoint} => Types::Endpoint
|
@@ -732,6 +849,12 @@ module Aws::DatabaseMigrationService
|
|
732
849
|
# kafka_settings: {
|
733
850
|
# broker: "String",
|
734
851
|
# topic: "String",
|
852
|
+
# message_format: "json", # accepts json, json-unformatted
|
853
|
+
# include_transaction_details: false,
|
854
|
+
# include_partition_value: false,
|
855
|
+
# partition_include_schema_table: false,
|
856
|
+
# include_table_alter_operations: false,
|
857
|
+
# include_control_details: false,
|
735
858
|
# },
|
736
859
|
# elasticsearch_settings: {
|
737
860
|
# service_access_role_arn: "String", # required
|
@@ -775,6 +898,53 @@ module Aws::DatabaseMigrationService
|
|
775
898
|
# username: "String",
|
776
899
|
# write_buffer_size: 1,
|
777
900
|
# },
|
901
|
+
# postgre_sql_settings: {
|
902
|
+
# database_name: "String",
|
903
|
+
# password: "SecretString",
|
904
|
+
# port: 1,
|
905
|
+
# server_name: "String",
|
906
|
+
# username: "String",
|
907
|
+
# },
|
908
|
+
# my_sql_settings: {
|
909
|
+
# database_name: "String",
|
910
|
+
# password: "SecretString",
|
911
|
+
# port: 1,
|
912
|
+
# server_name: "String",
|
913
|
+
# username: "String",
|
914
|
+
# },
|
915
|
+
# oracle_settings: {
|
916
|
+
# asm_password: "SecretString",
|
917
|
+
# asm_server: "String",
|
918
|
+
# asm_user: "String",
|
919
|
+
# database_name: "String",
|
920
|
+
# password: "SecretString",
|
921
|
+
# port: 1,
|
922
|
+
# security_db_encryption: "SecretString",
|
923
|
+
# security_db_encryption_name: "String",
|
924
|
+
# server_name: "String",
|
925
|
+
# username: "String",
|
926
|
+
# },
|
927
|
+
# sybase_settings: {
|
928
|
+
# database_name: "String",
|
929
|
+
# password: "SecretString",
|
930
|
+
# port: 1,
|
931
|
+
# server_name: "String",
|
932
|
+
# username: "String",
|
933
|
+
# },
|
934
|
+
# microsoft_sql_server_settings: {
|
935
|
+
# port: 1,
|
936
|
+
# database_name: "String",
|
937
|
+
# password: "SecretString",
|
938
|
+
# server_name: "String",
|
939
|
+
# username: "String",
|
940
|
+
# },
|
941
|
+
# ibm_db_2_settings: {
|
942
|
+
# database_name: "String",
|
943
|
+
# password: "SecretString",
|
944
|
+
# port: 1,
|
945
|
+
# server_name: "String",
|
946
|
+
# username: "String",
|
947
|
+
# },
|
778
948
|
# })
|
779
949
|
#
|
780
950
|
# @example Response structure
|
@@ -842,6 +1012,12 @@ module Aws::DatabaseMigrationService
|
|
842
1012
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
843
1013
|
# resp.endpoint.kafka_settings.broker #=> String
|
844
1014
|
# resp.endpoint.kafka_settings.topic #=> String
|
1015
|
+
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
1016
|
+
# resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
|
1017
|
+
# resp.endpoint.kafka_settings.include_partition_value #=> Boolean
|
1018
|
+
# resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
|
1019
|
+
# resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
|
1020
|
+
# resp.endpoint.kafka_settings.include_control_details #=> Boolean
|
845
1021
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
846
1022
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
847
1023
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -878,6 +1054,41 @@ module Aws::DatabaseMigrationService
|
|
878
1054
|
# resp.endpoint.redshift_settings.truncate_columns #=> Boolean
|
879
1055
|
# resp.endpoint.redshift_settings.username #=> String
|
880
1056
|
# resp.endpoint.redshift_settings.write_buffer_size #=> Integer
|
1057
|
+
# resp.endpoint.postgre_sql_settings.database_name #=> String
|
1058
|
+
# resp.endpoint.postgre_sql_settings.password #=> String
|
1059
|
+
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
1060
|
+
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
1061
|
+
# resp.endpoint.postgre_sql_settings.username #=> String
|
1062
|
+
# resp.endpoint.my_sql_settings.database_name #=> String
|
1063
|
+
# resp.endpoint.my_sql_settings.password #=> String
|
1064
|
+
# resp.endpoint.my_sql_settings.port #=> Integer
|
1065
|
+
# resp.endpoint.my_sql_settings.server_name #=> String
|
1066
|
+
# resp.endpoint.my_sql_settings.username #=> String
|
1067
|
+
# resp.endpoint.oracle_settings.asm_password #=> String
|
1068
|
+
# resp.endpoint.oracle_settings.asm_server #=> String
|
1069
|
+
# resp.endpoint.oracle_settings.asm_user #=> String
|
1070
|
+
# resp.endpoint.oracle_settings.database_name #=> String
|
1071
|
+
# resp.endpoint.oracle_settings.password #=> String
|
1072
|
+
# resp.endpoint.oracle_settings.port #=> Integer
|
1073
|
+
# resp.endpoint.oracle_settings.security_db_encryption #=> String
|
1074
|
+
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
1075
|
+
# resp.endpoint.oracle_settings.server_name #=> String
|
1076
|
+
# resp.endpoint.oracle_settings.username #=> String
|
1077
|
+
# resp.endpoint.sybase_settings.database_name #=> String
|
1078
|
+
# resp.endpoint.sybase_settings.password #=> String
|
1079
|
+
# resp.endpoint.sybase_settings.port #=> Integer
|
1080
|
+
# resp.endpoint.sybase_settings.server_name #=> String
|
1081
|
+
# resp.endpoint.sybase_settings.username #=> String
|
1082
|
+
# resp.endpoint.microsoft_sql_server_settings.port #=> Integer
|
1083
|
+
# resp.endpoint.microsoft_sql_server_settings.database_name #=> String
|
1084
|
+
# resp.endpoint.microsoft_sql_server_settings.password #=> String
|
1085
|
+
# resp.endpoint.microsoft_sql_server_settings.server_name #=> String
|
1086
|
+
# resp.endpoint.microsoft_sql_server_settings.username #=> String
|
1087
|
+
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
1088
|
+
# resp.endpoint.ibm_db_2_settings.password #=> String
|
1089
|
+
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
1090
|
+
# resp.endpoint.ibm_db_2_settings.server_name #=> String
|
1091
|
+
# resp.endpoint.ibm_db_2_settings.username #=> String
|
881
1092
|
#
|
882
1093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
|
883
1094
|
#
|
@@ -1780,6 +1991,12 @@ module Aws::DatabaseMigrationService
|
|
1780
1991
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
1781
1992
|
# resp.endpoint.kafka_settings.broker #=> String
|
1782
1993
|
# resp.endpoint.kafka_settings.topic #=> String
|
1994
|
+
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
1995
|
+
# resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
|
1996
|
+
# resp.endpoint.kafka_settings.include_partition_value #=> Boolean
|
1997
|
+
# resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
|
1998
|
+
# resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
|
1999
|
+
# resp.endpoint.kafka_settings.include_control_details #=> Boolean
|
1783
2000
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
1784
2001
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1785
2002
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -1816,6 +2033,41 @@ module Aws::DatabaseMigrationService
|
|
1816
2033
|
# resp.endpoint.redshift_settings.truncate_columns #=> Boolean
|
1817
2034
|
# resp.endpoint.redshift_settings.username #=> String
|
1818
2035
|
# resp.endpoint.redshift_settings.write_buffer_size #=> Integer
|
2036
|
+
# resp.endpoint.postgre_sql_settings.database_name #=> String
|
2037
|
+
# resp.endpoint.postgre_sql_settings.password #=> String
|
2038
|
+
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
2039
|
+
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
2040
|
+
# resp.endpoint.postgre_sql_settings.username #=> String
|
2041
|
+
# resp.endpoint.my_sql_settings.database_name #=> String
|
2042
|
+
# resp.endpoint.my_sql_settings.password #=> String
|
2043
|
+
# resp.endpoint.my_sql_settings.port #=> Integer
|
2044
|
+
# resp.endpoint.my_sql_settings.server_name #=> String
|
2045
|
+
# resp.endpoint.my_sql_settings.username #=> String
|
2046
|
+
# resp.endpoint.oracle_settings.asm_password #=> String
|
2047
|
+
# resp.endpoint.oracle_settings.asm_server #=> String
|
2048
|
+
# resp.endpoint.oracle_settings.asm_user #=> String
|
2049
|
+
# resp.endpoint.oracle_settings.database_name #=> String
|
2050
|
+
# resp.endpoint.oracle_settings.password #=> String
|
2051
|
+
# resp.endpoint.oracle_settings.port #=> Integer
|
2052
|
+
# resp.endpoint.oracle_settings.security_db_encryption #=> String
|
2053
|
+
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
2054
|
+
# resp.endpoint.oracle_settings.server_name #=> String
|
2055
|
+
# resp.endpoint.oracle_settings.username #=> String
|
2056
|
+
# resp.endpoint.sybase_settings.database_name #=> String
|
2057
|
+
# resp.endpoint.sybase_settings.password #=> String
|
2058
|
+
# resp.endpoint.sybase_settings.port #=> Integer
|
2059
|
+
# resp.endpoint.sybase_settings.server_name #=> String
|
2060
|
+
# resp.endpoint.sybase_settings.username #=> String
|
2061
|
+
# resp.endpoint.microsoft_sql_server_settings.port #=> Integer
|
2062
|
+
# resp.endpoint.microsoft_sql_server_settings.database_name #=> String
|
2063
|
+
# resp.endpoint.microsoft_sql_server_settings.password #=> String
|
2064
|
+
# resp.endpoint.microsoft_sql_server_settings.server_name #=> String
|
2065
|
+
# resp.endpoint.microsoft_sql_server_settings.username #=> String
|
2066
|
+
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
2067
|
+
# resp.endpoint.ibm_db_2_settings.password #=> String
|
2068
|
+
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
2069
|
+
# resp.endpoint.ibm_db_2_settings.server_name #=> String
|
2070
|
+
# resp.endpoint.ibm_db_2_settings.username #=> String
|
1819
2071
|
#
|
1820
2072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
|
1821
2073
|
#
|
@@ -2113,6 +2365,52 @@ module Aws::DatabaseMigrationService
|
|
2113
2365
|
req.send_request(options)
|
2114
2366
|
end
|
2115
2367
|
|
2368
|
+
# Deletes the record of a single premigration assessment run.
|
2369
|
+
#
|
2370
|
+
# This operation removes all metadata that AWS DMS maintains about this
|
2371
|
+
# assessment run. However, the operation leaves untouched all
|
2372
|
+
# information about this assessment run that is stored in your Amazon S3
|
2373
|
+
# bucket.
|
2374
|
+
#
|
2375
|
+
# @option params [required, String] :replication_task_assessment_run_arn
|
2376
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
2377
|
+
# deleted.
|
2378
|
+
#
|
2379
|
+
# @return [Types::DeleteReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2380
|
+
#
|
2381
|
+
# * {Types::DeleteReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
|
2382
|
+
#
|
2383
|
+
# @example Request syntax with placeholder values
|
2384
|
+
#
|
2385
|
+
# resp = client.delete_replication_task_assessment_run({
|
2386
|
+
# replication_task_assessment_run_arn: "String", # required
|
2387
|
+
# })
|
2388
|
+
#
|
2389
|
+
# @example Response structure
|
2390
|
+
#
|
2391
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
|
2392
|
+
# resp.replication_task_assessment_run.replication_task_arn #=> String
|
2393
|
+
# resp.replication_task_assessment_run.status #=> String
|
2394
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
|
2395
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
|
2396
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
|
2397
|
+
# resp.replication_task_assessment_run.last_failure_message #=> String
|
2398
|
+
# resp.replication_task_assessment_run.service_access_role_arn #=> String
|
2399
|
+
# resp.replication_task_assessment_run.result_location_bucket #=> String
|
2400
|
+
# resp.replication_task_assessment_run.result_location_folder #=> String
|
2401
|
+
# resp.replication_task_assessment_run.result_encryption_mode #=> String
|
2402
|
+
# resp.replication_task_assessment_run.result_kms_key_arn #=> String
|
2403
|
+
# resp.replication_task_assessment_run.assessment_run_name #=> String
|
2404
|
+
#
|
2405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRun AWS API Documentation
|
2406
|
+
#
|
2407
|
+
# @overload delete_replication_task_assessment_run(params = {})
|
2408
|
+
# @param [Hash] params ({})
|
2409
|
+
def delete_replication_task_assessment_run(params = {}, options = {})
|
2410
|
+
req = build_request(:delete_replication_task_assessment_run, params)
|
2411
|
+
req.send_request(options)
|
2412
|
+
end
|
2413
|
+
|
2116
2414
|
# Lists all of the AWS DMS attributes for a customer account. These
|
2117
2415
|
# attributes include AWS DMS quotas for the account and a unique account
|
2118
2416
|
# identifier in a particular DMS region. DMS quotas include a list of
|
@@ -2177,10 +2475,98 @@ module Aws::DatabaseMigrationService
|
|
2177
2475
|
req.send_request(options)
|
2178
2476
|
end
|
2179
2477
|
|
2478
|
+
# Provides a list of individual assessments that you can specify for a
|
2479
|
+
# new premigration assessment run, given one or more parameters.
|
2480
|
+
#
|
2481
|
+
# If you specify an existing migration task, this operation provides the
|
2482
|
+
# default individual assessments you can specify for that task.
|
2483
|
+
# Otherwise, the specified parameters model elements of a possible
|
2484
|
+
# migration task on which to base a premigration assessment run.
|
2485
|
+
#
|
2486
|
+
# To use these migration task modeling parameters, you must specify an
|
2487
|
+
# existing replication instance, a source database engine, a target
|
2488
|
+
# database engine, and a migration type. This combination of parameters
|
2489
|
+
# potentially limits the default individual assessments available for an
|
2490
|
+
# assessment run created for a corresponding migration task.
|
2491
|
+
#
|
2492
|
+
# If you specify no parameters, this operation provides a list of all
|
2493
|
+
# possible individual assessments that you can specify for an assessment
|
2494
|
+
# run. If you specify any one of the task modeling parameters, you must
|
2495
|
+
# specify all of them or the operation cannot provide a list of
|
2496
|
+
# individual assessments. The only parameter that you can specify alone
|
2497
|
+
# is for an existing migration task. The specified task definition then
|
2498
|
+
# determines the default list of individual assessments that you can
|
2499
|
+
# specify in an assessment run for the task.
|
2500
|
+
#
|
2501
|
+
# @option params [String] :replication_task_arn
|
2502
|
+
# Amazon Resource Name (ARN) of a migration task on which you want to
|
2503
|
+
# base the default list of individual assessments.
|
2504
|
+
#
|
2505
|
+
# @option params [String] :replication_instance_arn
|
2506
|
+
# ARN of a replication instance on which you want to base the default
|
2507
|
+
# list of individual assessments.
|
2508
|
+
#
|
2509
|
+
# @option params [String] :source_engine_name
|
2510
|
+
# Name of a database engine that the specified replication instance
|
2511
|
+
# supports as a source.
|
2512
|
+
#
|
2513
|
+
# @option params [String] :target_engine_name
|
2514
|
+
# Name of a database engine that the specified replication instance
|
2515
|
+
# supports as a target.
|
2516
|
+
#
|
2517
|
+
# @option params [String] :migration_type
|
2518
|
+
# Name of the migration type that each provided individual assessment
|
2519
|
+
# must support.
|
2520
|
+
#
|
2521
|
+
# @option params [Integer] :max_records
|
2522
|
+
# Maximum number of records to include in the response. If more records
|
2523
|
+
# exist than the specified `MaxRecords` value, a pagination token called
|
2524
|
+
# a marker is included in the response so that the remaining results can
|
2525
|
+
# be retrieved.
|
2526
|
+
#
|
2527
|
+
# @option params [String] :marker
|
2528
|
+
# Optional pagination token provided by a previous request. If this
|
2529
|
+
# parameter is specified, the response includes only records beyond the
|
2530
|
+
# marker, up to the value specified by `MaxRecords`.
|
2531
|
+
#
|
2532
|
+
# @return [Types::DescribeApplicableIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2533
|
+
#
|
2534
|
+
# * {Types::DescribeApplicableIndividualAssessmentsResponse#individual_assessment_names #individual_assessment_names} => Array<String>
|
2535
|
+
# * {Types::DescribeApplicableIndividualAssessmentsResponse#marker #marker} => String
|
2536
|
+
#
|
2537
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2538
|
+
#
|
2539
|
+
# @example Request syntax with placeholder values
|
2540
|
+
#
|
2541
|
+
# resp = client.describe_applicable_individual_assessments({
|
2542
|
+
# replication_task_arn: "String",
|
2543
|
+
# replication_instance_arn: "String",
|
2544
|
+
# source_engine_name: "String",
|
2545
|
+
# target_engine_name: "String",
|
2546
|
+
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
2547
|
+
# max_records: 1,
|
2548
|
+
# marker: "String",
|
2549
|
+
# })
|
2550
|
+
#
|
2551
|
+
# @example Response structure
|
2552
|
+
#
|
2553
|
+
# resp.individual_assessment_names #=> Array
|
2554
|
+
# resp.individual_assessment_names[0] #=> String
|
2555
|
+
# resp.marker #=> String
|
2556
|
+
#
|
2557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessments AWS API Documentation
|
2558
|
+
#
|
2559
|
+
# @overload describe_applicable_individual_assessments(params = {})
|
2560
|
+
# @param [Hash] params ({})
|
2561
|
+
def describe_applicable_individual_assessments(params = {}, options = {})
|
2562
|
+
req = build_request(:describe_applicable_individual_assessments, params)
|
2563
|
+
req.send_request(options)
|
2564
|
+
end
|
2565
|
+
|
2180
2566
|
# Provides a description of the certificate.
|
2181
2567
|
#
|
2182
2568
|
# @option params [Array<Types::Filter>] :filters
|
2183
|
-
# Filters applied to the
|
2569
|
+
# Filters applied to the certificates described in the form of key-value
|
2184
2570
|
# pairs.
|
2185
2571
|
#
|
2186
2572
|
# @option params [Integer] :max_records
|
@@ -2372,7 +2758,7 @@ module Aws::DatabaseMigrationService
|
|
2372
2758
|
# Returns information about the type of endpoints available.
|
2373
2759
|
#
|
2374
2760
|
# @option params [Array<Types::Filter>] :filters
|
2375
|
-
# Filters applied to the
|
2761
|
+
# Filters applied to the endpoint types.
|
2376
2762
|
#
|
2377
2763
|
# Valid filter names: engine-name \| endpoint-type
|
2378
2764
|
#
|
@@ -2460,7 +2846,7 @@ module Aws::DatabaseMigrationService
|
|
2460
2846
|
# current region.
|
2461
2847
|
#
|
2462
2848
|
# @option params [Array<Types::Filter>] :filters
|
2463
|
-
# Filters applied to the
|
2849
|
+
# Filters applied to the endpoints.
|
2464
2850
|
#
|
2465
2851
|
# Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
|
2466
2852
|
# engine-name
|
@@ -2593,6 +2979,12 @@ module Aws::DatabaseMigrationService
|
|
2593
2979
|
# resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
|
2594
2980
|
# resp.endpoints[0].kafka_settings.broker #=> String
|
2595
2981
|
# resp.endpoints[0].kafka_settings.topic #=> String
|
2982
|
+
# resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
2983
|
+
# resp.endpoints[0].kafka_settings.include_transaction_details #=> Boolean
|
2984
|
+
# resp.endpoints[0].kafka_settings.include_partition_value #=> Boolean
|
2985
|
+
# resp.endpoints[0].kafka_settings.partition_include_schema_table #=> Boolean
|
2986
|
+
# resp.endpoints[0].kafka_settings.include_table_alter_operations #=> Boolean
|
2987
|
+
# resp.endpoints[0].kafka_settings.include_control_details #=> Boolean
|
2596
2988
|
# resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
|
2597
2989
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
2598
2990
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -2629,6 +3021,41 @@ module Aws::DatabaseMigrationService
|
|
2629
3021
|
# resp.endpoints[0].redshift_settings.truncate_columns #=> Boolean
|
2630
3022
|
# resp.endpoints[0].redshift_settings.username #=> String
|
2631
3023
|
# resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
|
3024
|
+
# resp.endpoints[0].postgre_sql_settings.database_name #=> String
|
3025
|
+
# resp.endpoints[0].postgre_sql_settings.password #=> String
|
3026
|
+
# resp.endpoints[0].postgre_sql_settings.port #=> Integer
|
3027
|
+
# resp.endpoints[0].postgre_sql_settings.server_name #=> String
|
3028
|
+
# resp.endpoints[0].postgre_sql_settings.username #=> String
|
3029
|
+
# resp.endpoints[0].my_sql_settings.database_name #=> String
|
3030
|
+
# resp.endpoints[0].my_sql_settings.password #=> String
|
3031
|
+
# resp.endpoints[0].my_sql_settings.port #=> Integer
|
3032
|
+
# resp.endpoints[0].my_sql_settings.server_name #=> String
|
3033
|
+
# resp.endpoints[0].my_sql_settings.username #=> String
|
3034
|
+
# resp.endpoints[0].oracle_settings.asm_password #=> String
|
3035
|
+
# resp.endpoints[0].oracle_settings.asm_server #=> String
|
3036
|
+
# resp.endpoints[0].oracle_settings.asm_user #=> String
|
3037
|
+
# resp.endpoints[0].oracle_settings.database_name #=> String
|
3038
|
+
# resp.endpoints[0].oracle_settings.password #=> String
|
3039
|
+
# resp.endpoints[0].oracle_settings.port #=> Integer
|
3040
|
+
# resp.endpoints[0].oracle_settings.security_db_encryption #=> String
|
3041
|
+
# resp.endpoints[0].oracle_settings.security_db_encryption_name #=> String
|
3042
|
+
# resp.endpoints[0].oracle_settings.server_name #=> String
|
3043
|
+
# resp.endpoints[0].oracle_settings.username #=> String
|
3044
|
+
# resp.endpoints[0].sybase_settings.database_name #=> String
|
3045
|
+
# resp.endpoints[0].sybase_settings.password #=> String
|
3046
|
+
# resp.endpoints[0].sybase_settings.port #=> Integer
|
3047
|
+
# resp.endpoints[0].sybase_settings.server_name #=> String
|
3048
|
+
# resp.endpoints[0].sybase_settings.username #=> String
|
3049
|
+
# resp.endpoints[0].microsoft_sql_server_settings.port #=> Integer
|
3050
|
+
# resp.endpoints[0].microsoft_sql_server_settings.database_name #=> String
|
3051
|
+
# resp.endpoints[0].microsoft_sql_server_settings.password #=> String
|
3052
|
+
# resp.endpoints[0].microsoft_sql_server_settings.server_name #=> String
|
3053
|
+
# resp.endpoints[0].microsoft_sql_server_settings.username #=> String
|
3054
|
+
# resp.endpoints[0].ibm_db_2_settings.database_name #=> String
|
3055
|
+
# resp.endpoints[0].ibm_db_2_settings.password #=> String
|
3056
|
+
# resp.endpoints[0].ibm_db_2_settings.port #=> Integer
|
3057
|
+
# resp.endpoints[0].ibm_db_2_settings.server_name #=> String
|
3058
|
+
# resp.endpoints[0].ibm_db_2_settings.username #=> String
|
2632
3059
|
#
|
2633
3060
|
#
|
2634
3061
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2659,7 +3086,7 @@ module Aws::DatabaseMigrationService
|
|
2659
3086
|
# Valid values: replication-instance \| replication-task
|
2660
3087
|
#
|
2661
3088
|
# @option params [Array<Types::Filter>] :filters
|
2662
|
-
# Filters applied to the
|
3089
|
+
# Filters applied to the event categories.
|
2663
3090
|
#
|
2664
3091
|
# @return [Types::DescribeEventCategoriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2665
3092
|
#
|
@@ -2705,7 +3132,7 @@ module Aws::DatabaseMigrationService
|
|
2705
3132
|
# The name of the AWS DMS event subscription to be described.
|
2706
3133
|
#
|
2707
3134
|
# @option params [Array<Types::Filter>] :filters
|
2708
|
-
# Filters applied to
|
3135
|
+
# Filters applied to event subscriptions.
|
2709
3136
|
#
|
2710
3137
|
# @option params [Integer] :max_records
|
2711
3138
|
# The maximum number of records to include in the response. If more
|
@@ -2798,7 +3225,7 @@ module Aws::DatabaseMigrationService
|
|
2798
3225
|
# A list of event categories for the source type that you've chosen.
|
2799
3226
|
#
|
2800
3227
|
# @option params [Array<Types::Filter>] :filters
|
2801
|
-
# Filters applied to
|
3228
|
+
# Filters applied to events.
|
2802
3229
|
#
|
2803
3230
|
# @option params [Integer] :max_records
|
2804
3231
|
# The maximum number of records to include in the response. If more
|
@@ -3105,7 +3532,7 @@ module Aws::DatabaseMigrationService
|
|
3105
3532
|
# the current region.
|
3106
3533
|
#
|
3107
3534
|
# @option params [Array<Types::Filter>] :filters
|
3108
|
-
# Filters applied to
|
3535
|
+
# Filters applied to replication instances.
|
3109
3536
|
#
|
3110
3537
|
# Valid filter names: replication-instance-arn \|
|
3111
3538
|
# replication-instance-id \| replication-instance-class \|
|
@@ -3232,7 +3659,7 @@ module Aws::DatabaseMigrationService
|
|
3232
3659
|
# Returns information about the replication subnet groups.
|
3233
3660
|
#
|
3234
3661
|
# @option params [Array<Types::Filter>] :filters
|
3235
|
-
# Filters applied to
|
3662
|
+
# Filters applied to replication subnet groups.
|
3236
3663
|
#
|
3237
3664
|
# Valid filter names: replication-subnet-group-id
|
3238
3665
|
#
|
@@ -3381,11 +3808,152 @@ module Aws::DatabaseMigrationService
|
|
3381
3808
|
req.send_request(options)
|
3382
3809
|
end
|
3383
3810
|
|
3811
|
+
# Returns a paginated list of premigration assessment runs based on
|
3812
|
+
# filter settings.
|
3813
|
+
#
|
3814
|
+
# These filter settings can specify a combination of premigration
|
3815
|
+
# assessment runs, migration tasks, replication instances, and
|
3816
|
+
# assessment run status values.
|
3817
|
+
#
|
3818
|
+
# <note markdown="1"> This operation doesn't return information about individual
|
3819
|
+
# assessments. For this information, see the
|
3820
|
+
# `DescribeReplicationTaskIndividualAssessments` operation.
|
3821
|
+
#
|
3822
|
+
# </note>
|
3823
|
+
#
|
3824
|
+
# @option params [Array<Types::Filter>] :filters
|
3825
|
+
# Filters applied to the premigration assessment runs described in the
|
3826
|
+
# form of key-value pairs.
|
3827
|
+
#
|
3828
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
3829
|
+
# `replication-task-arn`, `replication-instance-arn`, `status`
|
3830
|
+
#
|
3831
|
+
# @option params [Integer] :max_records
|
3832
|
+
# The maximum number of records to include in the response. If more
|
3833
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
3834
|
+
# token called a marker is included in the response so that the
|
3835
|
+
# remaining results can be retrieved.
|
3836
|
+
#
|
3837
|
+
# @option params [String] :marker
|
3838
|
+
# An optional pagination token provided by a previous request. If this
|
3839
|
+
# parameter is specified, the response includes only records beyond the
|
3840
|
+
# marker, up to the value specified by `MaxRecords`.
|
3841
|
+
#
|
3842
|
+
# @return [Types::DescribeReplicationTaskAssessmentRunsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3843
|
+
#
|
3844
|
+
# * {Types::DescribeReplicationTaskAssessmentRunsResponse#marker #marker} => String
|
3845
|
+
# * {Types::DescribeReplicationTaskAssessmentRunsResponse#replication_task_assessment_runs #replication_task_assessment_runs} => Array<Types::ReplicationTaskAssessmentRun>
|
3846
|
+
#
|
3847
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3848
|
+
#
|
3849
|
+
# @example Request syntax with placeholder values
|
3850
|
+
#
|
3851
|
+
# resp = client.describe_replication_task_assessment_runs({
|
3852
|
+
# filters: [
|
3853
|
+
# {
|
3854
|
+
# name: "String", # required
|
3855
|
+
# values: ["String"], # required
|
3856
|
+
# },
|
3857
|
+
# ],
|
3858
|
+
# max_records: 1,
|
3859
|
+
# marker: "String",
|
3860
|
+
# })
|
3861
|
+
#
|
3862
|
+
# @example Response structure
|
3863
|
+
#
|
3864
|
+
# resp.marker #=> String
|
3865
|
+
# resp.replication_task_assessment_runs #=> Array
|
3866
|
+
# resp.replication_task_assessment_runs[0].replication_task_assessment_run_arn #=> String
|
3867
|
+
# resp.replication_task_assessment_runs[0].replication_task_arn #=> String
|
3868
|
+
# resp.replication_task_assessment_runs[0].status #=> String
|
3869
|
+
# resp.replication_task_assessment_runs[0].replication_task_assessment_run_creation_date #=> Time
|
3870
|
+
# resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_count #=> Integer
|
3871
|
+
# resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_completed_count #=> Integer
|
3872
|
+
# resp.replication_task_assessment_runs[0].last_failure_message #=> String
|
3873
|
+
# resp.replication_task_assessment_runs[0].service_access_role_arn #=> String
|
3874
|
+
# resp.replication_task_assessment_runs[0].result_location_bucket #=> String
|
3875
|
+
# resp.replication_task_assessment_runs[0].result_location_folder #=> String
|
3876
|
+
# resp.replication_task_assessment_runs[0].result_encryption_mode #=> String
|
3877
|
+
# resp.replication_task_assessment_runs[0].result_kms_key_arn #=> String
|
3878
|
+
# resp.replication_task_assessment_runs[0].assessment_run_name #=> String
|
3879
|
+
#
|
3880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRuns AWS API Documentation
|
3881
|
+
#
|
3882
|
+
# @overload describe_replication_task_assessment_runs(params = {})
|
3883
|
+
# @param [Hash] params ({})
|
3884
|
+
def describe_replication_task_assessment_runs(params = {}, options = {})
|
3885
|
+
req = build_request(:describe_replication_task_assessment_runs, params)
|
3886
|
+
req.send_request(options)
|
3887
|
+
end
|
3888
|
+
|
3889
|
+
# Returns a paginated list of individual assessments based on filter
|
3890
|
+
# settings.
|
3891
|
+
#
|
3892
|
+
# These filter settings can specify a combination of premigration
|
3893
|
+
# assessment runs, migration tasks, and assessment status values.
|
3894
|
+
#
|
3895
|
+
# @option params [Array<Types::Filter>] :filters
|
3896
|
+
# Filters applied to the individual assessments described in the form of
|
3897
|
+
# key-value pairs.
|
3898
|
+
#
|
3899
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
3900
|
+
# `replication-task-arn`, `status`
|
3901
|
+
#
|
3902
|
+
# @option params [Integer] :max_records
|
3903
|
+
# The maximum number of records to include in the response. If more
|
3904
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
3905
|
+
# token called a marker is included in the response so that the
|
3906
|
+
# remaining results can be retrieved.
|
3907
|
+
#
|
3908
|
+
# @option params [String] :marker
|
3909
|
+
# An optional pagination token provided by a previous request. If this
|
3910
|
+
# parameter is specified, the response includes only records beyond the
|
3911
|
+
# marker, up to the value specified by `MaxRecords`.
|
3912
|
+
#
|
3913
|
+
# @return [Types::DescribeReplicationTaskIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3914
|
+
#
|
3915
|
+
# * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#marker #marker} => String
|
3916
|
+
# * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#replication_task_individual_assessments #replication_task_individual_assessments} => Array<Types::ReplicationTaskIndividualAssessment>
|
3917
|
+
#
|
3918
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3919
|
+
#
|
3920
|
+
# @example Request syntax with placeholder values
|
3921
|
+
#
|
3922
|
+
# resp = client.describe_replication_task_individual_assessments({
|
3923
|
+
# filters: [
|
3924
|
+
# {
|
3925
|
+
# name: "String", # required
|
3926
|
+
# values: ["String"], # required
|
3927
|
+
# },
|
3928
|
+
# ],
|
3929
|
+
# max_records: 1,
|
3930
|
+
# marker: "String",
|
3931
|
+
# })
|
3932
|
+
#
|
3933
|
+
# @example Response structure
|
3934
|
+
#
|
3935
|
+
# resp.marker #=> String
|
3936
|
+
# resp.replication_task_individual_assessments #=> Array
|
3937
|
+
# resp.replication_task_individual_assessments[0].replication_task_individual_assessment_arn #=> String
|
3938
|
+
# resp.replication_task_individual_assessments[0].replication_task_assessment_run_arn #=> String
|
3939
|
+
# resp.replication_task_individual_assessments[0].individual_assessment_name #=> String
|
3940
|
+
# resp.replication_task_individual_assessments[0].status #=> String
|
3941
|
+
# resp.replication_task_individual_assessments[0].replication_task_individual_assessment_start_date #=> Time
|
3942
|
+
#
|
3943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessments AWS API Documentation
|
3944
|
+
#
|
3945
|
+
# @overload describe_replication_task_individual_assessments(params = {})
|
3946
|
+
# @param [Hash] params ({})
|
3947
|
+
def describe_replication_task_individual_assessments(params = {}, options = {})
|
3948
|
+
req = build_request(:describe_replication_task_individual_assessments, params)
|
3949
|
+
req.send_request(options)
|
3950
|
+
end
|
3951
|
+
|
3384
3952
|
# Returns information about replication tasks for your account in the
|
3385
3953
|
# current region.
|
3386
3954
|
#
|
3387
3955
|
# @option params [Array<Types::Filter>] :filters
|
3388
|
-
# Filters applied to
|
3956
|
+
# Filters applied to replication tasks.
|
3389
3957
|
#
|
3390
3958
|
# Valid filter names: replication-task-arn \| replication-task-id \|
|
3391
3959
|
# migration-type \| endpoint-arn \| replication-instance-arn
|
@@ -3602,7 +4170,7 @@ module Aws::DatabaseMigrationService
|
|
3602
4170
|
# marker, up to the value specified by `MaxRecords`.
|
3603
4171
|
#
|
3604
4172
|
# @option params [Array<Types::Filter>] :filters
|
3605
|
-
# Filters applied to
|
4173
|
+
# Filters applied to table statistics.
|
3606
4174
|
#
|
3607
4175
|
# Valid filter names: schema-name \| table-name \| table-state
|
3608
4176
|
#
|
@@ -3696,7 +4264,7 @@ module Aws::DatabaseMigrationService
|
|
3696
4264
|
# @option params [String] :certificate_pem
|
3697
4265
|
# The contents of a `.pem` file, which contains an X.509 certificate.
|
3698
4266
|
#
|
3699
|
-
# @option params [String,
|
4267
|
+
# @option params [String, StringIO, File] :certificate_wallet
|
3700
4268
|
# The location of an imported Oracle Wallet certificate for use with
|
3701
4269
|
# SSL.
|
3702
4270
|
#
|
@@ -3959,6 +4527,78 @@ module Aws::DatabaseMigrationService
|
|
3959
4527
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
3960
4528
|
# Provides information that defines an Amazon Redshift endpoint.
|
3961
4529
|
#
|
4530
|
+
# @option params [Types::PostgreSQLSettings] :postgre_sql_settings
|
4531
|
+
# Settings in JSON format for the source and target PostgreSQL endpoint.
|
4532
|
+
# For information about other available settings, see [Extra connection
|
4533
|
+
# attributes when using PostgreSQL as a source for AWS DMS][1] and [
|
4534
|
+
# Extra connection attributes when using PostgreSQL as a target for AWS
|
4535
|
+
# DMS][2] in the *AWS Database Migration Service User Guide.*
|
4536
|
+
#
|
4537
|
+
#
|
4538
|
+
#
|
4539
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
4540
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
4541
|
+
#
|
4542
|
+
# @option params [Types::MySQLSettings] :my_sql_settings
|
4543
|
+
# Settings in JSON format for the source and target MySQL endpoint. For
|
4544
|
+
# information about other available settings, see [Extra connection
|
4545
|
+
# attributes when using MySQL as a source for AWS DMS][1] and [Extra
|
4546
|
+
# connection attributes when using a MySQL-compatible database as a
|
4547
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
4548
|
+
# Guide.*
|
4549
|
+
#
|
4550
|
+
#
|
4551
|
+
#
|
4552
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
4553
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
4554
|
+
#
|
4555
|
+
# @option params [Types::OracleSettings] :oracle_settings
|
4556
|
+
# Settings in JSON format for the source and target Oracle endpoint. For
|
4557
|
+
# information about other available settings, see [Extra connection
|
4558
|
+
# attributes when using Oracle as a source for AWS DMS][1] and [ Extra
|
4559
|
+
# connection attributes when using Oracle as a target for AWS DMS][2] in
|
4560
|
+
# the *AWS Database Migration Service User Guide.*
|
4561
|
+
#
|
4562
|
+
#
|
4563
|
+
#
|
4564
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
4565
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
4566
|
+
#
|
4567
|
+
# @option params [Types::SybaseSettings] :sybase_settings
|
4568
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
4569
|
+
# For information about other available settings, see [Extra connection
|
4570
|
+
# attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
|
4571
|
+
# connection attributes when using SAP ASE as a target for AWS DMS][2]
|
4572
|
+
# in the *AWS Database Migration Service User Guide.*
|
4573
|
+
#
|
4574
|
+
#
|
4575
|
+
#
|
4576
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
4577
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
4578
|
+
#
|
4579
|
+
# @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
|
4580
|
+
# Settings in JSON format for the source and target Microsoft SQL Server
|
4581
|
+
# endpoint. For information about other available settings, see [Extra
|
4582
|
+
# connection attributes when using SQL Server as a source for AWS
|
4583
|
+
# DMS][1] and [ Extra connection attributes when using SQL Server as a
|
4584
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
4585
|
+
# Guide.*
|
4586
|
+
#
|
4587
|
+
#
|
4588
|
+
#
|
4589
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
4590
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
4591
|
+
#
|
4592
|
+
# @option params [Types::IBMDb2Settings] :ibm_db_2_settings
|
4593
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
4594
|
+
# information about other available settings, see [Extra connection
|
4595
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
|
4596
|
+
# Database Migration Service User Guide.*
|
4597
|
+
#
|
4598
|
+
#
|
4599
|
+
#
|
4600
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
4601
|
+
#
|
3962
4602
|
# @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3963
4603
|
#
|
3964
4604
|
# * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
|
@@ -4063,6 +4703,12 @@ module Aws::DatabaseMigrationService
|
|
4063
4703
|
# kafka_settings: {
|
4064
4704
|
# broker: "String",
|
4065
4705
|
# topic: "String",
|
4706
|
+
# message_format: "json", # accepts json, json-unformatted
|
4707
|
+
# include_transaction_details: false,
|
4708
|
+
# include_partition_value: false,
|
4709
|
+
# partition_include_schema_table: false,
|
4710
|
+
# include_table_alter_operations: false,
|
4711
|
+
# include_control_details: false,
|
4066
4712
|
# },
|
4067
4713
|
# elasticsearch_settings: {
|
4068
4714
|
# service_access_role_arn: "String", # required
|
@@ -4106,6 +4752,53 @@ module Aws::DatabaseMigrationService
|
|
4106
4752
|
# username: "String",
|
4107
4753
|
# write_buffer_size: 1,
|
4108
4754
|
# },
|
4755
|
+
# postgre_sql_settings: {
|
4756
|
+
# database_name: "String",
|
4757
|
+
# password: "SecretString",
|
4758
|
+
# port: 1,
|
4759
|
+
# server_name: "String",
|
4760
|
+
# username: "String",
|
4761
|
+
# },
|
4762
|
+
# my_sql_settings: {
|
4763
|
+
# database_name: "String",
|
4764
|
+
# password: "SecretString",
|
4765
|
+
# port: 1,
|
4766
|
+
# server_name: "String",
|
4767
|
+
# username: "String",
|
4768
|
+
# },
|
4769
|
+
# oracle_settings: {
|
4770
|
+
# asm_password: "SecretString",
|
4771
|
+
# asm_server: "String",
|
4772
|
+
# asm_user: "String",
|
4773
|
+
# database_name: "String",
|
4774
|
+
# password: "SecretString",
|
4775
|
+
# port: 1,
|
4776
|
+
# security_db_encryption: "SecretString",
|
4777
|
+
# security_db_encryption_name: "String",
|
4778
|
+
# server_name: "String",
|
4779
|
+
# username: "String",
|
4780
|
+
# },
|
4781
|
+
# sybase_settings: {
|
4782
|
+
# database_name: "String",
|
4783
|
+
# password: "SecretString",
|
4784
|
+
# port: 1,
|
4785
|
+
# server_name: "String",
|
4786
|
+
# username: "String",
|
4787
|
+
# },
|
4788
|
+
# microsoft_sql_server_settings: {
|
4789
|
+
# port: 1,
|
4790
|
+
# database_name: "String",
|
4791
|
+
# password: "SecretString",
|
4792
|
+
# server_name: "String",
|
4793
|
+
# username: "String",
|
4794
|
+
# },
|
4795
|
+
# ibm_db_2_settings: {
|
4796
|
+
# database_name: "String",
|
4797
|
+
# password: "SecretString",
|
4798
|
+
# port: 1,
|
4799
|
+
# server_name: "String",
|
4800
|
+
# username: "String",
|
4801
|
+
# },
|
4109
4802
|
# })
|
4110
4803
|
#
|
4111
4804
|
# @example Response structure
|
@@ -4173,6 +4866,12 @@ module Aws::DatabaseMigrationService
|
|
4173
4866
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
4174
4867
|
# resp.endpoint.kafka_settings.broker #=> String
|
4175
4868
|
# resp.endpoint.kafka_settings.topic #=> String
|
4869
|
+
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
4870
|
+
# resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
|
4871
|
+
# resp.endpoint.kafka_settings.include_partition_value #=> Boolean
|
4872
|
+
# resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
|
4873
|
+
# resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
|
4874
|
+
# resp.endpoint.kafka_settings.include_control_details #=> Boolean
|
4176
4875
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
4177
4876
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
4178
4877
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -4209,6 +4908,41 @@ module Aws::DatabaseMigrationService
|
|
4209
4908
|
# resp.endpoint.redshift_settings.truncate_columns #=> Boolean
|
4210
4909
|
# resp.endpoint.redshift_settings.username #=> String
|
4211
4910
|
# resp.endpoint.redshift_settings.write_buffer_size #=> Integer
|
4911
|
+
# resp.endpoint.postgre_sql_settings.database_name #=> String
|
4912
|
+
# resp.endpoint.postgre_sql_settings.password #=> String
|
4913
|
+
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
4914
|
+
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
4915
|
+
# resp.endpoint.postgre_sql_settings.username #=> String
|
4916
|
+
# resp.endpoint.my_sql_settings.database_name #=> String
|
4917
|
+
# resp.endpoint.my_sql_settings.password #=> String
|
4918
|
+
# resp.endpoint.my_sql_settings.port #=> Integer
|
4919
|
+
# resp.endpoint.my_sql_settings.server_name #=> String
|
4920
|
+
# resp.endpoint.my_sql_settings.username #=> String
|
4921
|
+
# resp.endpoint.oracle_settings.asm_password #=> String
|
4922
|
+
# resp.endpoint.oracle_settings.asm_server #=> String
|
4923
|
+
# resp.endpoint.oracle_settings.asm_user #=> String
|
4924
|
+
# resp.endpoint.oracle_settings.database_name #=> String
|
4925
|
+
# resp.endpoint.oracle_settings.password #=> String
|
4926
|
+
# resp.endpoint.oracle_settings.port #=> Integer
|
4927
|
+
# resp.endpoint.oracle_settings.security_db_encryption #=> String
|
4928
|
+
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
4929
|
+
# resp.endpoint.oracle_settings.server_name #=> String
|
4930
|
+
# resp.endpoint.oracle_settings.username #=> String
|
4931
|
+
# resp.endpoint.sybase_settings.database_name #=> String
|
4932
|
+
# resp.endpoint.sybase_settings.password #=> String
|
4933
|
+
# resp.endpoint.sybase_settings.port #=> Integer
|
4934
|
+
# resp.endpoint.sybase_settings.server_name #=> String
|
4935
|
+
# resp.endpoint.sybase_settings.username #=> String
|
4936
|
+
# resp.endpoint.microsoft_sql_server_settings.port #=> Integer
|
4937
|
+
# resp.endpoint.microsoft_sql_server_settings.database_name #=> String
|
4938
|
+
# resp.endpoint.microsoft_sql_server_settings.password #=> String
|
4939
|
+
# resp.endpoint.microsoft_sql_server_settings.server_name #=> String
|
4940
|
+
# resp.endpoint.microsoft_sql_server_settings.username #=> String
|
4941
|
+
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
4942
|
+
# resp.endpoint.ibm_db_2_settings.password #=> String
|
4943
|
+
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
4944
|
+
# resp.endpoint.ibm_db_2_settings.server_name #=> String
|
4945
|
+
# resp.endpoint.ibm_db_2_settings.username #=> String
|
4212
4946
|
#
|
4213
4947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
|
4214
4948
|
#
|
@@ -4884,8 +5618,8 @@ module Aws::DatabaseMigrationService
|
|
4884
5618
|
# replication_task_arn: "String", # required
|
4885
5619
|
# tables_to_reload: [ # required
|
4886
5620
|
# {
|
4887
|
-
# schema_name: "String",
|
4888
|
-
# table_name: "String",
|
5621
|
+
# schema_name: "String", # required
|
5622
|
+
# table_name: "String", # required
|
4889
5623
|
# },
|
4890
5624
|
# ],
|
4891
5625
|
# reload_option: "data-reload", # accepts data-reload, validate-only
|
@@ -5143,6 +5877,126 @@ module Aws::DatabaseMigrationService
|
|
5143
5877
|
req.send_request(options)
|
5144
5878
|
end
|
5145
5879
|
|
5880
|
+
# Starts a new premigration assessment run for one or more individual
|
5881
|
+
# assessments of a migration task.
|
5882
|
+
#
|
5883
|
+
# The assessments that you can specify depend on the source and target
|
5884
|
+
# database engine and the migration type defined for the given task. To
|
5885
|
+
# run this operation, your migration task must already be created. After
|
5886
|
+
# you run this operation, you can review the status of each individual
|
5887
|
+
# assessment. You can also run the migration task manually after the
|
5888
|
+
# assessment run and its individual assessments complete.
|
5889
|
+
#
|
5890
|
+
# @option params [required, String] :replication_task_arn
|
5891
|
+
# Amazon Resource Name (ARN) of the migration task associated with the
|
5892
|
+
# premigration assessment run that you want to start.
|
5893
|
+
#
|
5894
|
+
# @option params [required, String] :service_access_role_arn
|
5895
|
+
# ARN of a service role needed to start the assessment run.
|
5896
|
+
#
|
5897
|
+
# @option params [required, String] :result_location_bucket
|
5898
|
+
# Amazon S3 bucket where you want AWS DMS to store the results of this
|
5899
|
+
# assessment run.
|
5900
|
+
#
|
5901
|
+
# @option params [String] :result_location_folder
|
5902
|
+
# Folder within an Amazon S3 bucket where you want AWS DMS to store the
|
5903
|
+
# results of this assessment run.
|
5904
|
+
#
|
5905
|
+
# @option params [String] :result_encryption_mode
|
5906
|
+
# Encryption mode that you can specify to encrypt the results of this
|
5907
|
+
# assessment run. If you don't specify this request parameter, AWS DMS
|
5908
|
+
# stores the assessment run results without encryption. You can specify
|
5909
|
+
# one of the options following:
|
5910
|
+
#
|
5911
|
+
# * `"SSE_S3"` – The server-side encryption provided as a default by
|
5912
|
+
# Amazon S3.
|
5913
|
+
#
|
5914
|
+
# * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption. This
|
5915
|
+
# encryption can use either a custom KMS encryption key that you
|
5916
|
+
# specify or the default KMS encryption key that DMS provides.
|
5917
|
+
#
|
5918
|
+
# @option params [String] :result_kms_key_arn
|
5919
|
+
# ARN of a custom KMS encryption key that you specify when you set
|
5920
|
+
# `ResultEncryptionMode` to `"SSE_KMS`".
|
5921
|
+
#
|
5922
|
+
# @option params [required, String] :assessment_run_name
|
5923
|
+
# Unique name to identify the assessment run.
|
5924
|
+
#
|
5925
|
+
# @option params [Array<String>] :include_only
|
5926
|
+
# Space-separated list of names for specific individual assessments that
|
5927
|
+
# you want to include. These names come from the default list of
|
5928
|
+
# individual assessments that AWS DMS supports for the associated
|
5929
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
5930
|
+
#
|
5931
|
+
# <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
|
5932
|
+
# `Exclude` in the API operation.
|
5933
|
+
#
|
5934
|
+
# To identify the names of the default individual assessments that AWS
|
5935
|
+
# DMS supports for the associated migration task, run the
|
5936
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
5937
|
+
# `ReplicationTaskArn` request parameter.
|
5938
|
+
#
|
5939
|
+
# </note>
|
5940
|
+
#
|
5941
|
+
# @option params [Array<String>] :exclude
|
5942
|
+
# Space-separated list of names for specific individual assessments that
|
5943
|
+
# you want to exclude. These names come from the default list of
|
5944
|
+
# individual assessments that AWS DMS supports for the associated
|
5945
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
5946
|
+
#
|
5947
|
+
# <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
|
5948
|
+
# `IncludeOnly` in the API operation.
|
5949
|
+
#
|
5950
|
+
# To identify the names of the default individual assessments that AWS
|
5951
|
+
# DMS supports for the associated migration task, run the
|
5952
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
5953
|
+
# `ReplicationTaskArn` request parameter.
|
5954
|
+
#
|
5955
|
+
# </note>
|
5956
|
+
#
|
5957
|
+
# @return [Types::StartReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5958
|
+
#
|
5959
|
+
# * {Types::StartReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
|
5960
|
+
#
|
5961
|
+
# @example Request syntax with placeholder values
|
5962
|
+
#
|
5963
|
+
# resp = client.start_replication_task_assessment_run({
|
5964
|
+
# replication_task_arn: "String", # required
|
5965
|
+
# service_access_role_arn: "String", # required
|
5966
|
+
# result_location_bucket: "String", # required
|
5967
|
+
# result_location_folder: "String",
|
5968
|
+
# result_encryption_mode: "String",
|
5969
|
+
# result_kms_key_arn: "String",
|
5970
|
+
# assessment_run_name: "String", # required
|
5971
|
+
# include_only: ["String"],
|
5972
|
+
# exclude: ["String"],
|
5973
|
+
# })
|
5974
|
+
#
|
5975
|
+
# @example Response structure
|
5976
|
+
#
|
5977
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
|
5978
|
+
# resp.replication_task_assessment_run.replication_task_arn #=> String
|
5979
|
+
# resp.replication_task_assessment_run.status #=> String
|
5980
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
|
5981
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
|
5982
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
|
5983
|
+
# resp.replication_task_assessment_run.last_failure_message #=> String
|
5984
|
+
# resp.replication_task_assessment_run.service_access_role_arn #=> String
|
5985
|
+
# resp.replication_task_assessment_run.result_location_bucket #=> String
|
5986
|
+
# resp.replication_task_assessment_run.result_location_folder #=> String
|
5987
|
+
# resp.replication_task_assessment_run.result_encryption_mode #=> String
|
5988
|
+
# resp.replication_task_assessment_run.result_kms_key_arn #=> String
|
5989
|
+
# resp.replication_task_assessment_run.assessment_run_name #=> String
|
5990
|
+
#
|
5991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRun AWS API Documentation
|
5992
|
+
#
|
5993
|
+
# @overload start_replication_task_assessment_run(params = {})
|
5994
|
+
# @param [Hash] params ({})
|
5995
|
+
def start_replication_task_assessment_run(params = {}, options = {})
|
5996
|
+
req = build_request(:start_replication_task_assessment_run, params)
|
5997
|
+
req.send_request(options)
|
5998
|
+
end
|
5999
|
+
|
5146
6000
|
# Stops the replication task.
|
5147
6001
|
#
|
5148
6002
|
# @option params [required, String] :replication_task_arn
|
@@ -5291,7 +6145,7 @@ module Aws::DatabaseMigrationService
|
|
5291
6145
|
params: params,
|
5292
6146
|
config: config)
|
5293
6147
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
5294
|
-
context[:gem_version] = '1.
|
6148
|
+
context[:gem_version] = '1.39.0'
|
5295
6149
|
Seahorse::Client::Request.new(handlers, context)
|
5296
6150
|
end
|
5297
6151
|
|