hawkular-client 0.2.2 → 1.0.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 (108) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +3 -0
  3. data/.yardopts +1 -0
  4. data/CHANGES.rdoc +17 -4
  5. data/README.rdoc +15 -6
  6. data/api_breaking_changes.rdoc +79 -0
  7. data/hawkularclient.gemspec +6 -5
  8. data/lib/{alerts → hawkular/alerts}/alerts_api.rb +168 -7
  9. data/lib/{hawkular.rb → hawkular/base_client.rb} +7 -44
  10. data/lib/hawkular/hawkular_client.rb +60 -0
  11. data/lib/hawkular/hawkular_client_utils.rb +40 -0
  12. data/lib/{inventory → hawkular/inventory}/inventory_api.rb +167 -142
  13. data/lib/{metrics → hawkular/metrics}/metric_api.rb +1 -0
  14. data/lib/{metrics → hawkular/metrics}/metrics_client.rb +4 -4
  15. data/lib/{metrics → hawkular/metrics}/tenant_api.rb +0 -0
  16. data/lib/{metrics → hawkular/metrics}/types.rb +0 -0
  17. data/lib/{operations → hawkular/operations}/operations_api.rb +11 -8
  18. data/lib/{tokens → hawkular/tokens}/tokens_api.rb +1 -1
  19. data/lib/{version.rb → hawkular/version.rb} +1 -1
  20. data/spec/integration/alerts_spec.rb +200 -0
  21. data/spec/integration/hawkular_client_spec.rb +228 -0
  22. data/spec/integration/inventory_spec.rb +246 -160
  23. data/spec/integration/metric_spec.rb +52 -59
  24. data/spec/integration/operations_spec.rb +53 -29
  25. data/spec/spec_helper.rb +109 -8
  26. data/spec/unit/base_spec.rb +9 -0
  27. data/spec/unit/canonical_path_spec.rb +2 -2
  28. data/spec/vcr/vcr_setup.rb +6 -0
  29. data/spec/vcr_cassettes/Alert/Events/Should_create_an_event.yml +50 -0
  30. data/spec/vcr_cassettes/Alert/Groups/Should_operate_a_complex_group_trigger.yml +1726 -0
  31. data/spec/vcr_cassettes/Counter_metrics/Should_get_metrics_as_bucketed_results.yml +190 -0
  32. data/spec/vcr_cassettes/Counter_metrics/Should_get_metrics_with_limit_and_order.yml +30 -42
  33. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_both_create_and_delete_feed.yml +287 -0
  34. data/spec/vcr_cassettes/{Inventory/Should_list_URLs.yml → HawkularClient/and_Inventory_client/Should_both_list_WildFlys.yml} +35 -33
  35. data/spec/vcr_cassettes/{Inventory/Should_list_types_with_bad_feed.yml → HawkularClient/and_Inventory_client/Should_both_list_types_with_bad_feed.yml} +16 -19
  36. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_same_types_when_param_is_given.yml +245 -0
  37. data/spec/vcr_cassettes/{Inventory/Should_list_feeds.yml → HawkularClient/and_Inventory_client/Should_list_the_same_feeds.yml} +20 -20
  38. data/spec/vcr_cassettes/HawkularClient/and_Inventory_client/Should_list_the_same_resource_types.yml +249 -0
  39. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_create_and_retrieve_tags_for_Availability.yml +155 -0
  40. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_create_and_return_Availability_using_Hash_parameter.yml +155 -0
  41. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_return_the_version.yml +89 -0
  42. data/spec/vcr_cassettes/HawkularClient/and_Metrics_client/Should_both_work_the_same_way_when_pushing_metric_data_to_non-existing_counter.yml +114 -0
  43. data/spec/vcr_cassettes/{Inventory/Should_list_WildFlys_with_props.yml → HawkularClient/and_Operations_client/Should_both_work_the_same_way.yml} +28 -50
  44. data/spec/vcr_cassettes/HawkularClient/and_Operations_client_Should_both_work_the_same_way.json +44 -0
  45. data/spec/vcr_cassettes/Inventory/Helpers/create_url.yml +48 -0
  46. data/spec/vcr_cassettes/Inventory/Helpers/generate_some_events_for_websocket.yml +4446 -0
  47. data/spec/vcr_cassettes/Inventory/Helpers/get_feeds.yml +54 -0
  48. data/spec/vcr_cassettes/Inventory/Templates/Client_should_listen_on_various_inventory_events.json +47 -0
  49. data/spec/vcr_cassettes/Inventory/{Should_create_a_resourcetype.yml → Templates/Client_should_listen_on_various_inventory_events.yml} +47 -61
  50. data/spec/vcr_cassettes/Inventory/Templates/Helpers/generate_some_events_for_websocket.yml +542 -0
  51. data/spec/vcr_cassettes/Inventory/{Should_List_datasources_with_no_props.yml → Templates/Should_List_datasources_with_no_props.yml} +26 -85
  52. data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_feed.yml +54 -0
  53. data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_feed_again.yml +164 -0
  54. data/spec/vcr_cassettes/Inventory/{Should_create_a_nested_resource_and_metric_on_it.yml → Templates/Should_create_a_nested_resource_and_metric_on_it.yml} +93 -74
  55. data/spec/vcr_cassettes/Inventory/{Should_create_a_resource_.yml → Templates/Should_create_a_resource.yml} +103 -76
  56. data/spec/vcr_cassettes/Inventory/{Should_create_a_resource_with_metric.yml → Templates/Should_create_a_resource_with_metric.yml} +91 -197
  57. data/spec/vcr_cassettes/Inventory/Templates/Should_create_a_resourcetype.yml +154 -0
  58. data/spec/vcr_cassettes/Inventory/Templates/Should_create_and_delete_feed.yml +145 -0
  59. data/spec/vcr_cassettes/Inventory/{Should_create_and_get_a_resource.yml → Templates/Should_create_and_get_a_resource.yml} +35 -20
  60. data/spec/vcr_cassettes/Inventory/Templates/Should_list_URLs.yml +65 -0
  61. data/spec/vcr_cassettes/Inventory/Templates/Should_list_WildFlys.yml +61 -0
  62. data/spec/vcr_cassettes/Inventory/{Should_list_WildFlys.yml → Templates/Should_list_WildFlys_with_props.yml} +36 -33
  63. data/spec/vcr_cassettes/Inventory/Templates/Should_list_all_the_resource_types.yml +126 -0
  64. data/spec/vcr_cassettes/Inventory/{Should_list_children_of_WildFly.yml → Templates/Should_list_children_of_WildFly.yml} +66 -112
  65. data/spec/vcr_cassettes/Inventory/{Should_list_children_of_nested_resource.yml → Templates/Should_list_children_of_nested_resource.yml} +13 -13
  66. data/spec/vcr_cassettes/Inventory/Templates/Should_list_feeds.yml +54 -0
  67. data/spec/vcr_cassettes/Inventory/Templates/Should_list_heap_metrics_for_WildFlys.yml +712 -0
  68. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_for_WildFlys.yml +278 -0
  69. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_metric_type.yml +530 -0
  70. data/spec/vcr_cassettes/Inventory/Templates/Should_list_metrics_of_given_resource_type.yml +278 -0
  71. data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource.yml +185 -0
  72. data/spec/vcr_cassettes/Inventory/Templates/Should_list_operation_definitions_of_given_resource_type.yml +126 -0
  73. data/spec/vcr_cassettes/Inventory/Templates/Should_list_recursive_children_of_WildFly.yml +2369 -0
  74. data/spec/vcr_cassettes/Inventory/Templates/Should_list_relationships_of_WildFly.yml +415 -0
  75. data/spec/vcr_cassettes/Inventory/Templates/Should_list_types_with_bad_feed.yml +51 -0
  76. data/spec/vcr_cassettes/Inventory/Templates/Should_list_types_with_feed.yml +124 -0
  77. data/spec/vcr_cassettes/Inventory/{Should_not_find_an_unknown_resource.yml → Templates/Should_not_find_an_unknown_resource.yml} +14 -13
  78. data/spec/vcr_cassettes/Inventory/{Should_return_config_data_of_given_nested_resource.yml → Templates/Should_return_config_data_of_given_nested_resource.yml} +4 -4
  79. data/spec/vcr_cassettes/Inventory/{Should_return_config_data_of_given_resource.yml → Templates/Should_return_config_data_of_given_resource.yml} +4 -4
  80. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Explicit_Credentials.yml +50 -0
  81. data/spec/vcr_cassettes/Inventory/Tenants/Should_Get_Tenant_For_Implicit_Credentials.yml +50 -0
  82. data/spec/vcr_cassettes/Operation/Helpers/get_feed.yml +54 -0
  83. data/spec/vcr_cassettes/Operation/Helpers/get_tenant.yml +50 -0
  84. data/spec/vcr_cassettes/Operation/Operation/Add_JDBC_driver_should_add_the_driver.json +26 -0
  85. data/spec/vcr_cassettes/Operation/Operation/Add_datasource_should_be_doable.json +26 -0
  86. data/spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json +26 -0
  87. data/spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json +40 -0
  88. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
  89. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json +26 -0
  90. data/spec/vcr_cassettes/Operation/Operation/Remove_JDBC_driver_should_be_performed_and_eventually_respond_with_success.json +26 -0
  91. data/spec/vcr_cassettes/Operation/Operation/Remove_datasource_should_be_performed_and_eventually_respond_with_success.json +26 -0
  92. data/spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json +26 -0
  93. data/spec/vcr_cassettes/Operation/Operation/Undeploy_should_be_performed_and_eventually_respond_with_success.json +26 -0
  94. data/spec/vcr_cassettes/Operation/Operation/should_not_be_possible_to_perform_on_closed_client.json +12 -0
  95. data/spec/vcr_cassettes/Operation/Websocket_connection/should_be_established.json +9 -0
  96. metadata +171 -72
  97. data/lib/hawkular_all.rb +0 -9
  98. data/spec/vcr_cassettes/Inventory/Should_create_a_feed.yml +0 -107
  99. data/spec/vcr_cassettes/Inventory/Should_create_a_feed_again.yml +0 -211
  100. data/spec/vcr_cassettes/Inventory/Should_create_and_delete_feed.yml +0 -201
  101. data/spec/vcr_cassettes/Inventory/Should_list_all_the_resource_types.yml +0 -177
  102. data/spec/vcr_cassettes/Inventory/Should_list_heap_metrics_for_WildFlys.yml +0 -775
  103. data/spec/vcr_cassettes/Inventory/Should_list_metrics_for_WildFlys.yml +0 -333
  104. data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_metric_type.yml +0 -613
  105. data/spec/vcr_cassettes/Inventory/Should_list_metrics_of_given_resource_type.yml +0 -333
  106. data/spec/vcr_cassettes/Inventory/Should_list_recursive_children_of_WildFly.yml +0 -2064
  107. data/spec/vcr_cassettes/Inventory/Should_list_relationships_of_WildFly.yml +0 -460
  108. data/spec/vcr_cassettes/Inventory/Should_list_types_with_feed.yml +0 -175
@@ -0,0 +1,44 @@
1
+ [
2
+ [
3
+ {
4
+ "operation": "read",
5
+ "type": "text",
6
+ "data": "WelcomeResponse={\"sessionId\":\"KdLNC7UxYHjdUBMR4mA8jh3eWyhOxPFYiU4wttCp\"}"
7
+ },
8
+ {
9
+ "operation": "write",
10
+ "data": "ExecuteOperationRequest={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
11
+ },
12
+ {
13
+ "operation": "read",
14
+ "type": "text",
15
+ "data": "GenericSuccessResponse={\"message\":\"The request has been forwarded to feed [a43ec2b3-94bf-4120-a91b-3a2f63914061] (MessageId=ID:68cfbaae-f5c3-11e5-9be8-75b2818bc6d9)\"}"
16
+ },
17
+ {
18
+ "operation": "read",
19
+ "type": "text",
20
+ "data": "ExecuteOperationResponse={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war\",\"destinationSessionId\":\"KdLNC7UxYHjdUBMR4mA8jh3eWyhOxPFYiU4wttCp\",\"status\":\"OK\",\"message\":\"Performed [Redeploy] on a [DMR Node] given by Inventory path [/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war]\"}"
21
+ }
22
+ ],
23
+ [
24
+ {
25
+ "operation": "read",
26
+ "type": "text",
27
+ "data": "WelcomeResponse={\"sessionId\":\"ce_uLMZMhZEJlO8bQa80oBzRjHV915TFaLnkmaq9\"}"
28
+ },
29
+ {
30
+ "operation": "write",
31
+ "data": "ExecuteOperationRequest={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
32
+ },
33
+ {
34
+ "operation": "read",
35
+ "type": "text",
36
+ "data": "GenericSuccessResponse={\"message\":\"The request has been forwarded to feed [a43ec2b3-94bf-4120-a91b-3a2f63914061] (MessageId=ID:6b2f54e1-f5c3-11e5-9be8-75b2818bc6d9)\"}"
37
+ },
38
+ {
39
+ "operation": "read",
40
+ "type": "text",
41
+ "data": "ExecuteOperationResponse={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war\",\"destinationSessionId\":\"ce_uLMZMhZEJlO8bQa80oBzRjHV915TFaLnkmaq9\",\"status\":\"OK\",\"message\":\"Performed [Redeploy] on a [DMR Node] given by Inventory path [/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;a43ec2b3-94bf-4120-a91b-3a2f63914061/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war]\"}"
42
+ }
43
+ ]
44
+ ]
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://jdoe:password@localhost:8080/hawkular/api/urls
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"url":"http://bsd.de"}'
9
+ headers:
10
+ Accept:
11
+ - "*/*; q=0.5, application/xml"
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ Content-Type:
15
+ - application/json
16
+ Content-Length:
17
+ - '23'
18
+ User-Agent:
19
+ - Ruby
20
+ response:
21
+ status:
22
+ code: 201
23
+ message: Created
24
+ headers:
25
+ Expires:
26
+ - '0'
27
+ Cache-Control:
28
+ - no-cache, no-store, must-revalidate
29
+ X-Powered-By:
30
+ - Undertow/1
31
+ Server:
32
+ - WildFly/10
33
+ Pragma:
34
+ - no-cache
35
+ Location:
36
+ - http://127.0.0.1:8080/hawkular/inventory/test/resources/536cc3ede5769b60a49774425aedba24
37
+ Date:
38
+ - Thu, 05 May 2016 11:18:36 GMT
39
+ Connection:
40
+ - keep-alive
41
+ Content-Length:
42
+ - '0'
43
+ body:
44
+ encoding: UTF-8
45
+ string: ''
46
+ http_version:
47
+ recorded_at: Thu, 05 May 2016 11:18:36 GMT
48
+ recorded_with: VCR 3.0.1
@@ -0,0 +1,4446 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resourceTypes
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"properties":{},"id":"294d5133-5db7-4293-8651-8348ba4154de-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ Content-Type:
15
+ - application/json
16
+ Content-Length:
17
+ - '118'
18
+ User-Agent:
19
+ - Ruby
20
+ response:
21
+ status:
22
+ code: 201
23
+ message: Created
24
+ headers:
25
+ Expires:
26
+ - '0'
27
+ Cache-Control:
28
+ - no-cache, no-store, must-revalidate
29
+ X-Powered-By:
30
+ - Undertow/1
31
+ Server:
32
+ - WildFly/10
33
+ Pragma:
34
+ - no-cache
35
+ Location:
36
+ - http://localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resourceTypes/294d5133-5db7-4293-8651-8348ba4154de-rt-123
37
+ Date:
38
+ - Mon, 11 Apr 2016 14:21:56 GMT
39
+ Connection:
40
+ - keep-alive
41
+ Content-Type:
42
+ - application/json
43
+ Content-Length:
44
+ - '230'
45
+ body:
46
+ encoding: ASCII-8BIT
47
+ string: |-
48
+ {
49
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
50
+ "name" : "ResourceType",
51
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
52
+ }
53
+ http_version:
54
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
55
+ - request:
56
+ method: get
57
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resourceTypes/294d5133-5db7-4293-8651-8348ba4154de-rt-123
58
+ body:
59
+ encoding: US-ASCII
60
+ string: ''
61
+ headers:
62
+ Accept:
63
+ - application/json
64
+ Accept-Encoding:
65
+ - gzip, deflate
66
+ Content-Type:
67
+ - application/json
68
+ User-Agent:
69
+ - Ruby
70
+ response:
71
+ status:
72
+ code: 200
73
+ message: OK
74
+ headers:
75
+ Expires:
76
+ - '0'
77
+ Cache-Control:
78
+ - no-cache, no-store, must-revalidate
79
+ X-Powered-By:
80
+ - Undertow/1
81
+ Server:
82
+ - WildFly/10
83
+ Pragma:
84
+ - no-cache
85
+ Date:
86
+ - Mon, 11 Apr 2016 14:21:56 GMT
87
+ Connection:
88
+ - keep-alive
89
+ Content-Type:
90
+ - application/json
91
+ Content-Length:
92
+ - '230'
93
+ body:
94
+ encoding: ASCII-8BIT
95
+ string: |-
96
+ {
97
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
98
+ "name" : "ResourceType",
99
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
100
+ }
101
+ http_version:
102
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
103
+ - request:
104
+ method: post
105
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources
106
+ body:
107
+ encoding: UTF-8
108
+ string: '{"properties":{"version":1.0},"id":"294d5133-5db7-4293-8651-8348ba4154de-r126","name":"My
109
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123"}'
110
+ headers:
111
+ Accept:
112
+ - application/json
113
+ Accept-Encoding:
114
+ - gzip, deflate
115
+ Content-Type:
116
+ - application/json
117
+ Content-Length:
118
+ - '282'
119
+ User-Agent:
120
+ - Ruby
121
+ response:
122
+ status:
123
+ code: 201
124
+ message: Created
125
+ headers:
126
+ Expires:
127
+ - '0'
128
+ Cache-Control:
129
+ - no-cache, no-store, must-revalidate
130
+ X-Powered-By:
131
+ - Undertow/1
132
+ Server:
133
+ - WildFly/10
134
+ Pragma:
135
+ - no-cache
136
+ Location:
137
+ - http://localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources/294d5133-5db7-4293-8651-8348ba4154de-r126
138
+ Date:
139
+ - Mon, 11 Apr 2016 14:21:56 GMT
140
+ Connection:
141
+ - keep-alive
142
+ Content-Type:
143
+ - application/json
144
+ Content-Length:
145
+ - '521'
146
+ body:
147
+ encoding: ASCII-8BIT
148
+ string: |-
149
+ {
150
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/r;294d5133-5db7-4293-8651-8348ba4154de-r126",
151
+ "type" : {
152
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
153
+ "name" : "ResourceType",
154
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
155
+ },
156
+ "properties" : {
157
+ "version" : 1.0
158
+ },
159
+ "name" : "My Resource 1",
160
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-r126"
161
+ }
162
+ http_version:
163
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
164
+ - request:
165
+ method: get
166
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources/294d5133-5db7-4293-8651-8348ba4154de-r126
167
+ body:
168
+ encoding: US-ASCII
169
+ string: ''
170
+ headers:
171
+ Accept:
172
+ - application/json
173
+ Accept-Encoding:
174
+ - gzip, deflate
175
+ Content-Type:
176
+ - application/json
177
+ User-Agent:
178
+ - Ruby
179
+ response:
180
+ status:
181
+ code: 200
182
+ message: OK
183
+ headers:
184
+ Expires:
185
+ - '0'
186
+ Cache-Control:
187
+ - no-cache, no-store, must-revalidate
188
+ X-Powered-By:
189
+ - Undertow/1
190
+ Server:
191
+ - WildFly/10
192
+ Pragma:
193
+ - no-cache
194
+ Date:
195
+ - Mon, 11 Apr 2016 14:21:56 GMT
196
+ Connection:
197
+ - keep-alive
198
+ Content-Type:
199
+ - application/json
200
+ Content-Length:
201
+ - '521'
202
+ body:
203
+ encoding: ASCII-8BIT
204
+ string: |-
205
+ {
206
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/r;294d5133-5db7-4293-8651-8348ba4154de-r126",
207
+ "type" : {
208
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
209
+ "name" : "ResourceType",
210
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
211
+ },
212
+ "properties" : {
213
+ "version" : 1.0
214
+ },
215
+ "name" : "My Resource 1",
216
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-r126"
217
+ }
218
+ http_version:
219
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
220
+ - request:
221
+ method: post
222
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources
223
+ body:
224
+ encoding: UTF-8
225
+ string: '{"properties":{"version":1.1},"id":"294d5133-5db7-4293-8651-8348ba4154de-r127","name":"My
226
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123"}'
227
+ headers:
228
+ Accept:
229
+ - application/json
230
+ Accept-Encoding:
231
+ - gzip, deflate
232
+ Content-Type:
233
+ - application/json
234
+ Content-Length:
235
+ - '282'
236
+ User-Agent:
237
+ - Ruby
238
+ response:
239
+ status:
240
+ code: 201
241
+ message: Created
242
+ headers:
243
+ Expires:
244
+ - '0'
245
+ Cache-Control:
246
+ - no-cache, no-store, must-revalidate
247
+ X-Powered-By:
248
+ - Undertow/1
249
+ Server:
250
+ - WildFly/10
251
+ Pragma:
252
+ - no-cache
253
+ Location:
254
+ - http://localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources/294d5133-5db7-4293-8651-8348ba4154de-r127
255
+ Date:
256
+ - Mon, 11 Apr 2016 14:21:56 GMT
257
+ Connection:
258
+ - keep-alive
259
+ Content-Type:
260
+ - application/json
261
+ Content-Length:
262
+ - '521'
263
+ body:
264
+ encoding: ASCII-8BIT
265
+ string: |-
266
+ {
267
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/r;294d5133-5db7-4293-8651-8348ba4154de-r127",
268
+ "type" : {
269
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
270
+ "name" : "ResourceType",
271
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
272
+ },
273
+ "properties" : {
274
+ "version" : 1.1
275
+ },
276
+ "name" : "My Resource 2",
277
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-r127"
278
+ }
279
+ http_version:
280
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
281
+ - request:
282
+ method: get
283
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources/294d5133-5db7-4293-8651-8348ba4154de-r127
284
+ body:
285
+ encoding: US-ASCII
286
+ string: ''
287
+ headers:
288
+ Accept:
289
+ - application/json
290
+ Accept-Encoding:
291
+ - gzip, deflate
292
+ Content-Type:
293
+ - application/json
294
+ User-Agent:
295
+ - Ruby
296
+ response:
297
+ status:
298
+ code: 200
299
+ message: OK
300
+ headers:
301
+ Expires:
302
+ - '0'
303
+ Cache-Control:
304
+ - no-cache, no-store, must-revalidate
305
+ X-Powered-By:
306
+ - Undertow/1
307
+ Server:
308
+ - WildFly/10
309
+ Pragma:
310
+ - no-cache
311
+ Date:
312
+ - Mon, 11 Apr 2016 14:21:56 GMT
313
+ Connection:
314
+ - keep-alive
315
+ Content-Type:
316
+ - application/json
317
+ Content-Length:
318
+ - '521'
319
+ body:
320
+ encoding: ASCII-8BIT
321
+ string: |-
322
+ {
323
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/r;294d5133-5db7-4293-8651-8348ba4154de-r127",
324
+ "type" : {
325
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
326
+ "name" : "ResourceType",
327
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
328
+ },
329
+ "properties" : {
330
+ "version" : 1.1
331
+ },
332
+ "name" : "My Resource 2",
333
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-r127"
334
+ }
335
+ http_version:
336
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
337
+ - request:
338
+ method: post
339
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources
340
+ body:
341
+ encoding: UTF-8
342
+ string: '{"properties":{"version":1.2},"id":"294d5133-5db7-4293-8651-8348ba4154de-r128","name":"My
343
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123"}'
344
+ headers:
345
+ Accept:
346
+ - application/json
347
+ Accept-Encoding:
348
+ - gzip, deflate
349
+ Content-Type:
350
+ - application/json
351
+ Content-Length:
352
+ - '282'
353
+ User-Agent:
354
+ - Ruby
355
+ response:
356
+ status:
357
+ code: 201
358
+ message: Created
359
+ headers:
360
+ Expires:
361
+ - '0'
362
+ Cache-Control:
363
+ - no-cache, no-store, must-revalidate
364
+ X-Powered-By:
365
+ - Undertow/1
366
+ Server:
367
+ - WildFly/10
368
+ Pragma:
369
+ - no-cache
370
+ Location:
371
+ - http://localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources/294d5133-5db7-4293-8651-8348ba4154de-r128
372
+ Date:
373
+ - Mon, 11 Apr 2016 14:21:56 GMT
374
+ Connection:
375
+ - keep-alive
376
+ Content-Type:
377
+ - application/json
378
+ Content-Length:
379
+ - '521'
380
+ body:
381
+ encoding: ASCII-8BIT
382
+ string: |-
383
+ {
384
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/r;294d5133-5db7-4293-8651-8348ba4154de-r128",
385
+ "type" : {
386
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
387
+ "name" : "ResourceType",
388
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
389
+ },
390
+ "properties" : {
391
+ "version" : 1.2
392
+ },
393
+ "name" : "My Resource 3",
394
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-r128"
395
+ }
396
+ http_version:
397
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
398
+ - request:
399
+ method: get
400
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed/resources/294d5133-5db7-4293-8651-8348ba4154de-r128
401
+ body:
402
+ encoding: US-ASCII
403
+ string: ''
404
+ headers:
405
+ Accept:
406
+ - application/json
407
+ Accept-Encoding:
408
+ - gzip, deflate
409
+ Content-Type:
410
+ - application/json
411
+ User-Agent:
412
+ - Ruby
413
+ response:
414
+ status:
415
+ code: 200
416
+ message: OK
417
+ headers:
418
+ Expires:
419
+ - '0'
420
+ Cache-Control:
421
+ - no-cache, no-store, must-revalidate
422
+ X-Powered-By:
423
+ - Undertow/1
424
+ Server:
425
+ - WildFly/10
426
+ Pragma:
427
+ - no-cache
428
+ Date:
429
+ - Mon, 11 Apr 2016 14:21:56 GMT
430
+ Connection:
431
+ - keep-alive
432
+ Content-Type:
433
+ - application/json
434
+ Content-Length:
435
+ - '521'
436
+ body:
437
+ encoding: ASCII-8BIT
438
+ string: |-
439
+ {
440
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/r;294d5133-5db7-4293-8651-8348ba4154de-r128",
441
+ "type" : {
442
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;294d5133-5db7-4293-8651-8348ba4154de-feed/rt;294d5133-5db7-4293-8651-8348ba4154de-rt-123",
443
+ "name" : "ResourceType",
444
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-rt-123"
445
+ },
446
+ "properties" : {
447
+ "version" : 1.2
448
+ },
449
+ "name" : "My Resource 3",
450
+ "id" : "294d5133-5db7-4293-8651-8348ba4154de-r128"
451
+ }
452
+ http_version:
453
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
454
+ - request:
455
+ method: delete
456
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/294d5133-5db7-4293-8651-8348ba4154de-feed
457
+ body:
458
+ encoding: US-ASCII
459
+ string: ''
460
+ headers:
461
+ Accept:
462
+ - application/json
463
+ Accept-Encoding:
464
+ - gzip, deflate
465
+ Content-Type:
466
+ - application/json
467
+ User-Agent:
468
+ - Ruby
469
+ response:
470
+ status:
471
+ code: 204
472
+ message: No Content
473
+ headers:
474
+ Expires:
475
+ - '0'
476
+ Cache-Control:
477
+ - no-cache, no-store, must-revalidate
478
+ X-Powered-By:
479
+ - Undertow/1
480
+ Server:
481
+ - WildFly/10
482
+ Pragma:
483
+ - no-cache
484
+ Date:
485
+ - Mon, 11 Apr 2016 14:21:56 GMT
486
+ body:
487
+ encoding: UTF-8
488
+ string: ''
489
+ http_version:
490
+ recorded_at: Mon, 11 Apr 2016 14:21:56 GMT
491
+ - request:
492
+ method: post
493
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resourceTypes
494
+ body:
495
+ encoding: UTF-8
496
+ string: '{"properties":{},"id":"f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
497
+ headers:
498
+ Accept:
499
+ - application/json
500
+ Accept-Encoding:
501
+ - gzip, deflate
502
+ Content-Type:
503
+ - application/json
504
+ Content-Length:
505
+ - '118'
506
+ User-Agent:
507
+ - Ruby
508
+ response:
509
+ status:
510
+ code: 201
511
+ message: Created
512
+ headers:
513
+ Expires:
514
+ - '0'
515
+ Cache-Control:
516
+ - no-cache, no-store, must-revalidate
517
+ X-Powered-By:
518
+ - Undertow/1
519
+ Server:
520
+ - WildFly/10
521
+ Pragma:
522
+ - no-cache
523
+ Location:
524
+ - http://localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resourceTypes/f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123
525
+ Date:
526
+ - Mon, 11 Apr 2016 14:36:26 GMT
527
+ Connection:
528
+ - keep-alive
529
+ Content-Type:
530
+ - application/json
531
+ Content-Length:
532
+ - '230'
533
+ body:
534
+ encoding: ASCII-8BIT
535
+ string: |-
536
+ {
537
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
538
+ "name" : "ResourceType",
539
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
540
+ }
541
+ http_version:
542
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
543
+ - request:
544
+ method: get
545
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resourceTypes/f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123
546
+ body:
547
+ encoding: US-ASCII
548
+ string: ''
549
+ headers:
550
+ Accept:
551
+ - application/json
552
+ Accept-Encoding:
553
+ - gzip, deflate
554
+ Content-Type:
555
+ - application/json
556
+ User-Agent:
557
+ - Ruby
558
+ response:
559
+ status:
560
+ code: 200
561
+ message: OK
562
+ headers:
563
+ Expires:
564
+ - '0'
565
+ Cache-Control:
566
+ - no-cache, no-store, must-revalidate
567
+ X-Powered-By:
568
+ - Undertow/1
569
+ Server:
570
+ - WildFly/10
571
+ Pragma:
572
+ - no-cache
573
+ Date:
574
+ - Mon, 11 Apr 2016 14:36:26 GMT
575
+ Connection:
576
+ - keep-alive
577
+ Content-Type:
578
+ - application/json
579
+ Content-Length:
580
+ - '230'
581
+ body:
582
+ encoding: ASCII-8BIT
583
+ string: |-
584
+ {
585
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
586
+ "name" : "ResourceType",
587
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
588
+ }
589
+ http_version:
590
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
591
+ - request:
592
+ method: post
593
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources
594
+ body:
595
+ encoding: UTF-8
596
+ string: '{"properties":{"version":1.0},"id":"f1dcbf50-c6a4-4202-94c6-57efa778440e-r126","name":"My
597
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"}'
598
+ headers:
599
+ Accept:
600
+ - application/json
601
+ Accept-Encoding:
602
+ - gzip, deflate
603
+ Content-Type:
604
+ - application/json
605
+ Content-Length:
606
+ - '282'
607
+ User-Agent:
608
+ - Ruby
609
+ response:
610
+ status:
611
+ code: 201
612
+ message: Created
613
+ headers:
614
+ Expires:
615
+ - '0'
616
+ Cache-Control:
617
+ - no-cache, no-store, must-revalidate
618
+ X-Powered-By:
619
+ - Undertow/1
620
+ Server:
621
+ - WildFly/10
622
+ Pragma:
623
+ - no-cache
624
+ Location:
625
+ - http://localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources/f1dcbf50-c6a4-4202-94c6-57efa778440e-r126
626
+ Date:
627
+ - Mon, 11 Apr 2016 14:36:26 GMT
628
+ Connection:
629
+ - keep-alive
630
+ Content-Type:
631
+ - application/json
632
+ Content-Length:
633
+ - '521'
634
+ body:
635
+ encoding: ASCII-8BIT
636
+ string: |-
637
+ {
638
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/r;f1dcbf50-c6a4-4202-94c6-57efa778440e-r126",
639
+ "type" : {
640
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
641
+ "name" : "ResourceType",
642
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
643
+ },
644
+ "properties" : {
645
+ "version" : 1.0
646
+ },
647
+ "name" : "My Resource 1",
648
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-r126"
649
+ }
650
+ http_version:
651
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
652
+ - request:
653
+ method: get
654
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources/f1dcbf50-c6a4-4202-94c6-57efa778440e-r126
655
+ body:
656
+ encoding: US-ASCII
657
+ string: ''
658
+ headers:
659
+ Accept:
660
+ - application/json
661
+ Accept-Encoding:
662
+ - gzip, deflate
663
+ Content-Type:
664
+ - application/json
665
+ User-Agent:
666
+ - Ruby
667
+ response:
668
+ status:
669
+ code: 200
670
+ message: OK
671
+ headers:
672
+ Expires:
673
+ - '0'
674
+ Cache-Control:
675
+ - no-cache, no-store, must-revalidate
676
+ X-Powered-By:
677
+ - Undertow/1
678
+ Server:
679
+ - WildFly/10
680
+ Pragma:
681
+ - no-cache
682
+ Date:
683
+ - Mon, 11 Apr 2016 14:36:26 GMT
684
+ Connection:
685
+ - keep-alive
686
+ Content-Type:
687
+ - application/json
688
+ Content-Length:
689
+ - '521'
690
+ body:
691
+ encoding: ASCII-8BIT
692
+ string: |-
693
+ {
694
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/r;f1dcbf50-c6a4-4202-94c6-57efa778440e-r126",
695
+ "type" : {
696
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
697
+ "name" : "ResourceType",
698
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
699
+ },
700
+ "properties" : {
701
+ "version" : 1.0
702
+ },
703
+ "name" : "My Resource 1",
704
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-r126"
705
+ }
706
+ http_version:
707
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
708
+ - request:
709
+ method: post
710
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources
711
+ body:
712
+ encoding: UTF-8
713
+ string: '{"properties":{"version":1.1},"id":"f1dcbf50-c6a4-4202-94c6-57efa778440e-r127","name":"My
714
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"}'
715
+ headers:
716
+ Accept:
717
+ - application/json
718
+ Accept-Encoding:
719
+ - gzip, deflate
720
+ Content-Type:
721
+ - application/json
722
+ Content-Length:
723
+ - '282'
724
+ User-Agent:
725
+ - Ruby
726
+ response:
727
+ status:
728
+ code: 201
729
+ message: Created
730
+ headers:
731
+ Expires:
732
+ - '0'
733
+ Cache-Control:
734
+ - no-cache, no-store, must-revalidate
735
+ X-Powered-By:
736
+ - Undertow/1
737
+ Server:
738
+ - WildFly/10
739
+ Pragma:
740
+ - no-cache
741
+ Location:
742
+ - http://localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources/f1dcbf50-c6a4-4202-94c6-57efa778440e-r127
743
+ Date:
744
+ - Mon, 11 Apr 2016 14:36:26 GMT
745
+ Connection:
746
+ - keep-alive
747
+ Content-Type:
748
+ - application/json
749
+ Content-Length:
750
+ - '521'
751
+ body:
752
+ encoding: ASCII-8BIT
753
+ string: |-
754
+ {
755
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/r;f1dcbf50-c6a4-4202-94c6-57efa778440e-r127",
756
+ "type" : {
757
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
758
+ "name" : "ResourceType",
759
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
760
+ },
761
+ "properties" : {
762
+ "version" : 1.1
763
+ },
764
+ "name" : "My Resource 2",
765
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-r127"
766
+ }
767
+ http_version:
768
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
769
+ - request:
770
+ method: get
771
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources/f1dcbf50-c6a4-4202-94c6-57efa778440e-r127
772
+ body:
773
+ encoding: US-ASCII
774
+ string: ''
775
+ headers:
776
+ Accept:
777
+ - application/json
778
+ Accept-Encoding:
779
+ - gzip, deflate
780
+ Content-Type:
781
+ - application/json
782
+ User-Agent:
783
+ - Ruby
784
+ response:
785
+ status:
786
+ code: 200
787
+ message: OK
788
+ headers:
789
+ Expires:
790
+ - '0'
791
+ Cache-Control:
792
+ - no-cache, no-store, must-revalidate
793
+ X-Powered-By:
794
+ - Undertow/1
795
+ Server:
796
+ - WildFly/10
797
+ Pragma:
798
+ - no-cache
799
+ Date:
800
+ - Mon, 11 Apr 2016 14:36:26 GMT
801
+ Connection:
802
+ - keep-alive
803
+ Content-Type:
804
+ - application/json
805
+ Content-Length:
806
+ - '521'
807
+ body:
808
+ encoding: ASCII-8BIT
809
+ string: |-
810
+ {
811
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/r;f1dcbf50-c6a4-4202-94c6-57efa778440e-r127",
812
+ "type" : {
813
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
814
+ "name" : "ResourceType",
815
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
816
+ },
817
+ "properties" : {
818
+ "version" : 1.1
819
+ },
820
+ "name" : "My Resource 2",
821
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-r127"
822
+ }
823
+ http_version:
824
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
825
+ - request:
826
+ method: post
827
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources
828
+ body:
829
+ encoding: UTF-8
830
+ string: '{"properties":{"version":1.2},"id":"f1dcbf50-c6a4-4202-94c6-57efa778440e-r128","name":"My
831
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"}'
832
+ headers:
833
+ Accept:
834
+ - application/json
835
+ Accept-Encoding:
836
+ - gzip, deflate
837
+ Content-Type:
838
+ - application/json
839
+ Content-Length:
840
+ - '282'
841
+ User-Agent:
842
+ - Ruby
843
+ response:
844
+ status:
845
+ code: 201
846
+ message: Created
847
+ headers:
848
+ Expires:
849
+ - '0'
850
+ Cache-Control:
851
+ - no-cache, no-store, must-revalidate
852
+ X-Powered-By:
853
+ - Undertow/1
854
+ Server:
855
+ - WildFly/10
856
+ Pragma:
857
+ - no-cache
858
+ Location:
859
+ - http://localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources/f1dcbf50-c6a4-4202-94c6-57efa778440e-r128
860
+ Date:
861
+ - Mon, 11 Apr 2016 14:36:26 GMT
862
+ Connection:
863
+ - keep-alive
864
+ Content-Type:
865
+ - application/json
866
+ Content-Length:
867
+ - '521'
868
+ body:
869
+ encoding: ASCII-8BIT
870
+ string: |-
871
+ {
872
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/r;f1dcbf50-c6a4-4202-94c6-57efa778440e-r128",
873
+ "type" : {
874
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
875
+ "name" : "ResourceType",
876
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
877
+ },
878
+ "properties" : {
879
+ "version" : 1.2
880
+ },
881
+ "name" : "My Resource 3",
882
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-r128"
883
+ }
884
+ http_version:
885
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
886
+ - request:
887
+ method: get
888
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/resources/f1dcbf50-c6a4-4202-94c6-57efa778440e-r128
889
+ body:
890
+ encoding: US-ASCII
891
+ string: ''
892
+ headers:
893
+ Accept:
894
+ - application/json
895
+ Accept-Encoding:
896
+ - gzip, deflate
897
+ Content-Type:
898
+ - application/json
899
+ User-Agent:
900
+ - Ruby
901
+ response:
902
+ status:
903
+ code: 200
904
+ message: OK
905
+ headers:
906
+ Expires:
907
+ - '0'
908
+ Cache-Control:
909
+ - no-cache, no-store, must-revalidate
910
+ X-Powered-By:
911
+ - Undertow/1
912
+ Server:
913
+ - WildFly/10
914
+ Pragma:
915
+ - no-cache
916
+ Date:
917
+ - Mon, 11 Apr 2016 14:36:26 GMT
918
+ Connection:
919
+ - keep-alive
920
+ Content-Type:
921
+ - application/json
922
+ Content-Length:
923
+ - '521'
924
+ body:
925
+ encoding: ASCII-8BIT
926
+ string: |-
927
+ {
928
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/r;f1dcbf50-c6a4-4202-94c6-57efa778440e-r128",
929
+ "type" : {
930
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f1dcbf50-c6a4-4202-94c6-57efa778440e-feed/rt;f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123",
931
+ "name" : "ResourceType",
932
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-rt-123"
933
+ },
934
+ "properties" : {
935
+ "version" : 1.2
936
+ },
937
+ "name" : "My Resource 3",
938
+ "id" : "f1dcbf50-c6a4-4202-94c6-57efa778440e-r128"
939
+ }
940
+ http_version:
941
+ recorded_at: Mon, 11 Apr 2016 14:36:26 GMT
942
+ - request:
943
+ method: delete
944
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f1dcbf50-c6a4-4202-94c6-57efa778440e-feed
945
+ body:
946
+ encoding: US-ASCII
947
+ string: ''
948
+ headers:
949
+ Accept:
950
+ - application/json
951
+ Accept-Encoding:
952
+ - gzip, deflate
953
+ Content-Type:
954
+ - application/json
955
+ User-Agent:
956
+ - Ruby
957
+ response:
958
+ status:
959
+ code: 204
960
+ message: No Content
961
+ headers:
962
+ Expires:
963
+ - '0'
964
+ Cache-Control:
965
+ - no-cache, no-store, must-revalidate
966
+ X-Powered-By:
967
+ - Undertow/1
968
+ Server:
969
+ - WildFly/10
970
+ Pragma:
971
+ - no-cache
972
+ Date:
973
+ - Mon, 11 Apr 2016 14:36:27 GMT
974
+ body:
975
+ encoding: UTF-8
976
+ string: ''
977
+ http_version:
978
+ recorded_at: Mon, 11 Apr 2016 14:36:27 GMT
979
+ - request:
980
+ method: post
981
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resourceTypes
982
+ body:
983
+ encoding: UTF-8
984
+ string: '{"properties":{},"id":"0db29219-b87d-4710-9397-4da195a412dc-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
985
+ headers:
986
+ Accept:
987
+ - application/json
988
+ Accept-Encoding:
989
+ - gzip, deflate
990
+ Content-Type:
991
+ - application/json
992
+ Content-Length:
993
+ - '118'
994
+ User-Agent:
995
+ - Ruby
996
+ response:
997
+ status:
998
+ code: 201
999
+ message: Created
1000
+ headers:
1001
+ Expires:
1002
+ - '0'
1003
+ Cache-Control:
1004
+ - no-cache, no-store, must-revalidate
1005
+ X-Powered-By:
1006
+ - Undertow/1
1007
+ Server:
1008
+ - WildFly/10
1009
+ Pragma:
1010
+ - no-cache
1011
+ Location:
1012
+ - http://localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resourceTypes/0db29219-b87d-4710-9397-4da195a412dc-rt-123
1013
+ Date:
1014
+ - Mon, 11 Apr 2016 15:19:46 GMT
1015
+ Connection:
1016
+ - keep-alive
1017
+ Content-Type:
1018
+ - application/json
1019
+ Content-Length:
1020
+ - '230'
1021
+ body:
1022
+ encoding: ASCII-8BIT
1023
+ string: |-
1024
+ {
1025
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1026
+ "name" : "ResourceType",
1027
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1028
+ }
1029
+ http_version:
1030
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1031
+ - request:
1032
+ method: get
1033
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resourceTypes/0db29219-b87d-4710-9397-4da195a412dc-rt-123
1034
+ body:
1035
+ encoding: US-ASCII
1036
+ string: ''
1037
+ headers:
1038
+ Accept:
1039
+ - application/json
1040
+ Accept-Encoding:
1041
+ - gzip, deflate
1042
+ Content-Type:
1043
+ - application/json
1044
+ User-Agent:
1045
+ - Ruby
1046
+ response:
1047
+ status:
1048
+ code: 200
1049
+ message: OK
1050
+ headers:
1051
+ Expires:
1052
+ - '0'
1053
+ Cache-Control:
1054
+ - no-cache, no-store, must-revalidate
1055
+ X-Powered-By:
1056
+ - Undertow/1
1057
+ Server:
1058
+ - WildFly/10
1059
+ Pragma:
1060
+ - no-cache
1061
+ Date:
1062
+ - Mon, 11 Apr 2016 15:19:46 GMT
1063
+ Connection:
1064
+ - keep-alive
1065
+ Content-Type:
1066
+ - application/json
1067
+ Content-Length:
1068
+ - '230'
1069
+ body:
1070
+ encoding: ASCII-8BIT
1071
+ string: |-
1072
+ {
1073
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1074
+ "name" : "ResourceType",
1075
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1076
+ }
1077
+ http_version:
1078
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1079
+ - request:
1080
+ method: post
1081
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources
1082
+ body:
1083
+ encoding: UTF-8
1084
+ string: '{"properties":{"version":1.0},"id":"0db29219-b87d-4710-9397-4da195a412dc-r126","name":"My
1085
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123"}'
1086
+ headers:
1087
+ Accept:
1088
+ - application/json
1089
+ Accept-Encoding:
1090
+ - gzip, deflate
1091
+ Content-Type:
1092
+ - application/json
1093
+ Content-Length:
1094
+ - '282'
1095
+ User-Agent:
1096
+ - Ruby
1097
+ response:
1098
+ status:
1099
+ code: 201
1100
+ message: Created
1101
+ headers:
1102
+ Expires:
1103
+ - '0'
1104
+ Cache-Control:
1105
+ - no-cache, no-store, must-revalidate
1106
+ X-Powered-By:
1107
+ - Undertow/1
1108
+ Server:
1109
+ - WildFly/10
1110
+ Pragma:
1111
+ - no-cache
1112
+ Location:
1113
+ - http://localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources/0db29219-b87d-4710-9397-4da195a412dc-r126
1114
+ Date:
1115
+ - Mon, 11 Apr 2016 15:19:46 GMT
1116
+ Connection:
1117
+ - keep-alive
1118
+ Content-Type:
1119
+ - application/json
1120
+ Content-Length:
1121
+ - '521'
1122
+ body:
1123
+ encoding: ASCII-8BIT
1124
+ string: |-
1125
+ {
1126
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/r;0db29219-b87d-4710-9397-4da195a412dc-r126",
1127
+ "type" : {
1128
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1129
+ "name" : "ResourceType",
1130
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1131
+ },
1132
+ "properties" : {
1133
+ "version" : 1.0
1134
+ },
1135
+ "name" : "My Resource 1",
1136
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-r126"
1137
+ }
1138
+ http_version:
1139
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1140
+ - request:
1141
+ method: get
1142
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources/0db29219-b87d-4710-9397-4da195a412dc-r126
1143
+ body:
1144
+ encoding: US-ASCII
1145
+ string: ''
1146
+ headers:
1147
+ Accept:
1148
+ - application/json
1149
+ Accept-Encoding:
1150
+ - gzip, deflate
1151
+ Content-Type:
1152
+ - application/json
1153
+ User-Agent:
1154
+ - Ruby
1155
+ response:
1156
+ status:
1157
+ code: 200
1158
+ message: OK
1159
+ headers:
1160
+ Expires:
1161
+ - '0'
1162
+ Cache-Control:
1163
+ - no-cache, no-store, must-revalidate
1164
+ X-Powered-By:
1165
+ - Undertow/1
1166
+ Server:
1167
+ - WildFly/10
1168
+ Pragma:
1169
+ - no-cache
1170
+ Date:
1171
+ - Mon, 11 Apr 2016 15:19:46 GMT
1172
+ Connection:
1173
+ - keep-alive
1174
+ Content-Type:
1175
+ - application/json
1176
+ Content-Length:
1177
+ - '521'
1178
+ body:
1179
+ encoding: ASCII-8BIT
1180
+ string: |-
1181
+ {
1182
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/r;0db29219-b87d-4710-9397-4da195a412dc-r126",
1183
+ "type" : {
1184
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1185
+ "name" : "ResourceType",
1186
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1187
+ },
1188
+ "properties" : {
1189
+ "version" : 1.0
1190
+ },
1191
+ "name" : "My Resource 1",
1192
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-r126"
1193
+ }
1194
+ http_version:
1195
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1196
+ - request:
1197
+ method: post
1198
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources
1199
+ body:
1200
+ encoding: UTF-8
1201
+ string: '{"properties":{"version":1.1},"id":"0db29219-b87d-4710-9397-4da195a412dc-r127","name":"My
1202
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123"}'
1203
+ headers:
1204
+ Accept:
1205
+ - application/json
1206
+ Accept-Encoding:
1207
+ - gzip, deflate
1208
+ Content-Type:
1209
+ - application/json
1210
+ Content-Length:
1211
+ - '282'
1212
+ User-Agent:
1213
+ - Ruby
1214
+ response:
1215
+ status:
1216
+ code: 201
1217
+ message: Created
1218
+ headers:
1219
+ Expires:
1220
+ - '0'
1221
+ Cache-Control:
1222
+ - no-cache, no-store, must-revalidate
1223
+ X-Powered-By:
1224
+ - Undertow/1
1225
+ Server:
1226
+ - WildFly/10
1227
+ Pragma:
1228
+ - no-cache
1229
+ Location:
1230
+ - http://localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources/0db29219-b87d-4710-9397-4da195a412dc-r127
1231
+ Date:
1232
+ - Mon, 11 Apr 2016 15:19:46 GMT
1233
+ Connection:
1234
+ - keep-alive
1235
+ Content-Type:
1236
+ - application/json
1237
+ Content-Length:
1238
+ - '521'
1239
+ body:
1240
+ encoding: ASCII-8BIT
1241
+ string: |-
1242
+ {
1243
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/r;0db29219-b87d-4710-9397-4da195a412dc-r127",
1244
+ "type" : {
1245
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1246
+ "name" : "ResourceType",
1247
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1248
+ },
1249
+ "properties" : {
1250
+ "version" : 1.1
1251
+ },
1252
+ "name" : "My Resource 2",
1253
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-r127"
1254
+ }
1255
+ http_version:
1256
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1257
+ - request:
1258
+ method: get
1259
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources/0db29219-b87d-4710-9397-4da195a412dc-r127
1260
+ body:
1261
+ encoding: US-ASCII
1262
+ string: ''
1263
+ headers:
1264
+ Accept:
1265
+ - application/json
1266
+ Accept-Encoding:
1267
+ - gzip, deflate
1268
+ Content-Type:
1269
+ - application/json
1270
+ User-Agent:
1271
+ - Ruby
1272
+ response:
1273
+ status:
1274
+ code: 200
1275
+ message: OK
1276
+ headers:
1277
+ Expires:
1278
+ - '0'
1279
+ Cache-Control:
1280
+ - no-cache, no-store, must-revalidate
1281
+ X-Powered-By:
1282
+ - Undertow/1
1283
+ Server:
1284
+ - WildFly/10
1285
+ Pragma:
1286
+ - no-cache
1287
+ Date:
1288
+ - Mon, 11 Apr 2016 15:19:46 GMT
1289
+ Connection:
1290
+ - keep-alive
1291
+ Content-Type:
1292
+ - application/json
1293
+ Content-Length:
1294
+ - '521'
1295
+ body:
1296
+ encoding: ASCII-8BIT
1297
+ string: |-
1298
+ {
1299
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/r;0db29219-b87d-4710-9397-4da195a412dc-r127",
1300
+ "type" : {
1301
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1302
+ "name" : "ResourceType",
1303
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1304
+ },
1305
+ "properties" : {
1306
+ "version" : 1.1
1307
+ },
1308
+ "name" : "My Resource 2",
1309
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-r127"
1310
+ }
1311
+ http_version:
1312
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1313
+ - request:
1314
+ method: post
1315
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources
1316
+ body:
1317
+ encoding: UTF-8
1318
+ string: '{"properties":{"version":1.2},"id":"0db29219-b87d-4710-9397-4da195a412dc-r128","name":"My
1319
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123"}'
1320
+ headers:
1321
+ Accept:
1322
+ - application/json
1323
+ Accept-Encoding:
1324
+ - gzip, deflate
1325
+ Content-Type:
1326
+ - application/json
1327
+ Content-Length:
1328
+ - '282'
1329
+ User-Agent:
1330
+ - Ruby
1331
+ response:
1332
+ status:
1333
+ code: 201
1334
+ message: Created
1335
+ headers:
1336
+ Expires:
1337
+ - '0'
1338
+ Cache-Control:
1339
+ - no-cache, no-store, must-revalidate
1340
+ X-Powered-By:
1341
+ - Undertow/1
1342
+ Server:
1343
+ - WildFly/10
1344
+ Pragma:
1345
+ - no-cache
1346
+ Location:
1347
+ - http://localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources/0db29219-b87d-4710-9397-4da195a412dc-r128
1348
+ Date:
1349
+ - Mon, 11 Apr 2016 15:19:46 GMT
1350
+ Connection:
1351
+ - keep-alive
1352
+ Content-Type:
1353
+ - application/json
1354
+ Content-Length:
1355
+ - '521'
1356
+ body:
1357
+ encoding: ASCII-8BIT
1358
+ string: |-
1359
+ {
1360
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/r;0db29219-b87d-4710-9397-4da195a412dc-r128",
1361
+ "type" : {
1362
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1363
+ "name" : "ResourceType",
1364
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1365
+ },
1366
+ "properties" : {
1367
+ "version" : 1.2
1368
+ },
1369
+ "name" : "My Resource 3",
1370
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-r128"
1371
+ }
1372
+ http_version:
1373
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1374
+ - request:
1375
+ method: get
1376
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed/resources/0db29219-b87d-4710-9397-4da195a412dc-r128
1377
+ body:
1378
+ encoding: US-ASCII
1379
+ string: ''
1380
+ headers:
1381
+ Accept:
1382
+ - application/json
1383
+ Accept-Encoding:
1384
+ - gzip, deflate
1385
+ Content-Type:
1386
+ - application/json
1387
+ User-Agent:
1388
+ - Ruby
1389
+ response:
1390
+ status:
1391
+ code: 200
1392
+ message: OK
1393
+ headers:
1394
+ Expires:
1395
+ - '0'
1396
+ Cache-Control:
1397
+ - no-cache, no-store, must-revalidate
1398
+ X-Powered-By:
1399
+ - Undertow/1
1400
+ Server:
1401
+ - WildFly/10
1402
+ Pragma:
1403
+ - no-cache
1404
+ Date:
1405
+ - Mon, 11 Apr 2016 15:19:46 GMT
1406
+ Connection:
1407
+ - keep-alive
1408
+ Content-Type:
1409
+ - application/json
1410
+ Content-Length:
1411
+ - '521'
1412
+ body:
1413
+ encoding: ASCII-8BIT
1414
+ string: |-
1415
+ {
1416
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/r;0db29219-b87d-4710-9397-4da195a412dc-r128",
1417
+ "type" : {
1418
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0db29219-b87d-4710-9397-4da195a412dc-feed/rt;0db29219-b87d-4710-9397-4da195a412dc-rt-123",
1419
+ "name" : "ResourceType",
1420
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-rt-123"
1421
+ },
1422
+ "properties" : {
1423
+ "version" : 1.2
1424
+ },
1425
+ "name" : "My Resource 3",
1426
+ "id" : "0db29219-b87d-4710-9397-4da195a412dc-r128"
1427
+ }
1428
+ http_version:
1429
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1430
+ - request:
1431
+ method: delete
1432
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0db29219-b87d-4710-9397-4da195a412dc-feed
1433
+ body:
1434
+ encoding: US-ASCII
1435
+ string: ''
1436
+ headers:
1437
+ Accept:
1438
+ - application/json
1439
+ Accept-Encoding:
1440
+ - gzip, deflate
1441
+ Content-Type:
1442
+ - application/json
1443
+ User-Agent:
1444
+ - Ruby
1445
+ response:
1446
+ status:
1447
+ code: 204
1448
+ message: No Content
1449
+ headers:
1450
+ Expires:
1451
+ - '0'
1452
+ Cache-Control:
1453
+ - no-cache, no-store, must-revalidate
1454
+ X-Powered-By:
1455
+ - Undertow/1
1456
+ Server:
1457
+ - WildFly/10
1458
+ Pragma:
1459
+ - no-cache
1460
+ Date:
1461
+ - Mon, 11 Apr 2016 15:19:46 GMT
1462
+ body:
1463
+ encoding: UTF-8
1464
+ string: ''
1465
+ http_version:
1466
+ recorded_at: Mon, 11 Apr 2016 15:19:46 GMT
1467
+ - request:
1468
+ method: post
1469
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resourceTypes
1470
+ body:
1471
+ encoding: UTF-8
1472
+ string: '{"properties":{},"id":"0d946561-2769-4238-963d-25ee4a3ffd16-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
1473
+ headers:
1474
+ Accept:
1475
+ - application/json
1476
+ Accept-Encoding:
1477
+ - gzip, deflate
1478
+ Content-Type:
1479
+ - application/json
1480
+ Content-Length:
1481
+ - '118'
1482
+ User-Agent:
1483
+ - Ruby
1484
+ response:
1485
+ status:
1486
+ code: 201
1487
+ message: Created
1488
+ headers:
1489
+ Expires:
1490
+ - '0'
1491
+ Cache-Control:
1492
+ - no-cache, no-store, must-revalidate
1493
+ X-Powered-By:
1494
+ - Undertow/1
1495
+ Server:
1496
+ - WildFly/10
1497
+ Pragma:
1498
+ - no-cache
1499
+ Location:
1500
+ - http://localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resourceTypes/0d946561-2769-4238-963d-25ee4a3ffd16-rt-123
1501
+ Date:
1502
+ - Mon, 11 Apr 2016 15:20:35 GMT
1503
+ Connection:
1504
+ - keep-alive
1505
+ Content-Type:
1506
+ - application/json
1507
+ Content-Length:
1508
+ - '230'
1509
+ body:
1510
+ encoding: ASCII-8BIT
1511
+ string: |-
1512
+ {
1513
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1514
+ "name" : "ResourceType",
1515
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1516
+ }
1517
+ http_version:
1518
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1519
+ - request:
1520
+ method: get
1521
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resourceTypes/0d946561-2769-4238-963d-25ee4a3ffd16-rt-123
1522
+ body:
1523
+ encoding: US-ASCII
1524
+ string: ''
1525
+ headers:
1526
+ Accept:
1527
+ - application/json
1528
+ Accept-Encoding:
1529
+ - gzip, deflate
1530
+ Content-Type:
1531
+ - application/json
1532
+ User-Agent:
1533
+ - Ruby
1534
+ response:
1535
+ status:
1536
+ code: 200
1537
+ message: OK
1538
+ headers:
1539
+ Expires:
1540
+ - '0'
1541
+ Cache-Control:
1542
+ - no-cache, no-store, must-revalidate
1543
+ X-Powered-By:
1544
+ - Undertow/1
1545
+ Server:
1546
+ - WildFly/10
1547
+ Pragma:
1548
+ - no-cache
1549
+ Date:
1550
+ - Mon, 11 Apr 2016 15:20:35 GMT
1551
+ Connection:
1552
+ - keep-alive
1553
+ Content-Type:
1554
+ - application/json
1555
+ Content-Length:
1556
+ - '230'
1557
+ body:
1558
+ encoding: ASCII-8BIT
1559
+ string: |-
1560
+ {
1561
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1562
+ "name" : "ResourceType",
1563
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1564
+ }
1565
+ http_version:
1566
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1567
+ - request:
1568
+ method: post
1569
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources
1570
+ body:
1571
+ encoding: UTF-8
1572
+ string: '{"properties":{"version":1.0},"id":"0d946561-2769-4238-963d-25ee4a3ffd16-r126","name":"My
1573
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"}'
1574
+ headers:
1575
+ Accept:
1576
+ - application/json
1577
+ Accept-Encoding:
1578
+ - gzip, deflate
1579
+ Content-Type:
1580
+ - application/json
1581
+ Content-Length:
1582
+ - '282'
1583
+ User-Agent:
1584
+ - Ruby
1585
+ response:
1586
+ status:
1587
+ code: 201
1588
+ message: Created
1589
+ headers:
1590
+ Expires:
1591
+ - '0'
1592
+ Cache-Control:
1593
+ - no-cache, no-store, must-revalidate
1594
+ X-Powered-By:
1595
+ - Undertow/1
1596
+ Server:
1597
+ - WildFly/10
1598
+ Pragma:
1599
+ - no-cache
1600
+ Location:
1601
+ - http://localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources/0d946561-2769-4238-963d-25ee4a3ffd16-r126
1602
+ Date:
1603
+ - Mon, 11 Apr 2016 15:20:35 GMT
1604
+ Connection:
1605
+ - keep-alive
1606
+ Content-Type:
1607
+ - application/json
1608
+ Content-Length:
1609
+ - '521'
1610
+ body:
1611
+ encoding: ASCII-8BIT
1612
+ string: |-
1613
+ {
1614
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/r;0d946561-2769-4238-963d-25ee4a3ffd16-r126",
1615
+ "type" : {
1616
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1617
+ "name" : "ResourceType",
1618
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1619
+ },
1620
+ "properties" : {
1621
+ "version" : 1.0
1622
+ },
1623
+ "name" : "My Resource 1",
1624
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-r126"
1625
+ }
1626
+ http_version:
1627
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1628
+ - request:
1629
+ method: get
1630
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources/0d946561-2769-4238-963d-25ee4a3ffd16-r126
1631
+ body:
1632
+ encoding: US-ASCII
1633
+ string: ''
1634
+ headers:
1635
+ Accept:
1636
+ - application/json
1637
+ Accept-Encoding:
1638
+ - gzip, deflate
1639
+ Content-Type:
1640
+ - application/json
1641
+ User-Agent:
1642
+ - Ruby
1643
+ response:
1644
+ status:
1645
+ code: 200
1646
+ message: OK
1647
+ headers:
1648
+ Expires:
1649
+ - '0'
1650
+ Cache-Control:
1651
+ - no-cache, no-store, must-revalidate
1652
+ X-Powered-By:
1653
+ - Undertow/1
1654
+ Server:
1655
+ - WildFly/10
1656
+ Pragma:
1657
+ - no-cache
1658
+ Date:
1659
+ - Mon, 11 Apr 2016 15:20:35 GMT
1660
+ Connection:
1661
+ - keep-alive
1662
+ Content-Type:
1663
+ - application/json
1664
+ Content-Length:
1665
+ - '521'
1666
+ body:
1667
+ encoding: ASCII-8BIT
1668
+ string: |-
1669
+ {
1670
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/r;0d946561-2769-4238-963d-25ee4a3ffd16-r126",
1671
+ "type" : {
1672
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1673
+ "name" : "ResourceType",
1674
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1675
+ },
1676
+ "properties" : {
1677
+ "version" : 1.0
1678
+ },
1679
+ "name" : "My Resource 1",
1680
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-r126"
1681
+ }
1682
+ http_version:
1683
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1684
+ - request:
1685
+ method: post
1686
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources
1687
+ body:
1688
+ encoding: UTF-8
1689
+ string: '{"properties":{"version":1.1},"id":"0d946561-2769-4238-963d-25ee4a3ffd16-r127","name":"My
1690
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"}'
1691
+ headers:
1692
+ Accept:
1693
+ - application/json
1694
+ Accept-Encoding:
1695
+ - gzip, deflate
1696
+ Content-Type:
1697
+ - application/json
1698
+ Content-Length:
1699
+ - '282'
1700
+ User-Agent:
1701
+ - Ruby
1702
+ response:
1703
+ status:
1704
+ code: 201
1705
+ message: Created
1706
+ headers:
1707
+ Expires:
1708
+ - '0'
1709
+ Cache-Control:
1710
+ - no-cache, no-store, must-revalidate
1711
+ X-Powered-By:
1712
+ - Undertow/1
1713
+ Server:
1714
+ - WildFly/10
1715
+ Pragma:
1716
+ - no-cache
1717
+ Location:
1718
+ - http://localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources/0d946561-2769-4238-963d-25ee4a3ffd16-r127
1719
+ Date:
1720
+ - Mon, 11 Apr 2016 15:20:35 GMT
1721
+ Connection:
1722
+ - keep-alive
1723
+ Content-Type:
1724
+ - application/json
1725
+ Content-Length:
1726
+ - '521'
1727
+ body:
1728
+ encoding: ASCII-8BIT
1729
+ string: |-
1730
+ {
1731
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/r;0d946561-2769-4238-963d-25ee4a3ffd16-r127",
1732
+ "type" : {
1733
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1734
+ "name" : "ResourceType",
1735
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1736
+ },
1737
+ "properties" : {
1738
+ "version" : 1.1
1739
+ },
1740
+ "name" : "My Resource 2",
1741
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-r127"
1742
+ }
1743
+ http_version:
1744
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1745
+ - request:
1746
+ method: get
1747
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources/0d946561-2769-4238-963d-25ee4a3ffd16-r127
1748
+ body:
1749
+ encoding: US-ASCII
1750
+ string: ''
1751
+ headers:
1752
+ Accept:
1753
+ - application/json
1754
+ Accept-Encoding:
1755
+ - gzip, deflate
1756
+ Content-Type:
1757
+ - application/json
1758
+ User-Agent:
1759
+ - Ruby
1760
+ response:
1761
+ status:
1762
+ code: 200
1763
+ message: OK
1764
+ headers:
1765
+ Expires:
1766
+ - '0'
1767
+ Cache-Control:
1768
+ - no-cache, no-store, must-revalidate
1769
+ X-Powered-By:
1770
+ - Undertow/1
1771
+ Server:
1772
+ - WildFly/10
1773
+ Pragma:
1774
+ - no-cache
1775
+ Date:
1776
+ - Mon, 11 Apr 2016 15:20:35 GMT
1777
+ Connection:
1778
+ - keep-alive
1779
+ Content-Type:
1780
+ - application/json
1781
+ Content-Length:
1782
+ - '521'
1783
+ body:
1784
+ encoding: ASCII-8BIT
1785
+ string: |-
1786
+ {
1787
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/r;0d946561-2769-4238-963d-25ee4a3ffd16-r127",
1788
+ "type" : {
1789
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1790
+ "name" : "ResourceType",
1791
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1792
+ },
1793
+ "properties" : {
1794
+ "version" : 1.1
1795
+ },
1796
+ "name" : "My Resource 2",
1797
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-r127"
1798
+ }
1799
+ http_version:
1800
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1801
+ - request:
1802
+ method: post
1803
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources
1804
+ body:
1805
+ encoding: UTF-8
1806
+ string: '{"properties":{"version":1.2},"id":"0d946561-2769-4238-963d-25ee4a3ffd16-r128","name":"My
1807
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"}'
1808
+ headers:
1809
+ Accept:
1810
+ - application/json
1811
+ Accept-Encoding:
1812
+ - gzip, deflate
1813
+ Content-Type:
1814
+ - application/json
1815
+ Content-Length:
1816
+ - '282'
1817
+ User-Agent:
1818
+ - Ruby
1819
+ response:
1820
+ status:
1821
+ code: 201
1822
+ message: Created
1823
+ headers:
1824
+ Expires:
1825
+ - '0'
1826
+ Cache-Control:
1827
+ - no-cache, no-store, must-revalidate
1828
+ X-Powered-By:
1829
+ - Undertow/1
1830
+ Server:
1831
+ - WildFly/10
1832
+ Pragma:
1833
+ - no-cache
1834
+ Location:
1835
+ - http://localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources/0d946561-2769-4238-963d-25ee4a3ffd16-r128
1836
+ Date:
1837
+ - Mon, 11 Apr 2016 15:20:35 GMT
1838
+ Connection:
1839
+ - keep-alive
1840
+ Content-Type:
1841
+ - application/json
1842
+ Content-Length:
1843
+ - '521'
1844
+ body:
1845
+ encoding: ASCII-8BIT
1846
+ string: |-
1847
+ {
1848
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/r;0d946561-2769-4238-963d-25ee4a3ffd16-r128",
1849
+ "type" : {
1850
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1851
+ "name" : "ResourceType",
1852
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1853
+ },
1854
+ "properties" : {
1855
+ "version" : 1.2
1856
+ },
1857
+ "name" : "My Resource 3",
1858
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-r128"
1859
+ }
1860
+ http_version:
1861
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1862
+ - request:
1863
+ method: get
1864
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed/resources/0d946561-2769-4238-963d-25ee4a3ffd16-r128
1865
+ body:
1866
+ encoding: US-ASCII
1867
+ string: ''
1868
+ headers:
1869
+ Accept:
1870
+ - application/json
1871
+ Accept-Encoding:
1872
+ - gzip, deflate
1873
+ Content-Type:
1874
+ - application/json
1875
+ User-Agent:
1876
+ - Ruby
1877
+ response:
1878
+ status:
1879
+ code: 200
1880
+ message: OK
1881
+ headers:
1882
+ Expires:
1883
+ - '0'
1884
+ Cache-Control:
1885
+ - no-cache, no-store, must-revalidate
1886
+ X-Powered-By:
1887
+ - Undertow/1
1888
+ Server:
1889
+ - WildFly/10
1890
+ Pragma:
1891
+ - no-cache
1892
+ Date:
1893
+ - Mon, 11 Apr 2016 15:20:35 GMT
1894
+ Connection:
1895
+ - keep-alive
1896
+ Content-Type:
1897
+ - application/json
1898
+ Content-Length:
1899
+ - '521'
1900
+ body:
1901
+ encoding: ASCII-8BIT
1902
+ string: |-
1903
+ {
1904
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/r;0d946561-2769-4238-963d-25ee4a3ffd16-r128",
1905
+ "type" : {
1906
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0d946561-2769-4238-963d-25ee4a3ffd16-feed/rt;0d946561-2769-4238-963d-25ee4a3ffd16-rt-123",
1907
+ "name" : "ResourceType",
1908
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-rt-123"
1909
+ },
1910
+ "properties" : {
1911
+ "version" : 1.2
1912
+ },
1913
+ "name" : "My Resource 3",
1914
+ "id" : "0d946561-2769-4238-963d-25ee4a3ffd16-r128"
1915
+ }
1916
+ http_version:
1917
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1918
+ - request:
1919
+ method: delete
1920
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0d946561-2769-4238-963d-25ee4a3ffd16-feed
1921
+ body:
1922
+ encoding: US-ASCII
1923
+ string: ''
1924
+ headers:
1925
+ Accept:
1926
+ - application/json
1927
+ Accept-Encoding:
1928
+ - gzip, deflate
1929
+ Content-Type:
1930
+ - application/json
1931
+ User-Agent:
1932
+ - Ruby
1933
+ response:
1934
+ status:
1935
+ code: 204
1936
+ message: No Content
1937
+ headers:
1938
+ Expires:
1939
+ - '0'
1940
+ Cache-Control:
1941
+ - no-cache, no-store, must-revalidate
1942
+ X-Powered-By:
1943
+ - Undertow/1
1944
+ Server:
1945
+ - WildFly/10
1946
+ Pragma:
1947
+ - no-cache
1948
+ Date:
1949
+ - Mon, 11 Apr 2016 15:20:35 GMT
1950
+ body:
1951
+ encoding: UTF-8
1952
+ string: ''
1953
+ http_version:
1954
+ recorded_at: Mon, 11 Apr 2016 15:20:35 GMT
1955
+ - request:
1956
+ method: post
1957
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resourceTypes
1958
+ body:
1959
+ encoding: UTF-8
1960
+ string: '{"properties":{},"id":"01636c3d-4658-48cc-9160-ef33e33b756f-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
1961
+ headers:
1962
+ Accept:
1963
+ - application/json
1964
+ Accept-Encoding:
1965
+ - gzip, deflate
1966
+ Content-Type:
1967
+ - application/json
1968
+ Content-Length:
1969
+ - '118'
1970
+ User-Agent:
1971
+ - Ruby
1972
+ response:
1973
+ status:
1974
+ code: 201
1975
+ message: Created
1976
+ headers:
1977
+ Expires:
1978
+ - '0'
1979
+ Cache-Control:
1980
+ - no-cache, no-store, must-revalidate
1981
+ X-Powered-By:
1982
+ - Undertow/1
1983
+ Server:
1984
+ - WildFly/10
1985
+ Pragma:
1986
+ - no-cache
1987
+ Location:
1988
+ - http://localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resourceTypes/01636c3d-4658-48cc-9160-ef33e33b756f-rt-123
1989
+ Date:
1990
+ - Mon, 11 Apr 2016 15:20:59 GMT
1991
+ Connection:
1992
+ - keep-alive
1993
+ Content-Type:
1994
+ - application/json
1995
+ Content-Length:
1996
+ - '230'
1997
+ body:
1998
+ encoding: ASCII-8BIT
1999
+ string: |-
2000
+ {
2001
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2002
+ "name" : "ResourceType",
2003
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2004
+ }
2005
+ http_version:
2006
+ recorded_at: Mon, 11 Apr 2016 15:20:59 GMT
2007
+ - request:
2008
+ method: get
2009
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resourceTypes/01636c3d-4658-48cc-9160-ef33e33b756f-rt-123
2010
+ body:
2011
+ encoding: US-ASCII
2012
+ string: ''
2013
+ headers:
2014
+ Accept:
2015
+ - application/json
2016
+ Accept-Encoding:
2017
+ - gzip, deflate
2018
+ Content-Type:
2019
+ - application/json
2020
+ User-Agent:
2021
+ - Ruby
2022
+ response:
2023
+ status:
2024
+ code: 200
2025
+ message: OK
2026
+ headers:
2027
+ Expires:
2028
+ - '0'
2029
+ Cache-Control:
2030
+ - no-cache, no-store, must-revalidate
2031
+ X-Powered-By:
2032
+ - Undertow/1
2033
+ Server:
2034
+ - WildFly/10
2035
+ Pragma:
2036
+ - no-cache
2037
+ Date:
2038
+ - Mon, 11 Apr 2016 15:21:00 GMT
2039
+ Connection:
2040
+ - keep-alive
2041
+ Content-Type:
2042
+ - application/json
2043
+ Content-Length:
2044
+ - '230'
2045
+ body:
2046
+ encoding: ASCII-8BIT
2047
+ string: |-
2048
+ {
2049
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2050
+ "name" : "ResourceType",
2051
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2052
+ }
2053
+ http_version:
2054
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2055
+ - request:
2056
+ method: post
2057
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources
2058
+ body:
2059
+ encoding: UTF-8
2060
+ string: '{"properties":{"version":1.0},"id":"01636c3d-4658-48cc-9160-ef33e33b756f-r126","name":"My
2061
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"}'
2062
+ headers:
2063
+ Accept:
2064
+ - application/json
2065
+ Accept-Encoding:
2066
+ - gzip, deflate
2067
+ Content-Type:
2068
+ - application/json
2069
+ Content-Length:
2070
+ - '282'
2071
+ User-Agent:
2072
+ - Ruby
2073
+ response:
2074
+ status:
2075
+ code: 201
2076
+ message: Created
2077
+ headers:
2078
+ Expires:
2079
+ - '0'
2080
+ Cache-Control:
2081
+ - no-cache, no-store, must-revalidate
2082
+ X-Powered-By:
2083
+ - Undertow/1
2084
+ Server:
2085
+ - WildFly/10
2086
+ Pragma:
2087
+ - no-cache
2088
+ Location:
2089
+ - http://localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources/01636c3d-4658-48cc-9160-ef33e33b756f-r126
2090
+ Date:
2091
+ - Mon, 11 Apr 2016 15:21:00 GMT
2092
+ Connection:
2093
+ - keep-alive
2094
+ Content-Type:
2095
+ - application/json
2096
+ Content-Length:
2097
+ - '521'
2098
+ body:
2099
+ encoding: ASCII-8BIT
2100
+ string: |-
2101
+ {
2102
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/r;01636c3d-4658-48cc-9160-ef33e33b756f-r126",
2103
+ "type" : {
2104
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2105
+ "name" : "ResourceType",
2106
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2107
+ },
2108
+ "properties" : {
2109
+ "version" : 1.0
2110
+ },
2111
+ "name" : "My Resource 1",
2112
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-r126"
2113
+ }
2114
+ http_version:
2115
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2116
+ - request:
2117
+ method: get
2118
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources/01636c3d-4658-48cc-9160-ef33e33b756f-r126
2119
+ body:
2120
+ encoding: US-ASCII
2121
+ string: ''
2122
+ headers:
2123
+ Accept:
2124
+ - application/json
2125
+ Accept-Encoding:
2126
+ - gzip, deflate
2127
+ Content-Type:
2128
+ - application/json
2129
+ User-Agent:
2130
+ - Ruby
2131
+ response:
2132
+ status:
2133
+ code: 200
2134
+ message: OK
2135
+ headers:
2136
+ Expires:
2137
+ - '0'
2138
+ Cache-Control:
2139
+ - no-cache, no-store, must-revalidate
2140
+ X-Powered-By:
2141
+ - Undertow/1
2142
+ Server:
2143
+ - WildFly/10
2144
+ Pragma:
2145
+ - no-cache
2146
+ Date:
2147
+ - Mon, 11 Apr 2016 15:21:00 GMT
2148
+ Connection:
2149
+ - keep-alive
2150
+ Content-Type:
2151
+ - application/json
2152
+ Content-Length:
2153
+ - '521'
2154
+ body:
2155
+ encoding: ASCII-8BIT
2156
+ string: |-
2157
+ {
2158
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/r;01636c3d-4658-48cc-9160-ef33e33b756f-r126",
2159
+ "type" : {
2160
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2161
+ "name" : "ResourceType",
2162
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2163
+ },
2164
+ "properties" : {
2165
+ "version" : 1.0
2166
+ },
2167
+ "name" : "My Resource 1",
2168
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-r126"
2169
+ }
2170
+ http_version:
2171
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2172
+ - request:
2173
+ method: post
2174
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources
2175
+ body:
2176
+ encoding: UTF-8
2177
+ string: '{"properties":{"version":1.1},"id":"01636c3d-4658-48cc-9160-ef33e33b756f-r127","name":"My
2178
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"}'
2179
+ headers:
2180
+ Accept:
2181
+ - application/json
2182
+ Accept-Encoding:
2183
+ - gzip, deflate
2184
+ Content-Type:
2185
+ - application/json
2186
+ Content-Length:
2187
+ - '282'
2188
+ User-Agent:
2189
+ - Ruby
2190
+ response:
2191
+ status:
2192
+ code: 201
2193
+ message: Created
2194
+ headers:
2195
+ Expires:
2196
+ - '0'
2197
+ Cache-Control:
2198
+ - no-cache, no-store, must-revalidate
2199
+ X-Powered-By:
2200
+ - Undertow/1
2201
+ Server:
2202
+ - WildFly/10
2203
+ Pragma:
2204
+ - no-cache
2205
+ Location:
2206
+ - http://localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources/01636c3d-4658-48cc-9160-ef33e33b756f-r127
2207
+ Date:
2208
+ - Mon, 11 Apr 2016 15:21:00 GMT
2209
+ Connection:
2210
+ - keep-alive
2211
+ Content-Type:
2212
+ - application/json
2213
+ Content-Length:
2214
+ - '521'
2215
+ body:
2216
+ encoding: ASCII-8BIT
2217
+ string: |-
2218
+ {
2219
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/r;01636c3d-4658-48cc-9160-ef33e33b756f-r127",
2220
+ "type" : {
2221
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2222
+ "name" : "ResourceType",
2223
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2224
+ },
2225
+ "properties" : {
2226
+ "version" : 1.1
2227
+ },
2228
+ "name" : "My Resource 2",
2229
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-r127"
2230
+ }
2231
+ http_version:
2232
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2233
+ - request:
2234
+ method: get
2235
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources/01636c3d-4658-48cc-9160-ef33e33b756f-r127
2236
+ body:
2237
+ encoding: US-ASCII
2238
+ string: ''
2239
+ headers:
2240
+ Accept:
2241
+ - application/json
2242
+ Accept-Encoding:
2243
+ - gzip, deflate
2244
+ Content-Type:
2245
+ - application/json
2246
+ User-Agent:
2247
+ - Ruby
2248
+ response:
2249
+ status:
2250
+ code: 200
2251
+ message: OK
2252
+ headers:
2253
+ Expires:
2254
+ - '0'
2255
+ Cache-Control:
2256
+ - no-cache, no-store, must-revalidate
2257
+ X-Powered-By:
2258
+ - Undertow/1
2259
+ Server:
2260
+ - WildFly/10
2261
+ Pragma:
2262
+ - no-cache
2263
+ Date:
2264
+ - Mon, 11 Apr 2016 15:21:00 GMT
2265
+ Connection:
2266
+ - keep-alive
2267
+ Content-Type:
2268
+ - application/json
2269
+ Content-Length:
2270
+ - '521'
2271
+ body:
2272
+ encoding: ASCII-8BIT
2273
+ string: |-
2274
+ {
2275
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/r;01636c3d-4658-48cc-9160-ef33e33b756f-r127",
2276
+ "type" : {
2277
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2278
+ "name" : "ResourceType",
2279
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2280
+ },
2281
+ "properties" : {
2282
+ "version" : 1.1
2283
+ },
2284
+ "name" : "My Resource 2",
2285
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-r127"
2286
+ }
2287
+ http_version:
2288
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2289
+ - request:
2290
+ method: post
2291
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources
2292
+ body:
2293
+ encoding: UTF-8
2294
+ string: '{"properties":{"version":1.2},"id":"01636c3d-4658-48cc-9160-ef33e33b756f-r128","name":"My
2295
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"}'
2296
+ headers:
2297
+ Accept:
2298
+ - application/json
2299
+ Accept-Encoding:
2300
+ - gzip, deflate
2301
+ Content-Type:
2302
+ - application/json
2303
+ Content-Length:
2304
+ - '282'
2305
+ User-Agent:
2306
+ - Ruby
2307
+ response:
2308
+ status:
2309
+ code: 201
2310
+ message: Created
2311
+ headers:
2312
+ Expires:
2313
+ - '0'
2314
+ Cache-Control:
2315
+ - no-cache, no-store, must-revalidate
2316
+ X-Powered-By:
2317
+ - Undertow/1
2318
+ Server:
2319
+ - WildFly/10
2320
+ Pragma:
2321
+ - no-cache
2322
+ Location:
2323
+ - http://localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources/01636c3d-4658-48cc-9160-ef33e33b756f-r128
2324
+ Date:
2325
+ - Mon, 11 Apr 2016 15:21:00 GMT
2326
+ Connection:
2327
+ - keep-alive
2328
+ Content-Type:
2329
+ - application/json
2330
+ Content-Length:
2331
+ - '521'
2332
+ body:
2333
+ encoding: ASCII-8BIT
2334
+ string: |-
2335
+ {
2336
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/r;01636c3d-4658-48cc-9160-ef33e33b756f-r128",
2337
+ "type" : {
2338
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2339
+ "name" : "ResourceType",
2340
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2341
+ },
2342
+ "properties" : {
2343
+ "version" : 1.2
2344
+ },
2345
+ "name" : "My Resource 3",
2346
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-r128"
2347
+ }
2348
+ http_version:
2349
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2350
+ - request:
2351
+ method: get
2352
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed/resources/01636c3d-4658-48cc-9160-ef33e33b756f-r128
2353
+ body:
2354
+ encoding: US-ASCII
2355
+ string: ''
2356
+ headers:
2357
+ Accept:
2358
+ - application/json
2359
+ Accept-Encoding:
2360
+ - gzip, deflate
2361
+ Content-Type:
2362
+ - application/json
2363
+ User-Agent:
2364
+ - Ruby
2365
+ response:
2366
+ status:
2367
+ code: 200
2368
+ message: OK
2369
+ headers:
2370
+ Expires:
2371
+ - '0'
2372
+ Cache-Control:
2373
+ - no-cache, no-store, must-revalidate
2374
+ X-Powered-By:
2375
+ - Undertow/1
2376
+ Server:
2377
+ - WildFly/10
2378
+ Pragma:
2379
+ - no-cache
2380
+ Date:
2381
+ - Mon, 11 Apr 2016 15:21:00 GMT
2382
+ Connection:
2383
+ - keep-alive
2384
+ Content-Type:
2385
+ - application/json
2386
+ Content-Length:
2387
+ - '521'
2388
+ body:
2389
+ encoding: ASCII-8BIT
2390
+ string: |-
2391
+ {
2392
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/r;01636c3d-4658-48cc-9160-ef33e33b756f-r128",
2393
+ "type" : {
2394
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;01636c3d-4658-48cc-9160-ef33e33b756f-feed/rt;01636c3d-4658-48cc-9160-ef33e33b756f-rt-123",
2395
+ "name" : "ResourceType",
2396
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-rt-123"
2397
+ },
2398
+ "properties" : {
2399
+ "version" : 1.2
2400
+ },
2401
+ "name" : "My Resource 3",
2402
+ "id" : "01636c3d-4658-48cc-9160-ef33e33b756f-r128"
2403
+ }
2404
+ http_version:
2405
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2406
+ - request:
2407
+ method: delete
2408
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/01636c3d-4658-48cc-9160-ef33e33b756f-feed
2409
+ body:
2410
+ encoding: US-ASCII
2411
+ string: ''
2412
+ headers:
2413
+ Accept:
2414
+ - application/json
2415
+ Accept-Encoding:
2416
+ - gzip, deflate
2417
+ Content-Type:
2418
+ - application/json
2419
+ User-Agent:
2420
+ - Ruby
2421
+ response:
2422
+ status:
2423
+ code: 204
2424
+ message: No Content
2425
+ headers:
2426
+ Expires:
2427
+ - '0'
2428
+ Cache-Control:
2429
+ - no-cache, no-store, must-revalidate
2430
+ X-Powered-By:
2431
+ - Undertow/1
2432
+ Server:
2433
+ - WildFly/10
2434
+ Pragma:
2435
+ - no-cache
2436
+ Date:
2437
+ - Mon, 11 Apr 2016 15:21:00 GMT
2438
+ body:
2439
+ encoding: UTF-8
2440
+ string: ''
2441
+ http_version:
2442
+ recorded_at: Mon, 11 Apr 2016 15:21:00 GMT
2443
+ - request:
2444
+ method: post
2445
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resourceTypes
2446
+ body:
2447
+ encoding: UTF-8
2448
+ string: '{"properties":{},"id":"714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
2449
+ headers:
2450
+ Accept:
2451
+ - application/json
2452
+ Accept-Encoding:
2453
+ - gzip, deflate
2454
+ Content-Type:
2455
+ - application/json
2456
+ Content-Length:
2457
+ - '118'
2458
+ User-Agent:
2459
+ - Ruby
2460
+ response:
2461
+ status:
2462
+ code: 201
2463
+ message: Created
2464
+ headers:
2465
+ Expires:
2466
+ - '0'
2467
+ Cache-Control:
2468
+ - no-cache, no-store, must-revalidate
2469
+ X-Powered-By:
2470
+ - Undertow/1
2471
+ Server:
2472
+ - WildFly/10
2473
+ Pragma:
2474
+ - no-cache
2475
+ Location:
2476
+ - http://localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resourceTypes/714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123
2477
+ Date:
2478
+ - Mon, 11 Apr 2016 15:25:31 GMT
2479
+ Connection:
2480
+ - keep-alive
2481
+ Content-Type:
2482
+ - application/json
2483
+ Content-Length:
2484
+ - '230'
2485
+ body:
2486
+ encoding: ASCII-8BIT
2487
+ string: |-
2488
+ {
2489
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2490
+ "name" : "ResourceType",
2491
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2492
+ }
2493
+ http_version:
2494
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2495
+ - request:
2496
+ method: get
2497
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resourceTypes/714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123
2498
+ body:
2499
+ encoding: US-ASCII
2500
+ string: ''
2501
+ headers:
2502
+ Accept:
2503
+ - application/json
2504
+ Accept-Encoding:
2505
+ - gzip, deflate
2506
+ Content-Type:
2507
+ - application/json
2508
+ User-Agent:
2509
+ - Ruby
2510
+ response:
2511
+ status:
2512
+ code: 200
2513
+ message: OK
2514
+ headers:
2515
+ Expires:
2516
+ - '0'
2517
+ Cache-Control:
2518
+ - no-cache, no-store, must-revalidate
2519
+ X-Powered-By:
2520
+ - Undertow/1
2521
+ Server:
2522
+ - WildFly/10
2523
+ Pragma:
2524
+ - no-cache
2525
+ Date:
2526
+ - Mon, 11 Apr 2016 15:25:31 GMT
2527
+ Connection:
2528
+ - keep-alive
2529
+ Content-Type:
2530
+ - application/json
2531
+ Content-Length:
2532
+ - '230'
2533
+ body:
2534
+ encoding: ASCII-8BIT
2535
+ string: |-
2536
+ {
2537
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2538
+ "name" : "ResourceType",
2539
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2540
+ }
2541
+ http_version:
2542
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2543
+ - request:
2544
+ method: post
2545
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources
2546
+ body:
2547
+ encoding: UTF-8
2548
+ string: '{"properties":{"version":1.0},"id":"714a18fa-610d-4dcd-abd5-f816c7914b90-r126","name":"My
2549
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"}'
2550
+ headers:
2551
+ Accept:
2552
+ - application/json
2553
+ Accept-Encoding:
2554
+ - gzip, deflate
2555
+ Content-Type:
2556
+ - application/json
2557
+ Content-Length:
2558
+ - '282'
2559
+ User-Agent:
2560
+ - Ruby
2561
+ response:
2562
+ status:
2563
+ code: 201
2564
+ message: Created
2565
+ headers:
2566
+ Expires:
2567
+ - '0'
2568
+ Cache-Control:
2569
+ - no-cache, no-store, must-revalidate
2570
+ X-Powered-By:
2571
+ - Undertow/1
2572
+ Server:
2573
+ - WildFly/10
2574
+ Pragma:
2575
+ - no-cache
2576
+ Location:
2577
+ - http://localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources/714a18fa-610d-4dcd-abd5-f816c7914b90-r126
2578
+ Date:
2579
+ - Mon, 11 Apr 2016 15:25:31 GMT
2580
+ Connection:
2581
+ - keep-alive
2582
+ Content-Type:
2583
+ - application/json
2584
+ Content-Length:
2585
+ - '521'
2586
+ body:
2587
+ encoding: ASCII-8BIT
2588
+ string: |-
2589
+ {
2590
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/r;714a18fa-610d-4dcd-abd5-f816c7914b90-r126",
2591
+ "type" : {
2592
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2593
+ "name" : "ResourceType",
2594
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2595
+ },
2596
+ "properties" : {
2597
+ "version" : 1.0
2598
+ },
2599
+ "name" : "My Resource 1",
2600
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-r126"
2601
+ }
2602
+ http_version:
2603
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2604
+ - request:
2605
+ method: get
2606
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources/714a18fa-610d-4dcd-abd5-f816c7914b90-r126
2607
+ body:
2608
+ encoding: US-ASCII
2609
+ string: ''
2610
+ headers:
2611
+ Accept:
2612
+ - application/json
2613
+ Accept-Encoding:
2614
+ - gzip, deflate
2615
+ Content-Type:
2616
+ - application/json
2617
+ User-Agent:
2618
+ - Ruby
2619
+ response:
2620
+ status:
2621
+ code: 200
2622
+ message: OK
2623
+ headers:
2624
+ Expires:
2625
+ - '0'
2626
+ Cache-Control:
2627
+ - no-cache, no-store, must-revalidate
2628
+ X-Powered-By:
2629
+ - Undertow/1
2630
+ Server:
2631
+ - WildFly/10
2632
+ Pragma:
2633
+ - no-cache
2634
+ Date:
2635
+ - Mon, 11 Apr 2016 15:25:31 GMT
2636
+ Connection:
2637
+ - keep-alive
2638
+ Content-Type:
2639
+ - application/json
2640
+ Content-Length:
2641
+ - '521'
2642
+ body:
2643
+ encoding: ASCII-8BIT
2644
+ string: |-
2645
+ {
2646
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/r;714a18fa-610d-4dcd-abd5-f816c7914b90-r126",
2647
+ "type" : {
2648
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2649
+ "name" : "ResourceType",
2650
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2651
+ },
2652
+ "properties" : {
2653
+ "version" : 1.0
2654
+ },
2655
+ "name" : "My Resource 1",
2656
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-r126"
2657
+ }
2658
+ http_version:
2659
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2660
+ - request:
2661
+ method: post
2662
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources
2663
+ body:
2664
+ encoding: UTF-8
2665
+ string: '{"properties":{"version":1.1},"id":"714a18fa-610d-4dcd-abd5-f816c7914b90-r127","name":"My
2666
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"}'
2667
+ headers:
2668
+ Accept:
2669
+ - application/json
2670
+ Accept-Encoding:
2671
+ - gzip, deflate
2672
+ Content-Type:
2673
+ - application/json
2674
+ Content-Length:
2675
+ - '282'
2676
+ User-Agent:
2677
+ - Ruby
2678
+ response:
2679
+ status:
2680
+ code: 201
2681
+ message: Created
2682
+ headers:
2683
+ Expires:
2684
+ - '0'
2685
+ Cache-Control:
2686
+ - no-cache, no-store, must-revalidate
2687
+ X-Powered-By:
2688
+ - Undertow/1
2689
+ Server:
2690
+ - WildFly/10
2691
+ Pragma:
2692
+ - no-cache
2693
+ Location:
2694
+ - http://localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources/714a18fa-610d-4dcd-abd5-f816c7914b90-r127
2695
+ Date:
2696
+ - Mon, 11 Apr 2016 15:25:31 GMT
2697
+ Connection:
2698
+ - keep-alive
2699
+ Content-Type:
2700
+ - application/json
2701
+ Content-Length:
2702
+ - '521'
2703
+ body:
2704
+ encoding: ASCII-8BIT
2705
+ string: |-
2706
+ {
2707
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/r;714a18fa-610d-4dcd-abd5-f816c7914b90-r127",
2708
+ "type" : {
2709
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2710
+ "name" : "ResourceType",
2711
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2712
+ },
2713
+ "properties" : {
2714
+ "version" : 1.1
2715
+ },
2716
+ "name" : "My Resource 2",
2717
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-r127"
2718
+ }
2719
+ http_version:
2720
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2721
+ - request:
2722
+ method: get
2723
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources/714a18fa-610d-4dcd-abd5-f816c7914b90-r127
2724
+ body:
2725
+ encoding: US-ASCII
2726
+ string: ''
2727
+ headers:
2728
+ Accept:
2729
+ - application/json
2730
+ Accept-Encoding:
2731
+ - gzip, deflate
2732
+ Content-Type:
2733
+ - application/json
2734
+ User-Agent:
2735
+ - Ruby
2736
+ response:
2737
+ status:
2738
+ code: 200
2739
+ message: OK
2740
+ headers:
2741
+ Expires:
2742
+ - '0'
2743
+ Cache-Control:
2744
+ - no-cache, no-store, must-revalidate
2745
+ X-Powered-By:
2746
+ - Undertow/1
2747
+ Server:
2748
+ - WildFly/10
2749
+ Pragma:
2750
+ - no-cache
2751
+ Date:
2752
+ - Mon, 11 Apr 2016 15:25:31 GMT
2753
+ Connection:
2754
+ - keep-alive
2755
+ Content-Type:
2756
+ - application/json
2757
+ Content-Length:
2758
+ - '521'
2759
+ body:
2760
+ encoding: ASCII-8BIT
2761
+ string: |-
2762
+ {
2763
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/r;714a18fa-610d-4dcd-abd5-f816c7914b90-r127",
2764
+ "type" : {
2765
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2766
+ "name" : "ResourceType",
2767
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2768
+ },
2769
+ "properties" : {
2770
+ "version" : 1.1
2771
+ },
2772
+ "name" : "My Resource 2",
2773
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-r127"
2774
+ }
2775
+ http_version:
2776
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2777
+ - request:
2778
+ method: post
2779
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources
2780
+ body:
2781
+ encoding: UTF-8
2782
+ string: '{"properties":{"version":1.2},"id":"714a18fa-610d-4dcd-abd5-f816c7914b90-r128","name":"My
2783
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"}'
2784
+ headers:
2785
+ Accept:
2786
+ - application/json
2787
+ Accept-Encoding:
2788
+ - gzip, deflate
2789
+ Content-Type:
2790
+ - application/json
2791
+ Content-Length:
2792
+ - '282'
2793
+ User-Agent:
2794
+ - Ruby
2795
+ response:
2796
+ status:
2797
+ code: 201
2798
+ message: Created
2799
+ headers:
2800
+ Expires:
2801
+ - '0'
2802
+ Cache-Control:
2803
+ - no-cache, no-store, must-revalidate
2804
+ X-Powered-By:
2805
+ - Undertow/1
2806
+ Server:
2807
+ - WildFly/10
2808
+ Pragma:
2809
+ - no-cache
2810
+ Location:
2811
+ - http://localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources/714a18fa-610d-4dcd-abd5-f816c7914b90-r128
2812
+ Date:
2813
+ - Mon, 11 Apr 2016 15:25:31 GMT
2814
+ Connection:
2815
+ - keep-alive
2816
+ Content-Type:
2817
+ - application/json
2818
+ Content-Length:
2819
+ - '521'
2820
+ body:
2821
+ encoding: ASCII-8BIT
2822
+ string: |-
2823
+ {
2824
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/r;714a18fa-610d-4dcd-abd5-f816c7914b90-r128",
2825
+ "type" : {
2826
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2827
+ "name" : "ResourceType",
2828
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2829
+ },
2830
+ "properties" : {
2831
+ "version" : 1.2
2832
+ },
2833
+ "name" : "My Resource 3",
2834
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-r128"
2835
+ }
2836
+ http_version:
2837
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2838
+ - request:
2839
+ method: get
2840
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed/resources/714a18fa-610d-4dcd-abd5-f816c7914b90-r128
2841
+ body:
2842
+ encoding: US-ASCII
2843
+ string: ''
2844
+ headers:
2845
+ Accept:
2846
+ - application/json
2847
+ Accept-Encoding:
2848
+ - gzip, deflate
2849
+ Content-Type:
2850
+ - application/json
2851
+ User-Agent:
2852
+ - Ruby
2853
+ response:
2854
+ status:
2855
+ code: 200
2856
+ message: OK
2857
+ headers:
2858
+ Expires:
2859
+ - '0'
2860
+ Cache-Control:
2861
+ - no-cache, no-store, must-revalidate
2862
+ X-Powered-By:
2863
+ - Undertow/1
2864
+ Server:
2865
+ - WildFly/10
2866
+ Pragma:
2867
+ - no-cache
2868
+ Date:
2869
+ - Mon, 11 Apr 2016 15:25:31 GMT
2870
+ Connection:
2871
+ - keep-alive
2872
+ Content-Type:
2873
+ - application/json
2874
+ Content-Length:
2875
+ - '521'
2876
+ body:
2877
+ encoding: ASCII-8BIT
2878
+ string: |-
2879
+ {
2880
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/r;714a18fa-610d-4dcd-abd5-f816c7914b90-r128",
2881
+ "type" : {
2882
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;714a18fa-610d-4dcd-abd5-f816c7914b90-feed/rt;714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123",
2883
+ "name" : "ResourceType",
2884
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-rt-123"
2885
+ },
2886
+ "properties" : {
2887
+ "version" : 1.2
2888
+ },
2889
+ "name" : "My Resource 3",
2890
+ "id" : "714a18fa-610d-4dcd-abd5-f816c7914b90-r128"
2891
+ }
2892
+ http_version:
2893
+ recorded_at: Mon, 11 Apr 2016 15:25:31 GMT
2894
+ - request:
2895
+ method: delete
2896
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/714a18fa-610d-4dcd-abd5-f816c7914b90-feed
2897
+ body:
2898
+ encoding: US-ASCII
2899
+ string: ''
2900
+ headers:
2901
+ Accept:
2902
+ - application/json
2903
+ Accept-Encoding:
2904
+ - gzip, deflate
2905
+ Content-Type:
2906
+ - application/json
2907
+ User-Agent:
2908
+ - Ruby
2909
+ response:
2910
+ status:
2911
+ code: 204
2912
+ message: No Content
2913
+ headers:
2914
+ Expires:
2915
+ - '0'
2916
+ Cache-Control:
2917
+ - no-cache, no-store, must-revalidate
2918
+ X-Powered-By:
2919
+ - Undertow/1
2920
+ Server:
2921
+ - WildFly/10
2922
+ Pragma:
2923
+ - no-cache
2924
+ Date:
2925
+ - Mon, 11 Apr 2016 15:25:32 GMT
2926
+ body:
2927
+ encoding: UTF-8
2928
+ string: ''
2929
+ http_version:
2930
+ recorded_at: Mon, 11 Apr 2016 15:25:32 GMT
2931
+ - request:
2932
+ method: post
2933
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resourceTypes
2934
+ body:
2935
+ encoding: UTF-8
2936
+ string: '{"properties":{},"id":"0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
2937
+ headers:
2938
+ Accept:
2939
+ - application/json
2940
+ Accept-Encoding:
2941
+ - gzip, deflate
2942
+ Content-Type:
2943
+ - application/json
2944
+ Content-Length:
2945
+ - '118'
2946
+ User-Agent:
2947
+ - Ruby
2948
+ response:
2949
+ status:
2950
+ code: 201
2951
+ message: Created
2952
+ headers:
2953
+ Expires:
2954
+ - '0'
2955
+ Cache-Control:
2956
+ - no-cache, no-store, must-revalidate
2957
+ X-Powered-By:
2958
+ - Undertow/1
2959
+ Server:
2960
+ - WildFly/10
2961
+ Pragma:
2962
+ - no-cache
2963
+ Location:
2964
+ - http://localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resourceTypes/0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123
2965
+ Date:
2966
+ - Mon, 11 Apr 2016 15:29:17 GMT
2967
+ Connection:
2968
+ - keep-alive
2969
+ Content-Type:
2970
+ - application/json
2971
+ Content-Length:
2972
+ - '230'
2973
+ body:
2974
+ encoding: ASCII-8BIT
2975
+ string: |-
2976
+ {
2977
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
2978
+ "name" : "ResourceType",
2979
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
2980
+ }
2981
+ http_version:
2982
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
2983
+ - request:
2984
+ method: get
2985
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resourceTypes/0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123
2986
+ body:
2987
+ encoding: US-ASCII
2988
+ string: ''
2989
+ headers:
2990
+ Accept:
2991
+ - application/json
2992
+ Accept-Encoding:
2993
+ - gzip, deflate
2994
+ Content-Type:
2995
+ - application/json
2996
+ User-Agent:
2997
+ - Ruby
2998
+ response:
2999
+ status:
3000
+ code: 200
3001
+ message: OK
3002
+ headers:
3003
+ Expires:
3004
+ - '0'
3005
+ Cache-Control:
3006
+ - no-cache, no-store, must-revalidate
3007
+ X-Powered-By:
3008
+ - Undertow/1
3009
+ Server:
3010
+ - WildFly/10
3011
+ Pragma:
3012
+ - no-cache
3013
+ Date:
3014
+ - Mon, 11 Apr 2016 15:29:17 GMT
3015
+ Connection:
3016
+ - keep-alive
3017
+ Content-Type:
3018
+ - application/json
3019
+ Content-Length:
3020
+ - '230'
3021
+ body:
3022
+ encoding: ASCII-8BIT
3023
+ string: |-
3024
+ {
3025
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
3026
+ "name" : "ResourceType",
3027
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
3028
+ }
3029
+ http_version:
3030
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3031
+ - request:
3032
+ method: post
3033
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources
3034
+ body:
3035
+ encoding: UTF-8
3036
+ string: '{"properties":{"version":1.0},"id":"0f1461f6-3bc7-44f0-b249-b4344701d8ec-r126","name":"My
3037
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"}'
3038
+ headers:
3039
+ Accept:
3040
+ - application/json
3041
+ Accept-Encoding:
3042
+ - gzip, deflate
3043
+ Content-Type:
3044
+ - application/json
3045
+ Content-Length:
3046
+ - '282'
3047
+ User-Agent:
3048
+ - Ruby
3049
+ response:
3050
+ status:
3051
+ code: 201
3052
+ message: Created
3053
+ headers:
3054
+ Expires:
3055
+ - '0'
3056
+ Cache-Control:
3057
+ - no-cache, no-store, must-revalidate
3058
+ X-Powered-By:
3059
+ - Undertow/1
3060
+ Server:
3061
+ - WildFly/10
3062
+ Pragma:
3063
+ - no-cache
3064
+ Location:
3065
+ - http://localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources/0f1461f6-3bc7-44f0-b249-b4344701d8ec-r126
3066
+ Date:
3067
+ - Mon, 11 Apr 2016 15:29:17 GMT
3068
+ Connection:
3069
+ - keep-alive
3070
+ Content-Type:
3071
+ - application/json
3072
+ Content-Length:
3073
+ - '521'
3074
+ body:
3075
+ encoding: ASCII-8BIT
3076
+ string: |-
3077
+ {
3078
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/r;0f1461f6-3bc7-44f0-b249-b4344701d8ec-r126",
3079
+ "type" : {
3080
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
3081
+ "name" : "ResourceType",
3082
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
3083
+ },
3084
+ "properties" : {
3085
+ "version" : 1.0
3086
+ },
3087
+ "name" : "My Resource 1",
3088
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-r126"
3089
+ }
3090
+ http_version:
3091
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3092
+ - request:
3093
+ method: get
3094
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources/0f1461f6-3bc7-44f0-b249-b4344701d8ec-r126
3095
+ body:
3096
+ encoding: US-ASCII
3097
+ string: ''
3098
+ headers:
3099
+ Accept:
3100
+ - application/json
3101
+ Accept-Encoding:
3102
+ - gzip, deflate
3103
+ Content-Type:
3104
+ - application/json
3105
+ User-Agent:
3106
+ - Ruby
3107
+ response:
3108
+ status:
3109
+ code: 200
3110
+ message: OK
3111
+ headers:
3112
+ Expires:
3113
+ - '0'
3114
+ Cache-Control:
3115
+ - no-cache, no-store, must-revalidate
3116
+ X-Powered-By:
3117
+ - Undertow/1
3118
+ Server:
3119
+ - WildFly/10
3120
+ Pragma:
3121
+ - no-cache
3122
+ Date:
3123
+ - Mon, 11 Apr 2016 15:29:17 GMT
3124
+ Connection:
3125
+ - keep-alive
3126
+ Content-Type:
3127
+ - application/json
3128
+ Content-Length:
3129
+ - '521'
3130
+ body:
3131
+ encoding: ASCII-8BIT
3132
+ string: |-
3133
+ {
3134
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/r;0f1461f6-3bc7-44f0-b249-b4344701d8ec-r126",
3135
+ "type" : {
3136
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
3137
+ "name" : "ResourceType",
3138
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
3139
+ },
3140
+ "properties" : {
3141
+ "version" : 1.0
3142
+ },
3143
+ "name" : "My Resource 1",
3144
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-r126"
3145
+ }
3146
+ http_version:
3147
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3148
+ - request:
3149
+ method: post
3150
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources
3151
+ body:
3152
+ encoding: UTF-8
3153
+ string: '{"properties":{"version":1.1},"id":"0f1461f6-3bc7-44f0-b249-b4344701d8ec-r127","name":"My
3154
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"}'
3155
+ headers:
3156
+ Accept:
3157
+ - application/json
3158
+ Accept-Encoding:
3159
+ - gzip, deflate
3160
+ Content-Type:
3161
+ - application/json
3162
+ Content-Length:
3163
+ - '282'
3164
+ User-Agent:
3165
+ - Ruby
3166
+ response:
3167
+ status:
3168
+ code: 201
3169
+ message: Created
3170
+ headers:
3171
+ Expires:
3172
+ - '0'
3173
+ Cache-Control:
3174
+ - no-cache, no-store, must-revalidate
3175
+ X-Powered-By:
3176
+ - Undertow/1
3177
+ Server:
3178
+ - WildFly/10
3179
+ Pragma:
3180
+ - no-cache
3181
+ Location:
3182
+ - http://localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources/0f1461f6-3bc7-44f0-b249-b4344701d8ec-r127
3183
+ Date:
3184
+ - Mon, 11 Apr 2016 15:29:17 GMT
3185
+ Connection:
3186
+ - keep-alive
3187
+ Content-Type:
3188
+ - application/json
3189
+ Content-Length:
3190
+ - '521'
3191
+ body:
3192
+ encoding: ASCII-8BIT
3193
+ string: |-
3194
+ {
3195
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/r;0f1461f6-3bc7-44f0-b249-b4344701d8ec-r127",
3196
+ "type" : {
3197
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
3198
+ "name" : "ResourceType",
3199
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
3200
+ },
3201
+ "properties" : {
3202
+ "version" : 1.1
3203
+ },
3204
+ "name" : "My Resource 2",
3205
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-r127"
3206
+ }
3207
+ http_version:
3208
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3209
+ - request:
3210
+ method: get
3211
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources/0f1461f6-3bc7-44f0-b249-b4344701d8ec-r127
3212
+ body:
3213
+ encoding: US-ASCII
3214
+ string: ''
3215
+ headers:
3216
+ Accept:
3217
+ - application/json
3218
+ Accept-Encoding:
3219
+ - gzip, deflate
3220
+ Content-Type:
3221
+ - application/json
3222
+ User-Agent:
3223
+ - Ruby
3224
+ response:
3225
+ status:
3226
+ code: 200
3227
+ message: OK
3228
+ headers:
3229
+ Expires:
3230
+ - '0'
3231
+ Cache-Control:
3232
+ - no-cache, no-store, must-revalidate
3233
+ X-Powered-By:
3234
+ - Undertow/1
3235
+ Server:
3236
+ - WildFly/10
3237
+ Pragma:
3238
+ - no-cache
3239
+ Date:
3240
+ - Mon, 11 Apr 2016 15:29:17 GMT
3241
+ Connection:
3242
+ - keep-alive
3243
+ Content-Type:
3244
+ - application/json
3245
+ Content-Length:
3246
+ - '521'
3247
+ body:
3248
+ encoding: ASCII-8BIT
3249
+ string: |-
3250
+ {
3251
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/r;0f1461f6-3bc7-44f0-b249-b4344701d8ec-r127",
3252
+ "type" : {
3253
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
3254
+ "name" : "ResourceType",
3255
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
3256
+ },
3257
+ "properties" : {
3258
+ "version" : 1.1
3259
+ },
3260
+ "name" : "My Resource 2",
3261
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-r127"
3262
+ }
3263
+ http_version:
3264
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3265
+ - request:
3266
+ method: post
3267
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources
3268
+ body:
3269
+ encoding: UTF-8
3270
+ string: '{"properties":{"version":1.2},"id":"0f1461f6-3bc7-44f0-b249-b4344701d8ec-r128","name":"My
3271
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"}'
3272
+ headers:
3273
+ Accept:
3274
+ - application/json
3275
+ Accept-Encoding:
3276
+ - gzip, deflate
3277
+ Content-Type:
3278
+ - application/json
3279
+ Content-Length:
3280
+ - '282'
3281
+ User-Agent:
3282
+ - Ruby
3283
+ response:
3284
+ status:
3285
+ code: 201
3286
+ message: Created
3287
+ headers:
3288
+ Expires:
3289
+ - '0'
3290
+ Cache-Control:
3291
+ - no-cache, no-store, must-revalidate
3292
+ X-Powered-By:
3293
+ - Undertow/1
3294
+ Server:
3295
+ - WildFly/10
3296
+ Pragma:
3297
+ - no-cache
3298
+ Location:
3299
+ - http://localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources/0f1461f6-3bc7-44f0-b249-b4344701d8ec-r128
3300
+ Date:
3301
+ - Mon, 11 Apr 2016 15:29:17 GMT
3302
+ Connection:
3303
+ - keep-alive
3304
+ Content-Type:
3305
+ - application/json
3306
+ Content-Length:
3307
+ - '521'
3308
+ body:
3309
+ encoding: ASCII-8BIT
3310
+ string: |-
3311
+ {
3312
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/r;0f1461f6-3bc7-44f0-b249-b4344701d8ec-r128",
3313
+ "type" : {
3314
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
3315
+ "name" : "ResourceType",
3316
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
3317
+ },
3318
+ "properties" : {
3319
+ "version" : 1.2
3320
+ },
3321
+ "name" : "My Resource 3",
3322
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-r128"
3323
+ }
3324
+ http_version:
3325
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3326
+ - request:
3327
+ method: get
3328
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/resources/0f1461f6-3bc7-44f0-b249-b4344701d8ec-r128
3329
+ body:
3330
+ encoding: US-ASCII
3331
+ string: ''
3332
+ headers:
3333
+ Accept:
3334
+ - application/json
3335
+ Accept-Encoding:
3336
+ - gzip, deflate
3337
+ Content-Type:
3338
+ - application/json
3339
+ User-Agent:
3340
+ - Ruby
3341
+ response:
3342
+ status:
3343
+ code: 200
3344
+ message: OK
3345
+ headers:
3346
+ Expires:
3347
+ - '0'
3348
+ Cache-Control:
3349
+ - no-cache, no-store, must-revalidate
3350
+ X-Powered-By:
3351
+ - Undertow/1
3352
+ Server:
3353
+ - WildFly/10
3354
+ Pragma:
3355
+ - no-cache
3356
+ Date:
3357
+ - Mon, 11 Apr 2016 15:29:17 GMT
3358
+ Connection:
3359
+ - keep-alive
3360
+ Content-Type:
3361
+ - application/json
3362
+ Content-Length:
3363
+ - '521'
3364
+ body:
3365
+ encoding: ASCII-8BIT
3366
+ string: |-
3367
+ {
3368
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/r;0f1461f6-3bc7-44f0-b249-b4344701d8ec-r128",
3369
+ "type" : {
3370
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed/rt;0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123",
3371
+ "name" : "ResourceType",
3372
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-rt-123"
3373
+ },
3374
+ "properties" : {
3375
+ "version" : 1.2
3376
+ },
3377
+ "name" : "My Resource 3",
3378
+ "id" : "0f1461f6-3bc7-44f0-b249-b4344701d8ec-r128"
3379
+ }
3380
+ http_version:
3381
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3382
+ - request:
3383
+ method: delete
3384
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/0f1461f6-3bc7-44f0-b249-b4344701d8ec-feed
3385
+ body:
3386
+ encoding: US-ASCII
3387
+ string: ''
3388
+ headers:
3389
+ Accept:
3390
+ - application/json
3391
+ Accept-Encoding:
3392
+ - gzip, deflate
3393
+ Content-Type:
3394
+ - application/json
3395
+ User-Agent:
3396
+ - Ruby
3397
+ response:
3398
+ status:
3399
+ code: 204
3400
+ message: No Content
3401
+ headers:
3402
+ Expires:
3403
+ - '0'
3404
+ Cache-Control:
3405
+ - no-cache, no-store, must-revalidate
3406
+ X-Powered-By:
3407
+ - Undertow/1
3408
+ Server:
3409
+ - WildFly/10
3410
+ Pragma:
3411
+ - no-cache
3412
+ Date:
3413
+ - Mon, 11 Apr 2016 15:29:17 GMT
3414
+ body:
3415
+ encoding: UTF-8
3416
+ string: ''
3417
+ http_version:
3418
+ recorded_at: Mon, 11 Apr 2016 15:29:17 GMT
3419
+ - request:
3420
+ method: post
3421
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resourceTypes
3422
+ body:
3423
+ encoding: UTF-8
3424
+ string: '{"properties":{},"id":"f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
3425
+ headers:
3426
+ Accept:
3427
+ - application/json
3428
+ Accept-Encoding:
3429
+ - gzip, deflate
3430
+ Content-Type:
3431
+ - application/json
3432
+ Content-Length:
3433
+ - '118'
3434
+ User-Agent:
3435
+ - Ruby
3436
+ response:
3437
+ status:
3438
+ code: 201
3439
+ message: Created
3440
+ headers:
3441
+ Expires:
3442
+ - '0'
3443
+ Cache-Control:
3444
+ - no-cache, no-store, must-revalidate
3445
+ X-Powered-By:
3446
+ - Undertow/1
3447
+ Server:
3448
+ - WildFly/10
3449
+ Pragma:
3450
+ - no-cache
3451
+ Location:
3452
+ - http://localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resourceTypes/f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123
3453
+ Date:
3454
+ - Mon, 11 Apr 2016 15:30:30 GMT
3455
+ Connection:
3456
+ - keep-alive
3457
+ Content-Type:
3458
+ - application/json
3459
+ Content-Length:
3460
+ - '230'
3461
+ body:
3462
+ encoding: ASCII-8BIT
3463
+ string: |-
3464
+ {
3465
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3466
+ "name" : "ResourceType",
3467
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3468
+ }
3469
+ http_version:
3470
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3471
+ - request:
3472
+ method: get
3473
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resourceTypes/f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123
3474
+ body:
3475
+ encoding: US-ASCII
3476
+ string: ''
3477
+ headers:
3478
+ Accept:
3479
+ - application/json
3480
+ Accept-Encoding:
3481
+ - gzip, deflate
3482
+ Content-Type:
3483
+ - application/json
3484
+ User-Agent:
3485
+ - Ruby
3486
+ response:
3487
+ status:
3488
+ code: 200
3489
+ message: OK
3490
+ headers:
3491
+ Expires:
3492
+ - '0'
3493
+ Cache-Control:
3494
+ - no-cache, no-store, must-revalidate
3495
+ X-Powered-By:
3496
+ - Undertow/1
3497
+ Server:
3498
+ - WildFly/10
3499
+ Pragma:
3500
+ - no-cache
3501
+ Date:
3502
+ - Mon, 11 Apr 2016 15:30:30 GMT
3503
+ Connection:
3504
+ - keep-alive
3505
+ Content-Type:
3506
+ - application/json
3507
+ Content-Length:
3508
+ - '230'
3509
+ body:
3510
+ encoding: ASCII-8BIT
3511
+ string: |-
3512
+ {
3513
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3514
+ "name" : "ResourceType",
3515
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3516
+ }
3517
+ http_version:
3518
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3519
+ - request:
3520
+ method: post
3521
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources
3522
+ body:
3523
+ encoding: UTF-8
3524
+ string: '{"properties":{"version":1.0},"id":"f4adbf93-036b-41f3-8f1e-8091354a986d-r126","name":"My
3525
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"}'
3526
+ headers:
3527
+ Accept:
3528
+ - application/json
3529
+ Accept-Encoding:
3530
+ - gzip, deflate
3531
+ Content-Type:
3532
+ - application/json
3533
+ Content-Length:
3534
+ - '282'
3535
+ User-Agent:
3536
+ - Ruby
3537
+ response:
3538
+ status:
3539
+ code: 201
3540
+ message: Created
3541
+ headers:
3542
+ Expires:
3543
+ - '0'
3544
+ Cache-Control:
3545
+ - no-cache, no-store, must-revalidate
3546
+ X-Powered-By:
3547
+ - Undertow/1
3548
+ Server:
3549
+ - WildFly/10
3550
+ Pragma:
3551
+ - no-cache
3552
+ Location:
3553
+ - http://localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources/f4adbf93-036b-41f3-8f1e-8091354a986d-r126
3554
+ Date:
3555
+ - Mon, 11 Apr 2016 15:30:30 GMT
3556
+ Connection:
3557
+ - keep-alive
3558
+ Content-Type:
3559
+ - application/json
3560
+ Content-Length:
3561
+ - '521'
3562
+ body:
3563
+ encoding: ASCII-8BIT
3564
+ string: |-
3565
+ {
3566
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/r;f4adbf93-036b-41f3-8f1e-8091354a986d-r126",
3567
+ "type" : {
3568
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3569
+ "name" : "ResourceType",
3570
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3571
+ },
3572
+ "properties" : {
3573
+ "version" : 1.0
3574
+ },
3575
+ "name" : "My Resource 1",
3576
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-r126"
3577
+ }
3578
+ http_version:
3579
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3580
+ - request:
3581
+ method: get
3582
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources/f4adbf93-036b-41f3-8f1e-8091354a986d-r126
3583
+ body:
3584
+ encoding: US-ASCII
3585
+ string: ''
3586
+ headers:
3587
+ Accept:
3588
+ - application/json
3589
+ Accept-Encoding:
3590
+ - gzip, deflate
3591
+ Content-Type:
3592
+ - application/json
3593
+ User-Agent:
3594
+ - Ruby
3595
+ response:
3596
+ status:
3597
+ code: 200
3598
+ message: OK
3599
+ headers:
3600
+ Expires:
3601
+ - '0'
3602
+ Cache-Control:
3603
+ - no-cache, no-store, must-revalidate
3604
+ X-Powered-By:
3605
+ - Undertow/1
3606
+ Server:
3607
+ - WildFly/10
3608
+ Pragma:
3609
+ - no-cache
3610
+ Date:
3611
+ - Mon, 11 Apr 2016 15:30:30 GMT
3612
+ Connection:
3613
+ - keep-alive
3614
+ Content-Type:
3615
+ - application/json
3616
+ Content-Length:
3617
+ - '521'
3618
+ body:
3619
+ encoding: ASCII-8BIT
3620
+ string: |-
3621
+ {
3622
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/r;f4adbf93-036b-41f3-8f1e-8091354a986d-r126",
3623
+ "type" : {
3624
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3625
+ "name" : "ResourceType",
3626
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3627
+ },
3628
+ "properties" : {
3629
+ "version" : 1.0
3630
+ },
3631
+ "name" : "My Resource 1",
3632
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-r126"
3633
+ }
3634
+ http_version:
3635
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3636
+ - request:
3637
+ method: post
3638
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources
3639
+ body:
3640
+ encoding: UTF-8
3641
+ string: '{"properties":{"version":1.1},"id":"f4adbf93-036b-41f3-8f1e-8091354a986d-r127","name":"My
3642
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"}'
3643
+ headers:
3644
+ Accept:
3645
+ - application/json
3646
+ Accept-Encoding:
3647
+ - gzip, deflate
3648
+ Content-Type:
3649
+ - application/json
3650
+ Content-Length:
3651
+ - '282'
3652
+ User-Agent:
3653
+ - Ruby
3654
+ response:
3655
+ status:
3656
+ code: 201
3657
+ message: Created
3658
+ headers:
3659
+ Expires:
3660
+ - '0'
3661
+ Cache-Control:
3662
+ - no-cache, no-store, must-revalidate
3663
+ X-Powered-By:
3664
+ - Undertow/1
3665
+ Server:
3666
+ - WildFly/10
3667
+ Pragma:
3668
+ - no-cache
3669
+ Location:
3670
+ - http://localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources/f4adbf93-036b-41f3-8f1e-8091354a986d-r127
3671
+ Date:
3672
+ - Mon, 11 Apr 2016 15:30:30 GMT
3673
+ Connection:
3674
+ - keep-alive
3675
+ Content-Type:
3676
+ - application/json
3677
+ Content-Length:
3678
+ - '521'
3679
+ body:
3680
+ encoding: ASCII-8BIT
3681
+ string: |-
3682
+ {
3683
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/r;f4adbf93-036b-41f3-8f1e-8091354a986d-r127",
3684
+ "type" : {
3685
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3686
+ "name" : "ResourceType",
3687
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3688
+ },
3689
+ "properties" : {
3690
+ "version" : 1.1
3691
+ },
3692
+ "name" : "My Resource 2",
3693
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-r127"
3694
+ }
3695
+ http_version:
3696
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3697
+ - request:
3698
+ method: get
3699
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources/f4adbf93-036b-41f3-8f1e-8091354a986d-r127
3700
+ body:
3701
+ encoding: US-ASCII
3702
+ string: ''
3703
+ headers:
3704
+ Accept:
3705
+ - application/json
3706
+ Accept-Encoding:
3707
+ - gzip, deflate
3708
+ Content-Type:
3709
+ - application/json
3710
+ User-Agent:
3711
+ - Ruby
3712
+ response:
3713
+ status:
3714
+ code: 200
3715
+ message: OK
3716
+ headers:
3717
+ Expires:
3718
+ - '0'
3719
+ Cache-Control:
3720
+ - no-cache, no-store, must-revalidate
3721
+ X-Powered-By:
3722
+ - Undertow/1
3723
+ Server:
3724
+ - WildFly/10
3725
+ Pragma:
3726
+ - no-cache
3727
+ Date:
3728
+ - Mon, 11 Apr 2016 15:30:30 GMT
3729
+ Connection:
3730
+ - keep-alive
3731
+ Content-Type:
3732
+ - application/json
3733
+ Content-Length:
3734
+ - '521'
3735
+ body:
3736
+ encoding: ASCII-8BIT
3737
+ string: |-
3738
+ {
3739
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/r;f4adbf93-036b-41f3-8f1e-8091354a986d-r127",
3740
+ "type" : {
3741
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3742
+ "name" : "ResourceType",
3743
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3744
+ },
3745
+ "properties" : {
3746
+ "version" : 1.1
3747
+ },
3748
+ "name" : "My Resource 2",
3749
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-r127"
3750
+ }
3751
+ http_version:
3752
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3753
+ - request:
3754
+ method: post
3755
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources
3756
+ body:
3757
+ encoding: UTF-8
3758
+ string: '{"properties":{"version":1.2},"id":"f4adbf93-036b-41f3-8f1e-8091354a986d-r128","name":"My
3759
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"}'
3760
+ headers:
3761
+ Accept:
3762
+ - application/json
3763
+ Accept-Encoding:
3764
+ - gzip, deflate
3765
+ Content-Type:
3766
+ - application/json
3767
+ Content-Length:
3768
+ - '282'
3769
+ User-Agent:
3770
+ - Ruby
3771
+ response:
3772
+ status:
3773
+ code: 201
3774
+ message: Created
3775
+ headers:
3776
+ Expires:
3777
+ - '0'
3778
+ Cache-Control:
3779
+ - no-cache, no-store, must-revalidate
3780
+ X-Powered-By:
3781
+ - Undertow/1
3782
+ Server:
3783
+ - WildFly/10
3784
+ Pragma:
3785
+ - no-cache
3786
+ Location:
3787
+ - http://localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources/f4adbf93-036b-41f3-8f1e-8091354a986d-r128
3788
+ Date:
3789
+ - Mon, 11 Apr 2016 15:30:30 GMT
3790
+ Connection:
3791
+ - keep-alive
3792
+ Content-Type:
3793
+ - application/json
3794
+ Content-Length:
3795
+ - '521'
3796
+ body:
3797
+ encoding: ASCII-8BIT
3798
+ string: |-
3799
+ {
3800
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/r;f4adbf93-036b-41f3-8f1e-8091354a986d-r128",
3801
+ "type" : {
3802
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3803
+ "name" : "ResourceType",
3804
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3805
+ },
3806
+ "properties" : {
3807
+ "version" : 1.2
3808
+ },
3809
+ "name" : "My Resource 3",
3810
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-r128"
3811
+ }
3812
+ http_version:
3813
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3814
+ - request:
3815
+ method: get
3816
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed/resources/f4adbf93-036b-41f3-8f1e-8091354a986d-r128
3817
+ body:
3818
+ encoding: US-ASCII
3819
+ string: ''
3820
+ headers:
3821
+ Accept:
3822
+ - application/json
3823
+ Accept-Encoding:
3824
+ - gzip, deflate
3825
+ Content-Type:
3826
+ - application/json
3827
+ User-Agent:
3828
+ - Ruby
3829
+ response:
3830
+ status:
3831
+ code: 200
3832
+ message: OK
3833
+ headers:
3834
+ Expires:
3835
+ - '0'
3836
+ Cache-Control:
3837
+ - no-cache, no-store, must-revalidate
3838
+ X-Powered-By:
3839
+ - Undertow/1
3840
+ Server:
3841
+ - WildFly/10
3842
+ Pragma:
3843
+ - no-cache
3844
+ Date:
3845
+ - Mon, 11 Apr 2016 15:30:30 GMT
3846
+ Connection:
3847
+ - keep-alive
3848
+ Content-Type:
3849
+ - application/json
3850
+ Content-Length:
3851
+ - '521'
3852
+ body:
3853
+ encoding: ASCII-8BIT
3854
+ string: |-
3855
+ {
3856
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/r;f4adbf93-036b-41f3-8f1e-8091354a986d-r128",
3857
+ "type" : {
3858
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;f4adbf93-036b-41f3-8f1e-8091354a986d-feed/rt;f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123",
3859
+ "name" : "ResourceType",
3860
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-rt-123"
3861
+ },
3862
+ "properties" : {
3863
+ "version" : 1.2
3864
+ },
3865
+ "name" : "My Resource 3",
3866
+ "id" : "f4adbf93-036b-41f3-8f1e-8091354a986d-r128"
3867
+ }
3868
+ http_version:
3869
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3870
+ - request:
3871
+ method: delete
3872
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/f4adbf93-036b-41f3-8f1e-8091354a986d-feed
3873
+ body:
3874
+ encoding: US-ASCII
3875
+ string: ''
3876
+ headers:
3877
+ Accept:
3878
+ - application/json
3879
+ Accept-Encoding:
3880
+ - gzip, deflate
3881
+ Content-Type:
3882
+ - application/json
3883
+ User-Agent:
3884
+ - Ruby
3885
+ response:
3886
+ status:
3887
+ code: 204
3888
+ message: No Content
3889
+ headers:
3890
+ Expires:
3891
+ - '0'
3892
+ Cache-Control:
3893
+ - no-cache, no-store, must-revalidate
3894
+ X-Powered-By:
3895
+ - Undertow/1
3896
+ Server:
3897
+ - WildFly/10
3898
+ Pragma:
3899
+ - no-cache
3900
+ Date:
3901
+ - Mon, 11 Apr 2016 15:30:30 GMT
3902
+ body:
3903
+ encoding: UTF-8
3904
+ string: ''
3905
+ http_version:
3906
+ recorded_at: Mon, 11 Apr 2016 15:30:30 GMT
3907
+ - request:
3908
+ method: post
3909
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/
3910
+ body:
3911
+ encoding: UTF-8
3912
+ string: '{"properties":{},"id":"b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed","name":null,"outgoing":{},"incoming":{}}'
3913
+ headers:
3914
+ Accept:
3915
+ - application/json
3916
+ Accept-Encoding:
3917
+ - gzip, deflate
3918
+ Content-Type:
3919
+ - application/json
3920
+ Content-Length:
3921
+ - '106'
3922
+ User-Agent:
3923
+ - Ruby
3924
+ response:
3925
+ status:
3926
+ code: 201
3927
+ message: Created
3928
+ headers:
3929
+ Expires:
3930
+ - '0'
3931
+ Cache-Control:
3932
+ - no-cache, no-store, must-revalidate
3933
+ X-Powered-By:
3934
+ - Undertow/1
3935
+ Server:
3936
+ - WildFly/10
3937
+ Pragma:
3938
+ - no-cache
3939
+ Location:
3940
+ - http://localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed
3941
+ Date:
3942
+ - Mon, 11 Apr 2016 15:34:48 GMT
3943
+ Connection:
3944
+ - keep-alive
3945
+ Content-Type:
3946
+ - application/json
3947
+ Content-Length:
3948
+ - '154'
3949
+ body:
3950
+ encoding: ASCII-8BIT
3951
+ string: |-
3952
+ {
3953
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed",
3954
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed"
3955
+ }
3956
+ http_version:
3957
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
3958
+ - request:
3959
+ method: post
3960
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resourceTypes
3961
+ body:
3962
+ encoding: UTF-8
3963
+ string: '{"properties":{},"id":"b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123","name":"ResourceType","outgoing":{},"incoming":{}}'
3964
+ headers:
3965
+ Accept:
3966
+ - application/json
3967
+ Accept-Encoding:
3968
+ - gzip, deflate
3969
+ Content-Type:
3970
+ - application/json
3971
+ Content-Length:
3972
+ - '118'
3973
+ User-Agent:
3974
+ - Ruby
3975
+ response:
3976
+ status:
3977
+ code: 201
3978
+ message: Created
3979
+ headers:
3980
+ Expires:
3981
+ - '0'
3982
+ Cache-Control:
3983
+ - no-cache, no-store, must-revalidate
3984
+ X-Powered-By:
3985
+ - Undertow/1
3986
+ Server:
3987
+ - WildFly/10
3988
+ Pragma:
3989
+ - no-cache
3990
+ Location:
3991
+ - http://localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resourceTypes/b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123
3992
+ Date:
3993
+ - Mon, 11 Apr 2016 15:34:48 GMT
3994
+ Connection:
3995
+ - keep-alive
3996
+ Content-Type:
3997
+ - application/json
3998
+ Content-Length:
3999
+ - '230'
4000
+ body:
4001
+ encoding: ASCII-8BIT
4002
+ string: |-
4003
+ {
4004
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4005
+ "name" : "ResourceType",
4006
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4007
+ }
4008
+ http_version:
4009
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4010
+ - request:
4011
+ method: get
4012
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resourceTypes/b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123
4013
+ body:
4014
+ encoding: US-ASCII
4015
+ string: ''
4016
+ headers:
4017
+ Accept:
4018
+ - application/json
4019
+ Accept-Encoding:
4020
+ - gzip, deflate
4021
+ Content-Type:
4022
+ - application/json
4023
+ User-Agent:
4024
+ - Ruby
4025
+ response:
4026
+ status:
4027
+ code: 200
4028
+ message: OK
4029
+ headers:
4030
+ Expires:
4031
+ - '0'
4032
+ Cache-Control:
4033
+ - no-cache, no-store, must-revalidate
4034
+ X-Powered-By:
4035
+ - Undertow/1
4036
+ Server:
4037
+ - WildFly/10
4038
+ Pragma:
4039
+ - no-cache
4040
+ Date:
4041
+ - Mon, 11 Apr 2016 15:34:48 GMT
4042
+ Connection:
4043
+ - keep-alive
4044
+ Content-Type:
4045
+ - application/json
4046
+ Content-Length:
4047
+ - '230'
4048
+ body:
4049
+ encoding: ASCII-8BIT
4050
+ string: |-
4051
+ {
4052
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4053
+ "name" : "ResourceType",
4054
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4055
+ }
4056
+ http_version:
4057
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4058
+ - request:
4059
+ method: post
4060
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources
4061
+ body:
4062
+ encoding: UTF-8
4063
+ string: '{"properties":{"version":1.0},"id":"b1faedee-b0dc-4bca-a240-ff5f961b5b29-r126","name":"My
4064
+ Resource 1","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"}'
4065
+ headers:
4066
+ Accept:
4067
+ - application/json
4068
+ Accept-Encoding:
4069
+ - gzip, deflate
4070
+ Content-Type:
4071
+ - application/json
4072
+ Content-Length:
4073
+ - '282'
4074
+ User-Agent:
4075
+ - Ruby
4076
+ response:
4077
+ status:
4078
+ code: 201
4079
+ message: Created
4080
+ headers:
4081
+ Expires:
4082
+ - '0'
4083
+ Cache-Control:
4084
+ - no-cache, no-store, must-revalidate
4085
+ X-Powered-By:
4086
+ - Undertow/1
4087
+ Server:
4088
+ - WildFly/10
4089
+ Pragma:
4090
+ - no-cache
4091
+ Location:
4092
+ - http://localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources/b1faedee-b0dc-4bca-a240-ff5f961b5b29-r126
4093
+ Date:
4094
+ - Mon, 11 Apr 2016 15:34:48 GMT
4095
+ Connection:
4096
+ - keep-alive
4097
+ Content-Type:
4098
+ - application/json
4099
+ Content-Length:
4100
+ - '521'
4101
+ body:
4102
+ encoding: ASCII-8BIT
4103
+ string: |-
4104
+ {
4105
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/r;b1faedee-b0dc-4bca-a240-ff5f961b5b29-r126",
4106
+ "type" : {
4107
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4108
+ "name" : "ResourceType",
4109
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4110
+ },
4111
+ "properties" : {
4112
+ "version" : 1.0
4113
+ },
4114
+ "name" : "My Resource 1",
4115
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-r126"
4116
+ }
4117
+ http_version:
4118
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4119
+ - request:
4120
+ method: get
4121
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources/b1faedee-b0dc-4bca-a240-ff5f961b5b29-r126
4122
+ body:
4123
+ encoding: US-ASCII
4124
+ string: ''
4125
+ headers:
4126
+ Accept:
4127
+ - application/json
4128
+ Accept-Encoding:
4129
+ - gzip, deflate
4130
+ Content-Type:
4131
+ - application/json
4132
+ User-Agent:
4133
+ - Ruby
4134
+ response:
4135
+ status:
4136
+ code: 200
4137
+ message: OK
4138
+ headers:
4139
+ Expires:
4140
+ - '0'
4141
+ Cache-Control:
4142
+ - no-cache, no-store, must-revalidate
4143
+ X-Powered-By:
4144
+ - Undertow/1
4145
+ Server:
4146
+ - WildFly/10
4147
+ Pragma:
4148
+ - no-cache
4149
+ Date:
4150
+ - Mon, 11 Apr 2016 15:34:48 GMT
4151
+ Connection:
4152
+ - keep-alive
4153
+ Content-Type:
4154
+ - application/json
4155
+ Content-Length:
4156
+ - '521'
4157
+ body:
4158
+ encoding: ASCII-8BIT
4159
+ string: |-
4160
+ {
4161
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/r;b1faedee-b0dc-4bca-a240-ff5f961b5b29-r126",
4162
+ "type" : {
4163
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4164
+ "name" : "ResourceType",
4165
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4166
+ },
4167
+ "properties" : {
4168
+ "version" : 1.0
4169
+ },
4170
+ "name" : "My Resource 1",
4171
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-r126"
4172
+ }
4173
+ http_version:
4174
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4175
+ - request:
4176
+ method: post
4177
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources
4178
+ body:
4179
+ encoding: UTF-8
4180
+ string: '{"properties":{"version":1.1},"id":"b1faedee-b0dc-4bca-a240-ff5f961b5b29-r127","name":"My
4181
+ Resource 2","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"}'
4182
+ headers:
4183
+ Accept:
4184
+ - application/json
4185
+ Accept-Encoding:
4186
+ - gzip, deflate
4187
+ Content-Type:
4188
+ - application/json
4189
+ Content-Length:
4190
+ - '282'
4191
+ User-Agent:
4192
+ - Ruby
4193
+ response:
4194
+ status:
4195
+ code: 201
4196
+ message: Created
4197
+ headers:
4198
+ Expires:
4199
+ - '0'
4200
+ Cache-Control:
4201
+ - no-cache, no-store, must-revalidate
4202
+ X-Powered-By:
4203
+ - Undertow/1
4204
+ Server:
4205
+ - WildFly/10
4206
+ Pragma:
4207
+ - no-cache
4208
+ Location:
4209
+ - http://localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources/b1faedee-b0dc-4bca-a240-ff5f961b5b29-r127
4210
+ Date:
4211
+ - Mon, 11 Apr 2016 15:34:48 GMT
4212
+ Connection:
4213
+ - keep-alive
4214
+ Content-Type:
4215
+ - application/json
4216
+ Content-Length:
4217
+ - '521'
4218
+ body:
4219
+ encoding: ASCII-8BIT
4220
+ string: |-
4221
+ {
4222
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/r;b1faedee-b0dc-4bca-a240-ff5f961b5b29-r127",
4223
+ "type" : {
4224
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4225
+ "name" : "ResourceType",
4226
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4227
+ },
4228
+ "properties" : {
4229
+ "version" : 1.1
4230
+ },
4231
+ "name" : "My Resource 2",
4232
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-r127"
4233
+ }
4234
+ http_version:
4235
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4236
+ - request:
4237
+ method: get
4238
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources/b1faedee-b0dc-4bca-a240-ff5f961b5b29-r127
4239
+ body:
4240
+ encoding: US-ASCII
4241
+ string: ''
4242
+ headers:
4243
+ Accept:
4244
+ - application/json
4245
+ Accept-Encoding:
4246
+ - gzip, deflate
4247
+ Content-Type:
4248
+ - application/json
4249
+ User-Agent:
4250
+ - Ruby
4251
+ response:
4252
+ status:
4253
+ code: 200
4254
+ message: OK
4255
+ headers:
4256
+ Expires:
4257
+ - '0'
4258
+ Cache-Control:
4259
+ - no-cache, no-store, must-revalidate
4260
+ X-Powered-By:
4261
+ - Undertow/1
4262
+ Server:
4263
+ - WildFly/10
4264
+ Pragma:
4265
+ - no-cache
4266
+ Date:
4267
+ - Mon, 11 Apr 2016 15:34:48 GMT
4268
+ Connection:
4269
+ - keep-alive
4270
+ Content-Type:
4271
+ - application/json
4272
+ Content-Length:
4273
+ - '521'
4274
+ body:
4275
+ encoding: ASCII-8BIT
4276
+ string: |-
4277
+ {
4278
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/r;b1faedee-b0dc-4bca-a240-ff5f961b5b29-r127",
4279
+ "type" : {
4280
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4281
+ "name" : "ResourceType",
4282
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4283
+ },
4284
+ "properties" : {
4285
+ "version" : 1.1
4286
+ },
4287
+ "name" : "My Resource 2",
4288
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-r127"
4289
+ }
4290
+ http_version:
4291
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4292
+ - request:
4293
+ method: post
4294
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources
4295
+ body:
4296
+ encoding: UTF-8
4297
+ string: '{"properties":{"version":1.2},"id":"b1faedee-b0dc-4bca-a240-ff5f961b5b29-r128","name":"My
4298
+ Resource 3","outgoing":{},"incoming":{},"resourceTypePath":"/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"}'
4299
+ headers:
4300
+ Accept:
4301
+ - application/json
4302
+ Accept-Encoding:
4303
+ - gzip, deflate
4304
+ Content-Type:
4305
+ - application/json
4306
+ Content-Length:
4307
+ - '282'
4308
+ User-Agent:
4309
+ - Ruby
4310
+ response:
4311
+ status:
4312
+ code: 201
4313
+ message: Created
4314
+ headers:
4315
+ Expires:
4316
+ - '0'
4317
+ Cache-Control:
4318
+ - no-cache, no-store, must-revalidate
4319
+ X-Powered-By:
4320
+ - Undertow/1
4321
+ Server:
4322
+ - WildFly/10
4323
+ Pragma:
4324
+ - no-cache
4325
+ Location:
4326
+ - http://localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources/b1faedee-b0dc-4bca-a240-ff5f961b5b29-r128
4327
+ Date:
4328
+ - Mon, 11 Apr 2016 15:34:48 GMT
4329
+ Connection:
4330
+ - keep-alive
4331
+ Content-Type:
4332
+ - application/json
4333
+ Content-Length:
4334
+ - '521'
4335
+ body:
4336
+ encoding: ASCII-8BIT
4337
+ string: |-
4338
+ {
4339
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/r;b1faedee-b0dc-4bca-a240-ff5f961b5b29-r128",
4340
+ "type" : {
4341
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4342
+ "name" : "ResourceType",
4343
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4344
+ },
4345
+ "properties" : {
4346
+ "version" : 1.2
4347
+ },
4348
+ "name" : "My Resource 3",
4349
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-r128"
4350
+ }
4351
+ http_version:
4352
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4353
+ - request:
4354
+ method: get
4355
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/resources/b1faedee-b0dc-4bca-a240-ff5f961b5b29-r128
4356
+ body:
4357
+ encoding: US-ASCII
4358
+ string: ''
4359
+ headers:
4360
+ Accept:
4361
+ - application/json
4362
+ Accept-Encoding:
4363
+ - gzip, deflate
4364
+ Content-Type:
4365
+ - application/json
4366
+ User-Agent:
4367
+ - Ruby
4368
+ response:
4369
+ status:
4370
+ code: 200
4371
+ message: OK
4372
+ headers:
4373
+ Expires:
4374
+ - '0'
4375
+ Cache-Control:
4376
+ - no-cache, no-store, must-revalidate
4377
+ X-Powered-By:
4378
+ - Undertow/1
4379
+ Server:
4380
+ - WildFly/10
4381
+ Pragma:
4382
+ - no-cache
4383
+ Date:
4384
+ - Mon, 11 Apr 2016 15:34:48 GMT
4385
+ Connection:
4386
+ - keep-alive
4387
+ Content-Type:
4388
+ - application/json
4389
+ Content-Length:
4390
+ - '521'
4391
+ body:
4392
+ encoding: ASCII-8BIT
4393
+ string: |-
4394
+ {
4395
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/r;b1faedee-b0dc-4bca-a240-ff5f961b5b29-r128",
4396
+ "type" : {
4397
+ "path" : "/t;28026b36-8fe4-4332-84c8-524e173a68bf/f;b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed/rt;b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123",
4398
+ "name" : "ResourceType",
4399
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-rt-123"
4400
+ },
4401
+ "properties" : {
4402
+ "version" : 1.2
4403
+ },
4404
+ "name" : "My Resource 3",
4405
+ "id" : "b1faedee-b0dc-4bca-a240-ff5f961b5b29-r128"
4406
+ }
4407
+ http_version:
4408
+ recorded_at: Mon, 11 Apr 2016 15:34:48 GMT
4409
+ - request:
4410
+ method: delete
4411
+ uri: http://jdoe:password@localhost:8080/hawkular/inventory/feeds/b1faedee-b0dc-4bca-a240-ff5f961b5b29-feed
4412
+ body:
4413
+ encoding: US-ASCII
4414
+ string: ''
4415
+ headers:
4416
+ Accept:
4417
+ - application/json
4418
+ Accept-Encoding:
4419
+ - gzip, deflate
4420
+ Content-Type:
4421
+ - application/json
4422
+ User-Agent:
4423
+ - Ruby
4424
+ response:
4425
+ status:
4426
+ code: 204
4427
+ message: No Content
4428
+ headers:
4429
+ Expires:
4430
+ - '0'
4431
+ Cache-Control:
4432
+ - no-cache, no-store, must-revalidate
4433
+ X-Powered-By:
4434
+ - Undertow/1
4435
+ Server:
4436
+ - WildFly/10
4437
+ Pragma:
4438
+ - no-cache
4439
+ Date:
4440
+ - Mon, 11 Apr 2016 15:34:49 GMT
4441
+ body:
4442
+ encoding: UTF-8
4443
+ string: ''
4444
+ http_version:
4445
+ recorded_at: Mon, 11 Apr 2016 15:34:49 GMT
4446
+ recorded_with: VCR 3.0.1