@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.
- package/.eslintignore +5 -0
- package/.eslintrc.js +19 -0
- package/.jshintrc +3 -0
- package/AUTH.md +39 -0
- package/BROKER.md +211 -0
- package/CALLS.md +3069 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +13 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +681 -0
- package/README.md +344 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +25 -0
- package/TAB1.md +15 -0
- package/TAB2.md +318 -0
- package/TROUBLESHOOT.md +56 -0
- package/UTILITIES.md +473 -0
- package/adapter.js +47832 -0
- package/adapterBase.js +1526 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/ACLResources/action.json +127 -0
- package/entities/ACLResources/schema.json +24 -0
- package/entities/AdminResources/action.json +1954 -0
- package/entities/AdminResources/schema.json +113 -0
- package/entities/ConfigurationResources/action.json +106 -0
- package/entities/ConfigurationResources/schema.json +23 -0
- package/entities/DHCPClientClassResources/action.json +250 -0
- package/entities/DHCPClientClassResources/schema.json +30 -0
- package/entities/DHCPZoneResources/action.json +250 -0
- package/entities/DHCPZoneResources/schema.json +30 -0
- package/entities/DNSSECResources/action.json +147 -0
- package/entities/DNSSECResources/schema.json +25 -0
- package/entities/DeploymentOptionResources/action.json +250 -0
- package/entities/DeploymentOptionResources/schema.json +30 -0
- package/entities/DeploymentRoleResources/action.json +169 -0
- package/entities/DeploymentRoleResources/schema.json +26 -0
- package/entities/DeviceResources/action.json +352 -0
- package/entities/DeviceResources/schema.json +35 -0
- package/entities/FavoriteResources/action.json +65 -0
- package/entities/FavoriteResources/schema.json +21 -0
- package/entities/IPv4AndIPv6Resources/action.json +1964 -0
- package/entities/IPv4AndIPv6Resources/schema.json +113 -0
- package/entities/KerberosResources/action.json +393 -0
- package/entities/KerberosResources/schema.json +37 -0
- package/entities/LocationResources/action.json +209 -0
- package/entities/LocationResources/schema.json +28 -0
- package/entities/MACAddressAndClientIdentifierResources/action.json +395 -0
- package/entities/MACAddressAndClientIdentifierResources/schema.json +37 -0
- package/entities/NamingPolicyResources/action.json +476 -0
- package/entities/NamingPolicyResources/schema.json +41 -0
- package/entities/ResourceRecordResources/action.json +377 -0
- package/entities/ResourceRecordResources/schema.json +36 -0
- package/entities/ServerResources/action.json +784 -0
- package/entities/ServerResources/schema.json +56 -0
- package/entities/TFTPResources/action.json +250 -0
- package/entities/TFTPResources/schema.json +30 -0
- package/entities/TagResources/action.json +495 -0
- package/entities/TagResources/schema.json +42 -0
- package/entities/TaskResources/action.json +106 -0
- package/entities/TaskResources/schema.json +23 -0
- package/entities/VendorProfileResources/action.json +106 -0
- package/entities/VendorProfileResources/schema.json +23 -0
- package/entities/ViewAndZoneResources/action.json +660 -0
- package/entities/ViewAndZoneResources/schema.json +50 -0
- package/error.json +190 -0
- package/metadata.json +84 -0
- package/package.json +75 -0
- package/pronghorn.json +34480 -0
- package/propertiesDecorators.json +18 -0
- package/propertiesSchema.json +1777 -0
- package/report/Bluecat IPAM 9.5 v2 API.yml-OpenApi3Json.json +114720 -0
- package/report/adapterInfo.json +10 -0
- package/report/auto-adapter-openapi.json +28663 -0
- package/report/creationReport.json +2910 -0
- package/sampleProperties.json +264 -0
- package/test/integration/adapterTestBasicGet.js +117 -0
- package/test/integration/adapterTestConnectivity.js +117 -0
- package/test/integration/adapterTestIntegration.js +12568 -0
- package/test/unit/adapterBaseTestUnit.js +1628 -0
- package/test/unit/adapterTestUnit.js +16058 -0
- package/utils/adapterInfo.js +156 -0
- package/utils/argParser.js +44 -0
- package/utils/checkMigrate.js +102 -0
- package/utils/entitiesToDB.js +190 -0
- package/utils/findPath.js +74 -0
- package/utils/logger.js +26 -0
- package/utils/methodDocumentor.js +298 -0
- package/utils/modify.js +153 -0
- package/utils/mongoDbConnection.js +79 -0
- package/utils/mongoUtils.js +162 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/taskMover.js +308 -0
- package/utils/tbScript.js +103 -0
- package/utils/tbUtils.js +347 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +177 -0
- package/utils/updateAdapterConfig.js +158 -0
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getDeploymentAddedRecords",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/v2/deployments/{pathv1}/addedRecords?{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": "getDeploymentAddedRecord",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"entitypath": "{base_path}/{version}/api/v2/deployments/{pathv1}/addedRecords/{pathv2}?{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": "getDeploymentDeletedRecords",
|
|
47
|
+
"protocol": "REST",
|
|
48
|
+
"method": "GET",
|
|
49
|
+
"entitypath": "{base_path}/{version}/api/v2/deployments/{pathv1}/deletedRecords?{query}",
|
|
50
|
+
"requestSchema": "schema.json",
|
|
51
|
+
"responseSchema": "schema.json",
|
|
52
|
+
"timeout": 0,
|
|
53
|
+
"sendEmpty": false,
|
|
54
|
+
"sendGetBody": false,
|
|
55
|
+
"requestDatatype": "JSON",
|
|
56
|
+
"responseDatatype": "JSON",
|
|
57
|
+
"headers": {},
|
|
58
|
+
"responseObjects": [
|
|
59
|
+
{
|
|
60
|
+
"type": "default",
|
|
61
|
+
"key": "",
|
|
62
|
+
"mockFile": ""
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "getDeploymentDeletedRecord",
|
|
68
|
+
"protocol": "REST",
|
|
69
|
+
"method": "GET",
|
|
70
|
+
"entitypath": "{base_path}/{version}/api/v2/deployments/{pathv1}/deletedRecords/{pathv2}?{query}",
|
|
71
|
+
"requestSchema": "schema.json",
|
|
72
|
+
"responseSchema": "schema.json",
|
|
73
|
+
"timeout": 0,
|
|
74
|
+
"sendEmpty": false,
|
|
75
|
+
"sendGetBody": false,
|
|
76
|
+
"requestDatatype": "JSON",
|
|
77
|
+
"responseDatatype": "JSON",
|
|
78
|
+
"headers": {},
|
|
79
|
+
"responseObjects": [
|
|
80
|
+
{
|
|
81
|
+
"type": "default",
|
|
82
|
+
"key": "",
|
|
83
|
+
"mockFile": ""
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "getResourceRecordDependentRecords",
|
|
89
|
+
"protocol": "REST",
|
|
90
|
+
"method": "GET",
|
|
91
|
+
"entitypath": "{base_path}/{version}/api/v2/resourceRecords/{pathv1}/dependentRecords?{query}",
|
|
92
|
+
"requestSchema": "schema.json",
|
|
93
|
+
"responseSchema": "schema.json",
|
|
94
|
+
"timeout": 0,
|
|
95
|
+
"sendEmpty": false,
|
|
96
|
+
"sendGetBody": false,
|
|
97
|
+
"requestDatatype": "JSON",
|
|
98
|
+
"responseDatatype": "JSON",
|
|
99
|
+
"headers": {},
|
|
100
|
+
"responseObjects": [
|
|
101
|
+
{
|
|
102
|
+
"type": "default",
|
|
103
|
+
"key": "",
|
|
104
|
+
"mockFile": ""
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "getResourceRecordDependentRecord",
|
|
110
|
+
"protocol": "REST",
|
|
111
|
+
"method": "GET",
|
|
112
|
+
"entitypath": "{base_path}/{version}/api/v2/resourceRecords/{pathv1}/dependentRecords/{pathv2}?{query}",
|
|
113
|
+
"requestSchema": "schema.json",
|
|
114
|
+
"responseSchema": "schema.json",
|
|
115
|
+
"timeout": 0,
|
|
116
|
+
"sendEmpty": false,
|
|
117
|
+
"sendGetBody": false,
|
|
118
|
+
"requestDatatype": "JSON",
|
|
119
|
+
"responseDatatype": "JSON",
|
|
120
|
+
"headers": {},
|
|
121
|
+
"responseObjects": [
|
|
122
|
+
{
|
|
123
|
+
"type": "default",
|
|
124
|
+
"key": "",
|
|
125
|
+
"mockFile": ""
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "getResourceRecords",
|
|
131
|
+
"protocol": "REST",
|
|
132
|
+
"method": "GET",
|
|
133
|
+
"entitypath": "{base_path}/{version}/api/v2/resourceRecords?{query}",
|
|
134
|
+
"requestSchema": "schema.json",
|
|
135
|
+
"responseSchema": "schema.json",
|
|
136
|
+
"timeout": 0,
|
|
137
|
+
"sendEmpty": false,
|
|
138
|
+
"sendGetBody": false,
|
|
139
|
+
"requestDatatype": "JSON",
|
|
140
|
+
"responseDatatype": "JSON",
|
|
141
|
+
"headers": {},
|
|
142
|
+
"responseObjects": [
|
|
143
|
+
{
|
|
144
|
+
"type": "default",
|
|
145
|
+
"key": "",
|
|
146
|
+
"mockFile": ""
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "getResourceRecord",
|
|
152
|
+
"protocol": "REST",
|
|
153
|
+
"method": "GET",
|
|
154
|
+
"entitypath": "{base_path}/{version}/api/v2/resourceRecords/{pathv1}?{query}",
|
|
155
|
+
"requestSchema": "schema.json",
|
|
156
|
+
"responseSchema": "schema.json",
|
|
157
|
+
"timeout": 0,
|
|
158
|
+
"sendEmpty": false,
|
|
159
|
+
"sendGetBody": false,
|
|
160
|
+
"requestDatatype": "JSON",
|
|
161
|
+
"responseDatatype": "JSON",
|
|
162
|
+
"headers": {},
|
|
163
|
+
"responseObjects": [
|
|
164
|
+
{
|
|
165
|
+
"type": "default",
|
|
166
|
+
"key": "",
|
|
167
|
+
"mockFile": ""
|
|
168
|
+
}
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "putResourceRecord",
|
|
173
|
+
"protocol": "REST",
|
|
174
|
+
"method": "PUT",
|
|
175
|
+
"entitypath": "{base_path}/{version}/api/v2/resourceRecords/{pathv1}?{query}",
|
|
176
|
+
"requestSchema": "schema.json",
|
|
177
|
+
"responseSchema": "schema.json",
|
|
178
|
+
"timeout": 0,
|
|
179
|
+
"sendEmpty": false,
|
|
180
|
+
"requestDatatype": "JSON",
|
|
181
|
+
"responseDatatype": "JSON",
|
|
182
|
+
"headers": {},
|
|
183
|
+
"responseObjects": [
|
|
184
|
+
{
|
|
185
|
+
"type": "default",
|
|
186
|
+
"key": "",
|
|
187
|
+
"mockFile": ""
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "deleteResourceRecord",
|
|
193
|
+
"protocol": "REST",
|
|
194
|
+
"method": "DELETE",
|
|
195
|
+
"entitypath": "{base_path}/{version}/api/v2/resourceRecords/{pathv1}?{query}",
|
|
196
|
+
"requestSchema": "schema.json",
|
|
197
|
+
"responseSchema": "schema.json",
|
|
198
|
+
"timeout": 0,
|
|
199
|
+
"sendEmpty": false,
|
|
200
|
+
"requestDatatype": "JSON",
|
|
201
|
+
"responseDatatype": "JSON",
|
|
202
|
+
"headers": {},
|
|
203
|
+
"responseObjects": [
|
|
204
|
+
{
|
|
205
|
+
"type": "default",
|
|
206
|
+
"key": "",
|
|
207
|
+
"mockFile": ""
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "getAddressResourceRecords",
|
|
213
|
+
"protocol": "REST",
|
|
214
|
+
"method": "GET",
|
|
215
|
+
"entitypath": "{base_path}/{version}/api/v2/addresses/{pathv1}/resourceRecords?{query}",
|
|
216
|
+
"requestSchema": "schema.json",
|
|
217
|
+
"responseSchema": "schema.json",
|
|
218
|
+
"timeout": 0,
|
|
219
|
+
"sendEmpty": false,
|
|
220
|
+
"sendGetBody": false,
|
|
221
|
+
"requestDatatype": "JSON",
|
|
222
|
+
"responseDatatype": "JSON",
|
|
223
|
+
"headers": {},
|
|
224
|
+
"responseObjects": [
|
|
225
|
+
{
|
|
226
|
+
"type": "default",
|
|
227
|
+
"key": "",
|
|
228
|
+
"mockFile": ""
|
|
229
|
+
}
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "postAddressResourceRecord",
|
|
234
|
+
"protocol": "REST",
|
|
235
|
+
"method": "POST",
|
|
236
|
+
"entitypath": "{base_path}/{version}/api/v2/addresses/{pathv1}/resourceRecords?{query}",
|
|
237
|
+
"requestSchema": "schema.json",
|
|
238
|
+
"responseSchema": "schema.json",
|
|
239
|
+
"timeout": 0,
|
|
240
|
+
"sendEmpty": false,
|
|
241
|
+
"requestDatatype": "JSON",
|
|
242
|
+
"responseDatatype": "JSON",
|
|
243
|
+
"headers": {},
|
|
244
|
+
"responseObjects": [
|
|
245
|
+
{
|
|
246
|
+
"type": "default",
|
|
247
|
+
"key": "",
|
|
248
|
+
"mockFile": ""
|
|
249
|
+
}
|
|
250
|
+
]
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "getCollectionResourceRecords",
|
|
254
|
+
"protocol": "REST",
|
|
255
|
+
"method": "GET",
|
|
256
|
+
"entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/resourceRecords?{query}",
|
|
257
|
+
"requestSchema": "schema.json",
|
|
258
|
+
"responseSchema": "schema.json",
|
|
259
|
+
"timeout": 0,
|
|
260
|
+
"sendEmpty": false,
|
|
261
|
+
"sendGetBody": false,
|
|
262
|
+
"requestDatatype": "JSON",
|
|
263
|
+
"responseDatatype": "JSON",
|
|
264
|
+
"headers": {},
|
|
265
|
+
"responseObjects": [
|
|
266
|
+
{
|
|
267
|
+
"type": "default",
|
|
268
|
+
"key": "",
|
|
269
|
+
"mockFile": ""
|
|
270
|
+
}
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"name": "postCollectionResourceRecord",
|
|
275
|
+
"protocol": "REST",
|
|
276
|
+
"method": "POST",
|
|
277
|
+
"entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/resourceRecords?{query}",
|
|
278
|
+
"requestSchema": "schema.json",
|
|
279
|
+
"responseSchema": "schema.json",
|
|
280
|
+
"timeout": 0,
|
|
281
|
+
"sendEmpty": false,
|
|
282
|
+
"requestDatatype": "JSON",
|
|
283
|
+
"responseDatatype": "JSON",
|
|
284
|
+
"headers": {},
|
|
285
|
+
"responseObjects": [
|
|
286
|
+
{
|
|
287
|
+
"type": "default",
|
|
288
|
+
"key": "",
|
|
289
|
+
"mockFile": ""
|
|
290
|
+
}
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "getAddressResourceRecord",
|
|
295
|
+
"protocol": "REST",
|
|
296
|
+
"method": "GET",
|
|
297
|
+
"entitypath": "{base_path}/{version}/api/v2/addresses/{pathv1}/resourceRecords/{pathv2}?{query}",
|
|
298
|
+
"requestSchema": "schema.json",
|
|
299
|
+
"responseSchema": "schema.json",
|
|
300
|
+
"timeout": 0,
|
|
301
|
+
"sendEmpty": false,
|
|
302
|
+
"sendGetBody": false,
|
|
303
|
+
"requestDatatype": "JSON",
|
|
304
|
+
"responseDatatype": "JSON",
|
|
305
|
+
"headers": {},
|
|
306
|
+
"responseObjects": [
|
|
307
|
+
{
|
|
308
|
+
"type": "default",
|
|
309
|
+
"key": "",
|
|
310
|
+
"mockFile": ""
|
|
311
|
+
}
|
|
312
|
+
]
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"name": "deleteAddressResourceRecord",
|
|
316
|
+
"protocol": "REST",
|
|
317
|
+
"method": "DELETE",
|
|
318
|
+
"entitypath": "{base_path}/{version}/api/v2/addresses/{pathv1}/resourceRecords/{pathv2}?{query}",
|
|
319
|
+
"requestSchema": "schema.json",
|
|
320
|
+
"responseSchema": "schema.json",
|
|
321
|
+
"timeout": 0,
|
|
322
|
+
"sendEmpty": false,
|
|
323
|
+
"requestDatatype": "JSON",
|
|
324
|
+
"responseDatatype": "JSON",
|
|
325
|
+
"headers": {},
|
|
326
|
+
"responseObjects": [
|
|
327
|
+
{
|
|
328
|
+
"type": "default",
|
|
329
|
+
"key": "",
|
|
330
|
+
"mockFile": ""
|
|
331
|
+
}
|
|
332
|
+
]
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "getDeploymentUpdatedRecords",
|
|
336
|
+
"protocol": "REST",
|
|
337
|
+
"method": "GET",
|
|
338
|
+
"entitypath": "{base_path}/{version}/api/v2/deployments/{pathv1}/updatedRecords?{query}",
|
|
339
|
+
"requestSchema": "schema.json",
|
|
340
|
+
"responseSchema": "schema.json",
|
|
341
|
+
"timeout": 0,
|
|
342
|
+
"sendEmpty": false,
|
|
343
|
+
"sendGetBody": false,
|
|
344
|
+
"requestDatatype": "JSON",
|
|
345
|
+
"responseDatatype": "JSON",
|
|
346
|
+
"headers": {},
|
|
347
|
+
"responseObjects": [
|
|
348
|
+
{
|
|
349
|
+
"type": "default",
|
|
350
|
+
"key": "",
|
|
351
|
+
"mockFile": ""
|
|
352
|
+
}
|
|
353
|
+
]
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "getDeploymentUpdatedRecord",
|
|
357
|
+
"protocol": "REST",
|
|
358
|
+
"method": "GET",
|
|
359
|
+
"entitypath": "{base_path}/{version}/api/v2/deployments/{pathv1}/updatedRecords/{pathv2}?{query}",
|
|
360
|
+
"requestSchema": "schema.json",
|
|
361
|
+
"responseSchema": "schema.json",
|
|
362
|
+
"timeout": 0,
|
|
363
|
+
"sendEmpty": false,
|
|
364
|
+
"sendGetBody": false,
|
|
365
|
+
"requestDatatype": "JSON",
|
|
366
|
+
"responseDatatype": "JSON",
|
|
367
|
+
"headers": {},
|
|
368
|
+
"responseObjects": [
|
|
369
|
+
{
|
|
370
|
+
"type": "default",
|
|
371
|
+
"key": "",
|
|
372
|
+
"mockFile": ""
|
|
373
|
+
}
|
|
374
|
+
]
|
|
375
|
+
}
|
|
376
|
+
]
|
|
377
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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": "getDeploymentAddedRecords",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getDeploymentAddedRecords",
|
|
14
|
+
"getDeploymentAddedRecord",
|
|
15
|
+
"getDeploymentDeletedRecords",
|
|
16
|
+
"getDeploymentDeletedRecord",
|
|
17
|
+
"getResourceRecordDependentRecords",
|
|
18
|
+
"getResourceRecordDependentRecord",
|
|
19
|
+
"getResourceRecords",
|
|
20
|
+
"getResourceRecord",
|
|
21
|
+
"putResourceRecord",
|
|
22
|
+
"deleteResourceRecord",
|
|
23
|
+
"getAddressResourceRecords",
|
|
24
|
+
"postAddressResourceRecord",
|
|
25
|
+
"getCollectionResourceRecords",
|
|
26
|
+
"postCollectionResourceRecord",
|
|
27
|
+
"getAddressResourceRecord",
|
|
28
|
+
"deleteAddressResourceRecord",
|
|
29
|
+
"getDeploymentUpdatedRecords",
|
|
30
|
+
"getDeploymentUpdatedRecord"
|
|
31
|
+
],
|
|
32
|
+
"external_name": "ph_request_type"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"definitions": {}
|
|
36
|
+
}
|