aws-sdk-databasemigrationservice 1.132.0 → 1.134.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 +456 -13
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +207 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +512 -7
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +117 -2
- data/sig/types.rbs +142 -1
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -125,6 +125,28 @@ module Aws
|
|
|
125
125
|
) -> _BatchStartRecommendationsResponseSuccess
|
|
126
126
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchStartRecommendationsResponseSuccess
|
|
127
127
|
|
|
128
|
+
interface _CancelMetadataModelConversionResponseSuccess
|
|
129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelMetadataModelConversionResponse]
|
|
130
|
+
def request: () -> Types::SchemaConversionRequest
|
|
131
|
+
end
|
|
132
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#cancel_metadata_model_conversion-instance_method
|
|
133
|
+
def cancel_metadata_model_conversion: (
|
|
134
|
+
migration_project_identifier: ::String,
|
|
135
|
+
request_identifier: ::String
|
|
136
|
+
) -> _CancelMetadataModelConversionResponseSuccess
|
|
137
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelMetadataModelConversionResponseSuccess
|
|
138
|
+
|
|
139
|
+
interface _CancelMetadataModelCreationResponseSuccess
|
|
140
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelMetadataModelCreationResponse]
|
|
141
|
+
def request: () -> Types::SchemaConversionRequest
|
|
142
|
+
end
|
|
143
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#cancel_metadata_model_creation-instance_method
|
|
144
|
+
def cancel_metadata_model_creation: (
|
|
145
|
+
migration_project_identifier: ::String,
|
|
146
|
+
request_identifier: ::String
|
|
147
|
+
) -> _CancelMetadataModelCreationResponseSuccess
|
|
148
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelMetadataModelCreationResponseSuccess
|
|
149
|
+
|
|
128
150
|
interface _CancelReplicationTaskAssessmentRunResponseSuccess
|
|
129
151
|
include ::Seahorse::Client::_ResponseSuccess[Types::CancelReplicationTaskAssessmentRunResponse]
|
|
130
152
|
def replication_task_assessment_run: () -> Types::ReplicationTaskAssessmentRun
|
|
@@ -156,7 +178,7 @@ module Aws
|
|
|
156
178
|
],
|
|
157
179
|
?target_data_settings: Array[
|
|
158
180
|
{
|
|
159
|
-
table_preparation_mode: ("
|
|
181
|
+
table_preparation_mode: ("drop-tables-on-target" | "truncate" | "do-nothing")?
|
|
160
182
|
},
|
|
161
183
|
],
|
|
162
184
|
?number_of_jobs: ::Integer,
|
|
@@ -220,6 +242,14 @@ module Aws
|
|
|
220
242
|
s3_path: ::String?,
|
|
221
243
|
s3_access_role_arn: ::String?
|
|
222
244
|
}?,
|
|
245
|
+
sybase_ase_settings: {
|
|
246
|
+
server_name: ::String?,
|
|
247
|
+
port: ::Integer?,
|
|
248
|
+
database_name: ::String?,
|
|
249
|
+
ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
|
|
250
|
+
encrypt_password: bool?,
|
|
251
|
+
certificate_arn: ::String?
|
|
252
|
+
}?,
|
|
223
253
|
microsoft_sql_server_settings: {
|
|
224
254
|
server_name: ::String?,
|
|
225
255
|
port: ::Integer?,
|
|
@@ -1372,6 +1402,21 @@ module Aws
|
|
|
1372
1402
|
) -> _DescribeInstanceProfilesResponseSuccess
|
|
1373
1403
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceProfilesResponseSuccess
|
|
1374
1404
|
|
|
1405
|
+
interface _DescribeMetadataModelResponseSuccess
|
|
1406
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelResponse]
|
|
1407
|
+
def metadata_model_name: () -> ::String
|
|
1408
|
+
def metadata_model_type: () -> ::String
|
|
1409
|
+
def target_metadata_models: () -> ::Array[Types::MetadataModelReference]
|
|
1410
|
+
def definition: () -> ::String
|
|
1411
|
+
end
|
|
1412
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model-instance_method
|
|
1413
|
+
def describe_metadata_model: (
|
|
1414
|
+
selection_rules: ::String,
|
|
1415
|
+
migration_project_identifier: ::String,
|
|
1416
|
+
origin: ("SOURCE" | "TARGET")
|
|
1417
|
+
) -> _DescribeMetadataModelResponseSuccess
|
|
1418
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelResponseSuccess
|
|
1419
|
+
|
|
1375
1420
|
interface _DescribeMetadataModelAssessmentsResponseSuccess
|
|
1376
1421
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelAssessmentsResponse]
|
|
1377
1422
|
def marker: () -> ::String
|
|
@@ -1391,6 +1436,21 @@ module Aws
|
|
|
1391
1436
|
) -> _DescribeMetadataModelAssessmentsResponseSuccess
|
|
1392
1437
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelAssessmentsResponseSuccess
|
|
1393
1438
|
|
|
1439
|
+
interface _DescribeMetadataModelChildrenResponseSuccess
|
|
1440
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelChildrenResponse]
|
|
1441
|
+
def marker: () -> ::String
|
|
1442
|
+
def metadata_model_children: () -> ::Array[Types::MetadataModelReference]
|
|
1443
|
+
end
|
|
1444
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_children-instance_method
|
|
1445
|
+
def describe_metadata_model_children: (
|
|
1446
|
+
selection_rules: ::String,
|
|
1447
|
+
migration_project_identifier: ::String,
|
|
1448
|
+
origin: ("SOURCE" | "TARGET"),
|
|
1449
|
+
?marker: ::String,
|
|
1450
|
+
?max_records: ::Integer
|
|
1451
|
+
) -> _DescribeMetadataModelChildrenResponseSuccess
|
|
1452
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelChildrenResponseSuccess
|
|
1453
|
+
|
|
1394
1454
|
interface _DescribeMetadataModelConversionsResponseSuccess
|
|
1395
1455
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelConversionsResponse]
|
|
1396
1456
|
def marker: () -> ::String
|
|
@@ -1410,6 +1470,25 @@ module Aws
|
|
|
1410
1470
|
) -> _DescribeMetadataModelConversionsResponseSuccess
|
|
1411
1471
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelConversionsResponseSuccess
|
|
1412
1472
|
|
|
1473
|
+
interface _DescribeMetadataModelCreationsResponseSuccess
|
|
1474
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelCreationsResponse]
|
|
1475
|
+
def marker: () -> ::String
|
|
1476
|
+
def requests: () -> ::Array[Types::SchemaConversionRequest]
|
|
1477
|
+
end
|
|
1478
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_creations-instance_method
|
|
1479
|
+
def describe_metadata_model_creations: (
|
|
1480
|
+
?filters: Array[
|
|
1481
|
+
{
|
|
1482
|
+
name: ::String,
|
|
1483
|
+
values: Array[::String]
|
|
1484
|
+
},
|
|
1485
|
+
],
|
|
1486
|
+
?marker: ::String,
|
|
1487
|
+
?max_records: ::Integer,
|
|
1488
|
+
migration_project_identifier: ::String
|
|
1489
|
+
) -> _DescribeMetadataModelCreationsResponseSuccess
|
|
1490
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelCreationsResponseSuccess
|
|
1491
|
+
|
|
1413
1492
|
interface _DescribeMetadataModelExportsAsScriptResponseSuccess
|
|
1414
1493
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelExportsAsScriptResponse]
|
|
1415
1494
|
def marker: () -> ::String
|
|
@@ -1784,6 +1863,17 @@ module Aws
|
|
|
1784
1863
|
) -> _ExportMetadataModelAssessmentResponseSuccess
|
|
1785
1864
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportMetadataModelAssessmentResponseSuccess
|
|
1786
1865
|
|
|
1866
|
+
interface _GetTargetSelectionRulesResponseSuccess
|
|
1867
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTargetSelectionRulesResponse]
|
|
1868
|
+
def target_selection_rules: () -> ::String
|
|
1869
|
+
end
|
|
1870
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#get_target_selection_rules-instance_method
|
|
1871
|
+
def get_target_selection_rules: (
|
|
1872
|
+
migration_project_identifier: ::String,
|
|
1873
|
+
selection_rules: ::String
|
|
1874
|
+
) -> _GetTargetSelectionRulesResponseSuccess
|
|
1875
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTargetSelectionRulesResponseSuccess
|
|
1876
|
+
|
|
1787
1877
|
interface _ImportCertificateResponseSuccess
|
|
1788
1878
|
include ::Seahorse::Client::_ResponseSuccess[Types::ImportCertificateResponse]
|
|
1789
1879
|
def certificate: () -> Types::Certificate
|
|
@@ -1846,7 +1936,7 @@ module Aws
|
|
|
1846
1936
|
],
|
|
1847
1937
|
?target_data_settings: Array[
|
|
1848
1938
|
{
|
|
1849
|
-
table_preparation_mode: ("
|
|
1939
|
+
table_preparation_mode: ("drop-tables-on-target" | "truncate" | "do-nothing")?
|
|
1850
1940
|
},
|
|
1851
1941
|
],
|
|
1852
1942
|
?number_of_jobs: ::Integer,
|
|
@@ -1905,6 +1995,14 @@ module Aws
|
|
|
1905
1995
|
s3_path: ::String?,
|
|
1906
1996
|
s3_access_role_arn: ::String?
|
|
1907
1997
|
}?,
|
|
1998
|
+
sybase_ase_settings: {
|
|
1999
|
+
server_name: ::String?,
|
|
2000
|
+
port: ::Integer?,
|
|
2001
|
+
database_name: ::String?,
|
|
2002
|
+
ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
|
|
2003
|
+
encrypt_password: bool?,
|
|
2004
|
+
certificate_arn: ::String?
|
|
2005
|
+
}?,
|
|
1908
2006
|
microsoft_sql_server_settings: {
|
|
1909
2007
|
server_name: ::String?,
|
|
1910
2008
|
port: ::Integer?,
|
|
@@ -2602,6 +2700,23 @@ module Aws
|
|
|
2602
2700
|
) -> _StartMetadataModelConversionResponseSuccess
|
|
2603
2701
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelConversionResponseSuccess
|
|
2604
2702
|
|
|
2703
|
+
interface _StartMetadataModelCreationResponseSuccess
|
|
2704
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelCreationResponse]
|
|
2705
|
+
def request_identifier: () -> ::String
|
|
2706
|
+
end
|
|
2707
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_metadata_model_creation-instance_method
|
|
2708
|
+
def start_metadata_model_creation: (
|
|
2709
|
+
migration_project_identifier: ::String,
|
|
2710
|
+
selection_rules: ::String,
|
|
2711
|
+
metadata_model_name: ::String,
|
|
2712
|
+
properties: {
|
|
2713
|
+
statement_properties: {
|
|
2714
|
+
definition: ::String
|
|
2715
|
+
}?
|
|
2716
|
+
}
|
|
2717
|
+
) -> _StartMetadataModelCreationResponseSuccess
|
|
2718
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelCreationResponseSuccess
|
|
2719
|
+
|
|
2605
2720
|
interface _StartMetadataModelExportAsScriptResponseSuccess
|
|
2606
2721
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelExportAsScriptResponse]
|
|
2607
2722
|
def request_identifier: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -63,6 +63,28 @@ module Aws::DatabaseMigrationService
|
|
|
63
63
|
SENSITIVE: []
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
+
class CancelMetadataModelConversionMessage
|
|
67
|
+
attr_accessor migration_project_identifier: ::String
|
|
68
|
+
attr_accessor request_identifier: ::String
|
|
69
|
+
SENSITIVE: []
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class CancelMetadataModelConversionResponse
|
|
73
|
+
attr_accessor request: Types::SchemaConversionRequest
|
|
74
|
+
SENSITIVE: []
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
class CancelMetadataModelCreationMessage
|
|
78
|
+
attr_accessor migration_project_identifier: ::String
|
|
79
|
+
attr_accessor request_identifier: ::String
|
|
80
|
+
SENSITIVE: []
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
class CancelMetadataModelCreationResponse
|
|
84
|
+
attr_accessor request: Types::SchemaConversionRequest
|
|
85
|
+
SENSITIVE: []
|
|
86
|
+
end
|
|
87
|
+
|
|
66
88
|
class CancelReplicationTaskAssessmentRunMessage
|
|
67
89
|
attr_accessor replication_task_assessment_run_arn: ::String
|
|
68
90
|
SENSITIVE: []
|
|
@@ -444,6 +466,7 @@ module Aws::DatabaseMigrationService
|
|
|
444
466
|
attr_accessor postgre_sql_settings: Types::PostgreSqlDataProviderSettings
|
|
445
467
|
attr_accessor my_sql_settings: Types::MySqlDataProviderSettings
|
|
446
468
|
attr_accessor oracle_settings: Types::OracleDataProviderSettings
|
|
469
|
+
attr_accessor sybase_ase_settings: Types::SybaseAseDataProviderSettings
|
|
447
470
|
attr_accessor microsoft_sql_server_settings: Types::MicrosoftSqlServerDataProviderSettings
|
|
448
471
|
attr_accessor doc_db_settings: Types::DocDbDataProviderSettings
|
|
449
472
|
attr_accessor maria_db_settings: Types::MariaDbDataProviderSettings
|
|
@@ -461,6 +484,8 @@ module Aws::DatabaseMigrationService
|
|
|
461
484
|
end
|
|
462
485
|
class OracleSettings < DataProviderSettings
|
|
463
486
|
end
|
|
487
|
+
class SybaseAseSettings < DataProviderSettings
|
|
488
|
+
end
|
|
464
489
|
class MicrosoftSqlServerSettings < DataProviderSettings
|
|
465
490
|
end
|
|
466
491
|
class DocDbSettings < DataProviderSettings
|
|
@@ -948,6 +973,21 @@ module Aws::DatabaseMigrationService
|
|
|
948
973
|
SENSITIVE: []
|
|
949
974
|
end
|
|
950
975
|
|
|
976
|
+
class DescribeMetadataModelChildrenMessage
|
|
977
|
+
attr_accessor selection_rules: ::String
|
|
978
|
+
attr_accessor migration_project_identifier: ::String
|
|
979
|
+
attr_accessor origin: ("SOURCE" | "TARGET")
|
|
980
|
+
attr_accessor marker: ::String
|
|
981
|
+
attr_accessor max_records: ::Integer
|
|
982
|
+
SENSITIVE: []
|
|
983
|
+
end
|
|
984
|
+
|
|
985
|
+
class DescribeMetadataModelChildrenResponse
|
|
986
|
+
attr_accessor marker: ::String
|
|
987
|
+
attr_accessor metadata_model_children: ::Array[Types::MetadataModelReference]
|
|
988
|
+
SENSITIVE: []
|
|
989
|
+
end
|
|
990
|
+
|
|
951
991
|
class DescribeMetadataModelConversionsMessage
|
|
952
992
|
attr_accessor migration_project_identifier: ::String
|
|
953
993
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -962,6 +1002,20 @@ module Aws::DatabaseMigrationService
|
|
|
962
1002
|
SENSITIVE: []
|
|
963
1003
|
end
|
|
964
1004
|
|
|
1005
|
+
class DescribeMetadataModelCreationsMessage
|
|
1006
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
1007
|
+
attr_accessor marker: ::String
|
|
1008
|
+
attr_accessor max_records: ::Integer
|
|
1009
|
+
attr_accessor migration_project_identifier: ::String
|
|
1010
|
+
SENSITIVE: []
|
|
1011
|
+
end
|
|
1012
|
+
|
|
1013
|
+
class DescribeMetadataModelCreationsResponse
|
|
1014
|
+
attr_accessor marker: ::String
|
|
1015
|
+
attr_accessor requests: ::Array[Types::SchemaConversionRequest]
|
|
1016
|
+
SENSITIVE: []
|
|
1017
|
+
end
|
|
1018
|
+
|
|
965
1019
|
class DescribeMetadataModelExportsAsScriptMessage
|
|
966
1020
|
attr_accessor migration_project_identifier: ::String
|
|
967
1021
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -1004,6 +1058,21 @@ module Aws::DatabaseMigrationService
|
|
|
1004
1058
|
SENSITIVE: []
|
|
1005
1059
|
end
|
|
1006
1060
|
|
|
1061
|
+
class DescribeMetadataModelMessage
|
|
1062
|
+
attr_accessor selection_rules: ::String
|
|
1063
|
+
attr_accessor migration_project_identifier: ::String
|
|
1064
|
+
attr_accessor origin: ("SOURCE" | "TARGET")
|
|
1065
|
+
SENSITIVE: []
|
|
1066
|
+
end
|
|
1067
|
+
|
|
1068
|
+
class DescribeMetadataModelResponse
|
|
1069
|
+
attr_accessor metadata_model_name: ::String
|
|
1070
|
+
attr_accessor metadata_model_type: ::String
|
|
1071
|
+
attr_accessor target_metadata_models: ::Array[Types::MetadataModelReference]
|
|
1072
|
+
attr_accessor definition: ::String
|
|
1073
|
+
SENSITIVE: []
|
|
1074
|
+
end
|
|
1075
|
+
|
|
1007
1076
|
class DescribeMigrationProjectsMessage
|
|
1008
1077
|
attr_accessor filters: ::Array[Types::Filter]
|
|
1009
1078
|
attr_accessor max_records: ::Integer
|
|
@@ -1462,6 +1531,17 @@ module Aws::DatabaseMigrationService
|
|
|
1462
1531
|
SENSITIVE: [:password]
|
|
1463
1532
|
end
|
|
1464
1533
|
|
|
1534
|
+
class GetTargetSelectionRulesMessage
|
|
1535
|
+
attr_accessor migration_project_identifier: ::String
|
|
1536
|
+
attr_accessor selection_rules: ::String
|
|
1537
|
+
SENSITIVE: []
|
|
1538
|
+
end
|
|
1539
|
+
|
|
1540
|
+
class GetTargetSelectionRulesResponse
|
|
1541
|
+
attr_accessor target_selection_rules: ::String
|
|
1542
|
+
SENSITIVE: []
|
|
1543
|
+
end
|
|
1544
|
+
|
|
1465
1545
|
class IBMDb2Settings
|
|
1466
1546
|
attr_accessor database_name: ::String
|
|
1467
1547
|
attr_accessor password: ::String
|
|
@@ -1673,6 +1753,23 @@ module Aws::DatabaseMigrationService
|
|
|
1673
1753
|
SENSITIVE: []
|
|
1674
1754
|
end
|
|
1675
1755
|
|
|
1756
|
+
class MetadataModelProperties
|
|
1757
|
+
attr_accessor statement_properties: Types::StatementProperties
|
|
1758
|
+
attr_accessor unknown: untyped
|
|
1759
|
+
SENSITIVE: []
|
|
1760
|
+
|
|
1761
|
+
class StatementProperties < MetadataModelProperties
|
|
1762
|
+
end
|
|
1763
|
+
class Unknown < MetadataModelProperties
|
|
1764
|
+
end
|
|
1765
|
+
end
|
|
1766
|
+
|
|
1767
|
+
class MetadataModelReference
|
|
1768
|
+
attr_accessor metadata_model_name: ::String
|
|
1769
|
+
attr_accessor selection_rules: ::String
|
|
1770
|
+
SENSITIVE: []
|
|
1771
|
+
end
|
|
1772
|
+
|
|
1676
1773
|
class MicrosoftSQLServerSettings
|
|
1677
1774
|
attr_accessor port: ::Integer
|
|
1678
1775
|
attr_accessor bcp_packet_size: ::Integer
|
|
@@ -2156,6 +2253,21 @@ module Aws::DatabaseMigrationService
|
|
|
2156
2253
|
SENSITIVE: []
|
|
2157
2254
|
end
|
|
2158
2255
|
|
|
2256
|
+
class ProcessedObject
|
|
2257
|
+
attr_accessor name: ::String
|
|
2258
|
+
attr_accessor type: ::String
|
|
2259
|
+
attr_accessor endpoint_type: ::String
|
|
2260
|
+
SENSITIVE: []
|
|
2261
|
+
end
|
|
2262
|
+
|
|
2263
|
+
class Progress
|
|
2264
|
+
attr_accessor progress_percent: ::Float
|
|
2265
|
+
attr_accessor total_objects: ::Integer
|
|
2266
|
+
attr_accessor progress_step: ::String
|
|
2267
|
+
attr_accessor processed_object: Types::ProcessedObject
|
|
2268
|
+
SENSITIVE: []
|
|
2269
|
+
end
|
|
2270
|
+
|
|
2159
2271
|
class ProvisionData
|
|
2160
2272
|
attr_accessor provision_state: ::String
|
|
2161
2273
|
attr_accessor provisioned_capacity_units: ::Integer
|
|
@@ -2650,6 +2762,7 @@ module Aws::DatabaseMigrationService
|
|
|
2650
2762
|
attr_accessor migration_project_arn: ::String
|
|
2651
2763
|
attr_accessor error: Types::ErrorDetails
|
|
2652
2764
|
attr_accessor export_sql_details: Types::ExportSqlDetails
|
|
2765
|
+
attr_accessor progress: Types::Progress
|
|
2653
2766
|
SENSITIVE: []
|
|
2654
2767
|
end
|
|
2655
2768
|
|
|
@@ -2733,6 +2846,19 @@ module Aws::DatabaseMigrationService
|
|
|
2733
2846
|
SENSITIVE: []
|
|
2734
2847
|
end
|
|
2735
2848
|
|
|
2849
|
+
class StartMetadataModelCreationMessage
|
|
2850
|
+
attr_accessor migration_project_identifier: ::String
|
|
2851
|
+
attr_accessor selection_rules: ::String
|
|
2852
|
+
attr_accessor metadata_model_name: ::String
|
|
2853
|
+
attr_accessor properties: Types::MetadataModelProperties
|
|
2854
|
+
SENSITIVE: []
|
|
2855
|
+
end
|
|
2856
|
+
|
|
2857
|
+
class StartMetadataModelCreationResponse
|
|
2858
|
+
attr_accessor request_identifier: ::String
|
|
2859
|
+
SENSITIVE: []
|
|
2860
|
+
end
|
|
2861
|
+
|
|
2736
2862
|
class StartMetadataModelExportAsScriptMessage
|
|
2737
2863
|
attr_accessor migration_project_identifier: ::String
|
|
2738
2864
|
attr_accessor selection_rules: ::String
|
|
@@ -2841,6 +2967,11 @@ module Aws::DatabaseMigrationService
|
|
|
2841
2967
|
SENSITIVE: []
|
|
2842
2968
|
end
|
|
2843
2969
|
|
|
2970
|
+
class StatementProperties
|
|
2971
|
+
attr_accessor definition: ::String
|
|
2972
|
+
SENSITIVE: []
|
|
2973
|
+
end
|
|
2974
|
+
|
|
2844
2975
|
class StopDataMigrationMessage
|
|
2845
2976
|
attr_accessor data_migration_identifier: ::String
|
|
2846
2977
|
SENSITIVE: []
|
|
@@ -2897,6 +3028,16 @@ module Aws::DatabaseMigrationService
|
|
|
2897
3028
|
SENSITIVE: []
|
|
2898
3029
|
end
|
|
2899
3030
|
|
|
3031
|
+
class SybaseAseDataProviderSettings
|
|
3032
|
+
attr_accessor server_name: ::String
|
|
3033
|
+
attr_accessor port: ::Integer
|
|
3034
|
+
attr_accessor database_name: ::String
|
|
3035
|
+
attr_accessor ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")
|
|
3036
|
+
attr_accessor encrypt_password: bool
|
|
3037
|
+
attr_accessor certificate_arn: ::String
|
|
3038
|
+
SENSITIVE: []
|
|
3039
|
+
end
|
|
3040
|
+
|
|
2900
3041
|
class SybaseSettings
|
|
2901
3042
|
attr_accessor database_name: ::String
|
|
2902
3043
|
attr_accessor password: ::String
|
|
@@ -2954,7 +3095,7 @@ module Aws::DatabaseMigrationService
|
|
|
2954
3095
|
end
|
|
2955
3096
|
|
|
2956
3097
|
class TargetDataSetting
|
|
2957
|
-
attr_accessor table_preparation_mode: ("
|
|
3098
|
+
attr_accessor table_preparation_mode: ("drop-tables-on-target" | "truncate" | "do-nothing")
|
|
2958
3099
|
SENSITIVE: []
|
|
2959
3100
|
end
|
|
2960
3101
|
|