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.
@@ -203,6 +203,67 @@ module Aws::DatabaseMigrationService
203
203
  include Aws::Structure
204
204
  end
205
205
 
206
+ # @!attribute [rw] migration_project_identifier
207
+ # The migration project name or Amazon Resource Name (ARN).
208
+ # @return [String]
209
+ #
210
+ # @!attribute [rw] request_identifier
211
+ # The identifier for the metadata model conversion operation to
212
+ # cancel. This operation was initiated by
213
+ # StartMetadataModelConversion.
214
+ # @return [String]
215
+ #
216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelMetadataModelConversionMessage AWS API Documentation
217
+ #
218
+ class CancelMetadataModelConversionMessage < Struct.new(
219
+ :migration_project_identifier,
220
+ :request_identifier)
221
+ SENSITIVE = []
222
+ include Aws::Structure
223
+ end
224
+
225
+ # @!attribute [rw] request
226
+ # Provides information about a schema conversion action.
227
+ # @return [Types::SchemaConversionRequest]
228
+ #
229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelMetadataModelConversionResponse AWS API Documentation
230
+ #
231
+ class CancelMetadataModelConversionResponse < Struct.new(
232
+ :request)
233
+ SENSITIVE = []
234
+ include Aws::Structure
235
+ end
236
+
237
+ # @!attribute [rw] migration_project_identifier
238
+ # The migration project name or Amazon Resource Name (ARN).
239
+ # @return [String]
240
+ #
241
+ # @!attribute [rw] request_identifier
242
+ # The identifier for the metadata model creation operation to cancel.
243
+ # This operation was initiated by `StartMetadataModelCreation`.
244
+ # @return [String]
245
+ #
246
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelMetadataModelCreationMessage AWS API Documentation
247
+ #
248
+ class CancelMetadataModelCreationMessage < Struct.new(
249
+ :migration_project_identifier,
250
+ :request_identifier)
251
+ SENSITIVE = []
252
+ include Aws::Structure
253
+ end
254
+
255
+ # @!attribute [rw] request
256
+ # Provides information about a schema conversion action.
257
+ # @return [Types::SchemaConversionRequest]
258
+ #
259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelMetadataModelCreationResponse AWS API Documentation
260
+ #
261
+ class CancelMetadataModelCreationResponse < Struct.new(
262
+ :request)
263
+ SENSITIVE = []
264
+ include Aws::Structure
265
+ end
266
+
206
267
  # @!attribute [rw] replication_task_assessment_run_arn
207
268
  # Amazon Resource Name (ARN) of the premigration assessment run to be
208
269
  # canceled.
@@ -3979,6 +4040,71 @@ module Aws::DatabaseMigrationService
3979
4040
  include Aws::Structure
3980
4041
  end
3981
4042
 
4043
+ # @!attribute [rw] selection_rules
4044
+ # The JSON string that specifies which metadata model's children to
4045
+ # retrieve. Only one selection rule with "rule-action": "explicit"
4046
+ # can be provided. For more information, see [Selection Rules][1] in
4047
+ # the DMS User Guide.
4048
+ #
4049
+ #
4050
+ #
4051
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.SelectionTransformation.Selections.html
4052
+ # @return [String]
4053
+ #
4054
+ # @!attribute [rw] migration_project_identifier
4055
+ # The migration project name or Amazon Resource Name (ARN).
4056
+ # @return [String]
4057
+ #
4058
+ # @!attribute [rw] origin
4059
+ # Specifies whether to retrieve metadata from the source or target
4060
+ # tree. Valid values: SOURCE \| TARGET
4061
+ # @return [String]
4062
+ #
4063
+ # @!attribute [rw] marker
4064
+ # Specifies the unique pagination token that indicates where the next
4065
+ # page should start. If this parameter is specified, the response
4066
+ # includes only records beyond the marker, up to the value specified
4067
+ # by MaxRecords.
4068
+ # @return [String]
4069
+ #
4070
+ # @!attribute [rw] max_records
4071
+ # The maximum number of metadata model children to include in the
4072
+ # response. If more items exist than the specified MaxRecords value, a
4073
+ # marker is included in the response so that the remaining results can
4074
+ # be retrieved.
4075
+ # @return [Integer]
4076
+ #
4077
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelChildrenMessage AWS API Documentation
4078
+ #
4079
+ class DescribeMetadataModelChildrenMessage < Struct.new(
4080
+ :selection_rules,
4081
+ :migration_project_identifier,
4082
+ :origin,
4083
+ :marker,
4084
+ :max_records)
4085
+ SENSITIVE = []
4086
+ include Aws::Structure
4087
+ end
4088
+
4089
+ # @!attribute [rw] marker
4090
+ # Specifies the unique pagination token that makes it possible to
4091
+ # display the next page of metadata model children. If a marker is
4092
+ # returned, there are more metadata model children available.
4093
+ # @return [String]
4094
+ #
4095
+ # @!attribute [rw] metadata_model_children
4096
+ # A list of child metadata models.
4097
+ # @return [Array<Types::MetadataModelReference>]
4098
+ #
4099
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelChildrenResponse AWS API Documentation
4100
+ #
4101
+ class DescribeMetadataModelChildrenResponse < Struct.new(
4102
+ :marker,
4103
+ :metadata_model_children)
4104
+ SENSITIVE = []
4105
+ include Aws::Structure
4106
+ end
4107
+
3982
4108
  # @!attribute [rw] migration_project_identifier
3983
4109
  # The migration project name or Amazon Resource Name (ARN).
3984
4110
  # @return [String]
@@ -4043,6 +4169,63 @@ module Aws::DatabaseMigrationService
4043
4169
  include Aws::Structure
4044
4170
  end
4045
4171
 
4172
+ # @!attribute [rw] filters
4173
+ # Filters applied to the metadata model creation requests described in
4174
+ # the form of key-value pairs. The supported filters are request-id
4175
+ # and status.
4176
+ # @return [Array<Types::Filter>]
4177
+ #
4178
+ # @!attribute [rw] marker
4179
+ # Specifies the unique pagination token that makes it possible to
4180
+ # display the next page of metadata model creation requests. If Marker
4181
+ # is returned by a previous response, there are more metadata model
4182
+ # creation requests available.
4183
+ # @return [String]
4184
+ #
4185
+ # @!attribute [rw] max_records
4186
+ # The maximum number of metadata model creation requests to include in
4187
+ # the response. If more requests exist than the specified MaxRecords
4188
+ # value, a pagination token is provided in the response so that you
4189
+ # can retrieve the remaining results.
4190
+ # @return [Integer]
4191
+ #
4192
+ # @!attribute [rw] migration_project_identifier
4193
+ # The migration project name or Amazon Resource Name (ARN).
4194
+ # @return [String]
4195
+ #
4196
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelCreationsMessage AWS API Documentation
4197
+ #
4198
+ class DescribeMetadataModelCreationsMessage < Struct.new(
4199
+ :filters,
4200
+ :marker,
4201
+ :max_records,
4202
+ :migration_project_identifier)
4203
+ SENSITIVE = []
4204
+ include Aws::Structure
4205
+ end
4206
+
4207
+ # @!attribute [rw] marker
4208
+ # Specifies the unique pagination token that makes it possible to
4209
+ # display the next page of metadata model creation requests. If Marker
4210
+ # is returned, there are more metadata model creation requests
4211
+ # available.
4212
+ # @return [String]
4213
+ #
4214
+ # @!attribute [rw] requests
4215
+ # A list of metadata model creation requests. The ExportSqlDetails
4216
+ # field will never be populated for the DescribeMetadataModelCreations
4217
+ # operation.
4218
+ # @return [Array<Types::SchemaConversionRequest>]
4219
+ #
4220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelCreationsResponse AWS API Documentation
4221
+ #
4222
+ class DescribeMetadataModelCreationsResponse < Struct.new(
4223
+ :marker,
4224
+ :requests)
4225
+ SENSITIVE = []
4226
+ include Aws::Structure
4227
+ end
4228
+
4046
4229
  # @!attribute [rw] migration_project_identifier
4047
4230
  # The migration project name or Amazon Resource Name (ARN).
4048
4231
  # @return [String]
@@ -4232,6 +4415,66 @@ module Aws::DatabaseMigrationService
4232
4415
  include Aws::Structure
4233
4416
  end
4234
4417
 
4418
+ # @!attribute [rw] selection_rules
4419
+ # The JSON string that specifies which metadata model to retrieve.
4420
+ # Only one selection rule with "rule-action": "explicit" can be
4421
+ # provided. For more information, see [Selection Rules][1] in the DMS
4422
+ # User Guide.
4423
+ #
4424
+ #
4425
+ #
4426
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.SelectionTransformation.Selections.html
4427
+ # @return [String]
4428
+ #
4429
+ # @!attribute [rw] migration_project_identifier
4430
+ # The migration project name or Amazon Resource Name (ARN).
4431
+ # @return [String]
4432
+ #
4433
+ # @!attribute [rw] origin
4434
+ # Specifies whether to retrieve metadata from the source or target
4435
+ # tree. Valid values: SOURCE \| TARGET
4436
+ # @return [String]
4437
+ #
4438
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelMessage AWS API Documentation
4439
+ #
4440
+ class DescribeMetadataModelMessage < Struct.new(
4441
+ :selection_rules,
4442
+ :migration_project_identifier,
4443
+ :origin)
4444
+ SENSITIVE = []
4445
+ include Aws::Structure
4446
+ end
4447
+
4448
+ # @!attribute [rw] metadata_model_name
4449
+ # The name of the metadata model.
4450
+ # @return [String]
4451
+ #
4452
+ # @!attribute [rw] metadata_model_type
4453
+ # The type of the metadata model.
4454
+ # @return [String]
4455
+ #
4456
+ # @!attribute [rw] target_metadata_models
4457
+ # A list of counterpart metadata models in the target. This field is
4458
+ # populated only when Origin is SOURCE and after the object has been
4459
+ # converted by DMS Schema Conversion.
4460
+ # @return [Array<Types::MetadataModelReference>]
4461
+ #
4462
+ # @!attribute [rw] definition
4463
+ # The SQL text of the metadata model. This field might not be
4464
+ # populated for some metadata models.
4465
+ # @return [String]
4466
+ #
4467
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelResponse AWS API Documentation
4468
+ #
4469
+ class DescribeMetadataModelResponse < Struct.new(
4470
+ :metadata_model_name,
4471
+ :metadata_model_type,
4472
+ :target_metadata_models,
4473
+ :definition)
4474
+ SENSITIVE = []
4475
+ include Aws::Structure
4476
+ end
4477
+
4235
4478
  # @!attribute [rw] filters
4236
4479
  # Filters applied to the migration projects described in the form of
4237
4480
  # key-value pairs.
@@ -6271,6 +6514,39 @@ module Aws::DatabaseMigrationService
6271
6514
  include Aws::Structure
6272
6515
  end
6273
6516
 
6517
+ # @!attribute [rw] migration_project_identifier
6518
+ # The migration project name or Amazon Resource Name (ARN).
6519
+ # @return [String]
6520
+ #
6521
+ # @!attribute [rw] selection_rules
6522
+ # The JSON string representing the source selection rules for
6523
+ # conversion. Selection rules must contain only supported metadata
6524
+ # model types. For more information, see Selection Rules in the DMS
6525
+ # User Guide.
6526
+ # @return [String]
6527
+ #
6528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/GetTargetSelectionRulesMessage AWS API Documentation
6529
+ #
6530
+ class GetTargetSelectionRulesMessage < Struct.new(
6531
+ :migration_project_identifier,
6532
+ :selection_rules)
6533
+ SENSITIVE = []
6534
+ include Aws::Structure
6535
+ end
6536
+
6537
+ # @!attribute [rw] target_selection_rules
6538
+ # The JSON string representing the counterpart selection rules in the
6539
+ # target.
6540
+ # @return [String]
6541
+ #
6542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/GetTargetSelectionRulesResponse AWS API Documentation
6543
+ #
6544
+ class GetTargetSelectionRulesResponse < Struct.new(
6545
+ :target_selection_rules)
6546
+ SENSITIVE = []
6547
+ include Aws::Structure
6548
+ end
6549
+
6274
6550
  # Provides information that defines an IBM Db2 LUW endpoint.
6275
6551
  #
6276
6552
  # @!attribute [rw] database_name
@@ -7208,6 +7484,48 @@ module Aws::DatabaseMigrationService
7208
7484
  include Aws::Structure
7209
7485
  end
7210
7486
 
7487
+ # The properties of metadata model in JSON format. This object is a
7488
+ # Union. Only one member of this object can be specified or returned.
7489
+ #
7490
+ # @note MetadataModelProperties is a union - when making an API calls you must set exactly one of the members.
7491
+ #
7492
+ # @!attribute [rw] statement_properties
7493
+ # The properties of the statement.
7494
+ # @return [Types::StatementProperties]
7495
+ #
7496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MetadataModelProperties AWS API Documentation
7497
+ #
7498
+ class MetadataModelProperties < Struct.new(
7499
+ :statement_properties,
7500
+ :unknown)
7501
+ SENSITIVE = []
7502
+ include Aws::Structure
7503
+ include Aws::Structure::Union
7504
+
7505
+ class StatementProperties < MetadataModelProperties; end
7506
+ class Unknown < MetadataModelProperties; end
7507
+ end
7508
+
7509
+ # A reference to a metadata model, including its name and selection
7510
+ # rules for location identification.
7511
+ #
7512
+ # @!attribute [rw] metadata_model_name
7513
+ # The name of the metadata model.
7514
+ # @return [String]
7515
+ #
7516
+ # @!attribute [rw] selection_rules
7517
+ # The JSON string representing metadata model location.
7518
+ # @return [String]
7519
+ #
7520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MetadataModelReference AWS API Documentation
7521
+ #
7522
+ class MetadataModelReference < Struct.new(
7523
+ :metadata_model_name,
7524
+ :selection_rules)
7525
+ SENSITIVE = []
7526
+ include Aws::Structure
7527
+ end
7528
+
7211
7529
  # Provides information that defines a Microsoft SQL Server endpoint.
7212
7530
  #
7213
7531
  # @!attribute [rw] port
@@ -13469,6 +13787,48 @@ module Aws::DatabaseMigrationService
13469
13787
  include Aws::Structure
13470
13788
  end
13471
13789
 
13790
+ # @!attribute [rw] migration_project_identifier
13791
+ # The migration project name or Amazon Resource Name (ARN).
13792
+ # @return [String]
13793
+ #
13794
+ # @!attribute [rw] selection_rules
13795
+ # The JSON string that specifies the location where the metadata model
13796
+ # will be created. Selection rules must specify a single schema. For
13797
+ # more information, see Selection Rules in the DMS User Guide.
13798
+ # @return [String]
13799
+ #
13800
+ # @!attribute [rw] metadata_model_name
13801
+ # The name of the metadata model.
13802
+ # @return [String]
13803
+ #
13804
+ # @!attribute [rw] properties
13805
+ # The properties of metadata model in JSON format. This object is a
13806
+ # Union. Only one member of this object can be specified or returned.
13807
+ # @return [Types::MetadataModelProperties]
13808
+ #
13809
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelCreationMessage AWS API Documentation
13810
+ #
13811
+ class StartMetadataModelCreationMessage < Struct.new(
13812
+ :migration_project_identifier,
13813
+ :selection_rules,
13814
+ :metadata_model_name,
13815
+ :properties)
13816
+ SENSITIVE = []
13817
+ include Aws::Structure
13818
+ end
13819
+
13820
+ # @!attribute [rw] request_identifier
13821
+ # The identifier for the metadata model creation operation.
13822
+ # @return [String]
13823
+ #
13824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelCreationResponse AWS API Documentation
13825
+ #
13826
+ class StartMetadataModelCreationResponse < Struct.new(
13827
+ :request_identifier)
13828
+ SENSITIVE = []
13829
+ include Aws::Structure
13830
+ end
13831
+
13472
13832
  # @!attribute [rw] migration_project_identifier
13473
13833
  # The migration project name or Amazon Resource Name (ARN).
13474
13834
  # @return [String]
@@ -13983,6 +14343,20 @@ module Aws::DatabaseMigrationService
13983
14343
  include Aws::Structure
13984
14344
  end
13985
14345
 
14346
+ # The properties of the statement for metadata model creation.
14347
+ #
14348
+ # @!attribute [rw] definition
14349
+ # The SQL text of the statement.
14350
+ # @return [String]
14351
+ #
14352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StatementProperties AWS API Documentation
14353
+ #
14354
+ class StatementProperties < Struct.new(
14355
+ :definition)
14356
+ SENSITIVE = []
14357
+ include Aws::Structure
14358
+ end
14359
+
13986
14360
  # @!attribute [rw] data_migration_identifier
13987
14361
  # The identifier (name or ARN) of the data migration to stop.
13988
14362
  # @return [String]
@@ -55,7 +55,7 @@ module Aws::DatabaseMigrationService
55
55
  autoload :EndpointProvider, 'aws-sdk-databasemigrationservice/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-databasemigrationservice/endpoints'
57
57
 
58
- GEM_VERSION = '1.132.0'
58
+ GEM_VERSION = '1.133.0'
59
59
 
60
60
  end
61
61
 
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: ("do-nothing" | "truncate" | "drop-tables-on-target")?
181
+ table_preparation_mode: ("drop-tables-on-target" | "truncate" | "do-nothing")?
160
182
  },
161
183
  ],
162
184
  ?number_of_jobs: ::Integer,
@@ -1372,6 +1394,21 @@ module Aws
1372
1394
  ) -> _DescribeInstanceProfilesResponseSuccess
1373
1395
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceProfilesResponseSuccess
1374
1396
 
1397
+ interface _DescribeMetadataModelResponseSuccess
1398
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelResponse]
1399
+ def metadata_model_name: () -> ::String
1400
+ def metadata_model_type: () -> ::String
1401
+ def target_metadata_models: () -> ::Array[Types::MetadataModelReference]
1402
+ def definition: () -> ::String
1403
+ end
1404
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model-instance_method
1405
+ def describe_metadata_model: (
1406
+ selection_rules: ::String,
1407
+ migration_project_identifier: ::String,
1408
+ origin: ("SOURCE" | "TARGET")
1409
+ ) -> _DescribeMetadataModelResponseSuccess
1410
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelResponseSuccess
1411
+
1375
1412
  interface _DescribeMetadataModelAssessmentsResponseSuccess
1376
1413
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelAssessmentsResponse]
1377
1414
  def marker: () -> ::String
@@ -1391,6 +1428,21 @@ module Aws
1391
1428
  ) -> _DescribeMetadataModelAssessmentsResponseSuccess
1392
1429
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelAssessmentsResponseSuccess
1393
1430
 
1431
+ interface _DescribeMetadataModelChildrenResponseSuccess
1432
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelChildrenResponse]
1433
+ def marker: () -> ::String
1434
+ def metadata_model_children: () -> ::Array[Types::MetadataModelReference]
1435
+ end
1436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_children-instance_method
1437
+ def describe_metadata_model_children: (
1438
+ selection_rules: ::String,
1439
+ migration_project_identifier: ::String,
1440
+ origin: ("SOURCE" | "TARGET"),
1441
+ ?marker: ::String,
1442
+ ?max_records: ::Integer
1443
+ ) -> _DescribeMetadataModelChildrenResponseSuccess
1444
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelChildrenResponseSuccess
1445
+
1394
1446
  interface _DescribeMetadataModelConversionsResponseSuccess
1395
1447
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelConversionsResponse]
1396
1448
  def marker: () -> ::String
@@ -1410,6 +1462,25 @@ module Aws
1410
1462
  ) -> _DescribeMetadataModelConversionsResponseSuccess
1411
1463
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelConversionsResponseSuccess
1412
1464
 
1465
+ interface _DescribeMetadataModelCreationsResponseSuccess
1466
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelCreationsResponse]
1467
+ def marker: () -> ::String
1468
+ def requests: () -> ::Array[Types::SchemaConversionRequest]
1469
+ end
1470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_creations-instance_method
1471
+ def describe_metadata_model_creations: (
1472
+ ?filters: Array[
1473
+ {
1474
+ name: ::String,
1475
+ values: Array[::String]
1476
+ },
1477
+ ],
1478
+ ?marker: ::String,
1479
+ ?max_records: ::Integer,
1480
+ migration_project_identifier: ::String
1481
+ ) -> _DescribeMetadataModelCreationsResponseSuccess
1482
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelCreationsResponseSuccess
1483
+
1413
1484
  interface _DescribeMetadataModelExportsAsScriptResponseSuccess
1414
1485
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelExportsAsScriptResponse]
1415
1486
  def marker: () -> ::String
@@ -1784,6 +1855,17 @@ module Aws
1784
1855
  ) -> _ExportMetadataModelAssessmentResponseSuccess
1785
1856
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportMetadataModelAssessmentResponseSuccess
1786
1857
 
1858
+ interface _GetTargetSelectionRulesResponseSuccess
1859
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTargetSelectionRulesResponse]
1860
+ def target_selection_rules: () -> ::String
1861
+ end
1862
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#get_target_selection_rules-instance_method
1863
+ def get_target_selection_rules: (
1864
+ migration_project_identifier: ::String,
1865
+ selection_rules: ::String
1866
+ ) -> _GetTargetSelectionRulesResponseSuccess
1867
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTargetSelectionRulesResponseSuccess
1868
+
1787
1869
  interface _ImportCertificateResponseSuccess
1788
1870
  include ::Seahorse::Client::_ResponseSuccess[Types::ImportCertificateResponse]
1789
1871
  def certificate: () -> Types::Certificate
@@ -1846,7 +1928,7 @@ module Aws
1846
1928
  ],
1847
1929
  ?target_data_settings: Array[
1848
1930
  {
1849
- table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")?
1931
+ table_preparation_mode: ("drop-tables-on-target" | "truncate" | "do-nothing")?
1850
1932
  },
1851
1933
  ],
1852
1934
  ?number_of_jobs: ::Integer,
@@ -2602,6 +2684,23 @@ module Aws
2602
2684
  ) -> _StartMetadataModelConversionResponseSuccess
2603
2685
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelConversionResponseSuccess
2604
2686
 
2687
+ interface _StartMetadataModelCreationResponseSuccess
2688
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelCreationResponse]
2689
+ def request_identifier: () -> ::String
2690
+ end
2691
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_metadata_model_creation-instance_method
2692
+ def start_metadata_model_creation: (
2693
+ migration_project_identifier: ::String,
2694
+ selection_rules: ::String,
2695
+ metadata_model_name: ::String,
2696
+ properties: {
2697
+ statement_properties: {
2698
+ definition: ::String
2699
+ }?
2700
+ }
2701
+ ) -> _StartMetadataModelCreationResponseSuccess
2702
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelCreationResponseSuccess
2703
+
2605
2704
  interface _StartMetadataModelExportAsScriptResponseSuccess
2606
2705
  include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelExportAsScriptResponse]
2607
2706
  def request_identifier: () -> ::String