fog-vcloud-director 0.1.10 → 0.2.0

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.
Files changed (117) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +4 -240
  4. data/.rubocop_local.yml +1 -0
  5. data/.travis.yml +5 -10
  6. data/README.md +3 -0
  7. data/docs/examples-vm-reconfigure.md +39 -0
  8. data/docs/vm-to-reconfigure.xml +373 -0
  9. data/fog-vcloud-director.gemspec +4 -1
  10. data/lib/fog/vcloud_director.rb +14 -1
  11. data/lib/fog/vcloud_director/compute.rb +34 -8
  12. data/lib/fog/vcloud_director/core.rb +0 -3
  13. data/lib/fog/vcloud_director/generators/compute/org_vdc_network.rb +1 -1
  14. data/lib/fog/vcloud_director/generators/compute/reconfigure_vm.rb +110 -0
  15. data/lib/fog/vcloud_director/generators/compute/vapp.rb +0 -1
  16. data/lib/fog/vcloud_director/models/compute/catalog.rb +0 -2
  17. data/lib/fog/vcloud_director/models/compute/catalog_item.rb +0 -2
  18. data/lib/fog/vcloud_director/models/compute/catalog_items.rb +0 -1
  19. data/lib/fog/vcloud_director/models/compute/catalogs.rb +0 -1
  20. data/lib/fog/vcloud_director/models/compute/custom_field.rb +0 -2
  21. data/lib/fog/vcloud_director/models/compute/disk.rb +1 -2
  22. data/lib/fog/vcloud_director/models/compute/disks.rb +0 -1
  23. data/lib/fog/vcloud_director/models/compute/media.rb +0 -2
  24. data/lib/fog/vcloud_director/models/compute/medias.rb +0 -1
  25. data/lib/fog/vcloud_director/models/compute/network.rb +0 -2
  26. data/lib/fog/vcloud_director/models/compute/networks.rb +0 -1
  27. data/lib/fog/vcloud_director/models/compute/organization.rb +0 -2
  28. data/lib/fog/vcloud_director/models/compute/organizations.rb +0 -1
  29. data/lib/fog/vcloud_director/models/compute/tag.rb +1 -2
  30. data/lib/fog/vcloud_director/models/compute/tags.rb +0 -1
  31. data/lib/fog/vcloud_director/models/compute/task.rb +0 -2
  32. data/lib/fog/vcloud_director/models/compute/tasks.rb +0 -1
  33. data/lib/fog/vcloud_director/models/compute/template_vm.rb +0 -1
  34. data/lib/fog/vcloud_director/models/compute/template_vms.rb +2 -3
  35. data/lib/fog/vcloud_director/models/compute/vapp.rb +25 -8
  36. data/lib/fog/vcloud_director/models/compute/vapp_template.rb +0 -2
  37. data/lib/fog/vcloud_director/models/compute/vapp_templates.rb +0 -1
  38. data/lib/fog/vcloud_director/models/compute/vapps.rb +0 -1
  39. data/lib/fog/vcloud_director/models/compute/vdc.rb +0 -2
  40. data/lib/fog/vcloud_director/models/compute/vdcs.rb +0 -1
  41. data/lib/fog/vcloud_director/models/compute/vm.rb +10 -30
  42. data/lib/fog/vcloud_director/models/compute/vm_customization.rb +0 -2
  43. data/lib/fog/vcloud_director/models/compute/vm_customizations.rb +0 -1
  44. data/lib/fog/vcloud_director/models/compute/vm_network.rb +0 -2
  45. data/lib/fog/vcloud_director/models/compute/vm_networks.rb +0 -1
  46. data/lib/fog/vcloud_director/models/compute/vms.rb +1 -2
  47. data/lib/fog/vcloud_director/parsers/compute/vapp.rb +93 -0
  48. data/lib/fog/vcloud_director/parsers/compute/vm.rb +3 -62
  49. data/lib/fog/vcloud_director/parsers/compute/vm_parser_helper.rb +47 -0
  50. data/lib/fog/vcloud_director/parsers/compute/vms.rb +2 -23
  51. data/lib/fog/vcloud_director/query.rb +0 -1
  52. data/lib/fog/vcloud_director/requests/compute/delete_vapp.rb +1 -1
  53. data/lib/fog/vcloud_director/requests/compute/get_lease_settings_section_vapp.rb +1 -1
  54. data/lib/fog/vcloud_director/requests/compute/get_template_vm.rb +1 -47
  55. data/lib/fog/vcloud_director/requests/compute/get_template_vms.rb +0 -13
  56. data/lib/fog/vcloud_director/requests/compute/get_vapp.rb +4 -3
  57. data/lib/fog/vcloud_director/requests/compute/get_vapp_metadata.rb +1 -1
  58. data/lib/fog/vcloud_director/requests/compute/get_vapp_owner.rb +1 -1
  59. data/lib/fog/vcloud_director/requests/compute/get_vm.rb +0 -46
  60. data/lib/fog/vcloud_director/requests/compute/instantiate_vapp_template.rb +1 -1
  61. data/lib/fog/vcloud_director/requests/compute/post_power_on_vapp.rb +2 -2
  62. data/lib/fog/vcloud_director/requests/compute/post_reconfigure_vm.rb +4 -84
  63. data/lib/fog/vcloud_director/requests/compute/post_update_vapp_metadata.rb +1 -1
  64. data/lib/fog/vcloud_director/requests/compute/put_cpu.rb +1 -1
  65. data/lib/fog/vcloud_director/requests/compute/put_memory.rb +1 -1
  66. data/lib/fog/vcloud_director/requests/compute/put_metadata_value.rb +1 -1
  67. data/lib/fog/vcloud_director/requests/compute/put_network_connection_system_section_vapp.rb +1 -1
  68. data/lib/fog/vcloud_director/requests/compute/put_vm.rb +1 -1
  69. data/lib/fog/vcloud_director/version.rb +1 -1
  70. data/spec/common_assertions.rb +42 -0
  71. data/spec/fixtures/vm.xml +419 -0
  72. data/spec/secrets.yaml.templ +3 -0
  73. data/spec/spec_helper.rb +5 -5
  74. data/spec/vcloud_director/generators/compute/compose_common_spec.rb +1 -6
  75. data/spec/vcloud_director/generators/compute/compose_vapp_spec.rb +67 -0
  76. data/spec/vcloud_director/generators/compute/create_snapshot_spec.rb +4 -0
  77. data/spec/vcloud_director/generators/compute/customization_spec.rb +4 -0
  78. data/spec/vcloud_director/generators/compute/disks_spec.rb +4 -0
  79. data/spec/vcloud_director/generators/compute/edge_gateway_service_configuration_spec.rb +4 -0
  80. data/spec/vcloud_director/generators/compute/instantiate_vapp_template_params_spec.rb +1 -4
  81. data/spec/vcloud_director/generators/compute/metadata_spec.rb +4 -0
  82. data/spec/vcloud_director/generators/compute/org_vdc_network_spec.rb +4 -0
  83. data/spec/vcloud_director/generators/compute/recompose_vapp_spec.rb +4 -0
  84. data/spec/vcloud_director/generators/compute/reconfigure_vm_spec.rb +117 -0
  85. data/spec/vcloud_director/generators/compute/vapp_spec.rb +4 -0
  86. data/spec/vcloud_director/generators/compute/vm_network_spec.rb +4 -0
  87. data/spec/vcloud_director/generators/compute/vm_spec.rb +4 -0
  88. data/spec/vcloud_director/models/compute/basic_spec.rb +44 -0
  89. data/spec/vcloud_director/models/compute/vapps_spec.rb +104 -0
  90. data/spec/vcloud_director/models/compute/vms_spec.rb +54 -0
  91. data/spec/vcloud_director/parsers/compute/disks_spec.rb +4 -0
  92. data/spec/vcloud_director/parsers/compute/metadata_spec.rb +4 -0
  93. data/spec/vcloud_director/parsers/compute/network_spec.rb +4 -0
  94. data/spec/vcloud_director/parsers/compute/vm_customization_spec.rb +4 -0
  95. data/spec/vcloud_director/parsers/compute/vm_network_spec.rb +4 -0
  96. data/spec/vcloud_director/parsers/compute/vm_parser_helper_spec.rb +4 -0
  97. data/spec/vcloud_director/parsers/compute/vm_spec.rb +4 -0
  98. data/spec/vcloud_director/parsers/compute/vms_by_metadata_spec.rb +4 -0
  99. data/spec/vcloud_director/parsers/compute/vms_spec.rb +4 -0
  100. data/spec/vcloud_director/requests/compute/basic_spec.rb +212 -0
  101. data/spec/vcloud_director/requests/compute/get_vapp_spec.rb +11 -0
  102. data/spec/vcloud_director/requests/compute/get_vdc_spec.rb +10 -0
  103. data/spec/vcloud_director/requests/compute/instantiate_vapp_template_spec.rb +1 -3
  104. data/spec/vcloud_director/requests/compute/post_reconfigure_vm_spec.rb +26 -0
  105. data/spec/vcr_cassettes/authentication.yml +48 -0
  106. data/spec/vcr_cassettes/get_vapp.yml +937 -0
  107. data/spec/vcr_cassettes/get_vapps-expired.yml +918 -0
  108. data/spec/vcr_cassettes/get_vapps-novms.yml +215 -0
  109. data/spec/vcr_cassettes/get_vapps.yml +118 -0
  110. data/spec/vcr_cassettes/get_vdc.yml +118 -0
  111. data/spec/vcr_cassettes/get_vm.yml +398 -0
  112. data/spec/vcr_cassettes/post_reconfigure_vm-virtual_hardware.yml +445 -0
  113. data/spec/vcr_spec_helper.rb +34 -0
  114. data/tasks/test.rake +3 -10
  115. metadata +129 -5
  116. data/lib/fog/vcloud_director/requests/compute/get_vms.rb +0 -41
  117. data/spec/vcloud_director/spec_helper.rb +0 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6b6e6b8b211b9b67dc31be86347aef4b88e57c96
4
- data.tar.gz: 422d1ec8b33d9e37818080fb4eae358885450b97
3
+ metadata.gz: fbaf59fc7bff4160ef144877dde0aec538a7fab0
4
+ data.tar.gz: 0e462d94397075c3e691f62a6d3ac9f96f727198
5
5
  SHA512:
6
- metadata.gz: 27146a5bddc128ca25bb9ed817e6875887a8477862379b166fe6d757b5c8f135f41b4e75222f2bf5e106e249fdf5780d111f6ecd2b2cb3fbf1b6f88449e611c7
7
- data.tar.gz: 4724410e5bc7291f23f427a7b06c6a42dc93d42b03a15d87aa09aa9717fb397f879db9f8ce44b06df18ae998a095d0d20edbe0ae7b4b8f85b070ffed53b083f2
6
+ metadata.gz: c39905225b0d2eb56535f05bac827aca49aaa87590772e24eb648179a27d6fbb002df0b51f3c7e553cdf22721a6ed4200e29ade7df9264a729cb29d1f225acbe
7
+ data.tar.gz: 7b952d5d66b81760db66bec9ccde37b036ee0304828a7797b83ec04411b4c32677d29a36d94bc73f0d8f3950fde147b8d7d0d79a9ee1b6259683f5946a6d72db
data/.gitignore CHANGED
@@ -15,3 +15,5 @@ mkmf.log
15
15
  .ruby-version
16
16
  .idea/
17
17
  .DS_Store
18
+ .rubocop-*
19
+ /spec/secrets.yaml
@@ -1,240 +1,4 @@
1
- # Fog custom enforced styles
2
- Metrics/LineLength:
3
- Enabled: false
4
-
5
- Style/Encoding:
6
- EnforcedStyle: when_needed
7
-
8
- Style/FormatString:
9
- Enabled: false
10
-
11
- Style/HashSyntax:
12
- EnforcedStyle: hash_rockets
13
-
14
- # HoundCI config
15
-
16
- AllCops:
17
- Exclude:
18
- - "vendor/**/*"
19
- - "db/schema.rb"
20
- UseCache: false
21
- Style/CollectionMethods:
22
- Description: Preferred collection methods.
23
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#map-find-select-reduce-size
24
- Enabled: true
25
- PreferredMethods:
26
- collect: map
27
- collect!: map!
28
- find: detect
29
- find_all: select
30
- reduce: inject
31
- Style/DotPosition:
32
- Description: Checks the position of the dot in multi-line method calls.
33
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains
34
- Enabled: true
35
- EnforcedStyle: trailing
36
- SupportedStyles:
37
- - leading
38
- - trailing
39
- Style/FileName:
40
- Description: Use snake_case for source file names.
41
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#snake-case-files
42
- Enabled: false
43
- Exclude: []
44
- Style/GuardClause:
45
- Description: Check for conditionals that can be replaced with guard clauses
46
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals
47
- Enabled: false
48
- MinBodyLength: 1
49
- Style/IfUnlessModifier:
50
- Description: Favor modifier if/unless usage when you have a single-line body.
51
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier
52
- Enabled: false
53
- MaxLineLength: 80
54
- Style/OptionHash:
55
- Description: Don't use option hashes when you can use keyword arguments.
56
- Enabled: false
57
- Style/PercentLiteralDelimiters:
58
- Description: Use `%`-literal delimiters consistently
59
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-literal-braces
60
- Enabled: false
61
- PreferredDelimiters:
62
- "%": "()"
63
- "%i": "()"
64
- "%q": "()"
65
- "%Q": "()"
66
- "%r": "{}"
67
- "%s": "()"
68
- "%w": "()"
69
- "%W": "()"
70
- "%x": "()"
71
- Style/PredicateName:
72
- Description: Check the names of predicate methods.
73
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark
74
- Enabled: true
75
- NamePrefix:
76
- - is_
77
- - has_
78
- - have_
79
- NamePrefixBlacklist:
80
- - is_
81
- Exclude:
82
- - spec/**/*
83
- Style/RaiseArgs:
84
- Description: Checks the arguments passed to raise/fail.
85
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#exception-class-messages
86
- Enabled: false
87
- EnforcedStyle: exploded
88
- SupportedStyles:
89
- - compact
90
- - exploded
91
- Style/SignalException:
92
- Description: Checks for proper usage of fail and raise.
93
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#fail-method
94
- Enabled: false
95
- EnforcedStyle: semantic
96
- SupportedStyles:
97
- - only_raise
98
- - only_fail
99
- - semantic
100
- Style/SingleLineBlockParams:
101
- Description: Enforces the names of some block params.
102
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#reduce-blocks
103
- Enabled: false
104
- Methods:
105
- - reduce:
106
- - a
107
- - e
108
- - inject:
109
- - a
110
- - e
111
- Style/SingleLineMethods:
112
- Description: Avoid single-line methods.
113
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-single-line-methods
114
- Enabled: false
115
- AllowIfMethodIsEmpty: true
116
- Style/StringLiterals:
117
- Description: Checks if uses of quotes match the configured preference.
118
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#consistent-string-literals
119
- Enabled: true
120
- EnforcedStyle: double_quotes
121
- SupportedStyles:
122
- - single_quotes
123
- - double_quotes
124
- Style/StringLiteralsInInterpolation:
125
- Description: Checks if uses of quotes inside expressions in interpolated strings
126
- match the configured preference.
127
- Enabled: true
128
- EnforcedStyle: single_quotes
129
- SupportedStyles:
130
- - single_quotes
131
- - double_quotes
132
- Metrics/AbcSize:
133
- Description: A calculated magnitude based on number of assignments, branches, and
134
- conditions.
135
- Enabled: false
136
- Max: 15
137
- Metrics/ClassLength:
138
- Description: Avoid classes longer than 100 lines of code.
139
- Enabled: false
140
- CountComments: false
141
- Max: 100
142
- Metrics/ModuleLength:
143
- CountComments: false
144
- Max: 100
145
- Description: Avoid modules longer than 100 lines of code.
146
- Enabled: false
147
- Metrics/CyclomaticComplexity:
148
- Description: A complexity metric that is strongly correlated to the number of test
149
- cases needed to validate a method.
150
- Enabled: false
151
- Max: 6
152
- Metrics/MethodLength:
153
- Description: Avoid methods longer than 10 lines of code.
154
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#short-methods
155
- Enabled: false
156
- CountComments: false
157
- Max: 10
158
- Metrics/ParameterLists:
159
- Description: Avoid parameter lists longer than three or four parameters.
160
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#too-many-params
161
- Enabled: false
162
- Max: 5
163
- CountKeywordArgs: true
164
- Metrics/PerceivedComplexity:
165
- Description: A complexity metric geared towards measuring complexity for a human
166
- reader.
167
- Enabled: false
168
- Max: 7
169
- Lint/AssignmentInCondition:
170
- Description: Don't use assignment in conditions.
171
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition
172
- Enabled: false
173
- AllowSafeAssignment: true
174
- Style/InlineComment:
175
- Description: Avoid inline comments.
176
- Enabled: false
177
- Style/AccessorMethodName:
178
- Description: Check the naming of accessor methods for get_/set_.
179
- Enabled: false
180
- Style/Alias:
181
- Description: Use alias_method instead of alias.
182
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#alias-method
183
- Enabled: false
184
- Style/Documentation:
185
- Description: Document classes and non-namespace modules.
186
- Enabled: false
187
- Style/DoubleNegation:
188
- Description: Checks for uses of double negation (!!).
189
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-bang-bang
190
- Enabled: false
191
- Style/EachWithObject:
192
- Description: Prefer `each_with_object` over `inject` or `reduce`.
193
- Enabled: false
194
- Style/EmptyLiteral:
195
- Description: Prefer literals to Array.new/Hash.new/String.new.
196
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#literal-array-hash
197
- Enabled: false
198
- Style/ModuleFunction:
199
- Description: Checks for usage of `extend self` in modules.
200
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#module-function
201
- Enabled: false
202
- Style/OneLineConditional:
203
- Description: Favor the ternary operator(?:) over if/then/else/end constructs.
204
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#ternary-operator
205
- Enabled: false
206
- Style/PerlBackrefs:
207
- Description: Avoid Perl-style regex back references.
208
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers
209
- Enabled: false
210
- Style/Send:
211
- Description: Prefer `Object#__send__` or `Object#public_send` to `send`, as `send`
212
- may overlap with existing methods.
213
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#prefer-public-send
214
- Enabled: false
215
- Style/SpecialGlobalVars:
216
- Description: Avoid Perl-style global variables.
217
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms
218
- Enabled: false
219
- Style/VariableInterpolation:
220
- Description: Don't interpolate global, instance and class variables directly in
221
- strings.
222
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#curlies-interpolate
223
- Enabled: false
224
- Style/WhenThen:
225
- Description: Use when x then ... for one-line cases.
226
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#one-line-cases
227
- Enabled: false
228
- Lint/EachWithObjectArgument:
229
- Description: Check for immutable argument given to each_with_object.
230
- Enabled: true
231
- Lint/HandleExceptions:
232
- Description: Don't suppress exception.
233
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions
234
- Enabled: false
235
- Lint/LiteralInCondition:
236
- Description: Checks of literals used in conditions.
237
- Enabled: false
238
- Lint/LiteralInInterpolation:
239
- Description: Checks for literals used in interpolation.
240
- Enabled: false
1
+ inherit_from:
2
+ - https://raw.githubusercontent.com/ManageIQ/guides/master/.rubocop_base.yml
3
+ # put all local rubocop config into .rubocop_local.yml as it will be loaded by .rubocop_cc.yml as well
4
+ - .rubocop_local.yml
@@ -0,0 +1 @@
1
+
@@ -1,15 +1,10 @@
1
1
  language: ruby
2
+ script: "bundle exec rake test"
2
3
  sudo: false
4
+ rvm:
5
+ - 2.3.1
6
+ - 2.4.2
3
7
  matrix:
4
8
  fast_finish: true
5
- include:
6
- - rvm: 2.0
7
- - rvm: 2.1
8
- - rvm: 2.2
9
- - rvm: 2.3.0
10
- - rvm: jruby-head
11
- allow_failures:
12
- - rvm: jruby-head
13
-
14
9
  notifications:
15
- email: false
10
+ email: false
data/README.md CHANGED
@@ -961,3 +961,6 @@ template.instantiate('webserver', {
961
961
  ```
962
962
 
963
963
  See [here](./docs/examples-vapp-instantiate.md) for real-world example.
964
+
965
+ ### Reconfigure VM Virtual Hardware
966
+ See [here](./docs/examples-vm-reconfigure.md) for real-world example.
@@ -0,0 +1,39 @@
1
+ # VM Reconfiguration Examples
2
+ In this document we provide examples of VM reconfiguration.
3
+
4
+ ## Hardware Reconfiguration Example
5
+ This example demonstrates basic hardware customization parameters. Raw content of parameter
6
+ `xml` can be examined [here](./vm-to-reconfigure.xml).
7
+
8
+ ```ruby
9
+ service = Fog::Compute::VcloudDirector.new(...)
10
+
11
+ # Obtain nokogiri-parsed XML representation of VM.
12
+ xml = service.get_vapp('vm-8dc9990c-a55a-418e-8e21-5942a20b93ef', :parser => 'xml').body
13
+
14
+ # Decide what hardware options to customize.
15
+ options = {
16
+ :name => 'DB VM', # new VM name
17
+ :description => 'Some Description', # new VM description
18
+ :hardware => {
19
+ :memory => { :quantity_mb => 4096 }, # set memory to 4GB
20
+ :cpu => { :num_cores => 4, :cores_per_socket => 1 },
21
+ :disk => [
22
+ { :id => '2000', :capacity_mb => 5*1024 }, # increase disk 2000 to 5GB
23
+ { :id => '2001', :capacity_mb => -1 }, # delete disk 2001
24
+ { :capacity_mb => 1*1024 } # add a new disk of size 1GB
25
+ ]
26
+ }
27
+ }
28
+
29
+ # Actually perform customization.
30
+ service.post_reconfigure_vm(
31
+ 'vm-8dc9990c-a55a-418e-8e21-5942a20b93ef',
32
+ xml,
33
+ options
34
+ )
35
+ ```
36
+
37
+ **NOTE**: If you omit `:hardware` key from options, then reconfiguration request will be
38
+ simplified by omitting entire VirtualHardwareSection from payload XML. So please prefer
39
+ omitting the `:hardware` key over passing `:hardware => {}` in order to reduce network load.
@@ -0,0 +1,373 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Vm xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:common="http://schemas.dmtf.org/wbem/wscim/1/common" xmlns:ns10="http://www.vmware.com/vcloud/networkservice/common/1.0" xmlns:ns11="http://www.vmware.com/vcloud/networkservice/ipam/1.0" xmlns:ns12="http://www.vmware.com/vcloud/versions" xmlns:ns9="http://www.vmware.com/vcloud/networkservice/1.0" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" xmlns:ovfenv="http://schemas.dmtf.org/ovf/environment/1" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vmext="http://www.vmware.com/vcloud/extension/v1.5" xmlns:vmw="http://www.vmware.com/schema/ovf" xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" needsCustomization="false" nestedHypervisorEnabled="false" deployed="false" status="8" name="Databasy Machiny" id="urn:vcloud:vm:8dc9990c-a55a-418e-8e21-5942a20b93ef" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" type="application/vnd.vmware.vcloud.vm+xml">
3
+ <Link rel="power:powerOn" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/power/action/powerOn" />
4
+ <Link rel="deploy" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/deploy" type="application/vnd.vmware.vcloud.deployVAppParams+xml" />
5
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" type="application/vnd.vmware.vcloud.vm+xml" />
6
+ <Link rel="remove" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" />
7
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/metadata" type="application/vnd.vmware.vcloud.metadata+xml" />
8
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/productSections/" type="application/vnd.vmware.vcloud.productSections+xml" />
9
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/metrics/historic" type="application/vnd.vmware.vcloud.metrics.historicUsageSpec+xml" />
10
+ <Link rel="metrics" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/metrics/historic" type="application/vnd.vmware.vcloud.metrics.historicUsageSpec+xml" />
11
+ <Link rel="screen:thumbnail" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/screen" />
12
+ <Link rel="media:insertMedia" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/media/action/insertMedia" type="application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml" />
13
+ <Link rel="media:ejectMedia" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/media/action/ejectMedia" type="application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml" />
14
+ <Link rel="disk:attach" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/disk/action/attach" type="application/vnd.vmware.vcloud.diskAttachOrDetachParams+xml" />
15
+ <Link rel="disk:detach" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/disk/action/detach" type="application/vnd.vmware.vcloud.diskAttachOrDetachParams+xml" />
16
+ <Link rel="enable" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/enableNestedHypervisor" />
17
+ <Link rel="customizeAtNextPowerOn" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/customizeAtNextPowerOn" />
18
+ <Link rel="snapshot:create" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/createSnapshot" type="application/vnd.vmware.vcloud.createSnapshotParams+xml" />
19
+ <Link rel="reconfigureVm" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/reconfigureVm" name="Databasy Machiny" type="application/vnd.vmware.vcloud.vm+xml" />
20
+ <Link rel="up" href="https://10.12.0.18/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e" type="application/vnd.vmware.vcloud.vApp+xml" />
21
+ <Description />
22
+ <Tasks>
23
+ <Task cancelRequested="false" endTime="2018-04-18T11:08:40.855+02:00" expiryTime="2018-07-17T11:08:38.285+02:00" operation="Updated Virtual Machine Databasy Machiny(8dc9990c-a55a-418e-8e21-5942a20b93ef)" operationName="vappUpdateVm" serviceNamespace="com.vmware.vcloud" startTime="2018-04-18T11:08:38.285+02:00" status="error" name="task" id="urn:vcloud:task:cc74e25c-c52f-40f7-930b-eae865103e08" href="https://10.12.0.18/api/task/cc74e25c-c52f-40f7-930b-eae865103e08" type="application/vnd.vmware.vcloud.task+xml">
24
+ <Owner href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" name="Databasy Machiny" type="application/vnd.vmware.vcloud.vm+xml" />
25
+ <Error majorErrorCode="500" message="[ 24e09aac-f47d-4bfa-853d-2512d9eaeb7c ] Unable to perform this action. Contact your cloud administrator." minorErrorCode="INTERNAL_SERVER_ERROR" />
26
+ <User href="https://10.12.0.18/api/admin/user/e0d6e74d-efde-49fe-b19f-ace7e55b68dd" name="redhat" type="application/vnd.vmware.admin.user+xml" />
27
+ <Organization href="https://10.12.0.18/api/org/8f03aa58-b618-4c32-836b-dc6b612ed3a4" name="RedHat" type="application/vnd.vmware.vcloud.org+xml" />
28
+ <Details>[ 24e09aac-f47d-4bfa-853d-2512d9eaeb7c ] Unable to perform this action. Contact your cloud administr...</Details>
29
+ </Task>
30
+ <Task cancelRequested="false" endTime="2018-04-18T11:25:32.888+02:00" expiryTime="2018-07-17T11:25:29.954+02:00" operation="Updated Virtual Machine Databasy Machiny(8dc9990c-a55a-418e-8e21-5942a20b93ef)" operationName="vappUpdateVm" serviceNamespace="com.vmware.vcloud" startTime="2018-04-18T11:25:29.954+02:00" status="error" name="task" id="urn:vcloud:task:fb2fb286-42f2-4320-9ddf-41c7a7ea2a6c" href="https://10.12.0.18/api/task/fb2fb286-42f2-4320-9ddf-41c7a7ea2a6c" type="application/vnd.vmware.vcloud.task+xml">
31
+ <Owner href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" name="Databasy Machiny" type="application/vnd.vmware.vcloud.vm+xml" />
32
+ <Error majorErrorCode="500" message="[ 589e08cd-f44b-4a4d-97dc-ea4005b6ec7a ] Unable to perform this action. Contact your cloud administrator." minorErrorCode="INTERNAL_SERVER_ERROR" />
33
+ <User href="https://10.12.0.18/api/admin/user/e0d6e74d-efde-49fe-b19f-ace7e55b68dd" name="redhat" type="application/vnd.vmware.admin.user+xml" />
34
+ <Organization href="https://10.12.0.18/api/org/8f03aa58-b618-4c32-836b-dc6b612ed3a4" name="RedHat" type="application/vnd.vmware.vcloud.org+xml" />
35
+ <Details>[ 589e08cd-f44b-4a4d-97dc-ea4005b6ec7a ] Unable to perform this action. Contact your cloud administr...</Details>
36
+ </Task>
37
+ <Task cancelRequested="false" endTime="2018-04-18T11:29:30.917+02:00" expiryTime="2018-07-17T11:29:27.536+02:00" operation="Updated Virtual Machine Databasy Machiny(8dc9990c-a55a-418e-8e21-5942a20b93ef)" operationName="vappUpdateVm" serviceNamespace="com.vmware.vcloud" startTime="2018-04-18T11:29:27.536+02:00" status="error" name="task" id="urn:vcloud:task:b47e437f-b159-4069-afc4-5c5f347013f0" href="https://10.12.0.18/api/task/b47e437f-b159-4069-afc4-5c5f347013f0" type="application/vnd.vmware.vcloud.task+xml">
38
+ <Owner href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" name="Databasy Machiny" type="application/vnd.vmware.vcloud.vm+xml" />
39
+ <Error majorErrorCode="500" message="[ 1d3410f5-c6ed-4cc1-ab90-7ce1edf61de7 ] Unable to perform this action. Contact your cloud administrator." minorErrorCode="INTERNAL_SERVER_ERROR" />
40
+ <User href="https://10.12.0.18/api/admin/user/e0d6e74d-efde-49fe-b19f-ace7e55b68dd" name="redhat" type="application/vnd.vmware.admin.user+xml" />
41
+ <Organization href="https://10.12.0.18/api/org/8f03aa58-b618-4c32-836b-dc6b612ed3a4" name="RedHat" type="application/vnd.vmware.vcloud.org+xml" />
42
+ <Details>[ 1d3410f5-c6ed-4cc1-ab90-7ce1edf61de7 ] Unable to perform this action. Contact your cloud administr...</Details>
43
+ </Task>
44
+ </Tasks>
45
+ <ovf:VirtualHardwareSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ovf:transport="" ns13:type="application/vnd.vmware.vcloud.virtualHardwareSection+xml" ns13:href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/">
46
+ <ovf:Info>Virtual hardware requirements</ovf:Info>
47
+ <ovf:System>
48
+ <vssd:AutomaticRecoveryAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
49
+ <vssd:AutomaticShutdownAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
50
+ <vssd:AutomaticStartupAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
51
+ <vssd:AutomaticStartupActionDelay xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
52
+ <vssd:AutomaticStartupActionSequenceNumber xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
53
+ <vssd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
54
+ <vssd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
55
+ <vssd:ConfigurationDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
56
+ <vssd:ConfigurationFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
57
+ <vssd:ConfigurationID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
58
+ <vssd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
59
+ <vssd:CreationTime xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
60
+ <vssd:Description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
61
+ <vssd:ElementName>Virtual Hardware Family</vssd:ElementName>
62
+ <vssd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
63
+ <vssd:InstanceID>0</vssd:InstanceID>
64
+ <vssd:LogDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
65
+ <vssd:RecoveryFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
66
+ <vssd:SnapshotDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
67
+ <vssd:SuspendDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
68
+ <vssd:SwapFileDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
69
+ <vssd:VirtualSystemIdentifier>Databasy Machiny</vssd:VirtualSystemIdentifier>
70
+ <vssd:VirtualSystemType>vmx-13</vssd:VirtualSystemType>
71
+ </ovf:System>
72
+ <ovf:Item>
73
+ <rasd:Address>00:50:56:01:01:2c</rasd:Address>
74
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
75
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
76
+ <rasd:AutomaticAllocation>true</rasd:AutomaticAllocation>
77
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
78
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
79
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
80
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
81
+ <rasd:Connection ns13:ipAddressingMode="DHCP" ns13:primaryNetworkConnection="true">Localhost</rasd:Connection>
82
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
83
+ <rasd:Description>PCNet32 ethernet adapter on "Localhost"</rasd:Description>
84
+ <rasd:ElementName>Network adapter 0</rasd:ElementName>
85
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
86
+ <rasd:InstanceID>1</rasd:InstanceID>
87
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
88
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
89
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
90
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
91
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
92
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
93
+ <rasd:ResourceSubType>PCNet32</rasd:ResourceSubType>
94
+ <rasd:ResourceType>10</rasd:ResourceType>
95
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
96
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
97
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
98
+ </ovf:Item>
99
+ <ovf:Item>
100
+ <rasd:Address>0</rasd:Address>
101
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
102
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
103
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
104
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
105
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
106
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
107
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
108
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
109
+ <rasd:Description>SCSI Controller</rasd:Description>
110
+ <rasd:ElementName>SCSI Controller 0</rasd:ElementName>
111
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
112
+ <rasd:InstanceID>2</rasd:InstanceID>
113
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
114
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
115
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
116
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
117
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
118
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
119
+ <rasd:ResourceSubType>lsilogic</rasd:ResourceSubType>
120
+ <rasd:ResourceType>6</rasd:ResourceType>
121
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
122
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
123
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
124
+ </ovf:Item>
125
+ <ovf:Item>
126
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
127
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
128
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
129
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
130
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
131
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
132
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
133
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
134
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
135
+ <rasd:Description>Hard disk</rasd:Description>
136
+ <rasd:ElementName>Hard disk 1</rasd:ElementName>
137
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
138
+ <rasd:HostResource ns13:storageProfileHref="https://10.12.0.18/api/vdcStorageProfile/c87b2a7c-fcab-4f8a-bef3-3ece59366c38" ns13:busType="6" ns13:busSubType="lsilogic" ns13:capacity="5120" ns13:iops="0" ns13:storageProfileOverrideVmDefault="false" />
139
+ <rasd:InstanceID>2000</rasd:InstanceID>
140
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
141
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
142
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
143
+ <rasd:Parent>2</rasd:Parent>
144
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
145
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
146
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
147
+ <rasd:ResourceType>17</rasd:ResourceType>
148
+ <rasd:VirtualQuantity>5368709120</rasd:VirtualQuantity>
149
+ <rasd:VirtualQuantityUnits>byte</rasd:VirtualQuantityUnits>
150
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
151
+ </ovf:Item>
152
+ <ovf:Item>
153
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
154
+ <rasd:AddressOnParent>2</rasd:AddressOnParent>
155
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
156
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
157
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
158
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
159
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
160
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
161
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
162
+ <rasd:Description>Hard disk</rasd:Description>
163
+ <rasd:ElementName>Hard disk 2</rasd:ElementName>
164
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
165
+ <rasd:HostResource ns13:storageProfileHref="https://10.12.0.18/api/vdcStorageProfile/c87b2a7c-fcab-4f8a-bef3-3ece59366c38" ns13:busType="6" ns13:busSubType="lsilogic" ns13:capacity="1024" ns13:iops="0" ns13:storageProfileOverrideVmDefault="false" />
166
+ <rasd:InstanceID>2002</rasd:InstanceID>
167
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
168
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
169
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
170
+ <rasd:Parent>2</rasd:Parent>
171
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
172
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
173
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
174
+ <rasd:ResourceType>17</rasd:ResourceType>
175
+ <rasd:VirtualQuantity>1073741824</rasd:VirtualQuantity>
176
+ <rasd:VirtualQuantityUnits>byte</rasd:VirtualQuantityUnits>
177
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
178
+ </ovf:Item>
179
+ <ovf:Item>
180
+ <rasd:Address>0</rasd:Address>
181
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
182
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
183
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
184
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
185
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
186
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
187
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
188
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
189
+ <rasd:Description>IDE Controller</rasd:Description>
190
+ <rasd:ElementName>IDE Controller 0</rasd:ElementName>
191
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
192
+ <rasd:InstanceID>3</rasd:InstanceID>
193
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
194
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
195
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
196
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
197
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
198
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
199
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
200
+ <rasd:ResourceType>5</rasd:ResourceType>
201
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
202
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
203
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
204
+ </ovf:Item>
205
+ <ovf:Item>
206
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
207
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
208
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
209
+ <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
210
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
211
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
212
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
213
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
214
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
215
+ <rasd:Description>CD/DVD Drive</rasd:Description>
216
+ <rasd:ElementName>CD/DVD Drive 1</rasd:ElementName>
217
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
218
+ <rasd:HostResource />
219
+ <rasd:InstanceID>3000</rasd:InstanceID>
220
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
221
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
222
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
223
+ <rasd:Parent>3</rasd:Parent>
224
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
225
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
226
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
227
+ <rasd:ResourceType>15</rasd:ResourceType>
228
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
229
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
230
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
231
+ </ovf:Item>
232
+ <ovf:Item>
233
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
234
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
235
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
236
+ <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
237
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
238
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
239
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
240
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
241
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
242
+ <rasd:Description>Floppy Drive</rasd:Description>
243
+ <rasd:ElementName>Floppy Drive 1</rasd:ElementName>
244
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
245
+ <rasd:HostResource />
246
+ <rasd:InstanceID>8000</rasd:InstanceID>
247
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
248
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
249
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
250
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
251
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
252
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
253
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
254
+ <rasd:ResourceType>14</rasd:ResourceType>
255
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
256
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
257
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
258
+ </ovf:Item>
259
+ <ovf:Item ns13:type="application/vnd.vmware.vcloud.rasdItem+xml" ns13:href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu">
260
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
261
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
262
+ <rasd:AllocationUnits>hertz * 10^6</rasd:AllocationUnits>
263
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
264
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
265
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
266
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
267
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
268
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
269
+ <rasd:Description>Number of Virtual CPUs</rasd:Description>
270
+ <rasd:ElementName>4 virtual CPU(s)</rasd:ElementName>
271
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
272
+ <rasd:InstanceID>4</rasd:InstanceID>
273
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
274
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
275
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
276
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
277
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
278
+ <rasd:Reservation>0</rasd:Reservation>
279
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
280
+ <rasd:ResourceType>3</rasd:ResourceType>
281
+ <rasd:VirtualQuantity>4</rasd:VirtualQuantity>
282
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
283
+ <rasd:Weight>0</rasd:Weight>
284
+ <vmw:CoresPerSocket ovf:required="false">1</vmw:CoresPerSocket>
285
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml" />
286
+ </ovf:Item>
287
+ <ovf:Item ns13:type="application/vnd.vmware.vcloud.rasdItem+xml" ns13:href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory">
288
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
289
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
290
+ <rasd:AllocationUnits>byte * 2^20</rasd:AllocationUnits>
291
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
292
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
293
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
294
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
295
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
296
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
297
+ <rasd:Description>Memory Size</rasd:Description>
298
+ <rasd:ElementName>4096 MB of memory</rasd:ElementName>
299
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
300
+ <rasd:InstanceID>5</rasd:InstanceID>
301
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
302
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
303
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
304
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
305
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
306
+ <rasd:Reservation>0</rasd:Reservation>
307
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
308
+ <rasd:ResourceType>4</rasd:ResourceType>
309
+ <rasd:VirtualQuantity>4096</rasd:VirtualQuantity>
310
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
311
+ <rasd:Weight>0</rasd:Weight>
312
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml" />
313
+ </ovf:Item>
314
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/" type="application/vnd.vmware.vcloud.virtualHardwareSection+xml" />
315
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml" />
316
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml" />
317
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml" />
318
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml" />
319
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/disks" type="application/vnd.vmware.vcloud.rasdItemsList+xml" />
320
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/disks" type="application/vnd.vmware.vcloud.rasdItemsList+xml" />
321
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/media" type="application/vnd.vmware.vcloud.rasdItemsList+xml" />
322
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/networkCards" type="application/vnd.vmware.vcloud.rasdItemsList+xml" />
323
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/networkCards" type="application/vnd.vmware.vcloud.rasdItemsList+xml" />
324
+ <Link rel="down" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/serialPorts" type="application/vnd.vmware.vcloud.rasdItemsList+xml" />
325
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/serialPorts" type="application/vnd.vmware.vcloud.rasdItemsList+xml" />
326
+ </ovf:VirtualHardwareSection>
327
+ <ovf:OperatingSystemSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ovf:id="102" ns13:type="application/vnd.vmware.vcloud.operatingSystemSection+xml" vmw:osType="windows9Server64Guest" ns13:href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/operatingSystemSection/">
328
+ <ovf:Info>Specifies the operating system installed</ovf:Info>
329
+ <ovf:Description>Microsoft Windows Server 2016 (64-bit)</ovf:Description>
330
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/operatingSystemSection/" type="application/vnd.vmware.vcloud.operatingSystemSection+xml" />
331
+ </ovf:OperatingSystemSection>
332
+ <NetworkConnectionSection href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/networkConnectionSection/" type="application/vnd.vmware.vcloud.networkConnectionSection+xml" ovf:required="false">
333
+ <ovf:Info>Specifies the available VM network connections</ovf:Info>
334
+ <PrimaryNetworkConnectionIndex>0</PrimaryNetworkConnectionIndex>
335
+ <NetworkConnection needsCustomization="false" network="Localhost">
336
+ <NetworkConnectionIndex>0</NetworkConnectionIndex>
337
+ <IsConnected>true</IsConnected>
338
+ <MACAddress>00:50:56:01:01:2c</MACAddress>
339
+ <IpAddressAllocationMode>DHCP</IpAddressAllocationMode>
340
+ <NetworkAdapterType>PCNet32</NetworkAdapterType>
341
+ </NetworkConnection>
342
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/networkConnectionSection/" type="application/vnd.vmware.vcloud.networkConnectionSection+xml" />
343
+ </NetworkConnectionSection>
344
+ <GuestCustomizationSection href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/guestCustomizationSection/" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml" ovf:required="false">
345
+ <ovf:Info>Specifies Guest OS Customization Settings</ovf:Info>
346
+ <Enabled>false</Enabled>
347
+ <ChangeSid>true</ChangeSid>
348
+ <VirtualMachineId>8dc9990c-a55a-418e-8e21-5942a20b93ef</VirtualMachineId>
349
+ <JoinDomainEnabled>false</JoinDomainEnabled>
350
+ <UseOrgSettings>false</UseOrgSettings>
351
+ <AdminPasswordEnabled>true</AdminPasswordEnabled>
352
+ <AdminPasswordAuto>true</AdminPasswordAuto>
353
+ <AdminAutoLogonEnabled>false</AdminAutoLogonEnabled>
354
+ <AdminAutoLogonCount>0</AdminAutoLogonCount>
355
+ <ResetPasswordRequired>false</ResetPasswordRequired>
356
+ <ComputerName>DatabseVM</ComputerName>
357
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/guestCustomizationSection/" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml" />
358
+ </GuestCustomizationSection>
359
+ <RuntimeInfoSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ns13:type="application/vnd.vmware.vcloud.virtualHardwareSection+xml" ns13:href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/runtimeInfoSection">
360
+ <ovf:Info>Specifies Runtime info</ovf:Info>
361
+ </RuntimeInfoSection>
362
+ <SnapshotSection href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/snapshotSection" type="application/vnd.vmware.vcloud.snapshotSection+xml" ovf:required="false">
363
+ <ovf:Info>Snapshot information section</ovf:Info>
364
+ </SnapshotSection>
365
+ <DateCreated>2018-04-16T09:13:25.402+02:00</DateCreated>
366
+ <VAppScopedLocalId>af445e42-234d-41b2-9654-b36ac45ad71c</VAppScopedLocalId>
367
+ <VmCapabilities href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/vmCapabilities/" type="application/vnd.vmware.vcloud.vmCapabilitiesSection+xml">
368
+ <Link rel="edit" href="https://10.12.0.18/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/vmCapabilities/" type="application/vnd.vmware.vcloud.vmCapabilitiesSection+xml" />
369
+ <MemoryHotAddEnabled>false</MemoryHotAddEnabled>
370
+ <CpuHotAddEnabled>false</CpuHotAddEnabled>
371
+ </VmCapabilities>
372
+ <StorageProfile href="https://10.12.0.18/api/vdcStorageProfile/c87b2a7c-fcab-4f8a-bef3-3ece59366c38" name="*" type="application/vnd.vmware.vcloud.vdcStorageProfile+xml" />
373
+ </Vm>