@@ -7675,8 +7675,8 @@ def add(
76757675 ):
76767676 """
76777677 Adds a new floating disk.
7678- There are three types of disks that can be added - disk image, direct LUN and
7679- https://wiki.openstack.org/wiki/Cinder[Cinder] disk .
7678+ There are three types of disks that can be added - disk image, direct LUN and Managed Block disk.
7679+ https://wiki.openstack.org/wiki/Cinder[Cinder] integration has been replaced by Managed Block Storage .
76807680 *Adding a new image disk:*
76817681 When creating a new floating image <<types/disk,Disk>>, the API requires the `storage_domain`, `provisioned_size`
76827682 and `format` attributes.
@@ -7734,28 +7734,8 @@ def add(
77347734 ----
77357735 To create a new floating direct LUN disk without using a host, remove the `host` element.
77367736 *Adding a new Cinder disk:*
7737- To create a new floating Cinder disk, send a request as follows:
7738- [source]
7739- ----
7740- POST /ovirt-engine/api/disks
7741- ----
7742- With a request body as follows:
7743- [source,xml]
7744- ----
7745- <disk>
7746- <openstack_volume_type>
7747- <name>myceph</name>
7748- </openstack_volume_type>
7749- <storage_domains>
7750- <storage_domain>
7751- <name>cinderDomain</name>
7752- </storage_domain>
7753- </storage_domains>
7754- <provisioned_size>1073741824</provisioned_size>
7755- <interface>virtio</interface>
7756- <format>raw</format>
7757- </disk>
7758- ----
7737+ Cinder integration has been replaced by Managed Block Storage.
7738+ //TODO: Add an example for adding an MBS disk
77597739 *Adding a floating disks in order to upload disk snapshots:*
77607740 Since version 4.2 of the engine it is possible to upload disks with
77617741 snapshots. This request should be used to create the base image of the
@@ -19300,6 +19280,8 @@ def __str__(self):
1930019280
1930119281class OpenstackVolumeAuthenticationKeyService(Service):
1930219282 """
19283+ Openstack Volume (Cinder) integration has been replaced by Managed Block Storage.
19284+
1930319285 """
1930419286
1930519287 def __init__(self, connection, path):
@@ -19413,6 +19395,8 @@ def __str__(self):
1941319395
1941419396class OpenstackVolumeAuthenticationKeysService(Service):
1941519397 """
19398+ Openstack Volume (Cinder) integration has been replaced by Managed Block Storage.
19399+
1941619400 """
1941719401
1941819402 def __init__(self, connection, path):
@@ -19512,6 +19496,8 @@ def __str__(self):
1951219496
1951319497class OpenstackVolumeProviderService(ExternalProviderService):
1951419498 """
19499+ Openstack Volume (Cinder) integration has been replaced by Managed Block Storage.
19500+
1951519501 """
1951619502
1951719503 def __init__(self, connection, path):
@@ -19745,6 +19731,8 @@ def __str__(self):
1974519731
1974619732class OpenstackVolumeProvidersService(Service):
1974719733 """
19734+ Openstack Volume (Cinder) integration has been replaced by Managed Block Storage.
19735+
1974819736 """
1974919737
1975019738 def __init__(self, connection, path):
@@ -19870,6 +19858,8 @@ def __str__(self):
1987019858
1987119859class OpenstackVolumeTypeService(Service):
1987219860 """
19861+ Openstack Volume (Cinder) integration has been replaced by Managed Block Storage.
19862+
1987319863 """
1987419864
1987519865 def __init__(self, connection, path):
@@ -19922,6 +19912,8 @@ def __str__(self):
1992219912
1992319913class OpenstackVolumeTypesService(Service):
1992419914 """
19915+ Openstack Volume (Cinder) integration has been replaced by Managed Block Storage.
19916+
1992519917 """
1992619918
1992719919 def __init__(self, connection, path):
@@ -39352,7 +39344,8 @@ def update(
3935239344 This operation allows updating the following floating disk properties:
3935339345 * For Image disks: `provisioned_size`, `alias`, `description`, `wipe_after_delete`, `shareable`, `backup` and `disk_profile`.
3935439346 * For LUN disks: `alias`, `description` and `shareable`.
39355- * For Cinder and Managed Block disks: `provisioned_size`, `alias` and `description`.
39347+ * Cinder integration has been replaced by Managed Block Storage.
39348+ * For Managed Block disks: `provisioned_size`, `alias` and `description`.
3935639349 * For VM attached disks, the `qcow_version` can also be updated.
3935739350 For example, a disk's update can be done by using the following request:
3935839351 [source]
0 commit comments