2021-08-28 06:30:40 +00:00
|
|
|
from .responses import ElasticTranscoderResponse
|
|
|
|
|
|
|
|
url_bases = [
|
2021-10-08 10:03:05 +00:00
|
|
|
r"https?://elastictranscoder\.(.+)\.amazonaws.com",
|
2021-08-28 06:30:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
response = ElasticTranscoderResponse()
|
|
|
|
|
|
|
|
|
|
|
|
url_paths = {
|
|
|
|
r"{0}/(?P<api_version>[^/]+)/pipelines/?$": response.pipelines,
|
|
|
|
r"{0}/(?P<api_version>[^/]+)/pipelines/(?P<pipeline_id>[^/]+)/?$": response.individual_pipeline,
|
|
|
|
}
|