~cbehrens/nova/lp844160-build-works-with-zones

« back to all changes in this revision

Viewing changes to vendor/boto/boto/ec2/spotinstancerequest.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (c) 2006-2009 Mitch Garnaat http://garnaat.org/
 
2
#
 
3
# Permission is hereby granted, free of charge, to any person obtaining a
 
4
# copy of this software and associated documentation files (the
 
5
# "Software"), to deal in the Software without restriction, including
 
6
# without limitation the rights to use, copy, modify, merge, publish, dis-
 
7
# tribute, sublicense, and/or sell copies of the Software, and to permit
 
8
# persons to whom the Software is furnished to do so, subject to the fol-
 
9
# lowing conditions:
 
10
#
 
11
# The above copyright notice and this permission notice shall be included
 
12
# in all copies or substantial portions of the Software.
 
13
#
 
14
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
15
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
 
16
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
 
17
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
 
18
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
19
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
20
# IN THE SOFTWARE.
 
21
 
 
22
"""
 
23
Represents an EC2 Spot Instance Request
 
24
"""
 
25
 
 
26
from boto.ec2.ec2object import EC2Object
 
27
from boto.ec2.launchspecification import LaunchSpecification
 
28
 
 
29
class SpotInstanceStateFault(object):
 
30
 
 
31
    def __init__(self, code=None, message=None):
 
32
        self.code = code
 
33
        self.message = message
 
34
 
 
35
    def __repr__(self):
 
36
        return '(%s, %s)' % (self.code, self.message)
 
37
 
 
38
    def startElement(self, name, attrs, connection):
 
39
        return None
 
40
 
 
41
    def endElement(self, name, value, connection):
 
42
        if name == 'code':
 
43
            self.code = value
 
44
        elif name == 'message':
 
45
            self.message = value
 
46
        setattr(self, name, value)
 
47
 
 
48
class SpotInstanceRequest(EC2Object):
 
49
    
 
50
    def __init__(self, connection=None):
 
51
        EC2Object.__init__(self, connection)
 
52
        self.id = None
 
53
        self.price = None
 
54
        self.type = None
 
55
        self.state = None
 
56
        self.fault = None
 
57
        self.valid_from = None
 
58
        self.valid_until = None
 
59
        self.launch_group = None
 
60
        self.product_description = None
 
61
        self.availability_zone_group = None
 
62
        self.create_time = None
 
63
        self.launch_specification = None
 
64
        self.instance_id = None
 
65
 
 
66
    def __repr__(self):
 
67
        return 'SpotInstanceRequest:%s' % self.id
 
68
 
 
69
    def startElement(self, name, attrs, connection):
 
70
        if name == 'launchSpecification':
 
71
            self.launch_specification = LaunchSpecification(connection)
 
72
            return self.launch_specification
 
73
        elif name == 'fault':
 
74
            self.fault = SpotInstanceStateFault()
 
75
            return self.fault
 
76
        else:
 
77
            return None
 
78
 
 
79
    def endElement(self, name, value, connection):
 
80
        if name == 'spotInstanceRequestId':
 
81
            self.id = value
 
82
        elif name == 'spotPrice':
 
83
            self.price = float(value)
 
84
        elif name == 'type':
 
85
            self.type = value
 
86
        elif name == 'state':
 
87
            self.state = value
 
88
        elif name == 'productDescription':
 
89
            self.product_description = value
 
90
        elif name == 'validFrom':
 
91
            self.valid_from = value
 
92
        elif name == 'validUntil':
 
93
            self.valid_until = value
 
94
        elif name == 'launchGroup':
 
95
            self.launch_group = value
 
96
        elif name == 'availabilityZoneGroup':
 
97
            self.availability_zone_group = value
 
98
        elif name == 'createTime':
 
99
            self.create_time = value
 
100
        elif name == 'instanceId':
 
101
            self.instance_id = value
 
102
        else:
 
103
            setattr(self, name, value)
 
104
 
 
105
    def cancel(self):
 
106
        self.connection.cancel_spot_instance_requests([self.id])
 
107
 
 
108
 
 
109