-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathImplementationFunctions.yaml
More file actions
1125 lines (1119 loc) · 44.1 KB
/
ImplementationFunctions.yaml
File metadata and controls
1125 lines (1119 loc) · 44.1 KB
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
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
title: ControllerDomainManager
version: 1.0.0
paths:
########################################################################################################################
# Service Layer - Individual Part
########################################################################################################################
/p1/construct-management-domain-interface-at-odl:
post:
operationId: p1ConstructManagementDomainInterfaceAtOdl
summary: 'Creates an additional ManagementDomainInterface at a Controller'
tags:
- PrivateServices
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- controller-name
- http-user-name
- http-password
- http-methods
properties:
controller-name:
type: string
description: >
'controllerName
remoteIpAddress = [/network-control-domain=running/control-construct=[controllerName]/logical-termination-point=controller-manager/layer-protocol=tcp-server/local-ip-address]
remotePort = [/network-control-domain=running/control-construct=[controllerName]/logical-termination-point=controller-manager/layer-protocol=tcp-server/local-port]
adminUser = [/network-control-domain=running/control-construct=[controllerName]/logical-termination-point=controller-manager/layer-protocol=http-server/http-user-name]
adminPassword = [/network-control-domain=running/control-construct=[controllerName]/logical-termination-point=controller-manager/layer-protocol=http-server/http-password]
execute callback:CreateUser
execute callback:CreateRole
execute callback:AssociateUserWithRole
execute callback:ReadRolesAtManagementDomain
extend list of roles by new role and actions
execute callback:WriteRolesAtManagementDomain
'
http-user-name:
type: string
description: 'applicationName'
http-password:
type: string
description: 'httpPassword'
http-methods:
type: array
description: 'httpMethods'
items:
type: string
enum:
- 'post'
- 'get'
- 'patch'
- 'put'
- 'delete'
example:
controller-name: 'odl-1-production'
http-user-name: 'mwdi-201-production'
http-password: 'geheim'
http-methods:
- 'get'
responses:
'204':
description: 'Additional ManagementDomainInterface created'
callbacks:
CreateUser:
url: #[remoteIpAddress]:[remotePort][/auth/v1/users]
post:
security:
- basicAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- password
- domainid
properties:
name:
type: string
description: >
'applicationName
from [request.body#http-user-name]'
password:
type: string
description: >
'httpPassword
from [request.body#http-password]'
domainid:
type: string
enum:
- 'sdn'
example:
name: 'mwdi-201-production'
password: 'geheim'
domainid: 'sdn'
responses:
'201':
description: 'User established'
content:
application/json:
schema:
type: object
CreateRole:
url: #[remoteIpAddress]:[remotePort][/auth/v1/roles]
post:
security:
- basicAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- domainid
properties:
name:
type: string
description: >
'roleName = chosen to equal applicationName
from [request.body#http-user-name]'
domainid:
type: string
enum:
- 'sdn'
example:
name: 'mwdi-201-production'
domainid: 'sdn'
responses:
'201':
description: 'Role established'
content:
application/json:
schema:
type: object
properties:
roleid:
type: string
description: 'roleId'
example:
roleid: 'mwdi-201-production@sdn'
AssociateUserWithRole:
url: #[remoteIpAddress]:[remotePort][/auth/v1/domains/sdn/users/{userid}/roles]
parameters:
- in: path
name: userid
schema:
type: string
required: true
description: >
'applicationName
from [request.body#http-user-name]'
post:
security:
- basicAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- roleid
- domainid
properties:
roleid:
type: string
description: >
'roleId
from [callback:CreateRole$response.body#roleid]'
domainid:
type: string
enum:
- 'sdn'
example:
roleid: 'mwdi-201-production@sdn'
domainid: 'sdn'
responses:
'201':
description: 'Role association established'
content:
application/json:
schema:
type: object
properties:
grantid:
type: string
domainid:
type: string
userid:
type: string
roleid:
type: string
example:
grantid: 'mwdi-201-production@sdn@mwdi-201-production@sdn@sdn'
domainid: 'sdn'
userid: 'mwdi-201-production'
roleid: 'siae@sdn'
ReadRolesAtManagementDomain:
url: #[remoteIpAddress]:[remotePort][/rests/data/aaa:http-authorization/policies/policies=%2Frests%2Fdata%2Fnetwork-topology:network-topology%2Ftopology%3Dtopology-netconf%2F**]
get:
security:
- basicAuth: []
responses:
'200':
description: 'List of permissions provided'
content:
application/json:
schema:
type: object
properties:
aaa:policies:
type: array
items:
type: object
properties:
resource:
type: string
permissions:
type: array
description: 'permissions[*]'
items:
type: object
properties:
role:
type: string
actions:
type: array
items:
type: string
enum:
- 'post'
- 'get'
- 'patch'
- 'put'
- 'delete'
index:
type: integer
description: 'index'
example:
aaa:policies:
- resource: '/rests/data/network-topology:network-topology/topology=topology-netconf/**'
permissions:
- role: 'mwdi-120-production'
actions:
- 'get'
index: 16
WriteRolesAtManagementDomain:
url: #[remoteIpAddress]:[remotePort][/rests/data/aaa:http-authorization/policies/policies=%2Frests%2Fdata%2Fnetwork-topology:network-topology%2Ftopology%3Dtopology-netconf%2F**]
put:
security:
- basicAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- aaa:policies
properties:
aaa:policies:
type: array
items:
type: object
required:
- resource
- permissions
- index
properties:
resource:
type: string
enum:
- '/rests/data/network-topology:network-topology/topology=topology-netconf/**'
permissions:
type: array
description: >
'permissions[*]
from [ callback:ReadRolesAtManagementDomain$response.body#permissions
but complemented with additional combination of role and actions as described below
if role would already exist, associated actions to be overwritten with new values ]'
items:
type: object
required:
- role
- actions
properties:
role:
type: string
description: >
'applicationName
found or created from [request.body#http-user-name]'
actions:
type: array
description: >
'httpMethods
from [request.body#http-methods[*]]'
items:
type: string
index:
type: integer
description: >
'index
from [callback:ReadRolesAtManagementDomain$response.body#index]'
example:
aaa:policies:
- resource: '/rests/data/network-topology:network-topology/topology=topology-netconf/**'
permissions:
- role: 'mwdi-120-production'
actions:
- 'get'
- role: 'mwdi-201-production'
actions:
- 'get'
index: 16
responses:
'204':
description: 'Permissions established'
########################################################################################################################
# Common Components
########################################################################################################################
components:
parameters:
user:
name: user
in: header
required: true
schema:
type: string
example: 'User Name'
description: 'User identifier from the system starting the service call'
originator:
name: originator
in: header
required: true
schema:
type: string
minLength: 3
example: 'Resolver'
description: >
'Identification for the system consuming the API, as defined in
[/core-model-1-4:control-construct/logical-termination-point={uuid}/layer-protocol=0/http-client-interface-1-0:http-client-interface-pac/http-client-interface-configuration/application-name]'
x-correlator:
name: x-correlator
in: header
required: true
schema:
type: string
pattern: '^[0-9A-Fa-f]{8}(?:-[0-9A-Fa-f]{4}){3}-[0-9A-Fa-f]{12}$'
example: '550e8400-e29b-11d4-a716-446655440000'
description: 'UUID for the service execution flow that allows to correlate requests and responses'
trace-indicator:
name: trace-indicator
in: header
required: true
schema:
type: string
pattern: '^([0-9]+)(\.([0-9]+))*$'
example: '1.3.1'
description: 'Sequence of request numbers along the flow'
customer-journey:
name: customer-journey
in: header
required: true
schema:
type: string
example: 'Unknown value'
description: 'Holds information supporting customer’s journey to which the execution applies'
responses:
responseForErroredServiceRequests:
description: 'Response in case of errored service requests'
content:
application/json:
schema:
$ref: '#/components/schemas/errorDescription'
headers:
x-correlator:
schema:
type: string
pattern: '^[0-9A-Fa-f]{8}(?:-[0-9A-Fa-f]{4}){3}-[0-9A-Fa-f]{12}$'
example: '550e8400-e29b-11d4-a716-446655440000'
description: 'UUID for the service execution flow that allows to correlate requests and responses. Its value must be identical at the response compared with its corresponding request'
exec-time:
schema:
type: integer
example: 1100
description: 'Value written by the service provider, reporting the total elapsed time for the execution, including all the additional processing needed to retrieve the data from the backend service. Expressed in milliseconds'
responseForErroredOamRequests:
description: 'Response in case of errored OaM requests'
content:
application/json:
schema:
$ref: '#/components/schemas/errorDescription'
'429':
description: 'Response in case too many requests need to be executed in parallel or too many requests have been received within a time period. The maximum number of parallel requests is defined in an IntegerProfile with the service name as a prefix and MaxNumberOfParallelRequests as a suffix. Some time period to elapse for throttling incoming requests is defined in an IntegerProfile with the service name as a prefix and ThrottlingPeriod as a suffix'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 429
maximum: 429
format: int32
message:
type: string
enum:
- 'Too many requests'
'460':
description: 'Response in case the mountName provided in the request is not found in the list of connected devices'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 460
maximum: 460
format: int32
message:
type: string
enum:
- 'Not connected. Requested device is currently not in connected state at the controller'
'461':
description: 'Response in case the (parent) topology object provided in the request (body or path) is not found in the cache.'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 461
maximum: 461
format: int32
message:
type: string
enum:
- 'Not available. The topology (parent) object is currently not found in the cache.'
'470':
description: 'Response in case the resource specified in the request does not exist within the connected device'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 470
maximum: 470
format: int32
message:
type: string
enum:
- 'Resource not existing. Device informs about addressed resource unknown'
'471':
description: 'Response in case the (child) topology object specified in the request (body or path) does not exist within the cache.'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 471
maximum: 471
format: int32
message:
type: string
enum:
- '(Child) topology object not existing. Cache informs about addressed resource unknown.'
'502':
description: 'Response in case the server is acting as a gateway or proxy and received an invalid response from the upstream server (device or application providing a consumed service)'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 502
maximum: 502
format: int32
message:
type: string
enum:
- 'Bad Gateway'
'530':
description: 'Response in case the referenced resource exists (e.g. device connected and resource exists in internal data tree), but response data is either not available, lost during transmission, incomplete or corrupted'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 530
maximum: 530
format: int32
message:
type: string
enum:
- 'Data invalid. Response data not available, incomplete or corrupted'
'531':
description: 'Response in case the server is acting as a gateway or proxy and was unable to authenticate at the upstream server (device or application providing a consumed service)'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 531
maximum: 531
format: int32
message:
type: string
enum:
- 'Bad Gateway. Authentication at upstream server failed.'
'532':
description: 'Response in case the server is acting as a gateway or proxy and was unable to connect to the upstream server (device or application providing a consumed service)'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 532
maximum: 532
format: int32
message:
type: string
enum:
- 'Bad Gateway. Upstream server not responding.'
'533':
description: 'Response in case the referenced resource for an connected device does not exist at the controller.'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 533
maximum: 533
format: int32
message:
type: string
enum:
- 'Resource unknown. The resource for the connected device does not exist at the Controller'
'550':
description: 'Response in case that the application wants to call a service specified by the requestor (e.g., to return data after a long taking data retrieval) during a service call to the application and the service information cannot be found.'
content:
application/json:
schema:
type: object
required:
- code
- message
properties:
code:
type: integer
minimum: 550
maximum: 550
format: int32
message:
type: string
enum:
- 'Requestor information for callback execution not found.'
schemas:
errorDescription:
type: object
required:
- code
- message
properties:
code:
type: integer
format: int32
message:
type: string
genericRepresentation:
type: object
required:
- response-value-list
- consequent-action-list
properties:
response-value-list:
type: array
items:
type: object
required:
- field-name
- value
- datatype
properties:
field-name:
type: string
description: >
'Field name
from [/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-response-p-*/response-profile-1-0:response-profile-pac/response-profile-capability/field-name]'
value:
type: string
description: >
'Field value
from [/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-response-p-*/response-profile-1-0:response-profile-pac/response-profile-configuration/value]'
datatype:
type: string
description: >
'Field datatype
from [/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-response-p-*/response-profile-1-0:response-profile-pac/response-profile-capability/datatype]'
consequent-action-list:
type: array
items:
type: object
required:
- label
- request
- display-in-new-browser-window
properties:
label:
type: string
description: >
'Label that shall be presented on the button
from [/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-action-p-*/action-profile-1-0:action-profile-pac/action-profile-capability/label]'
request:
type: string
description: >
'Request that shall be called, when button gets pressed
from
[{/core-model-1-4:control-construct/logical-termination-point=cdm-1-0-0-tcp-s-000/layer-protocol=0/tcp-server-interface-1-0:tcp-server-interface-pac/tcp-server-interface-configuration/local-protocol}]
://
[{/core-model-1-4:control-construct/logical-termination-point=cdm-1-0-0-tcp-s-000/layer-protocol=0/tcp-server-interface-1-0:tcp-server-interface-pac/tcp-server-interface-configuration/local-address/ipv-4-address}
or
{/core-model-1-4:control-construct/logical-termination-point=cdm-1-0-0-tcp-s-000/layer-protocol=0/tcp-server-interface-1-0:tcp-server-interface-pac/tcp-server-interface-configuration/local-address/domain-name}]
:
[{/core-model-1-4:control-construct/logical-termination-point=cdm-1-0-0-tcp-s-000/layer-protocol=0/tcp-server-interface-1-0:tcp-server-interface-pac/tcp-server-interface-configuration/local-port}]
[{/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-action-p-*/action-profile-1-0:action-profile-pac/action-profile-configuration/consequent-operation-reference}]'
input-value-list:
type: array
items:
type: object
required:
- field-name
properties:
field-name:
type: string
description: >
'Name of an input value required for executing the Request
from [/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-action-p-*/action-profile-1-0:action-profile-pac/action-profile-capability/input-value-list=*/name]'
unit:
type: string
description: >
'Unit of an input value required for executing the Request
from [/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-action-p-*/action-profile-1-0:action-profile-pac/action-profile-capability/input-value-list=*/unit]'
display-in-new-browser-window:
type: boolean
description: >
'True in case Request shall be represented in a new browser window
from [/core-model-1-4:control-construct/profile-collection/profile=cdm-1-0-0-action-p-*/action-profile-1-0:action-profile-pac/action-profile-capability/display-in-new-browser-window]'
logicalTerminationPoint:
type: object
required:
- uuid
- ltp-direction
- client-ltp
- server-ltp
- layer-protocol
properties:
uuid:
type: string
ltp-direction:
type: string
client-ltp:
type: array
uniqueItems: true
items:
type: string
server-ltp:
type: array
uniqueItems: true
items:
type: string
layer-protocol:
type: array
minItems: 1
maxItems: 1
items:
oneOf:
- description: 'operation server'
type: object
required:
- local-id
- layer-protocol-name
- operation-server-interface-1-0:operation-server-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
operation-server-interface-1-0:operation-server-interface-pac:
type: object
required:
- operation-server-interface-capability
- operation-server-interface-configuration
properties:
operation-server-interface-capability:
type: object
required:
- operation-name
properties:
operation-name:
type: string
operation-server-interface-configuration:
type: object
required:
- life-cycle-state
properties:
life-cycle-state:
type: string
- description: 'http server'
type: object
required:
- local-id
- layer-protocol-name
- http-server-interface-1-0:http-server-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
http-server-interface-1-0:http-server-interface-pac:
type: object
required:
- http-server-interface-capability
properties:
http-server-interface-capability:
type: object
required:
- application-name
- release-number
- data-update-period
properties:
application-name:
type: string
release-number:
type: string
data-update-period:
type: string
- description: 'tcp server'
type: object
required:
- local-id
- layer-protocol-name
- tcp-server-interface-1-0:tcp-server-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
tcp-server-interface-1-0:tcp-server-interface-pac:
type: object
required:
- tcp-server-interface-configuration
properties:
tcp-server-interface-configuration:
type: object
required:
- description
- local-protocol
- local-address
- local-port
properties:
description:
type: string
local-protocol:
type: string
local-address:
type: object
properties:
ipv-4-address:
type: string
domain-name:
type: string
local-port:
type: integer
- description: 'operation client'
type: object
required:
- local-id
- layer-protocol-name
- operation-client-interface-1-0:operation-client-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
operation-client-interface-1-0:operation-client-interface-pac:
type: object
required:
- operation-client-interface-configuration
- operation-client-interface-status
properties:
operation-client-interface-configuration:
type: object
required:
- operation-name
properties:
operation-name:
type: string
operation-client-interface-status:
type: object
required:
- operational-state
- life-cycle-state
properties:
operational-state:
type: string
life-cycle-state:
type: string
- description: 'elasticsearch client'
type: object
required:
- local-id
- layer-protocol-name
- elasticsearch-client-interface-1-0:elasticsearch-client-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
elasticsearch-client-interface-1-0:elasticsearch-client-interface-pac:
type: object
required:
- elasticsearch-client-interface-configuration
- elasticsearch-client-interface-status
properties:
elasticsearch-client-interface-configuration:
type: object
required:
- index-alias
properties:
index-alias:
type: string
elasticsearch-client-interface-status:
type: object
required:
- operational-state
- life-cycle-state
properties:
operational-state:
type: string
life-cycle-state:
type: string
- description: 'mongodb client'
type: object
required:
- local-id
- layer-protocol-name
- mongodb-client-interface-1-0:mongodb-client-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
mongodb-client-interface-1-0:mongodb-client-interface-pac:
type: object
required:
- mongodb-client-interface-configuration
- mongodb-client-interface-status
properties:
mongodb-client-interface-configuration:
type: object
required:
- database-name
- collection-name
properties:
database-name:
type: string
collection-name:
type: string
mongodb-client-interface-status:
type: object
required:
- operational-state
- life-cycle-state
properties:
operational-state:
type: string
life-cycle-state:
type: string
- description: 'kafka client'
type: object
required:
- local-id
- layer-protocol-name
- kafka-client-interface-1-0:kafka-client-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
kafka-client-interface-1-0:kafka-client-interface-pac:
type: object
required:
- kafka-client-interface-configuration
- kafka-client-interface-status
properties:
kafka-client-interface-configuration:
type: object
required:
- topic-name
properties:
topic-name:
type: string
kafka-client-interface-status:
type: object
required:
- operational-state
- life-cycle-state
properties:
operational-state:
type: string
life-cycle-state:
type: string
- description: 'http client'
type: object
required:
- local-id
- layer-protocol-name
- http-client-interface-1-0:http-client-interface-pac
properties:
local-id:
type: string
layer-protocol-name:
type: string
http-client-interface-1-0:http-client-interface-pac:
type: object
required:
- http-client-interface-configuration
properties:
http-client-interface-configuration:
type: object
required:
- application-name
- release-number
properties:
application-name:
type: string
release-number:
type: string
- description: 'tcp client'
type: object