85ab05d32b
Signed-off-by: Maciej Wawryk <maciejx.wawryk@intel.com> Change-Id: Ie050a22d31903414496e536ca97aeed3db5d2b22 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/468936 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
31 lines
645 B
Python
31 lines
645 B
Python
from .helpers import deprecated_alias
|
|
|
|
|
|
@deprecated_alias('get_notification_types')
|
|
def notify_get_types(client):
|
|
return client.call("notify_get_types")
|
|
|
|
|
|
@deprecated_alias('get_notifications')
|
|
def notify_get_notifications(client,
|
|
id=None,
|
|
max=None):
|
|
"""
|
|
|
|
Args:
|
|
id First ID to start fetching from
|
|
max Maximum number of notifications to return in response
|
|
|
|
Return:
|
|
Notifications array
|
|
"""
|
|
|
|
params = {}
|
|
if id:
|
|
params['id'] = id
|
|
|
|
if max:
|
|
params['max'] = max
|
|
|
|
return client.call("notify_get_notifications", params)
|