mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-9604: Root-volume resize additional tests.
This commit is contained in:
parent
ec66256149
commit
871f21af35
1139
test/integration/component/test_rootvolume_resize.py
Normal file
1139
test/integration/component/test_rootvolume_resize.py
Normal file
File diff suppressed because it is too large
Load Diff
@ -3858,7 +3858,7 @@ class Configurations:
|
|||||||
"""Manage Configuration"""
|
"""Manage Configuration"""
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def update(cls, apiclient, name, value=None, zoneid=None):
|
def update(cls, apiclient, name, value=None, zoneid=None, clusterid=None, storageid=None):
|
||||||
"""Updates the specified configuration"""
|
"""Updates the specified configuration"""
|
||||||
|
|
||||||
cmd = updateConfiguration.updateConfigurationCmd()
|
cmd = updateConfiguration.updateConfigurationCmd()
|
||||||
@ -3867,8 +3867,13 @@ class Configurations:
|
|||||||
|
|
||||||
if zoneid:
|
if zoneid:
|
||||||
cmd.zoneid = zoneid
|
cmd.zoneid = zoneid
|
||||||
|
if clusterid:
|
||||||
|
cmd.clusterid = clusterid
|
||||||
|
if storageid:
|
||||||
|
cmd.storageid=storageid
|
||||||
apiclient.updateConfiguration(cmd)
|
apiclient.updateConfiguration(cmd)
|
||||||
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def list(cls, apiclient, **kwargs):
|
def list(cls, apiclient, **kwargs):
|
||||||
"""Lists configurations"""
|
"""Lists configurations"""
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user