fog-vsphere 0.6.1 → 0.6.2
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/CHANGELOG.md +5 -0
- data/lib/fog/vsphere/models/compute/server.rb +2 -1
- data/lib/fog/vsphere/requests/compute/vm_clone.rb +2 -0
- data/lib/fog/vsphere/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f0ec189b2c86a9de01857b6141d2c016ec669d9
|
|
4
|
+
data.tar.gz: ee5fe4c242034a910496e05cb26d55f20f654954
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c478c37467c7ed6729aeefddf57d4dae6735b8e549a762dd121343a956f2b9b8e06e7ec7eb534e492e72fcc148402ed858d6aaac5bf73d248d56474087454129
|
|
7
|
+
data.tar.gz: d912a0f3cb4b4df88d0fed2c69b1b56a84c9889cea5b665224b7c58ccebc4ac8df2c827b72b0b1a1d911f764c3bc71260c4f99254ff9bd6af7561079466b1003
|
data/CHANGELOG.md
CHANGED
|
@@ -61,6 +61,7 @@ module Fog
|
|
|
61
61
|
# * 'storage_pod'<~String> - The storage pod / datastore cluster you'd like to use.
|
|
62
62
|
# * 'transform'<~String> - Not documented - see http://www.vmware.com/support/developer/vc-sdk/visdk41pubs/ApiReference/vim.vm.RelocateSpec.html
|
|
63
63
|
# * 'numCPUs'<~Integer> - the number of Virtual CPUs of the Destination VM
|
|
64
|
+
# * 'numCoresPerSocket'<~Integer> - the number of cores per socket of the Destination VM
|
|
64
65
|
# * 'memoryMB'<~Integer> - the size of memory of the Destination VM in MB
|
|
65
66
|
# * customization_spec<~Hash>: Options are marked as required if you
|
|
66
67
|
# use this customization_spec.
|
|
@@ -156,6 +157,7 @@ module Fog
|
|
|
156
157
|
# http://www.vmware.com/support/developer/vc-sdk/visdk41pubs/ApiReference/vim.vm.ConfigSpec.html
|
|
157
158
|
# FIXME: pad this out with the rest of the useful things in VirtualMachineConfigSpec
|
|
158
159
|
virtual_machine_config_spec.numCPUs = options['numCPUs'] if ( options.key?('numCPUs') )
|
|
160
|
+
virtual_machine_config_spec.numCoresPerSocket = options['numCoresPerSocket'] if options.key?('numCoresPerSocket')
|
|
159
161
|
virtual_machine_config_spec.memoryMB = options['memoryMB'] if ( options.key?('memoryMB') )
|
|
160
162
|
virtual_machine_config_spec.cpuHotAddEnabled = options['cpuHotAddEnabled'] if ( options.key?('cpuHotAddEnabled') )
|
|
161
163
|
virtual_machine_config_spec.memoryHotAddEnabled = options['memoryHotAddEnabled'] if ( options.key?('memoryHotAddEnabled') )
|
data/lib/fog/vsphere/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fog-vsphere
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- J.R. Garcia
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fog-core
|