aws-sdk-databasemigrationservice 1.67.0 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8988a42f1137650ac49bc8ab1595aaa866a602ac73f7294155b927a502fc882e
4
- data.tar.gz: 1cc7e3cb487a3bc9315140c8d58418aac58176ef1dce0cf38362b9f5d2f46434
3
+ metadata.gz: 1d381acec7286f38cbb186daf14d118f7b6430d31aa46df7328ec7a2930dac68
4
+ data.tar.gz: 6fe10dfdb8ab7e5f35f0d6fa86a8d2c95e1ab7544a183e066687da4f76560568
5
5
  SHA512:
6
- metadata.gz: 5c369406981588307bf9accc75a01e47bf041a75f0e72647fcadec32a6dbfc5a8cd9f7cfb3e241be16979628a4a840a9194d6947e689200e9c5fe2d726dd89d5
7
- data.tar.gz: ee629b8258ee1d5a4d3dc10a66df8688a293fce78fb5ff56d570b10f77ac76b528abc3353561a9e4d8bf78266d44f046853038d982253155b12698987b61509f
6
+ metadata.gz: 81210c35594f2dfc5222fdb2ca06146e3e3e500f351dd2711b28b24bf828cff5e826f72c4c9267a4678edb324a0c92c7a09ecc62cec77976616039c096103427
7
+ data.tar.gz: 8a113e8258cf3680232e797cb856dbdc316eda803180228014676bd99df288c1c0d56b6847317f1c218c6c578e81170be9406066e3bde9f790a5ad597662ccda
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2022-06-08)
5
+ ------------------
6
+
7
+ * Feature - This release adds DMS Fleet Advisor APIs and exposes functionality for DMS Fleet Advisor. It adds functionality to create and modify fleet advisor instances, and to collect and analyze information about the local data infrastructure.
8
+
4
9
  1.67.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -570,7 +570,8 @@ module Aws::DatabaseMigrationService
570
570
  #
571
571
  # @option params [String] :database_name
572
572
  # The name of the endpoint database. For a MySQL source or target
573
- # endpoint, do not specify DatabaseName.
573
+ # endpoint, do not specify DatabaseName. To migrate to a specific
574
+ # database, use this setting and `targetDbType`.
574
575
  #
575
576
  # @option params [String] :extra_connection_attributes
576
577
  # Additional attributes associated with the connection. Each attribute
@@ -1561,6 +1562,57 @@ module Aws::DatabaseMigrationService
1561
1562
  req.send_request(options)
1562
1563
  end
1563
1564
 
1565
+ # Creates a Fleet Advisor collector using the specified parameters.
1566
+ #
1567
+ # @option params [required, String] :collector_name
1568
+ # The name of your Fleet Advisor collector (for example,
1569
+ # `sample-collector`).
1570
+ #
1571
+ # @option params [String] :description
1572
+ # A summary description of your Fleet Advisor collector.
1573
+ #
1574
+ # @option params [required, String] :service_access_role_arn
1575
+ # The IAM role that grants permissions to access the specified Amazon S3
1576
+ # bucket.
1577
+ #
1578
+ # @option params [required, String] :s3_bucket_name
1579
+ # The Amazon S3 bucket that the Fleet Advisor collector uses to store
1580
+ # inventory metadata.
1581
+ #
1582
+ # @return [Types::CreateFleetAdvisorCollectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1583
+ #
1584
+ # * {Types::CreateFleetAdvisorCollectorResponse#collector_referenced_id #collector_referenced_id} => String
1585
+ # * {Types::CreateFleetAdvisorCollectorResponse#collector_name #collector_name} => String
1586
+ # * {Types::CreateFleetAdvisorCollectorResponse#description #description} => String
1587
+ # * {Types::CreateFleetAdvisorCollectorResponse#service_access_role_arn #service_access_role_arn} => String
1588
+ # * {Types::CreateFleetAdvisorCollectorResponse#s3_bucket_name #s3_bucket_name} => String
1589
+ #
1590
+ # @example Request syntax with placeholder values
1591
+ #
1592
+ # resp = client.create_fleet_advisor_collector({
1593
+ # collector_name: "String", # required
1594
+ # description: "String",
1595
+ # service_access_role_arn: "String", # required
1596
+ # s3_bucket_name: "String", # required
1597
+ # })
1598
+ #
1599
+ # @example Response structure
1600
+ #
1601
+ # resp.collector_referenced_id #=> String
1602
+ # resp.collector_name #=> String
1603
+ # resp.description #=> String
1604
+ # resp.service_access_role_arn #=> String
1605
+ # resp.s3_bucket_name #=> String
1606
+ #
1607
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateFleetAdvisorCollector AWS API Documentation
1608
+ #
1609
+ # @overload create_fleet_advisor_collector(params = {})
1610
+ # @param [Hash] params ({})
1611
+ def create_fleet_advisor_collector(params = {}, options = {})
1612
+ req = build_request(:create_fleet_advisor_collector, params)
1613
+ req.send_request(options)
1614
+ end
1615
+
1564
1616
  # Creates the replication instance using the specified parameters.
1565
1617
  #
1566
1618
  # DMS requires that your account have certain roles with appropriate
@@ -2644,6 +2696,57 @@ module Aws::DatabaseMigrationService
2644
2696
  req.send_request(options)
2645
2697
  end
2646
2698
 
2699
+ # Deletes the specified Fleet Advisor collector.
2700
+ #
2701
+ # @option params [required, String] :collector_referenced_id
2702
+ # The reference ID of the Fleet Advisor collector to delete.
2703
+ #
2704
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2705
+ #
2706
+ # @example Request syntax with placeholder values
2707
+ #
2708
+ # resp = client.delete_fleet_advisor_collector({
2709
+ # collector_referenced_id: "String", # required
2710
+ # })
2711
+ #
2712
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorCollector AWS API Documentation
2713
+ #
2714
+ # @overload delete_fleet_advisor_collector(params = {})
2715
+ # @param [Hash] params ({})
2716
+ def delete_fleet_advisor_collector(params = {}, options = {})
2717
+ req = build_request(:delete_fleet_advisor_collector, params)
2718
+ req.send_request(options)
2719
+ end
2720
+
2721
+ # Deletes the specified Fleet Advisor collector databases.
2722
+ #
2723
+ # @option params [required, Array<String>] :database_ids
2724
+ # The IDs of the Fleet Advisor collector databases to delete.
2725
+ #
2726
+ # @return [Types::DeleteFleetAdvisorDatabasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2727
+ #
2728
+ # * {Types::DeleteFleetAdvisorDatabasesResponse#database_ids #database_ids} => Array&lt;String&gt;
2729
+ #
2730
+ # @example Request syntax with placeholder values
2731
+ #
2732
+ # resp = client.delete_fleet_advisor_databases({
2733
+ # database_ids: ["String"], # required
2734
+ # })
2735
+ #
2736
+ # @example Response structure
2737
+ #
2738
+ # resp.database_ids #=> Array
2739
+ # resp.database_ids[0] #=> String
2740
+ #
2741
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorDatabases AWS API Documentation
2742
+ #
2743
+ # @overload delete_fleet_advisor_databases(params = {})
2744
+ # @param [Hash] params ({})
2745
+ def delete_fleet_advisor_databases(params = {}, options = {})
2746
+ req = build_request(:delete_fleet_advisor_databases, params)
2747
+ req.send_request(options)
2748
+ end
2749
+
2647
2750
  # Deletes the specified replication instance.
2648
2751
  #
2649
2752
  # <note markdown="1"> You must delete any migration tasks that are associated with the
@@ -4013,6 +4116,360 @@ module Aws::DatabaseMigrationService
4013
4116
  req.send_request(options)
4014
4117
  end
4015
4118
 
4119
+ # Returns a list of the Fleet Advisor collectors in your account.
4120
+ #
4121
+ # @option params [Array<Types::Filter>] :filters
4122
+ # If you specify any of the following filters, the output includes
4123
+ # information for only those collectors that meet the filter criteria:
4124
+ #
4125
+ # * `collector-referenced-id` – The ID of the collector agent, for
4126
+ # example `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
4127
+ #
4128
+ # * `collector-name` – The name of the collector agent.
4129
+ #
4130
+ # An example is: `describe-fleet-advisor-collectors --filter
4131
+ # Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
4132
+ #
4133
+ # @option params [Integer] :max_records
4134
+ # Sets the maximum number of records returned in the response.
4135
+ #
4136
+ # @option params [String] :next_token
4137
+ # If `NextToken` is returned by a previous response, there are more
4138
+ # results available. The value of `NextToken` is a unique pagination
4139
+ # token for each page. Make the call again using the returned token to
4140
+ # retrieve the next page. Keep all other arguments unchanged.
4141
+ #
4142
+ # @return [Types::DescribeFleetAdvisorCollectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4143
+ #
4144
+ # * {Types::DescribeFleetAdvisorCollectorsResponse#collectors #collectors} => Array&lt;Types::CollectorResponse&gt;
4145
+ # * {Types::DescribeFleetAdvisorCollectorsResponse#next_token #next_token} => String
4146
+ #
4147
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4148
+ #
4149
+ # @example Request syntax with placeholder values
4150
+ #
4151
+ # resp = client.describe_fleet_advisor_collectors({
4152
+ # filters: [
4153
+ # {
4154
+ # name: "String", # required
4155
+ # values: ["String"], # required
4156
+ # },
4157
+ # ],
4158
+ # max_records: 1,
4159
+ # next_token: "String",
4160
+ # })
4161
+ #
4162
+ # @example Response structure
4163
+ #
4164
+ # resp.collectors #=> Array
4165
+ # resp.collectors[0].collector_referenced_id #=> String
4166
+ # resp.collectors[0].collector_name #=> String
4167
+ # resp.collectors[0].collector_version #=> String
4168
+ # resp.collectors[0].version_status #=> String, one of "UP_TO_DATE", "OUTDATED", "UNSUPPORTED"
4169
+ # resp.collectors[0].description #=> String
4170
+ # resp.collectors[0].s3_bucket_name #=> String
4171
+ # resp.collectors[0].service_access_role_arn #=> String
4172
+ # resp.collectors[0].collector_health_check.collector_status #=> String, one of "UNREGISTERED", "ACTIVE"
4173
+ # resp.collectors[0].collector_health_check.local_collector_s3_access #=> Boolean
4174
+ # resp.collectors[0].collector_health_check.web_collector_s3_access #=> Boolean
4175
+ # resp.collectors[0].collector_health_check.web_collector_granted_role_based_access #=> Boolean
4176
+ # resp.collectors[0].last_data_received #=> String
4177
+ # resp.collectors[0].registered_date #=> String
4178
+ # resp.collectors[0].created_date #=> String
4179
+ # resp.collectors[0].modified_date #=> String
4180
+ # resp.collectors[0].inventory_data.number_of_databases #=> Integer
4181
+ # resp.collectors[0].inventory_data.number_of_schemas #=> Integer
4182
+ # resp.next_token #=> String
4183
+ #
4184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorCollectors AWS API Documentation
4185
+ #
4186
+ # @overload describe_fleet_advisor_collectors(params = {})
4187
+ # @param [Hash] params ({})
4188
+ def describe_fleet_advisor_collectors(params = {}, options = {})
4189
+ req = build_request(:describe_fleet_advisor_collectors, params)
4190
+ req.send_request(options)
4191
+ end
4192
+
4193
+ # Returns a list of Fleet Advisor databases in your account.
4194
+ #
4195
+ # @option params [Array<Types::Filter>] :filters
4196
+ # If you specify any of the following filters, the output includes
4197
+ # information for only those databases that meet the filter criteria:
4198
+ #
4199
+ # * `database-id` – The ID of the database, for example
4200
+ # `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
4201
+ #
4202
+ # * `database-name` – The name of the database.
4203
+ #
4204
+ # * `database-engine` – The name of the database engine.
4205
+ #
4206
+ # * `server-ip-address` – The IP address of the database server.
4207
+ #
4208
+ # * `database-ip-address` – The IP address of the database.
4209
+ #
4210
+ # * `collector-name` – The name of the associated Fleet Advisor
4211
+ # collector.
4212
+ #
4213
+ # An example is: `describe-fleet-advisor-databases --filter
4214
+ # Name="database-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
4215
+ #
4216
+ # @option params [Integer] :max_records
4217
+ # Sets the maximum number of records returned in the response.
4218
+ #
4219
+ # @option params [String] :next_token
4220
+ # If `NextToken` is returned by a previous response, there are more
4221
+ # results available. The value of `NextToken` is a unique pagination
4222
+ # token for each page. Make the call again using the returned token to
4223
+ # retrieve the next page. Keep all other arguments unchanged.
4224
+ #
4225
+ # @return [Types::DescribeFleetAdvisorDatabasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4226
+ #
4227
+ # * {Types::DescribeFleetAdvisorDatabasesResponse#databases #databases} => Array&lt;Types::DatabaseResponse&gt;
4228
+ # * {Types::DescribeFleetAdvisorDatabasesResponse#next_token #next_token} => String
4229
+ #
4230
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4231
+ #
4232
+ # @example Request syntax with placeholder values
4233
+ #
4234
+ # resp = client.describe_fleet_advisor_databases({
4235
+ # filters: [
4236
+ # {
4237
+ # name: "String", # required
4238
+ # values: ["String"], # required
4239
+ # },
4240
+ # ],
4241
+ # max_records: 1,
4242
+ # next_token: "String",
4243
+ # })
4244
+ #
4245
+ # @example Response structure
4246
+ #
4247
+ # resp.databases #=> Array
4248
+ # resp.databases[0].database_id #=> String
4249
+ # resp.databases[0].database_name #=> String
4250
+ # resp.databases[0].ip_address #=> String
4251
+ # resp.databases[0].number_of_schemas #=> Integer
4252
+ # resp.databases[0].server.server_id #=> String
4253
+ # resp.databases[0].server.ip_address #=> String
4254
+ # resp.databases[0].server.server_name #=> String
4255
+ # resp.databases[0].software_details.engine #=> String
4256
+ # resp.databases[0].software_details.engine_version #=> String
4257
+ # resp.databases[0].software_details.engine_edition #=> String
4258
+ # resp.databases[0].software_details.service_pack #=> String
4259
+ # resp.databases[0].software_details.support_level #=> String
4260
+ # resp.databases[0].software_details.os_architecture #=> Integer
4261
+ # resp.databases[0].software_details.tooltip #=> String
4262
+ # resp.databases[0].collectors #=> Array
4263
+ # resp.databases[0].collectors[0].collector_referenced_id #=> String
4264
+ # resp.databases[0].collectors[0].collector_name #=> String
4265
+ # resp.next_token #=> String
4266
+ #
4267
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorDatabases AWS API Documentation
4268
+ #
4269
+ # @overload describe_fleet_advisor_databases(params = {})
4270
+ # @param [Hash] params ({})
4271
+ def describe_fleet_advisor_databases(params = {}, options = {})
4272
+ req = build_request(:describe_fleet_advisor_databases, params)
4273
+ req.send_request(options)
4274
+ end
4275
+
4276
+ # Provides descriptions of large-scale assessment (LSA) analyses
4277
+ # produced by your Fleet Advisor collectors.
4278
+ #
4279
+ # @option params [Integer] :max_records
4280
+ # Sets the maximum number of records returned in the response.
4281
+ #
4282
+ # @option params [String] :next_token
4283
+ # If `NextToken` is returned by a previous response, there are more
4284
+ # results available. The value of `NextToken` is a unique pagination
4285
+ # token for each page. Make the call again using the returned token to
4286
+ # retrieve the next page. Keep all other arguments unchanged.
4287
+ #
4288
+ # @return [Types::DescribeFleetAdvisorLsaAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4289
+ #
4290
+ # * {Types::DescribeFleetAdvisorLsaAnalysisResponse#analysis #analysis} => Array&lt;Types::FleetAdvisorLsaAnalysisResponse&gt;
4291
+ # * {Types::DescribeFleetAdvisorLsaAnalysisResponse#next_token #next_token} => String
4292
+ #
4293
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4294
+ #
4295
+ # @example Request syntax with placeholder values
4296
+ #
4297
+ # resp = client.describe_fleet_advisor_lsa_analysis({
4298
+ # max_records: 1,
4299
+ # next_token: "String",
4300
+ # })
4301
+ #
4302
+ # @example Response structure
4303
+ #
4304
+ # resp.analysis #=> Array
4305
+ # resp.analysis[0].lsa_analysis_id #=> String
4306
+ # resp.analysis[0].status #=> String
4307
+ # resp.next_token #=> String
4308
+ #
4309
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorLsaAnalysis AWS API Documentation
4310
+ #
4311
+ # @overload describe_fleet_advisor_lsa_analysis(params = {})
4312
+ # @param [Hash] params ({})
4313
+ def describe_fleet_advisor_lsa_analysis(params = {}, options = {})
4314
+ req = build_request(:describe_fleet_advisor_lsa_analysis, params)
4315
+ req.send_request(options)
4316
+ end
4317
+
4318
+ # Provides descriptions of the schemas discovered by your Fleet Advisor
4319
+ # collectors.
4320
+ #
4321
+ # @option params [Array<Types::Filter>] :filters
4322
+ # If you specify any of the following filters, the output includes
4323
+ # information for only those schema objects that meet the filter
4324
+ # criteria:
4325
+ #
4326
+ # * `schema-id` – The ID of the schema, for example
4327
+ # `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
4328
+ #
4329
+ # ^
4330
+ #
4331
+ # Example: `describe-fleet-advisor-schema-object-summary --filter
4332
+ # Name="schema-id",Values="50"`
4333
+ #
4334
+ # @option params [Integer] :max_records
4335
+ # Sets the maximum number of records returned in the response.
4336
+ #
4337
+ # @option params [String] :next_token
4338
+ # If `NextToken` is returned by a previous response, there are more
4339
+ # results available. The value of `NextToken` is a unique pagination
4340
+ # token for each page. Make the call again using the returned token to
4341
+ # retrieve the next page. Keep all other arguments unchanged.
4342
+ #
4343
+ # @return [Types::DescribeFleetAdvisorSchemaObjectSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4344
+ #
4345
+ # * {Types::DescribeFleetAdvisorSchemaObjectSummaryResponse#fleet_advisor_schema_objects #fleet_advisor_schema_objects} => Array&lt;Types::FleetAdvisorSchemaObjectResponse&gt;
4346
+ # * {Types::DescribeFleetAdvisorSchemaObjectSummaryResponse#next_token #next_token} => String
4347
+ #
4348
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4349
+ #
4350
+ # @example Request syntax with placeholder values
4351
+ #
4352
+ # resp = client.describe_fleet_advisor_schema_object_summary({
4353
+ # filters: [
4354
+ # {
4355
+ # name: "String", # required
4356
+ # values: ["String"], # required
4357
+ # },
4358
+ # ],
4359
+ # max_records: 1,
4360
+ # next_token: "String",
4361
+ # })
4362
+ #
4363
+ # @example Response structure
4364
+ #
4365
+ # resp.fleet_advisor_schema_objects #=> Array
4366
+ # resp.fleet_advisor_schema_objects[0].schema_id #=> String
4367
+ # resp.fleet_advisor_schema_objects[0].object_type #=> String
4368
+ # resp.fleet_advisor_schema_objects[0].number_of_objects #=> Integer
4369
+ # resp.fleet_advisor_schema_objects[0].code_line_count #=> Integer
4370
+ # resp.fleet_advisor_schema_objects[0].code_size #=> Integer
4371
+ # resp.next_token #=> String
4372
+ #
4373
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemaObjectSummary AWS API Documentation
4374
+ #
4375
+ # @overload describe_fleet_advisor_schema_object_summary(params = {})
4376
+ # @param [Hash] params ({})
4377
+ def describe_fleet_advisor_schema_object_summary(params = {}, options = {})
4378
+ req = build_request(:describe_fleet_advisor_schema_object_summary, params)
4379
+ req.send_request(options)
4380
+ end
4381
+
4382
+ # Returns a list of schemas detected by Fleet Advisor Collectors in your
4383
+ # account.
4384
+ #
4385
+ # @option params [Array<Types::Filter>] :filters
4386
+ # If you specify any of the following filters, the output includes
4387
+ # information for only those schemas that meet the filter criteria:
4388
+ #
4389
+ # * `complexity` – The schema's complexity, for example `Simple`.
4390
+ #
4391
+ # * `database-id` – The ID of the schema's database.
4392
+ #
4393
+ # * `database-ip-address` – The IP address of the schema's database.
4394
+ #
4395
+ # * `database-name` – The name of the schema's database.
4396
+ #
4397
+ # * `database-engine` – The name of the schema database's engine.
4398
+ #
4399
+ # * `original-schema-name` – The name of the schema's database's main
4400
+ # schema.
4401
+ #
4402
+ # * `schema-id` – The ID of the schema, for example `15`.
4403
+ #
4404
+ # * `schema-name` – The name of the schema.
4405
+ #
4406
+ # * `server-ip-address` – The IP address of the schema database's
4407
+ # server.
4408
+ #
4409
+ # An example is: `describe-fleet-advisor-schemas --filter
4410
+ # Name="schema-id",Values="50"`
4411
+ #
4412
+ # @option params [Integer] :max_records
4413
+ # Sets the maximum number of records returned in the response.
4414
+ #
4415
+ # @option params [String] :next_token
4416
+ # If `NextToken` is returned by a previous response, there are more
4417
+ # results available. The value of `NextToken` is a unique pagination
4418
+ # token for each page. Make the call again using the returned token to
4419
+ # retrieve the next page. Keep all other arguments unchanged.
4420
+ #
4421
+ # @return [Types::DescribeFleetAdvisorSchemasResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4422
+ #
4423
+ # * {Types::DescribeFleetAdvisorSchemasResponse#fleet_advisor_schemas #fleet_advisor_schemas} => Array&lt;Types::SchemaResponse&gt;
4424
+ # * {Types::DescribeFleetAdvisorSchemasResponse#next_token #next_token} => String
4425
+ #
4426
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4427
+ #
4428
+ # @example Request syntax with placeholder values
4429
+ #
4430
+ # resp = client.describe_fleet_advisor_schemas({
4431
+ # filters: [
4432
+ # {
4433
+ # name: "String", # required
4434
+ # values: ["String"], # required
4435
+ # },
4436
+ # ],
4437
+ # max_records: 1,
4438
+ # next_token: "String",
4439
+ # })
4440
+ #
4441
+ # @example Response structure
4442
+ #
4443
+ # resp.fleet_advisor_schemas #=> Array
4444
+ # resp.fleet_advisor_schemas[0].code_line_count #=> Integer
4445
+ # resp.fleet_advisor_schemas[0].code_size #=> Integer
4446
+ # resp.fleet_advisor_schemas[0].complexity #=> String
4447
+ # resp.fleet_advisor_schemas[0].server.server_id #=> String
4448
+ # resp.fleet_advisor_schemas[0].server.ip_address #=> String
4449
+ # resp.fleet_advisor_schemas[0].server.server_name #=> String
4450
+ # resp.fleet_advisor_schemas[0].database_instance.database_id #=> String
4451
+ # resp.fleet_advisor_schemas[0].database_instance.database_name #=> String
4452
+ # resp.fleet_advisor_schemas[0].database_instance.database_ip_address #=> String
4453
+ # resp.fleet_advisor_schemas[0].database_instance.database_engine #=> String
4454
+ # resp.fleet_advisor_schemas[0].schema_id #=> String
4455
+ # resp.fleet_advisor_schemas[0].schema_name #=> String
4456
+ # resp.fleet_advisor_schemas[0].original_schema.schema_id #=> String
4457
+ # resp.fleet_advisor_schemas[0].original_schema.schema_name #=> String
4458
+ # resp.fleet_advisor_schemas[0].original_schema.database_id #=> String
4459
+ # resp.fleet_advisor_schemas[0].original_schema.database_name #=> String
4460
+ # resp.fleet_advisor_schemas[0].original_schema.database_ip_address #=> String
4461
+ # resp.fleet_advisor_schemas[0].similarity #=> Float
4462
+ # resp.next_token #=> String
4463
+ #
4464
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemas AWS API Documentation
4465
+ #
4466
+ # @overload describe_fleet_advisor_schemas(params = {})
4467
+ # @param [Hash] params ({})
4468
+ def describe_fleet_advisor_schemas(params = {}, options = {})
4469
+ req = build_request(:describe_fleet_advisor_schemas, params)
4470
+ req.send_request(options)
4471
+ end
4472
+
4016
4473
  # Returns information about the replication instance types that can be
4017
4474
  # created in the specified region.
4018
4475
  #
@@ -6842,6 +7299,28 @@ module Aws::DatabaseMigrationService
6842
7299
  req.send_request(options)
6843
7300
  end
6844
7301
 
7302
+ # Runs large-scale assessment (LSA) analysis on every Fleet Advisor
7303
+ # collector in your account.
7304
+ #
7305
+ # @return [Types::RunFleetAdvisorLsaAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7306
+ #
7307
+ # * {Types::RunFleetAdvisorLsaAnalysisResponse#lsa_analysis_id #lsa_analysis_id} => String
7308
+ # * {Types::RunFleetAdvisorLsaAnalysisResponse#status #status} => String
7309
+ #
7310
+ # @example Response structure
7311
+ #
7312
+ # resp.lsa_analysis_id #=> String
7313
+ # resp.status #=> String
7314
+ #
7315
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RunFleetAdvisorLsaAnalysis AWS API Documentation
7316
+ #
7317
+ # @overload run_fleet_advisor_lsa_analysis(params = {})
7318
+ # @param [Hash] params ({})
7319
+ def run_fleet_advisor_lsa_analysis(params = {}, options = {})
7320
+ req = build_request(:run_fleet_advisor_lsa_analysis, params)
7321
+ req.send_request(options)
7322
+ end
7323
+
6845
7324
  # Starts the replication task.
6846
7325
  #
6847
7326
  # For more information about DMS tasks, see [Working with Migration
@@ -7338,7 +7817,7 @@ module Aws::DatabaseMigrationService
7338
7817
  params: params,
7339
7818
  config: config)
7340
7819
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
7341
- context[:gem_version] = '1.67.0'
7820
+ context[:gem_version] = '1.68.0'
7342
7821
  Seahorse::Client::Request.new(handlers, context)
7343
7822
  end
7344
7823