Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2080 from danielgtaylor/route53-update
Browse files Browse the repository at this point in the history
Route53 API update to 2013-04-01. Fixes #2080.
  • Loading branch information
danielgtaylor committed Feb 6, 2014
2 parents bd0282c + 87410f8 commit 600dcd0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions boto/route53/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ class Route53Connection(AWSAuthConnection):
DefaultHost = 'route53.amazonaws.com'
"""The default Route53 API endpoint to connect to."""

Version = '2012-02-29'
Version = '2013-04-01'
"""Route53 API version."""

XMLNameSpace = 'https://route53.amazonaws.com/doc/2012-02-29/'
XMLNameSpace = 'https://route53.amazonaws.com/doc/2013-04-01/'
"""XML schema for this Route53 API version."""

def __init__(self, aws_access_key_id=None, aws_secret_access_key=None,
Expand Down
4 changes: 2 additions & 2 deletions boto/route53/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ResourceRecordSets(ResultSet):
"""

ChangeResourceRecordSetsBody = """<?xml version="1.0" encoding="UTF-8"?>
<ChangeResourceRecordSetsRequest xmlns="https://route53.amazonaws.com/doc/2012-02-29/">
<ChangeResourceRecordSetsRequest xmlns="https://route53.amazonaws.com/doc/2013-04-01/">
<ChangeBatch>
<Comment>%(comment)s</Comment>
<Changes>%(changes)s</Changes>
Expand Down Expand Up @@ -71,7 +71,7 @@ def add_change(self, action, name, type, ttl=600,
Add a change request to the set.
:type action: str
:param action: The action to perform ('CREATE'|'DELETE')
:param action: The action to perform ('CREATE'|'DELETE'|'UPSERT')
:type name: str
:param name: The name of the domain you want to perform the action on.
Expand Down

0 comments on commit 600dcd0

Please sign in to comment.