docs-2.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. {
  2. "version": "2.0",
  3. "service": "<p>The AWS Application Discovery Service helps Systems Integrators quickly and reliably plan application migration projects by automatically identifying applications running in on-premises data centers, their associated dependencies, and their performance profile.</p> <p> Planning data center migrations can involve thousands of workloads that are often deeply interdependent. Application discovery and dependency mapping are important early first steps in the migration process, but difficult to perform at scale due to the lack of automated tools.</p> <p>The AWS Application Discovery Service automatically collects configuration and usage data from servers to develop a list of applications, how they perform, and how they are interdependent. This information is securely retained in an AWS Application Discovery Service database which you can export as a CSV file into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.</p> <p>The Application Discovery Service is currently available for preview. Only customers who are engaged with <a href=\"https://aws.amazon.com/professional-services/\">AWS Professional Services</a> or a certified AWS partner can use the service. To see the list of certified partners and request access to the Application Discovery Service, complete the following <a href=\"http://aws.amazon.com/application-discovery/preview/\">preview form</a>.</p> <p>This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for the Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you're using. For more information, see <a href=\"http://aws.amazon.com/tools/#SDKs\">AWS SDKs</a>.</p> <p>This guide is intended for use with the <a href=\"http://docs.aws.amazon.com/application-discovery/latest/userguide/what-is-appdiscovery.html\"> <i>AWS Discovery Service User Guide</i> </a>.</p> <p>The following are short descriptions of each API action, organized by function.</p> <p> <b>Managing AWS Agents Using the Application Discovery Service</b> </p> <p>An AWS agent is software that you install on on-premises servers and virtual machines that are targeted for discovery and migration. Agents run on Linux and Windows Server and collect server configuration and activity information about your applications and infrastructure. Specifically, agents collect the following information and send it to the Application Discovery Service using Secure Sockets Layer (SSL) encryption:</p> <ul> <li> <p>User information (user name, home directory)</p> </li> <li> <p>Group information (name)</p> </li> <li> <p>List of installed packages</p> </li> <li> <p>List of kernel modules</p> </li> <li> <p>All create and stop process events</p> </li> <li> <p>DNS queries</p> </li> <li> <p>NIC information</p> </li> <li> <p>TCP/UDP process listening ports</p> </li> <li> <p>TCPV4/V6 connections</p> </li> <li> <p>Operating system information</p> </li> <li> <p>System performance</p> </li> <li> <p>Process performance</p> </li> </ul> <p>The Application Discovery Service API includes the following actions to manage AWS agents:</p> <ul> <li> <p> <i>StartDataCollectionByAgentIds</i>: Instructs the specified agents to start collecting data. The Application Discovery Service takes several minutes to receive and process data after you initiate data collection.</p> </li> <li> <p> <i>StopDataCollectionByAgentIds</i>: Instructs the specified agents to stop collecting data.</p> </li> <li> <p> <i>DescribeAgents</i>: Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID. The output includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, host name where the agent resides, and the version number of each agent.</p> </li> </ul> <p> <b>Querying Configuration Items</b> </p> <p>A <i>configuration item</i> is an IT asset that was discovered in your data center by an AWS agent. When you use the Application Discovery Service, you can specify filters and query specific configuration items. The service supports Server, Process, and Connection configuration items. This means you can specify a value for the following keys and query your IT assets:</p> <p class=\"title\"> <b>Server</b> </p> <ul> <li> <p>server.HostName</p> </li> <li> <p>server.osName</p> </li> <li> <p>server.osVersion</p> </li> <li> <p>server.configurationId</p> </li> <li> <p>server.agentId</p> </li> </ul> <p class=\"title\"> <b>Process</b> </p> <ul> <li> <p>process.name</p> </li> <li> <p>process.CommandLine</p> </li> <li> <p>process.configurationId</p> </li> <li> <p>server.hostName</p> </li> <li> <p>server.osName</p> </li> <li> <p>server.osVersion</p> </li> <li> <p>server.configurationId</p> </li> <li> <p>server.agentId</p> </li> </ul> <p class=\"title\"> <b>Connection</b> </p> <ul> <li> <p>connection.sourceIp</p> </li> <li> <p>connection.sourcePort</p> </li> <li> <p>connection.destinationIp</p> </li> <li> <p>connection.destinationPort</p> </li> <li> <p>sourceProcess.configurationId</p> </li> <li> <p>sourceProcess.commandLine</p> </li> <li> <p>sourceProcess.name</p> </li> <li> <p>destinationProcessId.configurationId</p> </li> <li> <p>destinationProcess.commandLine</p> </li> <li> <p>destinationProcess.name</p> </li> <li> <p>sourceServer.configurationId</p> </li> <li> <p>sourceServer.hostName</p> </li> <li> <p>sourceServer.osName</p> </li> <li> <p>sourceServer.osVersion</p> </li> <li> <p>destinationServer.configurationId</p> </li> <li> <p>destinationServer.hostName</p> </li> <li> <p>destinationServer.osName</p> </li> <li> <p>destinationServer.osVersion</p> </li> </ul> <p>The Application Discovery Service includes the following actions for querying configuration items. </p> <ul> <li> <p> <i>DescribeConfigurations</i>: Retrieves a list of attributes for a specific configuration ID. For example, the output for a <i>server</i> configuration item includes a list of attributes about the server, including host name, operating system, number of network cards, etc.</p> </li> <li> <p> <i>ListConfigurations</i>: Retrieves a list of configuration items according to the criteria you specify in a filter. The filter criteria identify relationship requirements. For example, you can specify filter criteria of process.name with values of <i>nginx</i> and <i>apache</i>.</p> </li> </ul> <p> <b>Tagging Discovered Configuration Items</b> </p> <p>You can tag discovered configuration items. Tags are metadata that help you categorize IT assets in your data center. Tags use a <i>key</i>-<i>value</i> format. For example, <code>{\"key\": \"serverType\", \"value\": \"webServer\"}</code>. </p> <ul> <li> <p> <i>CreateTags</i>: Creates one or more tags for a configuration items.</p> </li> <li> <p> <i>DescribeTags</i>: Retrieves a list of configuration items that are tagged with a specific tag. <i>Or</i>, retrieves a list of all tags assigned to a specific configuration item.</p> </li> <li> <p> <i>DeleteTags</i>: Deletes the association between a configuration item and one or more tags.</p> </li> </ul> <p> <b>Exporting Data</b> </p> <p>You can export data as a CSV file to an Amazon S3 bucket or into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.</p> <ul> <li> <p> <i>ExportConfigurations</i>: Exports all discovered configuration data to an Amazon S3 bucket. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID which you can query using the GetExportStatus API.</p> </li> <li> <p> <i>DescribeExportConfigurations</i>: Gets the status of the data export. When the export is complete, the service returns an Amazon S3 URL where you can download CSV files that include the data.</p> </li> </ul>",
  4. "operations": {
  5. "CreateTags": "<p>Creates one or more tags for configuration items. Tags are metadata that help you categorize IT assets. This API accepts a list of multiple configuration items.</p>",
  6. "DeleteTags": "<p>Deletes the association between configuration items and one or more tags. This API accepts a list of multiple configuration items.</p>",
  7. "DescribeAgents": "<p>Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID.</p>",
  8. "DescribeConfigurations": "<p>Retrieves a list of attributes for a specific configuration ID. For example, the output for a <i>server</i> configuration item includes a list of attributes about the server, including host name, operating system, number of network cards, etc.</p>",
  9. "DescribeExportConfigurations": "<p>Retrieves the status of a given export process. You can retrieve status from a maximum of 100 processes.</p>",
  10. "DescribeTags": "<p>Retrieves a list of configuration items that are tagged with a specific tag. Or retrieves a list of all tags assigned to a specific configuration item.</p>",
  11. "ExportConfigurations": "<p>Exports all discovered configuration data to an Amazon S3 bucket or an application that enables you to view and evaluate the data. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID which you can query using the <i>GetExportStatus</i> API. The system imposes a limit of two configuration exports in six hours.</p>",
  12. "ListConfigurations": "<p>Retrieves a list of configurations items according to the criteria you specify in a filter. The filter criteria identify relationship requirements.</p>",
  13. "StartDataCollectionByAgentIds": "<p>Instructs the specified agents to start collecting data. Agents can reside on host servers or virtual machines in your data center.</p>",
  14. "StopDataCollectionByAgentIds": "<p>Instructs the specified agents to stop collecting data.</p>"
  15. },
  16. "shapes": {
  17. "AgentConfigurationStatus": {
  18. "base": "<p>Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation, and whether or not the agent configuration was updated.</p>",
  19. "refs": {
  20. "AgentConfigurationStatusList$member": null
  21. }
  22. },
  23. "AgentConfigurationStatusList": {
  24. "base": null,
  25. "refs": {
  26. "StartDataCollectionByAgentIdsResponse$agentsConfigurationStatus": "<p>Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether or not the agent configuration was updated.</p>",
  27. "StopDataCollectionByAgentIdsResponse$agentsConfigurationStatus": "<p>Information about agents that were instructed to stop collecting data. Information includes the agent ID, a description of the operation performed, and whether or not the agent configuration was updated.</p>"
  28. }
  29. },
  30. "AgentId": {
  31. "base": null,
  32. "refs": {
  33. "AgentIds$member": null,
  34. "AgentInfo$agentId": "<p>The agent ID.</p>"
  35. }
  36. },
  37. "AgentIds": {
  38. "base": null,
  39. "refs": {
  40. "DescribeAgentsRequest$agentIds": "<p>The agent IDs for which you want information. If you specify no IDs, the system returns information about all agents associated with your AWS user account.</p>",
  41. "StartDataCollectionByAgentIdsRequest$agentIds": "<p>The IDs of the agents that you want to start collecting data. If you send a request to an AWS agent ID that you do not have permission to contact, according to your AWS account, the service does not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a request to multiple agents and you do not have permission to contact some of those agents, the system does not throw an exception. Instead, the system shows <code>Failed</code> in the <i>Description</i> field.</p>",
  42. "StopDataCollectionByAgentIdsRequest$agentIds": "<p>The IDs of the agents that you want to stop collecting data.</p>"
  43. }
  44. },
  45. "AgentInfo": {
  46. "base": "<p>Information about agents associated with the user’s AWS account. Information includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, hostname where the agent resides, and agent version for each agent.</p>",
  47. "refs": {
  48. "AgentsInfo$member": null
  49. }
  50. },
  51. "AgentNetworkInfo": {
  52. "base": "<p>Network details about the host where the agent resides.</p>",
  53. "refs": {
  54. "AgentNetworkInfoList$member": null
  55. }
  56. },
  57. "AgentNetworkInfoList": {
  58. "base": null,
  59. "refs": {
  60. "AgentInfo$agentNetworkInfoList": "<p>Network details about the host where the agent resides.</p>"
  61. }
  62. },
  63. "AgentStatus": {
  64. "base": null,
  65. "refs": {
  66. "AgentInfo$health": "<p>The health of the agent.</p>"
  67. }
  68. },
  69. "AgentsInfo": {
  70. "base": null,
  71. "refs": {
  72. "DescribeAgentsResponse$agentsInfo": "<p>Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID. The output includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, host name where the agent resides, and the version number of each agent.</p>"
  73. }
  74. },
  75. "AuthorizationErrorException": {
  76. "base": "<p>The AWS user account does not have permission to perform the action. Check the IAM policy associated with this account.</p>",
  77. "refs": {
  78. }
  79. },
  80. "Boolean": {
  81. "base": null,
  82. "refs": {
  83. "AgentConfigurationStatus$operationSucceeded": "<p>Information about the status of the <code>StartDataCollection</code> and <code>StopDataCollection</code> operations. The system has recorded the data collection operation. The agent receives this command the next time it polls for a new command. </p>"
  84. }
  85. },
  86. "Condition": {
  87. "base": null,
  88. "refs": {
  89. "Filter$condition": "<p>A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as though concatenated by <i>AND</i>. If you specify multiple values for a particular filter, the system differentiates the values using <i>OR</i>. Calling either <i>DescribeConfigurations</i> or <i>ListConfigurations</i> returns attributes of matching configuration items.</p>"
  90. }
  91. },
  92. "Configuration": {
  93. "base": null,
  94. "refs": {
  95. "Configurations$member": null
  96. }
  97. },
  98. "ConfigurationId": {
  99. "base": null,
  100. "refs": {
  101. "ConfigurationIdList$member": null,
  102. "ConfigurationTag$configurationId": "<p>The configuration ID for the item you want to tag. You can specify a list of keys and values.</p>"
  103. }
  104. },
  105. "ConfigurationIdList": {
  106. "base": null,
  107. "refs": {
  108. "CreateTagsRequest$configurationIds": "<p>A list of configuration items that you want to tag.</p>",
  109. "DeleteTagsRequest$configurationIds": "<p>A list of configuration items with tags that you want to delete.</p>",
  110. "DescribeConfigurationsRequest$configurationIds": "<p>One or more configuration IDs.</p>"
  111. }
  112. },
  113. "ConfigurationItemType": {
  114. "base": null,
  115. "refs": {
  116. "ConfigurationTag$configurationType": "<p>A type of IT asset that you want to tag.</p>",
  117. "ListConfigurationsRequest$configurationType": "<p>A valid configuration identified by the Discovery Service. </p>"
  118. }
  119. },
  120. "ConfigurationTag": {
  121. "base": "<p>Tags for a configuration item. Tags are metadata that help you categorize IT assets.</p>",
  122. "refs": {
  123. "ConfigurationTagSet$member": null
  124. }
  125. },
  126. "ConfigurationTagSet": {
  127. "base": null,
  128. "refs": {
  129. "DescribeTagsResponse$tags": "<p>Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.</p>"
  130. }
  131. },
  132. "Configurations": {
  133. "base": null,
  134. "refs": {
  135. "ListConfigurationsResponse$configurations": "<p>Returns configuration details, including the configuration ID, attribute names, and attribute values.</p>"
  136. }
  137. },
  138. "ConfigurationsDownloadUrl": {
  139. "base": null,
  140. "refs": {
  141. "ExportInfo$configurationsDownloadUrl": "<p>A URL for an Amazon S3 bucket where you can review the configuration data. The URL is displayed only if the export succeeded.</p>"
  142. }
  143. },
  144. "ConfigurationsExportId": {
  145. "base": null,
  146. "refs": {
  147. "ExportConfigurationsResponse$exportId": "<p>A unique identifier that you can use to query the export status.</p>",
  148. "ExportIds$member": null,
  149. "ExportInfo$exportId": "<p>A unique identifier that you can use to query the export.</p>"
  150. }
  151. },
  152. "CreateTagsRequest": {
  153. "base": null,
  154. "refs": {
  155. }
  156. },
  157. "CreateTagsResponse": {
  158. "base": null,
  159. "refs": {
  160. }
  161. },
  162. "DeleteTagsRequest": {
  163. "base": null,
  164. "refs": {
  165. }
  166. },
  167. "DeleteTagsResponse": {
  168. "base": null,
  169. "refs": {
  170. }
  171. },
  172. "DescribeAgentsRequest": {
  173. "base": null,
  174. "refs": {
  175. }
  176. },
  177. "DescribeAgentsResponse": {
  178. "base": null,
  179. "refs": {
  180. }
  181. },
  182. "DescribeConfigurationsAttribute": {
  183. "base": null,
  184. "refs": {
  185. "DescribeConfigurationsAttributes$member": null
  186. }
  187. },
  188. "DescribeConfigurationsAttributes": {
  189. "base": null,
  190. "refs": {
  191. "DescribeConfigurationsResponse$configurations": "<p>A key in the response map. The value is an array of data.</p>"
  192. }
  193. },
  194. "DescribeConfigurationsRequest": {
  195. "base": null,
  196. "refs": {
  197. }
  198. },
  199. "DescribeConfigurationsResponse": {
  200. "base": null,
  201. "refs": {
  202. }
  203. },
  204. "DescribeExportConfigurationsRequest": {
  205. "base": null,
  206. "refs": {
  207. }
  208. },
  209. "DescribeExportConfigurationsResponse": {
  210. "base": null,
  211. "refs": {
  212. }
  213. },
  214. "DescribeTagsRequest": {
  215. "base": null,
  216. "refs": {
  217. }
  218. },
  219. "DescribeTagsResponse": {
  220. "base": null,
  221. "refs": {
  222. }
  223. },
  224. "ExportConfigurationsResponse": {
  225. "base": null,
  226. "refs": {
  227. }
  228. },
  229. "ExportIds": {
  230. "base": null,
  231. "refs": {
  232. "DescribeExportConfigurationsRequest$exportIds": "<p>A unique identifier that you can use to query the export status.</p>"
  233. }
  234. },
  235. "ExportInfo": {
  236. "base": "<p>Information regarding the export status of the discovered data. The value is an array of objects.</p>",
  237. "refs": {
  238. "ExportsInfo$member": null
  239. }
  240. },
  241. "ExportRequestTime": {
  242. "base": null,
  243. "refs": {
  244. "ExportInfo$exportRequestTime": "<p>The time the configuration data export was initiated.</p>"
  245. }
  246. },
  247. "ExportStatus": {
  248. "base": null,
  249. "refs": {
  250. "ExportInfo$exportStatus": "<p>The status of the configuration data export. The status can succeed, fail, or be in-progress.</p>"
  251. }
  252. },
  253. "ExportStatusMessage": {
  254. "base": null,
  255. "refs": {
  256. "ExportInfo$statusMessage": "<p>Helpful status messages for API callers. For example: Too many exports in the last 6 hours. Export in progress. Export was successful.</p>"
  257. }
  258. },
  259. "ExportsInfo": {
  260. "base": null,
  261. "refs": {
  262. "DescribeExportConfigurationsResponse$exportsInfo": "<p>Returns export details. When the status is complete, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.</p>"
  263. }
  264. },
  265. "Filter": {
  266. "base": "<p>A filter that can use conditional operators.</p>",
  267. "refs": {
  268. "Filters$member": null
  269. }
  270. },
  271. "FilterName": {
  272. "base": null,
  273. "refs": {
  274. "TagFilter$name": "<p>A name of a tag filter.</p>"
  275. }
  276. },
  277. "FilterValue": {
  278. "base": null,
  279. "refs": {
  280. "FilterValues$member": null
  281. }
  282. },
  283. "FilterValues": {
  284. "base": null,
  285. "refs": {
  286. "Filter$values": "<p>A string value that you want to filter on. For example, if you choose the <code>destinationServer.osVersion</code> filter name, you could specify <code>Ubuntu</code> for the value.</p>",
  287. "TagFilter$values": "<p>Values of a tag filter.</p>"
  288. }
  289. },
  290. "Filters": {
  291. "base": null,
  292. "refs": {
  293. "ListConfigurationsRequest$filters": "<p>You can filter the list using a <i>key</i>-<i>value</i> format. For example: </p> <p> <code>{\"key\": \"serverType\", \"value\": \"webServer\"}</code> </p> <p>You can separate these items by using logical operators. </p>"
  294. }
  295. },
  296. "Integer": {
  297. "base": null,
  298. "refs": {
  299. "DescribeAgentsRequest$maxResults": "<p>The total number of agents to return. The maximum value is 100.</p>",
  300. "DescribeExportConfigurationsRequest$maxResults": "<p>The maximum number of results that you want to display as a part of the query.</p>",
  301. "DescribeTagsRequest$maxResults": "<p>The total number of items to return. The maximum value is 100.</p>",
  302. "ListConfigurationsRequest$maxResults": "<p>The total number of items to return. The maximum value is 100.</p>"
  303. }
  304. },
  305. "InvalidParameterException": {
  306. "base": "<p>One or more parameters are not valid. Verify the parameters and try again.</p>",
  307. "refs": {
  308. }
  309. },
  310. "InvalidParameterValueException": {
  311. "base": "<p>The value of one or more parameters are either invalid or out of range. Verify the parameter values and try again.</p>",
  312. "refs": {
  313. }
  314. },
  315. "ListConfigurationsRequest": {
  316. "base": null,
  317. "refs": {
  318. }
  319. },
  320. "ListConfigurationsResponse": {
  321. "base": null,
  322. "refs": {
  323. }
  324. },
  325. "Message": {
  326. "base": null,
  327. "refs": {
  328. "AuthorizationErrorException$message": null,
  329. "InvalidParameterException$message": null,
  330. "InvalidParameterValueException$message": null,
  331. "OperationNotPermittedException$message": null,
  332. "ResourceNotFoundException$message": null,
  333. "ServerInternalErrorException$message": null
  334. }
  335. },
  336. "NextToken": {
  337. "base": null,
  338. "refs": {
  339. "DescribeAgentsRequest$nextToken": "<p>A token to start the list. Use this token to get the next set of results.</p>",
  340. "DescribeAgentsResponse$nextToken": "<p>The call returns a token. Use this token to get the next set of results.</p>",
  341. "DescribeExportConfigurationsRequest$nextToken": "<p>A token to get the next set of results. For example, if you specified 100 IDs for <code>DescribeConfigurationsRequest$configurationIds</code> but set <code>DescribeExportConfigurationsRequest$maxResults</code> to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.</p>",
  342. "DescribeExportConfigurationsResponse$nextToken": "<p>A token to get the next set of results. For example, if you specified 100 IDs for <code>DescribeConfigurationsRequest$configurationIds</code> but set <code>DescribeExportConfigurationsRequest$maxResults</code> to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.</p>",
  343. "DescribeTagsRequest$nextToken": "<p>A token to start the list. Use this token to get the next set of results.</p>",
  344. "DescribeTagsResponse$nextToken": "<p>The call returns a token. Use this token to get the next set of results.</p>",
  345. "ListConfigurationsRequest$nextToken": "<p>A token to start the list. Use this token to get the next set of results.</p>",
  346. "ListConfigurationsResponse$nextToken": "<p>The call returns a token. Use this token to get the next set of results.</p>"
  347. }
  348. },
  349. "OperationNotPermittedException": {
  350. "base": "<p>This operation is not permitted.</p>",
  351. "refs": {
  352. }
  353. },
  354. "ResourceNotFoundException": {
  355. "base": "<p>The specified configuration ID was not located. Verify the configuration ID and try again.</p>",
  356. "refs": {
  357. }
  358. },
  359. "ServerInternalErrorException": {
  360. "base": "<p>The server experienced an internal error. Try again.</p>",
  361. "refs": {
  362. }
  363. },
  364. "StartDataCollectionByAgentIdsRequest": {
  365. "base": null,
  366. "refs": {
  367. }
  368. },
  369. "StartDataCollectionByAgentIdsResponse": {
  370. "base": null,
  371. "refs": {
  372. }
  373. },
  374. "StopDataCollectionByAgentIdsRequest": {
  375. "base": null,
  376. "refs": {
  377. }
  378. },
  379. "StopDataCollectionByAgentIdsResponse": {
  380. "base": null,
  381. "refs": {
  382. }
  383. },
  384. "String": {
  385. "base": null,
  386. "refs": {
  387. "AgentConfigurationStatus$agentId": "<p>The agent ID.</p>",
  388. "AgentConfigurationStatus$description": "<p>A description of the operation performed.</p>",
  389. "AgentInfo$hostName": "<p>The name of the host where the agent resides. The host can be a server or virtual machine.</p>",
  390. "AgentInfo$connectorId": "<p>This data type is currently not valid.</p>",
  391. "AgentInfo$version": "<p>The agent version.</p>",
  392. "AgentNetworkInfo$ipAddress": "<p>The IP address for the host where the agent resides.</p>",
  393. "AgentNetworkInfo$macAddress": "<p>The MAC address for the host where the agent resides.</p>",
  394. "Configuration$key": null,
  395. "Configuration$value": null,
  396. "DescribeConfigurationsAttribute$key": null,
  397. "DescribeConfigurationsAttribute$value": null,
  398. "Filter$name": "<p>The name of the filter. The following filter names are allowed for <code>SERVER</code> configuration items.</p> <p class=\"title\"> <b>Server</b> </p> <ul> <li> <p> <code>server.hostName</code> </p> </li> <li> <p> <code>server.osName</code> </p> </li> <li> <p> <code>server.osVersion</code> </p> </li> <li> <p> <code>server.configurationid</code> </p> </li> <li> <p> <code>server.agentid</code> </p> </li> </ul> <p>The name of the filter. The following filter names are allowed for <code>PROCESS</code> configuration items.</p> <p class=\"title\"> <b>Process</b> </p> <ul> <li> <p> <code>process.configurationid</code> </p> </li> <li> <p> <code>process.name</code> </p> </li> <li> <p> <code>process.commandLine</code> </p> </li> <li> <p> <code>server.configurationid</code> </p> </li> <li> <p> <code>server.hostName</code> </p> </li> <li> <p> <code>server.osName</code> </p> </li> <li> <p> <code>server.osVersion</code> </p> </li> <li> <p> <code>server.agentId</code> </p> </li> </ul> <p>The name of the filter. The following filter names are allowed for <code>CONNECTION</code> configuration items.</p> <p class=\"title\"> <b>Connection</b> </p> <ul> <li> <p> <code>connection.sourceIp</code> </p> </li> <li> <p> <code>connection.destinationIp</code> </p> </li> <li> <p> <code>connection.destinationPort</code> </p> </li> <li> <p> <code>sourceProcess.configurationId</code> </p> </li> <li> <p> <code>sourceProcess.name</code> </p> </li> <li> <p> <code>sourceProcess.commandLine</code> </p> </li> <li> <p> <code>destinationProcess.configurationId</code> </p> </li> <li> <p> <code>destinationProcess.name</code> </p> </li> <li> <p> <code>destinationProcess.commandLine</code> </p> </li> <li> <p> <code>sourceServer.configurationId</code> </p> </li> <li> <p> <code>sourceServer.hostName</code> </p> </li> <li> <p> <code>sourceServer.osName</code> </p> </li> <li> <p> <code>sourceServer.osVersion</code> </p> </li> <li> <p> <code>sourceServer.agentId</code> </p> </li> <li> <p> <code>destinationServer.configurationId</code> </p> </li> <li> <p> <code>destinationServer.hostName</code> </p> </li> <li> <p> <code>destinationServer.osName</code> </p> </li> <li> <p> <code>destinationServer.osVersion</code> </p> </li> <li> <p> <code>destinationServer.agentId</code> </p> </li> </ul>"
  399. }
  400. },
  401. "Tag": {
  402. "base": "<p>Metadata that help you categorize IT assets.</p>",
  403. "refs": {
  404. "TagSet$member": null
  405. }
  406. },
  407. "TagFilter": {
  408. "base": "<p>The name of a tag filter. Valid names are: <code>tagKey</code>, <code>tagValue</code>, <code>configurationId</code>.</p>",
  409. "refs": {
  410. "TagFilters$member": null
  411. }
  412. },
  413. "TagFilters": {
  414. "base": null,
  415. "refs": {
  416. "DescribeTagsRequest$filters": "<p>You can filter the list using a <i>key</i>-<i>value</i> format. You can separate these items by using logical operators. Allowed filters include <code>tagKey</code>, <code>tagValue</code>, and <code>configurationId</code>. </p>"
  417. }
  418. },
  419. "TagKey": {
  420. "base": null,
  421. "refs": {
  422. "ConfigurationTag$key": "<p>A type of tag to filter on. For example, <i>serverType</i>.</p>",
  423. "Tag$key": "<p>A type of tag to filter on.</p>"
  424. }
  425. },
  426. "TagSet": {
  427. "base": null,
  428. "refs": {
  429. "CreateTagsRequest$tags": "<p>Tags that you want to associate with one or more configuration items. Specify the tags that you want to create in a <i>key</i>-<i>value</i> format. For example:</p> <p> <code>{\"key\": \"serverType\", \"value\": \"webServer\"}</code> </p>",
  430. "DeleteTagsRequest$tags": "<p>Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a <i>key</i>-<i>value</i> format. For example:</p> <p> <code>{\"key\": \"serverType\", \"value\": \"webServer\"}</code> </p>"
  431. }
  432. },
  433. "TagValue": {
  434. "base": null,
  435. "refs": {
  436. "ConfigurationTag$value": "<p>A value to filter on. For example <i>key = serverType</i> and <i>value = web server</i>.</p>",
  437. "Tag$value": "<p>A value for a tag key to filter on.</p>"
  438. }
  439. },
  440. "TimeStamp": {
  441. "base": null,
  442. "refs": {
  443. "ConfigurationTag$timeOfCreation": "<p>The time the configuration tag was created in Coordinated Universal Time (UTC).</p>"
  444. }
  445. }
  446. }
  447. }