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


Python SimpleType.ifc2asa方法代碼示例

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


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

示例1: ifc2asa

# 需要導入模塊: from base.simpletype import SimpleType [as 別名]
# 或者: from base.simpletype.SimpleType import ifc2asa [as 別名]
 def ifc2asa(self, no_asa_cfg_stack,  asa_cfg_list):
     '''Override the default implementation for modify action:
     Need to issue no command to delete old one and then issue command to set the new one.
     '''
     if self.get_action() == State.MODIFY:
         old_cli = self.get_old_cli()
         if old_cli:
             self.generate_cli(no_asa_cfg_stack, 'no ' + old_cli)
     SimpleType.ifc2asa(self, no_asa_cfg_stack, asa_cfg_list)
開發者ID:AlexFengCisco,項目名稱:ACI_REST_Project,代碼行數:11,代碼來源:service_policy.py

示例2: ifc2asa

# 需要導入模塊: from base.simpletype import SimpleType [as 別名]
# 或者: from base.simpletype.SimpleType import ifc2asa [as 別名]
 def ifc2asa(self, no_asa_cfg_stack, asa_cfg_list):
     'Override default implementation to deal with different CLI for no commands.'
     tmp_no_asa_cfg_stack = []
     result = SimpleType.ifc2asa(self, tmp_no_asa_cfg_stack, asa_cfg_list)
     if tmp_no_asa_cfg_stack:
         action = self.get_action()
         if action == State.DESTROY and self.is_removable:
             if self.get_asa_key() == 'ip audit info':
                 self.generate_cli(no_asa_cfg_stack, 'no ip audit info')
             else:
                 self.generate_cli(no_asa_cfg_stack, 'no ip audit attack')
     return result
開發者ID:AlexFengCisco,項目名稱:ACI_REST_Project,代碼行數:14,代碼來源:ip_audit.py

示例3: gen_ifc2asa

# 需要導入模塊: from base.simpletype import SimpleType [as 別名]
# 或者: from base.simpletype.SimpleType import ifc2asa [as 別名]
 def gen_ifc2asa(self, no_asa_cfg_stack, asa_cfg_list):
     '''Generate ASA configuration from IFC configuration delta.
     @see SimpleType.ifc2asa for parameter details
     '''
     SimpleType.ifc2asa(self, no_asa_cfg_stack, asa_cfg_list)
開發者ID:AlexFengCisco,項目名稱:ACI_REST_Project,代碼行數:7,代碼來源:interface_config.py


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