~ubuntu-branches/ubuntu/saucy/python-ceilometerclient/saucy

« back to all changes in this revision

Viewing changes to ceilometerclient/v2/meters.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-03-28 08:23:31 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130328082331-5zcshof81ho7rsdg
Tags: 1.0.0-0ubuntu1
* New upstream version. 
* debian/rules, debian/watch: Add watch file.
* debian/control: 
  - Dropped python-warlock no longer needed.
  - Added python-setuptools-git.
* debian/rules: Run testsuite during build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
#
 
3
# Copyright © 2013 Red Hat, Inc
 
4
#
 
5
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
6
#    not use this file except in compliance with the License. You may obtain
 
7
#    a copy of the License at
 
8
#
 
9
#         http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
#    Unless required by applicable law or agreed to in writing, software
 
12
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
13
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
14
#    License for the specific language governing permissions and limitations
 
15
#    under the License.
 
16
 
 
17
from ceilometerclient.common import base
 
18
from ceilometerclient.v2 import options
 
19
 
 
20
 
 
21
class Meter(base.Resource):
 
22
    def __repr__(self):
 
23
        return "<Meter %s>" % self._info
 
24
 
 
25
 
 
26
class MeterManager(base.Manager):
 
27
    resource_class = Meter
 
28
 
 
29
    def list(self, q=None):
 
30
        path = '/v2/meters'
 
31
        return self._list(options.build_url(path, q))