2019-09-18 08:24:58 +00:00
|
|
|
from .helpers import deprecated_alias
|
|
|
|
|
|
|
|
|
|
|
|
@deprecated_alias('get_subsystems')
|
|
|
|
def framework_get_subsystems(client):
|
|
|
|
return client.call('framework_get_subsystems')
|
2018-02-26 19:16:59 +00:00
|
|
|
|
|
|
|
|
2018-03-27 21:04:40 +00:00
|
|
|
def get_subsystem_config(client, name):
|
|
|
|
params = {'name': name}
|
2018-03-27 21:31:52 +00:00
|
|
|
return client.call('get_subsystem_config', params)
|