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
|
|
|
|
|
|
|
|
2019-09-18 10:09:24 +00:00
|
|
|
@deprecated_alias('get_subsystem_config')
|
|
|
|
def framework_get_config(client, name):
|
2018-03-27 21:04:40 +00:00
|
|
|
params = {'name': name}
|
2019-09-18 10:09:24 +00:00
|
|
|
return client.call('framework_get_config', params)
|