本文整理匯總了Python中enarksh.DataLayer.DataLayer.enk_back_get_host_resources方法的典型用法代碼示例。如果您正苦於以下問題:Python DataLayer.enk_back_get_host_resources方法的具體用法?Python DataLayer.enk_back_get_host_resources怎麽用?Python DataLayer.enk_back_get_host_resources使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類enarksh.DataLayer.DataLayer
的用法示例。
在下文中一共展示了DataLayer.enk_back_get_host_resources方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __create_host_resources
# 需要導入模塊: from enarksh.DataLayer import DataLayer [as 別名]
# 或者: from enarksh.DataLayer.DataLayer import enk_back_get_host_resources [as 別名]
def __create_host_resources(self):
"""
Creates resources defined at host level.
"""
resources_data = DataLayer.enk_back_get_host_resources()
for resource_data in resources_data:
self.host_resources[resource_data['rsc_id']] = resource.create_resource(resource_data)
示例2: load_db
# 需要導入模塊: from enarksh.DataLayer import DataLayer [as 別名]
# 或者: from enarksh.DataLayer.DataLayer import enk_back_get_host_resources [as 別名]
def load_db(self, hostname):
"""
Loads the definition of this host from the database.
:param str hostname: The name of the host that must be loaded.
"""
self._hostname = hostname
host = DataLayer.enk_reader_host_load_host(hostname)
self._hst_id = host['hst_id']
resources_data = DataLayer.enk_back_get_host_resources()
for resource_data in resources_data:
resource = create_resource(resource_data['rtp_id'], resource_data['rsc_id'], None)
self._resources[resource.name] = resource