summaryrefslogtreecommitdiffstats
path: root/keystone-moon/doc/source/extensions/moon/moon_api.rst
blob: f2546d4d69fcab95201efac8d68dfae86ebf5b38 (plain)
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
Moon API
========

Here are Moon API with some examples of posted data and returned data.

All requests must be prefexied by /v3/OS-MOON.

Authz
-----

**GET     /authz/{tenant_id}/{subject_k_id}/{object_name}/{action_name}**
  Authorization API.

.. code-block:: json

               return = {
                    "authz": "True or False"
               }


Intra-Extension API
-------------------

Configuration
~~~~~~~~~~~~~

**GET     /configuration/templates**

    List all policy templates.

.. code-block:: json

               return = {
                    "template_id": {
                        "name": "name of the template",
                        "description": "description of the template",
                    }
               }


**GET     /configuration/aggregation_algorithms**

    List all aggregation algorithms.

.. code-block:: json

               return = {
                    "algorithm_id": {
                        "name": "name of the algorithm",
                        "description": "description of the algorithm",
                    }
               }


**GET     /configuration/sub_meta_rule_algorithms**

    List all sub meta rule algorithms.

.. code-block:: json

               return = {
                    "algorithm_id": {
                        "name": "name of the algorithm",
                        "description": "description of the algorithm",
                    }
               }


Tenants
~~~~~~~

**GET     /tenants**

    List all tenants.

.. code-block:: json

               return = {
                    "tenant_id": {
                        "name": "name of the tenant",
                        "description": "description of the tenant",
                        "intra_authz_extension_id": "id of the intra extension authz",
                        "intra_admin_extension_id": "id of the intra extension authz"
                    }
               }


**POST    /tenants**

    Add a tenant.

.. code-block:: json

               post = {
                    "tenant_name": "name of the tenant",
                    "tenant_description": "description of the tenant",
                    "tenant_intra_authz_extension_id": "id of the intra extension authz",
                    "tenant_intra_admin_extension_id": "id of the intra extension admin"
               }
               return = {
                    "tenant_id": {
                        "name": "name of the tenant",
                        "description": "description of the tenant",
                        "intra_authz_extension_id": "id of the intra extension authz",
                        "intra_admin_extension_id": "id of the intra extension authz"
                    }
               }


**POST    /tenants/{tenant_id}**

    Show information of one tenant.

.. code-block:: json

               return = {
                    "tenant_id": {
                        "name": "name of the tenant",
                        "description": "description of the tenant",
                        "intra_authz_extension_id": "id of the intra extension authz",
                        "intra_admin_extension_id": "id of the intra extension authz"
                    }
               }


**POST    /tenants/{tenant_id}**

    Modify a tenant.

.. code-block:: json

               post = {
                    "tenant_name": "name of the tenant",
                    "tenant_description": "description of the tenant",
                    "tenant_intra_authz_extension_id": "id of the intra extension authz",
                    "tenant_intra_admin_extension_id": "id of the intra extension admin"
               }
               return = {
                    "tenant_id": {
                        "name": "name of the tenant",
                        "description": "description of the tenant",
                        "intra_authz_extension_id": "id of the intra extension authz",
                        "intra_admin_extension_id": "id of the intra extension authz"
                    }
               }


**DELETE  /tenants/{tenant_id}**

    Delete a tenant.

.. code-block:: json

               return = {}


Intra-Extension
~~~~~~~~~~~~~~~

**GET     /intra_extensions/init**

    Initialize the root Intra_Extension (if needed).

.. code-block:: json

               return = {}


**GET     /intra_extensions**

    List all Intra_Extensions.

.. code-block:: json

               return = {
                    "intra_extension_id": {
                        "name": "name of the intra extension",
                        "model": "model of the intra extension"
                    }
               }


**POST    /intra_extensions**

    Create a new Intra_Extension.

.. code-block:: json

               post = {
                    "intra_extension_name": "name of the intra extension",
                    "intra_extension_model": "model of the intra extension (taken from /configuration/templates)",
                    "intra_extension_description": "description of the intra extension",

               }
               return = {}


**GET     /intra_extensions/{intra_extension_id}/**

    Show details about one Intra_Extension.

.. code-block:: json

               return = {
                    "id": "intra_extension_id",
                    "name": "name of the intra extension",
                    "model": "model of the intra extension",
                    "genre": "genre of the intra extension",
                    "description": "model of the intra extension"
               }


**DELETE  /intra_extensions/{intra_extension_id}/**

    Delete an Intra_Extension.

.. code-block:: json

               return = {}


Intra-Extension Subjects
~~~~~~~~~~~~~~~~~~~~~~~~

**GET     /intra_extensions/{intra_extension_id}/subjects**

    List all subjects.

.. code-block:: json

               return = {
                    "subject_id": {
                        "name": "name of the subject",
                        "keystone_id": "keystone id of the subject"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/subjects**

    List all subjects.

.. code-block:: json

               post = {
                    "subject_name": "name of the subject",
                    "subject_description": "description of the subject",
                    "subject_password": "password for the subject",
                    "subject_email": "email address of the subject"
               }
               return = {
                    "subject_id": {
                        "name": "name of the subject",
                        "keystone_id": "keystone id of the subject"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/subjects/{subject_id}**

    Delete a subject.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/subject_categories**

    List all subject categories.

.. code-block:: json

               return = {
                    "subject_category_id": {
                        "name": "name of the category",
                        "description": "description of the category"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/subject_categories**

    Add a new subject category.

.. code-block:: json

               post = {
                    "subject_category_name": "name of the category",
                    "subject_category_description": "description of the category"
               }
               return = {
                    "subject_category_id": {
                        "name": "name of the category",
                        "description": "description of the category"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/subject_categories/{subject_category_id}**

    Delete a subject category.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/subject_scopes/{subject_category_id}**

    List all subject scopes for a specific subject category.

.. code-block:: json

               return = {
                    "subject_scope_id": {
                        "name": "name of the scope",
                        "description": "description of the scope"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/subject_scopes/{subject_category_id}**

    Add a new subject scope for a specific subject category.

.. code-block:: json

               post = {
                    "subject_scope_name": "name of the scope",
                    "subject_scope_description": "description of the scope"
               }
               return = {
                    "subject_scope_id": {
                        "name": "name of the scope",
                        "description": "description of the scope"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/subject_scopes/{subject_category_id}/{subject_scope_id}**

    Delete a subject scope.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/subject_assignments/{subject_id}/{subject_category_id}**

    List all subject assignments for a subject and for a subject category.

.. code-block:: json

               return = [
                    "subject_assignment_id1", "subject_assignment_id2"
               ]


**POST    /intra_extensions/{intra_extension_id}/subject_assignments**

    Add an assignment.

.. code-block:: json

               post = {
                    "subject_id": "id of the subject",
                    "subject_category_id": "id of the category",
                    "subject_scope_id": "id of the scope"
               }
               return = [
                    "subject_assignment_id1", "subject_assignment_id2"
               ]


**DELETE  /intra_extensions/{intra_extension_id}/subject_assignments/{subject_id}/{subject_category_id}/{subject_scope_id}**

    Delete a subject assignment.

.. code-block:: json

               return = {}


Intra-Extension Objects
~~~~~~~~~~~~~~~~~~~~~~~

**GET     /intra_extensions/{intra_extension_id}/objects**

    List all objects.

.. code-block:: json

               return = {
                    "object_id": {
                        "name": "name of the object",
                        "keystone_id": "keystone id of the object"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/objects**

    List all objects.

.. code-block:: json

               post = {
                    "object_name": "name of the object",
                    "object_description": "description of the object"
               }
               return = {
                    "object_id": {
                        "name": "name of the object",
                        "keystone_id": "keystone id of the object"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/objects/{object_id}**

    Delete a object.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/object_categories**

    List all object categories.

.. code-block:: json

               return = {
                    "object_category_id": {
                        "name": "name of the category",
                        "description": "description of the category"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/object_categories**

    Add a new object category.

.. code-block:: json

               post = {
                    "object_category_name": "name of the category",
                    "object_category_description": "description of the category"
               }
               return = {
                    "object_category_id": {
                        "name": "name of the category",
                        "description": "description of the category"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/object_categories/{object_category_id}**

    Delete a object category.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/object_scopes/{object_category_id}**

    List all object scopes for a specific object category.

.. code-block:: json

               return = {
                    "object_scope_id": {
                        "name": "name of the scope",
                        "description": "description of the scope"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/object_scopes/{object_category_id}**

    Add a new object scope for a specific object category.

.. code-block:: json

               post = {
                    "object_scope_name": "name of the scope",
                    "object_scope_description": "description of the scope"
               }
               return = {
                    "object_scope_id": {
                        "name": "name of the scope",
                        "description": "description of the scope"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/object_scopes/{object_category_id}/{object_scope_id}**

    Delete a object scope.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/object_assignments/{object_id}/{object_category_id}**

    List all object assignments for a object and for a object category.

.. code-block:: json

               return = [
                    "object_assignment_id1", "object_assignment_id2"
               ]


**POST    /intra_extensions/{intra_extension_id}/object_assignments**

    Add an assignment.

.. code-block:: json

               post = {
                    "object_id": "id of the object",
                    "object_category_id": "id of the category",
                    "object_scope_id": "id of the scope"
               }
               return = [
                    "object_assignment_id1", "object_assignment_id2"
               ]


**DELETE  /intra_extensions/{intra_extension_id}/object_assignments/{object_id}/{object_category_id}/{object_scope_id}**

    Delete a object assignment.

.. code-block:: json

               return = {}


Intra-Extension Actions
~~~~~~~~~~~~~~~~~~~~~~~

**GET     /intra_extensions/{intra_extension_id}/actions**

    List all actions.

.. code-block:: json

               return = {
                    "action_id": {
                        "name": "name of the action",
                        "keystone_id": "keystone id of the action"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/actions**

    List all actions.

.. code-block:: json

               post = {
                    "action_name": "name of the action",
                    "action_description": "description of the action",
                    "action_password": "password for the action",
                    "action_email": "email address of the action"
               }
               return = {
                    "action_id": {
                        "name": "name of the action",
                        "keystone_id": "keystone id of the action"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/actions/{action_id}**

    Delete a action.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/action_categories**

    List all action categories.

.. code-block:: json

               return = {
                    "action_category_id": {
                        "name": "name of the category",
                        "description": "description of the category"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/action_categories**

    Add a new action category.

.. code-block:: json

               post = {
                    "action_category_name": "name of the category",
                    "action_category_description": "description of the category"
               }
               return = {
                    "action_category_id": {
                        "name": "name of the category",
                        "description": "description of the category"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/action_categories/{action_category_id}**

    Delete a action category.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/action_scopes/{action_category_id}**

    List all action scopes for a specific action category.

.. code-block:: json

               return = {
                    "action_scope_id": {
                        "name": "name of the scope",
                        "description": "description of the scope"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/action_scopes/{action_category_id}**

    Add a new action scope for a specific action category.

.. code-block:: json

               post = {
                    "action_scope_name": "name of the scope",
                    "action_scope_description": "description of the scope"
               }
               return = {
                    "action_scope_id": {
                        "name": "name of the scope",
                        "description": "description of the scope"
                    }
               }


**DELETE  /intra_extensions/{intra_extension_id}/action_scopes/{action_category_id}/{action_scope_id}**

    Delete a action scope.

.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/action_assignments/{action_id}/{action_category_id}**

    List all action assignments for a action and for a action category.

.. code-block:: json

               return = [
                    "action_assignment_id1", "action_assignment_id2"
               ]


**POST    /intra_extensions/{intra_extension_id}/action_assignments**

    Add an assignment.

.. code-block:: json

               post = {
                    "action_id": "id of the action",
                    "action_category_id": "id of the category",
                    "action_scope_id": "id of the scope"
               }
               return = [
                    "action_assignment_id1", "action_assignment_id2"
               ]


**DELETE  /intra_extensions/{intra_extension_id}/action_assignments/{action_id}/{action_category_id}/{action_scope_id}**

    Delete a action assignment.

.. code-block:: json

               return = {}


Intra-Extension Rules
~~~~~~~~~~~~~~~~~~~~~

**GET     /intra_extensions/{intra_extension_id}/aggregation_algorithm**

    List aggregation algorithm for an intra extension.

.. code-block:: json

               return = {
                    "aggregation_algorithm_id": {
                        "name": "name of the aggregation algorithm",
                        "description": "description of the aggregation algorithm"
                    }
               }


**POST    /intra_extensions/{intra_extension_id}/aggregation_algorithm**

    Set the current aggregation algorithm for an intra extension.

.. code-block:: json

               post = {
                    "aggregation_algorithm_id": "id of the aggregation algorithm",
                    "aggregation_algorithm_description": "description of the aggregation algorithm"
               }
               return = {
                    "aggregation_algorithm_id": {
                        "name": "name of the aggregation algorithm",
                        "description": "description of the aggregation algorithm"
                    }
               }


**GET     /intra_extensions/{intra_extension_id}/sub_meta_rules**

    Show the current sub meta rules.

.. code-block:: json

               return = {
                    "sub_meta_rule_id": {
                        "name": "name of the aggregation algorithm",
                        "algorithm": "algorithm of the aggregation algorithm",
                        "subject_categories": ["subject_category_id1", "subject_category_id2"],
                        "object_categories": ["object_category_id1", "object_category_id2"],
                        "action_categories": ["action_category_id1", "action_category_id2"]
                    }
               }


.. code-block:: json

               return = {}


**GET     /intra_extensions/{intra_extension_id}/rule/{sub_meta_rule_id}**

    Set the current sub meta rule.

.. code-block:: json

               post = {
                    "sub_meta_rule_name": "name of the sub meta rule",
                    "sub_meta_rule_algorithm": "name of the sub meta rule algorithm",
                    "sub_meta_rule_subject_categories": ["subject_category_id1", "subject_category_id2"],
                    "sub_meta_rule_object_categories": ["object_category_id1", "object_category_id2"],
                    "sub_meta_rule_action_categories": ["action_category_id1", "action_category_id2"]
               }
               return = {}


**GET     /intra_extensions/{intra_extension_id}/rule/{sub_meta_rule_id}**

    List all rules.

.. code-block:: json

               return = {
                    "rule_id1": ["subject_scope_id1", "object_scope_id1", "action_scope_id1"],
                    "rule_id2": ["subject_scope_id2", "object_scope_id2", "action_scope_id2"]
               }


**POST    /intra_extensions/{intra_extension_id}/rule/{sub_meta_rule_id}**

    Add a new rule.

.. code-block:: json

               post = {
                    "subject_categories": ["subject_scope_id1"],
                    "object_categories": ["object_scope_id1"],
                    "action_categories": ["action_scope_id1"],
                    "enabled": True
               }
               return = {}


**DELETE  /intra_extensions/{intra_extension_id}/rule/{sub_meta_rule_id}/{rule_id}**

    Delete a rule.

.. code-block:: json

               return = {}


Logs
~~~~

**GET     /logs/{options}**

    List all logs.
    Options can be:

    * ``filter=<filter_characters>``
    * ``from=<show logs from this date>``
    * ``to=<show logs to this date>``
    * ``event_number=<get n logs>``

    Time format is '%Y-%m-%d-%H:%M:%S' (eg. "2015-04-15-13:45:20")

.. code-block:: json

               return = [
                    "2015-04-15-13:45:20 ...",
                    "2015-04-15-13:45:21 ...",
                    "2015-04-15-13:45:22 ...",
                    "2015-04-15-13:45:23 ..."
               ]