コード例 #1
0
ファイル: security_group.py プロジェクト: arbrandes/nova
 def refresh(self):
     self._from_db_object(self._context, self,
                          db.security_group_get(self._context, self.id))
コード例 #2
0
ファイル: security_group.py プロジェクト: weisongf/nova
 def refresh(self):
     self._from_db_object(self._context, self,
                          db.security_group_get(self._context, self.id))
コード例 #3
0
ファイル: security_group.py プロジェクト: arbrandes/nova
 def get(cls, context, secgroup_id):
     db_secgroup = db.security_group_get(context, secgroup_id)
     return cls._from_db_object(context, cls(), db_secgroup)
コード例 #4
0
ファイル: security_group.py プロジェクト: weisongf/nova
 def get(cls, context, secgroup_id):
     db_secgroup = db.security_group_get(context, secgroup_id)
     return cls._from_db_object(context, cls(), db_secgroup)