aws-sdk-databasemigrationservice 1.109.0 → 1.111.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +108 -16
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +27 -6
- data/lib/aws-sdk-databasemigrationservice/types.rb +184 -50
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +32 -12
- data/sig/types.rbs +16 -1
- 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: 41afd1d59ab0afca4b13466a5d2968a7d7327323d5c030b28229ff2a3ec6fbfb
|
4
|
+
data.tar.gz: a2b8e83c9cf724fd035634e370ba341bbeea9d6da800628314a36a69ef47d5cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c046d768532cf3a90da41c924cbdd20eeb163be2b24e92e9ace2b06918841fbe3162fcd2840dfafe9ff63b89d8ca69d114e840d1a48d239de1830b36aeba539
|
7
|
+
data.tar.gz: 06e9f352e770f6084447673224cb5122ac7f002bc67925f0ccabb6179595676c05237110354b80e00af9c3037f55f060b4df233ce9b31df3f2c8c50b93368d74
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2024-12-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add parameters to support for kerberos authentication. Add parameter for disabling the Unicode source filter with PostgreSQL settings. Add parameter to use large integer value with Kinesis/Kafka settings.
|
8
|
+
|
9
|
+
1.110.0 (2024-11-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.109.0 (2024-10-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|
@@ -1127,8 +1127,8 @@ module Aws::DatabaseMigrationService
|
|
1127
1127
|
# Shorthand syntax for these settings is as follows:
|
1128
1128
|
# `ServiceAccessRoleArn=string,BucketName=string`
|
1129
1129
|
#
|
1130
|
-
# JSON syntax for these settings is as follows:
|
1131
|
-
# "ServiceAccessRoleArn": "string", "BucketName": "string",
|
1130
|
+
# JSON syntax for these settings is as follows: `{
|
1131
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string", } `
|
1132
1132
|
#
|
1133
1133
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
1134
1134
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
@@ -1425,6 +1425,7 @@ module Aws::DatabaseMigrationService
|
|
1425
1425
|
# include_control_details: false,
|
1426
1426
|
# include_null_and_empty: false,
|
1427
1427
|
# no_hex_prefix: false,
|
1428
|
+
# use_large_integer_value: false,
|
1428
1429
|
# },
|
1429
1430
|
# kafka_settings: {
|
1430
1431
|
# broker: "String",
|
@@ -1447,6 +1448,7 @@ module Aws::DatabaseMigrationService
|
|
1447
1448
|
# no_hex_prefix: false,
|
1448
1449
|
# sasl_mechanism: "scram-sha-512", # accepts scram-sha-512, plain
|
1449
1450
|
# ssl_endpoint_identification_algorithm: "none", # accepts none, https
|
1451
|
+
# use_large_integer_value: false,
|
1450
1452
|
# },
|
1451
1453
|
# elasticsearch_settings: {
|
1452
1454
|
# service_access_role_arn: "String", # required
|
@@ -1522,6 +1524,7 @@ module Aws::DatabaseMigrationService
|
|
1522
1524
|
# map_long_varchar_as: "wstring", # accepts wstring, clob, nclob
|
1523
1525
|
# database_mode: "default", # accepts default, babelfish
|
1524
1526
|
# babelfish_database_name: "String",
|
1527
|
+
# disable_unicode_source_filter: false,
|
1525
1528
|
# },
|
1526
1529
|
# my_sql_settings: {
|
1527
1530
|
# after_connect_script: "String",
|
@@ -1584,6 +1587,7 @@ module Aws::DatabaseMigrationService
|
|
1584
1587
|
# trim_space_in_char: false,
|
1585
1588
|
# convert_timestamp_with_zone_to_utc: false,
|
1586
1589
|
# open_transaction_window: 1,
|
1590
|
+
# authentication_method: "password", # accepts password, kerberos
|
1587
1591
|
# },
|
1588
1592
|
# sybase_settings: {
|
1589
1593
|
# database_name: "String",
|
@@ -1612,6 +1616,7 @@ module Aws::DatabaseMigrationService
|
|
1612
1616
|
# trim_space_in_char: false,
|
1613
1617
|
# tlog_access_mode: "BackupOnly", # accepts BackupOnly, PreferBackup, PreferTlog, TlogOnly
|
1614
1618
|
# force_lob_lookup: false,
|
1619
|
+
# authentication_method: "password", # accepts password, kerberos
|
1615
1620
|
# },
|
1616
1621
|
# ibm_db_2_settings: {
|
1617
1622
|
# database_name: "String",
|
@@ -1768,6 +1773,7 @@ module Aws::DatabaseMigrationService
|
|
1768
1773
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
1769
1774
|
# resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
|
1770
1775
|
# resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
|
1776
|
+
# resp.endpoint.kinesis_settings.use_large_integer_value #=> Boolean
|
1771
1777
|
# resp.endpoint.kafka_settings.broker #=> String
|
1772
1778
|
# resp.endpoint.kafka_settings.topic #=> String
|
1773
1779
|
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -1788,6 +1794,7 @@ module Aws::DatabaseMigrationService
|
|
1788
1794
|
# resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
|
1789
1795
|
# resp.endpoint.kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
|
1790
1796
|
# resp.endpoint.kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
|
1797
|
+
# resp.endpoint.kafka_settings.use_large_integer_value #=> Boolean
|
1791
1798
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
1792
1799
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1793
1800
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -1855,6 +1862,7 @@ module Aws::DatabaseMigrationService
|
|
1855
1862
|
# resp.endpoint.postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
|
1856
1863
|
# resp.endpoint.postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
|
1857
1864
|
# resp.endpoint.postgre_sql_settings.babelfish_database_name #=> String
|
1865
|
+
# resp.endpoint.postgre_sql_settings.disable_unicode_source_filter #=> Boolean
|
1858
1866
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
1859
1867
|
# resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
1860
1868
|
# resp.endpoint.my_sql_settings.database_name #=> String
|
@@ -1914,6 +1922,7 @@ module Aws::DatabaseMigrationService
|
|
1914
1922
|
# resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
|
1915
1923
|
# resp.endpoint.oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
|
1916
1924
|
# resp.endpoint.oracle_settings.open_transaction_window #=> Integer
|
1925
|
+
# resp.endpoint.oracle_settings.authentication_method #=> String, one of "password", "kerberos"
|
1917
1926
|
# resp.endpoint.sybase_settings.database_name #=> String
|
1918
1927
|
# resp.endpoint.sybase_settings.password #=> String
|
1919
1928
|
# resp.endpoint.sybase_settings.port #=> Integer
|
@@ -1938,6 +1947,7 @@ module Aws::DatabaseMigrationService
|
|
1938
1947
|
# resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
1939
1948
|
# resp.endpoint.microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
|
1940
1949
|
# resp.endpoint.microsoft_sql_server_settings.force_lob_lookup #=> Boolean
|
1950
|
+
# resp.endpoint.microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
|
1941
1951
|
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
1942
1952
|
# resp.endpoint.ibm_db_2_settings.password #=> String
|
1943
1953
|
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
@@ -2737,6 +2747,10 @@ module Aws::DatabaseMigrationService
|
|
2737
2747
|
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
2738
2748
|
# addressing. IPv6 only is not yet supported.
|
2739
2749
|
#
|
2750
|
+
# @option params [Types::KerberosAuthenticationSettings] :kerberos_authentication_settings
|
2751
|
+
# Specifies the ID of the secret that stores the key cache file required
|
2752
|
+
# for kerberos authentication, when creating a replication instance.
|
2753
|
+
#
|
2740
2754
|
# @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2741
2755
|
#
|
2742
2756
|
# * {Types::CreateReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
|
@@ -2827,7 +2841,7 @@ module Aws::DatabaseMigrationService
|
|
2827
2841
|
# resp = client.create_replication_instance({
|
2828
2842
|
# replication_instance_identifier: "String", # required
|
2829
2843
|
# allocated_storage: 1,
|
2830
|
-
# replication_instance_class: "
|
2844
|
+
# replication_instance_class: "ReplicationInstanceClass", # required
|
2831
2845
|
# vpc_security_group_ids: ["String"],
|
2832
2846
|
# availability_zone: "String",
|
2833
2847
|
# replication_subnet_group_identifier: "String",
|
@@ -2847,6 +2861,11 @@ module Aws::DatabaseMigrationService
|
|
2847
2861
|
# dns_name_servers: "String",
|
2848
2862
|
# resource_identifier: "String",
|
2849
2863
|
# network_type: "String",
|
2864
|
+
# kerberos_authentication_settings: {
|
2865
|
+
# key_cache_secret_id: "String",
|
2866
|
+
# key_cache_secret_iam_arn: "String",
|
2867
|
+
# krb_5_file_contents: "String",
|
2868
|
+
# },
|
2850
2869
|
# })
|
2851
2870
|
#
|
2852
2871
|
# @example Response structure
|
@@ -2894,6 +2913,9 @@ module Aws::DatabaseMigrationService
|
|
2894
2913
|
# resp.replication_instance.free_until #=> Time
|
2895
2914
|
# resp.replication_instance.dns_name_servers #=> String
|
2896
2915
|
# resp.replication_instance.network_type #=> String
|
2916
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
|
2917
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
|
2918
|
+
# resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
|
2897
2919
|
#
|
2898
2920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstance AWS API Documentation
|
2899
2921
|
#
|
@@ -3639,6 +3661,7 @@ module Aws::DatabaseMigrationService
|
|
3639
3661
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
3640
3662
|
# resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
|
3641
3663
|
# resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
|
3664
|
+
# resp.endpoint.kinesis_settings.use_large_integer_value #=> Boolean
|
3642
3665
|
# resp.endpoint.kafka_settings.broker #=> String
|
3643
3666
|
# resp.endpoint.kafka_settings.topic #=> String
|
3644
3667
|
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -3659,6 +3682,7 @@ module Aws::DatabaseMigrationService
|
|
3659
3682
|
# resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
|
3660
3683
|
# resp.endpoint.kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
|
3661
3684
|
# resp.endpoint.kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
|
3685
|
+
# resp.endpoint.kafka_settings.use_large_integer_value #=> Boolean
|
3662
3686
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
3663
3687
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
3664
3688
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -3726,6 +3750,7 @@ module Aws::DatabaseMigrationService
|
|
3726
3750
|
# resp.endpoint.postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
|
3727
3751
|
# resp.endpoint.postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
|
3728
3752
|
# resp.endpoint.postgre_sql_settings.babelfish_database_name #=> String
|
3753
|
+
# resp.endpoint.postgre_sql_settings.disable_unicode_source_filter #=> Boolean
|
3729
3754
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
3730
3755
|
# resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
3731
3756
|
# resp.endpoint.my_sql_settings.database_name #=> String
|
@@ -3785,6 +3810,7 @@ module Aws::DatabaseMigrationService
|
|
3785
3810
|
# resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
|
3786
3811
|
# resp.endpoint.oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
|
3787
3812
|
# resp.endpoint.oracle_settings.open_transaction_window #=> Integer
|
3813
|
+
# resp.endpoint.oracle_settings.authentication_method #=> String, one of "password", "kerberos"
|
3788
3814
|
# resp.endpoint.sybase_settings.database_name #=> String
|
3789
3815
|
# resp.endpoint.sybase_settings.password #=> String
|
3790
3816
|
# resp.endpoint.sybase_settings.port #=> Integer
|
@@ -3809,6 +3835,7 @@ module Aws::DatabaseMigrationService
|
|
3809
3835
|
# resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
3810
3836
|
# resp.endpoint.microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
|
3811
3837
|
# resp.endpoint.microsoft_sql_server_settings.force_lob_lookup #=> Boolean
|
3838
|
+
# resp.endpoint.microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
|
3812
3839
|
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
3813
3840
|
# resp.endpoint.ibm_db_2_settings.password #=> String
|
3814
3841
|
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
@@ -4276,6 +4303,9 @@ module Aws::DatabaseMigrationService
|
|
4276
4303
|
# resp.replication_instance.free_until #=> Time
|
4277
4304
|
# resp.replication_instance.dns_name_servers #=> String
|
4278
4305
|
# resp.replication_instance.network_type #=> String
|
4306
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
|
4307
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
|
4308
|
+
# resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
|
4279
4309
|
#
|
4280
4310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationInstance AWS API Documentation
|
4281
4311
|
#
|
@@ -4946,7 +4976,8 @@ module Aws::DatabaseMigrationService
|
|
4946
4976
|
# Filters applied to the data providers described in the form of
|
4947
4977
|
# key-value pairs.
|
4948
4978
|
#
|
4949
|
-
# Valid filter names: data-provider-identifier
|
4979
|
+
# Valid filter names and values: data-provider-identifier, data provider
|
4980
|
+
# arn or name
|
4950
4981
|
#
|
4951
4982
|
# @option params [Integer] :max_records
|
4952
4983
|
# The maximum number of records to include in the response. If more
|
@@ -5389,6 +5420,7 @@ module Aws::DatabaseMigrationService
|
|
5389
5420
|
# resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
|
5390
5421
|
# resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
|
5391
5422
|
# resp.endpoints[0].kinesis_settings.no_hex_prefix #=> Boolean
|
5423
|
+
# resp.endpoints[0].kinesis_settings.use_large_integer_value #=> Boolean
|
5392
5424
|
# resp.endpoints[0].kafka_settings.broker #=> String
|
5393
5425
|
# resp.endpoints[0].kafka_settings.topic #=> String
|
5394
5426
|
# resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -5409,6 +5441,7 @@ module Aws::DatabaseMigrationService
|
|
5409
5441
|
# resp.endpoints[0].kafka_settings.no_hex_prefix #=> Boolean
|
5410
5442
|
# resp.endpoints[0].kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
|
5411
5443
|
# resp.endpoints[0].kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
|
5444
|
+
# resp.endpoints[0].kafka_settings.use_large_integer_value #=> Boolean
|
5412
5445
|
# resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
|
5413
5446
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
5414
5447
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -5476,6 +5509,7 @@ module Aws::DatabaseMigrationService
|
|
5476
5509
|
# resp.endpoints[0].postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
|
5477
5510
|
# resp.endpoints[0].postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
|
5478
5511
|
# resp.endpoints[0].postgre_sql_settings.babelfish_database_name #=> String
|
5512
|
+
# resp.endpoints[0].postgre_sql_settings.disable_unicode_source_filter #=> Boolean
|
5479
5513
|
# resp.endpoints[0].my_sql_settings.after_connect_script #=> String
|
5480
5514
|
# resp.endpoints[0].my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
5481
5515
|
# resp.endpoints[0].my_sql_settings.database_name #=> String
|
@@ -5535,6 +5569,7 @@ module Aws::DatabaseMigrationService
|
|
5535
5569
|
# resp.endpoints[0].oracle_settings.trim_space_in_char #=> Boolean
|
5536
5570
|
# resp.endpoints[0].oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
|
5537
5571
|
# resp.endpoints[0].oracle_settings.open_transaction_window #=> Integer
|
5572
|
+
# resp.endpoints[0].oracle_settings.authentication_method #=> String, one of "password", "kerberos"
|
5538
5573
|
# resp.endpoints[0].sybase_settings.database_name #=> String
|
5539
5574
|
# resp.endpoints[0].sybase_settings.password #=> String
|
5540
5575
|
# resp.endpoints[0].sybase_settings.port #=> Integer
|
@@ -5559,6 +5594,7 @@ module Aws::DatabaseMigrationService
|
|
5559
5594
|
# resp.endpoints[0].microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
5560
5595
|
# resp.endpoints[0].microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
|
5561
5596
|
# resp.endpoints[0].microsoft_sql_server_settings.force_lob_lookup #=> Boolean
|
5597
|
+
# resp.endpoints[0].microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
|
5562
5598
|
# resp.endpoints[0].ibm_db_2_settings.database_name #=> String
|
5563
5599
|
# resp.endpoints[0].ibm_db_2_settings.password #=> String
|
5564
5600
|
# resp.endpoints[0].ibm_db_2_settings.port #=> Integer
|
@@ -6359,6 +6395,9 @@ module Aws::DatabaseMigrationService
|
|
6359
6395
|
# Filters applied to the instance profiles described in the form of
|
6360
6396
|
# key-value pairs.
|
6361
6397
|
#
|
6398
|
+
# Valid filter names and values: instance-profile-identifier, instance
|
6399
|
+
# profile arn or name
|
6400
|
+
#
|
6362
6401
|
# @option params [Integer] :max_records
|
6363
6402
|
# The maximum number of records to include in the response. If more
|
6364
6403
|
# records exist than the specified `MaxRecords` value, DMS includes a
|
@@ -6917,6 +6956,14 @@ module Aws::DatabaseMigrationService
|
|
6917
6956
|
# Filters applied to the migration projects described in the form of
|
6918
6957
|
# key-value pairs.
|
6919
6958
|
#
|
6959
|
+
# Valid filter names and values:
|
6960
|
+
#
|
6961
|
+
# * instance-profile-identifier, instance profile arn or name
|
6962
|
+
#
|
6963
|
+
# * data-provider-identifier, data provider arn or name
|
6964
|
+
#
|
6965
|
+
# * migration-project-identifier, migration project arn or name
|
6966
|
+
#
|
6920
6967
|
# @option params [Integer] :max_records
|
6921
6968
|
# The maximum number of records to include in the response. If more
|
6922
6969
|
# records exist than the specified `MaxRecords` value, DMS includes a
|
@@ -7613,6 +7660,9 @@ module Aws::DatabaseMigrationService
|
|
7613
7660
|
# resp.replication_instances[0].free_until #=> Time
|
7614
7661
|
# resp.replication_instances[0].dns_name_servers #=> String
|
7615
7662
|
# resp.replication_instances[0].network_type #=> String
|
7663
|
+
# resp.replication_instances[0].kerberos_authentication_settings.key_cache_secret_id #=> String
|
7664
|
+
# resp.replication_instances[0].kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
|
7665
|
+
# resp.replication_instances[0].kerberos_authentication_settings.krb_5_file_contents #=> String
|
7616
7666
|
#
|
7617
7667
|
#
|
7618
7668
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8503,7 +8553,7 @@ module Aws::DatabaseMigrationService
|
|
8503
8553
|
# SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
|
8504
8554
|
# You can't provide the certificate inline.
|
8505
8555
|
#
|
8506
|
-
# Example: `filebase64("
|
8556
|
+
# Example: `filebase64("${path.root}/rds-ca-2019-root.sso")`
|
8507
8557
|
#
|
8508
8558
|
# @option params [Array<Types::Tag>] :tags
|
8509
8559
|
# The tags associated with the certificate.
|
@@ -9088,8 +9138,8 @@ module Aws::DatabaseMigrationService
|
|
9088
9138
|
# Shorthand syntax for these settings is as follows:
|
9089
9139
|
# `ServiceAccessRoleArn=string ,BucketName=string`
|
9090
9140
|
#
|
9091
|
-
# JSON syntax for these settings is as follows:
|
9092
|
-
# "ServiceAccessRoleArn": "string", "BucketName": "string"
|
9141
|
+
# JSON syntax for these settings is as follows: `{
|
9142
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string"} `
|
9093
9143
|
#
|
9094
9144
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
9095
9145
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
@@ -9241,15 +9291,15 @@ module Aws::DatabaseMigrationService
|
|
9241
9291
|
# settings with different names.
|
9242
9292
|
#
|
9243
9293
|
# For example, if you call `create-endpoint ... --endpoint-settings
|
9244
|
-
# '
|
9245
|
-
# `'
|
9246
|
-
#
|
9247
|
-
#
|
9294
|
+
# '{"a":1}' ...`, the endpoint has the following endpoint settings:
|
9295
|
+
# `'{"a":1}'`. If you then call `modify-endpoint ... --endpoint-settings
|
9296
|
+
# '{"b":2}' ...` for the same endpoint, the endpoint has the following
|
9297
|
+
# settings: `'{"a":1,"b":2}'`.
|
9248
9298
|
#
|
9249
9299
|
# However, suppose that you follow this with a call to `modify-endpoint
|
9250
|
-
# ... --endpoint-settings '
|
9251
|
-
#
|
9252
|
-
# `'
|
9300
|
+
# ... --endpoint-settings '{"b":2}' --exact-settings ...` for that same
|
9301
|
+
# endpoint again. Then the endpoint has the following settings:
|
9302
|
+
# `'{"b":2}'`. All existing settings are replaced with the exact
|
9253
9303
|
# settings that you specify.
|
9254
9304
|
#
|
9255
9305
|
# @option params [Types::GcpMySQLSettings] :gcp_my_sql_settings
|
@@ -9384,6 +9434,7 @@ module Aws::DatabaseMigrationService
|
|
9384
9434
|
# include_control_details: false,
|
9385
9435
|
# include_null_and_empty: false,
|
9386
9436
|
# no_hex_prefix: false,
|
9437
|
+
# use_large_integer_value: false,
|
9387
9438
|
# },
|
9388
9439
|
# kafka_settings: {
|
9389
9440
|
# broker: "String",
|
@@ -9406,6 +9457,7 @@ module Aws::DatabaseMigrationService
|
|
9406
9457
|
# no_hex_prefix: false,
|
9407
9458
|
# sasl_mechanism: "scram-sha-512", # accepts scram-sha-512, plain
|
9408
9459
|
# ssl_endpoint_identification_algorithm: "none", # accepts none, https
|
9460
|
+
# use_large_integer_value: false,
|
9409
9461
|
# },
|
9410
9462
|
# elasticsearch_settings: {
|
9411
9463
|
# service_access_role_arn: "String", # required
|
@@ -9481,6 +9533,7 @@ module Aws::DatabaseMigrationService
|
|
9481
9533
|
# map_long_varchar_as: "wstring", # accepts wstring, clob, nclob
|
9482
9534
|
# database_mode: "default", # accepts default, babelfish
|
9483
9535
|
# babelfish_database_name: "String",
|
9536
|
+
# disable_unicode_source_filter: false,
|
9484
9537
|
# },
|
9485
9538
|
# my_sql_settings: {
|
9486
9539
|
# after_connect_script: "String",
|
@@ -9543,6 +9596,7 @@ module Aws::DatabaseMigrationService
|
|
9543
9596
|
# trim_space_in_char: false,
|
9544
9597
|
# convert_timestamp_with_zone_to_utc: false,
|
9545
9598
|
# open_transaction_window: 1,
|
9599
|
+
# authentication_method: "password", # accepts password, kerberos
|
9546
9600
|
# },
|
9547
9601
|
# sybase_settings: {
|
9548
9602
|
# database_name: "String",
|
@@ -9571,6 +9625,7 @@ module Aws::DatabaseMigrationService
|
|
9571
9625
|
# trim_space_in_char: false,
|
9572
9626
|
# tlog_access_mode: "BackupOnly", # accepts BackupOnly, PreferBackup, PreferTlog, TlogOnly
|
9573
9627
|
# force_lob_lookup: false,
|
9628
|
+
# authentication_method: "password", # accepts password, kerberos
|
9574
9629
|
# },
|
9575
9630
|
# ibm_db_2_settings: {
|
9576
9631
|
# database_name: "String",
|
@@ -9727,6 +9782,7 @@ module Aws::DatabaseMigrationService
|
|
9727
9782
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
9728
9783
|
# resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
|
9729
9784
|
# resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
|
9785
|
+
# resp.endpoint.kinesis_settings.use_large_integer_value #=> Boolean
|
9730
9786
|
# resp.endpoint.kafka_settings.broker #=> String
|
9731
9787
|
# resp.endpoint.kafka_settings.topic #=> String
|
9732
9788
|
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -9747,6 +9803,7 @@ module Aws::DatabaseMigrationService
|
|
9747
9803
|
# resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
|
9748
9804
|
# resp.endpoint.kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
|
9749
9805
|
# resp.endpoint.kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
|
9806
|
+
# resp.endpoint.kafka_settings.use_large_integer_value #=> Boolean
|
9750
9807
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
9751
9808
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
9752
9809
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -9814,6 +9871,7 @@ module Aws::DatabaseMigrationService
|
|
9814
9871
|
# resp.endpoint.postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
|
9815
9872
|
# resp.endpoint.postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
|
9816
9873
|
# resp.endpoint.postgre_sql_settings.babelfish_database_name #=> String
|
9874
|
+
# resp.endpoint.postgre_sql_settings.disable_unicode_source_filter #=> Boolean
|
9817
9875
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
9818
9876
|
# resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
|
9819
9877
|
# resp.endpoint.my_sql_settings.database_name #=> String
|
@@ -9873,6 +9931,7 @@ module Aws::DatabaseMigrationService
|
|
9873
9931
|
# resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
|
9874
9932
|
# resp.endpoint.oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
|
9875
9933
|
# resp.endpoint.oracle_settings.open_transaction_window #=> Integer
|
9934
|
+
# resp.endpoint.oracle_settings.authentication_method #=> String, one of "password", "kerberos"
|
9876
9935
|
# resp.endpoint.sybase_settings.database_name #=> String
|
9877
9936
|
# resp.endpoint.sybase_settings.password #=> String
|
9878
9937
|
# resp.endpoint.sybase_settings.port #=> Integer
|
@@ -9897,6 +9956,7 @@ module Aws::DatabaseMigrationService
|
|
9897
9956
|
# resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
|
9898
9957
|
# resp.endpoint.microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
|
9899
9958
|
# resp.endpoint.microsoft_sql_server_settings.force_lob_lookup #=> Boolean
|
9959
|
+
# resp.endpoint.microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
|
9900
9960
|
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
9901
9961
|
# resp.endpoint.ibm_db_2_settings.password #=> String
|
9902
9962
|
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
@@ -10479,6 +10539,10 @@ module Aws::DatabaseMigrationService
|
|
10479
10539
|
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
10480
10540
|
# addressing. IPv6 only is not yet supported.
|
10481
10541
|
#
|
10542
|
+
# @option params [Types::KerberosAuthenticationSettings] :kerberos_authentication_settings
|
10543
|
+
# Specifies the ID of the secret that stores the key cache file required
|
10544
|
+
# for kerberos authentication, when modifying a replication instance.
|
10545
|
+
#
|
10482
10546
|
# @return [Types::ModifyReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10483
10547
|
#
|
10484
10548
|
# * {Types::ModifyReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
|
@@ -10564,7 +10628,7 @@ module Aws::DatabaseMigrationService
|
|
10564
10628
|
# replication_instance_arn: "String", # required
|
10565
10629
|
# allocated_storage: 1,
|
10566
10630
|
# apply_immediately: false,
|
10567
|
-
# replication_instance_class: "
|
10631
|
+
# replication_instance_class: "ReplicationInstanceClass",
|
10568
10632
|
# vpc_security_group_ids: ["String"],
|
10569
10633
|
# preferred_maintenance_window: "String",
|
10570
10634
|
# multi_az: false,
|
@@ -10573,6 +10637,11 @@ module Aws::DatabaseMigrationService
|
|
10573
10637
|
# auto_minor_version_upgrade: false,
|
10574
10638
|
# replication_instance_identifier: "String",
|
10575
10639
|
# network_type: "String",
|
10640
|
+
# kerberos_authentication_settings: {
|
10641
|
+
# key_cache_secret_id: "String",
|
10642
|
+
# key_cache_secret_iam_arn: "String",
|
10643
|
+
# krb_5_file_contents: "String",
|
10644
|
+
# },
|
10576
10645
|
# })
|
10577
10646
|
#
|
10578
10647
|
# @example Response structure
|
@@ -10620,6 +10689,9 @@ module Aws::DatabaseMigrationService
|
|
10620
10689
|
# resp.replication_instance.free_until #=> Time
|
10621
10690
|
# resp.replication_instance.dns_name_servers #=> String
|
10622
10691
|
# resp.replication_instance.network_type #=> String
|
10692
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
|
10693
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
|
10694
|
+
# resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
|
10623
10695
|
#
|
10624
10696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstance AWS API Documentation
|
10625
10697
|
#
|
@@ -10987,6 +11059,9 @@ module Aws::DatabaseMigrationService
|
|
10987
11059
|
# resp.replication_instance.free_until #=> Time
|
10988
11060
|
# resp.replication_instance.dns_name_servers #=> String
|
10989
11061
|
# resp.replication_instance.network_type #=> String
|
11062
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
|
11063
|
+
# resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
|
11064
|
+
# resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
|
10990
11065
|
#
|
10991
11066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance AWS API Documentation
|
10992
11067
|
#
|
@@ -11669,6 +11744,23 @@ module Aws::DatabaseMigrationService
|
|
11669
11744
|
# @option params [required, String] :start_replication_type
|
11670
11745
|
# The replication type.
|
11671
11746
|
#
|
11747
|
+
# When the replication type is `full-load` or `full-load-and-cdc`, the
|
11748
|
+
# only valid value for the first run of the replication is
|
11749
|
+
# `start-replication`. This option will start the replication.
|
11750
|
+
#
|
11751
|
+
# You can also use ReloadTables to reload specific tables that failed
|
11752
|
+
# during replication instead of restarting the replication.
|
11753
|
+
#
|
11754
|
+
# The `resume-processing` option isn't applicable for a full-load
|
11755
|
+
# replication, because you can't resume partially loaded tables during
|
11756
|
+
# the full load phase.
|
11757
|
+
#
|
11758
|
+
# For a `full-load-and-cdc` replication, DMS migrates table data, and
|
11759
|
+
# then applies data changes that occur on the source. To load all the
|
11760
|
+
# tables again, and start capturing source changes, use `reload-target`.
|
11761
|
+
# Otherwise use `resume-processing`, to replicate the changes from the
|
11762
|
+
# last stop position.
|
11763
|
+
#
|
11672
11764
|
# @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
|
11673
11765
|
# Indicates the start time for a change data capture (CDC) operation.
|
11674
11766
|
# Use either `CdcStartTime` or `CdcStartPosition` to specify when you
|
@@ -12445,7 +12537,7 @@ module Aws::DatabaseMigrationService
|
|
12445
12537
|
tracer: tracer
|
12446
12538
|
)
|
12447
12539
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
12448
|
-
context[:gem_version] = '1.
|
12540
|
+
context[:gem_version] = '1.111.0'
|
12449
12541
|
Seahorse::Client::Request.new(handlers, context)
|
12450
12542
|
end
|
12451
12543
|
|