Change REPONSE to RESPONSE for consistency (#1538)
This commit is contained in:
parent
5fe575b6ed
commit
f18259d49e
@ -150,7 +150,7 @@ class Route53(BaseResponse):
|
|||||||
|
|
||||||
elif method == "GET":
|
elif method == "GET":
|
||||||
querystring = parse_qs(parsed_url.query)
|
querystring = parse_qs(parsed_url.query)
|
||||||
template = Template(LIST_RRSET_REPONSE)
|
template = Template(LIST_RRSET_RESPONSE)
|
||||||
start_type = querystring.get("type", [None])[0]
|
start_type = querystring.get("type", [None])[0]
|
||||||
start_name = querystring.get("name", [None])[0]
|
start_name = querystring.get("name", [None])[0]
|
||||||
record_sets = the_zone.get_record_sets(start_type, start_name)
|
record_sets = the_zone.get_record_sets(start_type, start_name)
|
||||||
@ -182,9 +182,9 @@ class Route53(BaseResponse):
|
|||||||
elif method == "DELETE":
|
elif method == "DELETE":
|
||||||
health_check_id = parsed_url.path.split("/")[-1]
|
health_check_id = parsed_url.path.split("/")[-1]
|
||||||
route53_backend.delete_health_check(health_check_id)
|
route53_backend.delete_health_check(health_check_id)
|
||||||
return 200, headers, DELETE_HEALTH_CHECK_REPONSE
|
return 200, headers, DELETE_HEALTH_CHECK_RESPONSE
|
||||||
elif method == "GET":
|
elif method == "GET":
|
||||||
template = Template(LIST_HEALTH_CHECKS_REPONSE)
|
template = Template(LIST_HEALTH_CHECKS_RESPONSE)
|
||||||
health_checks = route53_backend.get_health_checks()
|
health_checks = route53_backend.get_health_checks()
|
||||||
return 200, headers, template.render(health_checks=health_checks)
|
return 200, headers, template.render(health_checks=health_checks)
|
||||||
|
|
||||||
@ -248,7 +248,7 @@ CHANGE_TAGS_FOR_RESOURCE_RESPONSE = """<ChangeTagsForResourceResponse xmlns="htt
|
|||||||
</ChangeTagsForResourceResponse>
|
</ChangeTagsForResourceResponse>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
LIST_RRSET_REPONSE = """<ListResourceRecordSetsResponse xmlns="https://route53.amazonaws.com/doc/2012-12-12/">
|
LIST_RRSET_RESPONSE = """<ListResourceRecordSetsResponse xmlns="https://route53.amazonaws.com/doc/2012-12-12/">
|
||||||
<ResourceRecordSets>
|
<ResourceRecordSets>
|
||||||
{% for record_set in record_sets %}
|
{% for record_set in record_sets %}
|
||||||
{{ record_set.to_xml() }}
|
{{ record_set.to_xml() }}
|
||||||
@ -350,7 +350,7 @@ CREATE_HEALTH_CHECK_RESPONSE = """<?xml version="1.0" encoding="UTF-8"?>
|
|||||||
{{ health_check.to_xml() }}
|
{{ health_check.to_xml() }}
|
||||||
</CreateHealthCheckResponse>"""
|
</CreateHealthCheckResponse>"""
|
||||||
|
|
||||||
LIST_HEALTH_CHECKS_REPONSE = """<?xml version="1.0" encoding="UTF-8"?>
|
LIST_HEALTH_CHECKS_RESPONSE = """<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<ListHealthChecksResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/">
|
<ListHealthChecksResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/">
|
||||||
<HealthChecks>
|
<HealthChecks>
|
||||||
{% for health_check in health_checks %}
|
{% for health_check in health_checks %}
|
||||||
@ -361,6 +361,6 @@ LIST_HEALTH_CHECKS_REPONSE = """<?xml version="1.0" encoding="UTF-8"?>
|
|||||||
<MaxItems>{{ health_checks|length }}</MaxItems>
|
<MaxItems>{{ health_checks|length }}</MaxItems>
|
||||||
</ListHealthChecksResponse>"""
|
</ListHealthChecksResponse>"""
|
||||||
|
|
||||||
DELETE_HEALTH_CHECK_REPONSE = """<?xml version="1.0" encoding="UTF-8"?>
|
DELETE_HEALTH_CHECK_RESPONSE = """<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<DeleteHealthCheckResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/">
|
<DeleteHealthCheckResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/">
|
||||||
</DeleteHealthCheckResponse>"""
|
</DeleteHealthCheckResponse>"""
|
||||||
|
Loading…
Reference in New Issue
Block a user