cloudstack-cli 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cloudstack-cli/commands/virtual_machine.rb +7 -7
- data/lib/cloudstack-cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88e9ed3ea6bd939ca74b92929498cc901bdffc0e
|
|
4
|
+
data.tar.gz: 0c2788989f092c6a5481658f7009c6b11e58b4fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 152b0b365c78b71f34cb59fb4d644380691a761774113589e499bb611ea10d20f53d753e2a1f616556e4021a8a34e0950717236b3770c10477b13c27612689ba
|
|
7
|
+
data.tar.gz: 802fbe4dfe18c2605c8ab4b59cd5e7ba11f0e501e01cd34df32d8d81ce39e197343e57090d4daae1b195e9dfaf5cddc9bb0aaa6ead732746695f5cb4f94b4822
|
|
@@ -201,27 +201,27 @@ class VirtualMachine < CloudstackCli::Base
|
|
|
201
201
|
|
|
202
202
|
desc "update NAME", "update a virtual machine"
|
|
203
203
|
option :project,
|
|
204
|
-
desc: "project of virtual machine"
|
|
204
|
+
desc: "project of virtual machine (used for vm lookup, can't be updated)"
|
|
205
205
|
option :force, type: :boolean,
|
|
206
206
|
desc: "update w/o asking for confirmation"
|
|
207
|
-
option :details, type: :hash,
|
|
208
|
-
desc: "details in key/value pairs."
|
|
209
207
|
option :display_name,
|
|
210
208
|
desc: "user generated name"
|
|
211
209
|
option :display_vm,
|
|
212
210
|
desc: "an optional field, whether to the display the vm to the end user or not"
|
|
213
211
|
option :group,
|
|
214
212
|
desc: "group of the virtual machine"
|
|
215
|
-
option :ha_enable, enum: %w(true false),
|
|
216
|
-
desc: "true if high-availability is enabled for the virtual machine, false otherwise"
|
|
217
213
|
option :instance_name,
|
|
218
214
|
desc: "instance name of the user vm"
|
|
219
|
-
option :is_dynamically_scalable,
|
|
220
|
-
desc: "true if VM contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory"
|
|
221
215
|
option :name,
|
|
222
216
|
desc: "new host name of the vm"
|
|
223
217
|
option :ostype_id,
|
|
224
218
|
desc: "the ID of the OS type that best represents this VM"
|
|
219
|
+
option :details, type: :hash,
|
|
220
|
+
desc: "details in key/value pairs."
|
|
221
|
+
option :is_dynamically_scalable, enum: %w(true false),
|
|
222
|
+
desc: "true if VM contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory"
|
|
223
|
+
option :ha_enable, enum: %w(true false),
|
|
224
|
+
desc: "true if high-availability is enabled for the virtual machine, false otherwise"
|
|
225
225
|
option :user_data,
|
|
226
226
|
desc: "an optional binary data that can be sent to the virtual machine upon a successful deployment."
|
|
227
227
|
def update(name)
|