Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Commit

Permalink
Add an RDSTag-object, based on ec2/tag.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjanol committed Oct 12, 2012
1 parent f485367 commit 269b396
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions boto/rds/tag.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright (c) 2010 Mitch Garnaat http://garnaat.org/
# Copyright (c) 2010, Eucalyptus Systems, Inc.
# Copyright (c) 2012, Byte BV, http://byte.nl
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish, dis-
# tribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the fol-
# lowing conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.


class RDSTag(object):

def __init__(self, connection=None, name=None, value=None):
self.connection = connection
self.name = name
self.value = value

def __repr__(self):
return 'Tag:%s' % self.name

def startElement(self, name, attrs, connection):
return None

def endElement(self, name, value, connection):
if name == 'Key':
self.name = value
elif name == 'Value':
self.value = value
else:
setattr(self, name, value)


0 comments on commit 269b396

Please sign in to comment.