783a1d73b4
This commit adds initial support for the Simple System Manager client. It currently only mocks the following api endpoints: - delete_parameter() - put_parameter() - get_parameters()
11 lines
215 B
Python
11 lines
215 B
Python
from __future__ import unicode_literals
|
|
from .responses import SimpleSystemManagerResponse
|
|
|
|
url_bases = [
|
|
"https?://ssm.(.+).amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
'{0}/$': SimpleSystemManagerResponse.dispatch,
|
|
}
|