~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to ironic/api/controllers/v1/state.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-01-05 12:21:37 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20150105122137-171bqrdpcxqipunk
Tags: 2015.1~b1-0ubuntu1
* New upstream beta release:
  - d/control: Align version requirements with upstream release.
* d/watch: Update uversionmangle to deal with kilo beta versioning
  changes.
* d/control: Bumped Standards-Version to 3.9.6, no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
class State(base.APIBase):
23
23
 
24
24
    current = wtypes.text
25
 
    "The current state"
 
25
    """The current state"""
26
26
 
27
27
    target = wtypes.text
28
 
    "The user modified desired state"
 
28
    """The user modified desired state"""
29
29
 
30
30
    available = [wtypes.text]
31
 
    "A list of available states it is able to transition to"
 
31
    """A list of available states it is able to transition to"""
32
32
 
33
33
    links = [link.Link]
34
 
    "A list containing a self link and associated state links"
 
34
    """A list containing a self link and associated state links"""