ApplicationDiscoveryService

Client

class ApplicationDiscoveryService.Client

A low-level client representing AWS Application Discovery Service:

import boto3

client = boto3.client('discovery')

These are the available methods:

associate_configuration_items_to_application(**kwargs)

Associates one or more configuration items with an application.

See also: AWS API Documentation

Request Syntax

response = client.associate_configuration_items_to_application(
    applicationConfigurationId='string',
    configurationIds=[
        'string',
    ]
)
Parameters
  • applicationConfigurationId (string) --

    [REQUIRED]

    The configuration ID of an application with which items are to be associated.

  • configurationIds (list) --

    [REQUIRED]

    The ID of each configuration item to be associated with an application.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
batch_delete_import_data(**kwargs)

Deletes one or more import tasks, each identified by their import ID. Each import task has a number of records that can identify servers or applications.

AWS Application Discovery Service has built-in matching logic that will identify when discovered servers match existing entries that you've previously discovered, the information for the already-existing discovered server is updated. When you delete an import task that contains records that were used to match, the information in those matched records that comes from the deleted records will also be deleted.

See also: AWS API Documentation

Request Syntax

response = client.batch_delete_import_data(
    importTaskIds=[
        'string',
    ]
)
Parameters
importTaskIds (list) --

[REQUIRED]

The IDs for the import tasks that you want to delete.

  • (string) --
Return type
dict
Returns
Response Syntax
{
    'errors': [
        {
            'importTaskId': 'string',
            'errorCode': 'NOT_FOUND'|'INTERNAL_SERVER_ERROR'|'OVER_LIMIT',
            'errorDescription': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • errors (list) --

      Error messages returned for each import task that you deleted as a response for this command.

      • (dict) --

        Error messages returned for each import task that you deleted as a response for this command.

        • importTaskId (string) --

          The unique import ID associated with the error that occurred.

        • errorCode (string) --

          The type of error that occurred for a specific import task.

        • errorDescription (string) --

          The description of the error that occurred for a specific import task.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
can_paginate(operation_name)

Check if an operation can be paginated.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Returns
True if the operation can be paginated, False otherwise.
create_application(**kwargs)

Creates an application with the given name and description.

See also: AWS API Documentation

Request Syntax

response = client.create_application(
    name='string',
    description='string'
)
Parameters
  • name (string) --

    [REQUIRED]

    Name of the application to be created.

  • description (string) -- Description of the application to be created.
Return type

dict

Returns

Response Syntax

{
    'configurationId': 'string'
}

Response Structure

  • (dict) --

    • configurationId (string) --

      Configuration ID of an application to be created.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
create_tags(**kwargs)

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.

See also: AWS API Documentation

Request Syntax

response = client.create_tags(
    configurationIds=[
        'string',
    ],
    tags=[
        {
            'key': 'string',
            'value': 'string'
        },
    ]
)
Parameters
  • configurationIds (list) --

    [REQUIRED]

    A list of configuration items that you want to tag.

    • (string) --
  • tags (list) --

    [REQUIRED]

    Tags that you want to associate with one or more configuration items. Specify the tags that you want to create in a key -value format. For example:

    {"key": "serverType", "value": "webServer"}
    • (dict) --

      Metadata that help you categorize IT assets.

      • key (string) -- [REQUIRED]

        The type of tag on which to filter.

      • value (string) -- [REQUIRED]

        A value for a tag key on which to filter.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
delete_applications(**kwargs)

Deletes a list of applications and their associations with configuration items.

See also: AWS API Documentation

Request Syntax

response = client.delete_applications(
    configurationIds=[
        'string',
    ]
)
Parameters
configurationIds (list) --

[REQUIRED]

Configuration ID of an application to be deleted.

  • (string) --
Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
delete_tags(**kwargs)

Deletes the association between configuration items and one or more tags. This API accepts a list of multiple configuration items.

See also: AWS API Documentation

Request Syntax

response = client.delete_tags(
    configurationIds=[
        'string',
    ],
    tags=[
        {
            'key': 'string',
            'value': 'string'
        },
    ]
)
Parameters
  • configurationIds (list) --

    [REQUIRED]

    A list of configuration items with tags that you want to delete.

    • (string) --
  • tags (list) --

    Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a key -value format. For example:

    {"key": "serverType", "value": "webServer"}
    • (dict) --

      Metadata that help you categorize IT assets.

      • key (string) -- [REQUIRED]

        The type of tag on which to filter.

      • value (string) -- [REQUIRED]

        A value for a tag key on which to filter.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
describe_agents(**kwargs)

Lists agents or connectors as specified by ID or other filters. All agents/connectors associated with your user account can be listed if you call DescribeAgents as is without passing any parameters.

See also: AWS API Documentation

Request Syntax

response = client.describe_agents(
    agentIds=[
        'string',
    ],
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ],
            'condition': 'string'
        },
    ],
    maxResults=123,
    nextToken='string'
)
Parameters
  • agentIds (list) --

    The agent or the Connector IDs for which you want information. If you specify no IDs, the system returns information about all agents/Connectors associated with your AWS user account.

    • (string) --
  • filters (list) --

    You can filter the request using various logical operators and a key -value format. For example:

    {"key": "collectionStatus", "value": "STARTED"}
    • (dict) --

      A filter that can use conditional operators.

      For more information about filters, see Querying Discovered Configuration Items in the AWS Application Discovery Service User Guide .

      • name (string) -- [REQUIRED]

        The name of the filter.

      • values (list) -- [REQUIRED]

        A string value on which to filter. For example, if you choose the destinationServer.osVersion filter name, you could specify Ubuntu for the value.

        • (string) --
      • condition (string) -- [REQUIRED]

        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 AND . If you specify multiple values for a particular filter, the system differentiates the values using OR . Calling either DescribeConfigurations or ListConfigurations returns attributes of matching configuration items.

  • maxResults (integer) -- The total number of agents/Connectors to return in a single page of output. The maximum value is 100.
  • nextToken (string) -- Token to retrieve the next set of results. For example, if you previously specified 100 IDs for DescribeAgentsRequest$agentIds but set DescribeAgentsRequest$maxResults to 10, you received a set of 10 results along with a token. Use that token in this query to get the next set of 10.
Return type

dict

Returns

Response Syntax

{
    'agentsInfo': [
        {
            'agentId': 'string',
            'hostName': 'string',
            'agentNetworkInfoList': [
                {
                    'ipAddress': 'string',
                    'macAddress': 'string'
                },
            ],
            'connectorId': 'string',
            'version': 'string',
            'health': 'HEALTHY'|'UNHEALTHY'|'RUNNING'|'UNKNOWN'|'BLACKLISTED'|'SHUTDOWN',
            'lastHealthPingTime': 'string',
            'collectionStatus': 'string',
            'agentType': 'string',
            'registeredTime': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • agentsInfo (list) --

      Lists agents or the Connector by ID or lists all agents/Connectors associated with your user account if you did not specify an agent/Connector ID. The output includes agent/Connector IDs, IP addresses, media access control (MAC) addresses, agent/Connector health, host name where the agent/Connector resides, and the version number of each agent/Connector.

      • (dict) --

        Information about agents or connectors associated with the user’s AWS account. Information includes agent or connector IDs, IP addresses, media access control (MAC) addresses, agent or connector health, hostname where the agent or connector resides, and agent version for each agent.

        • agentId (string) --

          The agent or connector ID.

        • hostName (string) --

          The name of the host where the agent or connector resides. The host can be a server or virtual machine.

        • agentNetworkInfoList (list) --

          Network details about the host where the agent or connector resides.

          • (dict) --

            Network details about the host where the agent/connector resides.

            • ipAddress (string) --

              The IP address for the host where the agent/connector resides.

            • macAddress (string) --

              The MAC address for the host where the agent/connector resides.

        • connectorId (string) --

          The ID of the connector.

        • version (string) --

          The agent or connector version.

        • health (string) --

          The health of the agent or connector.

        • lastHealthPingTime (string) --

          Time since agent or connector health was reported.

        • collectionStatus (string) --

          Status of the collection process for an agent or connector.

        • agentType (string) --

          Type of agent.

        • registeredTime (string) --

          Agent's first registration timestamp in UTC.

    • nextToken (string) --

      Token to retrieve the next set of results. For example, if you specified 100 IDs for DescribeAgentsRequest$agentIds but set DescribeAgentsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
describe_configurations(**kwargs)

Retrieves attributes for a list of configuration item IDs.

Note

All of the supplied IDs must be for the same asset type from one of the following:

  • server
  • application
  • process
  • connection

Output fields are specific to the asset type specified. For example, the output for a server configuration item includes a list of attributes about the server, such as host name, operating system, number of network cards, etc.

For a complete list of outputs for each asset type, see Using the DescribeConfigurations Action in the AWS Application Discovery Service User Guide .

See also: AWS API Documentation

Request Syntax

response = client.describe_configurations(
    configurationIds=[
        'string',
    ]
)
Parameters
configurationIds (list) --

[REQUIRED]

One or more configuration IDs.

  • (string) --
Return type
dict
Returns
Response Syntax
{
    'configurations': [
        {
            'string': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • configurations (list) --

      A key in the response map. The value is an array of data.

      • (dict) --
        • (string) --
          • (string) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
describe_continuous_exports(**kwargs)

Lists exports as specified by ID. All continuous exports associated with your user account can be listed if you call DescribeContinuousExports as is without passing any parameters.

See also: AWS API Documentation

Request Syntax

response = client.describe_continuous_exports(
    exportIds=[
        'string',
    ],
    maxResults=123,
    nextToken='string'
)
Parameters
  • exportIds (list) --

    The unique IDs assigned to the exports.

    • (string) --
  • maxResults (integer) -- A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.
  • nextToken (string) -- The token from the previous call to DescribeExportTasks .
Return type

dict

Returns

Response Syntax

{
    'descriptions': [
        {
            'exportId': 'string',
            'status': 'START_IN_PROGRESS'|'START_FAILED'|'ACTIVE'|'ERROR'|'STOP_IN_PROGRESS'|'STOP_FAILED'|'INACTIVE',
            'statusDetail': 'string',
            's3Bucket': 'string',
            'startTime': datetime(2015, 1, 1),
            'stopTime': datetime(2015, 1, 1),
            'dataSource': 'AGENT',
            'schemaStorageConfig': {
                'string': 'string'
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • descriptions (list) --

      A list of continuous export descriptions.

      • (dict) --

        A list of continuous export descriptions.

        • exportId (string) --

          The unique ID assigned to this export.

        • status (string) --

          Describes the status of the export. Can be one of the following values:

          • START_IN_PROGRESS - setting up resources to start continuous export.
          • START_FAILED - an error occurred setting up continuous export. To recover, call start-continuous-export again.
          • ACTIVE - data is being exported to the customer bucket.
          • ERROR - an error occurred during export. To fix the issue, call stop-continuous-export and start-continuous-export.
          • STOP_IN_PROGRESS - stopping the export.
          • STOP_FAILED - an error occurred stopping the export. To recover, call stop-continuous-export again.
          • INACTIVE - the continuous export has been stopped. Data is no longer being exported to the customer bucket.
        • statusDetail (string) --

          Contains information about any errors that have occurred. This data type can have the following values:

          • ACCESS_DENIED - You don’t have permission to start Data Exploration in Amazon Athena. Contact your AWS administrator for help. For more information, see Setting Up AWS Application Discovery Service in the Application Discovery Service User Guide.
          • DELIVERY_STREAM_LIMIT_FAILURE - You reached the limit for Amazon Kinesis Data Firehose delivery streams. Reduce the number of streams or request a limit increase and try again. For more information, see Kinesis Data Streams Limits in the Amazon Kinesis Data Streams Developer Guide.
          • FIREHOSE_ROLE_MISSING - The Data Exploration feature is in an error state because your IAM User is missing the AWSApplicationDiscoveryServiceFirehose role. Turn on Data Exploration in Amazon Athena and try again. For more information, see Step 3: Provide Application Discovery Service Access to Non-Administrator Users by Attaching Policies in the Application Discovery Service User Guide.
          • FIREHOSE_STREAM_DOES_NOT_EXIST - The Data Exploration feature is in an error state because your IAM User is missing one or more of the Kinesis data delivery streams.
          • INTERNAL_FAILURE - The Data Exploration feature is in an error state because of an internal failure. Try again later. If this problem persists, contact AWS Support.
          • S3_BUCKET_LIMIT_FAILURE - You reached the limit for Amazon S3 buckets. Reduce the number of Amazon S3 buckets or request a limit increase and try again. For more information, see Bucket Restrictions and Limitations in the Amazon Simple Storage Service Developer Guide.
          • S3_NOT_SIGNED_UP - Your account is not signed up for the Amazon S3 service. You must sign up before you can use Amazon S3. You can sign up at the following URL: https://aws.amazon.com/s3 .
        • s3Bucket (string) --

          The name of the s3 bucket where the export data parquet files are stored.

        • startTime (datetime) --

          The timestamp representing when the continuous export was started.

        • stopTime (datetime) --

          The timestamp that represents when this continuous export was stopped.

        • dataSource (string) --

          The type of data collector used to gather this data (currently only offered for AGENT).

        • schemaStorageConfig (dict) --

          An object which describes how the data is stored.

          • databaseName - the name of the Glue database used to store the schema.
          • (string) --
            • (string) --
    • nextToken (string) --

      The token from the previous call to DescribeExportTasks .

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.OperationNotPermittedException
  • ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
describe_export_configurations(**kwargs)
DescribeExportConfigurations is deprecated. Use DescribeImportTasks , instead.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.describe_export_configurations(
    exportIds=[
        'string',
    ],
    maxResults=123,
    nextToken='string'
)
Parameters
  • exportIds (list) --

    A list of continuous export IDs to search for.

    • (string) --
  • maxResults (integer) -- A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.
  • nextToken (string) -- The token from the previous call to describe-export-tasks.
Return type

dict

Returns

Response Syntax

{
    'exportsInfo': [
        {
            'exportId': 'string',
            'exportStatus': 'FAILED'|'SUCCEEDED'|'IN_PROGRESS',
            'statusMessage': 'string',
            'configurationsDownloadUrl': 'string',
            'exportRequestTime': datetime(2015, 1, 1),
            'isTruncated': True|False,
            'requestedStartTime': datetime(2015, 1, 1),
            'requestedEndTime': datetime(2015, 1, 1)
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • exportsInfo (list) --

      • (dict) --

        Information regarding the export status of discovered data. The value is an array of objects.

        • exportId (string) --

          A unique identifier used to query an export.

        • exportStatus (string) --

          The status of the data export job.

        • statusMessage (string) --

          A status message provided for API callers.

        • configurationsDownloadUrl (string) --

          A URL for an Amazon S3 bucket where you can review the exported data. The URL is displayed only if the export succeeded.

        • exportRequestTime (datetime) --

          The time that the data export was initiated.

        • isTruncated (boolean) --

          If true, the export of agent information exceeded the size limit for a single export and the exported data is incomplete for the requested time range. To address this, select a smaller time range for the export by using startDate and endDate .

        • requestedStartTime (datetime) --

          The value of startTime parameter in the StartExportTask request. If no startTime was requested, this result does not appear in ExportInfo .

        • requestedEndTime (datetime) --

          The endTime used in the StartExportTask request. If no endTime was requested, this result does not appear in ExportInfo .

    • nextToken (string) --

      The token from the previous call to describe-export-tasks.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
describe_export_tasks(**kwargs)

Retrieve status of one or more export tasks. You can retrieve the status of up to 100 export tasks.

See also: AWS API Documentation

Request Syntax

response = client.describe_export_tasks(
    exportIds=[
        'string',
    ],
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ],
            'condition': 'string'
        },
    ],
    maxResults=123,
    nextToken='string'
)
Parameters
  • exportIds (list) --

    One or more unique identifiers used to query the status of an export request.

    • (string) --
  • filters (list) --

    One or more filters.

    • AgentId - ID of the agent whose collected data will be exported
    • (dict) --

      Used to select which agent's data is to be exported. A single agent ID may be selected for export using the StartExportTask action.

      • name (string) -- [REQUIRED]

        A single ExportFilter name. Supported filters: agentId .

      • values (list) -- [REQUIRED]

        A single agentId for a Discovery Agent. An agentId can be found using the DescribeAgents action. Typically an ADS agentId is in the form o-0123456789abcdef0 .

        • (string) --
      • condition (string) -- [REQUIRED]

        Supported condition: EQUALS

  • maxResults (integer) -- The maximum number of volume results returned by DescribeExportTasks in paginated output. When this parameter is used, DescribeExportTasks only returns maxResults results in a single page along with a nextToken response element.
  • nextToken (string) -- The nextToken value returned from a previous paginated DescribeExportTasks request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.
Return type

dict

Returns

Response Syntax

{
    'exportsInfo': [
        {
            'exportId': 'string',
            'exportStatus': 'FAILED'|'SUCCEEDED'|'IN_PROGRESS',
            'statusMessage': 'string',
            'configurationsDownloadUrl': 'string',
            'exportRequestTime': datetime(2015, 1, 1),
            'isTruncated': True|False,
            'requestedStartTime': datetime(2015, 1, 1),
            'requestedEndTime': datetime(2015, 1, 1)
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • exportsInfo (list) --

      Contains one or more sets of export request details. When the status of a request is SUCCEEDED , the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.

      • (dict) --

        Information regarding the export status of discovered data. The value is an array of objects.

        • exportId (string) --

          A unique identifier used to query an export.

        • exportStatus (string) --

          The status of the data export job.

        • statusMessage (string) --

          A status message provided for API callers.

        • configurationsDownloadUrl (string) --

          A URL for an Amazon S3 bucket where you can review the exported data. The URL is displayed only if the export succeeded.

        • exportRequestTime (datetime) --

          The time that the data export was initiated.

        • isTruncated (boolean) --

          If true, the export of agent information exceeded the size limit for a single export and the exported data is incomplete for the requested time range. To address this, select a smaller time range for the export by using startDate and endDate .

        • requestedStartTime (datetime) --

          The value of startTime parameter in the StartExportTask request. If no startTime was requested, this result does not appear in ExportInfo .

        • requestedEndTime (datetime) --

          The endTime used in the StartExportTask request. If no endTime was requested, this result does not appear in ExportInfo .

    • nextToken (string) --

      The nextToken value to include in a future DescribeExportTasks request. When the results of a DescribeExportTasks request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
describe_import_tasks(**kwargs)

Returns an array of import tasks for your account, including status information, times, IDs, the Amazon S3 Object URL for the import file, and more.

See also: AWS API Documentation

Request Syntax

response = client.describe_import_tasks(
    filters=[
        {
            'name': 'IMPORT_TASK_ID'|'STATUS'|'NAME',
            'values': [
                'string',
            ]
        },
    ],
    maxResults=123,
    nextToken='string'
)
Parameters
  • filters (list) --

    An array of name-value pairs that you provide to filter the results for the DescribeImportTask request to a specific subset of results. Currently, wildcard values aren't supported for filters.

    • (dict) --

      A name-values pair of elements you can use to filter the results when querying your import tasks. Currently, wildcards are not supported for filters.

      Note

      When filtering by import status, all other filter values are ignored.

      • name (string) --

        The name, status, or import task ID for a specific import task.

      • values (list) --

        An array of strings that you can provide to match against a specific name, status, or import task ID to filter the results for your import task queries.

        • (string) --
  • maxResults (integer) -- The maximum number of results that you want this request to return, up to 100.
  • nextToken (string) -- The token to request a specific page of results.
Return type

dict

Returns

Response Syntax

{
    'nextToken': 'string',
    'tasks': [
        {
            'importTaskId': 'string',
            'clientRequestToken': 'string',
            'name': 'string',
            'importUrl': 'string',
            'status': 'IMPORT_IN_PROGRESS'|'IMPORT_COMPLETE'|'IMPORT_COMPLETE_WITH_ERRORS'|'IMPORT_FAILED'|'IMPORT_FAILED_SERVER_LIMIT_EXCEEDED'|'IMPORT_FAILED_RECORD_LIMIT_EXCEEDED'|'DELETE_IN_PROGRESS'|'DELETE_COMPLETE'|'DELETE_FAILED'|'DELETE_FAILED_LIMIT_EXCEEDED'|'INTERNAL_ERROR',
            'importRequestTime': datetime(2015, 1, 1),
            'importCompletionTime': datetime(2015, 1, 1),
            'importDeletedTime': datetime(2015, 1, 1),
            'serverImportSuccess': 123,
            'serverImportFailure': 123,
            'applicationImportSuccess': 123,
            'applicationImportFailure': 123,
            'errorsAndFailedEntriesZip': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • nextToken (string) --

      The token to request the next page of results.

    • tasks (list) --

      A returned array of import tasks that match any applied filters, up to the specified number of maximum results.

      • (dict) --

        An array of information related to the import task request that includes status information, times, IDs, the Amazon S3 Object URL for the import file, and more.

        • importTaskId (string) --

          The unique ID for a specific import task. These IDs aren't globally unique, but they are unique within an AWS account.

        • clientRequestToken (string) --

          A unique token used to prevent the same import request from occurring more than once. If you didn't provide a token, a token was automatically generated when the import task request was sent.

        • name (string) --

          A descriptive name for an import task. You can use this name to filter future requests related to this import task, such as identifying applications and servers that were included in this import task. We recommend that you use a meaningful name for each import task.

        • importUrl (string) --

          The URL for your import file that you've uploaded to Amazon S3.

        • status (string) --

          The status of the import task. An import can have the status of IMPORT_COMPLETE and still have some records fail to import from the overall request. More information can be found in the downloadable archive defined in the errorsAndFailedEntriesZip field, or in the Migration Hub management console.

        • importRequestTime (datetime) --

          The time that the import task request was made, presented in the Unix time stamp format.

        • importCompletionTime (datetime) --

          The time that the import task request finished, presented in the Unix time stamp format.

        • importDeletedTime (datetime) --

          The time that the import task request was deleted, presented in the Unix time stamp format.

        • serverImportSuccess (integer) --

          The total number of server records in the import file that were successfully imported.

        • serverImportFailure (integer) --

          The total number of server records in the import file that failed to be imported.

        • applicationImportSuccess (integer) --

          The total number of application records in the import file that were successfully imported.

        • applicationImportFailure (integer) --

          The total number of application records in the import file that failed to be imported.

        • errorsAndFailedEntriesZip (string) --

          A link to a compressed archive folder (in the ZIP format) that contains an error log and a file of failed records. You can use these two files to quickly identify records that failed, why they failed, and correct those records. Afterward, you can upload the corrected file to your Amazon S3 bucket and create another import task request.

          This field also includes authorization information so you can confirm the authenticity of the compressed archive before you download it.

          If some records failed to be imported we recommend that you correct the records in the failed entries file and then imports that failed entries file. This prevents you from having to correct and update the larger original file and attempt importing it again.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
describe_tags(**kwargs)

Retrieves a list of configuration items that have tags as specified by the key-value pairs, name and value, passed to the optional parameter filters .

There are three valid tag filter names:

  • tagKey
  • tagValue
  • configurationId

Also, all configuration items associated with your user account that have tags can be listed if you call DescribeTags as is without passing any parameters.

See also: AWS API Documentation

Request Syntax

response = client.describe_tags(
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ]
        },
    ],
    maxResults=123,
    nextToken='string'
)
Parameters
  • filters (list) --

    You can filter the list using a key -value format. You can separate these items by using logical operators. Allowed filters include tagKey , tagValue , and configurationId .

    • (dict) --

      The tag filter. Valid names are: tagKey , tagValue , configurationId .

      • name (string) -- [REQUIRED]

        A name of the tag filter.

      • values (list) -- [REQUIRED]

        Values for the tag filter.

        • (string) --
  • maxResults (integer) -- The total number of items to return in a single page of output. The maximum value is 100.
  • nextToken (string) -- A token to start the list. Use this token to get the next set of results.
Return type

dict

Returns

Response Syntax

{
    'tags': [
        {
            'configurationType': 'SERVER'|'PROCESS'|'CONNECTION'|'APPLICATION',
            'configurationId': 'string',
            'key': 'string',
            'value': 'string',
            'timeOfCreation': datetime(2015, 1, 1)
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • tags (list) --

      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.

      • (dict) --

        Tags for a configuration item. Tags are metadata that help you categorize IT assets.

        • configurationType (string) --

          A type of IT asset to tag.

        • configurationId (string) --

          The configuration ID for the item to tag. You can specify a list of keys and values.

        • key (string) --

          A type of tag on which to filter. For example, serverType .

        • value (string) --

          A value on which to filter. For example key = serverType and value = web server .

        • timeOfCreation (datetime) --

          The time the configuration tag was created in Coordinated Universal Time (UTC).

    • nextToken (string) --

      The call returns a token. Use this token to get the next set of results.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
disassociate_configuration_items_from_application(**kwargs)

Disassociates one or more configuration items from an application.

See also: AWS API Documentation

Request Syntax

response = client.disassociate_configuration_items_from_application(
    applicationConfigurationId='string',
    configurationIds=[
        'string',
    ]
)
Parameters
  • applicationConfigurationId (string) --

    [REQUIRED]

    Configuration ID of an application from which each item is disassociated.

  • configurationIds (list) --

    [REQUIRED]

    Configuration ID of each item to be disassociated from an application.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
export_configurations()

Deprecated. Use StartExportTask instead.

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 that you can query using the DescribeExportConfigurations API. The system imposes a limit of two configuration exports in six hours.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.export_configurations()
Return type
dict
Returns
Response Syntax
{
    'exportId': 'string'
}

Response Structure

  • (dict) --
    • exportId (string) --

      A unique identifier that you can use to query the export status.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.OperationNotPermittedException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
generate_presigned_url(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)

Generate a presigned url given a client, its method, and arguments

Parameters
  • ClientMethod (string) -- The client method to presign for
  • Params (dict) -- The parameters normally passed to ClientMethod.
  • ExpiresIn (int) -- The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds)
  • HttpMethod (string) -- The http method to use on the generated url. By default, the http method is whatever is used in the method's model.
Returns

The presigned url

get_discovery_summary()

Retrieves a short summary of discovered assets.

This API operation takes no request parameters and is called as is at the command prompt as shown in the example.

See also: AWS API Documentation

Request Syntax

response = client.get_discovery_summary()
Return type
dict
Returns
Response Syntax
{
    'servers': 123,
    'applications': 123,
    'serversMappedToApplications': 123,
    'serversMappedtoTags': 123,
    'agentSummary': {
        'activeAgents': 123,
        'healthyAgents': 123,
        'blackListedAgents': 123,
        'shutdownAgents': 123,
        'unhealthyAgents': 123,
        'totalAgents': 123,
        'unknownAgents': 123
    },
    'connectorSummary': {
        'activeConnectors': 123,
        'healthyConnectors': 123,
        'blackListedConnectors': 123,
        'shutdownConnectors': 123,
        'unhealthyConnectors': 123,
        'totalConnectors': 123,
        'unknownConnectors': 123
    }
}

Response Structure

  • (dict) --
    • servers (integer) --

      The number of servers discovered.

    • applications (integer) --

      The number of applications discovered.

    • serversMappedToApplications (integer) --

      The number of servers mapped to applications.

    • serversMappedtoTags (integer) --

      The number of servers mapped to tags.

    • agentSummary (dict) --

      Details about discovered agents, including agent status and health.

      • activeAgents (integer) --

        Number of active discovery agents.

      • healthyAgents (integer) --

        Number of healthy discovery agents

      • blackListedAgents (integer) --

        Number of blacklisted discovery agents.

      • shutdownAgents (integer) --

        Number of discovery agents with status SHUTDOWN.

      • unhealthyAgents (integer) --

        Number of unhealthy discovery agents.

      • totalAgents (integer) --

        Total number of discovery agents.

      • unknownAgents (integer) --

        Number of unknown discovery agents.

    • connectorSummary (dict) --

      Details about discovered connectors, including connector status and health.

      • activeConnectors (integer) --

        Number of active discovery connectors.

      • healthyConnectors (integer) --

        Number of healthy discovery connectors.

      • blackListedConnectors (integer) --

        Number of blacklisted discovery connectors.

      • shutdownConnectors (integer) --

        Number of discovery connectors with status SHUTDOWN,

      • unhealthyConnectors (integer) --

        Number of unhealthy discovery connectors.

      • totalConnectors (integer) --

        Total number of discovery connectors.

      • unknownConnectors (integer) --

        Number of unknown discovery connectors.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
get_paginator(operation_name)

Create a paginator for an operation.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Raises OperationNotPageableError
Raised if the operation is not pageable. You can use the client.can_paginate method to check if an operation is pageable.
Return type
L{botocore.paginate.Paginator}
Returns
A paginator object.
get_waiter(waiter_name)

Returns an object that can wait for some condition.

Parameters
waiter_name (str) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
Returns
The specified waiter object.
Return type
botocore.waiter.Waiter
list_configurations(**kwargs)

Retrieves a list of configuration items as specified by the value passed to the required parameter configurationType . Optional filtering may be applied to refine search results.

See also: AWS API Documentation

Request Syntax

response = client.list_configurations(
    configurationType='SERVER'|'PROCESS'|'CONNECTION'|'APPLICATION',
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ],
            'condition': 'string'
        },
    ],
    maxResults=123,
    nextToken='string',
    orderBy=[
        {
            'fieldName': 'string',
            'sortOrder': 'ASC'|'DESC'
        },
    ]
)
Parameters
  • configurationType (string) --

    [REQUIRED]

    A valid configuration identified by Application Discovery Service.

  • filters (list) --

    You can filter the request using various logical operators and a key -value format. For example:

    {"key": "serverType", "value": "webServer"}

    For a complete list of filter options and guidance about using them with this action, see Using the ListConfigurations Action in the AWS Application Discovery Service User Guide .

    • (dict) --

      A filter that can use conditional operators.

      For more information about filters, see Querying Discovered Configuration Items in the AWS Application Discovery Service User Guide .

      • name (string) -- [REQUIRED]

        The name of the filter.

      • values (list) -- [REQUIRED]

        A string value on which to filter. For example, if you choose the destinationServer.osVersion filter name, you could specify Ubuntu for the value.

        • (string) --
      • condition (string) -- [REQUIRED]

        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 AND . If you specify multiple values for a particular filter, the system differentiates the values using OR . Calling either DescribeConfigurations or ListConfigurations returns attributes of matching configuration items.

  • maxResults (integer) -- The total number of items to return. The maximum value is 100.
  • nextToken (string) -- Token to retrieve the next set of results. For example, if a previous call to ListConfigurations returned 100 items, but you set ListConfigurationsRequest$maxResults to 10, you received a set of 10 results along with a token. Use that token in this query to get the next set of 10.
  • orderBy (list) --

    Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action in the AWS Application Discovery Service User Guide .

    • (dict) --

      A field and direction for ordered output.

      • fieldName (string) -- [REQUIRED]

        The field on which to order.

      • sortOrder (string) --

        Ordering direction.

Return type

dict

Returns

Response Syntax

{
    'configurations': [
        {
            'string': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • configurations (list) --

      Returns configuration details, including the configuration ID, attribute names, and attribute values.

      • (dict) --
        • (string) --
          • (string) --
    • nextToken (string) --

      Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set ListConfigurationsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
list_server_neighbors(**kwargs)

Retrieves a list of servers that are one network hop away from a specified server.

See also: AWS API Documentation

Request Syntax

response = client.list_server_neighbors(
    configurationId='string',
    portInformationNeeded=True|False,
    neighborConfigurationIds=[
        'string',
    ],
    maxResults=123,
    nextToken='string'
)
Parameters
  • configurationId (string) --

    [REQUIRED]

    Configuration ID of the server for which neighbors are being listed.

  • portInformationNeeded (boolean) -- Flag to indicate if port and protocol information is needed as part of the response.
  • neighborConfigurationIds (list) --

    List of configuration IDs to test for one-hop-away.

    • (string) --
  • maxResults (integer) -- Maximum number of results to return in a single page of output.
  • nextToken (string) -- Token to retrieve the next set of results. For example, if you previously specified 100 IDs for ListServerNeighborsRequest$neighborConfigurationIds but set ListServerNeighborsRequest$maxResults to 10, you received a set of 10 results along with a token. Use that token in this query to get the next set of 10.
Return type

dict

Returns

Response Syntax

{
    'neighbors': [
        {
            'sourceServerId': 'string',
            'destinationServerId': 'string',
            'destinationPort': 123,
            'transportProtocol': 'string',
            'connectionsCount': 123
        },
    ],
    'nextToken': 'string',
    'knownDependencyCount': 123
}

Response Structure

  • (dict) --

    • neighbors (list) --

      List of distinct servers that are one hop away from the given server.

      • (dict) --

        Details about neighboring servers.

        • sourceServerId (string) --

          The ID of the server that opened the network connection.

        • destinationServerId (string) --

          The ID of the server that accepted the network connection.

        • destinationPort (integer) --

          The destination network port for the connection.

        • transportProtocol (string) --

          The network protocol used for the connection.

        • connectionsCount (integer) --

          The number of open network connections with the neighboring server.

    • nextToken (string) --

      Token to retrieve the next set of results. For example, if you specified 100 IDs for ListServerNeighborsRequest$neighborConfigurationIds but set ListServerNeighborsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.

    • knownDependencyCount (integer) --

      Count of distinct servers that are one hop away from the given server.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
start_continuous_export()

Start the continuous flow of agent's discovered data into Amazon Athena.

See also: AWS API Documentation

Request Syntax

response = client.start_continuous_export()
Return type
dict
Returns
Response Syntax
{
    'exportId': 'string',
    's3Bucket': 'string',
    'startTime': datetime(2015, 1, 1),
    'dataSource': 'AGENT',
    'schemaStorageConfig': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --
    • exportId (string) --

      The unique ID assigned to this export.

    • s3Bucket (string) --

      The name of the s3 bucket where the export data parquet files are stored.

    • startTime (datetime) --

      The timestamp representing when the continuous export was started.

    • dataSource (string) --

      The type of data collector used to gather this data (currently only offered for AGENT).

    • schemaStorageConfig (dict) --

      A dictionary which describes how the data is stored.

      • databaseName - the name of the Glue database used to store the schema.
      • (string) --
        • (string) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.ConflictErrorException
  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.OperationNotPermittedException
  • ApplicationDiscoveryService.Client.exceptions.ResourceInUseException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
start_data_collection_by_agent_ids(**kwargs)

Instructs the specified agents or connectors to start collecting data.

See also: AWS API Documentation

Request Syntax

response = client.start_data_collection_by_agent_ids(
    agentIds=[
        'string',
    ]
)
Parameters
agentIds (list) --

[REQUIRED]

The IDs of the agents or connectors from which to start collecting data. If you send a request to an agent/connector 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 Description field. If you send a request to multiple agents/connectors and you do not have permission to contact some of those agents/connectors, the system does not throw an exception. Instead, the system shows Failed in the Description field.

  • (string) --
Return type
dict
Returns
Response Syntax
{
    'agentsConfigurationStatus': [
        {
            'agentId': 'string',
            'operationSucceeded': True|False,
            'description': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • agentsConfigurationStatus (list) --

      Information about agents or the connector that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.

      • (dict) --

        Information about agents or connectors that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation, and whether the agent/connector configuration was updated.

        • agentId (string) --

          The agent/connector ID.

        • operationSucceeded (boolean) --

          Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent/connector receives this command the next time it polls for a new command.

        • description (string) --

          A description of the operation performed.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
start_export_task(**kwargs)

Begins the export of discovered data to an S3 bucket.

If you specify agentIds in a filter, the task exports up to 72 hours of detailed data collected by the identified Application Discovery Agent, including network, process, and performance details. A time range for exported agent data may be set by using startTime and endTime . Export of detailed agent data is limited to five concurrently running exports.

If you do not include an agentIds filter, summary data is exported that includes both AWS Agentless Discovery Connector data and summary data from AWS Discovery Agents. Export of summary data is limited to two exports per day.

See also: AWS API Documentation

Request Syntax

response = client.start_export_task(
    exportDataFormat=[
        'CSV'|'GRAPHML',
    ],
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ],
            'condition': 'string'
        },
    ],
    startTime=datetime(2015, 1, 1),
    endTime=datetime(2015, 1, 1)
)
Parameters
  • exportDataFormat (list) --

    The file format for the returned export data. Default value is CSV . Note: The GRAPHML option has been deprecated.

    • (string) --
  • filters (list) --

    If a filter is present, it selects the single agentId of the Application Discovery Agent for which data is exported. The agentId can be found in the results of the DescribeAgents API or CLI. If no filter is present, startTime and endTime are ignored and exported data includes both Agentless Discovery Connector data and summary data from Application Discovery agents.

    • (dict) --

      Used to select which agent's data is to be exported. A single agent ID may be selected for export using the StartExportTask action.

      • name (string) -- [REQUIRED]

        A single ExportFilter name. Supported filters: agentId .

      • values (list) -- [REQUIRED]

        A single agentId for a Discovery Agent. An agentId can be found using the DescribeAgents action. Typically an ADS agentId is in the form o-0123456789abcdef0 .

        • (string) --
      • condition (string) -- [REQUIRED]

        Supported condition: EQUALS

  • startTime (datetime) -- The start timestamp for exported data from the single Application Discovery Agent selected in the filters. If no value is specified, data is exported starting from the first data collected by the agent.
  • endTime (datetime) -- The end timestamp for exported data from the single Application Discovery Agent selected in the filters. If no value is specified, exported data includes the most recent data collected by the agent.
Return type

dict

Returns

Response Syntax

{
    'exportId': 'string'
}

Response Structure

  • (dict) --

    • exportId (string) --

      A unique identifier used to query the status of an export request.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.OperationNotPermittedException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
start_import_task(**kwargs)

Starts an import task, which allows you to import details of your on-premises environment directly into AWS Migration Hub without having to use the Application Discovery Service (ADS) tools such as the Discovery Connector or Discovery Agent. This gives you the option to perform migration assessment and planning directly from your imported data, including the ability to group your devices as applications and track their migration status.

To start an import request, do this:

  • Download the specially formatted comma separated value (CSV) import template, which you can find here: https://s3-us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv .
  • Fill out the template with your server and application data.
  • Upload your import file to an Amazon S3 bucket, and make a note of it's Object URL. Your import file must be in the CSV format.
  • Use the console or the StartImportTask command with the AWS CLI or one of the AWS SDKs to import the records from your file.

For more information, including step-by-step procedures, see Migration Hub Import in the AWS Application Discovery Service User Guide .

Note

There are limits to the number of import tasks you can create (and delete) in an AWS account. For more information, see AWS Application Discovery Service Limits in the AWS Application Discovery Service User Guide .

See also: AWS API Documentation

Request Syntax

response = client.start_import_task(
    clientRequestToken='string',
    name='string',
    importUrl='string'
)
Parameters
  • clientRequestToken (string) --

    Optional. A unique token that you can provide to prevent the same import request from occurring more than once. If you don't provide a token, a token is automatically generated.

    Sending more than one StartImportTask request with the same client request token will return information about the original import task with that client request token.

    This field is autopopulated if not provided.

  • name (string) --

    [REQUIRED]

    A descriptive name for this request. You can use this name to filter future requests related to this import task, such as identifying applications and servers that were included in this import task. We recommend that you use a meaningful name for each import task.

  • importUrl (string) --

    [REQUIRED]

    The URL for your import file that you've uploaded to Amazon S3.

    Note

    If you're using the AWS CLI, this URL is structured as follows: s3://BucketName/ImportFileName.CSV

Return type

dict

Returns

Response Syntax

{
    'task': {
        'importTaskId': 'string',
        'clientRequestToken': 'string',
        'name': 'string',
        'importUrl': 'string',
        'status': 'IMPORT_IN_PROGRESS'|'IMPORT_COMPLETE'|'IMPORT_COMPLETE_WITH_ERRORS'|'IMPORT_FAILED'|'IMPORT_FAILED_SERVER_LIMIT_EXCEEDED'|'IMPORT_FAILED_RECORD_LIMIT_EXCEEDED'|'DELETE_IN_PROGRESS'|'DELETE_COMPLETE'|'DELETE_FAILED'|'DELETE_FAILED_LIMIT_EXCEEDED'|'INTERNAL_ERROR',
        'importRequestTime': datetime(2015, 1, 1),
        'importCompletionTime': datetime(2015, 1, 1),
        'importDeletedTime': datetime(2015, 1, 1),
        'serverImportSuccess': 123,
        'serverImportFailure': 123,
        'applicationImportSuccess': 123,
        'applicationImportFailure': 123,
        'errorsAndFailedEntriesZip': 'string'
    }
}

Response Structure

  • (dict) --

    • task (dict) --

      An array of information related to the import task request including status information, times, IDs, the Amazon S3 Object URL for the import file, and more.

      • importTaskId (string) --

        The unique ID for a specific import task. These IDs aren't globally unique, but they are unique within an AWS account.

      • clientRequestToken (string) --

        A unique token used to prevent the same import request from occurring more than once. If you didn't provide a token, a token was automatically generated when the import task request was sent.

      • name (string) --

        A descriptive name for an import task. You can use this name to filter future requests related to this import task, such as identifying applications and servers that were included in this import task. We recommend that you use a meaningful name for each import task.

      • importUrl (string) --

        The URL for your import file that you've uploaded to Amazon S3.

      • status (string) --

        The status of the import task. An import can have the status of IMPORT_COMPLETE and still have some records fail to import from the overall request. More information can be found in the downloadable archive defined in the errorsAndFailedEntriesZip field, or in the Migration Hub management console.

      • importRequestTime (datetime) --

        The time that the import task request was made, presented in the Unix time stamp format.

      • importCompletionTime (datetime) --

        The time that the import task request finished, presented in the Unix time stamp format.

      • importDeletedTime (datetime) --

        The time that the import task request was deleted, presented in the Unix time stamp format.

      • serverImportSuccess (integer) --

        The total number of server records in the import file that were successfully imported.

      • serverImportFailure (integer) --

        The total number of server records in the import file that failed to be imported.

      • applicationImportSuccess (integer) --

        The total number of application records in the import file that were successfully imported.

      • applicationImportFailure (integer) --

        The total number of application records in the import file that failed to be imported.

      • errorsAndFailedEntriesZip (string) --

        A link to a compressed archive folder (in the ZIP format) that contains an error log and a file of failed records. You can use these two files to quickly identify records that failed, why they failed, and correct those records. Afterward, you can upload the corrected file to your Amazon S3 bucket and create another import task request.

        This field also includes authorization information so you can confirm the authenticity of the compressed archive before you download it.

        If some records failed to be imported we recommend that you correct the records in the failed entries file and then imports that failed entries file. This prevents you from having to correct and update the larger original file and attempt importing it again.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.ResourceInUseException
  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
stop_continuous_export(**kwargs)

Stop the continuous flow of agent's discovered data into Amazon Athena.

See also: AWS API Documentation

Request Syntax

response = client.stop_continuous_export(
    exportId='string'
)
Parameters
exportId (string) --

[REQUIRED]

The unique ID assigned to this export.

Return type
dict
Returns
Response Syntax
{
    'startTime': datetime(2015, 1, 1),
    'stopTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --
    • startTime (datetime) --

      Timestamp that represents when this continuous export started collecting data.

    • stopTime (datetime) --

      Timestamp that represents when this continuous export was stopped.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.OperationNotPermittedException
  • ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
  • ApplicationDiscoveryService.Client.exceptions.ResourceInUseException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
stop_data_collection_by_agent_ids(**kwargs)

Instructs the specified agents or connectors to stop collecting data.

See also: AWS API Documentation

Request Syntax

response = client.stop_data_collection_by_agent_ids(
    agentIds=[
        'string',
    ]
)
Parameters
agentIds (list) --

[REQUIRED]

The IDs of the agents or connectors from which to stop collecting data.

  • (string) --
Return type
dict
Returns
Response Syntax
{
    'agentsConfigurationStatus': [
        {
            'agentId': 'string',
            'operationSucceeded': True|False,
            'description': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • agentsConfigurationStatus (list) --

      Information about the agents or connector that were instructed to stop collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.

      • (dict) --

        Information about agents or connectors that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation, and whether the agent/connector configuration was updated.

        • agentId (string) --

          The agent/connector ID.

        • operationSucceeded (boolean) --

          Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent/connector receives this command the next time it polls for a new command.

        • description (string) --

          A description of the operation performed.

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException
update_application(**kwargs)

Updates metadata about an application.

See also: AWS API Documentation

Request Syntax

response = client.update_application(
    configurationId='string',
    name='string',
    description='string'
)
Parameters
  • configurationId (string) --

    [REQUIRED]

    Configuration ID of the application to be updated.

  • name (string) -- New name of the application to be updated.
  • description (string) -- New description of the application to be updated.
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
  • ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
  • ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
  • ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException

Paginators

The available paginators are:

class ApplicationDiscoveryService.Paginator.DescribeAgents
paginator = client.get_paginator('describe_agents')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ApplicationDiscoveryService.Client.describe_agents().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    agentIds=[
        'string',
    ],
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ],
            'condition': 'string'
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • agentIds (list) --

    The agent or the Connector IDs for which you want information. If you specify no IDs, the system returns information about all agents/Connectors associated with your AWS user account.

    • (string) --
  • filters (list) --

    You can filter the request using various logical operators and a key -value format. For example:

    {"key": "collectionStatus", "value": "STARTED"}
    • (dict) --

      A filter that can use conditional operators.

      For more information about filters, see Querying Discovered Configuration Items in the AWS Application Discovery Service User Guide .

      • name (string) -- [REQUIRED]

        The name of the filter.

      • values (list) -- [REQUIRED]

        A string value on which to filter. For example, if you choose the destinationServer.osVersion filter name, you could specify Ubuntu for the value.

        • (string) --
      • condition (string) -- [REQUIRED]

        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 AND . If you specify multiple values for a particular filter, the system differentiates the values using OR . Calling either DescribeConfigurations or ListConfigurations returns attributes of matching configuration items.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'agentsInfo': [
        {
            'agentId': 'string',
            'hostName': 'string',
            'agentNetworkInfoList': [
                {
                    'ipAddress': 'string',
                    'macAddress': 'string'
                },
            ],
            'connectorId': 'string',
            'version': 'string',
            'health': 'HEALTHY'|'UNHEALTHY'|'RUNNING'|'UNKNOWN'|'BLACKLISTED'|'SHUTDOWN',
            'lastHealthPingTime': 'string',
            'collectionStatus': 'string',
            'agentType': 'string',
            'registeredTime': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • agentsInfo (list) --

      Lists agents or the Connector by ID or lists all agents/Connectors associated with your user account if you did not specify an agent/Connector ID. The output includes agent/Connector IDs, IP addresses, media access control (MAC) addresses, agent/Connector health, host name where the agent/Connector resides, and the version number of each agent/Connector.

      • (dict) --

        Information about agents or connectors associated with the user’s AWS account. Information includes agent or connector IDs, IP addresses, media access control (MAC) addresses, agent or connector health, hostname where the agent or connector resides, and agent version for each agent.

        • agentId (string) --

          The agent or connector ID.

        • hostName (string) --

          The name of the host where the agent or connector resides. The host can be a server or virtual machine.

        • agentNetworkInfoList (list) --

          Network details about the host where the agent or connector resides.

          • (dict) --

            Network details about the host where the agent/connector resides.

            • ipAddress (string) --

              The IP address for the host where the agent/connector resides.

            • macAddress (string) --

              The MAC address for the host where the agent/connector resides.

        • connectorId (string) --

          The ID of the connector.

        • version (string) --

          The agent or connector version.

        • health (string) --

          The health of the agent or connector.

        • lastHealthPingTime (string) --

          Time since agent or connector health was reported.

        • collectionStatus (string) --

          Status of the collection process for an agent or connector.

        • agentType (string) --

          Type of agent.

        • registeredTime (string) --

          Agent's first registration timestamp in UTC.

    • NextToken (string) --

      A token to resume pagination.

class ApplicationDiscoveryService.Paginator.DescribeContinuousExports
paginator = client.get_paginator('describe_continuous_exports')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ApplicationDiscoveryService.Client.describe_continuous_exports().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    exportIds=[
        'string',
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • exportIds (list) --

    The unique IDs assigned to the exports.

    • (string) --
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'descriptions': [
        {
            'exportId': 'string',
            'status': 'START_IN_PROGRESS'|'START_FAILED'|'ACTIVE'|'ERROR'|'STOP_IN_PROGRESS'|'STOP_FAILED'|'INACTIVE',
            'statusDetail': 'string',
            's3Bucket': 'string',
            'startTime': datetime(2015, 1, 1),
            'stopTime': datetime(2015, 1, 1),
            'dataSource': 'AGENT',
            'schemaStorageConfig': {
                'string': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • descriptions (list) --

      A list of continuous export descriptions.

      • (dict) --

        A list of continuous export descriptions.

        • exportId (string) --

          The unique ID assigned to this export.

        • status (string) --

          Describes the status of the export. Can be one of the following values:

          • START_IN_PROGRESS - setting up resources to start continuous export.
          • START_FAILED - an error occurred setting up continuous export. To recover, call start-continuous-export again.
          • ACTIVE - data is being exported to the customer bucket.
          • ERROR - an error occurred during export. To fix the issue, call stop-continuous-export and start-continuous-export.
          • STOP_IN_PROGRESS - stopping the export.
          • STOP_FAILED - an error occurred stopping the export. To recover, call stop-continuous-export again.
          • INACTIVE - the continuous export has been stopped. Data is no longer being exported to the customer bucket.
        • statusDetail (string) --

          Contains information about any errors that have occurred. This data type can have the following values:

          • ACCESS_DENIED - You don’t have permission to start Data Exploration in Amazon Athena. Contact your AWS administrator for help. For more information, see Setting Up AWS Application Discovery Service in the Application Discovery Service User Guide.
          • DELIVERY_STREAM_LIMIT_FAILURE - You reached the limit for Amazon Kinesis Data Firehose delivery streams. Reduce the number of streams or request a limit increase and try again. For more information, see Kinesis Data Streams Limits in the Amazon Kinesis Data Streams Developer Guide.
          • FIREHOSE_ROLE_MISSING - The Data Exploration feature is in an error state because your IAM User is missing the AWSApplicationDiscoveryServiceFirehose role. Turn on Data Exploration in Amazon Athena and try again. For more information, see Step 3: Provide Application Discovery Service Access to Non-Administrator Users by Attaching Policies in the Application Discovery Service User Guide.
          • FIREHOSE_STREAM_DOES_NOT_EXIST - The Data Exploration feature is in an error state because your IAM User is missing one or more of the Kinesis data delivery streams.
          • INTERNAL_FAILURE - The Data Exploration feature is in an error state because of an internal failure. Try again later. If this problem persists, contact AWS Support.
          • S3_BUCKET_LIMIT_FAILURE - You reached the limit for Amazon S3 buckets. Reduce the number of Amazon S3 buckets or request a limit increase and try again. For more information, see Bucket Restrictions and Limitations in the Amazon Simple Storage Service Developer Guide.
          • S3_NOT_SIGNED_UP - Your account is not signed up for the Amazon S3 service. You must sign up before you can use Amazon S3. You can sign up at the following URL: https://aws.amazon.com/s3 .
        • s3Bucket (string) --

          The name of the s3 bucket where the export data parquet files are stored.

        • startTime (datetime) --

          The timestamp representing when the continuous export was started.

        • stopTime (datetime) --

          The timestamp that represents when this continuous export was stopped.

        • dataSource (string) --

          The type of data collector used to gather this data (currently only offered for AGENT).

        • schemaStorageConfig (dict) --

          An object which describes how the data is stored.

          • databaseName - the name of the Glue database used to store the schema.
          • (string) --
            • (string) --
    • NextToken (string) --

      A token to resume pagination.

class ApplicationDiscoveryService.Paginator.DescribeExportConfigurations
paginator = client.get_paginator('describe_export_configurations')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ApplicationDiscoveryService.Client.describe_export_configurations().

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    exportIds=[
        'string',
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • exportIds (list) --

    A list of continuous export IDs to search for.

    • (string) --
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'exportsInfo': [
        {
            'exportId': 'string',
            'exportStatus': 'FAILED'|'SUCCEEDED'|'IN_PROGRESS',
            'statusMessage': 'string',
            'configurationsDownloadUrl': 'string',
            'exportRequestTime': datetime(2015, 1, 1),
            'isTruncated': True|False,
            'requestedStartTime': datetime(2015, 1, 1),
            'requestedEndTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • exportsInfo (list) --

      • (dict) --

        Information regarding the export status of discovered data. The value is an array of objects.

        • exportId (string) --

          A unique identifier used to query an export.

        • exportStatus (string) --

          The status of the data export job.

        • statusMessage (string) --

          A status message provided for API callers.

        • configurationsDownloadUrl (string) --

          A URL for an Amazon S3 bucket where you can review the exported data. The URL is displayed only if the export succeeded.

        • exportRequestTime (datetime) --

          The time that the data export was initiated.

        • isTruncated (boolean) --

          If true, the export of agent information exceeded the size limit for a single export and the exported data is incomplete for the requested time range. To address this, select a smaller time range for the export by using startDate and endDate .

        • requestedStartTime (datetime) --

          The value of startTime parameter in the StartExportTask request. If no startTime was requested, this result does not appear in ExportInfo .

        • requestedEndTime (datetime) --

          The endTime used in the StartExportTask request. If no endTime was requested, this result does not appear in ExportInfo .

    • NextToken (string) --

      A token to resume pagination.

class ApplicationDiscoveryService.Paginator.DescribeExportTasks
paginator = client.get_paginator('describe_export_tasks')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ApplicationDiscoveryService.Client.describe_export_tasks().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    exportIds=[
        'string',
    ],
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ],
            'condition': 'string'
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • exportIds (list) --

    One or more unique identifiers used to query the status of an export request.

    • (string) --
  • filters (list) --

    One or more filters.

    • AgentId - ID of the agent whose collected data will be exported
    • (dict) --

      Used to select which agent's data is to be exported. A single agent ID may be selected for export using the StartExportTask action.

      • name (string) -- [REQUIRED]

        A single ExportFilter name. Supported filters: agentId .

      • values (list) -- [REQUIRED]

        A single agentId for a Discovery Agent. An agentId can be found using the DescribeAgents action. Typically an ADS agentId is in the form o-0123456789abcdef0 .

        • (string) --
      • condition (string) -- [REQUIRED]

        Supported condition: EQUALS

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'exportsInfo': [
        {
            'exportId': 'string',
            'exportStatus': 'FAILED'|'SUCCEEDED'|'IN_PROGRESS',
            'statusMessage': 'string',
            'configurationsDownloadUrl': 'string',
            'exportRequestTime': datetime(2015, 1, 1),
            'isTruncated': True|False,
            'requestedStartTime': datetime(2015, 1, 1),
            'requestedEndTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • exportsInfo (list) --

      Contains one or more sets of export request details. When the status of a request is SUCCEEDED , the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.

      • (dict) --

        Information regarding the export status of discovered data. The value is an array of objects.

        • exportId (string) --

          A unique identifier used to query an export.

        • exportStatus (string) --

          The status of the data export job.

        • statusMessage (string) --

          A status message provided for API callers.

        • configurationsDownloadUrl (string) --

          A URL for an Amazon S3 bucket where you can review the exported data. The URL is displayed only if the export succeeded.

        • exportRequestTime (datetime) --

          The time that the data export was initiated.

        • isTruncated (boolean) --

          If true, the export of agent information exceeded the size limit for a single export and the exported data is incomplete for the requested time range. To address this, select a smaller time range for the export by using startDate and endDate .

        • requestedStartTime (datetime) --

          The value of startTime parameter in the StartExportTask request. If no startTime was requested, this result does not appear in ExportInfo .

        • requestedEndTime (datetime) --

          The endTime used in the StartExportTask request. If no endTime was requested, this result does not appear in ExportInfo .

    • NextToken (string) --

      A token to resume pagination.

class ApplicationDiscoveryService.Paginator.DescribeTags
paginator = client.get_paginator('describe_tags')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ApplicationDiscoveryService.Client.describe_tags().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ]
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • filters (list) --

    You can filter the list using a key -value format. You can separate these items by using logical operators. Allowed filters include tagKey , tagValue , and configurationId .

    • (dict) --

      The tag filter. Valid names are: tagKey , tagValue , configurationId .

      • name (string) -- [REQUIRED]

        A name of the tag filter.

      • values (list) -- [REQUIRED]

        Values for the tag filter.

        • (string) --
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'tags': [
        {
            'configurationType': 'SERVER'|'PROCESS'|'CONNECTION'|'APPLICATION',
            'configurationId': 'string',
            'key': 'string',
            'value': 'string',
            'timeOfCreation': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • tags (list) --

      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.

      • (dict) --

        Tags for a configuration item. Tags are metadata that help you categorize IT assets.

        • configurationType (string) --

          A type of IT asset to tag.

        • configurationId (string) --

          The configuration ID for the item to tag. You can specify a list of keys and values.

        • key (string) --

          A type of tag on which to filter. For example, serverType .

        • value (string) --

          A value on which to filter. For example key = serverType and value = web server .

        • timeOfCreation (datetime) --

          The time the configuration tag was created in Coordinated Universal Time (UTC).

    • NextToken (string) --

      A token to resume pagination.

class ApplicationDiscoveryService.Paginator.ListConfigurations
paginator = client.get_paginator('list_configurations')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ApplicationDiscoveryService.Client.list_configurations().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    configurationType='SERVER'|'PROCESS'|'CONNECTION'|'APPLICATION',
    filters=[
        {
            'name': 'string',
            'values': [
                'string',
            ],
            'condition': 'string'
        },
    ],
    orderBy=[
        {
            'fieldName': 'string',
            'sortOrder': 'ASC'|'DESC'
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • configurationType (string) --

    [REQUIRED]

    A valid configuration identified by Application Discovery Service.

  • filters (list) --

    You can filter the request using various logical operators and a key -value format. For example:

    {"key": "serverType", "value": "webServer"}

    For a complete list of filter options and guidance about using them with this action, see Using the ListConfigurations Action in the AWS Application Discovery Service User Guide .

    • (dict) --

      A filter that can use conditional operators.

      For more information about filters, see Querying Discovered Configuration Items in the AWS Application Discovery Service User Guide .

      • name (string) -- [REQUIRED]

        The name of the filter.

      • values (list) -- [REQUIRED]

        A string value on which to filter. For example, if you choose the destinationServer.osVersion filter name, you could specify Ubuntu for the value.

        • (string) --
      • condition (string) -- [REQUIRED]

        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 AND . If you specify multiple values for a particular filter, the system differentiates the values using OR . Calling either DescribeConfigurations or ListConfigurations returns attributes of matching configuration items.

  • orderBy (list) --

    Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action in the AWS Application Discovery Service User Guide .

    • (dict) --

      A field and direction for ordered output.

      • fieldName (string) -- [REQUIRED]

        The field on which to order.

      • sortOrder (string) --

        Ordering direction.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'configurations': [
        {
            'string': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • configurations (list) --

      Returns configuration details, including the configuration ID, attribute names, and attribute values.

      • (dict) --
        • (string) --
          • (string) --
    • NextToken (string) --

      A token to resume pagination.