@itentialopensource/adapter-bluecat_ipam 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +19 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +39 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +3069 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +13 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +681 -0
  13. package/README.md +344 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +25 -0
  16. package/TAB1.md +15 -0
  17. package/TAB2.md +318 -0
  18. package/TROUBLESHOOT.md +56 -0
  19. package/UTILITIES.md +473 -0
  20. package/adapter.js +47832 -0
  21. package/adapterBase.js +1526 -0
  22. package/entities/.generic/action.json +214 -0
  23. package/entities/.generic/schema.json +28 -0
  24. package/entities/.system/action.json +50 -0
  25. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  26. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  27. package/entities/.system/schema.json +19 -0
  28. package/entities/.system/schemaTokenReq.json +53 -0
  29. package/entities/.system/schemaTokenResp.json +53 -0
  30. package/entities/ACLResources/action.json +127 -0
  31. package/entities/ACLResources/schema.json +24 -0
  32. package/entities/AdminResources/action.json +1954 -0
  33. package/entities/AdminResources/schema.json +113 -0
  34. package/entities/ConfigurationResources/action.json +106 -0
  35. package/entities/ConfigurationResources/schema.json +23 -0
  36. package/entities/DHCPClientClassResources/action.json +250 -0
  37. package/entities/DHCPClientClassResources/schema.json +30 -0
  38. package/entities/DHCPZoneResources/action.json +250 -0
  39. package/entities/DHCPZoneResources/schema.json +30 -0
  40. package/entities/DNSSECResources/action.json +147 -0
  41. package/entities/DNSSECResources/schema.json +25 -0
  42. package/entities/DeploymentOptionResources/action.json +250 -0
  43. package/entities/DeploymentOptionResources/schema.json +30 -0
  44. package/entities/DeploymentRoleResources/action.json +169 -0
  45. package/entities/DeploymentRoleResources/schema.json +26 -0
  46. package/entities/DeviceResources/action.json +352 -0
  47. package/entities/DeviceResources/schema.json +35 -0
  48. package/entities/FavoriteResources/action.json +65 -0
  49. package/entities/FavoriteResources/schema.json +21 -0
  50. package/entities/IPv4AndIPv6Resources/action.json +1964 -0
  51. package/entities/IPv4AndIPv6Resources/schema.json +113 -0
  52. package/entities/KerberosResources/action.json +393 -0
  53. package/entities/KerberosResources/schema.json +37 -0
  54. package/entities/LocationResources/action.json +209 -0
  55. package/entities/LocationResources/schema.json +28 -0
  56. package/entities/MACAddressAndClientIdentifierResources/action.json +395 -0
  57. package/entities/MACAddressAndClientIdentifierResources/schema.json +37 -0
  58. package/entities/NamingPolicyResources/action.json +476 -0
  59. package/entities/NamingPolicyResources/schema.json +41 -0
  60. package/entities/ResourceRecordResources/action.json +377 -0
  61. package/entities/ResourceRecordResources/schema.json +36 -0
  62. package/entities/ServerResources/action.json +784 -0
  63. package/entities/ServerResources/schema.json +56 -0
  64. package/entities/TFTPResources/action.json +250 -0
  65. package/entities/TFTPResources/schema.json +30 -0
  66. package/entities/TagResources/action.json +495 -0
  67. package/entities/TagResources/schema.json +42 -0
  68. package/entities/TaskResources/action.json +106 -0
  69. package/entities/TaskResources/schema.json +23 -0
  70. package/entities/VendorProfileResources/action.json +106 -0
  71. package/entities/VendorProfileResources/schema.json +23 -0
  72. package/entities/ViewAndZoneResources/action.json +660 -0
  73. package/entities/ViewAndZoneResources/schema.json +50 -0
  74. package/error.json +190 -0
  75. package/metadata.json +84 -0
  76. package/package.json +75 -0
  77. package/pronghorn.json +34480 -0
  78. package/propertiesDecorators.json +18 -0
  79. package/propertiesSchema.json +1777 -0
  80. package/report/Bluecat IPAM 9.5 v2 API.yml-OpenApi3Json.json +114720 -0
  81. package/report/adapterInfo.json +10 -0
  82. package/report/auto-adapter-openapi.json +28663 -0
  83. package/report/creationReport.json +2910 -0
  84. package/sampleProperties.json +264 -0
  85. package/test/integration/adapterTestBasicGet.js +117 -0
  86. package/test/integration/adapterTestConnectivity.js +117 -0
  87. package/test/integration/adapterTestIntegration.js +12568 -0
  88. package/test/unit/adapterBaseTestUnit.js +1628 -0
  89. package/test/unit/adapterTestUnit.js +16058 -0
  90. package/utils/adapterInfo.js +156 -0
  91. package/utils/argParser.js +44 -0
  92. package/utils/checkMigrate.js +102 -0
  93. package/utils/entitiesToDB.js +190 -0
  94. package/utils/findPath.js +74 -0
  95. package/utils/logger.js +26 -0
  96. package/utils/methodDocumentor.js +298 -0
  97. package/utils/modify.js +153 -0
  98. package/utils/mongoDbConnection.js +79 -0
  99. package/utils/mongoUtils.js +162 -0
  100. package/utils/pre-commit.sh +32 -0
  101. package/utils/removeHooks.js +20 -0
  102. package/utils/setup.js +33 -0
  103. package/utils/taskMover.js +308 -0
  104. package/utils/tbScript.js +103 -0
  105. package/utils/tbUtils.js +347 -0
  106. package/utils/testRunner.js +298 -0
  107. package/utils/troubleshootingAdapter.js +177 -0
  108. package/utils/updateAdapterConfig.js +158 -0
@@ -0,0 +1,113 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getAddresses",
12
+ "enum": [
13
+ "getAddresses",
14
+ "getAddress",
15
+ "putAddress",
16
+ "deleteAddress",
17
+ "getCollectionAddresses",
18
+ "postCollectionAddress",
19
+ "getNetworkAddresses",
20
+ "postNetworkAddress",
21
+ "getCollectionAddress",
22
+ "deleteCollectionAddress",
23
+ "getCollectionAppliedResources",
24
+ "postCollectionAppliedResource",
25
+ "getCollectionAppliedResource",
26
+ "deleteCollectionAppliedResource",
27
+ "getBlocks",
28
+ "getBlock",
29
+ "putBlock",
30
+ "deleteBlock",
31
+ "getBlockBlocks",
32
+ "postBlockBlock",
33
+ "getConfigurationBlocks",
34
+ "postConfigurationBlock",
35
+ "getMergeBlocks",
36
+ "getSplitBlocks",
37
+ "getMergeBlock",
38
+ "getSplitBlock",
39
+ "getTemplateConflictingResources",
40
+ "getTemplateConflictingResource",
41
+ "getReconciliationPolicyDiscoveredDevices",
42
+ "getReconciliationPolicyDiscoveredDevice",
43
+ "getIpGroups",
44
+ "getIpGroup",
45
+ "putIpGroup",
46
+ "deleteIpGroup",
47
+ "getNetworkIpGroups",
48
+ "postNetworkIpGroup",
49
+ "getLeases",
50
+ "getLease",
51
+ "getCollectionLeases",
52
+ "getMerges",
53
+ "getMerge",
54
+ "getCollectionMerges",
55
+ "postCollectionMerge",
56
+ "getMoves",
57
+ "getMove",
58
+ "getCollectionMoves",
59
+ "postCollectionMove",
60
+ "getNetworks",
61
+ "getNetwork",
62
+ "putNetwork",
63
+ "deleteNetwork",
64
+ "getBlockNetworks",
65
+ "postBlockNetwork",
66
+ "getMergeNetworks",
67
+ "getSplitNetworks",
68
+ "getMergeNetwork",
69
+ "getSplitNetwork",
70
+ "getRanges",
71
+ "getRange",
72
+ "putRange",
73
+ "deleteRange",
74
+ "getMergeRanges",
75
+ "getNetworkRanges",
76
+ "postNetworkRange",
77
+ "getMergeRange",
78
+ "getReconciliationPolicies",
79
+ "getReconciliationPolicy",
80
+ "putReconciliationPolicy",
81
+ "deleteReconciliationPolicy",
82
+ "getCollectionReconciliationPolicies",
83
+ "postCollectionReconciliationPolicy",
84
+ "getCollectionRestrictedRanges",
85
+ "postCollectionRestrictedRange",
86
+ "getCollectionRestrictedRange",
87
+ "deleteCollectionRestrictedRange",
88
+ "getSplits",
89
+ "getSplit",
90
+ "getCollectionSplits",
91
+ "postCollectionSplit",
92
+ "getTemplateApplications",
93
+ "getTemplateApplication",
94
+ "getCollectionTemplateApplications",
95
+ "postCollectionTemplateApplication",
96
+ "getTemplateItems",
97
+ "getTemplateItem",
98
+ "putTemplateItem",
99
+ "deleteTemplateItem",
100
+ "getTemplateTemplateItems",
101
+ "postTemplateTemplateItem",
102
+ "getTemplates",
103
+ "getTemplate",
104
+ "putTemplate",
105
+ "deleteTemplate",
106
+ "getCollectionTemplates",
107
+ "postCollectionTemplate"
108
+ ],
109
+ "external_name": "ph_request_type"
110
+ }
111
+ },
112
+ "definitions": {}
113
+ }
@@ -0,0 +1,393 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getKeyDistributionCenters",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/api/v2/keyDistributionCenters?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getKeyDistributionCenter",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/api/v2/keyDistributionCenters/{pathv1}?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": ""
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "putKeyDistributionCenter",
47
+ "protocol": "REST",
48
+ "method": "PUT",
49
+ "entitypath": "{base_path}/{version}/api/v2/keyDistributionCenters/{pathv1}?{query}",
50
+ "requestSchema": "schema.json",
51
+ "responseSchema": "schema.json",
52
+ "timeout": 0,
53
+ "sendEmpty": false,
54
+ "requestDatatype": "JSON",
55
+ "responseDatatype": "JSON",
56
+ "headers": {},
57
+ "responseObjects": [
58
+ {
59
+ "type": "default",
60
+ "key": "",
61
+ "mockFile": ""
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "name": "deleteKeyDistributionCenter",
67
+ "protocol": "REST",
68
+ "method": "DELETE",
69
+ "entitypath": "{base_path}/{version}/api/v2/keyDistributionCenters/{pathv1}?{query}",
70
+ "requestSchema": "schema.json",
71
+ "responseSchema": "schema.json",
72
+ "timeout": 0,
73
+ "sendEmpty": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": ""
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "getRealmKeyDistributionCenters",
87
+ "protocol": "REST",
88
+ "method": "GET",
89
+ "entitypath": "{base_path}/{version}/api/v2/realms/{pathv1}/keyDistributionCenters?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "sendGetBody": false,
95
+ "requestDatatype": "JSON",
96
+ "responseDatatype": "JSON",
97
+ "headers": {},
98
+ "responseObjects": [
99
+ {
100
+ "type": "default",
101
+ "key": "",
102
+ "mockFile": ""
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "name": "postRealmKeyDistributionCenter",
108
+ "protocol": "REST",
109
+ "method": "POST",
110
+ "entitypath": "{base_path}/{version}/api/v2/realms/{pathv1}/keyDistributionCenters?{query}",
111
+ "requestSchema": "schema.json",
112
+ "responseSchema": "schema.json",
113
+ "timeout": 0,
114
+ "sendEmpty": false,
115
+ "requestDatatype": "JSON",
116
+ "responseDatatype": "JSON",
117
+ "headers": {},
118
+ "responseObjects": [
119
+ {
120
+ "type": "default",
121
+ "key": "",
122
+ "mockFile": ""
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "name": "getRealms",
128
+ "protocol": "REST",
129
+ "method": "GET",
130
+ "entitypath": "{base_path}/{version}/api/v2/realms?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "sendGetBody": false,
136
+ "requestDatatype": "JSON",
137
+ "responseDatatype": "JSON",
138
+ "headers": {},
139
+ "responseObjects": [
140
+ {
141
+ "type": "default",
142
+ "key": "",
143
+ "mockFile": ""
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "name": "getRealm",
149
+ "protocol": "REST",
150
+ "method": "GET",
151
+ "entitypath": "{base_path}/{version}/api/v2/realms/{pathv1}?{query}",
152
+ "requestSchema": "schema.json",
153
+ "responseSchema": "schema.json",
154
+ "timeout": 0,
155
+ "sendEmpty": false,
156
+ "sendGetBody": false,
157
+ "requestDatatype": "JSON",
158
+ "responseDatatype": "JSON",
159
+ "headers": {},
160
+ "responseObjects": [
161
+ {
162
+ "type": "default",
163
+ "key": "",
164
+ "mockFile": ""
165
+ }
166
+ ]
167
+ },
168
+ {
169
+ "name": "putRealm",
170
+ "protocol": "REST",
171
+ "method": "PUT",
172
+ "entitypath": "{base_path}/{version}/api/v2/realms/{pathv1}?{query}",
173
+ "requestSchema": "schema.json",
174
+ "responseSchema": "schema.json",
175
+ "timeout": 0,
176
+ "sendEmpty": false,
177
+ "requestDatatype": "JSON",
178
+ "responseDatatype": "JSON",
179
+ "headers": {},
180
+ "responseObjects": [
181
+ {
182
+ "type": "default",
183
+ "key": "",
184
+ "mockFile": ""
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "name": "deleteRealm",
190
+ "protocol": "REST",
191
+ "method": "DELETE",
192
+ "entitypath": "{base_path}/{version}/api/v2/realms/{pathv1}?{query}",
193
+ "requestSchema": "schema.json",
194
+ "responseSchema": "schema.json",
195
+ "timeout": 0,
196
+ "sendEmpty": false,
197
+ "requestDatatype": "JSON",
198
+ "responseDatatype": "JSON",
199
+ "headers": {},
200
+ "responseObjects": [
201
+ {
202
+ "type": "default",
203
+ "key": "",
204
+ "mockFile": ""
205
+ }
206
+ ]
207
+ },
208
+ {
209
+ "name": "getConfigurationRealms",
210
+ "protocol": "REST",
211
+ "method": "GET",
212
+ "entitypath": "{base_path}/{version}/api/v2/configurations/{pathv1}/realms?{query}",
213
+ "requestSchema": "schema.json",
214
+ "responseSchema": "schema.json",
215
+ "timeout": 0,
216
+ "sendEmpty": false,
217
+ "sendGetBody": false,
218
+ "requestDatatype": "JSON",
219
+ "responseDatatype": "JSON",
220
+ "headers": {},
221
+ "responseObjects": [
222
+ {
223
+ "type": "default",
224
+ "key": "",
225
+ "mockFile": ""
226
+ }
227
+ ]
228
+ },
229
+ {
230
+ "name": "postConfigurationRealm",
231
+ "protocol": "REST",
232
+ "method": "POST",
233
+ "entitypath": "{base_path}/{version}/api/v2/configurations/{pathv1}/realms?{query}",
234
+ "requestSchema": "schema.json",
235
+ "responseSchema": "schema.json",
236
+ "timeout": 0,
237
+ "sendEmpty": false,
238
+ "requestDatatype": "JSON",
239
+ "responseDatatype": "JSON",
240
+ "headers": {},
241
+ "responseObjects": [
242
+ {
243
+ "type": "default",
244
+ "key": "",
245
+ "mockFile": ""
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "name": "getServicePrincipals",
251
+ "protocol": "REST",
252
+ "method": "GET",
253
+ "entitypath": "{base_path}/{version}/api/v2/servicePrincipals?{query}",
254
+ "requestSchema": "schema.json",
255
+ "responseSchema": "schema.json",
256
+ "timeout": 0,
257
+ "sendEmpty": false,
258
+ "sendGetBody": false,
259
+ "requestDatatype": "JSON",
260
+ "responseDatatype": "JSON",
261
+ "headers": {},
262
+ "responseObjects": [
263
+ {
264
+ "type": "default",
265
+ "key": "",
266
+ "mockFile": ""
267
+ }
268
+ ]
269
+ },
270
+ {
271
+ "name": "getServicePrincipal",
272
+ "protocol": "REST",
273
+ "method": "GET",
274
+ "entitypath": "{base_path}/{version}/api/v2/servicePrincipals/{pathv1}?{query}",
275
+ "requestSchema": "schema.json",
276
+ "responseSchema": "schema.json",
277
+ "timeout": 0,
278
+ "sendEmpty": false,
279
+ "sendGetBody": false,
280
+ "requestDatatype": "JSON",
281
+ "responseDatatype": "JSON",
282
+ "headers": {},
283
+ "responseObjects": [
284
+ {
285
+ "type": "default",
286
+ "key": "",
287
+ "mockFile": ""
288
+ }
289
+ ]
290
+ },
291
+ {
292
+ "name": "putServicePrincipal",
293
+ "protocol": "REST",
294
+ "method": "PUT",
295
+ "entitypath": "{base_path}/{version}/api/v2/servicePrincipals/{pathv1}?{query}",
296
+ "requestSchema": "schema.json",
297
+ "responseSchema": "schema.json",
298
+ "timeout": 0,
299
+ "sendEmpty": false,
300
+ "requestDatatype": "JSON",
301
+ "responseDatatype": "JSON",
302
+ "headers": {},
303
+ "responseObjects": [
304
+ {
305
+ "type": "default",
306
+ "key": "",
307
+ "mockFile": ""
308
+ }
309
+ ]
310
+ },
311
+ {
312
+ "name": "deleteServicePrincipal",
313
+ "protocol": "REST",
314
+ "method": "DELETE",
315
+ "entitypath": "{base_path}/{version}/api/v2/servicePrincipals/{pathv1}?{query}",
316
+ "requestSchema": "schema.json",
317
+ "responseSchema": "schema.json",
318
+ "timeout": 0,
319
+ "sendEmpty": false,
320
+ "requestDatatype": "JSON",
321
+ "responseDatatype": "JSON",
322
+ "headers": {},
323
+ "responseObjects": [
324
+ {
325
+ "type": "default",
326
+ "key": "",
327
+ "mockFile": ""
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "name": "patchServicePrincipal",
333
+ "protocol": "REST",
334
+ "method": "PATCH",
335
+ "entitypath": "{base_path}/{version}/api/v2/servicePrincipals/{pathv1}?{query}",
336
+ "requestSchema": "schema.json",
337
+ "responseSchema": "schema.json",
338
+ "timeout": 0,
339
+ "sendEmpty": false,
340
+ "requestDatatype": "JSON",
341
+ "responseDatatype": "JSON",
342
+ "headers": {},
343
+ "responseObjects": [
344
+ {
345
+ "type": "default",
346
+ "key": "",
347
+ "mockFile": ""
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "name": "getRealmServicePrincipals",
353
+ "protocol": "REST",
354
+ "method": "GET",
355
+ "entitypath": "{base_path}/{version}/api/v2/realms/{pathv1}/servicePrincipals?{query}",
356
+ "requestSchema": "schema.json",
357
+ "responseSchema": "schema.json",
358
+ "timeout": 0,
359
+ "sendEmpty": false,
360
+ "sendGetBody": false,
361
+ "requestDatatype": "JSON",
362
+ "responseDatatype": "JSON",
363
+ "headers": {},
364
+ "responseObjects": [
365
+ {
366
+ "type": "default",
367
+ "key": "",
368
+ "mockFile": ""
369
+ }
370
+ ]
371
+ },
372
+ {
373
+ "name": "postRealmServicePrincipal",
374
+ "protocol": "REST",
375
+ "method": "POST",
376
+ "entitypath": "{base_path}/{version}/api/v2/realms/{pathv1}/servicePrincipals?{query}",
377
+ "requestSchema": "schema.json",
378
+ "responseSchema": "schema.json",
379
+ "timeout": 0,
380
+ "sendEmpty": false,
381
+ "requestDatatype": "JSON",
382
+ "responseDatatype": "JSON",
383
+ "headers": {},
384
+ "responseObjects": [
385
+ {
386
+ "type": "default",
387
+ "key": "",
388
+ "mockFile": ""
389
+ }
390
+ ]
391
+ }
392
+ ]
393
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getKeyDistributionCenters",
12
+ "enum": [
13
+ "getKeyDistributionCenters",
14
+ "getKeyDistributionCenter",
15
+ "putKeyDistributionCenter",
16
+ "deleteKeyDistributionCenter",
17
+ "getRealmKeyDistributionCenters",
18
+ "postRealmKeyDistributionCenter",
19
+ "getRealms",
20
+ "getRealm",
21
+ "putRealm",
22
+ "deleteRealm",
23
+ "getConfigurationRealms",
24
+ "postConfigurationRealm",
25
+ "getServicePrincipals",
26
+ "getServicePrincipal",
27
+ "putServicePrincipal",
28
+ "deleteServicePrincipal",
29
+ "patchServicePrincipal",
30
+ "getRealmServicePrincipals",
31
+ "postRealmServicePrincipal"
32
+ ],
33
+ "external_name": "ph_request_type"
34
+ }
35
+ },
36
+ "definitions": {}
37
+ }