generated from intersystems-community/objectscript-docker-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathswagger-security.json
2347 lines (2345 loc) · 92.6 KB
/
swagger-security.json
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
{
"swagger": "2.0",
"basePath": "/config-api/security",
"schemes": [
"http",
"https"
],
"info": {
"title": "REST API for Security package",
"version": "0.0.1",
"description": "REST API to configure IRIS security setting of an IRIS instance.",
"contact": {
"name": "Lorenzo Scalese",
"email": "lorenzo.scalese@gmail.com",
"url": "https://github.com/lscalese/iris-config-api/"
},
"license": {
"name": "MIT",
"url": "https://github.com/lscalese/iris-config-api/blob/master/LICENSE"
}
},
"produces": [
"application/json"
],
"paths": {
"/": {
"get": {
"summary": "Swagger 2.0 specification",
"tags": [
"Developer"
],
"operationId": "GetSpecification",
"description": "Swagger 2.0 specification",
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/user": {
"post": {
"summary": "Create a User.",
"description": "Define the security User database.\r\nThe system includes a set of pre-defined System users.\r\n.User names have the following properties:\r\n<ul><li>ser names are not case sensitive.</li><li>Maximum length of a user name is 160 characters.</li><li>User name cannot contain \"*\"</li></ul><br/>All defined users have the following properties:<br/><ul><li>A user cannot have duplicate roles defined</li><li>At least one user must hold the %All role</li><li>All the roles granted to a user must exist in the roles database.</li></ul>",
"tags": [
"Users"
],
"operationId": "PostUser",
"parameters": [
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecurityUsers"
}
}
],
"responses": {
"201": {
"description": "The user has been created with success.",
"headers": {
"Location": {
"type": "string",
"description": "Location of the new created user."
}
}
},
"409": {
"description": "The user already exists. Use the put method if you would like to update this user."
}
}
}
},
"/user/${name}": {
"get": {
"summary": "Get a User's properties.",
"description": "Gets a User's properties from the security database.",
"tags": [
"Users"
],
"operationId": "GetUser",
"parameters": [
{
"name": "name",
"description": "The username.",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SecurityUsers"
}
},
"404": {
"description": "The user was not found."
}
}
},
"put": {
"summary": "Modify a User's properties.",
"description": "Modifies a User's properties from the security database.",
"tags": [
"Users"
],
"operationId": "PutUser",
"parameters": [
{
"name": "name",
"description": "username.",
"required": true,
"type": "string",
"in": "path"
},
{
"name": "model",
"in": "body",
"required": true,
"description": "Warning the property Name cannot be updated.",
"schema": {
"$ref": "#/definitions/SecurityUsers"
}
}
],
"responses": {
"204": {
"description": "The user was found and updated."
},
"404": {
"description": "The user to update was not found."
}
}
},
"delete": {
"summary": "Delete a User.",
"description": "This method will delete a User from the security database.",
"tags": [
"Users"
],
"operationId": "DeleteUser",
"parameters": [
{
"name": "name",
"description": "username.",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"204": {
"description": "The user has been deleted."
},
"404": {
"description": "The user to delete was not found."
}
}
}
},
"/users" : {
"get": {
"summary": "List of users.",
"description": "Get the list of all existings users on this IRIS instance.",
"tags": [
"Users"
],
"operationId": "GetListOfUsers",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ListOfSecurityUsers"
}
}
}
}
},
"/role": {
"post": {
"summary": "Create a Role.",
"description": "<br/>Define the security Role database.<br/>The system includes a set of pre-defined System roles. System roles cannot be deleted. Legacy system roles may be deleted.<br/>Role names have the following properties:<br/><ul><li>Role names are case insensitive.</li><li>Maximum length of a role name is 64 characters.</li><li>Role name cannot contain a \",\" or \":\"</li><li>Role name cannot start with a \"%\" unless it is a pre-defined system role</li><li>A role may exist which has no resources.</li></ul><br/>%DB_* implicit roles cannot be modified<br/>The %Admin Secure:USE permission is required to operate on a resource",
"tags": [
"Roles"
],
"operationId": "PostRole",
"parameters": [
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecurityRoles"
}
}
],
"responses": {
"201": {
"description": "The role has been created.",
"headers": {
"Location": {
"type": "string"
}
}
},
"409": {
"description": "The role already exists."
}
}
}
},
"/role/${name}": {
"get": {
"summary": "Get a role's properties.",
"description": "Gets a role's properties from the security database.",
"tags": [
"Roles"
],
"operationId": "GetRole",
"parameters": [
{
"name": "name",
"description": "role name",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"200": {
"description": "OK"
}
}
},
"put": {
"summary": "Modify a role.",
"description": "Modify an existing role's properties in the security database.",
"tags": [
"Roles"
],
"operationId": "PutRole",
"parameters": [
{
"name": "name",
"description": "role name.",
"required": true,
"type": "string",
"in": "path"
},
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecurityRoles"
}
}
],
"responses": {
"204": {
"description": "The role has been updated."
},
"404": {
"description": "The role to update was not found."
}
}
},
"delete": {
"summary": "Delete a role.",
"description": "This method will delete a role from the security database and remove the role from all the users which hold this role. It will then update the in memory security database to mark this role as \"No access\" for all resources this role holds. Pre-defined system roles cannot be deleted.",
"tags": [
"Roles"
],
"operationId": "DeleteRole",
"parameters": [
{
"name": "name",
"description": "The role name to delete.",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"204": {
"description": "The role has been deleted."
},
"404": {
"description": "The role to delete was not found."
}
}
}
},
"/roles":{
"get": {
"summary": "Get list of existing roles.",
"description": "Get list of existing roles.",
"tags": [
"Roles"
],
"operationId": "GetListOfRoles",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ListOfSecurityRoles"
}
}
}
}
},
"/resource": {
"post": {
"summary": "Create resource.",
"description": "Define the security Resource database.<br/>The system includes a set of pre-defined System resources. Some properties of the system resources may not be modified.<br/>Resource names have the following properties:<br/><ul><li>Resource names are case insensitive.</li><li>Maximum length of a resource name is 64 characters.</li><li>First Character after the \"_\" cannot be a % for user-defined resources</li><li>Resource names cannot contain a \",\" or \":\"</li></ul><br/>The %Admin_Secure:USE permission is required to operate on a resource",
"tags": [
"Resources"
],
"operationId": "PostResource",
"parameters": [
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecurityResources"
}
}
],
"responses": {
"201": {
"description": "Resource has been created.",
"headers": {
"Location": {
"type": "string"
}
}
},
"409": {
"description": "The resource already exists."
}
}
}
},
"/resource/${name}": {
"get": {
"summary": "Get resource detail.",
"description": "Gets a resource's properties from the security database.",
"tags": [
"Resources"
],
"operationId": "GetResource",
"parameters": [
{
"name": "name",
"description": "resource name",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"200": {
"description": "OK"
}
}
},
"put": {
"summary": "Update resource.",
"description": "Modify an existing resource's properties in the security database.",
"tags": [
"Resources"
],
"operationId": "PutResource",
"parameters": [
{
"name": "name",
"description": "resource name.",
"required": true,
"type": "string",
"in": "path"
},
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecurityResources"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"404" : {
"description": "The resource to update was not found."
}
}
},
"delete": {
"summary": "Delete resource.",
"description": "Delete a resource. After the resource is deleted, it will update all the roles which hold this resource to remove the resource from the role. It will then update the in-memory security tables to mark this resource as \"No access\" for all roles, and \"no access\" for its public permissions. Access to these resources will then be restricted only to users who own the %All role.",
"tags": [
"Resources"
],
"operationId": "DeleteResources",
"parameters": [
{
"name": "name",
"description": "resource name.",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"204": {
"description": "Resource has been Deleted."
},
"404": {
"description": "The Resource to delete was not found."
}
}
}
},
"/resources" : {
"get": {
"summary": "Get list of existing resources.",
"description": "Get list of resources.",
"tags": [
"Resources"
],
"operationId": "GetListOfResources",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ListOfSecurityResources"
}
}
}
}
},
"/sslconfig": {
"post": {
"summary": "Create a new sslconfig.",
"description": "Define the SSL/TLS configurations.<br/><ul><li> SSL configuration names are case sensitive.</li><li> Maximum length of a configuration name is 64 characters.</li></ul><br/>Once an SSL configuration is defined and activated, you can use the name of the configuration as a parameter to the open or use command in order to set up an SSL connection.<br/>The %Admin Secure:USE permission is required to operate on an SSL configuration.",
"tags": [
"SSL"
],
"operationId": "PostSSLConfig",
"parameters": [
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecuritySSLConfigs"
}
}
],
"responses": {
"201": {
"description": "The SSL configuration has been created.",
"headers": {
"Location": {
"type": "string"
}
}
},
"409": {
"description": "The SSL configuration already exists."
}
}
}
},
"/sslconfig/${name}": {
"get": {
"summary": "Get a SSL configuration's properties.",
"description": "Gets a SSL configuration's properties from the security database.",
"tags": [
"SSL"
],
"operationId": "GetSSLConfig",
"parameters": [
{
"name": "name",
"description": "sslconfig name",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"200": {
"description": "OK"
},
"404": {
"description": "SSLConfig not found."
}
}
},
"put": {
"summary": "Modify an SSL configuration.",
"description": "Modify an existing SSL configuration's properties in the security database.",
"tags": [
"SSL"
],
"operationId": "PutSSLConfig",
"parameters": [
{
"name": "name",
"description": "sslconfig name.",
"required": true,
"type": "string",
"in": "path"
},
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecuritySSLConfigs"
}
}
],
"responses": {
"200": {
"description": "SSLConfiguration has been updated."
},
"404": {
"description": "SSLConfig to modify not found."
}
}
},
"delete": {
"summary": "Delete an SSL configuration.",
"description": "Delete an SSL configuration from the security database.",
"tags": [
"SSL"
],
"operationId": "DeleteSSLConfig",
"parameters": [
{
"name": "name",
"description": "sslconfig name.",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"204": {
"description": "SSLConfig has been deleted."
},
"404": {
"description": "SSLConfig to delete found."
}
}
}
},
"/sslconfigs": {
"get": {
"summary": "Get list of sslconfigs.",
"description": "Get list of sslconfigs.",
"tags": [
"SSL"
],
"operationId": "GetListOfSSLConfigs",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ListOfSecuritySSLConfigs"
}
}
}
}
},
"/application": {
"post": {
"summary":"Create an Application.",
"description":"Create an Application in the Security database.",
"tags":["WebApplication"],
"operationId": "PostWebApp",
"parameters": [
{
"name":"model",
"in":"body",
"required": true,
"schema": {
"$ref": "#/definitions/WebApplication"
}
}
],
"responses": {
"201": {
"description": "OK",
"headers":{
"Location":{
"type":"string"
}
}
},
"409": {
"description": "Web application already exists."
}
}
}
},
"/application/{name}": {
"get": {
"summary": "Get an application's properties.",
"description": "Gets an applications properties from the security database.",
"tags":["WebApplication"],
"operationId": "GetWebApp",
"parameters": [
{
"name":"name",
"description": "Web application url ex : /api/config don't forget to escape -> %2Fapi%2Fconfig",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"200": {
"description": "OK"
}
}
},
"put": {
"summary": "Modify an application.",
"description": "Modify an existing application's properties in the security database.",
"tags":["WebApplication"],
"operationId": "PutWebApp",
"parameters": [
{
"name":"name",
"description": "Web application url ex : /api/config don't forget to escape -> %2Fapi%2Fconfig",
"required": true,
"type": "string",
"in": "path"
},
{
"name":"model",
"in":"body",
"required": true,
"schema": {
"$ref": "#/definitions/WebApplication"
}
}
],
"responses": {
"204": {
"description": "The web application has been updated."
},
"404": {
"description": "The web application to update was not found."
}
}
},
"delete": {
"summary": "Delete an Application.",
"description": "This method will delete an application from the security database.",
"tags":["WebApplication"],
"operationId": "DeleteWebApp",
"parameters": [
{
"name":"name",
"description": "Web application url ex : /api/config don't forget to escape -> %2Fapi%2Fconfig",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"204": {
"description": "Web Application Deleted."
},
"404": {
"description": "Web application to delete was not found."
}
}
}
},
"/applications": {
"get": {
"summary": "Get list of existing web applications.",
"description": "Get list of existing web applications.",
"tags":["WebApplication"],
"operationId": "GetListOfWebApps",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ListOfWebApplication"
}
}
}
}
},
"/service/{name}" : {
"get": {
"tags": ["Services"],
"summary": "Get a service's properties.",
"description":"Gets a service's properties from the security database.",
"operationId": "GetService",
"parameters": [{
"name":"name",
"in":"path",
"type": "string",
"required":true
}],
"responses": {
"200": {
"description": "OK",
"schema":{
"$ref": "#/definitions/Service"
}
},
"404": {
"description": "Service not found."
}
}
},
"put": {
"tags": ["Services"],
"summary": "Modify a Service's properties.",
"description":"Modifies a Service's properties from the security database. Set Enable property to 1/0 to activate/disable.",
"operationId": "PutService",
"parameters": [{
"name":"name",
"in":"path",
"type": "string",
"required":true
},{
"name":"model",
"in":"body",
"required":true,
"schema": {
"$ref": "#/definitions/Service"
}
}],
"responses": {
"204": {
"description": "The service has been updated."
},
"404": {
"description": "Service to update was not found."
}
}
}
},
"/system":{
"get": {
"summary": "Get the system security properties.",
"description": "Get the system security properties.",
"tags":["System"],
"operationId": "GetSystem",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SecuritySystem"
}
}
}
},
"put": {
"summary": "Modify the system security properties.",
"description": "Modifies the system security properties from the security database.",
"tags": ["System"],
"operationId": "PutSystem",
"parameters": [{
"name":"model",
"in":"body",
"required":true,
"schema": {
"$ref": "#/definitions/SecuritySystem"
}
}],
"responses": {
"204": {
"description": "System securiting setting has been updated."
}
}
}
},
"/services": {
"get": {
"tags": ["Services"],
"summary": "Get list of services.",
"description": "Get list of services.",
"parameters": [],
"operationId": "GetListOfServices",
"responses": {
"200": {
"description": "OK",
"schema":{
"$ref": "#/definitions/ListOfServices"
}
}
}
}
},
"/sqlhelper": {
"put": {
"summary": "Helper service to add a set of privileges to tables\/views\/sqlproc.",
"description": "Allow to add privilege to tables\/views/sqlproc by list of schemas and\/or names.",
"tags": ["SQL"],
"operationId": "PutSqlHelper",
"parameters": [{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SQLHelper"
}
}],
"responses": {
"204": {
"description": "OK"
}
}
}
},
"/sqladminprivilegeset": {
"get": {
"summary": "Get list of SQLAdminPrivilegeSet.",
"description": "Get list of SQLAdminPrivilegeSet.",
"tags": [
"SQL"
],
"operationId": "GetListOfSQLAdminPrivilegeSet",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ListOfSecuritySQLAdminPrivilegeSet"
}
}
}
},
"put": {
"summary": "Set SQLAdminPrivilegeSet.",
"description": "Set SQLAdminPrivilegeSet.",
"tags": [
"SQL"
],
"operationId": "PutSQLAdminPrivilegeSet",
"parameters": [
{
"name": "model",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/SecuritySQLAdminPrivilegeSet"
}
}
],
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/sqladminprivilegeset/{namespace}/{grantee}": {
"get": {
"summary": "Get SQLAdminPrivilegeSet detail.",
"description": "Get SQLAdminPrivilegeSet detail.",
"tags": [
"SQL"
],
"operationId": "GetSQLAdminPrivilegeSet",
"parameters": [
{
"name": "namespace",
"description": "namespace",
"required": true,
"type": "string",
"in": "path"
},
{
"name": "grantee",
"description": "grantee",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SecuritySQLAdminPrivilegeSet"
}
}
}
},
"delete": {
"summary": "Delete SQLAdminPrivilegeSet.",
"description": "Delete SQLAdminPrivilegeSet.",
"tags": [
"SQL"
],
"operationId": "DeleteSQLAdminPrivilegeSet",
"parameters": [
{
"name": "namespace",
"description": "namespace",
"required": true,
"type": "string",
"in": "path"
},
{
"name": "grantee",
"description": "grantee",
"required": true,
"type": "string",
"in": "path"
}
],
"responses": {
"204": {
"description": "SQLAdminPrivilegeSet Deleted."
},
"404": {
"description": "SQLAdminPrivilegeSet not found."
}
}
}
},
"/sqlprivileges/{namespace}/{grantee}": {
"get": {
"tags": [
"SQL"
],
"summary": "Get list of privilege for namespace and grantee.",
"description": "Get list of privilege for namespace and grantee.",
"operationId": "GetListOfSQLPrivileges",
"parameters": [
{
"name": "namespace",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "grantee",
"in": "path",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ListOfSecuritySQLPrivileges"
}
}
}
}
},
"/sqlprivileges/{id}":{
"delete": {
"tags": [
"SQL"
],
"summary": "Delete privileges.",
"description": "Delete privileges.",
"operationId": "DeleteSQLPrivileges",
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"type": "string",
"description": "The structure of the id is namespace||sqlobject||privilege||grantee||grantor"
}
],
"responses": {
"204": {
"description": "Privileges deleted."
},
"404": {
"description": "Not found."