本文整理汇总了Python中profitbricks.client.ProfitBricksService.update_snapshot方法的典型用法代码示例。如果您正苦于以下问题:Python ProfitBricksService.update_snapshot方法的具体用法?Python ProfitBricksService.update_snapshot怎么用?Python ProfitBricksService.update_snapshot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类profitbricks.client.ProfitBricksService
的用法示例。
在下文中一共展示了ProfitBricksService.update_snapshot方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestServer
# 需要导入模块: from profitbricks.client import ProfitBricksService [as 别名]
# 或者: from profitbricks.client.ProfitBricksService import update_snapshot [as 别名]
class TestServer(unittest.TestCase):
def setUp(self):
self.snapshot = ProfitBricksService(
username='username', password='password')
def test_list_snapshots(self):
snapshots = self.snapshot.list_snapshots()
self.assertEqual(len(snapshots), 4)
self.assertEqual(snapshots['items'][0]['id'], snapshot_id)
self.assertEqual(
snapshots['items'][0]['properties']['name'],
'Snapshot of storage X on 12.12.12 12:12:12')
self.assertEqual(
snapshots['items'][0]['properties']['description'],
'description of a snapshot')
self.assertEqual(
snapshots['items'][0]['properties']['location'], 'de/fkb')
self.assertEqual(
snapshots['items'][0]['properties']['size'], 28)
def test_get_snapshot(self):
snapshot = self.snapshot.get_snapshot(
snapshot_id=snapshot_id)
self.assertEqual(snapshot['id'], snapshot_id)
self.assertEqual(
snapshot['properties']['name'],
'Snapshot of storage X on 12.12.12 12:12:12')
self.assertEqual(
snapshot['properties']['description'],
'description of a snapshot')
self.assertEqual(
snapshot['properties']['location'], 'de/fkb')
self.assertEqual(
snapshot['properties']['size'], 28)
def test_delete_snapshot(self):
snapshot = self.snapshot.delete_snapshot(
snapshot_id=snapshot_id)
self.assertTrue(snapshot)
def test_update_snapshot(self):
snapshot = self.snapshot.update_snapshot(
snapshot_id='7df81087-5835-41c6-a10b-3e098593bbd2',
name='New name')
self.assertEqual(snapshot['id'], '7df81087-5835-41c6-a10b-3e098593bbd2')
self.assertEqual(snapshot['properties']['name'], 'New name')
self.assertEqual(
snapshot['properties']['description'],
'description of a snapshot - updated')
self.assertEqual(
snapshot['properties']['location'], 'de/fkb')
self.assertEqual(
snapshot['properties']['size'], 28)
示例2: ProfitBricksService
# 需要导入模块: from profitbricks.client import ProfitBricksService [as 别名]
# 或者: from profitbricks.client.ProfitBricksService import update_snapshot [as 别名]
* disc_virtio_hot_unplug (bool)
* disc_scsi_hot_plug (bool)
* disc_scsi_hot_unplug (bool)
"""
from profitbricks.client import ProfitBricksService
client = ProfitBricksService(username="username", password="password")
snapshot_id = "d084aa0a-f9ab-41d5-9316-18163bc416ef"
image = client.update_snapshot(
snapshot_id,
name="New name",
description="Backup of volume XYZ",
licence_type="LINUX",
cpu_hot_plug=True,
ram_hot_plug=True,
nic_hot_plug=True,
nic_hot_unplug=True,
disc_virtio_hot_plug=True,
disc_virtio_hot_unplug=True,
)
"""Remove Snapshot
"""
from profitbricks.client import ProfitBricksService
snapshot_id = "7df81087-5835-41c6-a10b-3e098593bba4"
client = ProfitBricksService(username="username", password="password")