aws-sdk-applicationdiscoveryservice 1.42.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationdiscoveryservice/client.rb +61 -44
- data/lib/aws-sdk-applicationdiscoveryservice/client_api.rb +19 -5
- data/lib/aws-sdk-applicationdiscoveryservice/types.rb +130 -42
- data/lib/aws-sdk-applicationdiscoveryservice.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 934c2c8dacea643b4fb9daf6153ef2e36eda19b241fd73ceedc49903b6776e5f
|
4
|
+
data.tar.gz: 2772413d5cae76de7057fef9ae33828ad565df75e73e1cc008d55c075fd65ee7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1b517585c506f5d50aef2b1f28d402dcc7587dc78985bcba0b5df65472eabb21e9ef8e4bc7a167f14e524e6f414d7a417b172b80ad6a7fa4b1319f4e2f6ee2a
|
7
|
+
data.tar.gz: 2ee002dafe6ec90b52c8659edb74161af48a586d9c6257dafc9db00e63ab408d8ac2fff9946621672e1877cef26d0fda8cbf01303c8b84d9c3d1362a0e301ce6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2022-05-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add Migration Evaluator Collector details to the GetDiscoverySummary API response
|
8
|
+
|
9
|
+
1.44.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.43.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.42.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
@@ -27,7 +27,9 @@ 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'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::ApplicationDiscoveryService
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
80
84
|
|
@@ -387,11 +391,11 @@ module Aws::ApplicationDiscoveryService
|
|
387
391
|
# Each import task has a number of records that can identify servers or
|
388
392
|
# applications.
|
389
393
|
#
|
390
|
-
#
|
391
|
-
# will identify when discovered servers match
|
392
|
-
# you've previously discovered, the information
|
393
|
-
# already-existing discovered server is updated. When you delete
|
394
|
-
# 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
|
395
399
|
# information in those matched records that comes from the deleted
|
396
400
|
# records will also be deleted.
|
397
401
|
#
|
@@ -437,8 +441,8 @@ module Aws::ApplicationDiscoveryService
|
|
437
441
|
# @example Request syntax with placeholder values
|
438
442
|
#
|
439
443
|
# resp = client.create_application({
|
440
|
-
# name: "
|
441
|
-
# description: "
|
444
|
+
# name: "ApplicationName", # required
|
445
|
+
# description: "ApplicationDescription",
|
442
446
|
# })
|
443
447
|
#
|
444
448
|
# @example Response structure
|
@@ -456,6 +460,8 @@ module Aws::ApplicationDiscoveryService
|
|
456
460
|
# that help you categorize IT assets. This API accepts a list of
|
457
461
|
# multiple configuration items.
|
458
462
|
#
|
463
|
+
# Do not store sensitive information (like personal data) in tags.
|
464
|
+
#
|
459
465
|
# @option params [required, Array<String>] :configuration_ids
|
460
466
|
# A list of configuration items that you want to tag.
|
461
467
|
#
|
@@ -549,7 +555,8 @@ module Aws::ApplicationDiscoveryService
|
|
549
555
|
# @option params [Array<String>] :agent_ids
|
550
556
|
# The agent or the Connector IDs for which you want information. If you
|
551
557
|
# specify no IDs, the system returns information about all
|
552
|
-
# agents/Connectors associated with your
|
558
|
+
# agents/Connectors associated with your Amazon Web Services user
|
559
|
+
# account.
|
553
560
|
#
|
554
561
|
# @option params [Array<Types::Filter>] :filters
|
555
562
|
# You can filter the request using various logical operators and a
|
@@ -631,8 +638,8 @@ module Aws::ApplicationDiscoveryService
|
|
631
638
|
# number of network cards, etc.
|
632
639
|
#
|
633
640
|
# For a complete list of outputs for each asset type, see [Using the
|
634
|
-
# DescribeConfigurations Action][1] in the *
|
635
|
-
# Service User Guide*.
|
641
|
+
# DescribeConfigurations Action][1] in the *Amazon Web Services
|
642
|
+
# Application Discovery Service User Guide*.
|
636
643
|
#
|
637
644
|
# </note>
|
638
645
|
#
|
@@ -717,7 +724,7 @@ module Aws::ApplicationDiscoveryService
|
|
717
724
|
end
|
718
725
|
|
719
726
|
# `DescribeExportConfigurations` is deprecated. Use
|
720
|
-
# [
|
727
|
+
# [DescribeExportTasks][1], instead.
|
721
728
|
#
|
722
729
|
#
|
723
730
|
#
|
@@ -1020,6 +1027,7 @@ module Aws::ApplicationDiscoveryService
|
|
1020
1027
|
# * {Types::GetDiscoverySummaryResponse#servers_mappedto_tags #servers_mappedto_tags} => Integer
|
1021
1028
|
# * {Types::GetDiscoverySummaryResponse#agent_summary #agent_summary} => Types::CustomerAgentInfo
|
1022
1029
|
# * {Types::GetDiscoverySummaryResponse#connector_summary #connector_summary} => Types::CustomerConnectorInfo
|
1030
|
+
# * {Types::GetDiscoverySummaryResponse#me_collector_summary #me_collector_summary} => Types::CustomerMeCollectorInfo
|
1023
1031
|
#
|
1024
1032
|
# @example Response structure
|
1025
1033
|
#
|
@@ -1041,6 +1049,13 @@ module Aws::ApplicationDiscoveryService
|
|
1041
1049
|
# resp.connector_summary.unhealthy_connectors #=> Integer
|
1042
1050
|
# resp.connector_summary.total_connectors #=> Integer
|
1043
1051
|
# resp.connector_summary.unknown_connectors #=> Integer
|
1052
|
+
# resp.me_collector_summary.active_me_collectors #=> Integer
|
1053
|
+
# resp.me_collector_summary.healthy_me_collectors #=> Integer
|
1054
|
+
# resp.me_collector_summary.deny_listed_me_collectors #=> Integer
|
1055
|
+
# resp.me_collector_summary.shutdown_me_collectors #=> Integer
|
1056
|
+
# resp.me_collector_summary.unhealthy_me_collectors #=> Integer
|
1057
|
+
# resp.me_collector_summary.total_me_collectors #=> Integer
|
1058
|
+
# resp.me_collector_summary.unknown_me_collectors #=> Integer
|
1044
1059
|
#
|
1045
1060
|
# @overload get_discovery_summary(params = {})
|
1046
1061
|
# @param [Hash] params ({})
|
@@ -1064,7 +1079,7 @@ module Aws::ApplicationDiscoveryService
|
|
1064
1079
|
#
|
1065
1080
|
# For a complete list of filter options and guidance about using them
|
1066
1081
|
# with this action, see [Using the ListConfigurations Action][1] in the
|
1067
|
-
# *
|
1082
|
+
# *Amazon Web Services Application Discovery Service User Guide*.
|
1068
1083
|
#
|
1069
1084
|
#
|
1070
1085
|
#
|
@@ -1083,8 +1098,8 @@ module Aws::ApplicationDiscoveryService
|
|
1083
1098
|
# @option params [Array<Types::OrderByElement>] :order_by
|
1084
1099
|
# Certain filter criteria return output that can be sorted in ascending
|
1085
1100
|
# or descending order. For a list of output characteristics for each
|
1086
|
-
# filter, see [Using the ListConfigurations Action][1] in the *
|
1087
|
-
# Application Discovery Service User Guide*.
|
1101
|
+
# filter, see [Using the ListConfigurations Action][1] in the *Amazon
|
1102
|
+
# Web Services Application Discovery Service User Guide*.
|
1088
1103
|
#
|
1089
1104
|
#
|
1090
1105
|
#
|
@@ -1110,7 +1125,7 @@ module Aws::ApplicationDiscoveryService
|
|
1110
1125
|
# next_token: "NextToken",
|
1111
1126
|
# order_by: [
|
1112
1127
|
# {
|
1113
|
-
# field_name: "
|
1128
|
+
# field_name: "OrderByElementFieldName", # required
|
1114
1129
|
# sort_order: "ASC", # accepts ASC, DESC
|
1115
1130
|
# },
|
1116
1131
|
# ],
|
@@ -1220,12 +1235,13 @@ module Aws::ApplicationDiscoveryService
|
|
1220
1235
|
# @option params [required, Array<String>] :agent_ids
|
1221
1236
|
# The IDs of the agents or connectors from which to start collecting
|
1222
1237
|
# data. If you send a request to an agent/connector ID that you do not
|
1223
|
-
# have permission to contact, according to your
|
1224
|
-
# does not throw an exception. Instead, it returns
|
1225
|
-
# *Description* field. If you send a request to
|
1226
|
-
# agents/connectors and you do not have permission to contact
|
1227
|
-
# those agents/connectors, the system does not throw an
|
1228
|
-
# Instead, the system shows `Failed` in the *Description*
|
1238
|
+
# have permission to contact, according to your Amazon Web Services
|
1239
|
+
# account, the service does not throw an exception. Instead, it returns
|
1240
|
+
# the error in the *Description* field. If you send a request to
|
1241
|
+
# multiple agents/connectors and you do not have permission to contact
|
1242
|
+
# some of those agents/connectors, the system does not throw an
|
1243
|
+
# exception. Instead, the system shows `Failed` in the *Description*
|
1244
|
+
# field.
|
1229
1245
|
#
|
1230
1246
|
# @return [Types::StartDataCollectionByAgentIdsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1231
1247
|
#
|
@@ -1261,9 +1277,9 @@ module Aws::ApplicationDiscoveryService
|
|
1261
1277
|
# concurrently running exports.
|
1262
1278
|
#
|
1263
1279
|
# If you do not include an `agentIds` filter, summary data is exported
|
1264
|
-
# that includes both
|
1265
|
-
# data
|
1266
|
-
# two exports per day.
|
1280
|
+
# that includes both Amazon Web Services Agentless Discovery Connector
|
1281
|
+
# data and summary data from Amazon Web Services Discovery Agents.
|
1282
|
+
# Export of summary data is limited to two exports per day.
|
1267
1283
|
#
|
1268
1284
|
# @option params [Array<String>] :export_data_format
|
1269
1285
|
# The file format for the returned export data. Default value is `CSV`.
|
@@ -1318,41 +1334,42 @@ module Aws::ApplicationDiscoveryService
|
|
1318
1334
|
end
|
1319
1335
|
|
1320
1336
|
# Starts an import task, which allows you to import details of your
|
1321
|
-
# on-premises environment directly into
|
1322
|
-
# to use the Application Discovery Service (ADS)
|
1323
|
-
# Discovery Connector or Discovery Agent. This gives
|
1324
|
-
# perform migration assessment and planning directly
|
1325
|
-
# data, including the ability to group your devices
|
1326
|
-
# track their migration status.
|
1337
|
+
# on-premises environment directly into Amazon Web Services Migration
|
1338
|
+
# Hub without having to use the Application Discovery Service (ADS)
|
1339
|
+
# tools such as the Discovery Connector or Discovery Agent. This gives
|
1340
|
+
# you the option to perform migration assessment and planning directly
|
1341
|
+
# from your imported data, including the ability to group your devices
|
1342
|
+
# as applications and track their migration status.
|
1327
1343
|
#
|
1328
1344
|
# To start an import request, do this:
|
1329
1345
|
#
|
1330
1346
|
# 1. Download the specially formatted comma separated value (CSV)
|
1331
1347
|
# import template, which you can find here:
|
1332
|
-
# [https://s3
|
1348
|
+
# [https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import\_template.csv][1].
|
1333
1349
|
#
|
1334
1350
|
# 2. Fill out the template with your server and application data.
|
1335
1351
|
#
|
1336
1352
|
# 3. Upload your import file to an Amazon S3 bucket, and make a note of
|
1337
1353
|
# it's Object URL. Your import file must be in the CSV format.
|
1338
1354
|
#
|
1339
|
-
# 4. Use the console or the `StartImportTask` command with the
|
1340
|
-
# or one of the
|
1355
|
+
# 4. Use the console or the `StartImportTask` command with the Amazon
|
1356
|
+
# Web Services CLI or one of the Amazon Web Services SDKs to import
|
1357
|
+
# the records from your file.
|
1341
1358
|
#
|
1342
1359
|
# For more information, including step-by-step procedures, see
|
1343
|
-
# [Migration Hub Import][2] in the *
|
1344
|
-
# User Guide*.
|
1360
|
+
# [Migration Hub Import][2] in the *Amazon Web Services Application
|
1361
|
+
# Discovery Service User Guide*.
|
1345
1362
|
#
|
1346
1363
|
# <note markdown="1"> There are limits to the number of import tasks you can create (and
|
1347
|
-
# delete) in an
|
1348
|
-
# Discovery Service Limits][3] in the
|
1349
|
-
# User Guide*.
|
1364
|
+
# delete) in an Amazon Web Services account. For more information, see
|
1365
|
+
# [Amazon Web Services Application Discovery Service Limits][3] in the
|
1366
|
+
# *Amazon Web Services Application Discovery Service User Guide*.
|
1350
1367
|
#
|
1351
1368
|
# </note>
|
1352
1369
|
#
|
1353
1370
|
#
|
1354
1371
|
#
|
1355
|
-
# [1]: https://s3
|
1372
|
+
# [1]: https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv
|
1356
1373
|
# [2]: https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-import.html
|
1357
1374
|
# [3]: https://docs.aws.amazon.com/application-discovery/latest/userguide/ads_service_limits.html
|
1358
1375
|
#
|
@@ -1377,8 +1394,8 @@ module Aws::ApplicationDiscoveryService
|
|
1377
1394
|
# @option params [required, String] :import_url
|
1378
1395
|
# The URL for your import file that you've uploaded to Amazon S3.
|
1379
1396
|
#
|
1380
|
-
# <note markdown="1"> If you're using the
|
1381
|
-
# `s3://BucketName/ImportFileName.CSV`
|
1397
|
+
# <note markdown="1"> If you're using the Amazon Web Services CLI, this URL is structured
|
1398
|
+
# as follows: `s3://BucketName/ImportFileName.CSV`
|
1382
1399
|
#
|
1383
1400
|
# </note>
|
1384
1401
|
#
|
@@ -1493,8 +1510,8 @@ module Aws::ApplicationDiscoveryService
|
|
1493
1510
|
#
|
1494
1511
|
# resp = client.update_application({
|
1495
1512
|
# configuration_id: "ApplicationId", # required
|
1496
|
-
# name: "
|
1497
|
-
# description: "
|
1513
|
+
# name: "ApplicationName",
|
1514
|
+
# description: "ApplicationDescription",
|
1498
1515
|
# })
|
1499
1516
|
#
|
1500
1517
|
# @overload update_application(params = {})
|
@@ -1517,7 +1534,7 @@ module Aws::ApplicationDiscoveryService
|
|
1517
1534
|
params: params,
|
1518
1535
|
config: config)
|
1519
1536
|
context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
|
1520
|
-
context[:gem_version] = '1.
|
1537
|
+
context[:gem_version] = '1.45.0'
|
1521
1538
|
Seahorse::Client::Request.new(handlers, context)
|
1522
1539
|
end
|
1523
1540
|
|
@@ -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')
|
@@ -57,6 +59,7 @@ module Aws::ApplicationDiscoveryService
|
|
57
59
|
CreateTagsResponse = Shapes::StructureShape.new(name: 'CreateTagsResponse')
|
58
60
|
CustomerAgentInfo = Shapes::StructureShape.new(name: 'CustomerAgentInfo')
|
59
61
|
CustomerConnectorInfo = Shapes::StructureShape.new(name: 'CustomerConnectorInfo')
|
62
|
+
CustomerMeCollectorInfo = Shapes::StructureShape.new(name: 'CustomerMeCollectorInfo')
|
60
63
|
DataSource = Shapes::StringShape.new(name: 'DataSource')
|
61
64
|
DatabaseName = Shapes::StringShape.new(name: 'DatabaseName')
|
62
65
|
DeleteApplicationsRequest = Shapes::StructureShape.new(name: 'DeleteApplicationsRequest')
|
@@ -127,6 +130,7 @@ module Aws::ApplicationDiscoveryService
|
|
127
130
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
128
131
|
OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
|
129
132
|
OrderByElement = Shapes::StructureShape.new(name: 'OrderByElement')
|
133
|
+
OrderByElementFieldName = Shapes::StringShape.new(name: 'OrderByElementFieldName')
|
130
134
|
OrderByList = Shapes::ListShape.new(name: 'OrderByList')
|
131
135
|
ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
|
132
136
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
@@ -246,8 +250,8 @@ module Aws::ApplicationDiscoveryService
|
|
246
250
|
|
247
251
|
ContinuousExportIds.member = Shapes::ShapeRef.new(shape: ConfigurationsExportId)
|
248
252
|
|
249
|
-
CreateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
250
|
-
CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape:
|
253
|
+
CreateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "name"))
|
254
|
+
CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "description"))
|
251
255
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
252
256
|
|
253
257
|
CreateApplicationResponse.add_member(:configuration_id, Shapes::ShapeRef.new(shape: String, location_name: "configurationId"))
|
@@ -277,6 +281,15 @@ module Aws::ApplicationDiscoveryService
|
|
277
281
|
CustomerConnectorInfo.add_member(:unknown_connectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unknownConnectors"))
|
278
282
|
CustomerConnectorInfo.struct_class = Types::CustomerConnectorInfo
|
279
283
|
|
284
|
+
CustomerMeCollectorInfo.add_member(:active_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "activeMeCollectors"))
|
285
|
+
CustomerMeCollectorInfo.add_member(:healthy_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "healthyMeCollectors"))
|
286
|
+
CustomerMeCollectorInfo.add_member(:deny_listed_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "denyListedMeCollectors"))
|
287
|
+
CustomerMeCollectorInfo.add_member(:shutdown_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "shutdownMeCollectors"))
|
288
|
+
CustomerMeCollectorInfo.add_member(:unhealthy_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unhealthyMeCollectors"))
|
289
|
+
CustomerMeCollectorInfo.add_member(:total_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "totalMeCollectors"))
|
290
|
+
CustomerMeCollectorInfo.add_member(:unknown_me_collectors, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "unknownMeCollectors"))
|
291
|
+
CustomerMeCollectorInfo.struct_class = Types::CustomerMeCollectorInfo
|
292
|
+
|
280
293
|
DeleteApplicationsRequest.add_member(:configuration_ids, Shapes::ShapeRef.new(shape: ApplicationIdsList, required: true, location_name: "configurationIds"))
|
281
294
|
DeleteApplicationsRequest.struct_class = Types::DeleteApplicationsRequest
|
282
295
|
|
@@ -406,6 +419,7 @@ module Aws::ApplicationDiscoveryService
|
|
406
419
|
GetDiscoverySummaryResponse.add_member(:servers_mappedto_tags, Shapes::ShapeRef.new(shape: Long, location_name: "serversMappedtoTags"))
|
407
420
|
GetDiscoverySummaryResponse.add_member(:agent_summary, Shapes::ShapeRef.new(shape: CustomerAgentInfo, location_name: "agentSummary"))
|
408
421
|
GetDiscoverySummaryResponse.add_member(:connector_summary, Shapes::ShapeRef.new(shape: CustomerConnectorInfo, location_name: "connectorSummary"))
|
422
|
+
GetDiscoverySummaryResponse.add_member(:me_collector_summary, Shapes::ShapeRef.new(shape: CustomerMeCollectorInfo, location_name: "meCollectorSummary"))
|
409
423
|
GetDiscoverySummaryResponse.struct_class = Types::GetDiscoverySummaryResponse
|
410
424
|
|
411
425
|
HomeRegionNotSetException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
@@ -475,7 +489,7 @@ module Aws::ApplicationDiscoveryService
|
|
475
489
|
OperationNotPermittedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
476
490
|
OperationNotPermittedException.struct_class = Types::OperationNotPermittedException
|
477
491
|
|
478
|
-
OrderByElement.add_member(:field_name, Shapes::ShapeRef.new(shape:
|
492
|
+
OrderByElement.add_member(:field_name, Shapes::ShapeRef.new(shape: OrderByElementFieldName, required: true, location_name: "fieldName"))
|
479
493
|
OrderByElement.add_member(:sort_order, Shapes::ShapeRef.new(shape: orderString, location_name: "sortOrder"))
|
480
494
|
OrderByElement.struct_class = Types::OrderByElement
|
481
495
|
|
@@ -553,8 +567,8 @@ module Aws::ApplicationDiscoveryService
|
|
553
567
|
ToDeleteIdentifierList.member = Shapes::ShapeRef.new(shape: ImportTaskIdentifier)
|
554
568
|
|
555
569
|
UpdateApplicationRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "configurationId"))
|
556
|
-
UpdateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
557
|
-
UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape:
|
570
|
+
UpdateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "name"))
|
571
|
+
UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "description"))
|
558
572
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
559
573
|
|
560
574
|
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
|
42
|
-
# account. Information includes agent or connector
|
43
|
-
# media access control (MAC) addresses, agent or
|
44
|
-
# hostname where the agent or connector resides, and
|
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
|
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
|
292
|
-
# help. For more information, see [Setting Up
|
293
|
-
# Discovery Service][1] in the
|
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
|
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
|
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][
|
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][
|
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/
|
334
|
-
# [5]: https://aws.amazon.com/
|
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: "
|
383
|
-
# description: "
|
418
|
+
# name: "ApplicationName", # required
|
419
|
+
# description: "ApplicationDescription",
|
384
420
|
# }
|
385
421
|
#
|
386
422
|
# @!attribute [rw] name
|
@@ -526,6 +562,48 @@ module Aws::ApplicationDiscoveryService
|
|
526
562
|
include Aws::Structure
|
527
563
|
end
|
528
564
|
|
565
|
+
# The inventory data for installed Migration Evaluator collectors.
|
566
|
+
#
|
567
|
+
# @!attribute [rw] active_me_collectors
|
568
|
+
# The number of active Migration Evaluator collectors.
|
569
|
+
# @return [Integer]
|
570
|
+
#
|
571
|
+
# @!attribute [rw] healthy_me_collectors
|
572
|
+
# The number of healthy Migration Evaluator collectors.
|
573
|
+
# @return [Integer]
|
574
|
+
#
|
575
|
+
# @!attribute [rw] deny_listed_me_collectors
|
576
|
+
# The number of deny-listed Migration Evaluator collectors.
|
577
|
+
# @return [Integer]
|
578
|
+
#
|
579
|
+
# @!attribute [rw] shutdown_me_collectors
|
580
|
+
# The number of Migration Evaluator collectors with `SHUTDOWN` status.
|
581
|
+
# @return [Integer]
|
582
|
+
#
|
583
|
+
# @!attribute [rw] unhealthy_me_collectors
|
584
|
+
# The number of unhealthy Migration Evaluator collectors.
|
585
|
+
# @return [Integer]
|
586
|
+
#
|
587
|
+
# @!attribute [rw] total_me_collectors
|
588
|
+
# The total number of Migration Evaluator collectors.
|
589
|
+
# @return [Integer]
|
590
|
+
#
|
591
|
+
# @!attribute [rw] unknown_me_collectors
|
592
|
+
# The number of unknown Migration Evaluator collectors.
|
593
|
+
# @return [Integer]
|
594
|
+
#
|
595
|
+
class CustomerMeCollectorInfo < Struct.new(
|
596
|
+
:active_me_collectors,
|
597
|
+
:healthy_me_collectors,
|
598
|
+
:deny_listed_me_collectors,
|
599
|
+
:shutdown_me_collectors,
|
600
|
+
:unhealthy_me_collectors,
|
601
|
+
:total_me_collectors,
|
602
|
+
:unknown_me_collectors)
|
603
|
+
SENSITIVE = []
|
604
|
+
include Aws::Structure
|
605
|
+
end
|
606
|
+
|
529
607
|
# @note When making an API call, you may pass DeleteApplicationsRequest
|
530
608
|
# data as a hash:
|
531
609
|
#
|
@@ -598,7 +676,8 @@ module Aws::ApplicationDiscoveryService
|
|
598
676
|
# @!attribute [rw] agent_ids
|
599
677
|
# The agent or the Connector IDs for which you want information. If
|
600
678
|
# you specify no IDs, the system returns information about all
|
601
|
-
# agents/Connectors associated with your
|
679
|
+
# agents/Connectors associated with your Amazon Web Services user
|
680
|
+
# account.
|
602
681
|
# @return [Array<String>]
|
603
682
|
#
|
604
683
|
# @!attribute [rw] filters
|
@@ -1007,17 +1086,17 @@ module Aws::ApplicationDiscoveryService
|
|
1007
1086
|
# }
|
1008
1087
|
#
|
1009
1088
|
# @!attribute [rw] name
|
1010
|
-
# A single `ExportFilter` name. Supported filters: `
|
1089
|
+
# A single `ExportFilter` name. Supported filters: `agentIds`.
|
1011
1090
|
# @return [String]
|
1012
1091
|
#
|
1013
1092
|
# @!attribute [rw] values
|
1014
|
-
# A single
|
1015
|
-
# using the [DescribeAgents][1] action. Typically an ADS
|
1093
|
+
# A single agent ID for a Discovery Agent. An agent ID can be found
|
1094
|
+
# using the [DescribeAgents][1] action. Typically an ADS agent ID is
|
1016
1095
|
# in the form `o-0123456789abcdef0`.
|
1017
1096
|
#
|
1018
1097
|
#
|
1019
1098
|
#
|
1020
|
-
# [1]: http://docs.aws.amazon.com/application-discovery/latest/APIReference/
|
1099
|
+
# [1]: http://docs.aws.amazon.com/application-discovery/latest/APIReference/API_DescribeAgents.html
|
1021
1100
|
# @return [Array<String>]
|
1022
1101
|
#
|
1023
1102
|
# @!attribute [rw] condition
|
@@ -1090,8 +1169,8 @@ module Aws::ApplicationDiscoveryService
|
|
1090
1169
|
# A filter that can use conditional operators.
|
1091
1170
|
#
|
1092
1171
|
# For more information about filters, see [Querying Discovered
|
1093
|
-
# Configuration Items][1] in the *
|
1094
|
-
# Guide*.
|
1172
|
+
# Configuration Items][1] in the *Amazon Web Services Application
|
1173
|
+
# Discovery Service User Guide*.
|
1095
1174
|
#
|
1096
1175
|
#
|
1097
1176
|
#
|
@@ -1163,13 +1242,19 @@ module Aws::ApplicationDiscoveryService
|
|
1163
1242
|
# health.
|
1164
1243
|
# @return [Types::CustomerConnectorInfo]
|
1165
1244
|
#
|
1245
|
+
# @!attribute [rw] me_collector_summary
|
1246
|
+
# Details about Migration Evaluator collectors, including collector
|
1247
|
+
# status and health.
|
1248
|
+
# @return [Types::CustomerMeCollectorInfo]
|
1249
|
+
#
|
1166
1250
|
class GetDiscoverySummaryResponse < Struct.new(
|
1167
1251
|
:servers,
|
1168
1252
|
:applications,
|
1169
1253
|
:servers_mapped_to_applications,
|
1170
1254
|
:servers_mappedto_tags,
|
1171
1255
|
:agent_summary,
|
1172
|
-
:connector_summary
|
1256
|
+
:connector_summary,
|
1257
|
+
:me_collector_summary)
|
1173
1258
|
SENSITIVE = []
|
1174
1259
|
include Aws::Structure
|
1175
1260
|
end
|
@@ -1191,7 +1276,7 @@ module Aws::ApplicationDiscoveryService
|
|
1191
1276
|
#
|
1192
1277
|
# @!attribute [rw] import_task_id
|
1193
1278
|
# The unique ID for a specific import task. These IDs aren't globally
|
1194
|
-
# unique, but they are unique within an
|
1279
|
+
# unique, but they are unique within an Amazon Web Services account.
|
1195
1280
|
# @return [String]
|
1196
1281
|
#
|
1197
1282
|
# @!attribute [rw] client_request_token
|
@@ -1364,7 +1449,7 @@ module Aws::ApplicationDiscoveryService
|
|
1364
1449
|
# next_token: "NextToken",
|
1365
1450
|
# order_by: [
|
1366
1451
|
# {
|
1367
|
-
# field_name: "
|
1452
|
+
# field_name: "OrderByElementFieldName", # required
|
1368
1453
|
# sort_order: "ASC", # accepts ASC, DESC
|
1369
1454
|
# },
|
1370
1455
|
# ],
|
@@ -1382,7 +1467,7 @@ module Aws::ApplicationDiscoveryService
|
|
1382
1467
|
#
|
1383
1468
|
# For a complete list of filter options and guidance about using them
|
1384
1469
|
# with this action, see [Using the ListConfigurations Action][1] in
|
1385
|
-
# the *
|
1470
|
+
# the *Amazon Web Services Application Discovery Service User Guide*.
|
1386
1471
|
#
|
1387
1472
|
#
|
1388
1473
|
#
|
@@ -1405,7 +1490,7 @@ module Aws::ApplicationDiscoveryService
|
|
1405
1490
|
# Certain filter criteria return output that can be sorted in
|
1406
1491
|
# ascending or descending order. For a list of output characteristics
|
1407
1492
|
# for each filter, see [Using the ListConfigurations Action][1] in the
|
1408
|
-
# *
|
1493
|
+
# *Amazon Web Services Application Discovery Service User Guide*.
|
1409
1494
|
#
|
1410
1495
|
#
|
1411
1496
|
#
|
@@ -1565,7 +1650,7 @@ module Aws::ApplicationDiscoveryService
|
|
1565
1650
|
# data as a hash:
|
1566
1651
|
#
|
1567
1652
|
# {
|
1568
|
-
# field_name: "
|
1653
|
+
# field_name: "OrderByElementFieldName", # required
|
1569
1654
|
# sort_order: "ASC", # accepts ASC, DESC
|
1570
1655
|
# }
|
1571
1656
|
#
|
@@ -1673,12 +1758,13 @@ module Aws::ApplicationDiscoveryService
|
|
1673
1758
|
# @!attribute [rw] agent_ids
|
1674
1759
|
# The IDs of the agents or connectors from which to start collecting
|
1675
1760
|
# data. If you send a request to an agent/connector ID that you do not
|
1676
|
-
# have permission to contact, according to your
|
1677
|
-
# service does not throw an exception. Instead, it
|
1678
|
-
# in the *Description* field. If you send a request
|
1679
|
-
# agents/connectors and you do not have permission to
|
1680
|
-
# those agents/connectors, the system does not throw
|
1681
|
-
# Instead, the system shows `Failed` in the
|
1761
|
+
# have permission to contact, according to your Amazon Web Services
|
1762
|
+
# account, the service does not throw an exception. Instead, it
|
1763
|
+
# returns the error in the *Description* field. If you send a request
|
1764
|
+
# to multiple agents/connectors and you do not have permission to
|
1765
|
+
# contact some of those agents/connectors, the system does not throw
|
1766
|
+
# an exception. Instead, the system shows `Failed` in the
|
1767
|
+
# *Description* field.
|
1682
1768
|
# @return [Array<String>]
|
1683
1769
|
#
|
1684
1770
|
class StartDataCollectionByAgentIdsRequest < Struct.new(
|
@@ -1794,8 +1880,8 @@ module Aws::ApplicationDiscoveryService
|
|
1794
1880
|
# @!attribute [rw] import_url
|
1795
1881
|
# The URL for your import file that you've uploaded to Amazon S3.
|
1796
1882
|
#
|
1797
|
-
# <note markdown="1"> If you're using the
|
1798
|
-
# `s3://BucketName/ImportFileName.CSV`
|
1883
|
+
# <note markdown="1"> If you're using the Amazon Web Services CLI, this URL is structured
|
1884
|
+
# as follows: `s3://BucketName/ImportFileName.CSV`
|
1799
1885
|
#
|
1800
1886
|
# </note>
|
1801
1887
|
# @return [String]
|
@@ -1886,6 +1972,8 @@ module Aws::ApplicationDiscoveryService
|
|
1886
1972
|
|
1887
1973
|
# Metadata that help you categorize IT assets.
|
1888
1974
|
#
|
1975
|
+
# Do not store sensitive information (like personal data) in tags.
|
1976
|
+
#
|
1889
1977
|
# @note When making an API call, you may pass Tag
|
1890
1978
|
# data as a hash:
|
1891
1979
|
#
|
@@ -1940,8 +2028,8 @@ module Aws::ApplicationDiscoveryService
|
|
1940
2028
|
#
|
1941
2029
|
# {
|
1942
2030
|
# configuration_id: "ApplicationId", # required
|
1943
|
-
# name: "
|
1944
|
-
# description: "
|
2031
|
+
# name: "ApplicationName",
|
2032
|
+
# description: "ApplicationDescription",
|
1945
2033
|
# }
|
1946
2034
|
#
|
1947
2035
|
# @!attribute [rw] configuration_id
|
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.
|
4
|
+
version: 1.45.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:
|
11
|
+
date: 2022-05-16 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.
|
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.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|