aws-sdk-databasemigrationservice 1.132.0 → 1.133.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +358 -9
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +182 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +374 -0
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +101 -2
- data/sig/types.rbs +113 -1
- metadata +1 -1
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: []
|
|
@@ -948,6 +970,21 @@ module Aws::DatabaseMigrationService
|
|
|
948
970
|
SENSITIVE: []
|
|
949
971
|
end
|
|
950
972
|
|
|
973
|
+
class DescribeMetadataModelChildrenMessage
|
|
974
|
+
attr_accessor selection_rules: ::String
|
|
975
|
+
attr_accessor migration_project_identifier: ::String
|
|
976
|
+
attr_accessor origin: ("SOURCE" | "TARGET")
|
|
977
|
+
attr_accessor marker: ::String
|
|
978
|
+
attr_accessor max_records: ::Integer
|
|
979
|
+
SENSITIVE: []
|
|
980
|
+
end
|
|
981
|
+
|
|
982
|
+
class DescribeMetadataModelChildrenResponse
|
|
983
|
+
attr_accessor marker: ::String
|
|
984
|
+
attr_accessor metadata_model_children: ::Array[Types::MetadataModelReference]
|
|
985
|
+
SENSITIVE: []
|
|
986
|
+
end
|
|
987
|
+
|
|
951
988
|
class DescribeMetadataModelConversionsMessage
|
|
952
989
|
attr_accessor migration_project_identifier: ::String
|
|
953
990
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -962,6 +999,20 @@ module Aws::DatabaseMigrationService
|
|
|
962
999
|
SENSITIVE: []
|
|
963
1000
|
end
|
|
964
1001
|
|
|
1002
|
+
class DescribeMetadataModelCreationsMessage
|
|
1003
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
1004
|
+
attr_accessor marker: ::String
|
|
1005
|
+
attr_accessor max_records: ::Integer
|
|
1006
|
+
attr_accessor migration_project_identifier: ::String
|
|
1007
|
+
SENSITIVE: []
|
|
1008
|
+
end
|
|
1009
|
+
|
|
1010
|
+
class DescribeMetadataModelCreationsResponse
|
|
1011
|
+
attr_accessor marker: ::String
|
|
1012
|
+
attr_accessor requests: ::Array[Types::SchemaConversionRequest]
|
|
1013
|
+
SENSITIVE: []
|
|
1014
|
+
end
|
|
1015
|
+
|
|
965
1016
|
class DescribeMetadataModelExportsAsScriptMessage
|
|
966
1017
|
attr_accessor migration_project_identifier: ::String
|
|
967
1018
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -1004,6 +1055,21 @@ module Aws::DatabaseMigrationService
|
|
|
1004
1055
|
SENSITIVE: []
|
|
1005
1056
|
end
|
|
1006
1057
|
|
|
1058
|
+
class DescribeMetadataModelMessage
|
|
1059
|
+
attr_accessor selection_rules: ::String
|
|
1060
|
+
attr_accessor migration_project_identifier: ::String
|
|
1061
|
+
attr_accessor origin: ("SOURCE" | "TARGET")
|
|
1062
|
+
SENSITIVE: []
|
|
1063
|
+
end
|
|
1064
|
+
|
|
1065
|
+
class DescribeMetadataModelResponse
|
|
1066
|
+
attr_accessor metadata_model_name: ::String
|
|
1067
|
+
attr_accessor metadata_model_type: ::String
|
|
1068
|
+
attr_accessor target_metadata_models: ::Array[Types::MetadataModelReference]
|
|
1069
|
+
attr_accessor definition: ::String
|
|
1070
|
+
SENSITIVE: []
|
|
1071
|
+
end
|
|
1072
|
+
|
|
1007
1073
|
class DescribeMigrationProjectsMessage
|
|
1008
1074
|
attr_accessor filters: ::Array[Types::Filter]
|
|
1009
1075
|
attr_accessor max_records: ::Integer
|
|
@@ -1462,6 +1528,17 @@ module Aws::DatabaseMigrationService
|
|
|
1462
1528
|
SENSITIVE: [:password]
|
|
1463
1529
|
end
|
|
1464
1530
|
|
|
1531
|
+
class GetTargetSelectionRulesMessage
|
|
1532
|
+
attr_accessor migration_project_identifier: ::String
|
|
1533
|
+
attr_accessor selection_rules: ::String
|
|
1534
|
+
SENSITIVE: []
|
|
1535
|
+
end
|
|
1536
|
+
|
|
1537
|
+
class GetTargetSelectionRulesResponse
|
|
1538
|
+
attr_accessor target_selection_rules: ::String
|
|
1539
|
+
SENSITIVE: []
|
|
1540
|
+
end
|
|
1541
|
+
|
|
1465
1542
|
class IBMDb2Settings
|
|
1466
1543
|
attr_accessor database_name: ::String
|
|
1467
1544
|
attr_accessor password: ::String
|
|
@@ -1673,6 +1750,23 @@ module Aws::DatabaseMigrationService
|
|
|
1673
1750
|
SENSITIVE: []
|
|
1674
1751
|
end
|
|
1675
1752
|
|
|
1753
|
+
class MetadataModelProperties
|
|
1754
|
+
attr_accessor statement_properties: Types::StatementProperties
|
|
1755
|
+
attr_accessor unknown: untyped
|
|
1756
|
+
SENSITIVE: []
|
|
1757
|
+
|
|
1758
|
+
class StatementProperties < MetadataModelProperties
|
|
1759
|
+
end
|
|
1760
|
+
class Unknown < MetadataModelProperties
|
|
1761
|
+
end
|
|
1762
|
+
end
|
|
1763
|
+
|
|
1764
|
+
class MetadataModelReference
|
|
1765
|
+
attr_accessor metadata_model_name: ::String
|
|
1766
|
+
attr_accessor selection_rules: ::String
|
|
1767
|
+
SENSITIVE: []
|
|
1768
|
+
end
|
|
1769
|
+
|
|
1676
1770
|
class MicrosoftSQLServerSettings
|
|
1677
1771
|
attr_accessor port: ::Integer
|
|
1678
1772
|
attr_accessor bcp_packet_size: ::Integer
|
|
@@ -2733,6 +2827,19 @@ module Aws::DatabaseMigrationService
|
|
|
2733
2827
|
SENSITIVE: []
|
|
2734
2828
|
end
|
|
2735
2829
|
|
|
2830
|
+
class StartMetadataModelCreationMessage
|
|
2831
|
+
attr_accessor migration_project_identifier: ::String
|
|
2832
|
+
attr_accessor selection_rules: ::String
|
|
2833
|
+
attr_accessor metadata_model_name: ::String
|
|
2834
|
+
attr_accessor properties: Types::MetadataModelProperties
|
|
2835
|
+
SENSITIVE: []
|
|
2836
|
+
end
|
|
2837
|
+
|
|
2838
|
+
class StartMetadataModelCreationResponse
|
|
2839
|
+
attr_accessor request_identifier: ::String
|
|
2840
|
+
SENSITIVE: []
|
|
2841
|
+
end
|
|
2842
|
+
|
|
2736
2843
|
class StartMetadataModelExportAsScriptMessage
|
|
2737
2844
|
attr_accessor migration_project_identifier: ::String
|
|
2738
2845
|
attr_accessor selection_rules: ::String
|
|
@@ -2841,6 +2948,11 @@ module Aws::DatabaseMigrationService
|
|
|
2841
2948
|
SENSITIVE: []
|
|
2842
2949
|
end
|
|
2843
2950
|
|
|
2951
|
+
class StatementProperties
|
|
2952
|
+
attr_accessor definition: ::String
|
|
2953
|
+
SENSITIVE: []
|
|
2954
|
+
end
|
|
2955
|
+
|
|
2844
2956
|
class StopDataMigrationMessage
|
|
2845
2957
|
attr_accessor data_migration_identifier: ::String
|
|
2846
2958
|
SENSITIVE: []
|
|
@@ -2954,7 +3066,7 @@ module Aws::DatabaseMigrationService
|
|
|
2954
3066
|
end
|
|
2955
3067
|
|
|
2956
3068
|
class TargetDataSetting
|
|
2957
|
-
attr_accessor table_preparation_mode: ("
|
|
3069
|
+
attr_accessor table_preparation_mode: ("drop-tables-on-target" | "truncate" | "do-nothing")
|
|
2958
3070
|
SENSITIVE: []
|
|
2959
3071
|
end
|
|
2960
3072
|
|