hawkular-client 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (21) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.rdoc +9 -0
  3. data/lib/hawkular/base_client.rb +8 -0
  4. data/lib/hawkular/inventory/entities.rb +1 -0
  5. data/lib/hawkular/operations/operations_api.rb +83 -11
  6. data/lib/hawkular/version.rb +1 -1
  7. data/spec/integration/inventory_spec.rb +2 -0
  8. data/spec/integration/operations_spec.rb +39 -39
  9. data/spec/unit/base_spec.rb +47 -0
  10. data/spec/vcr_cassettes/Inventory/inventory_0_17/Templates/Should_list_operation_definitions_of_given_resource_type.yml +0 -3
  11. data/spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json +1 -1
  12. data/spec/vcr_cassettes/Operation/Operation/Disable_should_be_performed_and_eventually_respond_with_success.json +26 -0
  13. data/spec/vcr_cassettes/Operation/Operation/Restart_can_be_run_multiple_times_in_parallel.json +40 -0
  14. data/spec/vcr_cassettes/Operation/Operation/Restart_should_be_performed_and_eventually_respond_with_success.json +26 -0
  15. data/spec/vcr_cassettes/Operation/Operation/Restart_should_not_be_performed_if_resource_path_is_wrong.json +26 -0
  16. data/spec/vcr_cassettes/Operation/Operation/{Undeploy_should_be_performed_and_eventually_respond_with_success.json → Undeploy_deployment_should_be_performed_and_eventually_respond_with_success.json} +2 -2
  17. metadata +14 -14
  18. data/spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json +0 -40
  19. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json +0 -26
  20. data/spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json +0 -26
  21. data/spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json +0 -26
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e11ac018e665d5df965d8636e2854a668fccf67a
4
- data.tar.gz: d832ab5278b0b256885b21a87825beb4fa39191a
3
+ metadata.gz: db083fe96638b6d090b78d7a0a5a4af6a4fe54b2
4
+ data.tar.gz: 1a1ce49dde751e3870507d91dcb69e783af04384
5
5
  SHA512:
6
- metadata.gz: f24ceb12b54bb212b93a3ed512b2c27656a1aa4b21fd7d55d638ae15542e8d174ff2dcb00d2eccccc9f9a83915fec36c5f53bc712b0cf6485dd7e00e3e049377
7
- data.tar.gz: bb8479e029d5abdc8b530f4e8f1276d978c87ebb3bec858d24f98e006ba0578021605eb035a92054818216a85a20ed89b3a3b9014e749b87e2af1b27209cbe83
6
+ metadata.gz: b32136387fc08ea18c5b72fe9c63d6cd61ab81455ed1f65ddbb8dbdaf70eb3944c29737a8716f7fa222b435ba25e2a05eea3e21ace1fa3d81979ac717917bbe4
7
+ data.tar.gz: b20088f8a974b791e73177551c1fd4fd352cfa3c0288b4b59dfa2006c6bae481b65e65e319d65aaad8a3e112d955d461b9e13ba58cbc6fae9c507407c7b0a204
data/CHANGES.rdoc CHANGED
@@ -3,6 +3,15 @@
3
3
  This document describes the relevant changes between releases of the
4
4
  _hawkular-client_ project.
5
5
 
6
+
7
+ === V 2.5.0
8
+
9
+ * Fix failure of list operations when no properties are passed - don't parse params
10
+ * Adds url_with_websocket method for helping to generate a ws(s) url
11
+ * Use server-level operation commands for deployments
12
+
13
+ Full list of items can be found at https://github.com/hawkular/hawkular-client-ruby/milestone/10?closed=1
14
+
6
15
  === V 2.4.0
7
16
 
8
17
  * Expose `metric.type.id` in metric definitions from Inventory, as the agent changed what it sends
@@ -151,6 +151,14 @@ module Hawkular
151
151
  end
152
152
  end
153
153
 
154
+ # Generate a new url using the websocket scheme. It changes the current scheme to
155
+ # 'ws' for 'http' and 'wss' for 'https' urls.
156
+ # @param url [String|URI] url
157
+ # @return [String] URL with the scheme changed to 'ws' or 'wss' depending on the current scheme.
158
+ def url_with_websocket_scheme(url)
159
+ url.to_s.sub(/^http(s?)/, 'ws\1')
160
+ end
161
+
154
162
  # Specialized exception to be thrown
155
163
  # when the interaction with Hawkular fails
156
164
  class HawkularException < StandardError
@@ -119,6 +119,7 @@ module Hawkular::Inventory
119
119
  def initialize(op_hash)
120
120
  super(op_hash)
121
121
  @params = {}
122
+ return if op_hash['properties'].nil?
122
123
  param_list = op_hash['properties']['params']
123
124
  return if param_list.nil?
124
125
  param_list.each do |p|
@@ -128,17 +128,20 @@ module Hawkular::Operations
128
128
  invoke_operation_helper(operation_payload, operation_name, &callback)
129
129
  end
130
130
 
131
- # Deploys a war file into WildFly
131
+ # Deploys an archive file into WildFly
132
132
  #
133
133
  # @param [Hash] hash Arguments for deployment
134
134
  # @option hash [String] :resource_path canonical path of the WildFly server into which we deploy
135
135
  # @option hash [String] :destination_file_name resulting file name
136
136
  # @option hash [String] :binary_content binary content representing the war file
137
- # @option hash [String] :enabled whether the deployment should be enabled or not
137
+ # @option hash [String] :enabled whether the deployment should be enabled immediately, or not (default = true)
138
+ # @option hash [String] :force_deploy whether to replace existing content or not (default = false)
139
+ # @option hash [String] :server_groups comma-separated list of server groups for the operation (default = ignored)
138
140
  #
139
141
  # @param callback [Block] callback that is run after the operation is done
140
142
  def add_deployment(hash, &callback)
141
143
  hash[:enabled] = hash.key?(:enabled) ? hash[:enabled] : true
144
+ hash[:force_deploy] = hash.key?(:force_deploy) ? hash[:force_deploy] : false
142
145
  required = [:resource_path, :destination_file_name, :binary_content]
143
146
  check_pre_conditions hash, required, &callback
144
147
 
@@ -146,28 +149,97 @@ module Hawkular::Operations
146
149
  invoke_operation_helper(operation_payload, 'DeployApplication', hash[:binary_content], &callback)
147
150
  end
148
151
 
149
- # Removes an existing deployment from WildFly
152
+ # Undeploy a WildFly deployment
150
153
  #
151
154
  # @param [Hash] hash Arguments for deployment removal
152
- # @option hash [String] :resource_path canonical path of the WildFly server from which to remove the deployment
153
- # @option hash [String] :deployment_name name of deployment to remove
155
+ # @option hash [String] :resource_path canonical path of the WildFly server from which to undeploy the deployment
156
+ # @option hash [String] :deployment_name name of deployment to undeploy
157
+ # @option hash [String] :remove_content whether to remove the deployment content or not (default = true)
158
+ # @option hash [String] :server_groups comma-separated list of server groups for the operation (default = ignored)
154
159
  #
155
160
  # @param callback [Block] callback that is run after the operation is done
156
- def remove_deployment(hash, &callback)
161
+ def undeploy(hash, &callback)
162
+ hash[:remove_content] = hash.key?(:remove_content) ? hash[:remove_content] : true
157
163
  required = [:resource_path, :deployment_name]
158
164
  check_pre_conditions hash, required, &callback
159
165
 
160
166
  cp = ::Hawkular::Inventory::CanonicalPath.parse hash[:resource_path]
161
167
  server_path = cp.up.to_s
168
+ hash[:resource_path] = server_path
169
+ hash[:destination_file_name] = hash[:deployment_name]
162
170
 
163
- payload_hash = {
164
- resource_path: server_path,
165
- destination_file_name: hash[:deployment_name]
166
- }
167
- operation_payload = prepare_payload_hash([], payload_hash)
171
+ operation_payload = prepare_payload_hash([:deployment_name], hash)
168
172
  invoke_operation_helper(operation_payload, 'UndeployApplication', &callback)
169
173
  end
170
174
 
175
+ # @deprecated Please use undeploy() instead
176
+ def remove_deployment(hash, &callback)
177
+ undeploy(hash, &callback)
178
+ end
179
+
180
+ # Enable a WildFly deployment
181
+ #
182
+ # @param [Hash] hash Arguments for enable deployment
183
+ # @option hash [String] :resource_path canonical path of the WildFly server from which to enable the deployment
184
+ # @option hash [String] :deployment_name name of deployment to enable
185
+ # @option hash [String] :server_groups comma-separated list of server groups for the operation (default = ignored)
186
+ #
187
+ # @param callback [Block] callback that is run after the operation is done
188
+ def enable_deployment(hash, &callback)
189
+ required = [:resource_path, :deployment_name]
190
+ check_pre_conditions hash, required, &callback
191
+
192
+ cp = ::Hawkular::Inventory::CanonicalPath.parse hash[:resource_path]
193
+ server_path = cp.up.to_s
194
+ hash[:resource_path] = server_path
195
+ hash[:destination_file_name] = hash[:deployment_name]
196
+
197
+ operation_payload = prepare_payload_hash([:deployment_name], hash)
198
+ invoke_operation_helper(operation_payload, 'EnableApplication', &callback)
199
+ end
200
+
201
+ # Disable a WildFly deployment
202
+ #
203
+ # @param [Hash] hash Arguments for disable deployment
204
+ # @option hash [String] :resource_path canonical path of the WildFly server from which to disable the deployment
205
+ # @option hash [String] :deployment_name name of deployment to disable
206
+ # @option hash [String] :server_groups comma-separated list of server groups for the operation (default = ignored)
207
+ #
208
+ # @param callback [Block] callback that is run after the operation is done
209
+ def disable_deployment(hash, &callback)
210
+ required = [:resource_path, :deployment_name]
211
+ check_pre_conditions hash, required, &callback
212
+
213
+ cp = ::Hawkular::Inventory::CanonicalPath.parse hash[:resource_path]
214
+ server_path = cp.up.to_s
215
+ hash[:resource_path] = server_path
216
+ hash[:destination_file_name] = hash[:deployment_name]
217
+
218
+ operation_payload = prepare_payload_hash([:deployment_name], hash)
219
+ invoke_operation_helper(operation_payload, 'DisableApplication', &callback)
220
+ end
221
+
222
+ # Restart a WildFly deployment
223
+ #
224
+ # @param [Hash] hash Arguments for restart deployment
225
+ # @option hash [String] :resource_path canonical path of the WildFly server from which to restart the deployment
226
+ # @option hash [String] :deployment_name name of deployment to restart
227
+ # @option hash [String] :server_groups comma-separated list of server groups for the operation (default = ignored)
228
+ #
229
+ # @param callback [Block] callback that is run after the operation is done
230
+ def restart_deployment(hash, &callback)
231
+ required = [:resource_path, :deployment_name]
232
+ check_pre_conditions hash, required, &callback
233
+
234
+ cp = ::Hawkular::Inventory::CanonicalPath.parse hash[:resource_path]
235
+ server_path = cp.up.to_s
236
+ hash[:resource_path] = server_path
237
+ hash[:destination_file_name] = hash[:deployment_name]
238
+
239
+ operation_payload = prepare_payload_hash([:deployment_name], hash)
240
+ invoke_operation_helper(operation_payload, 'RestartApplication', &callback)
241
+ end
242
+
171
243
  # Adds a new datasource
172
244
  #
173
245
  # @param [Hash] hash Arguments for the datasource
@@ -4,5 +4,5 @@
4
4
  # @see https://github.com/hawkular
5
5
  module Hawkular
6
6
  # Version of the Hawkular Ruby Gem
7
- VERSION = '2.4.0'.freeze
7
+ VERSION = '2.5.0'.freeze
8
8
  end
@@ -333,6 +333,8 @@ module Hawkular::Inventory::RSpec
333
333
  expect(shutdown_def.params).to include('restart')
334
334
  restart_param = shutdown_def.params.fetch 'restart'
335
335
  expect(restart_param['type']).to eq('bool')
336
+ resume_def = operation_definitions.fetch 'Resume'
337
+ expect(resume_def.params).to be {}
336
338
  end
337
339
 
338
340
  it 'Should list operation definitions of given resource' do
@@ -265,20 +265,20 @@ module Hawkular::Operations::RSpec
265
265
  expect(actual_data['driverName']).to eq(driver_name)
266
266
  end
267
267
 
268
- it 'Redeploy should be performed and eventually respond with success' do
268
+ it 'Restart should be performed and eventually respond with success' do
269
269
  wf_server_resource_id = 'Local~~'
270
270
  alerts_war_resource_id = 'Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war'
271
271
  path = CanonicalPath.new(tenant_id: @tenant_id,
272
272
  feed_id: @feed_id,
273
273
  resource_ids: [wf_server_resource_id, alerts_war_resource_id])
274
274
 
275
- redeploy = {
276
- operationName: 'Redeploy',
277
- resourcePath: path.to_s
275
+ restart = {
276
+ resource_path: path.to_s,
277
+ deployment_name: 'hawkular-alerts-actions-email.war'
278
278
  }
279
279
 
280
280
  actual_data = {}
281
- @client.invoke_generic_operation(redeploy) do |on|
281
+ @client.restart_deployment(restart) do |on|
282
282
  on.success do |data|
283
283
  actual_data[:data] = data
284
284
  end
@@ -291,23 +291,23 @@ module Hawkular::Operations::RSpec
291
291
  # expectations don't work from callbacks so waiting for the results via blocking helper `wait_for`
292
292
  actual_data = wait_for actual_data
293
293
  expect(actual_data['status']).to eq('OK')
294
- expect(actual_data['resourcePath']).to eq(path.to_s)
295
- expect(actual_data['message']).to start_with('Performed [Redeploy] on')
294
+ expect(actual_data['resourcePath']).to eq(path.up.to_s)
295
+ expect(actual_data['message']).to start_with('Performed [Restart Deployment] on')
296
296
  end
297
297
 
298
- it 'Redeploy should not be performed if resource path is wrong' do
299
- wf_server_resource_id = 'Local~~'
300
- wrong_war_resource_id = 'Local~%2Fdeployment%3Dnon-existent.war'
298
+ it 'Restart should not be performed if resource path is wrong' do
299
+ wf_server_resource_id = 'Unknown~~'
300
+ wrong_war_resource_id = 'Unknown~%2Fdeployment%3Dnon-existent.war'
301
301
  path = CanonicalPath.new(tenant_id: @tenant_id,
302
302
  feed_id: @feed_id,
303
303
  resource_ids: [wf_server_resource_id, wrong_war_resource_id])
304
304
 
305
- redeploy = {
306
- operationName: 'Redeploy',
307
- resourcePath: path.to_s
305
+ restart = {
306
+ resource_path: path.to_s,
307
+ deployment_name: 'non-existent.war'
308
308
  }
309
309
  actual_data = {}
310
- @client.invoke_generic_operation(redeploy) do |on|
310
+ @client.restart_deployment(restart) do |on|
311
311
  on.success do |_|
312
312
  actual_data[:data] = { error: 'the operation should have failed' }
313
313
  end
@@ -316,22 +316,22 @@ module Hawkular::Operations::RSpec
316
316
  end
317
317
  end
318
318
  actual_data = wait_for actual_data
319
- expect(actual_data[:error]).to start_with('Could not perform [Redeploy] on')
319
+ expect(actual_data[:error]).to start_with('Cannot restart application: unknown resource')
320
320
  end
321
321
 
322
- it 'Undeploy should be performed and eventually respond with success' do
322
+ it 'Disable should be performed and eventually respond with success' do
323
323
  wf_server_resource_id = 'Local~~'
324
324
  alerts_war_resource_id = 'Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war'
325
325
  path = CanonicalPath.new(tenant_id: @tenant_id,
326
326
  feed_id: @feed_id,
327
327
  resource_ids: [wf_server_resource_id, alerts_war_resource_id])
328
328
 
329
- undeploy = {
329
+ disable = {
330
330
  resource_path: path.to_s,
331
331
  deployment_name: 'hawkular-alerts-actions-email.war'
332
332
  }
333
333
  actual_data = {}
334
- @client.remove_deployment(undeploy) do |on|
334
+ @client.disable_deployment(disable) do |on|
335
335
  on.success do |data|
336
336
  actual_data[:data] = data
337
337
  end
@@ -395,19 +395,19 @@ module Hawkular::Operations::RSpec
395
395
  # open the connection
396
396
  operations_client = OperationsClient.new(entrypoint: 'http://localhost:8080', credentials: @creds)
397
397
 
398
- redeploy = {
399
- operationName: 'Redeploy',
400
- resourcePath: '/t;t1/f;whatever/r;something'
398
+ restart = {
399
+ resource_path: '/t;t1/f;whatever/r;something',
400
+ deployment_name: 'something.war'
401
401
  }
402
402
 
403
403
  # close the connection
404
404
  operations_client.close_connection!
405
405
  expect do
406
- operations_client.invoke_generic_operation(redeploy)
406
+ operations_client.restart_deployment(restart)
407
407
  end.to raise_error(RuntimeError, /Handshake with server has not been done./)
408
408
  end
409
409
 
410
- it 'Redeploy can be run multiple times in parallel' do
410
+ it 'Restart can be run multiple times in parallel' do
411
411
  wf_server_resource_id = 'Local~~'
412
412
  alerts_war_resource_id = 'Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war'
413
413
  console_war_resource_id = 'Local~%2Fdeployment%3Dhawkular-console.war'
@@ -418,22 +418,22 @@ module Hawkular::Operations::RSpec
418
418
  feed_id: @feed_id,
419
419
  resource_ids: [wf_server_resource_id, console_war_resource_id])
420
420
 
421
- redeploy1 = {
422
- operationName: 'Redeploy',
423
- resourcePath: path1.to_s
421
+ restart1 = {
422
+ resource_path: path1.to_s,
423
+ deployment_name: 'hawkular-alerts-actions-email.war'
424
424
  }
425
425
 
426
- redeploy2 = {
427
- operationName: 'Redeploy',
428
- resourcePath: path2.to_s
426
+ restart2 = {
427
+ resource_path: path2.to_s,
428
+ deployment_name: 'hawkular-console.war'
429
429
  }
430
430
 
431
431
  # run the first operation w/o registering the callback
432
- @client.invoke_generic_operation(redeploy1)
432
+ @client.restart_deployment(restart1)
433
433
 
434
434
  actual_data = {}
435
435
  # run the 2nd operation with 2 callback blocks (the happy path and the less happy path)
436
- @client.invoke_generic_operation(redeploy2) do |on|
436
+ @client.restart_deployment(restart2) do |on|
437
437
  on.success do |data|
438
438
  actual_data[:data] = data
439
439
  end
@@ -445,8 +445,8 @@ module Hawkular::Operations::RSpec
445
445
 
446
446
  actual_data = wait_for actual_data
447
447
  expect(actual_data['status']).to eq('OK')
448
- expect(actual_data['resourcePath']).to eq(path2.to_s)
449
- expect(actual_data['message']).to start_with('Performed [Redeploy] on')
448
+ expect(actual_data['resourcePath']).to eq(path2.up.to_s)
449
+ expect(actual_data['message']).to start_with('Performed [Restart Deployment] on')
450
450
  end
451
451
 
452
452
  it 'Add deployment should be doable' do
@@ -476,18 +476,18 @@ module Hawkular::Operations::RSpec
476
476
  expect(actual_data['resourcePath']).to eq(wf_path)
477
477
  end
478
478
 
479
- it 'Remove deployment should be performed and eventually respond with success' do
479
+ it 'Undeploy deployment should be performed and eventually respond with success' do
480
480
  wf_server_resource_id = 'Local~~'
481
481
  sample_app_resource_id = 'Local~%2Fdeployment=sample.war'
482
482
  path = CanonicalPath.new(tenant_id: @tenant_id,
483
483
  feed_id: @feed_id,
484
484
  resource_ids: [wf_server_resource_id, sample_app_resource_id])
485
- remove_deployment = {
486
- operationName: 'Remove',
487
- resourcePath: path.to_s
485
+ undeploy = {
486
+ resource_path: path.to_s,
487
+ deployment_name: 'sample.war'
488
488
  }
489
489
  actual_data = {}
490
- @client.invoke_generic_operation(remove_deployment) do |on|
490
+ @client.undeploy(undeploy) do |on|
491
491
  on.success do |data|
492
492
  actual_data[:data] = data
493
493
  end
@@ -498,7 +498,7 @@ module Hawkular::Operations::RSpec
498
498
  end
499
499
  actual_data = wait_for actual_data
500
500
  expect(actual_data['status']).to eq('OK')
501
- expect(actual_data['message']).to start_with('Performed [Remove] on')
501
+ expect(actual_data['message']).to start_with('Performed [Undeploy] on')
502
502
  end
503
503
 
504
504
  it 'Remove datasource should be performed and eventually respond with success' do
@@ -157,6 +157,53 @@ describe 'Base Spec' do
157
157
  expect(ret).to eq('http://localhost:8080/hawkular/alerts')
158
158
  end
159
159
 
160
+ it 'Should change http to ws and https to wss on different types of urls' do
161
+ c = Hawkular::BaseClient.new('not-needed-for-this-test')
162
+ ret = c.url_with_websocket_scheme 'http://localhost:8080'
163
+ expect(ret).to eq('ws://localhost:8080')
164
+
165
+ ret = c.url_with_websocket_scheme 'https://localhost:8443'
166
+ expect(ret).to eq('wss://localhost:8443')
167
+
168
+ ret = c.url_with_websocket_scheme 'http://localhost'
169
+ expect(ret).to eq('ws://localhost')
170
+
171
+ ret = c.url_with_websocket_scheme 'https://localhost'
172
+ expect(ret).to eq('wss://localhost')
173
+
174
+ ret = c.url_with_websocket_scheme 'http://localhost:8080/hawkular/inventory/'
175
+ expect(ret).to eq('ws://localhost:8080/hawkular/inventory/')
176
+
177
+ ret = c.url_with_websocket_scheme 'https://localhost:8443/hawkular/inventory/'
178
+ expect(ret).to eq('wss://localhost:8443/hawkular/inventory/')
179
+
180
+ ret = c.url_with_websocket_scheme 'http://localhost/hawkular/inventory/'
181
+ expect(ret).to eq('ws://localhost/hawkular/inventory/')
182
+
183
+ ret = c.url_with_websocket_scheme 'https://localhost/hawkular/inventory/'
184
+ expect(ret).to eq('wss://localhost/hawkular/inventory/')
185
+
186
+ ret = c.url_with_websocket_scheme 'http://localhost:8080/http'
187
+ expect(ret).to eq('ws://localhost:8080/http')
188
+
189
+ ret = c.url_with_websocket_scheme 'https://localhost:8443/http/https'
190
+ expect(ret).to eq('wss://localhost:8443/http/https')
191
+
192
+ ret = c.url_with_websocket_scheme 'ftp://http:8080'
193
+ expect(ret).to eq('ftp://http:8080')
194
+
195
+ ret = c.url_with_websocket_scheme 'ftp://https'
196
+ expect(ret).to eq('ftp://https')
197
+
198
+ uri = URI.parse 'http://localhost:8080/hawkular/inventory'
199
+ ret = c.url_with_websocket_scheme uri
200
+ expect(ret).to eq('ws://localhost:8080/hawkular/inventory')
201
+
202
+ uri = URI.parse 'https://localhost:8443/hawkular/inventory'
203
+ ret = c.url_with_websocket_scheme uri
204
+ expect(ret).to eq('wss://localhost:8443/hawkular/inventory')
205
+ end
206
+
160
207
  it 'Should throw a HawkularConnectionException when host not listening to port' do
161
208
  begin
162
209
  WebMock.disable!
@@ -66,9 +66,6 @@ http_interactions:
66
66
  "id" : "Reload"
67
67
  }, {
68
68
  "path" : "/t;hawkular/f;<%= feed_uuid %>/rt;WildFly%20Server/ot;Resume",
69
- "properties" : {
70
- "__identityHash" : "b5103168d783b0bb67bf88f30c1fad462b635e"
71
- },
72
69
  "name" : "Resume",
73
70
  "identityHash" : "b5103168d783b0bb67bf88f30c1fad462b635e",
74
71
  "id" : "Resume"
@@ -7,7 +7,7 @@
7
7
  },
8
8
  {
9
9
  "operation": "write",
10
- "data": "RGVwbG95QXBwbGljYXRpb25SZXF1ZXN0PXsicmVzb3VyY2VQYXRoIjoiL3Q7\naGF3a3VsYXIvZjszM2YyMmM0YS00NDVhLTRmOTAtYTI1ZS1jYWVmZjk1Nzlh\nMTAvcjtMb2NhbH5+IiwiZGVzdGluYXRpb25GaWxlTmFtZSI6InNhbXBsZS53\nYXIiLCJlbmFibGVkIjp0cnVlLCJhdXRoZW50aWNhdGlvbiI6eyJ1c2VybmFt\nZSI6Impkb2UiLCJwYXNzd29yZCI6InBhc3N3b3JkIn19UEsDBAoAAAAAAEaK\n/jYAAAAAAAAAAAAAAAAJAAQATUVUQS1JTkYv/soAAFBLAwQKAAAACABFiv42\n4voCvl4AAABqAAAAFAAAAE1FVEEtSU5GL01BTklGRVNULk1G803My0xLLS7R\nDUstKs7Mz7NSMNQz4OVyzEMScSxITM5IVQCKASXN9Ex5uZyLUhNLUlN0nSpB\n6k31DOINzHSTDEwVNIJL8xR8M5OL8osri0tSc4sVPPOS9TR5uXi5AFBLAwQK\nAAAAAABOg/42AAAAAAAAAAAAAAAACAAAAFdFQi1JTkYvUEsDBAoAAAAAAE+D\n/jYAAAAAAAAAAAAAAAAQAAAAV0VCLUlORi9jbGFzc2VzL1BLAwQKAAAAAABP\ng/42AAAAAAAAAAAAAAAAGgAAAFdFQi1JTkYvY2xhc3Nlcy9teXBhY2thZ2Uv\nUEsDBAoAAAAAAE6D/jYAAAAAAAAAAAAAAAAMAAAAV0VCLUlORi9saWIvUEsD\nBAoAAAAAAE6D/jYAAAAAAAAAAAAAAAAHAAAAaW1hZ2VzL1BLAwQKAAAACABP\ng/422qqRKSEDAADIBQAAJQAAAFdFQi1JTkYvY2xhc3Nlcy9teXBhY2thZ2Uv\nSGVsbG8uY2xhc3ONVNtSE0EQPQOBDCGKBvEOrngBFLLiXbKJIneJiEJJlVU+\nbJIxWd1k1t2JQvkkf+SLFj74AX6UZc/sKpQXNJU6nTnTPd1zujNfv33+AmAS\nqxkcxwRHvhc2rmiY5LiawTVc57jBcZPjFsdtjjscUxwFDoejyFHiuMtxj2Oa\n4z7HDMdsGnNpzDN0O17LUyWGztGxpwypGVkTDH1lryVW2s2KCNfdik9Mriyr\nrv/UDT29TsiUangRw+Fycytwq6/curAXhe/LAkNXTS4IxfBktPzSfeNu2pEI\n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\nAAAAAA==\n"
10
+ "data": "RGVwbG95QXBwbGljYXRpb25SZXF1ZXN0PXsicmVzb3VyY2VQYXRoIjoiL3Q7\naGF3a3VsYXIvZjszM2YyMmM0YS00NDVhLTRmOTAtYTI1ZS1jYWVmZjk1Nzlh\nMTAvcjtMb2NhbH5+IiwiZGVzdGluYXRpb25GaWxlTmFtZSI6InNhbXBsZS53\nYXIiLCJlbmFibGVkIjp0cnVlLCJmb3JjZURlcGxveSI6ZmFsc2UsImF1dGhl\nbnRpY2F0aW9uIjp7InVzZXJuYW1lIjoiamRvZSIsInBhc3N3b3JkIjoicGFz\nc3dvcmQifX1QSwMECgAAAAAARor+NgAAAAAAAAAAAAAAAAkABABNRVRBLUlO\nRi/+ygAAUEsDBAoAAAAIAEWK/jbi+gK+XgAAAGoAAAAUAAAATUVUQS1JTkYv\nTUFOSUZFU1QuTUbzTczLTEstLtENSy0qzszPs1Iw1DPg5XLMQxJxLEhMzkhV\nAIoBJc30THm5nItSE0tSU3SdKkHqTfUM4g3MdJMMTBU0gkvzFHwzk4vyiyuL\nS1JzixU885L1NHm5eLkAUEsDBAoAAAAAAE6D/jYAAAAAAAAAAAAAAAAIAAAA\nV0VCLUlORi9QSwMECgAAAAAAT4P+NgAAAAAAAAAAAAAAABAAAABXRUItSU5G\nL2NsYXNzZXMvUEsDBAoAAAAAAE+D/jYAAAAAAAAAAAAAAAAaAAAAV0VCLUlO\nRi9jbGFzc2VzL215cGFja2FnZS9QSwMECgAAAAAAToP+NgAAAAAAAAAAAAAA\nAAwAAABXRUItSU5GL2xpYi9QSwMECgAAAAAAToP+NgAAAAAAAAAAAAAAAAcA\nAABpbWFnZXMvUEsDBAoAAAAIAE+D/jbaqpEpIQMAAMgFAAAlAAAAV0VCLUlO\nRi9jbGFzc2VzL215cGFja2FnZS9IZWxsby5jbGFzc41U21ITQRA9A4EMIYoG\n8Q6ueAEUsuJdsokid4mIQkmVVT5skjFZ3WTW3YlC+SR/5IsWPvgBfpRlz+wq\nlBc0lTqdOdM93XO6M1+/ff4CYBKrGRzHBEe+FzauaJjkuJrBNVznuMFxk+MW\nx22OOxxTHAUOh6PIUeK4y3GPY5rjPscMx2wac2nMM3Q7XstTJYbO0bGnDKkZ\nWRMMfWWvJVbazYoI192KT0yuLKuu/9QNPb1OyJRqeBHD4XJzK3Crr9y6sBeF\n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\nbWxQSwUGAAAAAAwADADmAgAAAg8AAAAA\n"
11
11
  },
12
12
  {
13
13
  "operation": "read",
@@ -0,0 +1,26 @@
1
+ [
2
+ [
3
+ {
4
+ "operation": "read",
5
+ "type": "text",
6
+ "data": "WelcomeResponse={\"sessionId\":\"1j9HQbWoBj9RMQZIR0BwpnU3IkxoMwQ-O9_Cr1Ds\"}"
7
+ },
8
+ {
9
+ "operation": "write",
10
+ "data": "DisableApplicationRequest={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"\hawkular-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 [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:36ddc6df-fb44-11e5-b1c9-a1ce6a627f23)\"}"
16
+ },
17
+ {
18
+ "operation": "read",
19
+ "type": "text",
20
+ "data": "DisableApplicationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"\hawkular-alerts-actions-email.war\",\"destinationSessionId\":\"1j9HQbWoBj9RMQZIR0BwpnU3IkxoMwQ-O9_Cr1Ds\",\"status\":\"OK\",\"message\":\"Performed [Undeploy] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war]\"}"
21
+ },
22
+ {
23
+ "operation": "close"
24
+ }
25
+ ]
26
+ ]
@@ -0,0 +1,40 @@
1
+ [
2
+ [
3
+ {
4
+ "operation": "read",
5
+ "type": "text",
6
+ "data": "WelcomeResponse={\"sessionId\":\"CB5bP3YS_n9_k7ARVPvAR5BoQ1igWPQ6fC19j6ye\"}"
7
+ },
8
+ {
9
+ "operation": "write",
10
+ "data": "RestartApplicationRequest={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"hawkular-alerts-actions-email.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
11
+ },
12
+ {
13
+ "operation": "write",
14
+ "data": "RestartApplicationRequest={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"hawkular-console.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
15
+ },
16
+ {
17
+ "operation": "read",
18
+ "type": "text",
19
+ "data": "GenericSuccessResponse={\"message\":\"The request has been forwarded to feed [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:38d0e491-fb44-11e5-b1c9-a1ce6a627f23)\"}"
20
+ },
21
+ {
22
+ "operation": "read",
23
+ "type": "text",
24
+ "data": "GenericSuccessResponse={\"message\":\"The request has been forwarded to feed [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:38daf6bd-fb44-11e5-b1c9-a1ce6a627f23)\"}"
25
+ },
26
+ {
27
+ "operation": "read",
28
+ "type": "text",
29
+ "data": "RestartApplicationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~,\"destinationFileName\":\"hawkular-alerts-actions-email.war\",\"destinationSessionId\":\"CB5bP3YS_n9_k7ARVPvAR5BoQ1igWPQ6fC19j6ye\",\"status\":\"OK\",\"message\":\"Performed [Restart Deployment] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war]\"}"
30
+ },
31
+ {
32
+ "operation": "read",
33
+ "type": "text",
34
+ "data": "RestartApplicationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"hawkular-console.war\",\"destinationSessionId\":\"CB5bP3YS_n9_k7ARVPvAR5BoQ1igWPQ6fC19j6ye\",\"status\":\"OK\",\"message\":\"Performed [Restart Deployment] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-console.war]\"}"
35
+ },
36
+ {
37
+ "operation": "close"
38
+ }
39
+ ]
40
+ ]
@@ -0,0 +1,26 @@
1
+ [
2
+ [
3
+ {
4
+ "operation": "read",
5
+ "type": "text",
6
+ "data": "WelcomeResponse={\"sessionId\":\"D81EmhsShV22hk4gNJrNgfIrnvwMVez_KkmkOaPj\"}"
7
+ },
8
+ {
9
+ "operation": "write",
10
+ "data": "RestartApplicationRequest={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"hawkular-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 [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:329101d3-fb44-11e5-b1c9-a1ce6a627f23)\"}"
16
+ },
17
+ {
18
+ "operation": "read",
19
+ "type": "text",
20
+ "data": "RestartApplicationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"hawkular-alerts-actions-email.war\",\"SessionId\":\"D81EmhsShV22hk4gNJrNgfIrnvwMVez_KkmkOaPj\",\"status\":\"OK\",\"message\":\"Performed [Restart Deployment] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~]\"}"
21
+ },
22
+ {
23
+ "operation": "close"
24
+ }
25
+ ]
26
+ ]
@@ -0,0 +1,26 @@
1
+ [
2
+ [
3
+ {
4
+ "operation": "read",
5
+ "type": "text",
6
+ "data": "WelcomeResponse={\"sessionId\":\"xlRRFghvhkdeTkwQuhWlfFMdkV1Nt5trBWsOGf5O\"}"
7
+ },
8
+ {
9
+ "operation": "write",
10
+ "data": "RestartApplicationRequest={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Unknown~~\",\"destinationFileName\":\"non-existent.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 [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:f2b3d9e3-6490-11e6-9315-873fe20652b4)\"}"
16
+ },
17
+ {
18
+ "operation": "read",
19
+ "type": "text",
20
+ "data": "RestartApplicationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Unknown~~\",\"destinationFileName\":\"non-existent.war\",\"SessionId\":\"xlRRFghvhkdeTkwQuhWlfFMdkV1Nt5trBWsOGf5O\",\"status\":\"ERROR\",\"message\":\"Cannot restart application: unknown resource [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Unknown~~]\"}"
21
+ },
22
+ {
23
+ "operation": "close"
24
+ }
25
+ ]
26
+ ]
@@ -7,7 +7,7 @@
7
7
  },
8
8
  {
9
9
  "operation": "write",
10
- "data": "UndeployApplicationRequest={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"\hawkular-alerts-actions-email.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
10
+ "data": "UndeployApplicationRequest={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"removeContent\":true,\"destinationFileName\":\"\sample.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
11
11
  },
12
12
  {
13
13
  "operation": "read",
@@ -17,7 +17,7 @@
17
17
  {
18
18
  "operation": "read",
19
19
  "type": "text",
20
- "data": "UndeployApplicationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"\hawkular-alerts-actions-email.war\",\"destinationSessionId\":\"1j9HQbWoBj9RMQZIR0BwpnU3IkxoMwQ-O9_Cr1Ds\",\"status\":\"OK\",\"message\":\"Performed [Undeploy] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war]\"}"
20
+ "data": "UndeployApplicationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~\",\"destinationFileName\":\"\hawkular-alerts-actions-email.war\",\"destinationSessionId\":\"1j9HQbWoBj9RMQZIR0BwpnU3IkxoMwQ-O9_Cr1Ds\",\"status\":\"OK\",\"message\":\"Performed [Undeploy] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dsample.war]\"}"
21
21
  },
22
22
  {
23
23
  "operation": "close"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hawkular-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Libor Zoubek
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-08-05 00:00:00.000000000 Z
14
+ date: 2016-08-22 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rest-client
@@ -195,7 +195,8 @@ dependencies:
195
195
  - - "~>"
196
196
  - !ruby/object:Gem::Version
197
197
  version: 1.6.4
198
- description: " A Ruby client for Hawkular\n"
198
+ description: |2
199
+ A Ruby client for Hawkular
199
200
  email:
200
201
  - lzoubek@redhat.com
201
202
  - hrupp@redhat.com
@@ -418,13 +419,13 @@ files:
418
419
  - spec/vcr_cassettes/Operation/Operation/Add_JDBC_driver_should_add_the_driver.json
419
420
  - spec/vcr_cassettes/Operation/Operation/Add_datasource_should_be_doable.json
420
421
  - spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json
421
- - spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json
422
- - spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json
423
- - spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json
422
+ - spec/vcr_cassettes/Operation/Operation/Disable_should_be_performed_and_eventually_respond_with_success.json
424
423
  - spec/vcr_cassettes/Operation/Operation/Remove_JDBC_driver_should_be_performed_and_eventually_respond_with_success.json
425
424
  - spec/vcr_cassettes/Operation/Operation/Remove_datasource_should_be_performed_and_eventually_respond_with_success.json
426
- - spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json
427
- - spec/vcr_cassettes/Operation/Operation/Undeploy_should_be_performed_and_eventually_respond_with_success.json
425
+ - spec/vcr_cassettes/Operation/Operation/Restart_can_be_run_multiple_times_in_parallel.json
426
+ - spec/vcr_cassettes/Operation/Operation/Restart_should_be_performed_and_eventually_respond_with_success.json
427
+ - spec/vcr_cassettes/Operation/Operation/Restart_should_not_be_performed_if_resource_path_is_wrong.json
428
+ - spec/vcr_cassettes/Operation/Operation/Undeploy_deployment_should_be_performed_and_eventually_respond_with_success.json
428
429
  - spec/vcr_cassettes/Operation/Operation/should_not_be_possible_to_perform_on_closed_client.json
429
430
  - spec/vcr_cassettes/Operation/Websocket_connection/should_bail_with_hash_property_error_because_no_callback_at_all.json
430
431
  - spec/vcr_cassettes/Operation/Websocket_connection/should_bail_with_hash_property_error_because_no_error-callback_.json
@@ -655,13 +656,13 @@ test_files:
655
656
  - spec/vcr_cassettes/Operation/Operation/Add_JDBC_driver_should_add_the_driver.json
656
657
  - spec/vcr_cassettes/Operation/Operation/Add_datasource_should_be_doable.json
657
658
  - spec/vcr_cassettes/Operation/Operation/Add_deployment_should_be_doable.json
658
- - spec/vcr_cassettes/Operation/Operation/Redeploy_can_be_run_multiple_times_in_parallel.json
659
- - spec/vcr_cassettes/Operation/Operation/Redeploy_should_be_performed_and_eventually_respond_with_success.json
660
- - spec/vcr_cassettes/Operation/Operation/Redeploy_should_not_be_performed_if_resource_path_is_wrong.json
659
+ - spec/vcr_cassettes/Operation/Operation/Disable_should_be_performed_and_eventually_respond_with_success.json
661
660
  - spec/vcr_cassettes/Operation/Operation/Remove_JDBC_driver_should_be_performed_and_eventually_respond_with_success.json
662
661
  - spec/vcr_cassettes/Operation/Operation/Remove_datasource_should_be_performed_and_eventually_respond_with_success.json
663
- - spec/vcr_cassettes/Operation/Operation/Remove_deployment_should_be_performed_and_eventually_respond_with_success.json
664
- - spec/vcr_cassettes/Operation/Operation/Undeploy_should_be_performed_and_eventually_respond_with_success.json
662
+ - spec/vcr_cassettes/Operation/Operation/Restart_can_be_run_multiple_times_in_parallel.json
663
+ - spec/vcr_cassettes/Operation/Operation/Restart_should_be_performed_and_eventually_respond_with_success.json
664
+ - spec/vcr_cassettes/Operation/Operation/Restart_should_not_be_performed_if_resource_path_is_wrong.json
665
+ - spec/vcr_cassettes/Operation/Operation/Undeploy_deployment_should_be_performed_and_eventually_respond_with_success.json
665
666
  - spec/vcr_cassettes/Operation/Operation/should_not_be_possible_to_perform_on_closed_client.json
666
667
  - spec/vcr_cassettes/Operation/Websocket_connection/should_bail_with_hash_property_error_because_no_callback_at_all.json
667
668
  - spec/vcr_cassettes/Operation/Websocket_connection/should_bail_with_hash_property_error_because_no_error-callback_.json
@@ -674,4 +675,3 @@ test_files:
674
675
  - spec/vcr_cassettes/Tokens/Should_be_able_to_list_the_available_tokens.yml
675
676
  - spec/vcr_cassettes/Tokens/Should_get_a_401_when_attempting_to_create_a_token_with_a_wrong_password.yml
676
677
  - spec/vcr_cassettes/Tokens/Should_get_a_401_when_attempting_to_create_a_token_without_a_password.yml
677
- has_rdoc:
@@ -1,40 +0,0 @@
1
- [
2
- [
3
- {
4
- "operation": "read",
5
- "type": "text",
6
- "data": "WelcomeResponse={\"sessionId\":\"CB5bP3YS_n9_k7ARVPvAR5BoQ1igWPQ6fC19j6ye\"}"
7
- },
8
- {
9
- "operation": "write",
10
- "data": "ExecuteOperationRequest={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
11
- },
12
- {
13
- "operation": "write",
14
- "data": "ExecuteOperationRequest={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-console.war\",\"authentication\":{\"username\":\"jdoe\",\"password\":\"password\"}}"
15
- },
16
- {
17
- "operation": "read",
18
- "type": "text",
19
- "data": "GenericSuccessResponse={\"message\":\"The request has been forwarded to feed [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:38d0e491-fb44-11e5-b1c9-a1ce6a627f23)\"}"
20
- },
21
- {
22
- "operation": "read",
23
- "type": "text",
24
- "data": "GenericSuccessResponse={\"message\":\"The request has been forwarded to feed [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:38daf6bd-fb44-11e5-b1c9-a1ce6a627f23)\"}"
25
- },
26
- {
27
- "operation": "read",
28
- "type": "text",
29
- "data": "ExecuteOperationResponse={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war\",\"destinationSessionId\":\"CB5bP3YS_n9_k7ARVPvAR5BoQ1igWPQ6fC19j6ye\",\"status\":\"OK\",\"message\":\"Performed [Redeploy] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war]\"}"
30
- },
31
- {
32
- "operation": "read",
33
- "type": "text",
34
- "data": "ExecuteOperationResponse={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-console.war\",\"destinationSessionId\":\"CB5bP3YS_n9_k7ARVPvAR5BoQ1igWPQ6fC19j6ye\",\"status\":\"OK\",\"message\":\"Performed [Redeploy] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-console.war]\"}"
35
- },
36
- {
37
- "operation": "close"
38
- }
39
- ]
40
- ]
@@ -1,26 +0,0 @@
1
- [
2
- [
3
- {
4
- "operation": "read",
5
- "type": "text",
6
- "data": "WelcomeResponse={\"sessionId\":\"D81EmhsShV22hk4gNJrNgfIrnvwMVez_KkmkOaPj\"}"
7
- },
8
- {
9
- "operation": "write",
10
- "data": "ExecuteOperationRequest={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/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 [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:329101d3-fb44-11e5-b1c9-a1ce6a627f23)\"}"
16
- },
17
- {
18
- "operation": "read",
19
- "type": "text",
20
- "data": "ExecuteOperationResponse={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war\",\"destinationSessionId\":\"D81EmhsShV22hk4gNJrNgfIrnvwMVez_KkmkOaPj\",\"status\":\"OK\",\"message\":\"Performed [Redeploy] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dhawkular-alerts-actions-email.war]\"}"
21
- },
22
- {
23
- "operation": "close"
24
- }
25
- ]
26
- ]
@@ -1,26 +0,0 @@
1
- [
2
- [
3
- {
4
- "operation": "read",
5
- "type": "text",
6
- "data": "WelcomeResponse={\"sessionId\":\"43-JJwrYjacaVjWtUXmNc6Y6kphr6OXzbxbgsfic\"}"
7
- },
8
- {
9
- "operation": "write",
10
- "data": "ExecuteOperationRequest={\"operationName\":\"Redeploy\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dnon-existent.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 [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:360b0d35-fb44-11e5-b1c9-a1ce6a627f23)\"}"
16
- },
17
- {
18
- "operation": "read",
19
- "type": "text",
20
- "data": "ExecuteOperationResponse={\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dnon-existent.war\",\"destinationSessionId\":\"43-JJwrYjacaVjWtUXmNc6Y6kphr6OXzbxbgsfic\",\"status\":\"ERROR\",\"message\":\"Could not perform [Redeploy] on a [DMR Node] given by inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dnon-existent.war] requested on [2016-04-05T15:36Z]: Cannot execute operation: unknown resource [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment%3Dnon-existent.war]\"}"
21
- },
22
- {
23
- "operation": "close"
24
- }
25
- ]
26
- ]
@@ -1,26 +0,0 @@
1
- [
2
- [
3
- {
4
- "operation": "read",
5
- "type": "text",
6
- "data": "WelcomeResponse={\"sessionId\":\"ooyUICUPRH9DYgcp97vj4MyBnvBZmbDDk86mkBio\"}"
7
- },
8
- {
9
- "operation": "write",
10
- "data": "ExecuteOperationRequest={\"operationName\":\"Remove\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment=sample.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 [33f22c4a-445a-4f90-a25e-caeff9579a10] (MessageId=ID:99066924-fb44-11e5-b1c9-a1ce6a627f23)\"}"
16
- },
17
- {
18
- "operation": "read",
19
- "type": "text",
20
- "data": "ExecuteOperationResponse={\"operationName\":\"Remove\",\"resourcePath\":\"/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment=sample.war\",\"destinationSessionId\":\"ooyUICUPRH9DYgcp97vj4MyBnvBZmbDDk86mkBio\",\"status\":\"OK\",\"message\":\"Performed [Remove] on a [DMR Node] given by Inventory path [/t;hawkular/f;33f22c4a-445a-4f90-a25e-caeff9579a10/r;Local~~/r;Local~%2Fdeployment=sample.war]\",\"serverRefreshIndicator\":\"RELOAD-REQUIRED\"}"
21
- },
22
- {
23
- "operation": "close"
24
- }
25
- ]
26
- ]