:doc:`SsmSap <../../ssm-sap>` / Client / list_applications

*****************
list_applications
*****************



.. py:method:: SsmSap.Client.list_applications(**kwargs)

  

  Lists all the applications registered with AWS Systems Manager for SAP.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListApplications>`_  


  **Request Syntax**
  ::

    response = client.list_applications(
        NextToken='string',
        MaxResults=123,
        Filters=[
            {
                'Name': 'string',
                'Value': 'string',
                'Operator': 'Equals'|'GreaterThanOrEquals'|'LessThanOrEquals'
            },
        ]
    )
    
  :type NextToken: string
  :param NextToken: 

    The token for the next page of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

    

  
  :type Filters: list
  :param Filters: 

    The filter of name, value, and operator.

    

  
    - *(dict) --* 

      A specific result obtained by specifying the name, value, and operator.

      

    
      - **Name** *(string) --* **[REQUIRED]** 

        The name of the filter. Filter names are case-sensitive.

        

      
      - **Value** *(string) --* **[REQUIRED]** 

        The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values

        

      
      - **Operator** *(string) --* **[REQUIRED]** 

        The operator for the filter.

        

      
    

  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Applications': [
              {
                  'Id': 'string',
                  'DiscoveryStatus': 'SUCCESS'|'REGISTRATION_FAILED'|'REFRESH_FAILED'|'REGISTERING'|'DELETING',
                  'Type': 'HANA'|'SAP_ABAP',
                  'Arn': 'string',
                  'Tags': {
                      'string': 'string'
                  }
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Applications** *(list) --* 

        The applications registered with AWS Systems Manager for SAP.

        
        

        - *(dict) --* 

          The summary of the SAP application registered with AWS Systems Manager for SAP.

          
          

          - **Id** *(string) --* 

            The ID of the application.

            
          

          - **DiscoveryStatus** *(string) --* 

            The status of the latest discovery.

            
          

          - **Type** *(string) --* 

            The type of the application.

            
          

          - **Arn** *(string) --* 

            The Amazon Resource Name (ARN) of the application.

            
          

          - **Tags** *(dict) --* 

            The tags on the application.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
      
    
      

      - **NextToken** *(string) --* 

        The token to use to retrieve the next page of results. This value is null when there are no more results to return.

        
  
  **Exceptions**
  
  *   :py:class:`SsmSap.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`SsmSap.Client.exceptions.ValidationException`

  
  *   :py:class:`SsmSap.Client.exceptions.InternalServerException`

  