當前位置: 首頁>>代碼示例>>Python>>正文


Python ZenModelRM.__init__方法代碼示例

本文整理匯總了Python中Products.ZenModel.ZenModelRM.ZenModelRM.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python ZenModelRM.__init__方法的具體用法?Python ZenModelRM.__init__怎麽用?Python ZenModelRM.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Products.ZenModel.ZenModelRM.ZenModelRM的用法示例。


在下文中一共展示了ZenModelRM.__init__方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from Products.ZenModel.ZenModelRM import ZenModelRM [as 別名]
# 或者: from Products.ZenModel.ZenModelRM.ZenModelRM import __init__ [as 別名]
 def __init__(self, id):
     ZenModelRM.__init__(self, id)
     self.eventClassKey = id
     self.sequence = None
     self.rule = ""
     self.regex = ""
     self.example = ""
     self.explanation = ""
     self.resolution = ""
開發者ID:bbc,項目名稱:zenoss-prodbin,代碼行數:11,代碼來源:EventClassInst.py

示例2: __init__

# 需要導入模塊: from Products.ZenModel.ZenModelRM import ZenModelRM [as 別名]
# 或者: from Products.ZenModel.ZenModelRM.ZenModelRM import __init__ [as 別名]
 def __init__(self, sourcepath, id='', title='', description='', 
              preview='', height=200, permission=ZEN_COMMON):
     if not id: id = basename(sourcepath).split('.')[0]
     self.id = id
     ZenModelRM.__init__(self, id)
     self.title = title
     self.description = description
     self.permission = permission
     self.sourcepath = sourcepath
     self.preview = preview
     self.height = height
     self._read_source()
開發者ID:SteelHouseLabs,項目名稱:zenoss-prodbin,代碼行數:14,代碼來源:Portlet.py

示例3: __init__

# 需要導入模塊: from Products.ZenModel.ZenModelRM import ZenModelRM [as 別名]
# 或者: from Products.ZenModel.ZenModelRM.ZenModelRM import __init__ [as 別名]
 def __init__(self, id, title=None, buildRelations=True):
     #self.dependencies = {'zenpacksupport':''}
     self.dependencies = {}
     ZenModelRM.__init__(self, id, title, buildRelations)
開發者ID:c0ns0le,項目名稱:zenoss-4,代碼行數:6,代碼來源:ZenPack.py


注:本文中的Products.ZenModel.ZenModelRM.ZenModelRM.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。