Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
# Message Bus and exchanged Messages
Openslice has a Message bus which allows Openslice services to exchange messages via queues and topics.
It is based on ActiveMQ.
3rd party services can be attached to bus and subscribe to message topics or request resources via queues.
## QUEUE MESSAGES
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICEORDERS |
|**Name** | jms:queue:CATALOG.GET.SERVICEORDERS |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | |
|**Description** | Return a List<ServiceOrder> as String Json|
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICEORDER_BY_ID |
|**Name** | jms:queue:CATALOG.GET.SERVICEORDER_BY_ID |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | String orderid |
|**Description** | Return a ServiceOrder as String Json |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPD_SERVICEORDER_BY_ID |
|**Name** | jms:queue:CATALOG.UPD.SERVICEORDER_BY_ID |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | ServiceOrderUpdate serviceOrder |
|**Headers** | "orderid"= orderid |
|**Description** | Returns a ServiceOrder as String |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICESPEC_BY_ID |
|**Name** | jms:queue:CATALOG.GET.SERVICESPEC_BY_ID |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | specid |
|**Description** | Return a ServiceSpecification |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_ADD_SERVICESPEC |
|**Name** | jms:queue:CATALOG.ADD.SERVICESPEC |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | CRIDGE |
|**Body** | ServiceSpecCreate |
|**Description** | Creates a ServiceSpecification and returns a ServiceSpecification as String |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPD_SERVICESPEC |
|**Name** | jms:queue:CATALOG.UPD.SERVICESPEC |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | CRIDGE |
|**Body** | ServiceSpecUpdate |
|**Headers** | "serviceSpecid" = serviceSpecId|
|**Description** | Updates a ServiceSpecification and returns a ServiceSpecification as String. |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPDADD_SERVICESPEC |
|**Name** | jms:queue:CATALOG.UPDADD.SERVICESPEC |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | CRIDGE |
|**Body** | ServiceSpecUpdate |
|**Headers** | "serviceSpecid" = serviceSpecId, "forceId"=forceId |
|**Description** | Updates a ServiceSpecification and returns a ServiceSpecification as String. If forceId is true then tries to assign the requested ID to the spec |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_ADD_SERVICEORDER |
|**Name** | jms:queue:CATALOG.ADD.SERVICEORDER |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | ServiceOrderCreate serviceOrder |
|**Headers** | |
|**Description** | Creates a ServiceOrder and returns a ServiceOrder as String |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_INITIAL_SERVICEORDERS_IDS |
|**Name** | jms:queue:CATALOG.GET.INITIAL_SERVICEORDERS |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | |
|**Body** | |
|**Description** | Return a List<ServiceOrder> as String Json|
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICEORDER_IDS_BY_STATE |
|**Name** | jms:queue:CATALOG.GET.ACKNOWLEDGED_SERVICEORDERS |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | |
|**Headers** | "orderstate"= orderState |
|**Description** | String Json ArrayList of ServiceOrders |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_ADD_SERVICE |
|**Name** | jms:queue:CATALOG.ADD.SERVICE |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | ServiceCreate String json |
|**Headers** | "orderid"=orderid, "serviceSpecid"= specid |
|**Description** | Creates Service based an a Service Spec, Returns a Service object |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPD_SERVICE |
|**Name** | jms:queue:CATALOG.UPD.SERVICE |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | |
|**Body** | ServiceUpdate |
|**Headers** | "serviceid" = serviceId, "propagateToSO" = true/false |
|**Description** | will update a service by id and return the service instance. If propagateToSO=true then any service change will be handled by OSOM. This is needed to be controlled in order to avoid update loops|
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICE_BY_ID |
|**Name** | jms:queue:CATALOG.GET.SERVICE |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | String serviceID |
|**Description** | returns a Service instance |
---| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICE_BY_ORDERID |
|**Name** | jms:queue:CATALOG.GET.SERVICE_BY_ORDERID |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | |
|**Body** | String serviceID |
|**Description** | returns Service IDs of a specific order given then order id |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_SERVICE_QUEUE_ITEMS_GET |
|**Name** | jms:queue:CATALOG.SERVICEQUEUEITEMS.GET |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | |
|**Description** | returns a LIST OF Service Queue Items |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_SERVICE_QUEUE_ITEM_UPD |
|**Name** | jms:queue:CATALOG.SERVICEQUEUEITEM.UPDATE |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | String SERVICEQUEUEITEM |
|**Headers** | "itemid" = SERVICEQUEUEITEM id |
|**Description** | ill update a service queue item by id and return the instance |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_SERVICE_QUEUE_ITEM_DELETE |
|**Name** | jms:queue:CATALOG.SERVICEQUEUEITEM.DELETE |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | |
|**Headers** | "itemid" = SERVICEQUEUEITEM id |
|**Description** | ill delete a service queue item by id |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_SERVICES_TO_TERMINATE |
|**Name** | jms:queue:CATALOG.GET.SERVICETOTERMINATE |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | |
|**Headers** | |
|**Description** | Get a list of ACTIVE services with END DAte in the past |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_SERVICES_OF_PARTNERS |
|**Name** | jms:queue:CATALOG.GET.SERVICESOFPARTNERS |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | |
|**Headers** | |
|**Description** | Get a list of ACTIVE services from the inventory of partners |
---
| Message | |
| ------------- |----------------|
|**Alias** | NFV_CATALOG_GET_NSD_BY_ID |
|**Name** | jms:queue:NFVCATALOG.GET.NSD_BY_ID |
|**Type** | queue |
|**Destination** | NFV Catalog service |
|**Producers** | TMF API, OSOM |
|**Body** | NSDid |
|**Description** | Returns a NetworkServiceDescriptor object |
---
| Message | |
| ------------- |----------------|
|**Alias** | NFV_CATALOG_DEPLOY_NSD_REQ |
|**Name** | jms:queue:NFVCATALOG.DEPLOY.NSD_REQ |
|**Type** | queue |
|**Destination** | NFV Catalog service |
|**Producers** | OSOM |
|**Body** | DeploymentDescriptor as Json String |
|**Headers** | NSD id |
|**Description** | Returns a DeploymentDescriptor object as json string containing deployment info|
---
| Message | |
| ------------- |----------------|
|**Alias** | NFV_CATALOG_UPD_DEPLOYMENT_BY_ID |
|**Name** | jms:queue:NFVCATALOG.UPD.DEPLOYMENT_BY_ID |
|**Type** | queue |
|**Destination** | NFV Catalog service |
|**Producers** | OSOM |
|**Body** | DeploymentDescriptor as Json String |
|**Headers** | DeploymentDescriptor id |
|**Description** | Updates and Returns a DeploymentDescriptor object as json string containing deployment info|
---
| Message | |
| ------------- |----------------|
|**Alias** | GET_USER_BY_USERNAME |
|**Name** | jms:queue:GET.USER_BY_USERNAME |
|**Type** | queue |
|**Destination** | NFV Catalog service (this is temproary for now) |
|**Producers** | TMF API |
|**Body** | username |
|**Headers** | |
|**Description** | Returns a PortalUser object as json string containing user info|
---
| Message | |
| ------------- |----------------|
|**Alias** | NFV_CATALOG_GET_DEPLOYMENT_BY_ID |
|**Name** | jms:queue:NFVCATALOG.GET.DEPLOYMENT_BY_ID |
|**Type** | queue |
|**Destination** | NFV Catalog service |
|**Producers** | OSOM |
|**Body** | Deployment ID |
|**Description** | Returns a DeploymentDescriptor object |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_EXTERNAL_SERVICE_PARTNERS |
|**Name** | jms:queue:CATALOG.GET.EXTERNALSERVICEPARTNERS |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | |
|**Headers** | |
|**Description** | As a String Json ArrayList of Organizaton objects containing the characteristic name **EXTERNAL_TMFAPI** |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPD_EXTERNAL_SERVICESPEC |
|**Name** | jms:queue:CATALOG.UPD.EXTERNAL_SERVICESPEC |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM or maybe used by others that would like to update a Service Spec |
|**Body** | A serviceSpecification as json string |
|**Headers** | servicespecification id, orgid id |
|**Description** | Updates (or inserts if does not exist in catalog) an external service specification) |
---
| Message | |
| ------------- |----------------|
|**Alias** | NFV_CATALOG_NSACTIONS_SCALE |
|**Name** | jms:queue:NSACTIONS.SCALE |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM or maybe used by others that would like scale a NS |
|**Body** | A ScaleDescriptor as json string |
|**Headers** | none |
|**Description** | performs a scale |
---
| Message | |
| ------------- |----------------|
|**Alias** | NFV_CATALOG_NS_LCMCHANGED |
|**Name** | NFV_CATALOG_NS_LCMCHANGED |
|**Type** | topic |
|**Destination** | any |
|**Producers** | MANO client |
|**Body** | A json string |
|**Headers** | none |
|**Description** | A NFV_CATALOG_NS_LCMCHANGED message is published when LCM of a running NS is changed |
---
#ALARMS
| Message | |
| ------------- |----------------|
|**Alias** | ALARMS_ADD_ALARM |
|**Name** | jms:queue:ALARMS.ADD.ALARM |
|**Type** | queue |
|**Publishers** | |
|**Consumers** | TMF API |
|**Body** | AlarmCreate |
|**Headers** | |
|**Description** | Add an alarm |
---
| Message | |
| ------------- |----------------|
|**Alias** | ALARMS_UPDATE_ALARM |
|**Name** | jms:queue:ALARMS.UPDATE.ALARM |
|**Type** | queue |
|**Publishers** | |
|**Consumers** | TMF API |
|**Body** | AlarmUpdate |
|**Headers** | alarmid = alarm id, body (AlarmUpdate object) |
|**Description** | Update an alarm |
---
| Message | |
| ------------- |----------------|
|**Alias** | ALARMS_GET_ALARM |
|**Name** | jms:queue:ALARMS.GET.ALARM |
|**Type** | queue |
|**Publishers** | |
|**Consumers** | TMF API |
|**Body** | |
|**Headers** | alarmid = alarm id |
|**Description** | get an alarm |
---
## EVENT TOPICS IN Message Bus
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_CREATE |
|**Name** | jms:topic:EVENT.SERVICE.CREATE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | - |
|**Body** | Notification object |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | xx |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_STATE_CHANGED |
|**Name** | jms:topic:EVENT.SERVICE.STATECHANGED |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | - |
|**Body** | Notification object |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | xx |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_DELETE |
|**Name** | jms:topic:EVENT.SERVICE.DELETE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | - |
|**Body** | Notification object. Can be one of ServiceOrderCreateNotification, ServiceOrderStateChangeNotification, ServiceOrderAttributeValueChangeNotification, ServiceOrderDeleteNotification, etc |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | xx |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_ATTRIBUTE_VALUE_CHANGED |
|**Name** | jms:topic:EVENT.SERVICE.ATTRCHANGED |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | - |
|**Body** | Notification object. Can be one of ServiceOrderCreateNotification, ServiceOrderStateChangeNotification, ServiceOrderAttributeValueChangeNotification, ServiceOrderDeleteNotification, etc |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | xx |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_ORDER_CREATE |
|**Name** | jms:topic:EVENT.SERVICEORDER.CREATE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service |
|**Body** | Notification object. Can be one of ServiceOrderCreateNotification, ServiceOrderStateChangeNotification, ServiceOrderAttributeValueChangeNotification, ServiceOrderDeleteNotification, etc |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the ServiceOrder object. Bugzilla service for example uses this to create a new issue |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_ORDER_STATE_CHANGED |
|**Name** | jms:topic:EVENT.SERVICEORDER.STATECHANGED |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service |
|**Body** | Notification object. Can be one of ServiceOrderCreateNotification, ServiceOrderStateChangeNotification, ServiceOrderAttributeValueChangeNotification, ServiceOrderDeleteNotification, etc |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the ServiceOrder object. Bugzilla service for example uses this to update an issue |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_ORDER_DELETE |
|**Name** | jms:topic:EVENT.SERVICEORDER.DELETE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service |
|**Body** | Notification object. Can be one of ServiceOrderCreateNotification, ServiceOrderStateChangeNotification, ServiceOrderAttributeValueChangeNotification, ServiceOrderDeleteNotification, etc |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the ServiceOrder object |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_SERVICE_ORDER_ATTRIBUTE_VALUE_CHANGED |
|**Name** | jms:topic:EVENT.SERVICEORDER.ATTRCHANGED |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service |
|**Body** | Notification object. Can be one of ServiceOrderCreateNotification, ServiceOrderStateChangeNotification, ServiceOrderAttributeValueChangeNotification, ServiceOrderDeleteNotification, etc |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the ServiceOrder object |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_ALARM_CREATE |
|**Name** | jms:topic:EVENT.ALARM.CREATE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | OAS, BUGZILLA Service, CentralLog Service |
|**Body** | AlarmCreateEvent |
|**Headers** | |
|**Description** | The Event contains the Alarm object in payload |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_ADD_RESOURCE |
|**Name** | jms:queue:CATALOG.ADD.RESOURCE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | ResourceCreate |
|**Headers** | |
|**Description** | The Body contains the ResourceCreate object to add |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPD_RESOURCE |
|**Name** | jms:queue:CATALOG.UPD.RESOURCE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | ResourceUpdate |
|**Headers** | resourceid , propagateToSO |
|**Description** | The Body contains the ResourceCreate object to update |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_RESOURCE_BY_ID |
|**Name** | jms:queue:CATALOG.GET.RESOURCE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | resourceid |
|**Headers** | |
|**Description** | The Body contains the ResourceCreate object to update |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_RESOURCES_OF_PARTNERS |
|**Name** | jms:queue:CATALOG.GET.SERVICESOFPARTNERS |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | none |
|**Headers** | none |
|**Description** | retrieve all active services of partners |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_ADD_RESOURCESPEC |
|**Name** | jms:queue:CATALOG.ADD.RESOURCESPEC |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | ResourceSpecificationCreate |
|**Headers** | |
|**Description** | The Body contains the ResourceSpecificationCreate object to add |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPD_RESOURCESPEC |
|**Name** | jms:queue:CATALOG.UPD.RESOURCESPEC |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | ResourceSpecificationUpdate |
|**Headers** | resourceSpecId |
|**Description** | The Body contains the ResourceSpecificationCreate object to update |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_RESOURCESPEC_BY_ID |
|**Name** | jms:queue:CATALOG.GET.RESOURCESPEC_BY_ID |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | resourceSpecid |
|**Headers** | |
|**Description** | The Body contains the object id to find |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPDADD_RESOURCESPEC |
|**Name** | jms:queue:CATALOG.UPDADD.RESOURCESPEC |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | resourceid |
|**Headers** | |
|**Description** | The Body contains the ResourceSpecificationCreate object to update or create if not exist |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_RESOURCE_CREATE |
|**Name** | jms:topic:EVENT.RESOURCE.CREATE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service, other |
|**Body** | Notification object. |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the Resource object |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_RESOURCE_STATE_CHANGED |
|**Name** | jms:topic:EVENT.RESOURCE.STATECHANGED |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service, other |
|**Body** | Notification object. |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the Resource object |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_RESOURCE_DELETE |
|**Name** | jms:topic:EVENT.SERVICE.RESOURCE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service, other |
|**Body** | Notification object. |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the Resource object |
---
| Message | |
| ------------- |----------------|
|**Alias** | EVENT_RESOURCE_ATTRIBUTE_VALUE_CHANGED |
|**Name** | jms:topic:EVENT.RESOURCE.ATTRCHANGED |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | BUGZILLA Service, CentralLog Service, other |
|**Body** | Notification object. |
|**Headers** | "eventid"=eventid, "objId"= objId |
|**Description** | The Event of the Notification object contains the Resource object |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_LCMRULE_BY_ID |
|**Name** | jms:queue:CATALOG.GET.LCMRULE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | lcmid |
|**Headers** | |
|**Description** | The Body contains the LCMRuleSpec object |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_LCMRULES_BY_SPECID_PHASE |
|**Name** | jms:queue:CATALOG.GET.LCMRULES_BY_SPECID_PHASE |
|**Type** | topic |
|**Publishers** | TMF API |
|**Consumers** | any |
|**Body** | |
|**Headers** | header.servicespecid, header.phasename |
|**Description** | The Body contains the LCMRuleSpec objects of the specific Service Spec and the specific phase |
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICETESTSPEC_BY_ID |
|**Name** | jms:queue:CATALOG.GET.SERVICETESTSPEC_BY_ID |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | specid |
|**Description** | Return a ServiceTestSpecification |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_ADD_SERVICETEST |
|**Name** | jms:queue:CATALOG.ADD.SERVICETEST |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | ServiceTestCreate String json |
|**Headers** | "orderid"=orderid, "serviceTestSpecid"= specid |
|**Description** | Creates Service Test based an a Service Test Spec, Returns a ServiceTest object |
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_UPD_SERVICETEST |
|**Name** | jms:queue:CATALOG.UPD.SERVICETEST |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | |
|**Body** | ServiceTestUpdate |
|**Headers** | "serviceid" = serviceId, "propagateToSO" = true/false |
|**Description** | will update a service test by id and return the service instance. If propagateToSO=true then any service change will be handled by OSOM. This is needed to be controlled in order to avoid update loops|
---
| Message | |
| ------------- |----------------|
|**Alias** | CATALOG_GET_SERVICETEST_BY_ID |
|**Name** | jms:queue:CATALOG.GET.SERVICETEST |
|**Type** | queue |
|**Destination** | TMF API service |
|**Producers** | OSOM |
|**Body** | String serviceID |
|**Description** | returns a Service TEST instance |
---
| Message | |
| ------------- |----------------|
|**Alias** | CRD_DEPLOY_CR_REQ |
|**Name** | jms:queue:CRD.DEPLOY.CR_REQ |
|**Type** | queue |
|**Destination** | CRD service |
|**Producers** | OSOM |
|**Body** | CR spec as String |
|**Headers** | related service id |
|**Description** | Returns a String object containing deployment info|
---
| Message | |
| ------------- |----------------|
|**Alias** | CRD_PATCH_CR_REQ |
|**Name** | jms:queue:CRD.PATCH.CR_REQ |
|**Type** | queue |
|**Destination** | CRD service |
|**Producers** | OSOM |
|**Body** | CR as String |
|**Headers** | related service id |
|**Description** | Returns a String object containing PATCH info|
| Message | |
| ------------- |----------------|
|**Alias** | CRD_DELETE_CR_REQ |
|**Name** | jms:queue:CRD.DELETE.CR_REQ |
|**Type** | queue |
|**Destination** | CRD service |
|**Producers** | OSOM |
|**Body** | CR as String |
|**Headers** | related service id |
|**Description** | Returns a String object containing deletion info|