SsmSap / Client / list_applications
list_applications#
- SsmSap.Client.list_applications(**kwargs)#
Lists all the applications registered with AWS Systems Manager for SAP.
See also: AWS API Documentation
Request Syntax
response = client.list_applications( NextToken='string', MaxResults=123, Filters=[ { 'Name': 'string', 'Value': 'string', 'Operator': 'Equals'|'GreaterThanOrEquals'|'LessThanOrEquals' }, ] )
- Parameters:
NextToken (string) – The token for the next page of results.
MaxResults (integer) – The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
Filters (list) –
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.
- Return type:
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
SsmSap.Client.exceptions.ResourceNotFoundException
SsmSap.Client.exceptions.ValidationException
SsmSap.Client.exceptions.InternalServerException