23 lines
820 B
Python
23 lines
820 B
Python
from __future__ import unicode_literals
|
|
from .responses import MediaConnectResponse
|
|
|
|
url_bases = [
|
|
"https?://mediaconnect.(.+).amazonaws.com",
|
|
]
|
|
|
|
|
|
response = MediaConnectResponse()
|
|
|
|
|
|
url_paths = {
|
|
"{0}/v1/flows": response.dispatch,
|
|
"{0}/v1/flows/(?P<flowarn>[^/.]+)": response.dispatch,
|
|
"{0}/v1/flows/(?P<flowarn>[^/.]+)/vpcInterfaces": response.dispatch,
|
|
"{0}/v1/flows/(?P<flowarn>[^/.]+)/vpcInterfaces/(?P<vpcinterfacename>[^/.]+)": response.dispatch,
|
|
"{0}/v1/flows/(?P<flowarn>[^/.]+)/outputs": response.dispatch,
|
|
"{0}/v1/flows/(?P<flowarn>[^/.]+)/outputs/(?P<outputarn>[^/.]+)": response.dispatch,
|
|
"{0}/v1/flows/start/(?P<flowarn>[^/.]+)": response.dispatch,
|
|
"{0}/v1/flows/stop/(?P<flowarn>[^/.]+)": response.dispatch,
|
|
"{0}/tags/(?P<resourcearn>[^/.]+)": response.dispatch,
|
|
}
|