aws-sdk-databasemigrationservice 1.106.0 → 1.108.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +484 -3
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +221 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +2 -1164
- data/lib/aws-sdk-databasemigrationservice/errors.rb +16 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +1 -218
- data/lib/aws-sdk-databasemigrationservice/types.rb +509 -9
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +106 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +133 -0
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -132,6 +132,37 @@ module Aws
|
|
132
132
|
) -> _CancelReplicationTaskAssessmentRunResponseSuccess
|
133
133
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelReplicationTaskAssessmentRunResponseSuccess
|
134
134
|
|
135
|
+
interface _CreateDataMigrationResponseSuccess
|
136
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataMigrationResponse]
|
137
|
+
def data_migration: () -> Types::DataMigration
|
138
|
+
end
|
139
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_data_migration-instance_method
|
140
|
+
def create_data_migration: (
|
141
|
+
?data_migration_name: ::String,
|
142
|
+
migration_project_identifier: ::String,
|
143
|
+
data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc"),
|
144
|
+
service_access_role_arn: ::String,
|
145
|
+
?enable_cloudwatch_logs: bool,
|
146
|
+
?source_data_settings: Array[
|
147
|
+
{
|
148
|
+
cdc_start_position: ::String?,
|
149
|
+
cdc_start_time: ::Time?,
|
150
|
+
cdc_stop_time: ::Time?,
|
151
|
+
slot_name: ::String?
|
152
|
+
},
|
153
|
+
],
|
154
|
+
?number_of_jobs: ::Integer,
|
155
|
+
?tags: Array[
|
156
|
+
{
|
157
|
+
key: ::String?,
|
158
|
+
value: ::String?,
|
159
|
+
resource_arn: ::String?
|
160
|
+
},
|
161
|
+
],
|
162
|
+
?selection_rules: ::String
|
163
|
+
) -> _CreateDataMigrationResponseSuccess
|
164
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataMigrationResponseSuccess
|
165
|
+
|
135
166
|
interface _CreateDataProviderResponseSuccess
|
136
167
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataProviderResponse]
|
137
168
|
def data_provider: () -> Types::DataProvider
|
@@ -809,6 +840,16 @@ module Aws
|
|
809
840
|
) -> _DeleteConnectionResponseSuccess
|
810
841
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
|
811
842
|
|
843
|
+
interface _DeleteDataMigrationResponseSuccess
|
844
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataMigrationResponse]
|
845
|
+
def data_migration: () -> Types::DataMigration
|
846
|
+
end
|
847
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_data_migration-instance_method
|
848
|
+
def delete_data_migration: (
|
849
|
+
data_migration_identifier: ::String
|
850
|
+
) -> _DeleteDataMigrationResponseSuccess
|
851
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataMigrationResponseSuccess
|
852
|
+
|
812
853
|
interface _DeleteDataProviderResponseSuccess
|
813
854
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataProviderResponse]
|
814
855
|
def data_provider: () -> Types::DataProvider
|
@@ -998,6 +1039,26 @@ module Aws
|
|
998
1039
|
) -> _DescribeConversionConfigurationResponseSuccess
|
999
1040
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConversionConfigurationResponseSuccess
|
1000
1041
|
|
1042
|
+
interface _DescribeDataMigrationsResponseSuccess
|
1043
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDataMigrationsResponse]
|
1044
|
+
def data_migrations: () -> ::Array[Types::DataMigration]
|
1045
|
+
def marker: () -> ::String
|
1046
|
+
end
|
1047
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_data_migrations-instance_method
|
1048
|
+
def describe_data_migrations: (
|
1049
|
+
?filters: Array[
|
1050
|
+
{
|
1051
|
+
name: ::String,
|
1052
|
+
values: Array[::String]
|
1053
|
+
},
|
1054
|
+
],
|
1055
|
+
?max_records: ::Integer,
|
1056
|
+
?marker: ::String,
|
1057
|
+
?without_settings: bool,
|
1058
|
+
?without_statistics: bool
|
1059
|
+
) -> _DescribeDataMigrationsResponseSuccess
|
1060
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDataMigrationsResponseSuccess
|
1061
|
+
|
1001
1062
|
interface _DescribeDataProvidersResponseSuccess
|
1002
1063
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDataProvidersResponse]
|
1003
1064
|
def marker: () -> ::String
|
@@ -1710,6 +1771,30 @@ module Aws
|
|
1710
1771
|
) -> _ModifyConversionConfigurationResponseSuccess
|
1711
1772
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyConversionConfigurationResponseSuccess
|
1712
1773
|
|
1774
|
+
interface _ModifyDataMigrationResponseSuccess
|
1775
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyDataMigrationResponse]
|
1776
|
+
def data_migration: () -> Types::DataMigration
|
1777
|
+
end
|
1778
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_data_migration-instance_method
|
1779
|
+
def modify_data_migration: (
|
1780
|
+
data_migration_identifier: ::String,
|
1781
|
+
?data_migration_name: ::String,
|
1782
|
+
?enable_cloudwatch_logs: bool,
|
1783
|
+
?service_access_role_arn: ::String,
|
1784
|
+
?data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc"),
|
1785
|
+
?source_data_settings: Array[
|
1786
|
+
{
|
1787
|
+
cdc_start_position: ::String?,
|
1788
|
+
cdc_start_time: ::Time?,
|
1789
|
+
cdc_stop_time: ::Time?,
|
1790
|
+
slot_name: ::String?
|
1791
|
+
},
|
1792
|
+
],
|
1793
|
+
?number_of_jobs: ::Integer,
|
1794
|
+
?selection_rules: ::String
|
1795
|
+
) -> _ModifyDataMigrationResponseSuccess
|
1796
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDataMigrationResponseSuccess
|
1797
|
+
|
1713
1798
|
interface _ModifyDataProviderResponseSuccess
|
1714
1799
|
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyDataProviderResponse]
|
1715
1800
|
def data_provider: () -> Types::DataProvider
|
@@ -2370,6 +2455,17 @@ module Aws
|
|
2370
2455
|
def run_fleet_advisor_lsa_analysis: () -> _RunFleetAdvisorLsaAnalysisResponseSuccess
|
2371
2456
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RunFleetAdvisorLsaAnalysisResponseSuccess
|
2372
2457
|
|
2458
|
+
interface _StartDataMigrationResponseSuccess
|
2459
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartDataMigrationResponse]
|
2460
|
+
def data_migration: () -> Types::DataMigration
|
2461
|
+
end
|
2462
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_data_migration-instance_method
|
2463
|
+
def start_data_migration: (
|
2464
|
+
data_migration_identifier: ::String,
|
2465
|
+
start_type: ("reload-target" | "resume-processing" | "start-replication")
|
2466
|
+
) -> _StartDataMigrationResponseSuccess
|
2467
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataMigrationResponseSuccess
|
2468
|
+
|
2373
2469
|
interface _StartExtensionPackAssociationResponseSuccess
|
2374
2470
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartExtensionPackAssociationResponse]
|
2375
2471
|
def request_identifier: () -> ::String
|
@@ -2506,6 +2602,16 @@ module Aws
|
|
2506
2602
|
) -> _StartReplicationTaskAssessmentRunResponseSuccess
|
2507
2603
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplicationTaskAssessmentRunResponseSuccess
|
2508
2604
|
|
2605
|
+
interface _StopDataMigrationResponseSuccess
|
2606
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopDataMigrationResponse]
|
2607
|
+
def data_migration: () -> Types::DataMigration
|
2608
|
+
end
|
2609
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#stop_data_migration-instance_method
|
2610
|
+
def stop_data_migration: (
|
2611
|
+
data_migration_identifier: ::String
|
2612
|
+
) -> _StopDataMigrationResponseSuccess
|
2613
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDataMigrationResponseSuccess
|
2614
|
+
|
2509
2615
|
interface _StopReplicationResponseSuccess
|
2510
2616
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopReplicationResponse]
|
2511
2617
|
def replication: () -> Types::Replication
|
data/sig/errors.rbs
CHANGED
@@ -17,6 +17,9 @@ module Aws
|
|
17
17
|
class CollectorNotFoundFault < ::Aws::Errors::ServiceError
|
18
18
|
def message: () -> ::String
|
19
19
|
end
|
20
|
+
class FailedDependencyFault < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
20
23
|
class InsufficientResourceCapacityFault < ::Aws::Errors::ServiceError
|
21
24
|
def message: () -> ::String
|
22
25
|
end
|
data/sig/types.rbs
CHANGED
@@ -146,6 +146,24 @@ module Aws::DatabaseMigrationService
|
|
146
146
|
SENSITIVE: []
|
147
147
|
end
|
148
148
|
|
149
|
+
class CreateDataMigrationMessage
|
150
|
+
attr_accessor data_migration_name: ::String
|
151
|
+
attr_accessor migration_project_identifier: ::String
|
152
|
+
attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
153
|
+
attr_accessor service_access_role_arn: ::String
|
154
|
+
attr_accessor enable_cloudwatch_logs: bool
|
155
|
+
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
156
|
+
attr_accessor number_of_jobs: ::Integer
|
157
|
+
attr_accessor tags: ::Array[Types::Tag]
|
158
|
+
attr_accessor selection_rules: ::String
|
159
|
+
SENSITIVE: [:selection_rules]
|
160
|
+
end
|
161
|
+
|
162
|
+
class CreateDataMigrationResponse
|
163
|
+
attr_accessor data_migration: Types::DataMigration
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
149
167
|
class CreateDataProviderMessage
|
150
168
|
attr_accessor data_provider_name: ::String
|
151
169
|
attr_accessor description: ::String
|
@@ -351,6 +369,45 @@ module Aws::DatabaseMigrationService
|
|
351
369
|
SENSITIVE: []
|
352
370
|
end
|
353
371
|
|
372
|
+
class DataMigration
|
373
|
+
attr_accessor data_migration_name: ::String
|
374
|
+
attr_accessor data_migration_arn: ::String
|
375
|
+
attr_accessor data_migration_create_time: ::Time
|
376
|
+
attr_accessor data_migration_start_time: ::Time
|
377
|
+
attr_accessor data_migration_end_time: ::Time
|
378
|
+
attr_accessor service_access_role_arn: ::String
|
379
|
+
attr_accessor migration_project_arn: ::String
|
380
|
+
attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
381
|
+
attr_accessor data_migration_settings: Types::DataMigrationSettings
|
382
|
+
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
383
|
+
attr_accessor data_migration_statistics: Types::DataMigrationStatistics
|
384
|
+
attr_accessor data_migration_status: ::String
|
385
|
+
attr_accessor public_ip_addresses: ::Array[::String]
|
386
|
+
attr_accessor last_failure_message: ::String
|
387
|
+
attr_accessor stop_reason: ::String
|
388
|
+
SENSITIVE: [:public_ip_addresses]
|
389
|
+
end
|
390
|
+
|
391
|
+
class DataMigrationSettings
|
392
|
+
attr_accessor number_of_jobs: ::Integer
|
393
|
+
attr_accessor cloudwatch_logs_enabled: bool
|
394
|
+
attr_accessor selection_rules: ::String
|
395
|
+
SENSITIVE: [:selection_rules]
|
396
|
+
end
|
397
|
+
|
398
|
+
class DataMigrationStatistics
|
399
|
+
attr_accessor tables_loaded: ::Integer
|
400
|
+
attr_accessor elapsed_time_millis: ::Integer
|
401
|
+
attr_accessor tables_loading: ::Integer
|
402
|
+
attr_accessor full_load_percentage: ::Integer
|
403
|
+
attr_accessor cdc_latency: ::Integer
|
404
|
+
attr_accessor tables_queued: ::Integer
|
405
|
+
attr_accessor tables_errored: ::Integer
|
406
|
+
attr_accessor start_time: ::Time
|
407
|
+
attr_accessor stop_time: ::Time
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
354
411
|
class DataProvider
|
355
412
|
attr_accessor data_provider_name: ::String
|
356
413
|
attr_accessor data_provider_arn: ::String
|
@@ -469,6 +526,16 @@ module Aws::DatabaseMigrationService
|
|
469
526
|
SENSITIVE: []
|
470
527
|
end
|
471
528
|
|
529
|
+
class DeleteDataMigrationMessage
|
530
|
+
attr_accessor data_migration_identifier: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class DeleteDataMigrationResponse
|
535
|
+
attr_accessor data_migration: Types::DataMigration
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
472
539
|
class DeleteDataProviderMessage
|
473
540
|
attr_accessor data_provider_identifier: ::String
|
474
541
|
SENSITIVE: []
|
@@ -640,6 +707,21 @@ module Aws::DatabaseMigrationService
|
|
640
707
|
SENSITIVE: []
|
641
708
|
end
|
642
709
|
|
710
|
+
class DescribeDataMigrationsMessage
|
711
|
+
attr_accessor filters: ::Array[Types::Filter]
|
712
|
+
attr_accessor max_records: ::Integer
|
713
|
+
attr_accessor marker: ::String
|
714
|
+
attr_accessor without_settings: bool
|
715
|
+
attr_accessor without_statistics: bool
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class DescribeDataMigrationsResponse
|
720
|
+
attr_accessor data_migrations: ::Array[Types::DataMigration]
|
721
|
+
attr_accessor marker: ::String
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
643
725
|
class DescribeDataProvidersMessage
|
644
726
|
attr_accessor filters: ::Array[Types::Filter]
|
645
727
|
attr_accessor max_records: ::Integer
|
@@ -1323,6 +1405,11 @@ module Aws::DatabaseMigrationService
|
|
1323
1405
|
SENSITIVE: []
|
1324
1406
|
end
|
1325
1407
|
|
1408
|
+
class FailedDependencyFault
|
1409
|
+
attr_accessor message: ::String
|
1410
|
+
SENSITIVE: []
|
1411
|
+
end
|
1412
|
+
|
1326
1413
|
class Filter
|
1327
1414
|
attr_accessor name: ::String
|
1328
1415
|
attr_accessor values: ::Array[::String]
|
@@ -1595,6 +1682,23 @@ module Aws::DatabaseMigrationService
|
|
1595
1682
|
SENSITIVE: []
|
1596
1683
|
end
|
1597
1684
|
|
1685
|
+
class ModifyDataMigrationMessage
|
1686
|
+
attr_accessor data_migration_identifier: ::String
|
1687
|
+
attr_accessor data_migration_name: ::String
|
1688
|
+
attr_accessor enable_cloudwatch_logs: bool
|
1689
|
+
attr_accessor service_access_role_arn: ::String
|
1690
|
+
attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
1691
|
+
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
1692
|
+
attr_accessor number_of_jobs: ::Integer
|
1693
|
+
attr_accessor selection_rules: ::String
|
1694
|
+
SENSITIVE: [:selection_rules]
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
class ModifyDataMigrationResponse
|
1698
|
+
attr_accessor data_migration: Types::DataMigration
|
1699
|
+
SENSITIVE: []
|
1700
|
+
end
|
1701
|
+
|
1598
1702
|
class ModifyDataProviderMessage
|
1599
1703
|
attr_accessor data_provider_identifier: ::String
|
1600
1704
|
attr_accessor data_provider_name: ::String
|
@@ -2483,6 +2587,25 @@ module Aws::DatabaseMigrationService
|
|
2483
2587
|
SENSITIVE: []
|
2484
2588
|
end
|
2485
2589
|
|
2590
|
+
class SourceDataSetting
|
2591
|
+
attr_accessor cdc_start_position: ::String
|
2592
|
+
attr_accessor cdc_start_time: ::Time
|
2593
|
+
attr_accessor cdc_stop_time: ::Time
|
2594
|
+
attr_accessor slot_name: ::String
|
2595
|
+
SENSITIVE: []
|
2596
|
+
end
|
2597
|
+
|
2598
|
+
class StartDataMigrationMessage
|
2599
|
+
attr_accessor data_migration_identifier: ::String
|
2600
|
+
attr_accessor start_type: ("reload-target" | "resume-processing" | "start-replication")
|
2601
|
+
SENSITIVE: []
|
2602
|
+
end
|
2603
|
+
|
2604
|
+
class StartDataMigrationResponse
|
2605
|
+
attr_accessor data_migration: Types::DataMigration
|
2606
|
+
SENSITIVE: []
|
2607
|
+
end
|
2608
|
+
|
2486
2609
|
class StartExtensionPackAssociationMessage
|
2487
2610
|
attr_accessor migration_project_identifier: ::String
|
2488
2611
|
SENSITIVE: []
|
@@ -2621,6 +2744,16 @@ module Aws::DatabaseMigrationService
|
|
2621
2744
|
SENSITIVE: []
|
2622
2745
|
end
|
2623
2746
|
|
2747
|
+
class StopDataMigrationMessage
|
2748
|
+
attr_accessor data_migration_identifier: ::String
|
2749
|
+
SENSITIVE: []
|
2750
|
+
end
|
2751
|
+
|
2752
|
+
class StopDataMigrationResponse
|
2753
|
+
attr_accessor data_migration: Types::DataMigration
|
2754
|
+
SENSITIVE: []
|
2755
|
+
end
|
2756
|
+
|
2624
2757
|
class StopReplicationMessage
|
2625
2758
|
attr_accessor replication_config_arn: ::String
|
2626
2759
|
SENSITIVE: []
|
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.108.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: 2024-
|
11
|
+
date: 2024-10-18 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.210.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.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|