aws-sdk-databasemigrationservice 1.111.0 → 1.119.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +40 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +259 -39
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +52 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +16 -20
- data/lib/aws-sdk-databasemigrationservice/types.rb +316 -28
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +42 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +51 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -153,6 +153,7 @@ module Aws::DatabaseMigrationService
|
|
153
153
|
attr_accessor service_access_role_arn: ::String
|
154
154
|
attr_accessor enable_cloudwatch_logs: bool
|
155
155
|
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
156
|
+
attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
|
156
157
|
attr_accessor number_of_jobs: ::Integer
|
157
158
|
attr_accessor tags: ::Array[Types::Tag]
|
158
159
|
attr_accessor selection_rules: ::String
|
@@ -381,6 +382,7 @@ module Aws::DatabaseMigrationService
|
|
381
382
|
attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
382
383
|
attr_accessor data_migration_settings: Types::DataMigrationSettings
|
383
384
|
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
385
|
+
attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
|
384
386
|
attr_accessor data_migration_statistics: Types::DataMigrationStatistics
|
385
387
|
attr_accessor data_migration_status: ::String
|
386
388
|
attr_accessor public_ip_addresses: ::Array[::String]
|
@@ -443,6 +445,8 @@ module Aws::DatabaseMigrationService
|
|
443
445
|
attr_accessor microsoft_sql_server_settings: Types::MicrosoftSqlServerDataProviderSettings
|
444
446
|
attr_accessor doc_db_settings: Types::DocDbDataProviderSettings
|
445
447
|
attr_accessor maria_db_settings: Types::MariaDbDataProviderSettings
|
448
|
+
attr_accessor ibm_db_2_luw_settings: Types::IbmDb2LuwDataProviderSettings
|
449
|
+
attr_accessor ibm_db_2z_os_settings: Types::IbmDb2zOsDataProviderSettings
|
446
450
|
attr_accessor mongo_db_settings: Types::MongoDbDataProviderSettings
|
447
451
|
attr_accessor unknown: untyped
|
448
452
|
SENSITIVE: []
|
@@ -461,6 +465,10 @@ module Aws::DatabaseMigrationService
|
|
461
465
|
end
|
462
466
|
class MariaDbSettings < DataProviderSettings
|
463
467
|
end
|
468
|
+
class IbmDb2LuwSettings < DataProviderSettings
|
469
|
+
end
|
470
|
+
class IbmDb2zOsSettings < DataProviderSettings
|
471
|
+
end
|
464
472
|
class MongoDbSettings < DataProviderSettings
|
465
473
|
end
|
466
474
|
class Unknown < DataProviderSettings
|
@@ -658,6 +666,7 @@ module Aws::DatabaseMigrationService
|
|
658
666
|
class DescribeApplicableIndividualAssessmentsMessage
|
659
667
|
attr_accessor replication_task_arn: ::String
|
660
668
|
attr_accessor replication_instance_arn: ::String
|
669
|
+
attr_accessor replication_config_arn: ::String
|
661
670
|
attr_accessor source_engine_name: ::String
|
662
671
|
attr_accessor target_engine_name: ::String
|
663
672
|
attr_accessor migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
@@ -1469,6 +1478,24 @@ module Aws::DatabaseMigrationService
|
|
1469
1478
|
SENSITIVE: [:password]
|
1470
1479
|
end
|
1471
1480
|
|
1481
|
+
class IbmDb2LuwDataProviderSettings
|
1482
|
+
attr_accessor server_name: ::String
|
1483
|
+
attr_accessor port: ::Integer
|
1484
|
+
attr_accessor database_name: ::String
|
1485
|
+
attr_accessor ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")
|
1486
|
+
attr_accessor certificate_arn: ::String
|
1487
|
+
SENSITIVE: []
|
1488
|
+
end
|
1489
|
+
|
1490
|
+
class IbmDb2zOsDataProviderSettings
|
1491
|
+
attr_accessor server_name: ::String
|
1492
|
+
attr_accessor port: ::Integer
|
1493
|
+
attr_accessor database_name: ::String
|
1494
|
+
attr_accessor ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")
|
1495
|
+
attr_accessor certificate_arn: ::String
|
1496
|
+
SENSITIVE: []
|
1497
|
+
end
|
1498
|
+
|
1472
1499
|
class ImportCertificateMessage
|
1473
1500
|
attr_accessor certificate_identifier: ::String
|
1474
1501
|
attr_accessor certificate_pem: ::String
|
@@ -1701,6 +1728,7 @@ module Aws::DatabaseMigrationService
|
|
1701
1728
|
attr_accessor service_access_role_arn: ::String
|
1702
1729
|
attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
1703
1730
|
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
1731
|
+
attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
|
1704
1732
|
attr_accessor number_of_jobs: ::Integer
|
1705
1733
|
attr_accessor selection_rules: ::String
|
1706
1734
|
SENSITIVE: [:selection_rules]
|
@@ -2092,6 +2120,21 @@ module Aws::DatabaseMigrationService
|
|
2092
2120
|
SENSITIVE: []
|
2093
2121
|
end
|
2094
2122
|
|
2123
|
+
class PremigrationAssessmentStatus
|
2124
|
+
attr_accessor premigration_assessment_run_arn: ::String
|
2125
|
+
attr_accessor fail_on_assessment_failure: bool
|
2126
|
+
attr_accessor status: ::String
|
2127
|
+
attr_accessor premigration_assessment_run_creation_date: ::Time
|
2128
|
+
attr_accessor assessment_progress: Types::ReplicationTaskAssessmentRunProgress
|
2129
|
+
attr_accessor last_failure_message: ::String
|
2130
|
+
attr_accessor result_location_bucket: ::String
|
2131
|
+
attr_accessor result_location_folder: ::String
|
2132
|
+
attr_accessor result_encryption_mode: ::String
|
2133
|
+
attr_accessor result_kms_key_arn: ::String
|
2134
|
+
attr_accessor result_statistic: Types::ReplicationTaskAssessmentRunResultStatistic
|
2135
|
+
SENSITIVE: []
|
2136
|
+
end
|
2137
|
+
|
2095
2138
|
class ProvisionData
|
2096
2139
|
attr_accessor provision_state: ::String
|
2097
2140
|
attr_accessor provisioned_capacity_units: ::Integer
|
@@ -2280,6 +2323,7 @@ module Aws::DatabaseMigrationService
|
|
2280
2323
|
attr_accessor replication_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
2281
2324
|
attr_accessor status: ::String
|
2282
2325
|
attr_accessor provision_data: Types::ProvisionData
|
2326
|
+
attr_accessor premigration_assessment_statuses: ::Array[Types::PremigrationAssessmentStatus]
|
2283
2327
|
attr_accessor stop_reason: ::String
|
2284
2328
|
attr_accessor failure_messages: ::Array[::String]
|
2285
2329
|
attr_accessor replication_stats: Types::ReplicationStats
|
@@ -2450,6 +2494,7 @@ module Aws::DatabaseMigrationService
|
|
2450
2494
|
attr_accessor error: ::Integer
|
2451
2495
|
attr_accessor warning: ::Integer
|
2452
2496
|
attr_accessor cancelled: ::Integer
|
2497
|
+
attr_accessor skipped: ::Integer
|
2453
2498
|
SENSITIVE: []
|
2454
2499
|
end
|
2455
2500
|
|
@@ -2718,6 +2763,7 @@ module Aws::DatabaseMigrationService
|
|
2718
2763
|
class StartReplicationMessage
|
2719
2764
|
attr_accessor replication_config_arn: ::String
|
2720
2765
|
attr_accessor start_replication_type: ::String
|
2766
|
+
attr_accessor premigration_assessment_settings: ::String
|
2721
2767
|
attr_accessor cdc_start_time: ::Time
|
2722
2768
|
attr_accessor cdc_start_position: ::String
|
2723
2769
|
attr_accessor cdc_stop_position: ::String
|
@@ -2879,6 +2925,11 @@ module Aws::DatabaseMigrationService
|
|
2879
2925
|
SENSITIVE: []
|
2880
2926
|
end
|
2881
2927
|
|
2928
|
+
class TargetDataSetting
|
2929
|
+
attr_accessor table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")
|
2930
|
+
SENSITIVE: []
|
2931
|
+
end
|
2932
|
+
|
2882
2933
|
class TestConnectionMessage
|
2883
2934
|
attr_accessor replication_instance_arn: ::String
|
2884
2935
|
attr_accessor endpoint_arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-databasemigrationservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.119.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|