~ubuntu-branches/ubuntu/trusty/python-boto/trusty

« back to all changes in this revision

Viewing changes to boto/vpc/customergateway.py

  • Committer: Package Import Robot
  • Author(s): Eric Evans
  • Date: 2011-11-13 11:58:40 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20111113115840-ckzyt3h17uh8s41y
Tags: 2.0-2
Promote new upstream to unstable (Closes: #638931).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (c) 2009 Mitch Garnaat http://garnaat.org/
 
1
# Copyright (c) 2009-2010 Mitch Garnaat http://garnaat.org/
2
2
#
3
3
# Permission is hereby granted, free of charge, to any person obtaining a
4
4
# copy of this software and associated documentation files (the
23
23
Represents a Customer Gateway
24
24
"""
25
25
 
26
 
from boto.ec2.ec2object import EC2Object
 
26
from boto.ec2.ec2object import TaggedEC2Object
27
27
 
28
 
class CustomerGateway(EC2Object):
 
28
class CustomerGateway(TaggedEC2Object):
29
29
 
30
30
    def __init__(self, connection=None):
31
 
        EC2Object.__init__(self, connection)
 
31
        TaggedEC2Object.__init__(self, connection)
32
32
        self.id = None
33
33
        self.type = None
34
34
        self.state = None