本文整理匯總了Python中enarksh.DataLayer.DataLayer.enk_misc_insert_uri方法的典型用法代碼示例。如果您正苦於以下問題:Python DataLayer.enk_misc_insert_uri方法的具體用法?Python DataLayer.enk_misc_insert_uri怎麽用?Python DataLayer.enk_misc_insert_uri使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類enarksh.DataLayer.DataLayer
的用法示例。
在下文中一共展示了DataLayer.enk_misc_insert_uri方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: store
# 需要導入模塊: from enarksh.DataLayer import DataLayer [as 別名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 別名]
def store(self, nod_id):
"""
Stores the definition of this port into the database.
:param int nod_id: The ID of the node to which this node belongs
"""
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
self._prt_id = DataLayer.enk_reader_port_store_input_port(nod_id,
uri_id,
self._port_name)
示例2: store
# 需要導入模塊: from enarksh.DataLayer import DataLayer [as 別名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 別名]
def store(self, hst_id, nod_id):
"""
:param int hst_id:
:param int nod_id:
"""
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
self._rsc_id = DataLayer.enk_reader_resource_store_read_write_lock_resource(hst_id,
nod_id,
uri_id,
self._resource_name)
示例3: store
# 需要導入模塊: from enarksh.DataLayer import DataLayer [as 別名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 別名]
def store(self):
"""
Stores the definition of this host into the database.
"""
# Get uri_id for this host.
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
# Store the definition of the host self.
self._store_self(uri_id)
# Store the resources of this host.
for resource in self._resources.values():
resource.store(self._hst_id, None)
示例4: store
# 需要導入模塊: from enarksh.DataLayer import DataLayer [as 別名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 別名]
def store(self, nod_id):
"""
Stores the definition of this consumption into the database.
:param int nod_id: The ID of the node to which this consumption belongs.
"""
resource = self._node.get_resource_by_name(self._resource_name)
rsc_id = resource.rsc_id
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
self._cns_id = DataLayer.enk_reader_consumption_store_counting_consumption(nod_id,
rsc_id,
uri_id,
self._amount)