occi 2.5.19 → 3.0.0.beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. data/.gitignore +4 -0
  2. data/.travis.yml +3 -1
  3. data/AUTHORS +4 -3
  4. data/Gemfile +9 -0
  5. data/Gemfile.lock +64 -21
  6. data/README.md +19 -14
  7. data/Rakefile +12 -8
  8. data/Test Results - discovery_interface.html +862 -0
  9. data/bin/occi +333 -83
  10. data/examples/dsl_example.rb +6 -6
  11. data/examples/x509auth_example.rb +6 -6
  12. data/features/common/step_definitions/common_steps.rb +32 -0
  13. data/features/occi/core/create/create.feature +17 -0
  14. data/features/occi/core/create/step_definitions/create_steps.rb +0 -0
  15. data/features/occi/core/delete/delete.feature +14 -0
  16. data/features/occi/core/delete/step_definitions/delete_steps.rb +0 -0
  17. data/features/occi/core/discovery_interface/discovery_interface.feature +35 -0
  18. data/features/occi/core/discovery_interface/step_definitions/discovery_interface_steps.rb +19 -0
  19. data/features/occi/core/miscellaneous/miscellaneous.feature +14 -0
  20. data/features/occi/core/miscellaneous/step_definitions/miscellaneous_steps.rb +0 -0
  21. data/features/occi/core/read/read.feature +14 -0
  22. data/features/occi/core/read/step_definitions/read_steps.rb +0 -0
  23. data/features/occi/core/update/step_definitions/update_steps.rb +0 -0
  24. data/features/occi/core/update/update.feature +14 -0
  25. data/features/occi/infrastructure/create/create.feature +14 -0
  26. data/features/occi/infrastructure/create/step_definitions/create_steps.rb +0 -0
  27. data/features/support/env.rb +4 -0
  28. data/lib/occi.rb +29 -3
  29. data/lib/occi/api/client/client_amqp.rb +756 -0
  30. data/lib/occi/api/client/client_http.rb +922 -0
  31. data/lib/occi/api/client/http/httparty_fix.rb +53 -0
  32. data/lib/occi/api/client/http/net_http_fix.rb +46 -0
  33. data/lib/occi/api/dsl.rb +77 -73
  34. data/lib/occi/bin/helpers.rb +91 -0
  35. data/lib/occi/bin/occi_opts.rb +251 -0
  36. data/lib/occi/bin/resource_output_factory.rb +90 -0
  37. data/lib/occi/bin/templates/compute.erb +15 -0
  38. data/lib/occi/bin/templates/network.erb +11 -0
  39. data/lib/occi/bin/templates/os_tpl.erb +9 -0
  40. data/lib/occi/bin/templates/resource_tpl.erb +9 -0
  41. data/lib/occi/bin/templates/storage.erb +10 -0
  42. data/lib/occi/collection.rb +122 -25
  43. data/lib/occi/core.rb +18 -9
  44. data/lib/occi/core/action.rb +20 -4
  45. data/lib/occi/core/action_instance.rb +24 -0
  46. data/lib/occi/core/actions.rb +22 -0
  47. data/lib/occi/core/attribute_properties.rb +33 -84
  48. data/lib/occi/core/attributes.rb +32 -14
  49. data/lib/occi/core/categories.rb +46 -0
  50. data/lib/occi/core/category.rb +94 -20
  51. data/lib/occi/core/entities.rb +50 -0
  52. data/lib/occi/core/entity.rb +130 -89
  53. data/lib/occi/core/kind.rb +28 -35
  54. data/lib/occi/core/kinds.rb +22 -0
  55. data/lib/occi/core/link.rb +43 -40
  56. data/lib/occi/core/links.rb +34 -0
  57. data/lib/occi/core/mixin.rb +28 -23
  58. data/lib/occi/core/mixins.rb +22 -0
  59. data/lib/occi/core/related.rb +20 -0
  60. data/lib/occi/core/resource.rb +40 -40
  61. data/lib/occi/core/resources.rb +14 -0
  62. data/lib/occi/infrastructure.rb +27 -0
  63. data/lib/occi/infrastructure/compute.rb +159 -0
  64. data/lib/occi/infrastructure/network.rb +131 -0
  65. data/lib/occi/infrastructure/network/ipnetwork.rb +34 -0
  66. data/lib/occi/infrastructure/networkinterface.rb +124 -0
  67. data/lib/occi/infrastructure/networkinterface/ipnetworkinterface.rb +34 -0
  68. data/lib/occi/infrastructure/os_tpl.rb +19 -0
  69. data/lib/occi/infrastructure/resource_tpl.rb +19 -0
  70. data/lib/occi/infrastructure/storage.rb +96 -0
  71. data/lib/occi/infrastructure/storagelink.rb +73 -0
  72. data/lib/occi/log.rb +6 -2
  73. data/lib/occi/model.rb +38 -70
  74. data/lib/occi/parser.rb +108 -88
  75. data/lib/occi/version.rb +2 -2
  76. data/lib/occiantlr/OCCIANTLR.g +6 -5
  77. data/lib/occiantlr/OCCIANTLRLexer.rb +52 -52
  78. data/lib/occiantlr/OCCIANTLRParser.rb +678 -569
  79. data/lib/occiantlr/README.md +1 -1
  80. data/occi.gemspec +2 -1
  81. data/spec/cassettes/client_http_text_plain.yml +1066 -0
  82. data/spec/occi/api/client/client_amqp_spec.rb +148 -0
  83. data/spec/occi/api/client/client_http_0.5_spec.rb +292 -0
  84. data/spec/occi/api/client/client_http_spec.rb +259 -0
  85. data/spec/occi/api/dsl_spec.rb +0 -0
  86. data/spec/occi/collection_spec.rb +23 -10
  87. data/spec/occi/core/categories_spec.rb +30 -0
  88. data/spec/occi/core/category_spec.rb +41 -0
  89. data/spec/occi/core/entity_spec.rb +52 -0
  90. data/spec/occi/core/resource_spec.rb +21 -0
  91. data/spec/occi/infrastructure/compute_spec.rb +32 -0
  92. data/spec/occi/log_spec.rb +10 -10
  93. data/spec/occi/model_spec.rb +24 -24
  94. data/spec/occi/parser_spec.rb +89 -39
  95. data/spec/occi/test.json +22 -58
  96. data/spec/occiantlr/parser_spec.rb +5 -7
  97. data/spec/spec_helper.rb +13 -3
  98. metadata +116 -19
  99. data/etc/model/infrastructure/compute.json +0 -108
  100. data/etc/model/infrastructure/ipnetwork.json +0 -40
  101. data/etc/model/infrastructure/ipnetworkinterface.json +0 -40
  102. data/etc/model/infrastructure/network.json +0 -55
  103. data/etc/model/infrastructure/networkinterface.json +0 -38
  104. data/etc/model/infrastructure/os_template.json +0 -9
  105. data/etc/model/infrastructure/resource_template.json +0 -9
  106. data/etc/model/infrastructure/storage.json +0 -72
  107. data/etc/model/infrastructure/storagelink.json +0 -38
  108. data/lib/occi/api/client.rb +0 -596
  109. data/lib/occi/client/occiopts.rb +0 -146
  110. data/spec/occi/client_spec.rb +0 -12
@@ -1,2 +1,2 @@
1
- occi-antlr-ruby
1
+ Occi-antlr-ruby
2
2
  ===============
data/occi.gemspec CHANGED
@@ -6,7 +6,7 @@ require 'occi/version'
6
6
 
7
7
  Gem::Specification.new do |gem|
8
8
  gem.name = "occi"
9
- gem.version = OCCI::VERSION
9
+ gem.version = Occi::VERSION
10
10
  gem.authors = ["Florian Feldhaus","Piotr Kasprzak"]
11
11
  gem.email = ["florian.feldhaus@gwdg.de", "piotr.kasprzak@gwdg.de"]
12
12
  gem.description = %q{OCCI is a collection of classes to simplify the implementation of the Open Cloud Computing API in Ruby}
@@ -27,6 +27,7 @@ Gem::Specification.new do |gem|
27
27
  gem.add_dependency 'httparty'
28
28
  gem.add_dependency 'highline'
29
29
  gem.add_dependency 'i18n'
30
+ gem.add_dependency 'amqp'
30
31
 
31
32
  gem.required_ruby_version = ">= 1.8.7"
32
33
  end
@@ -0,0 +1,1066 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: head
5
+ uri: https://localhost:3300/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - text/plain,text/occi;q=0.2
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ Date:
18
+ - Mon, 12 Nov 2012 17:16:26 GMT
19
+ Server:
20
+ - Apache/2.2.20 (Ubuntu)
21
+ X-Powered-By:
22
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
23
+ X-Frame-Options:
24
+ - sameorigin
25
+ X-Xss-Protection:
26
+ - 1; mode=block
27
+ Accept:
28
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
29
+ Set-Cookie:
30
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFZTlhYjhkYzc3YzdlMDg5NDE1ODQ5%0AOTM2MzhjODM2ZjdmODJkYTYxNjA1ODVjNGJlOTc5MTg1Yzk4NjMwZjMxNUki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--87bb13c73d0d8239daffd33c85501e34fc79397e;
31
+ path=/; HttpOnly
32
+ Content-Length:
33
+ - '983'
34
+ Status:
35
+ - '200'
36
+ Vary:
37
+ - Accept-Encoding
38
+ Content-Type:
39
+ - text/plain;charset=utf-8
40
+ body:
41
+ encoding: US-ASCII
42
+ string: ''
43
+ http_version:
44
+ recorded_at: Mon, 12 Nov 2012 17:16:32 GMT
45
+ - request:
46
+ method: get
47
+ uri: https://localhost:3300/-/
48
+ body:
49
+ encoding: US-ASCII
50
+ string: ''
51
+ headers:
52
+ Accept:
53
+ - text/plain,text/occi
54
+ response:
55
+ status:
56
+ code: 200
57
+ message: OK
58
+ headers:
59
+ Date:
60
+ - Mon, 12 Nov 2012 17:16:32 GMT
61
+ Server:
62
+ - Apache/2.2.20 (Ubuntu)
63
+ X-Powered-By:
64
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
65
+ X-Frame-Options:
66
+ - sameorigin
67
+ X-Xss-Protection:
68
+ - 1; mode=block
69
+ Accept:
70
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
71
+ Set-Cookie:
72
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFYjhkNTgxZWFjYzExMzQzNDc4NDc1%0AMTgwZjJkMTdkMGZkN2U1YzI3ODU4YWI3ZDFlZjE1ZmVhM2I0YTgyYjM0N0ki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--49e71e22cc92cb4cb7597096861144b1ea4c7f6e;
73
+ path=/; HttpOnly
74
+ Content-Length:
75
+ - '10310'
76
+ Status:
77
+ - '200'
78
+ Vary:
79
+ - Accept-Encoding
80
+ Content-Type:
81
+ - text/plain;charset=utf-8
82
+ body:
83
+ encoding: US-ASCII
84
+ string: ! 'Category: entity;scheme="http://schemas.ogf.org/occi/core#";class="kind";title="Entity";location="/entity/";attributes="occi.core.id
85
+ occi.core.title"
86
+
87
+ Category: resource;scheme="http://schemas.ogf.org/occi/core#";class="kind";title="Resource";rel="http://schemas.ogf.org/occi/core#entity";location="/resource/";attributes="occi.core.summary"
88
+
89
+ Category: link;scheme="http://schemas.ogf.org/occi/core#";class="kind";title="Link";rel="http://schemas.ogf.org/occi/core#entity";location="/link/";attributes="occi.core.target
90
+ occi.core.source"
91
+
92
+ Category: compute;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Compute
93
+ Resource";rel="http://schemas.ogf.org/occi/core#resource";location="/compute/";attributes="occi.compute.architecture
94
+ occi.compute.cores occi.compute.hostname occi.compute.speed occi.compute.memory
95
+ occi.compute.state org.opennebula.compute.cpu org.opennebula.compute.kernel
96
+ org.opennebula.compute.initrd org.opennebula.compute.root org.opennebula.compute.kernel_cmd
97
+ org.opennebula.compute.bootloader org.opennebula.compute.boot";actions="http://schemas.ogf.org/occi/infrastructure/compute/action#start
98
+ http://schemas.ogf.org/occi/infrastructure/compute/action#stop http://schemas.ogf.org/occi/infrastructure/compute/action#restart
99
+ http://schemas.ogf.org/occi/infrastructure/compute/action#suspend"
100
+
101
+ Category: storagelink;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Storage
102
+ Link";rel="http://schemas.ogf.org/occi/core#link";location="/storagelink/";attributes="occi.storagelink.deviceid
103
+ occi.storagelink.mountpoint occi.storagelink.state org.opennebula.storagelink.bus
104
+ org.opennebula.storagelink.driver"
105
+
106
+ Category: network;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Network
107
+ Resource";rel="http://schemas.ogf.org/occi/core#resource";location="/network/";attributes="occi.network.vlan
108
+ occi.network.label occi.network.state org.opennebula.network.id org.opennebula.network.bridge
109
+ org.opennebula.network.vlan org.opennebula.network.phydev org.opennebula.network.ip_start
110
+ org.opennebula.network.ip_end";actions="http://schemas.ogf.org/occi/infrastructure/network/action#up
111
+ http://schemas.ogf.org/occi/infrastructure/network/action#down"
112
+
113
+ Category: storage;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Storage
114
+ Resource";rel="http://schemas.ogf.org/occi/core#resource";location="/storage/";attributes="occi.storage.size
115
+ occi.storage.state org.opennebula.storage.id org.opennebula.storage.type org.opennebula.storage.persistent
116
+ org.opennebula.storage.dev_prefix org.opennebula.storage.bus org.opennebula.storage.driver
117
+ org.opennebula.storage.fstype";actions="http://schemas.ogf.org/occi/infrastructure/storage/action#online
118
+ http://schemas.ogf.org/occi/infrastructure/storage/action#offline http://schemas.ogf.org/occi/infrastructure/storage/action#backup
119
+ http://schemas.ogf.org/occi/infrastructure/storage/action#snapshot http://schemas.ogf.org/occi/infrastructure/storage/action#resize"
120
+
121
+ Category: networkinterface;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Networkinterface";rel="http://schemas.ogf.org/occi/core#link";location="/networkinterface/";attributes="occi.networkinterface.interface
122
+ occi.networkinterface.mac occi.networkinterface.state occi.networkinterface.address
123
+ occi.networkinterface.gateway occi.networkinterface.allocation org.opennebula.networkinterface.bridge
124
+ org.opennebula.networkinterface.script org.opennebula.networkinterface.model
125
+ org.opennebula.networkinterface.white_ports_tcp org.opennebula.networkinterface.black_ports_tcp
126
+ org.opennebula.networkinterface.white_ports_udp org.opennebula.networkinterface.black_ports_udp
127
+ org.opennebula.networkinterface.icmp"
128
+
129
+ Category: console;scheme="http://schemas.ogf.org/occi/infrastructure/compute#";class="kind";title="Link
130
+ to the VM''s console";rel="http://schemas.ogf.org/occi/core#link";location="/console/"
131
+
132
+ Category: os_tpl;scheme="http://schemas.ogf.org/occi/infrastructure#";class="mixin";title="Operating
133
+ System Template";location="/mixins/os_tpl/"
134
+
135
+ Category: ipnetwork;scheme="http://schemas.ogf.org/occi/infrastructure/network#";class="mixin";title="IP
136
+ Network Mixin";location="/mixins/ipnetwork/";attributes="occi.network.address
137
+ occi.network.gateway occi.network.allocation occi.network.state"
138
+
139
+ Category: ipnetworkinterface;scheme="http://schemas.ogf.org/occi/infrastructure/networkinterface#";class="mixin";title="IP
140
+ Networkinterface Mixin";location="/mixins/ipnetworkinterface/";attributes="occi.networkinterface.address
141
+ occi.networkinterface.gateway occi.networkinterface.allocation occi.networkinterface.state"
142
+
143
+ Category: resource_tpl;scheme="http://schemas.ogf.org/occi/infrastructure#";class="mixin";title="Resource
144
+ Template";location="/mixins/resource_tpl/"
145
+
146
+ Category: compute;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
147
+ specific Compute attributes";location="/mixins/compute/";attributes="org.opennebula.compute.cpu
148
+ org.opennebula.compute.kernel org.opennebula.compute.initrd org.opennebula.compute.root
149
+ org.opennebula.compute.kernel_cmd org.opennebula.compute.bootloader org.opennebula.compute.boot"
150
+
151
+ Category: storagelink;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
152
+ specific Storagelink attributes";location="/mixins/storagelink/";attributes="org.opennebula.storagelink.bus
153
+ org.opennebula.storagelink.driver"
154
+
155
+ Category: network;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
156
+ specific Network attributes";location="/mixins/network/";attributes="org.opennebula.network.id
157
+ org.opennebula.network.bridge org.opennebula.network.vlan org.opennebula.network.phydev
158
+ org.opennebula.network.ip_start org.opennebula.network.ip_end"
159
+
160
+ Category: storage;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
161
+ specific Storage attributes";location="/mixins/storage/";attributes="org.opennebula.storage.id
162
+ org.opennebula.storage.type org.opennebula.storage.persistent org.opennebula.storage.dev_prefix
163
+ org.opennebula.storage.bus org.opennebula.storage.driver org.opennebula.storage.fstype"
164
+
165
+ Category: networkinterface;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
166
+ specific Networkinterface attributes";location="/mixins/networkinterface/";attributes="org.opennebula.networkinterface.bridge
167
+ org.opennebula.networkinterface.script org.opennebula.networkinterface.model
168
+ org.opennebula.networkinterface.white_ports_tcp org.opennebula.networkinterface.black_ports_tcp
169
+ org.opennebula.networkinterface.white_ports_udp org.opennebula.networkinterface.black_ports_udp
170
+ org.opennebula.networkinterface.icmp"
171
+
172
+ Category: large;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Large
173
+ Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/large/";attributes="occi.compute.architecture
174
+ occi.compute.cores occi.compute.speed occi.compute.memory"
175
+
176
+ Category: extra_large;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Extra
177
+ Large Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/extra_large/";attributes="occi.compute.architecture
178
+ occi.compute.cores occi.compute.speed occi.compute.memory"
179
+
180
+ Category: medium;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Medium
181
+ Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/medium/";attributes="occi.compute.architecture
182
+ occi.compute.cores occi.compute.speed occi.compute.memory"
183
+
184
+ Category: small;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Small
185
+ Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/small/";attributes="occi.compute.architecture
186
+ occi.compute.cores occi.compute.speed occi.compute.memory"
187
+
188
+ Category: monitoring;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="monitoring";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/monitoring/"
189
+
190
+ Category: debianvm;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="debianvm";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/debianvm/"
191
+
192
+ Category: egicf2012_demo;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="egicf2012-demo";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/egicf2012_demo/"
193
+
194
+ Category: oxfordcorpusserver;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="OxfordCorpusServer";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/oxfordcorpusserver/"
195
+
196
+ Category: start;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Start
197
+ Compute instance"
198
+
199
+ Category: stop;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Stop
200
+ Compute instance";attributes="method"
201
+
202
+ Category: restart;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Restart
203
+ Compute instance";attributes="method"
204
+
205
+ Category: suspend;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Suspend
206
+ Compute instance";attributes="method"
207
+
208
+ Category: up;scheme="http://schemas.ogf.org/occi/infrastructure/network/action#";class="action";title="Activate
209
+ network"
210
+
211
+ Category: down;scheme="http://schemas.ogf.org/occi/infrastructure/network/action#up";class="action";title="Activate
212
+ network"
213
+
214
+ Category: online;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Activate
215
+ Storage"
216
+
217
+ Category: offline;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Deactivate
218
+ Storage"
219
+
220
+ Category: backup;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Backup
221
+ Storage"
222
+
223
+ Category: snapshot;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Snapshot
224
+ Storage"
225
+
226
+ Category: resize;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Resize
227
+ Storage";attributes="size"
228
+
229
+ '
230
+ http_version:
231
+ recorded_at: Mon, 12 Nov 2012 17:16:37 GMT
232
+ - request:
233
+ method: get
234
+ uri: https://localhost:3300/compute/
235
+ body:
236
+ encoding: US-ASCII
237
+ string: ''
238
+ headers:
239
+ Accept:
240
+ - text/uri-list
241
+ response:
242
+ status:
243
+ code: 200
244
+ message: OK
245
+ headers:
246
+ Date:
247
+ - Mon, 12 Nov 2012 17:16:40 GMT
248
+ Server:
249
+ - Apache/2.2.20 (Ubuntu)
250
+ X-Powered-By:
251
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
252
+ X-Frame-Options:
253
+ - sameorigin
254
+ X-Xss-Protection:
255
+ - 1; mode=block
256
+ Accept:
257
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
258
+ Set-Cookie:
259
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFMjVlMjUyYjM4OGZjYzk3ZmFkYzI1%0ANTM1OGE4OWU3OTViZDVlYjdkNmJlYjY5NjhmM2JjMTAzMTlhNjEwNGM4NUki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--eb68242fefa7fa7a2aeeea09a15f0cfbe516815b;
260
+ path=/; HttpOnly
261
+ Content-Length:
262
+ - '78'
263
+ Status:
264
+ - '200'
265
+ Content-Type:
266
+ - text/uri-list;charset=utf-8
267
+ body:
268
+ encoding: US-ASCII
269
+ string: https://localhost:3300/compute/6c5f673c-e2e6-4fad-856c-d650587f0579
270
+ http_version:
271
+ recorded_at: Mon, 12 Nov 2012 17:16:46 GMT
272
+ - request:
273
+ method: get
274
+ uri: https://localhost:3300/network/
275
+ body:
276
+ encoding: US-ASCII
277
+ string: ''
278
+ headers:
279
+ Accept:
280
+ - text/uri-list
281
+ response:
282
+ status:
283
+ code: 200
284
+ message: OK
285
+ headers:
286
+ Date:
287
+ - Mon, 12 Nov 2012 17:16:46 GMT
288
+ Server:
289
+ - Apache/2.2.20 (Ubuntu)
290
+ X-Powered-By:
291
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
292
+ X-Frame-Options:
293
+ - sameorigin
294
+ X-Xss-Protection:
295
+ - 1; mode=block
296
+ Accept:
297
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
298
+ Set-Cookie:
299
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFOGUzMTE2ZDYxMTcwYzc2YTUyMzFi%0AMTNmZjU3ODA0NTQzOGY1MWE5MTliYTUzZGE1ZjA1ZTE2NTUxYWJkMTdkZUki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--cdb3e2ddc6a177a642041f2b9eef9b5a93c5d673;
300
+ path=/; HttpOnly
301
+ Content-Length:
302
+ - '236'
303
+ Status:
304
+ - '200'
305
+ Content-Type:
306
+ - text/uri-list;charset=utf-8
307
+ body:
308
+ encoding: US-ASCII
309
+ string: ! 'https://localhost:3300/network/e4bd81c4-adda-5626-840d-39bb7959db97
310
+
311
+ https://localhost:3300/network/d71df087-9a55-5228-822b-1f1a57107851
312
+
313
+ https://localhost:3300/network/1b30d837-7262-5936-8320-9694d3613ff6'
314
+ http_version:
315
+ recorded_at: Mon, 12 Nov 2012 17:16:52 GMT
316
+ - request:
317
+ method: get
318
+ uri: https://localhost:3300/storage/
319
+ body:
320
+ encoding: US-ASCII
321
+ string: ''
322
+ headers:
323
+ Accept:
324
+ - text/uri-list
325
+ response:
326
+ status:
327
+ code: 200
328
+ message: OK
329
+ headers:
330
+ Date:
331
+ - Mon, 12 Nov 2012 17:16:52 GMT
332
+ Server:
333
+ - Apache/2.2.20 (Ubuntu)
334
+ X-Powered-By:
335
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
336
+ X-Frame-Options:
337
+ - sameorigin
338
+ X-Xss-Protection:
339
+ - 1; mode=block
340
+ Accept:
341
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
342
+ Set-Cookie:
343
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFMmZmMmZlMTEyNDdmOThiZGIxYWNm%0ANGQzNmViZDI1Y2UzZWFmNzFjOTlkMmM3ZmMxOWNkYTZlMTc0MjkwMmM2NEki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--b67d8bf88213cc5e1463f426f4086d5fcba2a11e;
344
+ path=/; HttpOnly
345
+ Content-Length:
346
+ - '315'
347
+ Status:
348
+ - '200'
349
+ Content-Type:
350
+ - text/uri-list;charset=utf-8
351
+ body:
352
+ encoding: US-ASCII
353
+ string: ! 'https://localhost:3300/storage/e60aa2b8-0c86-5973-b93e-30c5c46d6eac
354
+
355
+ https://localhost:3300/storage/e7db6669-d819-5e20-a7ee-90be46591490
356
+
357
+ https://localhost:3300/storage/de48d92c-6288-5a81-bc12-d3f9fedc1ec8
358
+
359
+ https://localhost:3300/storage/a39a1d08-bff8-5a62-ba68-a1cd76bb4511'
360
+ http_version:
361
+ recorded_at: Mon, 12 Nov 2012 17:16:58 GMT
362
+ - request:
363
+ method: get
364
+ uri: https://localhost:3300/compute/6c5f673c-e2e6-4fad-856c-d650587f0579
365
+ body:
366
+ encoding: US-ASCII
367
+ string: ''
368
+ headers:
369
+ Accept:
370
+ - text/plain,text/occi
371
+ response:
372
+ status:
373
+ code: 200
374
+ message: OK
375
+ headers:
376
+ Date:
377
+ - Mon, 12 Nov 2012 17:16:59 GMT
378
+ Server:
379
+ - Apache/2.2.20 (Ubuntu)
380
+ X-Powered-By:
381
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
382
+ X-Frame-Options:
383
+ - sameorigin
384
+ X-Xss-Protection:
385
+ - 1; mode=block
386
+ Accept:
387
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
388
+ Set-Cookie:
389
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFOGJmODMxYTY4ZTc5M2M2MmYwNTVi%0AMjlmMGJkMDBlOTJlMTExNTdhNWEzMWJhN2U1YjFmZTc3ZTM1MDI2Mzc2ZUki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--d8c11c5e4d2de5a3dd0d926b2b49bd3fb473c52a;
390
+ path=/; HttpOnly
391
+ Content-Length:
392
+ - '1744'
393
+ Status:
394
+ - '200'
395
+ Vary:
396
+ - Accept-Encoding
397
+ Content-Type:
398
+ - text/plain;charset=utf-8
399
+ body:
400
+ encoding: US-ASCII
401
+ string: ! 'Category: compute;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
402
+
403
+ Category: compute;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
404
+
405
+ Category: monitoring;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin"
406
+
407
+ Category: small;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin"
408
+
409
+ X-OCCI-Attribute: occi.core.id="6c5f673c-e2e6-4fad-856c-d650587f0579"
410
+
411
+ X-OCCI-Attribute: occi.core.title="MyRocciCompute"
412
+
413
+ X-OCCI-Attribute: occi.compute.cores=1
414
+
415
+ X-OCCI-Attribute: occi.compute.memory=0.256
416
+
417
+ X-OCCI-Attribute: occi.compute.architecture="x86"
418
+
419
+ X-OCCI-Attribute: occi.compute.speed=1
420
+
421
+ X-OCCI-Attribute: occi.compute.state="active"
422
+
423
+ X-OCCI-Attribute: org.opennebula.compute.cpu=1.0
424
+
425
+ Link: </storage/e60aa2b8-0c86-5973-b93e-30c5c46d6eac>;rel="http://schemas.ogf.org/occi/infrastructure#storage";self="/storagelink/b2f7f1de-c60c-5b08-879c-81f52429c4ef";category="http://schemas.ogf.org/occi/infrastructure#storagelink";occi.core.id="b2f7f1de-c60c-5b08-879c-81f52429c4ef"
426
+ occi.core.title="monitoring" occi.storagelink.deviceid="xvda" occi.storagelink.state="inactive"
427
+ org.opennebula.storagelink.bus="ide" org.opennebula.storagelink.driver="tap2:tapdisk:aio:"
428
+
429
+ Link: </network/e4bd81c4-adda-5626-840d-39bb7959db97>;rel="http://schemas.ogf.org/occi/infrastructure#network";self="/networkinterface/e75ab249-9325-511c-82b8-a7e4430381e3";category="http://schemas.ogf.org/occi/infrastructure#networkinterface";occi.core.id="e75ab249-9325-511c-82b8-a7e4430381e3"
430
+ occi.core.title="monitoring" occi.networkinterface.address="192.168.254.4"
431
+ occi.networkinterface.mac="02:00:c0:a8:fe:04" occi.networkinterface.state="inactive"
432
+ org.opennebula.networkinterface.bridge="xenbr0"
433
+
434
+ '
435
+ http_version:
436
+ recorded_at: Mon, 12 Nov 2012 17:17:05 GMT
437
+ - request:
438
+ method: get
439
+ uri: https://localhost:3300/network/e4bd81c4-adda-5626-840d-39bb7959db97
440
+ body:
441
+ encoding: US-ASCII
442
+ string: ''
443
+ headers:
444
+ Accept:
445
+ - text/plain,text/occi
446
+ response:
447
+ status:
448
+ code: 200
449
+ message: OK
450
+ headers:
451
+ Date:
452
+ - Mon, 12 Nov 2012 17:17:06 GMT
453
+ Server:
454
+ - Apache/2.2.20 (Ubuntu)
455
+ X-Powered-By:
456
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
457
+ X-Frame-Options:
458
+ - sameorigin
459
+ X-Xss-Protection:
460
+ - 1; mode=block
461
+ Accept:
462
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
463
+ Set-Cookie:
464
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFMmUwZjM2M2VlNzU2MGFlY2Y0ZWE2%0AZmJlMTFhZTBmMjRhZjUzYjBjMTc4ZDYyZDFiYjEwNjYwYzI0OGJkYzE1Ykki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--eeb7b8329b91623c58c20494a3f320887207d919;
465
+ path=/; HttpOnly
466
+ Content-Length:
467
+ - '681'
468
+ Status:
469
+ - '200'
470
+ Vary:
471
+ - Accept-Encoding
472
+ Content-Type:
473
+ - text/plain;charset=utf-8
474
+ body:
475
+ encoding: US-ASCII
476
+ string: ! 'Category: network;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
477
+
478
+ Category: network;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
479
+
480
+ Category: ipnetwork;scheme="http://schemas.ogf.org/occi/infrastructure#";class="mixin"
481
+
482
+ X-OCCI-Attribute: occi.core.id="e4bd81c4-adda-5626-840d-39bb7959db97"
483
+
484
+ X-OCCI-Attribute: occi.core.title="monitoring"
485
+
486
+ X-OCCI-Attribute: occi.network.address="192.168.254.0"
487
+
488
+ X-OCCI-Attribute: occi.network.allocation="dynamic"
489
+
490
+ X-OCCI-Attribute: occi.network.state="active"
491
+
492
+ X-OCCI-Attribute: org.opennebula.network.id="6"
493
+
494
+ X-OCCI-Attribute: org.opennebula.network.bridge="xenbr0"
495
+
496
+ X-OCCI-Attribute: org.opennebula.network.vlan="NO"
497
+
498
+ '
499
+ http_version:
500
+ recorded_at: Mon, 12 Nov 2012 17:17:11 GMT
501
+ - request:
502
+ method: get
503
+ uri: https://localhost:3300/network/d71df087-9a55-5228-822b-1f1a57107851
504
+ body:
505
+ encoding: US-ASCII
506
+ string: ''
507
+ headers:
508
+ Accept:
509
+ - text/plain,text/occi
510
+ response:
511
+ status:
512
+ code: 200
513
+ message: OK
514
+ headers:
515
+ Date:
516
+ - Mon, 12 Nov 2012 17:17:11 GMT
517
+ Server:
518
+ - Apache/2.2.20 (Ubuntu)
519
+ X-Powered-By:
520
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
521
+ X-Frame-Options:
522
+ - sameorigin
523
+ X-Xss-Protection:
524
+ - 1; mode=block
525
+ Accept:
526
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
527
+ Set-Cookie:
528
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFYzEyYzZkNzlkMjBjMWQzM2RlYTYx%0AMzg0NWQxNDc1MGI1NzU5ZTViMDI1YjJlYWRhOTA2YWIyNDUyYWRmMGNkNkki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--7b48ebf371a0f07b6143cb389a03e5cab11866b8;
529
+ path=/; HttpOnly
530
+ Content-Length:
531
+ - '621'
532
+ Status:
533
+ - '200'
534
+ Vary:
535
+ - Accept-Encoding
536
+ Content-Type:
537
+ - text/plain;charset=utf-8
538
+ body:
539
+ encoding: US-ASCII
540
+ string: ! 'Category: network;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
541
+
542
+ Category: network;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
543
+
544
+ Category: ipnetwork;scheme="http://schemas.ogf.org/occi/infrastructure#";class="mixin"
545
+
546
+ X-OCCI-Attribute: occi.core.id="d71df087-9a55-5228-822b-1f1a57107851"
547
+
548
+ X-OCCI-Attribute: occi.core.title="public"
549
+
550
+ X-OCCI-Attribute: occi.network.allocation="static"
551
+
552
+ X-OCCI-Attribute: occi.network.state="active"
553
+
554
+ X-OCCI-Attribute: org.opennebula.network.id="4"
555
+
556
+ X-OCCI-Attribute: org.opennebula.network.bridge="xenbr0"
557
+
558
+ X-OCCI-Attribute: org.opennebula.network.vlan="NO"
559
+
560
+ '
561
+ http_version:
562
+ recorded_at: Mon, 12 Nov 2012 17:17:16 GMT
563
+ - request:
564
+ method: get
565
+ uri: https://localhost:3300/network/1b30d837-7262-5936-8320-9694d3613ff6
566
+ body:
567
+ encoding: US-ASCII
568
+ string: ''
569
+ headers:
570
+ Accept:
571
+ - text/plain,text/occi
572
+ response:
573
+ status:
574
+ code: 200
575
+ message: OK
576
+ headers:
577
+ Date:
578
+ - Mon, 12 Nov 2012 17:17:17 GMT
579
+ Server:
580
+ - Apache/2.2.20 (Ubuntu)
581
+ X-Powered-By:
582
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
583
+ X-Frame-Options:
584
+ - sameorigin
585
+ X-Xss-Protection:
586
+ - 1; mode=block
587
+ Accept:
588
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
589
+ Set-Cookie:
590
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFYWM0MjllNmVkMDVmYzI4ZjI4Y2E3%0ANDA5ZDg4ZWUxMjEyMzNlYmJiMTRiZDRlZTg4ZjViMDNhMGViNjE2MjcwYUki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--e2d1ecf91e2a283f29ed5feeb2f02688e380ec18;
591
+ path=/; HttpOnly
592
+ Content-Length:
593
+ - '673'
594
+ Status:
595
+ - '200'
596
+ Vary:
597
+ - Accept-Encoding
598
+ Content-Type:
599
+ - text/plain;charset=utf-8
600
+ body:
601
+ encoding: US-ASCII
602
+ string: ! 'Category: network;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
603
+
604
+ Category: network;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
605
+
606
+ Category: ipnetwork;scheme="http://schemas.ogf.org/occi/infrastructure#";class="mixin"
607
+
608
+ X-OCCI-Attribute: occi.core.id="1b30d837-7262-5936-8320-9694d3613ff6"
609
+
610
+ X-OCCI-Attribute: occi.core.title="private"
611
+
612
+ X-OCCI-Attribute: occi.network.address="10.4.1.0"
613
+
614
+ X-OCCI-Attribute: occi.network.allocation="dynamic"
615
+
616
+ X-OCCI-Attribute: occi.network.state="active"
617
+
618
+ X-OCCI-Attribute: org.opennebula.network.id="8"
619
+
620
+ X-OCCI-Attribute: org.opennebula.network.bridge="xenbr0"
621
+
622
+ X-OCCI-Attribute: org.opennebula.network.vlan="NO"
623
+
624
+ '
625
+ http_version:
626
+ recorded_at: Mon, 12 Nov 2012 17:17:22 GMT
627
+ - request:
628
+ method: get
629
+ uri: https://localhost:3300/storage/e60aa2b8-0c86-5973-b93e-30c5c46d6eac
630
+ body:
631
+ encoding: US-ASCII
632
+ string: ''
633
+ headers:
634
+ Accept:
635
+ - text/plain,text/occi
636
+ response:
637
+ status:
638
+ code: 200
639
+ message: OK
640
+ headers:
641
+ Date:
642
+ - Mon, 12 Nov 2012 17:17:23 GMT
643
+ Server:
644
+ - Apache/2.2.20 (Ubuntu)
645
+ X-Powered-By:
646
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
647
+ X-Frame-Options:
648
+ - sameorigin
649
+ X-Xss-Protection:
650
+ - 1; mode=block
651
+ Accept:
652
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
653
+ Set-Cookie:
654
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFMjg1NTc4OGM2YTQyNzRkNTQzM2Iz%0AZTRiODVmY2UyNDliMzFhNmZlNmJhNWY1ZGZlNzU0NDM1YjQyNTRmZGE1Nkki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--8a04cb89d139dbf7df0edc38fe9e0c4e9bf53472;
655
+ path=/; HttpOnly
656
+ Content-Length:
657
+ - '652'
658
+ Status:
659
+ - '200'
660
+ Vary:
661
+ - Accept-Encoding
662
+ Content-Type:
663
+ - text/plain;charset=utf-8
664
+ body:
665
+ encoding: US-ASCII
666
+ string: ! 'Category: storage;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
667
+
668
+ Category: storage;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
669
+
670
+ X-OCCI-Attribute: occi.core.id="e60aa2b8-0c86-5973-b93e-30c5c46d6eac"
671
+
672
+ X-OCCI-Attribute: occi.core.title="monitoring"
673
+
674
+ X-OCCI-Attribute: occi.core.summary="Monitoring image"
675
+
676
+ X-OCCI-Attribute: occi.storage.state="online"
677
+
678
+ X-OCCI-Attribute: org.opennebula.storage.id="30"
679
+
680
+ X-OCCI-Attribute: org.opennebula.storage.type="OS"
681
+
682
+ X-OCCI-Attribute: org.opennebula.storage.dev_prefix="xvd"
683
+
684
+ X-OCCI-Attribute: org.opennebula.storage.bus="ide"
685
+
686
+ X-OCCI-Attribute: org.opennebula.storage.persistent="NO"
687
+
688
+ '
689
+ http_version:
690
+ recorded_at: Mon, 12 Nov 2012 17:17:28 GMT
691
+ - request:
692
+ method: get
693
+ uri: https://localhost:3300/storage/e7db6669-d819-5e20-a7ee-90be46591490
694
+ body:
695
+ encoding: US-ASCII
696
+ string: ''
697
+ headers:
698
+ Accept:
699
+ - text/plain,text/occi
700
+ response:
701
+ status:
702
+ code: 200
703
+ message: OK
704
+ headers:
705
+ Date:
706
+ - Mon, 12 Nov 2012 17:17:28 GMT
707
+ Server:
708
+ - Apache/2.2.20 (Ubuntu)
709
+ X-Powered-By:
710
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
711
+ X-Frame-Options:
712
+ - sameorigin
713
+ X-Xss-Protection:
714
+ - 1; mode=block
715
+ Accept:
716
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
717
+ Set-Cookie:
718
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFNzU3MGRkMzQ3ODAyODY0ODZjNWEy%0AMzEzZjQ0YjNiOWRkOTc3YWZkNTEwNTY2ZWU4ZGQ2ZmY0NDFlZTIxYjc5Zkki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--e1890dfc73dbc0de4568082e3b6d918bb776b2da;
719
+ path=/; HttpOnly
720
+ Content-Length:
721
+ - '653'
722
+ Status:
723
+ - '200'
724
+ Vary:
725
+ - Accept-Encoding
726
+ Content-Type:
727
+ - text/plain;charset=utf-8
728
+ body:
729
+ encoding: US-ASCII
730
+ string: ! 'Category: storage;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
731
+
732
+ Category: storage;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
733
+
734
+ X-OCCI-Attribute: occi.core.id="e7db6669-d819-5e20-a7ee-90be46591490"
735
+
736
+ X-OCCI-Attribute: occi.core.title="debian6"
737
+
738
+ X-OCCI-Attribute: occi.core.summary="Debian6 sample image"
739
+
740
+ X-OCCI-Attribute: occi.storage.state="online"
741
+
742
+ X-OCCI-Attribute: org.opennebula.storage.id="31"
743
+
744
+ X-OCCI-Attribute: org.opennebula.storage.type="OS"
745
+
746
+ X-OCCI-Attribute: org.opennebula.storage.dev_prefix="xvd"
747
+
748
+ X-OCCI-Attribute: org.opennebula.storage.bus="ide"
749
+
750
+ X-OCCI-Attribute: org.opennebula.storage.persistent="NO"
751
+
752
+ '
753
+ http_version:
754
+ recorded_at: Mon, 12 Nov 2012 17:17:34 GMT
755
+ - request:
756
+ method: get
757
+ uri: https://localhost:3300/storage/de48d92c-6288-5a81-bc12-d3f9fedc1ec8
758
+ body:
759
+ encoding: US-ASCII
760
+ string: ''
761
+ headers:
762
+ Accept:
763
+ - text/plain,text/occi
764
+ response:
765
+ status:
766
+ code: 200
767
+ message: OK
768
+ headers:
769
+ Date:
770
+ - Mon, 12 Nov 2012 17:17:34 GMT
771
+ Server:
772
+ - Apache/2.2.20 (Ubuntu)
773
+ X-Powered-By:
774
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
775
+ X-Frame-Options:
776
+ - sameorigin
777
+ X-Xss-Protection:
778
+ - 1; mode=block
779
+ Accept:
780
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
781
+ Set-Cookie:
782
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFYjIxZTVmZDBhMTJjMDk3YTgyYWZl%0AZGIwYzY5NzM3NTJkZDY1NjZmMDE0OWYyOTlmZTQ3ZmRhZjg2ZDRhYjk1MUki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--d712d328dd31cacda99e6f6f244e7901131062a0;
783
+ path=/; HttpOnly
784
+ Content-Length:
785
+ - '550'
786
+ Status:
787
+ - '200'
788
+ Vary:
789
+ - Accept-Encoding
790
+ Content-Type:
791
+ - text/plain;charset=utf-8
792
+ body:
793
+ encoding: US-ASCII
794
+ string: ! 'Category: storage;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
795
+
796
+ Category: storage;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
797
+
798
+ X-OCCI-Attribute: occi.core.id="de48d92c-6288-5a81-bc12-d3f9fedc1ec8"
799
+
800
+ X-OCCI-Attribute: occi.core.title="egicf2012-demo"
801
+
802
+ X-OCCI-Attribute: occi.storage.state="online"
803
+
804
+ X-OCCI-Attribute: org.opennebula.storage.id="32"
805
+
806
+ X-OCCI-Attribute: org.opennebula.storage.dev_prefix="xvd"
807
+
808
+ X-OCCI-Attribute: org.opennebula.storage.bus="ide"
809
+
810
+ X-OCCI-Attribute: org.opennebula.storage.persistent="NO"
811
+
812
+ '
813
+ http_version:
814
+ recorded_at: Mon, 12 Nov 2012 17:17:39 GMT
815
+ - request:
816
+ method: get
817
+ uri: https://localhost:3300/storage/a39a1d08-bff8-5a62-ba68-a1cd76bb4511
818
+ body:
819
+ encoding: US-ASCII
820
+ string: ''
821
+ headers:
822
+ Accept:
823
+ - text/plain,text/occi
824
+ response:
825
+ status:
826
+ code: 200
827
+ message: OK
828
+ headers:
829
+ Date:
830
+ - Mon, 12 Nov 2012 17:17:40 GMT
831
+ Server:
832
+ - Apache/2.2.20 (Ubuntu)
833
+ X-Powered-By:
834
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
835
+ X-Frame-Options:
836
+ - sameorigin
837
+ X-Xss-Protection:
838
+ - 1; mode=block
839
+ Accept:
840
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
841
+ Set-Cookie:
842
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFMjNmNGZlMWFjOWQzN2QxOWU1NjQz%0AMThmMWUxYzVmY2NlZWQ1OTJjM2RkYmYyNzUwYWNmODQyNDU2MzVmMmQxMEki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--f37e46f1e1d9630d782337517a711990ba132e93;
843
+ path=/; HttpOnly
844
+ Content-Length:
845
+ - '671'
846
+ Status:
847
+ - '200'
848
+ Vary:
849
+ - Accept-Encoding
850
+ Content-Type:
851
+ - text/plain;charset=utf-8
852
+ body:
853
+ encoding: US-ASCII
854
+ string: ! 'Category: storage;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind"
855
+
856
+ Category: storage;scheme="http://opennebula.org/occi/infrastructure#";class="mixin"
857
+
858
+ X-OCCI-Attribute: occi.core.id="a39a1d08-bff8-5a62-ba68-a1cd76bb4511"
859
+
860
+ X-OCCI-Attribute: occi.core.title="corpus-server"
861
+
862
+ X-OCCI-Attribute: occi.core.summary="Image converted from vmdk format"
863
+
864
+ X-OCCI-Attribute: occi.storage.state="online"
865
+
866
+ X-OCCI-Attribute: org.opennebula.storage.id="33"
867
+
868
+ X-OCCI-Attribute: org.opennebula.storage.type="OS"
869
+
870
+ X-OCCI-Attribute: org.opennebula.storage.dev_prefix="xvd"
871
+
872
+ X-OCCI-Attribute: org.opennebula.storage.bus="ide"
873
+
874
+ X-OCCI-Attribute: org.opennebula.storage.persistent="NO"
875
+
876
+ '
877
+ http_version:
878
+ recorded_at: Mon, 12 Nov 2012 17:17:45 GMT
879
+ - request:
880
+ method: get
881
+ uri: https://localhost:3300/-/
882
+ body:
883
+ encoding: US-ASCII
884
+ string: ''
885
+ headers:
886
+ Accept:
887
+ - text/plain,text/occi
888
+ response:
889
+ status:
890
+ code: 200
891
+ message: OK
892
+ headers:
893
+ Date:
894
+ - Mon, 12 Nov 2012 17:17:52 GMT
895
+ Server:
896
+ - Apache/2.2.20 (Ubuntu)
897
+ X-Powered-By:
898
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.13
899
+ X-Frame-Options:
900
+ - sameorigin
901
+ X-Xss-Protection:
902
+ - 1; mode=block
903
+ Accept:
904
+ - application/occi+json,application/json,text/plain,text/uri-list,application/xml,text/xml,application/occi+xml,text/occi
905
+ Set-Cookie:
906
+ - rack.session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiJFMjlmYmNiZWJmZmVmY2Q5ZGM5MWZi%0AOWUwNjc5OTljNDYzZWQ3ODI2Mzk1MmQ4MzBhMmY2MzkyMmI0ZDhjZGE3YUki%0ADXRyYWNraW5nBjsARnsISSIUSFRUUF9VU0VSX0FHRU5UBjsARiItZGEzOWEz%0AZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUND%0ARVBUX0VOQ09ESU5HBjsARiItZGEzOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2%0AMDE4OTBhZmQ4MDcwOUkiGUhUVFBfQUNDRVBUX0xBTkdVQUdFBjsARiItZGEz%0AOWEzZWU1ZTZiNGIwZDMyNTViZmVmOTU2MDE4OTBhZmQ4MDcwOQ%3D%3D%0A--1271c71b9f0b129f8f24f9aa7504de21248cb7c7;
907
+ path=/; HttpOnly
908
+ Content-Length:
909
+ - '10310'
910
+ Status:
911
+ - '200'
912
+ Vary:
913
+ - Accept-Encoding
914
+ Content-Type:
915
+ - text/plain;charset=utf-8
916
+ body:
917
+ encoding: US-ASCII
918
+ string: ! 'Category: entity;scheme="http://schemas.ogf.org/occi/core#";class="kind";title="Entity";location="/entity/";attributes="occi.core.id
919
+ occi.core.title"
920
+
921
+ Category: resource;scheme="http://schemas.ogf.org/occi/core#";class="kind";title="Resource";rel="http://schemas.ogf.org/occi/core#entity";location="/resource/";attributes="occi.core.summary"
922
+
923
+ Category: link;scheme="http://schemas.ogf.org/occi/core#";class="kind";title="Link";rel="http://schemas.ogf.org/occi/core#entity";location="/link/";attributes="occi.core.target
924
+ occi.core.source"
925
+
926
+ Category: compute;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Compute
927
+ Resource";rel="http://schemas.ogf.org/occi/core#resource";location="/compute/";attributes="occi.compute.architecture
928
+ occi.compute.cores occi.compute.hostname occi.compute.speed occi.compute.memory
929
+ occi.compute.state org.opennebula.compute.cpu org.opennebula.compute.kernel
930
+ org.opennebula.compute.initrd org.opennebula.compute.root org.opennebula.compute.kernel_cmd
931
+ org.opennebula.compute.bootloader org.opennebula.compute.boot";actions="http://schemas.ogf.org/occi/infrastructure/compute/action#start
932
+ http://schemas.ogf.org/occi/infrastructure/compute/action#stop http://schemas.ogf.org/occi/infrastructure/compute/action#restart
933
+ http://schemas.ogf.org/occi/infrastructure/compute/action#suspend"
934
+
935
+ Category: storagelink;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Storage
936
+ Link";rel="http://schemas.ogf.org/occi/core#link";location="/storagelink/";attributes="occi.storagelink.deviceid
937
+ occi.storagelink.mountpoint occi.storagelink.state org.opennebula.storagelink.bus
938
+ org.opennebula.storagelink.driver"
939
+
940
+ Category: network;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Network
941
+ Resource";rel="http://schemas.ogf.org/occi/core#resource";location="/network/";attributes="occi.network.vlan
942
+ occi.network.label occi.network.state org.opennebula.network.id org.opennebula.network.bridge
943
+ org.opennebula.network.vlan org.opennebula.network.phydev org.opennebula.network.ip_start
944
+ org.opennebula.network.ip_end";actions="http://schemas.ogf.org/occi/infrastructure/network/action#up
945
+ http://schemas.ogf.org/occi/infrastructure/network/action#down"
946
+
947
+ Category: storage;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Storage
948
+ Resource";rel="http://schemas.ogf.org/occi/core#resource";location="/storage/";attributes="occi.storage.size
949
+ occi.storage.state org.opennebula.storage.id org.opennebula.storage.type org.opennebula.storage.persistent
950
+ org.opennebula.storage.dev_prefix org.opennebula.storage.bus org.opennebula.storage.driver
951
+ org.opennebula.storage.fstype";actions="http://schemas.ogf.org/occi/infrastructure/storage/action#online
952
+ http://schemas.ogf.org/occi/infrastructure/storage/action#offline http://schemas.ogf.org/occi/infrastructure/storage/action#backup
953
+ http://schemas.ogf.org/occi/infrastructure/storage/action#snapshot http://schemas.ogf.org/occi/infrastructure/storage/action#resize"
954
+
955
+ Category: networkinterface;scheme="http://schemas.ogf.org/occi/infrastructure#";class="kind";title="Networkinterface";rel="http://schemas.ogf.org/occi/core#link";location="/networkinterface/";attributes="occi.networkinterface.interface
956
+ occi.networkinterface.mac occi.networkinterface.state occi.networkinterface.address
957
+ occi.networkinterface.gateway occi.networkinterface.allocation org.opennebula.networkinterface.bridge
958
+ org.opennebula.networkinterface.script org.opennebula.networkinterface.model
959
+ org.opennebula.networkinterface.white_ports_tcp org.opennebula.networkinterface.black_ports_tcp
960
+ org.opennebula.networkinterface.white_ports_udp org.opennebula.networkinterface.black_ports_udp
961
+ org.opennebula.networkinterface.icmp"
962
+
963
+ Category: console;scheme="http://schemas.ogf.org/occi/infrastructure/compute#";class="kind";title="Link
964
+ to the VM''s console";rel="http://schemas.ogf.org/occi/core#link";location="/console/"
965
+
966
+ Category: os_tpl;scheme="http://schemas.ogf.org/occi/infrastructure#";class="mixin";title="Operating
967
+ System Template";location="/mixins/os_tpl/"
968
+
969
+ Category: ipnetwork;scheme="http://schemas.ogf.org/occi/infrastructure/network#";class="mixin";title="IP
970
+ Network Mixin";location="/mixins/ipnetwork/";attributes="occi.network.address
971
+ occi.network.gateway occi.network.allocation occi.network.state"
972
+
973
+ Category: ipnetworkinterface;scheme="http://schemas.ogf.org/occi/infrastructure/networkinterface#";class="mixin";title="IP
974
+ Networkinterface Mixin";location="/mixins/ipnetworkinterface/";attributes="occi.networkinterface.address
975
+ occi.networkinterface.gateway occi.networkinterface.allocation occi.networkinterface.state"
976
+
977
+ Category: resource_tpl;scheme="http://schemas.ogf.org/occi/infrastructure#";class="mixin";title="Resource
978
+ Template";location="/mixins/resource_tpl/"
979
+
980
+ Category: compute;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
981
+ specific Compute attributes";location="/mixins/compute/";attributes="org.opennebula.compute.cpu
982
+ org.opennebula.compute.kernel org.opennebula.compute.initrd org.opennebula.compute.root
983
+ org.opennebula.compute.kernel_cmd org.opennebula.compute.bootloader org.opennebula.compute.boot"
984
+
985
+ Category: storagelink;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
986
+ specific Storagelink attributes";location="/mixins/storagelink/";attributes="org.opennebula.storagelink.bus
987
+ org.opennebula.storagelink.driver"
988
+
989
+ Category: network;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
990
+ specific Network attributes";location="/mixins/network/";attributes="org.opennebula.network.id
991
+ org.opennebula.network.bridge org.opennebula.network.vlan org.opennebula.network.phydev
992
+ org.opennebula.network.ip_start org.opennebula.network.ip_end"
993
+
994
+ Category: storage;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
995
+ specific Storage attributes";location="/mixins/storage/";attributes="org.opennebula.storage.id
996
+ org.opennebula.storage.type org.opennebula.storage.persistent org.opennebula.storage.dev_prefix
997
+ org.opennebula.storage.bus org.opennebula.storage.driver org.opennebula.storage.fstype"
998
+
999
+ Category: networkinterface;scheme="http://opennebula.org/occi/infrastructure#";class="mixin";title="OpenNebula
1000
+ specific Networkinterface attributes";location="/mixins/networkinterface/";attributes="org.opennebula.networkinterface.bridge
1001
+ org.opennebula.networkinterface.script org.opennebula.networkinterface.model
1002
+ org.opennebula.networkinterface.white_ports_tcp org.opennebula.networkinterface.black_ports_tcp
1003
+ org.opennebula.networkinterface.white_ports_udp org.opennebula.networkinterface.black_ports_udp
1004
+ org.opennebula.networkinterface.icmp"
1005
+
1006
+ Category: large;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Large
1007
+ Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/large/";attributes="occi.compute.architecture
1008
+ occi.compute.cores occi.compute.speed occi.compute.memory"
1009
+
1010
+ Category: extra_large;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Extra
1011
+ Large Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/extra_large/";attributes="occi.compute.architecture
1012
+ occi.compute.cores occi.compute.speed occi.compute.memory"
1013
+
1014
+ Category: medium;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Medium
1015
+ Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/medium/";attributes="occi.compute.architecture
1016
+ occi.compute.cores occi.compute.speed occi.compute.memory"
1017
+
1018
+ Category: small;scheme="https://occi.localhost/occi/infrastructure/resource_tpl#";class="mixin";title="Small
1019
+ Instance";rel="http://schemas.ogf.org/occi/infrastructure#resource_tpl";location="/mixins/small/";attributes="occi.compute.architecture
1020
+ occi.compute.cores occi.compute.speed occi.compute.memory"
1021
+
1022
+ Category: monitoring;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="monitoring";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/monitoring/"
1023
+
1024
+ Category: debianvm;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="debianvm";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/debianvm/"
1025
+
1026
+ Category: egicf2012_demo;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="egicf2012-demo";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/egicf2012_demo/"
1027
+
1028
+ Category: oxfordcorpusserver;scheme="https://occi.localhost/occi/infrastructure/os_tpl#";class="mixin";title="OxfordCorpusServer";rel="http://schemas.ogf.org/occi/infrastructure#os_tpl";location="/mixins/oxfordcorpusserver/"
1029
+
1030
+ Category: start;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Start
1031
+ Compute instance"
1032
+
1033
+ Category: stop;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Stop
1034
+ Compute instance";attributes="method"
1035
+
1036
+ Category: restart;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Restart
1037
+ Compute instance";attributes="method"
1038
+
1039
+ Category: suspend;scheme="http://schemas.ogf.org/occi/infrastructure/compute/action#";class="action";title="Suspend
1040
+ Compute instance";attributes="method"
1041
+
1042
+ Category: up;scheme="http://schemas.ogf.org/occi/infrastructure/network/action#";class="action";title="Activate
1043
+ network"
1044
+
1045
+ Category: down;scheme="http://schemas.ogf.org/occi/infrastructure/network/action#up";class="action";title="Activate
1046
+ network"
1047
+
1048
+ Category: online;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Activate
1049
+ Storage"
1050
+
1051
+ Category: offline;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Deactivate
1052
+ Storage"
1053
+
1054
+ Category: backup;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Backup
1055
+ Storage"
1056
+
1057
+ Category: snapshot;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Snapshot
1058
+ Storage"
1059
+
1060
+ Category: resize;scheme="http://schemas.ogf.org/occi/infrastructure/storage/action#";class="action";title="Resize
1061
+ Storage";attributes="size"
1062
+
1063
+ '
1064
+ http_version:
1065
+ recorded_at: Mon, 12 Nov 2012 17:17:57 GMT
1066
+ recorded_with: VCR 2.3.0