aws-sdk-databasemigrationservice 1.110.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +96 -4
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +27 -6
- data/lib/aws-sdk-databasemigrationservice/types.rb +165 -30
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +32 -12
- data/sig/types.rbs +16 -1
- metadata +2 -2
@@ -1627,6 +1627,12 @@ module Aws::DatabaseMigrationService
|
|
1627
1627
|
# addressing. IPv6 only is not yet supported.
|
1628
1628
|
# @return [String]
|
1629
1629
|
#
|
1630
|
+
# @!attribute [rw] kerberos_authentication_settings
|
1631
|
+
# Specifies the ID of the secret that stores the key cache file
|
1632
|
+
# required for kerberos authentication, when creating a replication
|
1633
|
+
# instance.
|
1634
|
+
# @return [Types::KerberosAuthenticationSettings]
|
1635
|
+
#
|
1630
1636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
|
1631
1637
|
#
|
1632
1638
|
class CreateReplicationInstanceMessage < Struct.new(
|
@@ -1645,7 +1651,8 @@ module Aws::DatabaseMigrationService
|
|
1645
1651
|
:publicly_accessible,
|
1646
1652
|
:dns_name_servers,
|
1647
1653
|
:resource_identifier,
|
1648
|
-
:network_type
|
1654
|
+
:network_type,
|
1655
|
+
:kerberos_authentication_settings)
|
1649
1656
|
SENSITIVE = []
|
1650
1657
|
include Aws::Structure
|
1651
1658
|
end
|
@@ -3024,7 +3031,8 @@ module Aws::DatabaseMigrationService
|
|
3024
3031
|
# Filters applied to the data providers described in the form of
|
3025
3032
|
# key-value pairs.
|
3026
3033
|
#
|
3027
|
-
# Valid filter names: data-provider-identifier
|
3034
|
+
# Valid filter names and values: data-provider-identifier, data
|
3035
|
+
# provider arn or name
|
3028
3036
|
# @return [Array<Types::Filter>]
|
3029
3037
|
#
|
3030
3038
|
# @!attribute [rw] max_records
|
@@ -3796,6 +3804,9 @@ module Aws::DatabaseMigrationService
|
|
3796
3804
|
# @!attribute [rw] filters
|
3797
3805
|
# Filters applied to the instance profiles described in the form of
|
3798
3806
|
# key-value pairs.
|
3807
|
+
#
|
3808
|
+
# Valid filter names and values: instance-profile-identifier, instance
|
3809
|
+
# profile arn or name
|
3799
3810
|
# @return [Array<Types::Filter>]
|
3800
3811
|
#
|
3801
3812
|
# @!attribute [rw] max_records
|
@@ -4173,6 +4184,14 @@ module Aws::DatabaseMigrationService
|
|
4173
4184
|
# @!attribute [rw] filters
|
4174
4185
|
# Filters applied to the migration projects described in the form of
|
4175
4186
|
# key-value pairs.
|
4187
|
+
#
|
4188
|
+
# Valid filter names and values:
|
4189
|
+
#
|
4190
|
+
# * instance-profile-identifier, instance profile arn or name
|
4191
|
+
#
|
4192
|
+
# * data-provider-identifier, data provider arn or name
|
4193
|
+
#
|
4194
|
+
# * migration-project-identifier, migration project arn or name
|
4176
4195
|
# @return [Array<Types::Filter>]
|
4177
4196
|
#
|
4178
4197
|
# @!attribute [rw] max_records
|
@@ -6750,6 +6769,10 @@ module Aws::DatabaseMigrationService
|
|
6750
6769
|
# supported in DMS version 3.5.1 and later.
|
6751
6770
|
# @return [String]
|
6752
6771
|
#
|
6772
|
+
# @!attribute [rw] use_large_integer_value
|
6773
|
+
# Specifies using the large integer value with Kafka.
|
6774
|
+
# @return [Boolean]
|
6775
|
+
#
|
6753
6776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KafkaSettings AWS API Documentation
|
6754
6777
|
#
|
6755
6778
|
class KafkaSettings < Struct.new(
|
@@ -6772,11 +6795,40 @@ module Aws::DatabaseMigrationService
|
|
6772
6795
|
:sasl_password,
|
6773
6796
|
:no_hex_prefix,
|
6774
6797
|
:sasl_mechanism,
|
6775
|
-
:ssl_endpoint_identification_algorithm
|
6798
|
+
:ssl_endpoint_identification_algorithm,
|
6799
|
+
:use_large_integer_value)
|
6776
6800
|
SENSITIVE = [:ssl_client_key_password, :sasl_password]
|
6777
6801
|
include Aws::Structure
|
6778
6802
|
end
|
6779
6803
|
|
6804
|
+
# Specifies using Kerberos authentication settings for use with DMS.
|
6805
|
+
#
|
6806
|
+
# @!attribute [rw] key_cache_secret_id
|
6807
|
+
# Specifies the secret ID of the key cache for the replication
|
6808
|
+
# instance.
|
6809
|
+
# @return [String]
|
6810
|
+
#
|
6811
|
+
# @!attribute [rw] key_cache_secret_iam_arn
|
6812
|
+
# Specifies the Amazon Resource Name (ARN) of the IAM role that grants
|
6813
|
+
# Amazon Web Services DMS access to the secret containing key cache
|
6814
|
+
# file for the replication instance.
|
6815
|
+
# @return [String]
|
6816
|
+
#
|
6817
|
+
# @!attribute [rw] krb_5_file_contents
|
6818
|
+
# Specifies the ID of the secret that stores the key cache file
|
6819
|
+
# required for kerberos authentication of the replication instance.
|
6820
|
+
# @return [String]
|
6821
|
+
#
|
6822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KerberosAuthenticationSettings AWS API Documentation
|
6823
|
+
#
|
6824
|
+
class KerberosAuthenticationSettings < Struct.new(
|
6825
|
+
:key_cache_secret_id,
|
6826
|
+
:key_cache_secret_iam_arn,
|
6827
|
+
:krb_5_file_contents)
|
6828
|
+
SENSITIVE = []
|
6829
|
+
include Aws::Structure
|
6830
|
+
end
|
6831
|
+
|
6780
6832
|
# Provides information that describes an Amazon Kinesis Data Stream
|
6781
6833
|
# endpoint. This information includes the output format of records
|
6782
6834
|
# applied to the endpoint and details of transaction and control table
|
@@ -6849,6 +6901,10 @@ module Aws::DatabaseMigrationService
|
|
6849
6901
|
# type columns without adding the '0x' prefix.
|
6850
6902
|
# @return [Boolean]
|
6851
6903
|
#
|
6904
|
+
# @!attribute [rw] use_large_integer_value
|
6905
|
+
# Specifies using the large integer value with Kinesis.
|
6906
|
+
# @return [Boolean]
|
6907
|
+
#
|
6852
6908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KinesisSettings AWS API Documentation
|
6853
6909
|
#
|
6854
6910
|
class KinesisSettings < Struct.new(
|
@@ -6861,7 +6917,8 @@ module Aws::DatabaseMigrationService
|
|
6861
6917
|
:include_table_alter_operations,
|
6862
6918
|
:include_control_details,
|
6863
6919
|
:include_null_and_empty,
|
6864
|
-
:no_hex_prefix
|
6920
|
+
:no_hex_prefix,
|
6921
|
+
:use_large_integer_value)
|
6865
6922
|
SENSITIVE = []
|
6866
6923
|
include Aws::Structure
|
6867
6924
|
end
|
@@ -7123,6 +7180,10 @@ module Aws::DatabaseMigrationService
|
|
7123
7180
|
# Forces LOB lookup on inline LOB.
|
7124
7181
|
# @return [Boolean]
|
7125
7182
|
#
|
7183
|
+
# @!attribute [rw] authentication_method
|
7184
|
+
# Specifies using Kerberos authentication with Microsoft SQL Server.
|
7185
|
+
# @return [String]
|
7186
|
+
#
|
7126
7187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
|
7127
7188
|
#
|
7128
7189
|
class MicrosoftSQLServerSettings < Struct.new(
|
@@ -7142,7 +7203,8 @@ module Aws::DatabaseMigrationService
|
|
7142
7203
|
:secrets_manager_secret_id,
|
7143
7204
|
:trim_space_in_char,
|
7144
7205
|
:tlog_access_mode,
|
7145
|
-
:force_lob_lookup
|
7206
|
+
:force_lob_lookup,
|
7207
|
+
:authentication_method)
|
7146
7208
|
SENSITIVE = [:password]
|
7147
7209
|
include Aws::Structure
|
7148
7210
|
end
|
@@ -8130,6 +8192,12 @@ module Aws::DatabaseMigrationService
|
|
8130
8192
|
# addressing. IPv6 only is not yet supported.
|
8131
8193
|
# @return [String]
|
8132
8194
|
#
|
8195
|
+
# @!attribute [rw] kerberos_authentication_settings
|
8196
|
+
# Specifies the ID of the secret that stores the key cache file
|
8197
|
+
# required for kerberos authentication, when modifying a replication
|
8198
|
+
# instance.
|
8199
|
+
# @return [Types::KerberosAuthenticationSettings]
|
8200
|
+
#
|
8133
8201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstanceMessage AWS API Documentation
|
8134
8202
|
#
|
8135
8203
|
class ModifyReplicationInstanceMessage < Struct.new(
|
@@ -8144,7 +8212,8 @@ module Aws::DatabaseMigrationService
|
|
8144
8212
|
:allow_major_version_upgrade,
|
8145
8213
|
:auto_minor_version_upgrade,
|
8146
8214
|
:replication_instance_identifier,
|
8147
|
-
:network_type
|
8215
|
+
:network_type,
|
8216
|
+
:kerberos_authentication_settings)
|
8148
8217
|
SENSITIVE = []
|
8149
8218
|
include Aws::Structure
|
8150
8219
|
end
|
@@ -9028,8 +9097,8 @@ module Aws::DatabaseMigrationService
|
|
9028
9097
|
# @return [Boolean]
|
9029
9098
|
#
|
9030
9099
|
# @!attribute [rw] archived_logs_only
|
9031
|
-
# When this field is set to `
|
9032
|
-
# logs. If the archived redo logs are stored on Automatic Storage
|
9100
|
+
# When this field is set to `True`, DMS only accesses the archived
|
9101
|
+
# redo logs. If the archived redo logs are stored on Automatic Storage
|
9033
9102
|
# Management (ASM) only, the DMS user account needs to be granted ASM
|
9034
9103
|
# privileges.
|
9035
9104
|
# @return [Boolean]
|
@@ -9198,12 +9267,12 @@ module Aws::DatabaseMigrationService
|
|
9198
9267
|
# @return [String]
|
9199
9268
|
#
|
9200
9269
|
# @!attribute [rw] use_b_file
|
9201
|
-
# Set this attribute to
|
9202
|
-
# Reader utility. Set `UseLogminerReader` to
|
9203
|
-
# to
|
9204
|
-
# you set additional attributes. For more information
|
9205
|
-
# setting with Oracle Automatic Storage Management
|
9206
|
-
# Oracle LogMiner or DMS Binary Reader for CDC][1].
|
9270
|
+
# Set this attribute to True to capture change data using the Binary
|
9271
|
+
# Reader utility. Set `UseLogminerReader` to False to set this
|
9272
|
+
# attribute to True. To use Binary Reader with Amazon RDS for Oracle
|
9273
|
+
# as the source, you set additional attributes. For more information
|
9274
|
+
# about using this setting with Oracle Automatic Storage Management
|
9275
|
+
# (ASM), see [ Using Oracle LogMiner or DMS Binary Reader for CDC][1].
|
9207
9276
|
#
|
9208
9277
|
#
|
9209
9278
|
#
|
@@ -9211,17 +9280,17 @@ module Aws::DatabaseMigrationService
|
|
9211
9280
|
# @return [Boolean]
|
9212
9281
|
#
|
9213
9282
|
# @!attribute [rw] use_direct_path_full_load
|
9214
|
-
# Set this attribute to
|
9283
|
+
# Set this attribute to True to have DMS use a direct path full load.
|
9215
9284
|
# Specify this value to use the direct path protocol in the Oracle
|
9216
9285
|
# Call Interface (OCI). By using this OCI protocol, you can bulk-load
|
9217
9286
|
# Oracle target tables during a full load.
|
9218
9287
|
# @return [Boolean]
|
9219
9288
|
#
|
9220
9289
|
# @!attribute [rw] use_logminer_reader
|
9221
|
-
# Set this attribute to
|
9222
|
-
# LogMiner utility (the default). Set this attribute to
|
9223
|
-
# to access the redo logs as a binary file. When you set
|
9224
|
-
# `UseLogminerReader` to
|
9290
|
+
# Set this attribute to True to capture change data using the Oracle
|
9291
|
+
# LogMiner utility (the default). Set this attribute to False if you
|
9292
|
+
# want to access the redo logs as a binary file. When you set
|
9293
|
+
# `UseLogminerReader` to False, also set `UseBfile` to True. For more
|
9225
9294
|
# information on this setting and using Oracle ASM, see [ Using Oracle
|
9226
9295
|
# LogMiner or DMS Binary Reader for CDC][1] in the *DMS User Guide*.
|
9227
9296
|
#
|
@@ -9312,13 +9381,15 @@ module Aws::DatabaseMigrationService
|
|
9312
9381
|
# You can specify an integer value between 0 (the default) and 240
|
9313
9382
|
# (the maximum).
|
9314
9383
|
#
|
9315
|
-
# <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later.
|
9316
|
-
# supports a window of up to 9.5 hours including the value for
|
9317
|
-
# `OpenTransactionWindow`.
|
9384
|
+
# <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later.
|
9318
9385
|
#
|
9319
9386
|
# </note>
|
9320
9387
|
# @return [Integer]
|
9321
9388
|
#
|
9389
|
+
# @!attribute [rw] authentication_method
|
9390
|
+
# Specifies using Kerberos authentication with Oracle.
|
9391
|
+
# @return [String]
|
9392
|
+
#
|
9322
9393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
|
9323
9394
|
#
|
9324
9395
|
class OracleSettings < Struct.new(
|
@@ -9364,7 +9435,8 @@ module Aws::DatabaseMigrationService
|
|
9364
9435
|
:secrets_manager_oracle_asm_secret_id,
|
9365
9436
|
:trim_space_in_char,
|
9366
9437
|
:convert_timestamp_with_zone_to_utc,
|
9367
|
-
:open_transaction_window
|
9438
|
+
:open_transaction_window,
|
9439
|
+
:authentication_method)
|
9368
9440
|
SENSITIVE = [:asm_password, :password, :security_db_encryption]
|
9369
9441
|
include Aws::Structure
|
9370
9442
|
end
|
@@ -9517,6 +9589,8 @@ module Aws::DatabaseMigrationService
|
|
9517
9589
|
# PostgreSQL database when the task starts. You can later remove these
|
9518
9590
|
# artifacts.
|
9519
9591
|
#
|
9592
|
+
# The default value is `true`.
|
9593
|
+
#
|
9520
9594
|
# If this value is set to `N`, you don't have to create tables or
|
9521
9595
|
# triggers on the source database.
|
9522
9596
|
# @return [Boolean]
|
@@ -9525,6 +9599,8 @@ module Aws::DatabaseMigrationService
|
|
9525
9599
|
# Specifies the maximum size (in KB) of any .csv file used to transfer
|
9526
9600
|
# data to PostgreSQL.
|
9527
9601
|
#
|
9602
|
+
# The default value is 32,768 KB (32 MB).
|
9603
|
+
#
|
9528
9604
|
# Example: `maxFileSize=512`
|
9529
9605
|
# @return [Integer]
|
9530
9606
|
#
|
@@ -9536,6 +9612,8 @@ module Aws::DatabaseMigrationService
|
|
9536
9612
|
# The schema in which the operational DDL database artifacts are
|
9537
9613
|
# created.
|
9538
9614
|
#
|
9615
|
+
# The default value is `public`.
|
9616
|
+
#
|
9539
9617
|
# Example: `ddlArtifactsSchema=xyzddlschema;`
|
9540
9618
|
# @return [String]
|
9541
9619
|
#
|
@@ -9550,6 +9628,8 @@ module Aws::DatabaseMigrationService
|
|
9550
9628
|
# When set to `true`, this value causes a task to fail if the actual
|
9551
9629
|
# size of a LOB column is greater than the specified `LobMaxSize`.
|
9552
9630
|
#
|
9631
|
+
# The default value is `false`.
|
9632
|
+
#
|
9553
9633
|
# If task is set to Limited LOB mode and this option is set to true,
|
9554
9634
|
# the task fails instead of truncating the LOB data.
|
9555
9635
|
# @return [Boolean]
|
@@ -9560,14 +9640,20 @@ module Aws::DatabaseMigrationService
|
|
9560
9640
|
# slots from holding onto old WAL logs, which can result in storage
|
9561
9641
|
# full situations on the source. This heartbeat keeps `restart_lsn`
|
9562
9642
|
# moving and prevents storage full scenarios.
|
9643
|
+
#
|
9644
|
+
# The default value is `false`.
|
9563
9645
|
# @return [Boolean]
|
9564
9646
|
#
|
9565
9647
|
# @!attribute [rw] heartbeat_schema
|
9566
9648
|
# Sets the schema in which the heartbeat artifacts are created.
|
9649
|
+
#
|
9650
|
+
# The default value is `public`.
|
9567
9651
|
# @return [String]
|
9568
9652
|
#
|
9569
9653
|
# @!attribute [rw] heartbeat_frequency
|
9570
9654
|
# Sets the WAL heartbeat frequency (in minutes).
|
9655
|
+
#
|
9656
|
+
# The default value is 5 minutes.
|
9571
9657
|
# @return [Integer]
|
9572
9658
|
#
|
9573
9659
|
# @!attribute [rw] password
|
@@ -9625,6 +9711,8 @@ module Aws::DatabaseMigrationService
|
|
9625
9711
|
#
|
9626
9712
|
# @!attribute [rw] plugin_name
|
9627
9713
|
# Specifies the plugin to use to create a replication slot.
|
9714
|
+
#
|
9715
|
+
# The default value is `pglogical`.
|
9628
9716
|
# @return [String]
|
9629
9717
|
#
|
9630
9718
|
# @!attribute [rw] secrets_manager_access_role_arn
|
@@ -9669,14 +9757,20 @@ module Aws::DatabaseMigrationService
|
|
9669
9757
|
# default, PostgreSQL migrates booleans as `varchar(5)`. You must set
|
9670
9758
|
# this setting on both the source and target endpoints for it to take
|
9671
9759
|
# effect.
|
9760
|
+
#
|
9761
|
+
# The default value is `false`.
|
9672
9762
|
# @return [Boolean]
|
9673
9763
|
#
|
9674
9764
|
# @!attribute [rw] map_jsonb_as_clob
|
9675
9765
|
# When true, DMS migrates JSONB values as CLOB.
|
9766
|
+
#
|
9767
|
+
# The default value is `false`.
|
9676
9768
|
# @return [Boolean]
|
9677
9769
|
#
|
9678
9770
|
# @!attribute [rw] map_long_varchar_as
|
9679
|
-
#
|
9771
|
+
# Sets what datatype to map LONG values as.
|
9772
|
+
#
|
9773
|
+
# The default value is `wstring`.
|
9680
9774
|
# @return [String]
|
9681
9775
|
#
|
9682
9776
|
# @!attribute [rw] database_mode
|
@@ -9689,6 +9783,17 @@ module Aws::DatabaseMigrationService
|
|
9689
9783
|
# The Babelfish for Aurora PostgreSQL database name for the endpoint.
|
9690
9784
|
# @return [String]
|
9691
9785
|
#
|
9786
|
+
# @!attribute [rw] disable_unicode_source_filter
|
9787
|
+
# Disables the Unicode source filter with PostgreSQL, for values
|
9788
|
+
# passed into the Selection rule filter on Source Endpoint column
|
9789
|
+
# values. By default DMS performs source filter comparisons using a
|
9790
|
+
# Unicode string which can cause look ups to ignore the indexes in the
|
9791
|
+
# text columns and slow down migrations.
|
9792
|
+
#
|
9793
|
+
# Unicode support should only be disabled when using a selection rule
|
9794
|
+
# filter is on a text column in the Source database that is indexed.
|
9795
|
+
# @return [Boolean]
|
9796
|
+
#
|
9692
9797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
|
9693
9798
|
#
|
9694
9799
|
class PostgreSQLSettings < Struct.new(
|
@@ -9715,7 +9820,8 @@ module Aws::DatabaseMigrationService
|
|
9715
9820
|
:map_jsonb_as_clob,
|
9716
9821
|
:map_long_varchar_as,
|
9717
9822
|
:database_mode,
|
9718
|
-
:babelfish_database_name
|
9823
|
+
:babelfish_database_name,
|
9824
|
+
:disable_unicode_source_filter)
|
9719
9825
|
SENSITIVE = [:password]
|
9720
9826
|
include Aws::Structure
|
9721
9827
|
end
|
@@ -10712,7 +10818,7 @@ module Aws::DatabaseMigrationService
|
|
10712
10818
|
# @return [Types::ReplicationStats]
|
10713
10819
|
#
|
10714
10820
|
# @!attribute [rw] start_replication_type
|
10715
|
-
# The replication
|
10821
|
+
# The type of replication to start.
|
10716
10822
|
# @return [String]
|
10717
10823
|
#
|
10718
10824
|
# @!attribute [rw] cdc_start_time
|
@@ -11033,6 +11139,11 @@ module Aws::DatabaseMigrationService
|
|
11033
11139
|
# addressing. IPv6 only is not yet supported.
|
11034
11140
|
# @return [String]
|
11035
11141
|
#
|
11142
|
+
# @!attribute [rw] kerberos_authentication_settings
|
11143
|
+
# Specifies the ID of the secret that stores the key cache file
|
11144
|
+
# required for kerberos authentication, when replicating an instance.
|
11145
|
+
# @return [Types::KerberosAuthenticationSettings]
|
11146
|
+
#
|
11036
11147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
|
11037
11148
|
#
|
11038
11149
|
class ReplicationInstance < Struct.new(
|
@@ -11060,7 +11171,8 @@ module Aws::DatabaseMigrationService
|
|
11060
11171
|
:secondary_availability_zone,
|
11061
11172
|
:free_until,
|
11062
11173
|
:dns_name_servers,
|
11063
|
-
:network_type
|
11174
|
+
:network_type,
|
11175
|
+
:kerberos_authentication_settings)
|
11064
11176
|
SENSITIVE = []
|
11065
11177
|
include Aws::Structure
|
11066
11178
|
end
|
@@ -11384,13 +11496,16 @@ module Aws::DatabaseMigrationService
|
|
11384
11496
|
# The reason the replication task was stopped. This response parameter
|
11385
11497
|
# can return one of the following values:
|
11386
11498
|
#
|
11387
|
-
# * `"Stop Reason NORMAL"`
|
11499
|
+
# * `"Stop Reason NORMAL"` – The task completed successfully with no
|
11500
|
+
# additional information returned.
|
11388
11501
|
#
|
11389
11502
|
# * `"Stop Reason RECOVERABLE_ERROR"`
|
11390
11503
|
#
|
11391
11504
|
# * `"Stop Reason FATAL_ERROR"`
|
11392
11505
|
#
|
11393
|
-
# * `"Stop Reason FULL_LOAD_ONLY_FINISHED"`
|
11506
|
+
# * `"Stop Reason FULL_LOAD_ONLY_FINISHED"` – The task completed the
|
11507
|
+
# full load phase. DMS applied cached changes if you set
|
11508
|
+
# `StopTaskCachedChangesApplied` to `true`.
|
11394
11509
|
#
|
11395
11510
|
# * `"Stop Reason STOPPED_AFTER_FULL_LOAD"` – Full load completed,
|
11396
11511
|
# with cached changes not applied
|
@@ -11566,7 +11681,7 @@ module Aws::DatabaseMigrationService
|
|
11566
11681
|
:assessment_results_file,
|
11567
11682
|
:assessment_results,
|
11568
11683
|
:s3_object_url)
|
11569
|
-
SENSITIVE = []
|
11684
|
+
SENSITIVE = [:s3_object_url]
|
11570
11685
|
include Aws::Structure
|
11571
11686
|
end
|
11572
11687
|
|
@@ -11618,6 +11733,9 @@ module Aws::DatabaseMigrationService
|
|
11618
11733
|
#
|
11619
11734
|
# * `"starting"` – The assessment run is starting, but resources are
|
11620
11735
|
# not yet being provisioned for individual assessments.
|
11736
|
+
#
|
11737
|
+
# * `"warning"` – At least one individual assessment completed with a
|
11738
|
+
# `warning` status.
|
11621
11739
|
# @return [String]
|
11622
11740
|
#
|
11623
11741
|
# @!attribute [rw] replication_task_assessment_run_creation_date
|
@@ -13135,6 +13253,23 @@ module Aws::DatabaseMigrationService
|
|
13135
13253
|
#
|
13136
13254
|
# @!attribute [rw] start_replication_type
|
13137
13255
|
# The replication type.
|
13256
|
+
#
|
13257
|
+
# When the replication type is `full-load` or `full-load-and-cdc`, the
|
13258
|
+
# only valid value for the first run of the replication is
|
13259
|
+
# `start-replication`. This option will start the replication.
|
13260
|
+
#
|
13261
|
+
# You can also use ReloadTables to reload specific tables that failed
|
13262
|
+
# during replication instead of restarting the replication.
|
13263
|
+
#
|
13264
|
+
# The `resume-processing` option isn't applicable for a full-load
|
13265
|
+
# replication, because you can't resume partially loaded tables
|
13266
|
+
# during the full load phase.
|
13267
|
+
#
|
13268
|
+
# For a `full-load-and-cdc` replication, DMS migrates table data, and
|
13269
|
+
# then applies data changes that occur on the source. To load all the
|
13270
|
+
# tables again, and start capturing source changes, use
|
13271
|
+
# `reload-target`. Otherwise use `resume-processing`, to replicate the
|
13272
|
+
# changes from the last stop position.
|
13138
13273
|
# @return [String]
|
13139
13274
|
#
|
13140
13275
|
# @!attribute [rw] cdc_start_time
|
data/sig/client.rbs
CHANGED
@@ -349,7 +349,8 @@ module Aws
|
|
349
349
|
include_table_alter_operations: bool?,
|
350
350
|
include_control_details: bool?,
|
351
351
|
include_null_and_empty: bool?,
|
352
|
-
no_hex_prefix: bool
|
352
|
+
no_hex_prefix: bool?,
|
353
|
+
use_large_integer_value: bool?
|
353
354
|
},
|
354
355
|
?kafka_settings: {
|
355
356
|
broker: ::String?,
|
@@ -371,7 +372,8 @@ module Aws
|
|
371
372
|
sasl_password: ::String?,
|
372
373
|
no_hex_prefix: bool?,
|
373
374
|
sasl_mechanism: ("scram-sha-512" | "plain")?,
|
374
|
-
ssl_endpoint_identification_algorithm: ("none" | "https")
|
375
|
+
ssl_endpoint_identification_algorithm: ("none" | "https")?,
|
376
|
+
use_large_integer_value: bool?
|
375
377
|
},
|
376
378
|
?elasticsearch_settings: {
|
377
379
|
service_access_role_arn: ::String,
|
@@ -446,7 +448,8 @@ module Aws
|
|
446
448
|
map_jsonb_as_clob: bool?,
|
447
449
|
map_long_varchar_as: ("wstring" | "clob" | "nclob")?,
|
448
450
|
database_mode: ("default" | "babelfish")?,
|
449
|
-
babelfish_database_name: ::String
|
451
|
+
babelfish_database_name: ::String?,
|
452
|
+
disable_unicode_source_filter: bool?
|
450
453
|
},
|
451
454
|
?my_sql_settings: {
|
452
455
|
after_connect_script: ::String?,
|
@@ -508,7 +511,8 @@ module Aws
|
|
508
511
|
secrets_manager_oracle_asm_secret_id: ::String?,
|
509
512
|
trim_space_in_char: bool?,
|
510
513
|
convert_timestamp_with_zone_to_utc: bool?,
|
511
|
-
open_transaction_window: ::Integer
|
514
|
+
open_transaction_window: ::Integer?,
|
515
|
+
authentication_method: ("password" | "kerberos")?
|
512
516
|
},
|
513
517
|
?sybase_settings: {
|
514
518
|
database_name: ::String?,
|
@@ -536,7 +540,8 @@ module Aws
|
|
536
540
|
secrets_manager_secret_id: ::String?,
|
537
541
|
trim_space_in_char: bool?,
|
538
542
|
tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")?,
|
539
|
-
force_lob_lookup: bool
|
543
|
+
force_lob_lookup: bool?,
|
544
|
+
authentication_method: ("password" | "kerberos")?
|
540
545
|
},
|
541
546
|
?ibm_db_2_settings: {
|
542
547
|
database_name: ::String?,
|
@@ -768,7 +773,12 @@ module Aws
|
|
768
773
|
?publicly_accessible: bool,
|
769
774
|
?dns_name_servers: ::String,
|
770
775
|
?resource_identifier: ::String,
|
771
|
-
?network_type: ::String
|
776
|
+
?network_type: ::String,
|
777
|
+
?kerberos_authentication_settings: {
|
778
|
+
key_cache_secret_id: ::String?,
|
779
|
+
key_cache_secret_iam_arn: ::String?,
|
780
|
+
krb_5_file_contents: ::String?
|
781
|
+
}
|
772
782
|
) -> _CreateReplicationInstanceResponseSuccess
|
773
783
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationInstanceResponseSuccess
|
774
784
|
|
@@ -1969,7 +1979,8 @@ module Aws
|
|
1969
1979
|
include_table_alter_operations: bool?,
|
1970
1980
|
include_control_details: bool?,
|
1971
1981
|
include_null_and_empty: bool?,
|
1972
|
-
no_hex_prefix: bool
|
1982
|
+
no_hex_prefix: bool?,
|
1983
|
+
use_large_integer_value: bool?
|
1973
1984
|
},
|
1974
1985
|
?kafka_settings: {
|
1975
1986
|
broker: ::String?,
|
@@ -1991,7 +2002,8 @@ module Aws
|
|
1991
2002
|
sasl_password: ::String?,
|
1992
2003
|
no_hex_prefix: bool?,
|
1993
2004
|
sasl_mechanism: ("scram-sha-512" | "plain")?,
|
1994
|
-
ssl_endpoint_identification_algorithm: ("none" | "https")
|
2005
|
+
ssl_endpoint_identification_algorithm: ("none" | "https")?,
|
2006
|
+
use_large_integer_value: bool?
|
1995
2007
|
},
|
1996
2008
|
?elasticsearch_settings: {
|
1997
2009
|
service_access_role_arn: ::String,
|
@@ -2066,7 +2078,8 @@ module Aws
|
|
2066
2078
|
map_jsonb_as_clob: bool?,
|
2067
2079
|
map_long_varchar_as: ("wstring" | "clob" | "nclob")?,
|
2068
2080
|
database_mode: ("default" | "babelfish")?,
|
2069
|
-
babelfish_database_name: ::String
|
2081
|
+
babelfish_database_name: ::String?,
|
2082
|
+
disable_unicode_source_filter: bool?
|
2070
2083
|
},
|
2071
2084
|
?my_sql_settings: {
|
2072
2085
|
after_connect_script: ::String?,
|
@@ -2128,7 +2141,8 @@ module Aws
|
|
2128
2141
|
secrets_manager_oracle_asm_secret_id: ::String?,
|
2129
2142
|
trim_space_in_char: bool?,
|
2130
2143
|
convert_timestamp_with_zone_to_utc: bool?,
|
2131
|
-
open_transaction_window: ::Integer
|
2144
|
+
open_transaction_window: ::Integer?,
|
2145
|
+
authentication_method: ("password" | "kerberos")?
|
2132
2146
|
},
|
2133
2147
|
?sybase_settings: {
|
2134
2148
|
database_name: ::String?,
|
@@ -2156,7 +2170,8 @@ module Aws
|
|
2156
2170
|
secrets_manager_secret_id: ::String?,
|
2157
2171
|
trim_space_in_char: bool?,
|
2158
2172
|
tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")?,
|
2159
|
-
force_lob_lookup: bool
|
2173
|
+
force_lob_lookup: bool?,
|
2174
|
+
authentication_method: ("password" | "kerberos")?
|
2160
2175
|
},
|
2161
2176
|
?ibm_db_2_settings: {
|
2162
2177
|
database_name: ::String?,
|
@@ -2334,7 +2349,12 @@ module Aws
|
|
2334
2349
|
?allow_major_version_upgrade: bool,
|
2335
2350
|
?auto_minor_version_upgrade: bool,
|
2336
2351
|
?replication_instance_identifier: ::String,
|
2337
|
-
?network_type: ::String
|
2352
|
+
?network_type: ::String,
|
2353
|
+
?kerberos_authentication_settings: {
|
2354
|
+
key_cache_secret_id: ::String?,
|
2355
|
+
key_cache_secret_iam_arn: ::String?,
|
2356
|
+
krb_5_file_contents: ::String?
|
2357
|
+
}
|
2338
2358
|
) -> _ModifyReplicationInstanceResponseSuccess
|
2339
2359
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReplicationInstanceResponseSuccess
|
2340
2360
|
|
data/sig/types.rbs
CHANGED
@@ -326,6 +326,7 @@ module Aws::DatabaseMigrationService
|
|
326
326
|
attr_accessor dns_name_servers: ::String
|
327
327
|
attr_accessor resource_identifier: ::String
|
328
328
|
attr_accessor network_type: ::String
|
329
|
+
attr_accessor kerberos_authentication_settings: Types::KerberosAuthenticationSettings
|
329
330
|
SENSITIVE: []
|
330
331
|
end
|
331
332
|
|
@@ -1582,9 +1583,17 @@ module Aws::DatabaseMigrationService
|
|
1582
1583
|
attr_accessor no_hex_prefix: bool
|
1583
1584
|
attr_accessor sasl_mechanism: ("scram-sha-512" | "plain")
|
1584
1585
|
attr_accessor ssl_endpoint_identification_algorithm: ("none" | "https")
|
1586
|
+
attr_accessor use_large_integer_value: bool
|
1585
1587
|
SENSITIVE: [:ssl_client_key_password, :sasl_password]
|
1586
1588
|
end
|
1587
1589
|
|
1590
|
+
class KerberosAuthenticationSettings
|
1591
|
+
attr_accessor key_cache_secret_id: ::String
|
1592
|
+
attr_accessor key_cache_secret_iam_arn: ::String
|
1593
|
+
attr_accessor krb_5_file_contents: ::String
|
1594
|
+
SENSITIVE: []
|
1595
|
+
end
|
1596
|
+
|
1588
1597
|
class KinesisSettings
|
1589
1598
|
attr_accessor stream_arn: ::String
|
1590
1599
|
attr_accessor message_format: ("json" | "json-unformatted")
|
@@ -1596,6 +1605,7 @@ module Aws::DatabaseMigrationService
|
|
1596
1605
|
attr_accessor include_control_details: bool
|
1597
1606
|
attr_accessor include_null_and_empty: bool
|
1598
1607
|
attr_accessor no_hex_prefix: bool
|
1608
|
+
attr_accessor use_large_integer_value: bool
|
1599
1609
|
SENSITIVE: []
|
1600
1610
|
end
|
1601
1611
|
|
@@ -1646,6 +1656,7 @@ module Aws::DatabaseMigrationService
|
|
1646
1656
|
attr_accessor trim_space_in_char: bool
|
1647
1657
|
attr_accessor tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")
|
1648
1658
|
attr_accessor force_lob_lookup: bool
|
1659
|
+
attr_accessor authentication_method: ("password" | "kerberos")
|
1649
1660
|
SENSITIVE: [:password]
|
1650
1661
|
end
|
1651
1662
|
|
@@ -1838,6 +1849,7 @@ module Aws::DatabaseMigrationService
|
|
1838
1849
|
attr_accessor auto_minor_version_upgrade: bool
|
1839
1850
|
attr_accessor replication_instance_identifier: ::String
|
1840
1851
|
attr_accessor network_type: ::String
|
1852
|
+
attr_accessor kerberos_authentication_settings: Types::KerberosAuthenticationSettings
|
1841
1853
|
SENSITIVE: []
|
1842
1854
|
end
|
1843
1855
|
|
@@ -2015,6 +2027,7 @@ module Aws::DatabaseMigrationService
|
|
2015
2027
|
attr_accessor trim_space_in_char: bool
|
2016
2028
|
attr_accessor convert_timestamp_with_zone_to_utc: bool
|
2017
2029
|
attr_accessor open_transaction_window: ::Integer
|
2030
|
+
attr_accessor authentication_method: ("password" | "kerberos")
|
2018
2031
|
SENSITIVE: [:asm_password, :password, :security_db_encryption]
|
2019
2032
|
end
|
2020
2033
|
|
@@ -2066,6 +2079,7 @@ module Aws::DatabaseMigrationService
|
|
2066
2079
|
attr_accessor map_long_varchar_as: ("wstring" | "clob" | "nclob")
|
2067
2080
|
attr_accessor database_mode: ("default" | "babelfish")
|
2068
2081
|
attr_accessor babelfish_database_name: ::String
|
2082
|
+
attr_accessor disable_unicode_source_filter: bool
|
2069
2083
|
SENSITIVE: [:password]
|
2070
2084
|
end
|
2071
2085
|
|
@@ -2322,6 +2336,7 @@ module Aws::DatabaseMigrationService
|
|
2322
2336
|
attr_accessor free_until: ::Time
|
2323
2337
|
attr_accessor dns_name_servers: ::String
|
2324
2338
|
attr_accessor network_type: ::String
|
2339
|
+
attr_accessor kerberos_authentication_settings: Types::KerberosAuthenticationSettings
|
2325
2340
|
SENSITIVE: []
|
2326
2341
|
end
|
2327
2342
|
|
@@ -2402,7 +2417,7 @@ module Aws::DatabaseMigrationService
|
|
2402
2417
|
attr_accessor assessment_results_file: ::String
|
2403
2418
|
attr_accessor assessment_results: ::String
|
2404
2419
|
attr_accessor s3_object_url: ::String
|
2405
|
-
SENSITIVE: []
|
2420
|
+
SENSITIVE: [:s3_object_url]
|
2406
2421
|
end
|
2407
2422
|
|
2408
2423
|
class ReplicationTaskAssessmentRun
|