当前位置: 首页>>代码示例>>Python>>正文


Python VNXLun.get_id方法代码示例

本文整理汇总了Python中storops.vnx.resource.lun.VNXLun.get_id方法的典型用法代码示例。如果您正苦于以下问题:Python VNXLun.get_id方法的具体用法?Python VNXLun.get_id怎么用?Python VNXLun.get_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在storops.vnx.resource.lun.VNXLun的用法示例。


在下文中一共展示了VNXLun.get_id方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: add_image

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def add_image(self, sp_ip, lun_id,
               recovery_policy=VNXMirrorViewRecoveryPolicy.AUTO,
               sync_rate=VNXMirrorViewSyncRate.HIGH):
     lun_id = VNXLun.get_id(lun_id)
     self._cli.add_mirror_view_image(self._get_name(), sp_ip, lun_id,
                                     recovery_policy, sync_rate,
                                     poll=self.poll)
开发者ID:optionalg,项目名称:storops,代码行数:9,代码来源:mirror_view.py

示例2: test_get_id_with_update

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def test_get_id_with_update(self):
     m1 = VNXLun(name='m1', cli=t_cli())
     assert_that(VNXLun.get_id(m1), equal_to(4057))
开发者ID:crook,项目名称:storops,代码行数:5,代码来源:test_lun.py

示例3: f

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def f():
     VNXLun.get_id('abc')
开发者ID:crook,项目名称:storops,代码行数:4,代码来源:test_lun.py

示例4: test_get_id

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def test_get_id(self):
     l1 = VNXLun(lun_id=11)
     assert_that(VNXLun.get_id(l1), equal_to(11))
开发者ID:crook,项目名称:storops,代码行数:5,代码来源:test_lun.py

示例5: test_get_lun_id_int

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def test_get_lun_id_int(self):
     assert_that(VNXLun.get_id(23), equal_to(23))
开发者ID:crook,项目名称:storops,代码行数:4,代码来源:test_lun.py

示例6: test_get_lun_obj_property

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def test_get_lun_obj_property(self):
     lun = VNXLun(name='x', cli=t_cli())
     assert_that(VNXLun.get_id(lun), equal_to(0))
开发者ID:crook,项目名称:storops,代码行数:5,代码来源:test_lun.py

示例7: test_get_lun_obj_member

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def test_get_lun_obj_member(self):
     lun = VNXLun(lun_id=12)
     assert_that(VNXLun.get_id(lun), equal_to(12))
开发者ID:crook,项目名称:storops,代码行数:5,代码来源:test_lun.py

示例8: test_get_lun_id_str

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def test_get_lun_id_str(self):
     assert_that(VNXLun.get_id('123'), equal_to(123))
开发者ID:crook,项目名称:storops,代码行数:4,代码来源:test_lun.py

示例9: test_get_snap

# 需要导入模块: from storops.vnx.resource.lun import VNXLun [as 别名]
# 或者: from storops.vnx.resource.lun.VNXLun import get_id [as 别名]
 def test_get_snap(self):
     lun = VNXLun(lun_id=3, cli=t_cli())
     snaps = lun.get_snap()
     assert_that(len(snaps), equal_to(2))
     for snap in snaps:
         assert_that(snap.source_luns, has_item(lun.get_id(lun)))
开发者ID:crook,项目名称:storops,代码行数:8,代码来源:test_lun.py


注:本文中的storops.vnx.resource.lun.VNXLun.get_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。