mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-9604: Root-volume resize additional tests.
This commit is contained in:
parent
ec66256149
commit
871f21af35
File diff suppressed because it is too large
Load Diff
|
|
@ -3858,7 +3858,7 @@ class Configurations:
|
|||
"""Manage Configuration"""
|
||||
|
||||
@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"""
|
||||
|
||||
cmd = updateConfiguration.updateConfigurationCmd()
|
||||
|
|
@ -3867,8 +3867,13 @@ class Configurations:
|
|||
|
||||
if zoneid:
|
||||
cmd.zoneid = zoneid
|
||||
if clusterid:
|
||||
cmd.clusterid = clusterid
|
||||
if storageid:
|
||||
cmd.storageid=storageid
|
||||
apiclient.updateConfiguration(cmd)
|
||||
|
||||
|
||||
@classmethod
|
||||
def list(cls, apiclient, **kwargs):
|
||||
"""Lists configurations"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue