aws-sdk-applicationdiscoveryservice 1.43.0 → 1.46.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93a06d72fd5579f7a3ea0ca9b7e4ba66044521232945c38a5fbd9aec0e496704
4
- data.tar.gz: af047bb98a94b20bde2798b2ea21b13cf974a808b2bd4eb7f69b6176b1989e58
3
+ metadata.gz: ac56ae92985c959ee178fc578e499d2166f8eecc37059668a96c53d8bf71d5b7
4
+ data.tar.gz: 5f0318dad7aaebaa4121223682140958b5f9b547e30eb33416c6d94518b16a81
5
5
  SHA512:
6
- metadata.gz: 0e13c802c79f956fc6183ab7e1d9f9fc6be125976f5c2874cf5b7c566dfa4f0d1a72c9732e7037b18571a7b66a9133c1eb30b50c4bbae43903425b232aaa67af
7
- data.tar.gz: 1f4cd2dcbf836d90425b705f4825c6064e5f749bd351012660f8a038c5d029ed1d9c957e5bfad136deef27ca7feb7a68ce4c56dfd578b3c197db39a440c31e20
6
+ metadata.gz: 5d44ca2b498c6408f6378cc06f3868e68ec76199b4f3f9c20f0d2ab5d4612b7e0c58d33ace0674d1d195a37cdd3614e116bedf407232584fde94be52396406c2
7
+ data.tar.gz: 3755def5d0fa51d88b1051666e6c05550f1650ea7722308e5c460fd73fde8f7b00085a9e079069a0dc5ca8dc89106aa75953d769306111941dab76cce2a0bc05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2022-07-18)
5
+ ------------------
6
+
7
+ * Feature - Add AWS Agentless Collector details to the GetDiscoverySummary API response
8
+
9
+ 1.45.0 (2022-05-16)
10
+ ------------------
11
+
12
+ * Feature - Add Migration Evaluator Collector details to the GetDiscoverySummary API response
13
+
14
+ 1.44.0 (2022-02-24)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.43.0 (2022-02-03)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.46.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::ApplicationDiscoveryService
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -389,11 +391,11 @@ module Aws::ApplicationDiscoveryService
389
391
  # Each import task has a number of records that can identify servers or
390
392
  # applications.
391
393
  #
392
- # AWS Application Discovery Service has built-in matching logic that
393
- # will identify when discovered servers match existing entries that
394
- # you've previously discovered, the information for the
395
- # already-existing discovered server is updated. When you delete an
396
- # import task that contains records that were used to match, the
394
+ # Amazon Web Services Application Discovery Service has built-in
395
+ # matching logic that will identify when discovered servers match
396
+ # existing entries that you've previously discovered, the information
397
+ # for the already-existing discovered server is updated. When you delete
398
+ # an import task that contains records that were used to match, the
397
399
  # information in those matched records that comes from the deleted
398
400
  # records will also be deleted.
399
401
  #
@@ -439,8 +441,8 @@ module Aws::ApplicationDiscoveryService
439
441
  # @example Request syntax with placeholder values
440
442
  #
441
443
  # resp = client.create_application({
442
- # name: "String", # required
443
- # description: "String",
444
+ # name: "ApplicationName", # required
445
+ # description: "ApplicationDescription",
444
446
  # })
445
447
  #
446
448
  # @example Response structure
@@ -458,6 +460,8 @@ module Aws::ApplicationDiscoveryService
458
460
  # that help you categorize IT assets. This API accepts a list of
459
461
  # multiple configuration items.
460
462
  #
463
+ # Do not store sensitive information (like personal data) in tags.
464
+ #
461
465
  # @option params [required, Array<String>] :configuration_ids
462
466
  # A list of configuration items that you want to tag.
463
467
  #
@@ -551,7 +555,8 @@ module Aws::ApplicationDiscoveryService
551
555
  # @option params [Array<String>] :agent_ids
552
556
  # The agent or the Connector IDs for which you want information. If you
553
557
  # specify no IDs, the system returns information about all
554
- # agents/Connectors associated with your AWS user account.
558
+ # agents/Connectors associated with your Amazon Web Services user
559
+ # account.
555
560
  #
556
561
  # @option params [Array<Types::Filter>] :filters
557
562
  # You can filter the request using various logical operators and a
@@ -633,8 +638,8 @@ module Aws::ApplicationDiscoveryService
633
638
  # number of network cards, etc.
634
639
  #
635
640
  # For a complete list of outputs for each asset type, see [Using the
636
- # DescribeConfigurations Action][1] in the *AWS Application Discovery
637
- # Service User Guide*.
641
+ # DescribeConfigurations Action][1] in the *Amazon Web Services
642
+ # Application Discovery Service User Guide*.
638
643
  #
639
644
  # </note>
640
645
  #
@@ -719,7 +724,7 @@ module Aws::ApplicationDiscoveryService
719
724
  end
720
725
 
721
726
  # `DescribeExportConfigurations` is deprecated. Use
722
- # [DescribeImportTasks][1], instead.
727
+ # [DescribeExportTasks][1], instead.
723
728
  #
724
729
  #
725
730
  #
@@ -1022,6 +1027,8 @@ module Aws::ApplicationDiscoveryService
1022
1027
  # * {Types::GetDiscoverySummaryResponse#servers_mappedto_tags #servers_mappedto_tags} => Integer
1023
1028
  # * {Types::GetDiscoverySummaryResponse#agent_summary #agent_summary} => Types::CustomerAgentInfo
1024
1029
  # * {Types::GetDiscoverySummaryResponse#connector_summary #connector_summary} => Types::CustomerConnectorInfo
1030
+ # * {Types::GetDiscoverySummaryResponse#me_collector_summary #me_collector_summary} => Types::CustomerMeCollectorInfo
1031
+ # * {Types::GetDiscoverySummaryResponse#agentless_collector_summary #agentless_collector_summary} => Types::CustomerAgentlessCollectorInfo
1025
1032
  #
1026
1033
  # @example Response structure
1027
1034
  #
@@ -1043,6 +1050,20 @@ module Aws::ApplicationDiscoveryService
1043
1050
  # resp.connector_summary.unhealthy_connectors #=> Integer
1044
1051
  # resp.connector_summary.total_connectors #=> Integer
1045
1052
  # resp.connector_summary.unknown_connectors #=> Integer
1053
+ # resp.me_collector_summary.active_me_collectors #=> Integer
1054
+ # resp.me_collector_summary.healthy_me_collectors #=> Integer
1055
+ # resp.me_collector_summary.deny_listed_me_collectors #=> Integer
1056
+ # resp.me_collector_summary.shutdown_me_collectors #=> Integer
1057
+ # resp.me_collector_summary.unhealthy_me_collectors #=> Integer
1058
+ # resp.me_collector_summary.total_me_collectors #=> Integer
1059
+ # resp.me_collector_summary.unknown_me_collectors #=> Integer
1060
+ # resp.agentless_collector_summary.active_agentless_collectors #=> Integer
1061
+ # resp.agentless_collector_summary.healthy_agentless_collectors #=> Integer
1062
+ # resp.agentless_collector_summary.deny_listed_agentless_collectors #=> Integer
1063
+ # resp.agentless_collector_summary.shutdown_agentless_collectors #=> Integer
1064
+ # resp.agentless_collector_summary.unhealthy_agentless_collectors #=> Integer
1065
+ # resp.agentless_collector_summary.total_agentless_collectors #=> Integer
1066
+ # resp.agentless_collector_summary.unknown_agentless_collectors #=> Integer
1046
1067
  #
1047
1068
  # @overload get_discovery_summary(params = {})
1048
1069
  # @param [Hash] params ({})
@@ -1066,7 +1087,7 @@ module Aws::ApplicationDiscoveryService
1066
1087
  #
1067
1088
  # For a complete list of filter options and guidance about using them
1068
1089
  # with this action, see [Using the ListConfigurations Action][1] in the
1069
- # *AWS Application Discovery Service User Guide*.
1090
+ # *Amazon Web Services Application Discovery Service User Guide*.
1070
1091
  #
1071
1092
  #
1072
1093
  #
@@ -1085,8 +1106,8 @@ module Aws::ApplicationDiscoveryService
1085
1106
  # @option params [Array<Types::OrderByElement>] :order_by
1086
1107
  # Certain filter criteria return output that can be sorted in ascending
1087
1108
  # or descending order. For a list of output characteristics for each
1088
- # filter, see [Using the ListConfigurations Action][1] in the *AWS
1089
- # Application Discovery Service User Guide*.
1109
+ # filter, see [Using the ListConfigurations Action][1] in the *Amazon
1110
+ # Web Services Application Discovery Service User Guide*.
1090
1111
  #
1091
1112
  #
1092
1113
  #
@@ -1112,7 +1133,7 @@ module Aws::ApplicationDiscoveryService
1112
1133
  # next_token: "NextToken",
1113
1134
  # order_by: [
1114
1135
  # {
1115
- # field_name: "String", # required
1136
+ # field_name: "OrderByElementFieldName", # required
1116
1137
  # sort_order: "ASC", # accepts ASC, DESC
1117
1138
  # },
1118
1139
  # ],
@@ -1222,12 +1243,13 @@ module Aws::ApplicationDiscoveryService
1222
1243
  # @option params [required, Array<String>] :agent_ids
1223
1244
  # The IDs of the agents or connectors from which to start collecting
1224
1245
  # data. If you send a request to an agent/connector ID that you do not
1225
- # have permission to contact, according to your AWS account, the service
1226
- # does not throw an exception. Instead, it returns the error in the
1227
- # *Description* field. If you send a request to multiple
1228
- # agents/connectors and you do not have permission to contact some of
1229
- # those agents/connectors, the system does not throw an exception.
1230
- # Instead, the system shows `Failed` in the *Description* field.
1246
+ # have permission to contact, according to your Amazon Web Services
1247
+ # account, the service does not throw an exception. Instead, it returns
1248
+ # the error in the *Description* field. If you send a request to
1249
+ # multiple agents/connectors and you do not have permission to contact
1250
+ # some of those agents/connectors, the system does not throw an
1251
+ # exception. Instead, the system shows `Failed` in the *Description*
1252
+ # field.
1231
1253
  #
1232
1254
  # @return [Types::StartDataCollectionByAgentIdsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1233
1255
  #
@@ -1263,9 +1285,9 @@ module Aws::ApplicationDiscoveryService
1263
1285
  # concurrently running exports.
1264
1286
  #
1265
1287
  # If you do not include an `agentIds` filter, summary data is exported
1266
- # that includes both AWS Agentless Discovery Connector data and summary
1267
- # data from AWS Discovery Agents. Export of summary data is limited to
1268
- # two exports per day.
1288
+ # that includes both Amazon Web Services Agentless Discovery Connector
1289
+ # data and summary data from Amazon Web Services Discovery Agents.
1290
+ # Export of summary data is limited to two exports per day.
1269
1291
  #
1270
1292
  # @option params [Array<String>] :export_data_format
1271
1293
  # The file format for the returned export data. Default value is `CSV`.
@@ -1320,41 +1342,42 @@ module Aws::ApplicationDiscoveryService
1320
1342
  end
1321
1343
 
1322
1344
  # Starts an import task, which allows you to import details of your
1323
- # on-premises environment directly into AWS Migration Hub without having
1324
- # to use the Application Discovery Service (ADS) tools such as the
1325
- # Discovery Connector or Discovery Agent. This gives you the option to
1326
- # perform migration assessment and planning directly from your imported
1327
- # data, including the ability to group your devices as applications and
1328
- # track their migration status.
1345
+ # on-premises environment directly into Amazon Web Services Migration
1346
+ # Hub without having to use the Application Discovery Service (ADS)
1347
+ # tools such as the Discovery Connector or Discovery Agent. This gives
1348
+ # you the option to perform migration assessment and planning directly
1349
+ # from your imported data, including the ability to group your devices
1350
+ # as applications and track their migration status.
1329
1351
  #
1330
1352
  # To start an import request, do this:
1331
1353
  #
1332
1354
  # 1. Download the specially formatted comma separated value (CSV)
1333
1355
  # import template, which you can find here:
1334
- # [https://s3-us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import\_template.csv][1].
1356
+ # [https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import\_template.csv][1].
1335
1357
  #
1336
1358
  # 2. Fill out the template with your server and application data.
1337
1359
  #
1338
1360
  # 3. Upload your import file to an Amazon S3 bucket, and make a note of
1339
1361
  # it's Object URL. Your import file must be in the CSV format.
1340
1362
  #
1341
- # 4. Use the console or the `StartImportTask` command with the AWS CLI
1342
- # or one of the AWS SDKs to import the records from your file.
1363
+ # 4. Use the console or the `StartImportTask` command with the Amazon
1364
+ # Web Services CLI or one of the Amazon Web Services SDKs to import
1365
+ # the records from your file.
1343
1366
  #
1344
1367
  # For more information, including step-by-step procedures, see
1345
- # [Migration Hub Import][2] in the *AWS Application Discovery Service
1346
- # User Guide*.
1368
+ # [Migration Hub Import][2] in the *Amazon Web Services Application
1369
+ # Discovery Service User Guide*.
1347
1370
  #
1348
1371
  # <note markdown="1"> There are limits to the number of import tasks you can create (and
1349
- # delete) in an AWS account. For more information, see [AWS Application
1350
- # Discovery Service Limits][3] in the *AWS Application Discovery Service
1351
- # User Guide*.
1372
+ # delete) in an Amazon Web Services account. For more information, see
1373
+ # [Amazon Web Services Application Discovery Service Limits][3] in the
1374
+ # *Amazon Web Services Application Discovery Service User Guide*.
1352
1375
  #
1353
1376
  # </note>
1354
1377
  #
1355
1378
  #
1356
1379
  #
1357
- # [1]: https://s3-us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv
1380
+ # [1]: https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv
1358
1381
  # [2]: https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-import.html
1359
1382
  # [3]: https://docs.aws.amazon.com/application-discovery/latest/userguide/ads_service_limits.html
1360
1383
  #
@@ -1379,8 +1402,8 @@ module Aws::ApplicationDiscoveryService
1379
1402
  # @option params [required, String] :import_url
1380
1403
  # The URL for your import file that you've uploaded to Amazon S3.
1381
1404
  #
1382
- # <note markdown="1"> If you're using the AWS CLI, this URL is structured as follows:
1383
- # `s3://BucketName/ImportFileName.CSV`
1405
+ # <note markdown="1"> If you're using the Amazon Web Services CLI, this URL is structured
1406
+ # as follows: `s3://BucketName/ImportFileName.CSV`
1384
1407
  #
1385
1408
  # </note>
1386
1409
  #
@@ -1495,8 +1518,8 @@ module Aws::ApplicationDiscoveryService
1495
1518
  #
1496
1519
  # resp = client.update_application({
1497
1520
  # configuration_id: "ApplicationId", # required
1498
- # name: "String",
1499
- # description: "String",
1521
+ # name: "ApplicationName",
1522
+ # description: "ApplicationDescription",
1500
1523
  # })
1501
1524
  #
1502
1525
  # @overload update_application(params = {})
@@ -1519,7 +1542,7 @@ module Aws::ApplicationDiscoveryService
1519
1542
  params: params,
1520
1543
  config: config)
1521
1544
  context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
1522
- context[:gem_version] = '1.43.0'
1545
+ context[:gem_version] = '1.46.0'
1523
1546
  Seahorse::Client::Request.new(handlers, context)
1524
1547
  end
1525
1548
 
@@ -22,8 +22,10 @@ module Aws::ApplicationDiscoveryService
22
22
  AgentNetworkInfoList = Shapes::ListShape.new(name: 'AgentNetworkInfoList')
23
23
  AgentStatus = Shapes::StringShape.new(name: 'AgentStatus')
24
24
  AgentsInfo = Shapes::ListShape.new(name: 'AgentsInfo')
25
+ ApplicationDescription = Shapes::StringShape.new(name: 'ApplicationDescription')
25
26
  ApplicationId = Shapes::StringShape.new(name: 'ApplicationId')
26
27
  ApplicationIdsList = Shapes::ListShape.new(name: 'ApplicationIdsList')
28
+ ApplicationName = Shapes::StringShape.new(name: 'ApplicationName')
27
29
  AssociateConfigurationItemsToApplicationRequest = Shapes::StructureShape.new(name: 'AssociateConfigurationItemsToApplicationRequest')
28
30
  AssociateConfigurationItemsToApplicationResponse = Shapes::StructureShape.new(name: 'AssociateConfigurationItemsToApplicationResponse')
29
31
  AuthorizationErrorException = Shapes::StructureShape.new(name: 'AuthorizationErrorException')
@@ -56,7 +58,9 @@ module Aws::ApplicationDiscoveryService
56
58
  CreateTagsRequest = Shapes::StructureShape.new(name: 'CreateTagsRequest')
57
59
  CreateTagsResponse = Shapes::StructureShape.new(name: 'CreateTagsResponse')
58
60
  CustomerAgentInfo = Shapes::StructureShape.new(name: 'CustomerAgentInfo')
61
+ CustomerAgentlessCollectorInfo = Shapes::StructureShape.new(name: 'CustomerAgentlessCollectorInfo')
59
62
  CustomerConnectorInfo = Shapes::StructureShape.new(name: 'CustomerConnectorInfo')
63
+ CustomerMeCollectorInfo = Shapes::StructureShape.new(name: 'CustomerMeCollectorInfo')
60
64
  DataSource = Shapes::StringShape.new(name: 'DataSource')
61
65
  DatabaseName = Shapes::StringShape.new(name: 'DatabaseName')
62
66
  DeleteApplicationsRequest = Shapes::StructureShape.new(name: 'DeleteApplicationsRequest')
@@ -127,6 +131,7 @@ module Aws::ApplicationDiscoveryService
127
131
  NextToken = Shapes::StringShape.new(name: 'NextToken')
128
132
  OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
129
133
  OrderByElement = Shapes::StructureShape.new(name: 'OrderByElement')
134
+ OrderByElementFieldName = Shapes::StringShape.new(name: 'OrderByElementFieldName')
130
135
  OrderByList = Shapes::ListShape.new(name: 'OrderByList')
131
136
  ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
132
137
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
@@ -246,8 +251,8 @@ module Aws::ApplicationDiscoveryService
246
251
 
247
252
  ContinuousExportIds.member = Shapes::ShapeRef.new(shape: ConfigurationsExportId)
248
253
 
249
- CreateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
250
- CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
254
+ CreateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "name"))
255
+ CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "description"))
251
256
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
252
257
 
253
258
  CreateApplicationResponse.add_member(:configuration_id, Shapes::ShapeRef.new(shape: String, location_name: "configurationId"))
@@ -268,6 +273,15 @@ module Aws::ApplicationDiscoveryService
268
273
  CustomerAgentInfo.add_member(:unknown_agents, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unknownAgents"))
269
274
  CustomerAgentInfo.struct_class = Types::CustomerAgentInfo
270
275
 
276
+ CustomerAgentlessCollectorInfo.add_member(:active_agentless_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "activeAgentlessCollectors"))
277
+ CustomerAgentlessCollectorInfo.add_member(:healthy_agentless_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "healthyAgentlessCollectors"))
278
+ CustomerAgentlessCollectorInfo.add_member(:deny_listed_agentless_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "denyListedAgentlessCollectors"))
279
+ CustomerAgentlessCollectorInfo.add_member(:shutdown_agentless_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "shutdownAgentlessCollectors"))
280
+ CustomerAgentlessCollectorInfo.add_member(:unhealthy_agentless_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unhealthyAgentlessCollectors"))
281
+ CustomerAgentlessCollectorInfo.add_member(:total_agentless_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "totalAgentlessCollectors"))
282
+ CustomerAgentlessCollectorInfo.add_member(:unknown_agentless_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unknownAgentlessCollectors"))
283
+ CustomerAgentlessCollectorInfo.struct_class = Types::CustomerAgentlessCollectorInfo
284
+
271
285
  CustomerConnectorInfo.add_member(:active_connectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "activeConnectors"))
272
286
  CustomerConnectorInfo.add_member(:healthy_connectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "healthyConnectors"))
273
287
  CustomerConnectorInfo.add_member(:black_listed_connectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "blackListedConnectors"))
@@ -277,6 +291,15 @@ module Aws::ApplicationDiscoveryService
277
291
  CustomerConnectorInfo.add_member(:unknown_connectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unknownConnectors"))
278
292
  CustomerConnectorInfo.struct_class = Types::CustomerConnectorInfo
279
293
 
294
+ CustomerMeCollectorInfo.add_member(:active_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "activeMeCollectors"))
295
+ CustomerMeCollectorInfo.add_member(:healthy_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "healthyMeCollectors"))
296
+ CustomerMeCollectorInfo.add_member(:deny_listed_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "denyListedMeCollectors"))
297
+ CustomerMeCollectorInfo.add_member(:shutdown_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "shutdownMeCollectors"))
298
+ CustomerMeCollectorInfo.add_member(:unhealthy_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unhealthyMeCollectors"))
299
+ CustomerMeCollectorInfo.add_member(:total_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "totalMeCollectors"))
300
+ CustomerMeCollectorInfo.add_member(:unknown_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unknownMeCollectors"))
301
+ CustomerMeCollectorInfo.struct_class = Types::CustomerMeCollectorInfo
302
+
280
303
  DeleteApplicationsRequest.add_member(:configuration_ids, Shapes::ShapeRef.new(shape: ApplicationIdsList, required: true, location_name: "configurationIds"))
281
304
  DeleteApplicationsRequest.struct_class = Types::DeleteApplicationsRequest
282
305
 
@@ -406,6 +429,8 @@ module Aws::ApplicationDiscoveryService
406
429
  GetDiscoverySummaryResponse.add_member(:servers_mappedto_tags, Shapes::ShapeRef.new(shape: Long, location_name: "serversMappedtoTags"))
407
430
  GetDiscoverySummaryResponse.add_member(:agent_summary, Shapes::ShapeRef.new(shape: CustomerAgentInfo, location_name: "agentSummary"))
408
431
  GetDiscoverySummaryResponse.add_member(:connector_summary, Shapes::ShapeRef.new(shape: CustomerConnectorInfo, location_name: "connectorSummary"))
432
+ GetDiscoverySummaryResponse.add_member(:me_collector_summary, Shapes::ShapeRef.new(shape: CustomerMeCollectorInfo, location_name: "meCollectorSummary"))
433
+ GetDiscoverySummaryResponse.add_member(:agentless_collector_summary, Shapes::ShapeRef.new(shape: CustomerAgentlessCollectorInfo, location_name: "agentlessCollectorSummary"))
409
434
  GetDiscoverySummaryResponse.struct_class = Types::GetDiscoverySummaryResponse
410
435
 
411
436
  HomeRegionNotSetException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
@@ -475,7 +500,7 @@ module Aws::ApplicationDiscoveryService
475
500
  OperationNotPermittedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
476
501
  OperationNotPermittedException.struct_class = Types::OperationNotPermittedException
477
502
 
478
- OrderByElement.add_member(:field_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "fieldName"))
503
+ OrderByElement.add_member(:field_name, Shapes::ShapeRef.new(shape: OrderByElementFieldName, required: true, location_name: "fieldName"))
479
504
  OrderByElement.add_member(:sort_order, Shapes::ShapeRef.new(shape: orderString, location_name: "sortOrder"))
480
505
  OrderByElement.struct_class = Types::OrderByElement
481
506
 
@@ -553,8 +578,8 @@ module Aws::ApplicationDiscoveryService
553
578
  ToDeleteIdentifierList.member = Shapes::ShapeRef.new(shape: ImportTaskIdentifier)
554
579
 
555
580
  UpdateApplicationRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "configurationId"))
556
- UpdateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
557
- UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
581
+ UpdateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "name"))
582
+ UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "description"))
558
583
  UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
559
584
 
560
585
  UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
@@ -38,11 +38,11 @@ module Aws::ApplicationDiscoveryService
38
38
  include Aws::Structure
39
39
  end
40
40
 
41
- # Information about agents or connectors associated with the user’s AWS
42
- # account. Information includes agent or connector IDs, IP addresses,
43
- # media access control (MAC) addresses, agent or connector health,
44
- # hostname where the agent or connector resides, and agent version for
45
- # each agent.
41
+ # Information about agents or connectors associated with the user’s
42
+ # Amazon Web Services account. Information includes agent or connector
43
+ # IDs, IP addresses, media access control (MAC) addresses, agent or
44
+ # connector health, hostname where the agent or connector resides, and
45
+ # agent version for each agent.
46
46
  #
47
47
  # @!attribute [rw] agent_id
48
48
  # The agent or connector ID.
@@ -144,8 +144,8 @@ module Aws::ApplicationDiscoveryService
144
144
 
145
145
  class AssociateConfigurationItemsToApplicationResponse < Aws::EmptyStructure; end
146
146
 
147
- # The AWS user account does not have permission to perform the action.
148
- # Check the IAM policy associated with this account.
147
+ # The Amazon Web Services user account does not have permission to
148
+ # perform the action. Check the IAM policy associated with this account.
149
149
  #
150
150
  # @!attribute [rw] message
151
151
  # @return [String]
@@ -288,10 +288,10 @@ module Aws::ApplicationDiscoveryService
288
288
  # type can have the following values:
289
289
  #
290
290
  # * ACCESS\_DENIED - You don’t have permission to start Data
291
- # Exploration in Amazon Athena. Contact your AWS administrator for
292
- # help. For more information, see [Setting Up AWS Application
293
- # Discovery Service][1] in the Application Discovery Service User
294
- # Guide.
291
+ # Exploration in Amazon Athena. Contact your Amazon Web Services
292
+ # administrator for help. For more information, see [Setting Up
293
+ # Amazon Web Services Application Discovery Service][1] in the
294
+ # Application Discovery Service User Guide.
295
295
  #
296
296
  # * DELIVERY\_STREAM\_LIMIT\_FAILURE - You reached the limit for
297
297
  # Amazon Kinesis Data Firehose delivery streams. Reduce the number
@@ -313,25 +313,61 @@ module Aws::ApplicationDiscoveryService
313
313
  #
314
314
  # * INTERNAL\_FAILURE - The Data Exploration feature is in an error
315
315
  # state because of an internal failure. Try again later. If this
316
- # problem persists, contact AWS Support.
316
+ # problem persists, contact Amazon Web Services Support.
317
+ #
318
+ # * LAKE\_FORMATION\_ACCESS\_DENIED - You don't have sufficient lake
319
+ # formation permissions to start continuous export. For more
320
+ # information, see [ Upgrading Amazon Web Services Glue Data
321
+ # Permissions to the Amazon Web Services Lake Formation Model ][4]
322
+ # in the Amazon Web Services *Lake Formation Developer Guide*.
323
+ #
324
+ # You can use one of the following two ways to resolve this issue.
325
+ #
326
+ # 1. If you don’t want to use the Lake Formation permission model,
327
+ # you can change the default Data Catalog settings to use only
328
+ # Amazon Web Services Identity and Access Management (IAM)
329
+ # access control for new databases. For more information, see
330
+ # [Change Data Catalog Settings][5] in the *Lake Formation
331
+ # Developer Guide*.
332
+ #
333
+ # 2. You can give the service-linked IAM roles
334
+ # AWSServiceRoleForApplicationDiscoveryServiceContinuousExport
335
+ # and AWSApplicationDiscoveryServiceFirehose the required Lake
336
+ # Formation permissions. For more information, see [ Granting
337
+ # Database Permissions][6] in the *Lake Formation Developer
338
+ # Guide*.
339
+ #
340
+ # 1. AWSServiceRoleForApplicationDiscoveryServiceContinuousExport
341
+ # - Grant database creator permissions, which gives the role
342
+ # database creation ability and implicit permissions for any
343
+ # created tables. For more information, see [ Implicit Lake
344
+ # Formation Permissions ][7] in the *Lake Formation
345
+ # Developer Guide*.
346
+ #
347
+ # 2. AWSApplicationDiscoveryServiceFirehose - Grant describe
348
+ # permissions for all tables in the database.
317
349
  #
318
350
  # * S3\_BUCKET\_LIMIT\_FAILURE - You reached the limit for Amazon S3
319
- # buckets. Reduce the number of Amazon S3 buckets or request a limit
351
+ # buckets. Reduce the number of S3 buckets or request a limit
320
352
  # increase and try again. For more information, see [Bucket
321
- # Restrictions and Limitations][4] in the Amazon Simple Storage
353
+ # Restrictions and Limitations][8] in the Amazon Simple Storage
322
354
  # Service Developer Guide.
323
355
  #
324
356
  # * S3\_NOT\_SIGNED\_UP - Your account is not signed up for the Amazon
325
357
  # S3 service. You must sign up before you can use Amazon S3. You can
326
- # sign up at the following URL: [https://aws.amazon.com/s3][5].
358
+ # sign up at the following URL: [https://aws.amazon.com/s3][9].
327
359
  #
328
360
  #
329
361
  #
330
362
  # [1]: http://docs.aws.amazon.com/application-discovery/latest/userguide/setting-up.html
331
363
  # [2]: http://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html
332
364
  # [3]: http://docs.aws.amazon.com/application-discovery/latest/userguide/setting-up.html#setting-up-user-policy
333
- # [4]: http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
334
- # [5]: https://aws.amazon.com/s3
365
+ # [4]: http://docs.aws.amazon.com/lake-formation/latest/dg/upgrade-glue-lake-formation.html
366
+ # [5]: https://docs.aws.amazon.com/lake-formation/latest/dg/getting-started-setup.html#setup-change-cat-settings
367
+ # [6]: https://docs.aws.amazon.com/lake-formation/latest/dg/granting-database-permissions.html
368
+ # [7]: https://docs.aws.amazon.com/lake-formation/latest/dg/implicit-permissions.html
369
+ # [8]: http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
370
+ # [9]: https://aws.amazon.com/s3
335
371
  # @return [String]
336
372
  #
337
373
  # @!attribute [rw] s3_bucket
@@ -379,8 +415,8 @@ module Aws::ApplicationDiscoveryService
379
415
  # data as a hash:
380
416
  #
381
417
  # {
382
- # name: "String", # required
383
- # description: "String",
418
+ # name: "ApplicationName", # required
419
+ # description: "ApplicationDescription",
384
420
  # }
385
421
  #
386
422
  # @!attribute [rw] name
@@ -484,6 +520,39 @@ module Aws::ApplicationDiscoveryService
484
520
  include Aws::Structure
485
521
  end
486
522
 
523
+ # @!attribute [rw] active_agentless_collectors
524
+ # @return [Integer]
525
+ #
526
+ # @!attribute [rw] healthy_agentless_collectors
527
+ # @return [Integer]
528
+ #
529
+ # @!attribute [rw] deny_listed_agentless_collectors
530
+ # @return [Integer]
531
+ #
532
+ # @!attribute [rw] shutdown_agentless_collectors
533
+ # @return [Integer]
534
+ #
535
+ # @!attribute [rw] unhealthy_agentless_collectors
536
+ # @return [Integer]
537
+ #
538
+ # @!attribute [rw] total_agentless_collectors
539
+ # @return [Integer]
540
+ #
541
+ # @!attribute [rw] unknown_agentless_collectors
542
+ # @return [Integer]
543
+ #
544
+ class CustomerAgentlessCollectorInfo < Struct.new(
545
+ :active_agentless_collectors,
546
+ :healthy_agentless_collectors,
547
+ :deny_listed_agentless_collectors,
548
+ :shutdown_agentless_collectors,
549
+ :unhealthy_agentless_collectors,
550
+ :total_agentless_collectors,
551
+ :unknown_agentless_collectors)
552
+ SENSITIVE = []
553
+ include Aws::Structure
554
+ end
555
+
487
556
  # Inventory data for installed discovery connectors.
488
557
  #
489
558
  # @!attribute [rw] active_connectors
@@ -526,6 +595,48 @@ module Aws::ApplicationDiscoveryService
526
595
  include Aws::Structure
527
596
  end
528
597
 
598
+ # The inventory data for installed Migration Evaluator collectors.
599
+ #
600
+ # @!attribute [rw] active_me_collectors
601
+ # The number of active Migration Evaluator collectors.
602
+ # @return [Integer]
603
+ #
604
+ # @!attribute [rw] healthy_me_collectors
605
+ # The number of healthy Migration Evaluator collectors.
606
+ # @return [Integer]
607
+ #
608
+ # @!attribute [rw] deny_listed_me_collectors
609
+ # The number of deny-listed Migration Evaluator collectors.
610
+ # @return [Integer]
611
+ #
612
+ # @!attribute [rw] shutdown_me_collectors
613
+ # The number of Migration Evaluator collectors with `SHUTDOWN` status.
614
+ # @return [Integer]
615
+ #
616
+ # @!attribute [rw] unhealthy_me_collectors
617
+ # The number of unhealthy Migration Evaluator collectors.
618
+ # @return [Integer]
619
+ #
620
+ # @!attribute [rw] total_me_collectors
621
+ # The total number of Migration Evaluator collectors.
622
+ # @return [Integer]
623
+ #
624
+ # @!attribute [rw] unknown_me_collectors
625
+ # The number of unknown Migration Evaluator collectors.
626
+ # @return [Integer]
627
+ #
628
+ class CustomerMeCollectorInfo < Struct.new(
629
+ :active_me_collectors,
630
+ :healthy_me_collectors,
631
+ :deny_listed_me_collectors,
632
+ :shutdown_me_collectors,
633
+ :unhealthy_me_collectors,
634
+ :total_me_collectors,
635
+ :unknown_me_collectors)
636
+ SENSITIVE = []
637
+ include Aws::Structure
638
+ end
639
+
529
640
  # @note When making an API call, you may pass DeleteApplicationsRequest
530
641
  # data as a hash:
531
642
  #
@@ -598,7 +709,8 @@ module Aws::ApplicationDiscoveryService
598
709
  # @!attribute [rw] agent_ids
599
710
  # The agent or the Connector IDs for which you want information. If
600
711
  # you specify no IDs, the system returns information about all
601
- # agents/Connectors associated with your AWS user account.
712
+ # agents/Connectors associated with your Amazon Web Services user
713
+ # account.
602
714
  # @return [Array<String>]
603
715
  #
604
716
  # @!attribute [rw] filters
@@ -1007,17 +1119,17 @@ module Aws::ApplicationDiscoveryService
1007
1119
  # }
1008
1120
  #
1009
1121
  # @!attribute [rw] name
1010
- # A single `ExportFilter` name. Supported filters: `agentId`.
1122
+ # A single `ExportFilter` name. Supported filters: `agentIds`.
1011
1123
  # @return [String]
1012
1124
  #
1013
1125
  # @!attribute [rw] values
1014
- # A single `agentId` for a Discovery Agent. An `agentId` can be found
1015
- # using the [DescribeAgents][1] action. Typically an ADS `agentId` is
1126
+ # A single agent ID for a Discovery Agent. An agent ID can be found
1127
+ # using the [DescribeAgents][1] action. Typically an ADS agent ID is
1016
1128
  # in the form `o-0123456789abcdef0`.
1017
1129
  #
1018
1130
  #
1019
1131
  #
1020
- # [1]: http://docs.aws.amazon.com/application-discovery/latest/APIReference/API_DescribeExportTasks.html
1132
+ # [1]: http://docs.aws.amazon.com/application-discovery/latest/APIReference/API_DescribeAgents.html
1021
1133
  # @return [Array<String>]
1022
1134
  #
1023
1135
  # @!attribute [rw] condition
@@ -1090,8 +1202,8 @@ module Aws::ApplicationDiscoveryService
1090
1202
  # A filter that can use conditional operators.
1091
1203
  #
1092
1204
  # For more information about filters, see [Querying Discovered
1093
- # Configuration Items][1] in the *AWS Application Discovery Service User
1094
- # Guide*.
1205
+ # Configuration Items][1] in the *Amazon Web Services Application
1206
+ # Discovery Service User Guide*.
1095
1207
  #
1096
1208
  #
1097
1209
  #
@@ -1163,13 +1275,23 @@ module Aws::ApplicationDiscoveryService
1163
1275
  # health.
1164
1276
  # @return [Types::CustomerConnectorInfo]
1165
1277
  #
1278
+ # @!attribute [rw] me_collector_summary
1279
+ # Details about Migration Evaluator collectors, including collector
1280
+ # status and health.
1281
+ # @return [Types::CustomerMeCollectorInfo]
1282
+ #
1283
+ # @!attribute [rw] agentless_collector_summary
1284
+ # @return [Types::CustomerAgentlessCollectorInfo]
1285
+ #
1166
1286
  class GetDiscoverySummaryResponse < Struct.new(
1167
1287
  :servers,
1168
1288
  :applications,
1169
1289
  :servers_mapped_to_applications,
1170
1290
  :servers_mappedto_tags,
1171
1291
  :agent_summary,
1172
- :connector_summary)
1292
+ :connector_summary,
1293
+ :me_collector_summary,
1294
+ :agentless_collector_summary)
1173
1295
  SENSITIVE = []
1174
1296
  include Aws::Structure
1175
1297
  end
@@ -1191,7 +1313,7 @@ module Aws::ApplicationDiscoveryService
1191
1313
  #
1192
1314
  # @!attribute [rw] import_task_id
1193
1315
  # The unique ID for a specific import task. These IDs aren't globally
1194
- # unique, but they are unique within an AWS account.
1316
+ # unique, but they are unique within an Amazon Web Services account.
1195
1317
  # @return [String]
1196
1318
  #
1197
1319
  # @!attribute [rw] client_request_token
@@ -1364,7 +1486,7 @@ module Aws::ApplicationDiscoveryService
1364
1486
  # next_token: "NextToken",
1365
1487
  # order_by: [
1366
1488
  # {
1367
- # field_name: "String", # required
1489
+ # field_name: "OrderByElementFieldName", # required
1368
1490
  # sort_order: "ASC", # accepts ASC, DESC
1369
1491
  # },
1370
1492
  # ],
@@ -1382,7 +1504,7 @@ module Aws::ApplicationDiscoveryService
1382
1504
  #
1383
1505
  # For a complete list of filter options and guidance about using them
1384
1506
  # with this action, see [Using the ListConfigurations Action][1] in
1385
- # the *AWS Application Discovery Service User Guide*.
1507
+ # the *Amazon Web Services Application Discovery Service User Guide*.
1386
1508
  #
1387
1509
  #
1388
1510
  #
@@ -1405,7 +1527,7 @@ module Aws::ApplicationDiscoveryService
1405
1527
  # Certain filter criteria return output that can be sorted in
1406
1528
  # ascending or descending order. For a list of output characteristics
1407
1529
  # for each filter, see [Using the ListConfigurations Action][1] in the
1408
- # *AWS Application Discovery Service User Guide*.
1530
+ # *Amazon Web Services Application Discovery Service User Guide*.
1409
1531
  #
1410
1532
  #
1411
1533
  #
@@ -1565,7 +1687,7 @@ module Aws::ApplicationDiscoveryService
1565
1687
  # data as a hash:
1566
1688
  #
1567
1689
  # {
1568
- # field_name: "String", # required
1690
+ # field_name: "OrderByElementFieldName", # required
1569
1691
  # sort_order: "ASC", # accepts ASC, DESC
1570
1692
  # }
1571
1693
  #
@@ -1673,12 +1795,13 @@ module Aws::ApplicationDiscoveryService
1673
1795
  # @!attribute [rw] agent_ids
1674
1796
  # The IDs of the agents or connectors from which to start collecting
1675
1797
  # data. If you send a request to an agent/connector ID that you do not
1676
- # have permission to contact, according to your AWS account, the
1677
- # service does not throw an exception. Instead, it returns the error
1678
- # in the *Description* field. If you send a request to multiple
1679
- # agents/connectors and you do not have permission to contact some of
1680
- # those agents/connectors, the system does not throw an exception.
1681
- # Instead, the system shows `Failed` in the *Description* field.
1798
+ # have permission to contact, according to your Amazon Web Services
1799
+ # account, the service does not throw an exception. Instead, it
1800
+ # returns the error in the *Description* field. If you send a request
1801
+ # to multiple agents/connectors and you do not have permission to
1802
+ # contact some of those agents/connectors, the system does not throw
1803
+ # an exception. Instead, the system shows `Failed` in the
1804
+ # *Description* field.
1682
1805
  # @return [Array<String>]
1683
1806
  #
1684
1807
  class StartDataCollectionByAgentIdsRequest < Struct.new(
@@ -1794,8 +1917,8 @@ module Aws::ApplicationDiscoveryService
1794
1917
  # @!attribute [rw] import_url
1795
1918
  # The URL for your import file that you've uploaded to Amazon S3.
1796
1919
  #
1797
- # <note markdown="1"> If you're using the AWS CLI, this URL is structured as follows:
1798
- # `s3://BucketName/ImportFileName.CSV`
1920
+ # <note markdown="1"> If you're using the Amazon Web Services CLI, this URL is structured
1921
+ # as follows: `s3://BucketName/ImportFileName.CSV`
1799
1922
  #
1800
1923
  # </note>
1801
1924
  # @return [String]
@@ -1886,6 +2009,8 @@ module Aws::ApplicationDiscoveryService
1886
2009
 
1887
2010
  # Metadata that help you categorize IT assets.
1888
2011
  #
2012
+ # Do not store sensitive information (like personal data) in tags.
2013
+ #
1889
2014
  # @note When making an API call, you may pass Tag
1890
2015
  # data as a hash:
1891
2016
  #
@@ -1940,8 +2065,8 @@ module Aws::ApplicationDiscoveryService
1940
2065
  #
1941
2066
  # {
1942
2067
  # configuration_id: "ApplicationId", # required
1943
- # name: "String",
1944
- # description: "String",
2068
+ # name: "ApplicationName",
2069
+ # description: "ApplicationDescription",
1945
2070
  # }
1946
2071
  #
1947
2072
  # @!attribute [rw] configuration_id
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-applicationdiscoveryservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ApplicationDiscoveryService
50
50
 
51
- GEM_VERSION = '1.43.0'
51
+ GEM_VERSION = '1.46.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationdiscoveryservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.46.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: 2022-02-03 00:00:00.000000000 Z
11
+ date: 2022-07-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.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement