* support - intial commit to kick off trusted advisor checks * edit - expanded testing to include checking for expected check ids and check names. Added server testing added support resource json to manifest file and simplified support response return from reviewed comments * Streamline loading of resource files * edit - ensured regions are assigned in models Co-authored-by: Bert Blommers <info@bertblommers.nl>
12 lines
196 B
Python
12 lines
196 B
Python
from __future__ import unicode_literals
|
|
from .responses import SupportResponse
|
|
|
|
url_bases = [
|
|
"https?://support.(.+).amazonaws.com",
|
|
]
|
|
|
|
|
|
url_paths = {
|
|
"{0}/$": SupportResponse.dispatch,
|
|
}
|