fix missing parameter in docstring

Change-Id: I6ac69dec113897216adf09c63928f56564f2a6fc
This commit is contained in:
Eyal 2017-04-23 14:38:17 +03:00
parent 900c4a6a4b
commit 6228ca2585
3 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,7 @@ class Alarm(object):
def list(self, vitrage_id, all_tenants=False):
"""Get a all alarms on entity
:param all_tenants: should return all tenants alarms
:param vitrage_id: the id for the entity
"""
params = dict(vitrage_id=vitrage_id,

View File

@ -20,6 +20,7 @@ class Rca(object):
def get(self, alarm_id, all_tenants=False):
"""Get RCA for an alarm
:param all_tenants: should return all tenants rca
:param alarm_id: the id of the alarm
"""
params = dict(alarm_id=alarm_id,

View File

@ -20,6 +20,7 @@ class Resource(object):
def list(self, resource_type=None, all_tenants=False):
"""Get a all resources
:param all_tenants: should return all tenants resources
:param resource_type: the type for the resources
"""
params = dict(resource_type=resource_type,