aws-sdk-databasemigrationservice 1.67.0 → 1.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +565 -2
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +360 -0
- data/lib/aws-sdk-databasemigrationservice/errors.rb +32 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +1198 -99
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- metadata +2 -2
@@ -570,7 +570,8 @@ module Aws::DatabaseMigrationService
|
|
570
570
|
#
|
571
571
|
# @option params [String] :database_name
|
572
572
|
# The name of the endpoint database. For a MySQL source or target
|
573
|
-
# endpoint, do not specify DatabaseName.
|
573
|
+
# endpoint, do not specify DatabaseName. To migrate to a specific
|
574
|
+
# database, use this setting and `targetDbType`.
|
574
575
|
#
|
575
576
|
# @option params [String] :extra_connection_attributes
|
576
577
|
# Additional attributes associated with the connection. Each attribute
|
@@ -906,6 +907,8 @@ module Aws::DatabaseMigrationService
|
|
906
907
|
# max_file_size: 1,
|
907
908
|
# rfc_4180: false,
|
908
909
|
# date_partition_timezone: "String",
|
910
|
+
# add_trailing_padding_character: false,
|
911
|
+
# expected_bucket_owner: "String",
|
909
912
|
# },
|
910
913
|
# dms_transfer_settings: {
|
911
914
|
# service_access_role_arn: "String",
|
@@ -964,6 +967,7 @@ module Aws::DatabaseMigrationService
|
|
964
967
|
# endpoint_uri: "String", # required
|
965
968
|
# full_load_error_percentage: 1,
|
966
969
|
# error_retry_duration: 1,
|
970
|
+
# use_new_mapping_type: false,
|
967
971
|
# },
|
968
972
|
# neptune_settings: {
|
969
973
|
# service_access_role_arn: "String",
|
@@ -1025,6 +1029,7 @@ module Aws::DatabaseMigrationService
|
|
1025
1029
|
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
1026
1030
|
# secrets_manager_access_role_arn: "String",
|
1027
1031
|
# secrets_manager_secret_id: "String",
|
1032
|
+
# trim_space_in_char: false,
|
1028
1033
|
# },
|
1029
1034
|
# my_sql_settings: {
|
1030
1035
|
# after_connect_script: "String",
|
@@ -1083,6 +1088,7 @@ module Aws::DatabaseMigrationService
|
|
1083
1088
|
# secrets_manager_secret_id: "String",
|
1084
1089
|
# secrets_manager_oracle_asm_access_role_arn: "String",
|
1085
1090
|
# secrets_manager_oracle_asm_secret_id: "String",
|
1091
|
+
# trim_space_in_char: false,
|
1086
1092
|
# },
|
1087
1093
|
# sybase_settings: {
|
1088
1094
|
# database_name: "String",
|
@@ -1108,6 +1114,7 @@ module Aws::DatabaseMigrationService
|
|
1108
1114
|
# use_third_party_backup_device: false,
|
1109
1115
|
# secrets_manager_access_role_arn: "String",
|
1110
1116
|
# secrets_manager_secret_id: "String",
|
1117
|
+
# trim_space_in_char: false,
|
1111
1118
|
# },
|
1112
1119
|
# ibm_db_2_settings: {
|
1113
1120
|
# database_name: "String",
|
@@ -1220,6 +1227,8 @@ module Aws::DatabaseMigrationService
|
|
1220
1227
|
# resp.endpoint.s3_settings.max_file_size #=> Integer
|
1221
1228
|
# resp.endpoint.s3_settings.rfc_4180 #=> Boolean
|
1222
1229
|
# resp.endpoint.s3_settings.date_partition_timezone #=> String
|
1230
|
+
# resp.endpoint.s3_settings.add_trailing_padding_character #=> Boolean
|
1231
|
+
# resp.endpoint.s3_settings.expected_bucket_owner #=> String
|
1223
1232
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
1224
1233
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
1225
1234
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -1268,6 +1277,7 @@ module Aws::DatabaseMigrationService
|
|
1268
1277
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1269
1278
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
1270
1279
|
# resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
|
1280
|
+
# resp.endpoint.elasticsearch_settings.use_new_mapping_type #=> Boolean
|
1271
1281
|
# resp.endpoint.neptune_settings.service_access_role_arn #=> String
|
1272
1282
|
# resp.endpoint.neptune_settings.s3_bucket_name #=> String
|
1273
1283
|
# resp.endpoint.neptune_settings.s3_bucket_folder #=> String
|
@@ -1323,6 +1333,7 @@ module Aws::DatabaseMigrationService
|
|
1323
1333
|
# resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
1324
1334
|
# resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
1325
1335
|
# resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
|
1336
|
+
# resp.endpoint.postgre_sql_settings.trim_space_in_char #=> Boolean
|
1326
1337
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
1327
1338
|
# resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
1328
1339
|
# resp.endpoint.my_sql_settings.database_name #=> String
|
@@ -1378,6 +1389,7 @@ module Aws::DatabaseMigrationService
|
|
1378
1389
|
# resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
|
1379
1390
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
1380
1391
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
|
1392
|
+
# resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
|
1381
1393
|
# resp.endpoint.sybase_settings.database_name #=> String
|
1382
1394
|
# resp.endpoint.sybase_settings.password #=> String
|
1383
1395
|
# resp.endpoint.sybase_settings.port #=> Integer
|
@@ -1399,6 +1411,7 @@ module Aws::DatabaseMigrationService
|
|
1399
1411
|
# resp.endpoint.microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
|
1400
1412
|
# resp.endpoint.microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
|
1401
1413
|
# resp.endpoint.microsoft_sql_server_settings.secrets_manager_secret_id #=> String
|
1414
|
+
# resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
1402
1415
|
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
1403
1416
|
# resp.endpoint.ibm_db_2_settings.password #=> String
|
1404
1417
|
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
@@ -1561,6 +1574,57 @@ module Aws::DatabaseMigrationService
|
|
1561
1574
|
req.send_request(options)
|
1562
1575
|
end
|
1563
1576
|
|
1577
|
+
# Creates a Fleet Advisor collector using the specified parameters.
|
1578
|
+
#
|
1579
|
+
# @option params [required, String] :collector_name
|
1580
|
+
# The name of your Fleet Advisor collector (for example,
|
1581
|
+
# `sample-collector`).
|
1582
|
+
#
|
1583
|
+
# @option params [String] :description
|
1584
|
+
# A summary description of your Fleet Advisor collector.
|
1585
|
+
#
|
1586
|
+
# @option params [required, String] :service_access_role_arn
|
1587
|
+
# The IAM role that grants permissions to access the specified Amazon S3
|
1588
|
+
# bucket.
|
1589
|
+
#
|
1590
|
+
# @option params [required, String] :s3_bucket_name
|
1591
|
+
# The Amazon S3 bucket that the Fleet Advisor collector uses to store
|
1592
|
+
# inventory metadata.
|
1593
|
+
#
|
1594
|
+
# @return [Types::CreateFleetAdvisorCollectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1595
|
+
#
|
1596
|
+
# * {Types::CreateFleetAdvisorCollectorResponse#collector_referenced_id #collector_referenced_id} => String
|
1597
|
+
# * {Types::CreateFleetAdvisorCollectorResponse#collector_name #collector_name} => String
|
1598
|
+
# * {Types::CreateFleetAdvisorCollectorResponse#description #description} => String
|
1599
|
+
# * {Types::CreateFleetAdvisorCollectorResponse#service_access_role_arn #service_access_role_arn} => String
|
1600
|
+
# * {Types::CreateFleetAdvisorCollectorResponse#s3_bucket_name #s3_bucket_name} => String
|
1601
|
+
#
|
1602
|
+
# @example Request syntax with placeholder values
|
1603
|
+
#
|
1604
|
+
# resp = client.create_fleet_advisor_collector({
|
1605
|
+
# collector_name: "String", # required
|
1606
|
+
# description: "String",
|
1607
|
+
# service_access_role_arn: "String", # required
|
1608
|
+
# s3_bucket_name: "String", # required
|
1609
|
+
# })
|
1610
|
+
#
|
1611
|
+
# @example Response structure
|
1612
|
+
#
|
1613
|
+
# resp.collector_referenced_id #=> String
|
1614
|
+
# resp.collector_name #=> String
|
1615
|
+
# resp.description #=> String
|
1616
|
+
# resp.service_access_role_arn #=> String
|
1617
|
+
# resp.s3_bucket_name #=> String
|
1618
|
+
#
|
1619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateFleetAdvisorCollector AWS API Documentation
|
1620
|
+
#
|
1621
|
+
# @overload create_fleet_advisor_collector(params = {})
|
1622
|
+
# @param [Hash] params ({})
|
1623
|
+
def create_fleet_advisor_collector(params = {}, options = {})
|
1624
|
+
req = build_request(:create_fleet_advisor_collector, params)
|
1625
|
+
req.send_request(options)
|
1626
|
+
end
|
1627
|
+
|
1564
1628
|
# Creates the replication instance using the specified parameters.
|
1565
1629
|
#
|
1566
1630
|
# DMS requires that your account have certain roles with appropriate
|
@@ -2375,6 +2439,8 @@ module Aws::DatabaseMigrationService
|
|
2375
2439
|
# resp.endpoint.s3_settings.max_file_size #=> Integer
|
2376
2440
|
# resp.endpoint.s3_settings.rfc_4180 #=> Boolean
|
2377
2441
|
# resp.endpoint.s3_settings.date_partition_timezone #=> String
|
2442
|
+
# resp.endpoint.s3_settings.add_trailing_padding_character #=> Boolean
|
2443
|
+
# resp.endpoint.s3_settings.expected_bucket_owner #=> String
|
2378
2444
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
2379
2445
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
2380
2446
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -2423,6 +2489,7 @@ module Aws::DatabaseMigrationService
|
|
2423
2489
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
2424
2490
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
2425
2491
|
# resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
|
2492
|
+
# resp.endpoint.elasticsearch_settings.use_new_mapping_type #=> Boolean
|
2426
2493
|
# resp.endpoint.neptune_settings.service_access_role_arn #=> String
|
2427
2494
|
# resp.endpoint.neptune_settings.s3_bucket_name #=> String
|
2428
2495
|
# resp.endpoint.neptune_settings.s3_bucket_folder #=> String
|
@@ -2478,6 +2545,7 @@ module Aws::DatabaseMigrationService
|
|
2478
2545
|
# resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
2479
2546
|
# resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
2480
2547
|
# resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
|
2548
|
+
# resp.endpoint.postgre_sql_settings.trim_space_in_char #=> Boolean
|
2481
2549
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
2482
2550
|
# resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
2483
2551
|
# resp.endpoint.my_sql_settings.database_name #=> String
|
@@ -2533,6 +2601,7 @@ module Aws::DatabaseMigrationService
|
|
2533
2601
|
# resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
|
2534
2602
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
2535
2603
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
|
2604
|
+
# resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
|
2536
2605
|
# resp.endpoint.sybase_settings.database_name #=> String
|
2537
2606
|
# resp.endpoint.sybase_settings.password #=> String
|
2538
2607
|
# resp.endpoint.sybase_settings.port #=> Integer
|
@@ -2554,6 +2623,7 @@ module Aws::DatabaseMigrationService
|
|
2554
2623
|
# resp.endpoint.microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
|
2555
2624
|
# resp.endpoint.microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
|
2556
2625
|
# resp.endpoint.microsoft_sql_server_settings.secrets_manager_secret_id #=> String
|
2626
|
+
# resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
2557
2627
|
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
2558
2628
|
# resp.endpoint.ibm_db_2_settings.password #=> String
|
2559
2629
|
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
@@ -2644,6 +2714,57 @@ module Aws::DatabaseMigrationService
|
|
2644
2714
|
req.send_request(options)
|
2645
2715
|
end
|
2646
2716
|
|
2717
|
+
# Deletes the specified Fleet Advisor collector.
|
2718
|
+
#
|
2719
|
+
# @option params [required, String] :collector_referenced_id
|
2720
|
+
# The reference ID of the Fleet Advisor collector to delete.
|
2721
|
+
#
|
2722
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2723
|
+
#
|
2724
|
+
# @example Request syntax with placeholder values
|
2725
|
+
#
|
2726
|
+
# resp = client.delete_fleet_advisor_collector({
|
2727
|
+
# collector_referenced_id: "String", # required
|
2728
|
+
# })
|
2729
|
+
#
|
2730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorCollector AWS API Documentation
|
2731
|
+
#
|
2732
|
+
# @overload delete_fleet_advisor_collector(params = {})
|
2733
|
+
# @param [Hash] params ({})
|
2734
|
+
def delete_fleet_advisor_collector(params = {}, options = {})
|
2735
|
+
req = build_request(:delete_fleet_advisor_collector, params)
|
2736
|
+
req.send_request(options)
|
2737
|
+
end
|
2738
|
+
|
2739
|
+
# Deletes the specified Fleet Advisor collector databases.
|
2740
|
+
#
|
2741
|
+
# @option params [required, Array<String>] :database_ids
|
2742
|
+
# The IDs of the Fleet Advisor collector databases to delete.
|
2743
|
+
#
|
2744
|
+
# @return [Types::DeleteFleetAdvisorDatabasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2745
|
+
#
|
2746
|
+
# * {Types::DeleteFleetAdvisorDatabasesResponse#database_ids #database_ids} => Array<String>
|
2747
|
+
#
|
2748
|
+
# @example Request syntax with placeholder values
|
2749
|
+
#
|
2750
|
+
# resp = client.delete_fleet_advisor_databases({
|
2751
|
+
# database_ids: ["String"], # required
|
2752
|
+
# })
|
2753
|
+
#
|
2754
|
+
# @example Response structure
|
2755
|
+
#
|
2756
|
+
# resp.database_ids #=> Array
|
2757
|
+
# resp.database_ids[0] #=> String
|
2758
|
+
#
|
2759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorDatabases AWS API Documentation
|
2760
|
+
#
|
2761
|
+
# @overload delete_fleet_advisor_databases(params = {})
|
2762
|
+
# @param [Hash] params ({})
|
2763
|
+
def delete_fleet_advisor_databases(params = {}, options = {})
|
2764
|
+
req = build_request(:delete_fleet_advisor_databases, params)
|
2765
|
+
req.send_request(options)
|
2766
|
+
end
|
2767
|
+
|
2647
2768
|
# Deletes the specified replication instance.
|
2648
2769
|
#
|
2649
2770
|
# <note markdown="1"> You must delete any migration tasks that are associated with the
|
@@ -3557,6 +3678,8 @@ module Aws::DatabaseMigrationService
|
|
3557
3678
|
# resp.endpoints[0].s3_settings.max_file_size #=> Integer
|
3558
3679
|
# resp.endpoints[0].s3_settings.rfc_4180 #=> Boolean
|
3559
3680
|
# resp.endpoints[0].s3_settings.date_partition_timezone #=> String
|
3681
|
+
# resp.endpoints[0].s3_settings.add_trailing_padding_character #=> Boolean
|
3682
|
+
# resp.endpoints[0].s3_settings.expected_bucket_owner #=> String
|
3560
3683
|
# resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
|
3561
3684
|
# resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
|
3562
3685
|
# resp.endpoints[0].mongo_db_settings.username #=> String
|
@@ -3605,6 +3728,7 @@ module Aws::DatabaseMigrationService
|
|
3605
3728
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
3606
3729
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
3607
3730
|
# resp.endpoints[0].elasticsearch_settings.error_retry_duration #=> Integer
|
3731
|
+
# resp.endpoints[0].elasticsearch_settings.use_new_mapping_type #=> Boolean
|
3608
3732
|
# resp.endpoints[0].neptune_settings.service_access_role_arn #=> String
|
3609
3733
|
# resp.endpoints[0].neptune_settings.s3_bucket_name #=> String
|
3610
3734
|
# resp.endpoints[0].neptune_settings.s3_bucket_folder #=> String
|
@@ -3660,6 +3784,7 @@ module Aws::DatabaseMigrationService
|
|
3660
3784
|
# resp.endpoints[0].postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
3661
3785
|
# resp.endpoints[0].postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
3662
3786
|
# resp.endpoints[0].postgre_sql_settings.secrets_manager_secret_id #=> String
|
3787
|
+
# resp.endpoints[0].postgre_sql_settings.trim_space_in_char #=> Boolean
|
3663
3788
|
# resp.endpoints[0].my_sql_settings.after_connect_script #=> String
|
3664
3789
|
# resp.endpoints[0].my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
3665
3790
|
# resp.endpoints[0].my_sql_settings.database_name #=> String
|
@@ -3715,6 +3840,7 @@ module Aws::DatabaseMigrationService
|
|
3715
3840
|
# resp.endpoints[0].oracle_settings.secrets_manager_secret_id #=> String
|
3716
3841
|
# resp.endpoints[0].oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
3717
3842
|
# resp.endpoints[0].oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
|
3843
|
+
# resp.endpoints[0].oracle_settings.trim_space_in_char #=> Boolean
|
3718
3844
|
# resp.endpoints[0].sybase_settings.database_name #=> String
|
3719
3845
|
# resp.endpoints[0].sybase_settings.password #=> String
|
3720
3846
|
# resp.endpoints[0].sybase_settings.port #=> Integer
|
@@ -3736,6 +3862,7 @@ module Aws::DatabaseMigrationService
|
|
3736
3862
|
# resp.endpoints[0].microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
|
3737
3863
|
# resp.endpoints[0].microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
|
3738
3864
|
# resp.endpoints[0].microsoft_sql_server_settings.secrets_manager_secret_id #=> String
|
3865
|
+
# resp.endpoints[0].microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
3739
3866
|
# resp.endpoints[0].ibm_db_2_settings.database_name #=> String
|
3740
3867
|
# resp.endpoints[0].ibm_db_2_settings.password #=> String
|
3741
3868
|
# resp.endpoints[0].ibm_db_2_settings.port #=> Integer
|
@@ -4013,6 +4140,359 @@ module Aws::DatabaseMigrationService
|
|
4013
4140
|
req.send_request(options)
|
4014
4141
|
end
|
4015
4142
|
|
4143
|
+
# Returns a list of the Fleet Advisor collectors in your account.
|
4144
|
+
#
|
4145
|
+
# @option params [Array<Types::Filter>] :filters
|
4146
|
+
# If you specify any of the following filters, the output includes
|
4147
|
+
# information for only those collectors that meet the filter criteria:
|
4148
|
+
#
|
4149
|
+
# * `collector-referenced-id` – The ID of the collector agent, for
|
4150
|
+
# example `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
|
4151
|
+
#
|
4152
|
+
# * `collector-name` – The name of the collector agent.
|
4153
|
+
#
|
4154
|
+
# An example is: `describe-fleet-advisor-collectors --filter
|
4155
|
+
# Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
|
4156
|
+
#
|
4157
|
+
# @option params [Integer] :max_records
|
4158
|
+
# Sets the maximum number of records returned in the response.
|
4159
|
+
#
|
4160
|
+
# @option params [String] :next_token
|
4161
|
+
# If `NextToken` is returned by a previous response, there are more
|
4162
|
+
# results available. The value of `NextToken` is a unique pagination
|
4163
|
+
# token for each page. Make the call again using the returned token to
|
4164
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
4165
|
+
#
|
4166
|
+
# @return [Types::DescribeFleetAdvisorCollectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4167
|
+
#
|
4168
|
+
# * {Types::DescribeFleetAdvisorCollectorsResponse#collectors #collectors} => Array<Types::CollectorResponse>
|
4169
|
+
# * {Types::DescribeFleetAdvisorCollectorsResponse#next_token #next_token} => String
|
4170
|
+
#
|
4171
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4172
|
+
#
|
4173
|
+
# @example Request syntax with placeholder values
|
4174
|
+
#
|
4175
|
+
# resp = client.describe_fleet_advisor_collectors({
|
4176
|
+
# filters: [
|
4177
|
+
# {
|
4178
|
+
# name: "String", # required
|
4179
|
+
# values: ["String"], # required
|
4180
|
+
# },
|
4181
|
+
# ],
|
4182
|
+
# max_records: 1,
|
4183
|
+
# next_token: "String",
|
4184
|
+
# })
|
4185
|
+
#
|
4186
|
+
# @example Response structure
|
4187
|
+
#
|
4188
|
+
# resp.collectors #=> Array
|
4189
|
+
# resp.collectors[0].collector_referenced_id #=> String
|
4190
|
+
# resp.collectors[0].collector_name #=> String
|
4191
|
+
# resp.collectors[0].collector_version #=> String
|
4192
|
+
# resp.collectors[0].version_status #=> String, one of "UP_TO_DATE", "OUTDATED", "UNSUPPORTED"
|
4193
|
+
# resp.collectors[0].description #=> String
|
4194
|
+
# resp.collectors[0].s3_bucket_name #=> String
|
4195
|
+
# resp.collectors[0].service_access_role_arn #=> String
|
4196
|
+
# resp.collectors[0].collector_health_check.collector_status #=> String, one of "UNREGISTERED", "ACTIVE"
|
4197
|
+
# resp.collectors[0].collector_health_check.local_collector_s3_access #=> Boolean
|
4198
|
+
# resp.collectors[0].collector_health_check.web_collector_s3_access #=> Boolean
|
4199
|
+
# resp.collectors[0].collector_health_check.web_collector_granted_role_based_access #=> Boolean
|
4200
|
+
# resp.collectors[0].last_data_received #=> String
|
4201
|
+
# resp.collectors[0].registered_date #=> String
|
4202
|
+
# resp.collectors[0].created_date #=> String
|
4203
|
+
# resp.collectors[0].modified_date #=> String
|
4204
|
+
# resp.collectors[0].inventory_data.number_of_databases #=> Integer
|
4205
|
+
# resp.collectors[0].inventory_data.number_of_schemas #=> Integer
|
4206
|
+
# resp.next_token #=> String
|
4207
|
+
#
|
4208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorCollectors AWS API Documentation
|
4209
|
+
#
|
4210
|
+
# @overload describe_fleet_advisor_collectors(params = {})
|
4211
|
+
# @param [Hash] params ({})
|
4212
|
+
def describe_fleet_advisor_collectors(params = {}, options = {})
|
4213
|
+
req = build_request(:describe_fleet_advisor_collectors, params)
|
4214
|
+
req.send_request(options)
|
4215
|
+
end
|
4216
|
+
|
4217
|
+
# Returns a list of Fleet Advisor databases in your account.
|
4218
|
+
#
|
4219
|
+
# @option params [Array<Types::Filter>] :filters
|
4220
|
+
# If you specify any of the following filters, the output includes
|
4221
|
+
# information for only those databases that meet the filter criteria:
|
4222
|
+
#
|
4223
|
+
# * `database-id` – The ID of the database.
|
4224
|
+
#
|
4225
|
+
# * `database-name` – The name of the database.
|
4226
|
+
#
|
4227
|
+
# * `database-engine` – The name of the database engine.
|
4228
|
+
#
|
4229
|
+
# * `server-ip-address` – The IP address of the database server.
|
4230
|
+
#
|
4231
|
+
# * `database-ip-address` – The IP address of the database.
|
4232
|
+
#
|
4233
|
+
# * `collector-name` – The name of the associated Fleet Advisor
|
4234
|
+
# collector.
|
4235
|
+
#
|
4236
|
+
# An example is: `describe-fleet-advisor-databases --filter
|
4237
|
+
# Name="database-id",Values="45"`
|
4238
|
+
#
|
4239
|
+
# @option params [Integer] :max_records
|
4240
|
+
# Sets the maximum number of records returned in the response.
|
4241
|
+
#
|
4242
|
+
# @option params [String] :next_token
|
4243
|
+
# If `NextToken` is returned by a previous response, there are more
|
4244
|
+
# results available. The value of `NextToken` is a unique pagination
|
4245
|
+
# token for each page. Make the call again using the returned token to
|
4246
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
4247
|
+
#
|
4248
|
+
# @return [Types::DescribeFleetAdvisorDatabasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4249
|
+
#
|
4250
|
+
# * {Types::DescribeFleetAdvisorDatabasesResponse#databases #databases} => Array<Types::DatabaseResponse>
|
4251
|
+
# * {Types::DescribeFleetAdvisorDatabasesResponse#next_token #next_token} => String
|
4252
|
+
#
|
4253
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4254
|
+
#
|
4255
|
+
# @example Request syntax with placeholder values
|
4256
|
+
#
|
4257
|
+
# resp = client.describe_fleet_advisor_databases({
|
4258
|
+
# filters: [
|
4259
|
+
# {
|
4260
|
+
# name: "String", # required
|
4261
|
+
# values: ["String"], # required
|
4262
|
+
# },
|
4263
|
+
# ],
|
4264
|
+
# max_records: 1,
|
4265
|
+
# next_token: "String",
|
4266
|
+
# })
|
4267
|
+
#
|
4268
|
+
# @example Response structure
|
4269
|
+
#
|
4270
|
+
# resp.databases #=> Array
|
4271
|
+
# resp.databases[0].database_id #=> String
|
4272
|
+
# resp.databases[0].database_name #=> String
|
4273
|
+
# resp.databases[0].ip_address #=> String
|
4274
|
+
# resp.databases[0].number_of_schemas #=> Integer
|
4275
|
+
# resp.databases[0].server.server_id #=> String
|
4276
|
+
# resp.databases[0].server.ip_address #=> String
|
4277
|
+
# resp.databases[0].server.server_name #=> String
|
4278
|
+
# resp.databases[0].software_details.engine #=> String
|
4279
|
+
# resp.databases[0].software_details.engine_version #=> String
|
4280
|
+
# resp.databases[0].software_details.engine_edition #=> String
|
4281
|
+
# resp.databases[0].software_details.service_pack #=> String
|
4282
|
+
# resp.databases[0].software_details.support_level #=> String
|
4283
|
+
# resp.databases[0].software_details.os_architecture #=> Integer
|
4284
|
+
# resp.databases[0].software_details.tooltip #=> String
|
4285
|
+
# resp.databases[0].collectors #=> Array
|
4286
|
+
# resp.databases[0].collectors[0].collector_referenced_id #=> String
|
4287
|
+
# resp.databases[0].collectors[0].collector_name #=> String
|
4288
|
+
# resp.next_token #=> String
|
4289
|
+
#
|
4290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorDatabases AWS API Documentation
|
4291
|
+
#
|
4292
|
+
# @overload describe_fleet_advisor_databases(params = {})
|
4293
|
+
# @param [Hash] params ({})
|
4294
|
+
def describe_fleet_advisor_databases(params = {}, options = {})
|
4295
|
+
req = build_request(:describe_fleet_advisor_databases, params)
|
4296
|
+
req.send_request(options)
|
4297
|
+
end
|
4298
|
+
|
4299
|
+
# Provides descriptions of large-scale assessment (LSA) analyses
|
4300
|
+
# produced by your Fleet Advisor collectors.
|
4301
|
+
#
|
4302
|
+
# @option params [Integer] :max_records
|
4303
|
+
# Sets the maximum number of records returned in the response.
|
4304
|
+
#
|
4305
|
+
# @option params [String] :next_token
|
4306
|
+
# If `NextToken` is returned by a previous response, there are more
|
4307
|
+
# results available. The value of `NextToken` is a unique pagination
|
4308
|
+
# token for each page. Make the call again using the returned token to
|
4309
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
4310
|
+
#
|
4311
|
+
# @return [Types::DescribeFleetAdvisorLsaAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4312
|
+
#
|
4313
|
+
# * {Types::DescribeFleetAdvisorLsaAnalysisResponse#analysis #analysis} => Array<Types::FleetAdvisorLsaAnalysisResponse>
|
4314
|
+
# * {Types::DescribeFleetAdvisorLsaAnalysisResponse#next_token #next_token} => String
|
4315
|
+
#
|
4316
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4317
|
+
#
|
4318
|
+
# @example Request syntax with placeholder values
|
4319
|
+
#
|
4320
|
+
# resp = client.describe_fleet_advisor_lsa_analysis({
|
4321
|
+
# max_records: 1,
|
4322
|
+
# next_token: "String",
|
4323
|
+
# })
|
4324
|
+
#
|
4325
|
+
# @example Response structure
|
4326
|
+
#
|
4327
|
+
# resp.analysis #=> Array
|
4328
|
+
# resp.analysis[0].lsa_analysis_id #=> String
|
4329
|
+
# resp.analysis[0].status #=> String
|
4330
|
+
# resp.next_token #=> String
|
4331
|
+
#
|
4332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorLsaAnalysis AWS API Documentation
|
4333
|
+
#
|
4334
|
+
# @overload describe_fleet_advisor_lsa_analysis(params = {})
|
4335
|
+
# @param [Hash] params ({})
|
4336
|
+
def describe_fleet_advisor_lsa_analysis(params = {}, options = {})
|
4337
|
+
req = build_request(:describe_fleet_advisor_lsa_analysis, params)
|
4338
|
+
req.send_request(options)
|
4339
|
+
end
|
4340
|
+
|
4341
|
+
# Provides descriptions of the schemas discovered by your Fleet Advisor
|
4342
|
+
# collectors.
|
4343
|
+
#
|
4344
|
+
# @option params [Array<Types::Filter>] :filters
|
4345
|
+
# If you specify any of the following filters, the output includes
|
4346
|
+
# information for only those schema objects that meet the filter
|
4347
|
+
# criteria:
|
4348
|
+
#
|
4349
|
+
# * `schema-id` – The ID of the schema, for example
|
4350
|
+
# `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
|
4351
|
+
#
|
4352
|
+
# ^
|
4353
|
+
#
|
4354
|
+
# Example: `describe-fleet-advisor-schema-object-summary --filter
|
4355
|
+
# Name="schema-id",Values="50"`
|
4356
|
+
#
|
4357
|
+
# @option params [Integer] :max_records
|
4358
|
+
# Sets the maximum number of records returned in the response.
|
4359
|
+
#
|
4360
|
+
# @option params [String] :next_token
|
4361
|
+
# If `NextToken` is returned by a previous response, there are more
|
4362
|
+
# results available. The value of `NextToken` is a unique pagination
|
4363
|
+
# token for each page. Make the call again using the returned token to
|
4364
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
4365
|
+
#
|
4366
|
+
# @return [Types::DescribeFleetAdvisorSchemaObjectSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4367
|
+
#
|
4368
|
+
# * {Types::DescribeFleetAdvisorSchemaObjectSummaryResponse#fleet_advisor_schema_objects #fleet_advisor_schema_objects} => Array<Types::FleetAdvisorSchemaObjectResponse>
|
4369
|
+
# * {Types::DescribeFleetAdvisorSchemaObjectSummaryResponse#next_token #next_token} => String
|
4370
|
+
#
|
4371
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4372
|
+
#
|
4373
|
+
# @example Request syntax with placeholder values
|
4374
|
+
#
|
4375
|
+
# resp = client.describe_fleet_advisor_schema_object_summary({
|
4376
|
+
# filters: [
|
4377
|
+
# {
|
4378
|
+
# name: "String", # required
|
4379
|
+
# values: ["String"], # required
|
4380
|
+
# },
|
4381
|
+
# ],
|
4382
|
+
# max_records: 1,
|
4383
|
+
# next_token: "String",
|
4384
|
+
# })
|
4385
|
+
#
|
4386
|
+
# @example Response structure
|
4387
|
+
#
|
4388
|
+
# resp.fleet_advisor_schema_objects #=> Array
|
4389
|
+
# resp.fleet_advisor_schema_objects[0].schema_id #=> String
|
4390
|
+
# resp.fleet_advisor_schema_objects[0].object_type #=> String
|
4391
|
+
# resp.fleet_advisor_schema_objects[0].number_of_objects #=> Integer
|
4392
|
+
# resp.fleet_advisor_schema_objects[0].code_line_count #=> Integer
|
4393
|
+
# resp.fleet_advisor_schema_objects[0].code_size #=> Integer
|
4394
|
+
# resp.next_token #=> String
|
4395
|
+
#
|
4396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemaObjectSummary AWS API Documentation
|
4397
|
+
#
|
4398
|
+
# @overload describe_fleet_advisor_schema_object_summary(params = {})
|
4399
|
+
# @param [Hash] params ({})
|
4400
|
+
def describe_fleet_advisor_schema_object_summary(params = {}, options = {})
|
4401
|
+
req = build_request(:describe_fleet_advisor_schema_object_summary, params)
|
4402
|
+
req.send_request(options)
|
4403
|
+
end
|
4404
|
+
|
4405
|
+
# Returns a list of schemas detected by Fleet Advisor Collectors in your
|
4406
|
+
# account.
|
4407
|
+
#
|
4408
|
+
# @option params [Array<Types::Filter>] :filters
|
4409
|
+
# If you specify any of the following filters, the output includes
|
4410
|
+
# information for only those schemas that meet the filter criteria:
|
4411
|
+
#
|
4412
|
+
# * `complexity` – The schema's complexity, for example `Simple`.
|
4413
|
+
#
|
4414
|
+
# * `database-id` – The ID of the schema's database.
|
4415
|
+
#
|
4416
|
+
# * `database-ip-address` – The IP address of the schema's database.
|
4417
|
+
#
|
4418
|
+
# * `database-name` – The name of the schema's database.
|
4419
|
+
#
|
4420
|
+
# * `database-engine` – The name of the schema database's engine.
|
4421
|
+
#
|
4422
|
+
# * `original-schema-name` – The name of the schema's database's main
|
4423
|
+
# schema.
|
4424
|
+
#
|
4425
|
+
# * `schema-id` – The ID of the schema, for example `15`.
|
4426
|
+
#
|
4427
|
+
# * `schema-name` – The name of the schema.
|
4428
|
+
#
|
4429
|
+
# * `server-ip-address` – The IP address of the schema database's
|
4430
|
+
# server.
|
4431
|
+
#
|
4432
|
+
# An example is: `describe-fleet-advisor-schemas --filter
|
4433
|
+
# Name="schema-id",Values="50"`
|
4434
|
+
#
|
4435
|
+
# @option params [Integer] :max_records
|
4436
|
+
# Sets the maximum number of records returned in the response.
|
4437
|
+
#
|
4438
|
+
# @option params [String] :next_token
|
4439
|
+
# If `NextToken` is returned by a previous response, there are more
|
4440
|
+
# results available. The value of `NextToken` is a unique pagination
|
4441
|
+
# token for each page. Make the call again using the returned token to
|
4442
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
4443
|
+
#
|
4444
|
+
# @return [Types::DescribeFleetAdvisorSchemasResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4445
|
+
#
|
4446
|
+
# * {Types::DescribeFleetAdvisorSchemasResponse#fleet_advisor_schemas #fleet_advisor_schemas} => Array<Types::SchemaResponse>
|
4447
|
+
# * {Types::DescribeFleetAdvisorSchemasResponse#next_token #next_token} => String
|
4448
|
+
#
|
4449
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4450
|
+
#
|
4451
|
+
# @example Request syntax with placeholder values
|
4452
|
+
#
|
4453
|
+
# resp = client.describe_fleet_advisor_schemas({
|
4454
|
+
# filters: [
|
4455
|
+
# {
|
4456
|
+
# name: "String", # required
|
4457
|
+
# values: ["String"], # required
|
4458
|
+
# },
|
4459
|
+
# ],
|
4460
|
+
# max_records: 1,
|
4461
|
+
# next_token: "String",
|
4462
|
+
# })
|
4463
|
+
#
|
4464
|
+
# @example Response structure
|
4465
|
+
#
|
4466
|
+
# resp.fleet_advisor_schemas #=> Array
|
4467
|
+
# resp.fleet_advisor_schemas[0].code_line_count #=> Integer
|
4468
|
+
# resp.fleet_advisor_schemas[0].code_size #=> Integer
|
4469
|
+
# resp.fleet_advisor_schemas[0].complexity #=> String
|
4470
|
+
# resp.fleet_advisor_schemas[0].server.server_id #=> String
|
4471
|
+
# resp.fleet_advisor_schemas[0].server.ip_address #=> String
|
4472
|
+
# resp.fleet_advisor_schemas[0].server.server_name #=> String
|
4473
|
+
# resp.fleet_advisor_schemas[0].database_instance.database_id #=> String
|
4474
|
+
# resp.fleet_advisor_schemas[0].database_instance.database_name #=> String
|
4475
|
+
# resp.fleet_advisor_schemas[0].database_instance.database_ip_address #=> String
|
4476
|
+
# resp.fleet_advisor_schemas[0].database_instance.database_engine #=> String
|
4477
|
+
# resp.fleet_advisor_schemas[0].schema_id #=> String
|
4478
|
+
# resp.fleet_advisor_schemas[0].schema_name #=> String
|
4479
|
+
# resp.fleet_advisor_schemas[0].original_schema.schema_id #=> String
|
4480
|
+
# resp.fleet_advisor_schemas[0].original_schema.schema_name #=> String
|
4481
|
+
# resp.fleet_advisor_schemas[0].original_schema.database_id #=> String
|
4482
|
+
# resp.fleet_advisor_schemas[0].original_schema.database_name #=> String
|
4483
|
+
# resp.fleet_advisor_schemas[0].original_schema.database_ip_address #=> String
|
4484
|
+
# resp.fleet_advisor_schemas[0].similarity #=> Float
|
4485
|
+
# resp.next_token #=> String
|
4486
|
+
#
|
4487
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemas AWS API Documentation
|
4488
|
+
#
|
4489
|
+
# @overload describe_fleet_advisor_schemas(params = {})
|
4490
|
+
# @param [Hash] params ({})
|
4491
|
+
def describe_fleet_advisor_schemas(params = {}, options = {})
|
4492
|
+
req = build_request(:describe_fleet_advisor_schemas, params)
|
4493
|
+
req.send_request(options)
|
4494
|
+
end
|
4495
|
+
|
4016
4496
|
# Returns information about the replication instance types that can be
|
4017
4497
|
# created in the specified region.
|
4018
4498
|
#
|
@@ -5484,6 +5964,8 @@ module Aws::DatabaseMigrationService
|
|
5484
5964
|
# max_file_size: 1,
|
5485
5965
|
# rfc_4180: false,
|
5486
5966
|
# date_partition_timezone: "String",
|
5967
|
+
# add_trailing_padding_character: false,
|
5968
|
+
# expected_bucket_owner: "String",
|
5487
5969
|
# },
|
5488
5970
|
# dms_transfer_settings: {
|
5489
5971
|
# service_access_role_arn: "String",
|
@@ -5542,6 +6024,7 @@ module Aws::DatabaseMigrationService
|
|
5542
6024
|
# endpoint_uri: "String", # required
|
5543
6025
|
# full_load_error_percentage: 1,
|
5544
6026
|
# error_retry_duration: 1,
|
6027
|
+
# use_new_mapping_type: false,
|
5545
6028
|
# },
|
5546
6029
|
# neptune_settings: {
|
5547
6030
|
# service_access_role_arn: "String",
|
@@ -5603,6 +6086,7 @@ module Aws::DatabaseMigrationService
|
|
5603
6086
|
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
5604
6087
|
# secrets_manager_access_role_arn: "String",
|
5605
6088
|
# secrets_manager_secret_id: "String",
|
6089
|
+
# trim_space_in_char: false,
|
5606
6090
|
# },
|
5607
6091
|
# my_sql_settings: {
|
5608
6092
|
# after_connect_script: "String",
|
@@ -5661,6 +6145,7 @@ module Aws::DatabaseMigrationService
|
|
5661
6145
|
# secrets_manager_secret_id: "String",
|
5662
6146
|
# secrets_manager_oracle_asm_access_role_arn: "String",
|
5663
6147
|
# secrets_manager_oracle_asm_secret_id: "String",
|
6148
|
+
# trim_space_in_char: false,
|
5664
6149
|
# },
|
5665
6150
|
# sybase_settings: {
|
5666
6151
|
# database_name: "String",
|
@@ -5686,6 +6171,7 @@ module Aws::DatabaseMigrationService
|
|
5686
6171
|
# use_third_party_backup_device: false,
|
5687
6172
|
# secrets_manager_access_role_arn: "String",
|
5688
6173
|
# secrets_manager_secret_id: "String",
|
6174
|
+
# trim_space_in_char: false,
|
5689
6175
|
# },
|
5690
6176
|
# ibm_db_2_settings: {
|
5691
6177
|
# database_name: "String",
|
@@ -5798,6 +6284,8 @@ module Aws::DatabaseMigrationService
|
|
5798
6284
|
# resp.endpoint.s3_settings.max_file_size #=> Integer
|
5799
6285
|
# resp.endpoint.s3_settings.rfc_4180 #=> Boolean
|
5800
6286
|
# resp.endpoint.s3_settings.date_partition_timezone #=> String
|
6287
|
+
# resp.endpoint.s3_settings.add_trailing_padding_character #=> Boolean
|
6288
|
+
# resp.endpoint.s3_settings.expected_bucket_owner #=> String
|
5801
6289
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
5802
6290
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
5803
6291
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -5846,6 +6334,7 @@ module Aws::DatabaseMigrationService
|
|
5846
6334
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
5847
6335
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
5848
6336
|
# resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
|
6337
|
+
# resp.endpoint.elasticsearch_settings.use_new_mapping_type #=> Boolean
|
5849
6338
|
# resp.endpoint.neptune_settings.service_access_role_arn #=> String
|
5850
6339
|
# resp.endpoint.neptune_settings.s3_bucket_name #=> String
|
5851
6340
|
# resp.endpoint.neptune_settings.s3_bucket_folder #=> String
|
@@ -5901,6 +6390,7 @@ module Aws::DatabaseMigrationService
|
|
5901
6390
|
# resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
5902
6391
|
# resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
5903
6392
|
# resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
|
6393
|
+
# resp.endpoint.postgre_sql_settings.trim_space_in_char #=> Boolean
|
5904
6394
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
5905
6395
|
# resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
5906
6396
|
# resp.endpoint.my_sql_settings.database_name #=> String
|
@@ -5956,6 +6446,7 @@ module Aws::DatabaseMigrationService
|
|
5956
6446
|
# resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
|
5957
6447
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
5958
6448
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
|
6449
|
+
# resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
|
5959
6450
|
# resp.endpoint.sybase_settings.database_name #=> String
|
5960
6451
|
# resp.endpoint.sybase_settings.password #=> String
|
5961
6452
|
# resp.endpoint.sybase_settings.port #=> Integer
|
@@ -5977,6 +6468,7 @@ module Aws::DatabaseMigrationService
|
|
5977
6468
|
# resp.endpoint.microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
|
5978
6469
|
# resp.endpoint.microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
|
5979
6470
|
# resp.endpoint.microsoft_sql_server_settings.secrets_manager_secret_id #=> String
|
6471
|
+
# resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
5980
6472
|
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
5981
6473
|
# resp.endpoint.ibm_db_2_settings.password #=> String
|
5982
6474
|
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
@@ -6842,6 +7334,28 @@ module Aws::DatabaseMigrationService
|
|
6842
7334
|
req.send_request(options)
|
6843
7335
|
end
|
6844
7336
|
|
7337
|
+
# Runs large-scale assessment (LSA) analysis on every Fleet Advisor
|
7338
|
+
# collector in your account.
|
7339
|
+
#
|
7340
|
+
# @return [Types::RunFleetAdvisorLsaAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7341
|
+
#
|
7342
|
+
# * {Types::RunFleetAdvisorLsaAnalysisResponse#lsa_analysis_id #lsa_analysis_id} => String
|
7343
|
+
# * {Types::RunFleetAdvisorLsaAnalysisResponse#status #status} => String
|
7344
|
+
#
|
7345
|
+
# @example Response structure
|
7346
|
+
#
|
7347
|
+
# resp.lsa_analysis_id #=> String
|
7348
|
+
# resp.status #=> String
|
7349
|
+
#
|
7350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RunFleetAdvisorLsaAnalysis AWS API Documentation
|
7351
|
+
#
|
7352
|
+
# @overload run_fleet_advisor_lsa_analysis(params = {})
|
7353
|
+
# @param [Hash] params ({})
|
7354
|
+
def run_fleet_advisor_lsa_analysis(params = {}, options = {})
|
7355
|
+
req = build_request(:run_fleet_advisor_lsa_analysis, params)
|
7356
|
+
req.send_request(options)
|
7357
|
+
end
|
7358
|
+
|
6845
7359
|
# Starts the replication task.
|
6846
7360
|
#
|
6847
7361
|
# For more information about DMS tasks, see [Working with Migration
|
@@ -7325,6 +7839,55 @@ module Aws::DatabaseMigrationService
|
|
7325
7839
|
req.send_request(options)
|
7326
7840
|
end
|
7327
7841
|
|
7842
|
+
# Migrates 10 active and enabled Amazon SNS subscriptions at a time and
|
7843
|
+
# converts them to corresponding Amazon EventBridge rules. By default,
|
7844
|
+
# this operation migrates subscriptions only when all your replication
|
7845
|
+
# instance versions are 3.4.6 or higher. If any replication instances
|
7846
|
+
# are from versions earlier than 3.4.6, the operation raises an error
|
7847
|
+
# and tells you to upgrade these instances to version 3.4.6 or higher.
|
7848
|
+
# To enable migration regardless of version, set the `Force` option to
|
7849
|
+
# true. However, if you don't upgrade instances earlier than version
|
7850
|
+
# 3.4.6, some types of events might not be available when you use Amazon
|
7851
|
+
# EventBridge.
|
7852
|
+
#
|
7853
|
+
# To call this operation, make sure that you have certain permissions
|
7854
|
+
# added to your user account. For more information, see [Migrating event
|
7855
|
+
# subscriptions to Amazon EventBridge][1] in the *Amazon Web Services
|
7856
|
+
# Database Migration Service User Guide*.
|
7857
|
+
#
|
7858
|
+
#
|
7859
|
+
#
|
7860
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html#CHAP_Events-migrate-to-eventbridge
|
7861
|
+
#
|
7862
|
+
# @option params [Boolean] :force_move
|
7863
|
+
# When set to true, this operation migrates DMS subscriptions for Amazon
|
7864
|
+
# SNS notifications no matter what your replication instance version is.
|
7865
|
+
# If not set or set to false, this operation runs only when all your
|
7866
|
+
# replication instances are from DMS version 3.4.6 or higher.
|
7867
|
+
#
|
7868
|
+
# @return [Types::UpdateSubscriptionsToEventBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7869
|
+
#
|
7870
|
+
# * {Types::UpdateSubscriptionsToEventBridgeResponse#result #result} => String
|
7871
|
+
#
|
7872
|
+
# @example Request syntax with placeholder values
|
7873
|
+
#
|
7874
|
+
# resp = client.update_subscriptions_to_event_bridge({
|
7875
|
+
# force_move: false,
|
7876
|
+
# })
|
7877
|
+
#
|
7878
|
+
# @example Response structure
|
7879
|
+
#
|
7880
|
+
# resp.result #=> String
|
7881
|
+
#
|
7882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/UpdateSubscriptionsToEventBridge AWS API Documentation
|
7883
|
+
#
|
7884
|
+
# @overload update_subscriptions_to_event_bridge(params = {})
|
7885
|
+
# @param [Hash] params ({})
|
7886
|
+
def update_subscriptions_to_event_bridge(params = {}, options = {})
|
7887
|
+
req = build_request(:update_subscriptions_to_event_bridge, params)
|
7888
|
+
req.send_request(options)
|
7889
|
+
end
|
7890
|
+
|
7328
7891
|
# @!endgroup
|
7329
7892
|
|
7330
7893
|
# @param params ({})
|
@@ -7338,7 +7901,7 @@ module Aws::DatabaseMigrationService
|
|
7338
7901
|
params: params,
|
7339
7902
|
config: config)
|
7340
7903
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
7341
|
-
context[:gem_version] = '1.
|
7904
|
+
context[:gem_version] = '1.70.0'
|
7342
7905
|
Seahorse::Client::Request.new(handlers, context)
|
7343
7906
|
end
|
7344
7907
|
|