Skip to content

Commit

Permalink
Update service_hosts.json and endpoint_regions.json from boto 1.9.231
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesEbke committed Sep 19, 2019
1 parent 4fcadc1 commit 0f98370
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion aws_list_all/endpoint_hosts.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aws_list_all/service_regions.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions aws_list_all/test_introspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def test_get_listing_operations():
'comprehendmedical',
'connect',
'ec2-instance-connect',
'forecastquery',
'glacier',
'health',
'iot-data',
Expand All @@ -66,6 +67,7 @@ def test_get_listing_operations():
'pi',
'pinpoint-sms-voice',
'pricing',
'qldb-session',
'quicksight',
'rds-data',
'resourcegroupstaggingapi',
Expand All @@ -75,6 +77,7 @@ def test_get_listing_operations():
'textract',
'workdocs',
'worklink',
'workmailmessageflow',
}

assert expected_no_listings - services_with_no_listings == set(), 'Extra services gained listings, please check!'
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='aws_list_all',
version='0.6.1',
version='0.7.0',
description='List all your AWS resources, all regions, all services.',
long_description=long_description,
url='https://github.com/JohannesEbke/aws_list_all',
Expand All @@ -30,14 +30,14 @@
],
keywords='aws boto3 listings resources region services',
packages=['aws_list_all'],
install_requires=['boto3>=1.9.197', 'app_json_file_cache>=0.2.2'],
install_requires=['boto3>=1.9.231', 'app_json_file_cache>=0.2.2'],
entry_points={
'console_scripts': [
'aws_list_all=aws_list_all.__main__:main',
'aws-list-all=aws_list_all.__main__:main',
],
},
package_data={
'aws_list_all': 'aws_list_all/*.json',
'aws_list_all': ['aws_list_all/endpoint_hosts.json', 'aws_list_all/service_regions.json'],
},
)

0 comments on commit 0f98370

Please sign in to comment.