@itentialopensource/adapter-paragon_insights 0.1.2 → 0.2.0
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 +0 -1
- package/.jshintrc +3 -0
- package/CALLS.md +638 -483
- package/CHANGELOG.md +16 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +31 -22
- package/adapter.js +10567 -8758
- package/adapterBase.js +538 -873
- package/changelogs/CHANGELOG.md +16 -0
- package/entities/Config/action.json +306 -0
- package/entities/Config/mockdatafiles/retrieveHealthbotIngestIfaDeviceIds-default.json +4 -0
- package/entities/Config/mockdatafiles/retrieveHealthbotIngestIfaDevices-default.json +10 -0
- package/entities/Config/schema.json +16 -1
- package/entities/Configuration/action.json +61 -0
- package/entities/Configuration/schema.json +4 -1
- package/entities/Utility/action.json +44 -0
- package/entities/Utility/schema.json +20 -0
- package/metadata.json +51 -0
- package/package.json +23 -25
- package/pronghorn.json +1480 -343
- package/propertiesSchema.json +453 -41
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +42358 -0
- package/report/adapter-openapi.yaml +29640 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691508880430.json +120 -0
- package/report/updateReport1692202195666.json +120 -0
- package/report/updateReport1692203297401.json +120 -0
- package/report/updateReport1694469141676.json +120 -0
- package/report/updateReport1698422888699.json +120 -0
- package/sampleProperties.json +67 -14
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +640 -2
- package/test/unit/adapterBaseTestUnit.js +388 -315
- package/test/unit/adapterTestUnit.js +870 -110
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +1 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +71 -23
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +3 -10
- package/utils/tbUtils.js +2 -3
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +1 -3
- package/workflows/README.md +0 -3
package/CALLS.md
CHANGED
|
@@ -19,7 +19,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
19
19
|
</tr>
|
|
20
20
|
<tr>
|
|
21
21
|
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
-
<td style="padding:15px">This call ensures that the adapter can communicate with
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Juniper Paragon Insights. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
23
|
<td style="padding:15px">No</td>
|
|
24
24
|
</tr>
|
|
25
25
|
<tr>
|
|
@@ -29,7 +29,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
29
29
|
</tr>
|
|
30
30
|
<tr>
|
|
31
31
|
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
-
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with
|
|
32
|
+
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Juniper Paragon Insights.</td>
|
|
33
33
|
<td style="padding:15px">No</td>
|
|
34
34
|
</tr>
|
|
35
35
|
<tr>
|
|
@@ -37,11 +37,6 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
37
37
|
<td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
|
|
38
38
|
<td style="padding:15px">Yes</td>
|
|
39
39
|
</tr>
|
|
40
|
-
<tr>
|
|
41
|
-
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
42
|
-
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
43
|
-
<td style="padding:15px">Yes</td>
|
|
44
|
-
</tr>
|
|
45
40
|
<tr>
|
|
46
41
|
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
42
|
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
@@ -57,12 +52,16 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
57
52
|
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
53
|
<td style="padding:15px">Yes</td>
|
|
59
54
|
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
57
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
60
|
<tr>
|
|
61
61
|
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
62
|
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
63
|
<td style="padding:15px">Yes</td>
|
|
64
64
|
</tr>
|
|
65
|
-
|
|
66
65
|
<tr>
|
|
67
66
|
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
67
|
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
@@ -83,6 +82,21 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
83
82
|
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
83
|
<td style="padding:15px">Yes</td>
|
|
85
84
|
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
|
|
87
|
+
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
|
|
88
|
+
<td style="padding:15px">Yes</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
|
|
92
|
+
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
|
|
93
|
+
<td style="padding:15px">Yes</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
|
|
97
|
+
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
|
|
98
|
+
<td style="padding:15px">Yes</td>
|
|
99
|
+
</tr>
|
|
86
100
|
<tr>
|
|
87
101
|
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
102
|
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
@@ -94,23 +108,46 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
94
108
|
<td style="padding:15px">Yes</td>
|
|
95
109
|
</tr>
|
|
96
110
|
<tr>
|
|
97
|
-
<td style="padding:15px">
|
|
98
|
-
<td style="padding:15px">
|
|
99
|
-
<td style="padding:15px">
|
|
111
|
+
<td style="padding:15px">iapRunAdapterLint(callback)</td>
|
|
112
|
+
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
|
|
113
|
+
<td style="padding:15px">Yes</td>
|
|
100
114
|
</tr>
|
|
101
115
|
<tr>
|
|
102
|
-
<td style="padding:15px">
|
|
103
|
-
<td style="padding:15px">
|
|
104
|
-
<td style="padding:15px">
|
|
116
|
+
<td style="padding:15px">iapRunAdapterTests(callback)</td>
|
|
117
|
+
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
|
|
118
|
+
<td style="padding:15px">Yes</td>
|
|
105
119
|
</tr>
|
|
106
120
|
<tr>
|
|
107
|
-
<td style="padding:15px">
|
|
108
|
-
<td style="padding:15px">This call
|
|
109
|
-
<td style="padding:15px">
|
|
121
|
+
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
|
|
122
|
+
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
|
|
123
|
+
<td style="padding:15px">Yes</td>
|
|
110
124
|
</tr>
|
|
111
125
|
</table>
|
|
112
126
|
<br>
|
|
127
|
+
|
|
128
|
+
### Adapter Cache Calls
|
|
129
|
+
|
|
130
|
+
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
|
|
113
131
|
|
|
132
|
+
<table border="1" class="bordered-table">
|
|
133
|
+
<tr>
|
|
134
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
135
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
136
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
|
|
140
|
+
<td style="padding:15px">This call populates the adapter cache.</td>
|
|
141
|
+
<td style="padding:15px">Yes</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
|
|
145
|
+
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
|
|
146
|
+
<td style="padding:15px">Yes</td>
|
|
147
|
+
</tr>
|
|
148
|
+
</table>
|
|
149
|
+
<br>
|
|
150
|
+
|
|
114
151
|
### Adapter Broker Calls
|
|
115
152
|
|
|
116
153
|
These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
|
|
@@ -129,32 +166,31 @@ These are adapter methods that are used to integrate to IAP Brokers. This adapte
|
|
|
129
166
|
<tr>
|
|
130
167
|
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
168
|
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
-
<td style="padding:15px">
|
|
169
|
+
<td style="padding:15px">No</td>
|
|
133
170
|
</tr>
|
|
134
171
|
<tr>
|
|
135
172
|
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
173
|
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
137
|
-
<td style="padding:15px">
|
|
174
|
+
<td style="padding:15px">No</td>
|
|
138
175
|
</tr>
|
|
139
176
|
<tr>
|
|
140
177
|
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
178
|
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
-
<td style="padding:15px">
|
|
179
|
+
<td style="padding:15px">No</td>
|
|
143
180
|
</tr>
|
|
144
181
|
<tr>
|
|
145
182
|
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
183
|
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
-
<td style="padding:15px">
|
|
184
|
+
<td style="padding:15px">No</td>
|
|
148
185
|
</tr>
|
|
149
186
|
<tr>
|
|
150
187
|
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
188
|
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
-
<td style="padding:15px">
|
|
189
|
+
<td style="padding:15px">No</td>
|
|
153
190
|
</tr>
|
|
154
191
|
</table>
|
|
155
192
|
<br>
|
|
156
193
|
|
|
157
|
-
|
|
158
194
|
### Specific Adapter Calls
|
|
159
195
|
|
|
160
196
|
Specific adapter calls are built based on the API of the Paragon_insights. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
@@ -168,2758 +204,2877 @@ Specific adapter calls are built based on the API of the Paragon_insights. The A
|
|
|
168
204
|
</tr>
|
|
169
205
|
<tr>
|
|
170
206
|
<td style="padding:15px">retrieveOrchestrator(callback)</td>
|
|
171
|
-
<td style="padding:15px">
|
|
207
|
+
<td style="padding:15px">retrieve_orchestrator</td>
|
|
172
208
|
<td style="padding:15px">{base_path}/{version}/orchestrator/?{query}</td>
|
|
173
209
|
<td style="padding:15px">Yes</td>
|
|
174
210
|
</tr>
|
|
175
211
|
<tr>
|
|
176
212
|
<td style="padding:15px">rollbackUnsavedConfiguration(emsSanity, callback)</td>
|
|
177
|
-
<td style="padding:15px">
|
|
213
|
+
<td style="padding:15px">rollback_unsaved_configuration</td>
|
|
178
214
|
<td style="padding:15px">{base_path}/{version}/config/configuration/?{query}</td>
|
|
179
215
|
<td style="padding:15px">Yes</td>
|
|
180
216
|
</tr>
|
|
181
217
|
<tr>
|
|
182
218
|
<td style="padding:15px">retrieveAffectedGroups(callback)</td>
|
|
183
|
-
<td style="padding:15px">
|
|
219
|
+
<td style="padding:15px">retrieve_affected_groups</td>
|
|
184
220
|
<td style="padding:15px">{base_path}/{version}/config/configuration/?{query}</td>
|
|
185
221
|
<td style="padding:15px">Yes</td>
|
|
186
222
|
</tr>
|
|
187
223
|
<tr>
|
|
188
224
|
<td style="padding:15px">commitUnsavedConfiguration(sync, callback)</td>
|
|
189
|
-
<td style="padding:15px">
|
|
225
|
+
<td style="padding:15px">commit_unsaved_configuration</td>
|
|
190
226
|
<td style="padding:15px">{base_path}/{version}/config/configuration/?{query}</td>
|
|
191
227
|
<td style="padding:15px">Yes</td>
|
|
192
228
|
</tr>
|
|
193
229
|
<tr>
|
|
194
230
|
<td style="padding:15px">initialize(restartGroups, reloadRules, reloadPlaybooks, reloadSyslogPatterns, reloadSyslogPatternSets, reloadFlowTemplates, reloadSflowSchema, callback)</td>
|
|
195
|
-
<td style="padding:15px">
|
|
231
|
+
<td style="padding:15px">initialize</td>
|
|
196
232
|
<td style="padding:15px">{base_path}/{version}/config/initialize/?{query}</td>
|
|
197
233
|
<td style="padding:15px">Yes</td>
|
|
198
234
|
</tr>
|
|
199
235
|
<tr>
|
|
200
236
|
<td style="padding:15px">deleteHealthbotIngestByoiIngestMappings(callback)</td>
|
|
201
|
-
<td style="padding:15px">
|
|
237
|
+
<td style="padding:15px">delete_healthbot_ingest_byoi_ingest_mappings</td>
|
|
202
238
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/ingest-mappings/?{query}</td>
|
|
203
239
|
<td style="padding:15px">Yes</td>
|
|
204
240
|
</tr>
|
|
205
241
|
<tr>
|
|
206
242
|
<td style="padding:15px">deleteHealthbotIngestSettingsByoiIngestMappings(callback)</td>
|
|
207
|
-
<td style="padding:15px">
|
|
243
|
+
<td style="padding:15px">delete_healthbot_ingest_settings_byoi_ingest_mappings</td>
|
|
208
244
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/ingest-mappings/?{query}</td>
|
|
209
245
|
<td style="padding:15px">Yes</td>
|
|
210
246
|
</tr>
|
|
211
247
|
<tr>
|
|
212
248
|
<td style="padding:15px">checkDeviceGroupUnsavedConfiguration(deviceGroupName, callback)</td>
|
|
213
|
-
<td style="padding:15px">
|
|
249
|
+
<td style="padding:15px">check_device_group_unsaved_configuration</td>
|
|
214
250
|
<td style="padding:15px">{base_path}/{version}/config/configuration/check/device-group/{pathv1}/?{query}</td>
|
|
215
251
|
<td style="padding:15px">Yes</td>
|
|
216
252
|
</tr>
|
|
217
253
|
<tr>
|
|
218
254
|
<td style="padding:15px">checkNetworkGroupUnsavedConfiguration(networkGroupName, callback)</td>
|
|
219
|
-
<td style="padding:15px">
|
|
255
|
+
<td style="padding:15px">check_network_group_unsaved_configuration</td>
|
|
220
256
|
<td style="padding:15px">{base_path}/{version}/config/configuration/check/network-group/{pathv1}/?{query}</td>
|
|
221
257
|
<td style="padding:15px">Yes</td>
|
|
222
258
|
</tr>
|
|
223
259
|
<tr>
|
|
224
260
|
<td style="padding:15px">retrieveIcebergDeviceGroupDeviceGroup(working, callback)</td>
|
|
225
|
-
<td style="padding:15px">
|
|
261
|
+
<td style="padding:15px">retrieve_iceberg_device-group_device-group</td>
|
|
226
262
|
<td style="padding:15px">{base_path}/{version}/config/device-group/?{query}</td>
|
|
227
263
|
<td style="padding:15px">Yes</td>
|
|
228
264
|
</tr>
|
|
229
265
|
<tr>
|
|
230
266
|
<td style="padding:15px">deleteIcebergDeviceGroupDeviceGroupById(deviceGroupName, callback)</td>
|
|
231
|
-
<td style="padding:15px">
|
|
267
|
+
<td style="padding:15px">delete_iceberg_device-group_device-group_by_id</td>
|
|
232
268
|
<td style="padding:15px">{base_path}/{version}/config/device-group/{pathv1}/?{query}</td>
|
|
233
269
|
<td style="padding:15px">Yes</td>
|
|
234
270
|
</tr>
|
|
235
271
|
<tr>
|
|
236
272
|
<td style="padding:15px">retrieveIcebergDeviceGroupDeviceGroupById(deviceGroupName, working, callback)</td>
|
|
237
|
-
<td style="padding:15px">
|
|
273
|
+
<td style="padding:15px">retrieve_iceberg_device-group_device-group_by_id</td>
|
|
238
274
|
<td style="padding:15px">{base_path}/{version}/config/device-group/{pathv1}/?{query}</td>
|
|
239
275
|
<td style="padding:15px">Yes</td>
|
|
240
276
|
</tr>
|
|
241
277
|
<tr>
|
|
242
278
|
<td style="padding:15px">createIcebergDeviceGroupDeviceGroupById(deviceGroupName, body, callback)</td>
|
|
243
|
-
<td style="padding:15px">
|
|
279
|
+
<td style="padding:15px">create_iceberg_device-group_device-group_by_id</td>
|
|
244
280
|
<td style="padding:15px">{base_path}/{version}/config/device-group/{pathv1}/?{query}</td>
|
|
245
281
|
<td style="padding:15px">Yes</td>
|
|
246
282
|
</tr>
|
|
247
283
|
<tr>
|
|
248
284
|
<td style="padding:15px">updateIcebergDeviceGroupDeviceGroupById(deviceGroupName, body, callback)</td>
|
|
249
|
-
<td style="padding:15px">
|
|
285
|
+
<td style="padding:15px">update_iceberg_device-group_device-group_by_id</td>
|
|
250
286
|
<td style="padding:15px">{base_path}/{version}/config/device-group/{pathv1}/?{query}</td>
|
|
251
287
|
<td style="padding:15px">Yes</td>
|
|
252
288
|
</tr>
|
|
253
289
|
<tr>
|
|
254
290
|
<td style="padding:15px">retrieveDeviceGroupStatus(deviceGroupName, callback)</td>
|
|
255
|
-
<td style="padding:15px">
|
|
291
|
+
<td style="padding:15px">retrieve_device_group_status</td>
|
|
256
292
|
<td style="padding:15px">{base_path}/{version}/device-group/{pathv1}/status/?{query}</td>
|
|
257
293
|
<td style="padding:15px">Yes</td>
|
|
258
294
|
</tr>
|
|
259
295
|
<tr>
|
|
260
296
|
<td style="padding:15px">retrieveDeviceGroupTriggerInfo(deviceGroupName, callback)</td>
|
|
261
|
-
<td style="padding:15px">
|
|
297
|
+
<td style="padding:15px">retrieve_device_group_trigger_info</td>
|
|
262
298
|
<td style="padding:15px">{base_path}/{version}/device-group/{pathv1}/trigger_info/?{query}</td>
|
|
263
299
|
<td style="padding:15px">Yes</td>
|
|
264
300
|
</tr>
|
|
265
301
|
<tr>
|
|
266
302
|
<td style="padding:15px">deleteIcebergDeviceGroupsDeviceGroupsById(callback)</td>
|
|
267
|
-
<td style="padding:15px">
|
|
303
|
+
<td style="padding:15px">delete_iceberg_device-groups_device-groups_by_id</td>
|
|
268
304
|
<td style="padding:15px">{base_path}/{version}/config/device-groups/?{query}</td>
|
|
269
305
|
<td style="padding:15px">Yes</td>
|
|
270
306
|
</tr>
|
|
271
307
|
<tr>
|
|
272
308
|
<td style="padding:15px">retrieveIcebergDeviceGroupsDeviceGroups(working, callback)</td>
|
|
273
|
-
<td style="padding:15px">
|
|
309
|
+
<td style="padding:15px">retrieve_iceberg_device-groups_device-groups</td>
|
|
274
310
|
<td style="padding:15px">{base_path}/{version}/config/device-groups/?{query}</td>
|
|
275
311
|
<td style="padding:15px">Yes</td>
|
|
276
312
|
</tr>
|
|
277
313
|
<tr>
|
|
278
314
|
<td style="padding:15px">createIcebergDeviceGroupsDeviceGroupsById(body, callback)</td>
|
|
279
|
-
<td style="padding:15px">
|
|
315
|
+
<td style="padding:15px">create_iceberg_device-groups_device-groups_by_id</td>
|
|
280
316
|
<td style="padding:15px">{base_path}/{version}/config/device-groups/?{query}</td>
|
|
281
317
|
<td style="padding:15px">Yes</td>
|
|
282
318
|
</tr>
|
|
283
319
|
<tr>
|
|
284
320
|
<td style="padding:15px">updateIcebergDeviceGroupsDeviceGroupsById(body, callback)</td>
|
|
285
|
-
<td style="padding:15px">
|
|
321
|
+
<td style="padding:15px">update_iceberg_device-groups_device-groups_by_id</td>
|
|
286
322
|
<td style="padding:15px">{base_path}/{version}/config/device-groups/?{query}</td>
|
|
287
323
|
<td style="padding:15px">Yes</td>
|
|
288
324
|
</tr>
|
|
289
325
|
<tr>
|
|
290
326
|
<td style="padding:15px">retrieveIcebergDeviceDevice(working, callback)</td>
|
|
291
|
-
<td style="padding:15px">
|
|
327
|
+
<td style="padding:15px">retrieve_iceberg_device_device</td>
|
|
292
328
|
<td style="padding:15px">{base_path}/{version}/config/device/?{query}</td>
|
|
293
329
|
<td style="padding:15px">Yes</td>
|
|
294
330
|
</tr>
|
|
295
331
|
<tr>
|
|
296
332
|
<td style="padding:15px">deleteIcebergDeviceDeviceById(deviceId, callback)</td>
|
|
297
|
-
<td style="padding:15px">
|
|
333
|
+
<td style="padding:15px">delete_iceberg_device_device_by_id</td>
|
|
298
334
|
<td style="padding:15px">{base_path}/{version}/config/device/{pathv1}/?{query}</td>
|
|
299
335
|
<td style="padding:15px">Yes</td>
|
|
300
336
|
</tr>
|
|
301
337
|
<tr>
|
|
302
338
|
<td style="padding:15px">retrieveIcebergDeviceDeviceById(deviceId, working, callback)</td>
|
|
303
|
-
<td style="padding:15px">
|
|
339
|
+
<td style="padding:15px">retrieve_iceberg_device_device_by_id</td>
|
|
304
340
|
<td style="padding:15px">{base_path}/{version}/config/device/{pathv1}/?{query}</td>
|
|
305
341
|
<td style="padding:15px">Yes</td>
|
|
306
342
|
</tr>
|
|
307
343
|
<tr>
|
|
308
344
|
<td style="padding:15px">createIcebergDeviceDeviceById(deviceId, body, callback)</td>
|
|
309
|
-
<td style="padding:15px">
|
|
345
|
+
<td style="padding:15px">create_iceberg_device_device_by_id</td>
|
|
310
346
|
<td style="padding:15px">{base_path}/{version}/config/device/{pathv1}/?{query}</td>
|
|
311
347
|
<td style="padding:15px">Yes</td>
|
|
312
348
|
</tr>
|
|
313
349
|
<tr>
|
|
314
350
|
<td style="padding:15px">updateIcebergDeviceDeviceById(deviceId, body, callback)</td>
|
|
315
|
-
<td style="padding:15px">
|
|
351
|
+
<td style="padding:15px">update_iceberg_device_device_by_id</td>
|
|
316
352
|
<td style="padding:15px">{base_path}/{version}/config/device/{pathv1}/?{query}</td>
|
|
317
353
|
<td style="padding:15px">Yes</td>
|
|
318
354
|
</tr>
|
|
319
355
|
<tr>
|
|
320
356
|
<td style="padding:15px">deleteIcebergDevicesDevicesById(callback)</td>
|
|
321
|
-
<td style="padding:15px">
|
|
357
|
+
<td style="padding:15px">delete_iceberg_devices_devices_by_id</td>
|
|
322
358
|
<td style="padding:15px">{base_path}/{version}/config/devices/?{query}</td>
|
|
323
359
|
<td style="padding:15px">Yes</td>
|
|
324
360
|
</tr>
|
|
325
361
|
<tr>
|
|
326
362
|
<td style="padding:15px">retrieveIcebergDevicesDevices(working, callback)</td>
|
|
327
|
-
<td style="padding:15px">
|
|
363
|
+
<td style="padding:15px">retrieve_iceberg_devices_devices</td>
|
|
328
364
|
<td style="padding:15px">{base_path}/{version}/config/devices/?{query}</td>
|
|
329
365
|
<td style="padding:15px">Yes</td>
|
|
330
366
|
</tr>
|
|
331
367
|
<tr>
|
|
332
368
|
<td style="padding:15px">createIcebergDevicesDevicesById(body, callback)</td>
|
|
333
|
-
<td style="padding:15px">
|
|
369
|
+
<td style="padding:15px">create_iceberg_devices_devices_by_id</td>
|
|
334
370
|
<td style="padding:15px">{base_path}/{version}/config/devices/?{query}</td>
|
|
335
371
|
<td style="padding:15px">Yes</td>
|
|
336
372
|
</tr>
|
|
337
373
|
<tr>
|
|
338
374
|
<td style="padding:15px">updateIcebergDevicesDevicesById(body, callback)</td>
|
|
339
|
-
<td style="padding:15px">
|
|
375
|
+
<td style="padding:15px">update_iceberg_devices_devices_by_id</td>
|
|
340
376
|
<td style="padding:15px">{base_path}/{version}/config/devices/?{query}</td>
|
|
341
377
|
<td style="padding:15px">Yes</td>
|
|
342
378
|
</tr>
|
|
343
379
|
<tr>
|
|
344
380
|
<td style="padding:15px">retrieveIcebergNetworkGroupNetworkGroup(working, callback)</td>
|
|
345
|
-
<td style="padding:15px">
|
|
381
|
+
<td style="padding:15px">retrieve_iceberg_network-group_network-group</td>
|
|
346
382
|
<td style="padding:15px">{base_path}/{version}/config/network-group/?{query}</td>
|
|
347
383
|
<td style="padding:15px">Yes</td>
|
|
348
384
|
</tr>
|
|
349
385
|
<tr>
|
|
350
386
|
<td style="padding:15px">deleteIcebergNetworkGroupNetworkGroupById(networkGroupName, callback)</td>
|
|
351
|
-
<td style="padding:15px">
|
|
387
|
+
<td style="padding:15px">delete_iceberg_network-group_network-group_by_id</td>
|
|
352
388
|
<td style="padding:15px">{base_path}/{version}/config/network-group/{pathv1}/?{query}</td>
|
|
353
389
|
<td style="padding:15px">Yes</td>
|
|
354
390
|
</tr>
|
|
355
391
|
<tr>
|
|
356
392
|
<td style="padding:15px">retrieveIcebergNetworkGroupNetworkGroupById(networkGroupName, working, callback)</td>
|
|
357
|
-
<td style="padding:15px">
|
|
393
|
+
<td style="padding:15px">retrieve_iceberg_network-group_network-group_by_id</td>
|
|
358
394
|
<td style="padding:15px">{base_path}/{version}/config/network-group/{pathv1}/?{query}</td>
|
|
359
395
|
<td style="padding:15px">Yes</td>
|
|
360
396
|
</tr>
|
|
361
397
|
<tr>
|
|
362
398
|
<td style="padding:15px">createIcebergNetworkGroupNetworkGroupById(networkGroupName, body, callback)</td>
|
|
363
|
-
<td style="padding:15px">
|
|
399
|
+
<td style="padding:15px">create_iceberg_network-group_network-group_by_id</td>
|
|
364
400
|
<td style="padding:15px">{base_path}/{version}/config/network-group/{pathv1}/?{query}</td>
|
|
365
401
|
<td style="padding:15px">Yes</td>
|
|
366
402
|
</tr>
|
|
367
403
|
<tr>
|
|
368
404
|
<td style="padding:15px">updateIcebergNetworkGroupNetworkGroupById(networkGroupName, body, callback)</td>
|
|
369
|
-
<td style="padding:15px">
|
|
405
|
+
<td style="padding:15px">update_iceberg_network-group_network-group_by_id</td>
|
|
370
406
|
<td style="padding:15px">{base_path}/{version}/config/network-group/{pathv1}/?{query}</td>
|
|
371
407
|
<td style="padding:15px">Yes</td>
|
|
372
408
|
</tr>
|
|
373
409
|
<tr>
|
|
374
410
|
<td style="padding:15px">retrieveNetworkGroupStatus(networkGroupName, callback)</td>
|
|
375
|
-
<td style="padding:15px">
|
|
411
|
+
<td style="padding:15px">retrieve_network_group_status</td>
|
|
376
412
|
<td style="padding:15px">{base_path}/{version}/network-group/{pathv1}/status/?{query}</td>
|
|
377
413
|
<td style="padding:15px">Yes</td>
|
|
378
414
|
</tr>
|
|
379
415
|
<tr>
|
|
380
416
|
<td style="padding:15px">retrieveNetworkGroupTriggerInfo(networkGroupName, callback)</td>
|
|
381
|
-
<td style="padding:15px">
|
|
417
|
+
<td style="padding:15px">retrieve_network_group_trigger_info</td>
|
|
382
418
|
<td style="padding:15px">{base_path}/{version}/network-group/{pathv1}/trigger_info/?{query}</td>
|
|
383
419
|
<td style="padding:15px">Yes</td>
|
|
384
420
|
</tr>
|
|
385
421
|
<tr>
|
|
386
422
|
<td style="padding:15px">deleteIcebergNetworkGroupsNetworkGroupsById(callback)</td>
|
|
387
|
-
<td style="padding:15px">
|
|
423
|
+
<td style="padding:15px">delete_iceberg_network-groups_network-groups_by_id</td>
|
|
388
424
|
<td style="padding:15px">{base_path}/{version}/config/network-groups/?{query}</td>
|
|
389
425
|
<td style="padding:15px">Yes</td>
|
|
390
426
|
</tr>
|
|
391
427
|
<tr>
|
|
392
428
|
<td style="padding:15px">retrieveIcebergNetworkGroupsNetworkGroups(working, callback)</td>
|
|
393
|
-
<td style="padding:15px">
|
|
429
|
+
<td style="padding:15px">retrieve_iceberg_network-groups_network-groups</td>
|
|
394
430
|
<td style="padding:15px">{base_path}/{version}/config/network-groups/?{query}</td>
|
|
395
431
|
<td style="padding:15px">Yes</td>
|
|
396
432
|
</tr>
|
|
397
433
|
<tr>
|
|
398
434
|
<td style="padding:15px">createIcebergNetworkGroupsNetworkGroupsById(body, callback)</td>
|
|
399
|
-
<td style="padding:15px">
|
|
435
|
+
<td style="padding:15px">create_iceberg_network-groups_network-groups_by_id</td>
|
|
400
436
|
<td style="padding:15px">{base_path}/{version}/config/network-groups/?{query}</td>
|
|
401
437
|
<td style="padding:15px">Yes</td>
|
|
402
438
|
</tr>
|
|
403
439
|
<tr>
|
|
404
440
|
<td style="padding:15px">updateIcebergNetworkGroupsNetworkGroupsById(body, callback)</td>
|
|
405
|
-
<td style="padding:15px">
|
|
441
|
+
<td style="padding:15px">update_iceberg_network-groups_network-groups_by_id</td>
|
|
406
442
|
<td style="padding:15px">{base_path}/{version}/config/network-groups/?{query}</td>
|
|
407
443
|
<td style="padding:15px">Yes</td>
|
|
408
444
|
</tr>
|
|
409
445
|
<tr>
|
|
410
446
|
<td style="padding:15px">retrieveIcebergNotificationNotification(working, callback)</td>
|
|
411
|
-
<td style="padding:15px">
|
|
447
|
+
<td style="padding:15px">retrieve_iceberg_notification_notification</td>
|
|
412
448
|
<td style="padding:15px">{base_path}/{version}/config/notification/?{query}</td>
|
|
413
449
|
<td style="padding:15px">Yes</td>
|
|
414
450
|
</tr>
|
|
415
451
|
<tr>
|
|
416
452
|
<td style="padding:15px">deleteIcebergNotificationNotificationById(notificationName, callback)</td>
|
|
417
|
-
<td style="padding:15px">
|
|
453
|
+
<td style="padding:15px">delete_iceberg_notification_notification_by_id</td>
|
|
418
454
|
<td style="padding:15px">{base_path}/{version}/config/notification/{pathv1}/?{query}</td>
|
|
419
455
|
<td style="padding:15px">Yes</td>
|
|
420
456
|
</tr>
|
|
421
457
|
<tr>
|
|
422
458
|
<td style="padding:15px">retrieveIcebergNotificationNotificationById(notificationName, working, callback)</td>
|
|
423
|
-
<td style="padding:15px">
|
|
459
|
+
<td style="padding:15px">retrieve_iceberg_notification_notification_by_id</td>
|
|
424
460
|
<td style="padding:15px">{base_path}/{version}/config/notification/{pathv1}/?{query}</td>
|
|
425
461
|
<td style="padding:15px">Yes</td>
|
|
426
462
|
</tr>
|
|
427
463
|
<tr>
|
|
428
464
|
<td style="padding:15px">createIcebergNotificationNotificationById(notificationName, body, callback)</td>
|
|
429
|
-
<td style="padding:15px">
|
|
465
|
+
<td style="padding:15px">create_iceberg_notification_notification_by_id</td>
|
|
430
466
|
<td style="padding:15px">{base_path}/{version}/config/notification/{pathv1}/?{query}</td>
|
|
431
467
|
<td style="padding:15px">Yes</td>
|
|
432
468
|
</tr>
|
|
433
469
|
<tr>
|
|
434
470
|
<td style="padding:15px">updateIcebergNotificationNotificationById(notificationName, body, callback)</td>
|
|
435
|
-
<td style="padding:15px">
|
|
471
|
+
<td style="padding:15px">update_iceberg_notification_notification_by_id</td>
|
|
436
472
|
<td style="padding:15px">{base_path}/{version}/config/notification/{pathv1}/?{query}</td>
|
|
437
473
|
<td style="padding:15px">Yes</td>
|
|
438
474
|
</tr>
|
|
439
475
|
<tr>
|
|
440
476
|
<td style="padding:15px">deleteIcebergNotificationsNotificationsById(callback)</td>
|
|
441
|
-
<td style="padding:15px">
|
|
477
|
+
<td style="padding:15px">delete_iceberg_notifications_notifications_by_id</td>
|
|
442
478
|
<td style="padding:15px">{base_path}/{version}/config/notifications/?{query}</td>
|
|
443
479
|
<td style="padding:15px">Yes</td>
|
|
444
480
|
</tr>
|
|
445
481
|
<tr>
|
|
446
482
|
<td style="padding:15px">retrieveIcebergNotificationsNotificationsById(working, callback)</td>
|
|
447
|
-
<td style="padding:15px">
|
|
483
|
+
<td style="padding:15px">retrieve_iceberg_notifications_notifications_by_id</td>
|
|
448
484
|
<td style="padding:15px">{base_path}/{version}/config/notifications/?{query}</td>
|
|
449
485
|
<td style="padding:15px">Yes</td>
|
|
450
486
|
</tr>
|
|
451
487
|
<tr>
|
|
452
488
|
<td style="padding:15px">createIcebergNotificationsNotificationsById(body, callback)</td>
|
|
453
|
-
<td style="padding:15px">
|
|
489
|
+
<td style="padding:15px">create_iceberg_notifications_notifications_by_id</td>
|
|
454
490
|
<td style="padding:15px">{base_path}/{version}/config/notifications/?{query}</td>
|
|
455
491
|
<td style="padding:15px">Yes</td>
|
|
456
492
|
</tr>
|
|
457
493
|
<tr>
|
|
458
494
|
<td style="padding:15px">updateIcebergNotificationsNotificationsById(body, callback)</td>
|
|
459
|
-
<td style="padding:15px">
|
|
495
|
+
<td style="padding:15px">update_iceberg_notifications_notifications_by_id</td>
|
|
460
496
|
<td style="padding:15px">{base_path}/{version}/config/notifications/?{query}</td>
|
|
461
497
|
<td style="padding:15px">Yes</td>
|
|
462
498
|
</tr>
|
|
463
499
|
<tr>
|
|
464
500
|
<td style="padding:15px">retrieveIcebergPlaybookPlaybook(working, callback)</td>
|
|
465
|
-
<td style="padding:15px">
|
|
501
|
+
<td style="padding:15px">retrieve_iceberg_playbook_playbook</td>
|
|
466
502
|
<td style="padding:15px">{base_path}/{version}/config/playbook/?{query}</td>
|
|
467
503
|
<td style="padding:15px">Yes</td>
|
|
468
504
|
</tr>
|
|
469
505
|
<tr>
|
|
470
506
|
<td style="padding:15px">deleteIcebergPlaybookPlaybookById(playbookName, callback)</td>
|
|
471
|
-
<td style="padding:15px">
|
|
507
|
+
<td style="padding:15px">delete_iceberg_playbook_playbook_by_id</td>
|
|
472
508
|
<td style="padding:15px">{base_path}/{version}/config/playbook/{pathv1}/?{query}</td>
|
|
473
509
|
<td style="padding:15px">Yes</td>
|
|
474
510
|
</tr>
|
|
475
511
|
<tr>
|
|
476
512
|
<td style="padding:15px">retrieveIcebergPlaybookPlaybookById(playbookName, working, download, callback)</td>
|
|
477
|
-
<td style="padding:15px">
|
|
513
|
+
<td style="padding:15px">retrieve_iceberg_playbook_playbook_by_id</td>
|
|
478
514
|
<td style="padding:15px">{base_path}/{version}/config/playbook/{pathv1}/?{query}</td>
|
|
479
515
|
<td style="padding:15px">Yes</td>
|
|
480
516
|
</tr>
|
|
481
517
|
<tr>
|
|
482
518
|
<td style="padding:15px">createIcebergPlaybookPlaybookById(playbookName, body, callback)</td>
|
|
483
|
-
<td style="padding:15px">
|
|
519
|
+
<td style="padding:15px">create_iceberg_playbook_playbook_by_id</td>
|
|
484
520
|
<td style="padding:15px">{base_path}/{version}/config/playbook/{pathv1}/?{query}</td>
|
|
485
521
|
<td style="padding:15px">Yes</td>
|
|
486
522
|
</tr>
|
|
487
523
|
<tr>
|
|
488
524
|
<td style="padding:15px">updateIcebergPlaybookPlaybookById(playbookName, body, callback)</td>
|
|
489
|
-
<td style="padding:15px">
|
|
525
|
+
<td style="padding:15px">update_iceberg_playbook_playbook_by_id</td>
|
|
490
526
|
<td style="padding:15px">{base_path}/{version}/config/playbook/{pathv1}/?{query}</td>
|
|
491
527
|
<td style="padding:15px">Yes</td>
|
|
492
528
|
</tr>
|
|
493
529
|
<tr>
|
|
494
530
|
<td style="padding:15px">deleteIcebergPlaybooksPlaybooksById(callback)</td>
|
|
495
|
-
<td style="padding:15px">
|
|
531
|
+
<td style="padding:15px">delete_iceberg_playbooks_playbooks_by_id</td>
|
|
496
532
|
<td style="padding:15px">{base_path}/{version}/config/playbooks/?{query}</td>
|
|
497
533
|
<td style="padding:15px">Yes</td>
|
|
498
534
|
</tr>
|
|
499
535
|
<tr>
|
|
500
536
|
<td style="padding:15px">retrieveIcebergPlaybooksPlaybooksById(working, callback)</td>
|
|
501
|
-
<td style="padding:15px">
|
|
537
|
+
<td style="padding:15px">retrieve_iceberg_playbooks_playbooks_by_id</td>
|
|
502
538
|
<td style="padding:15px">{base_path}/{version}/config/playbooks/?{query}</td>
|
|
503
539
|
<td style="padding:15px">Yes</td>
|
|
504
540
|
</tr>
|
|
505
541
|
<tr>
|
|
506
542
|
<td style="padding:15px">createIcebergPlaybooksPlaybooksById(body, callback)</td>
|
|
507
|
-
<td style="padding:15px">
|
|
543
|
+
<td style="padding:15px">create_iceberg_playbooks_playbooks_by_id</td>
|
|
508
544
|
<td style="padding:15px">{base_path}/{version}/config/playbooks/?{query}</td>
|
|
509
545
|
<td style="padding:15px">Yes</td>
|
|
510
546
|
</tr>
|
|
511
547
|
<tr>
|
|
512
548
|
<td style="padding:15px">updateIcebergPlaybooksPlaybooksById(body, callback)</td>
|
|
513
|
-
<td style="padding:15px">
|
|
549
|
+
<td style="padding:15px">update_iceberg_playbooks_playbooks_by_id</td>
|
|
514
550
|
<td style="padding:15px">{base_path}/{version}/config/playbooks/?{query}</td>
|
|
515
551
|
<td style="padding:15px">Yes</td>
|
|
516
552
|
</tr>
|
|
517
553
|
<tr>
|
|
518
554
|
<td style="padding:15px">deleteIcebergRetentionPoliciesRetentionPoliciesById(callback)</td>
|
|
519
|
-
<td style="padding:15px">
|
|
555
|
+
<td style="padding:15px">delete_iceberg_retention_policies_retention_policies_by_id</td>
|
|
520
556
|
<td style="padding:15px">{base_path}/{version}/config/retention-policies/?{query}</td>
|
|
521
557
|
<td style="padding:15px">Yes</td>
|
|
522
558
|
</tr>
|
|
523
559
|
<tr>
|
|
524
560
|
<td style="padding:15px">retrieveIcebergRetentionPoliciesRetentionPoliciesById(working, callback)</td>
|
|
525
|
-
<td style="padding:15px">
|
|
561
|
+
<td style="padding:15px">retrieve_iceberg_retention_policies_retention_policies_by_id</td>
|
|
526
562
|
<td style="padding:15px">{base_path}/{version}/config/retention-policies/?{query}</td>
|
|
527
563
|
<td style="padding:15px">Yes</td>
|
|
528
564
|
</tr>
|
|
529
565
|
<tr>
|
|
530
566
|
<td style="padding:15px">createIcebergRetentionPoliciesRetentionPoliciesById(body, callback)</td>
|
|
531
|
-
<td style="padding:15px">
|
|
567
|
+
<td style="padding:15px">create_iceberg_retention_policies_retention_policies_by_id</td>
|
|
532
568
|
<td style="padding:15px">{base_path}/{version}/config/retention-policies/?{query}</td>
|
|
533
569
|
<td style="padding:15px">Yes</td>
|
|
534
570
|
</tr>
|
|
535
571
|
<tr>
|
|
536
572
|
<td style="padding:15px">updateIcebergRetentionPoliciesRetentionPoliciesId(body, callback)</td>
|
|
537
|
-
<td style="padding:15px">
|
|
573
|
+
<td style="padding:15px">update_iceberg_retention_policies_retention_policies_id</td>
|
|
538
574
|
<td style="padding:15px">{base_path}/{version}/config/retention-policies/?{query}</td>
|
|
539
575
|
<td style="padding:15px">Yes</td>
|
|
540
576
|
</tr>
|
|
541
577
|
<tr>
|
|
542
578
|
<td style="padding:15px">retrieveIcebergRetentionPolicyRetentionPolicy(working, callback)</td>
|
|
543
|
-
<td style="padding:15px">
|
|
579
|
+
<td style="padding:15px">retrieve_iceberg_retention-policy_retention-policy</td>
|
|
544
580
|
<td style="padding:15px">{base_path}/{version}/config/retention-policy/?{query}</td>
|
|
545
581
|
<td style="padding:15px">Yes</td>
|
|
546
582
|
</tr>
|
|
547
583
|
<tr>
|
|
548
584
|
<td style="padding:15px">deleteIcebergRetentionPolicyRetentionPolicyById(retentionPolicyName, callback)</td>
|
|
549
|
-
<td style="padding:15px">
|
|
585
|
+
<td style="padding:15px">delete_iceberg_retention-policy_retention-policy_by_id</td>
|
|
550
586
|
<td style="padding:15px">{base_path}/{version}/config/retention-policy/{pathv1}/?{query}</td>
|
|
551
587
|
<td style="padding:15px">Yes</td>
|
|
552
588
|
</tr>
|
|
553
589
|
<tr>
|
|
554
590
|
<td style="padding:15px">retrieveIcebergRetentionPolicyRetentionPolicyById(retentionPolicyName, working, callback)</td>
|
|
555
|
-
<td style="padding:15px">
|
|
591
|
+
<td style="padding:15px">retrieve_iceberg_retention-policy_retention-policy_by_id</td>
|
|
556
592
|
<td style="padding:15px">{base_path}/{version}/config/retention-policy/{pathv1}/?{query}</td>
|
|
557
593
|
<td style="padding:15px">Yes</td>
|
|
558
594
|
</tr>
|
|
559
595
|
<tr>
|
|
560
596
|
<td style="padding:15px">createIcebergRetentionPolicyRetentionPolicyById(retentionPolicyName, body, callback)</td>
|
|
561
|
-
<td style="padding:15px">
|
|
597
|
+
<td style="padding:15px">create_iceberg_retention-policy_retention-policy_by_id</td>
|
|
562
598
|
<td style="padding:15px">{base_path}/{version}/config/retention-policy/{pathv1}/?{query}</td>
|
|
563
599
|
<td style="padding:15px">Yes</td>
|
|
564
600
|
</tr>
|
|
565
601
|
<tr>
|
|
566
602
|
<td style="padding:15px">updateIcebergRetentionPolicyRetentionPolicyById(retentionPolicyName, body, callback)</td>
|
|
567
|
-
<td style="padding:15px">
|
|
603
|
+
<td style="padding:15px">update_iceberg_retention-policy_retention-policy_by_id</td>
|
|
568
604
|
<td style="padding:15px">{base_path}/{version}/config/retention-policy/{pathv1}/?{query}</td>
|
|
569
605
|
<td style="padding:15px">Yes</td>
|
|
570
606
|
</tr>
|
|
571
607
|
<tr>
|
|
572
608
|
<td style="padding:15px">deleteIcebergSystemSystemById(callback)</td>
|
|
573
|
-
<td style="padding:15px">
|
|
609
|
+
<td style="padding:15px">delete_iceberg_system_system_by_id</td>
|
|
574
610
|
<td style="padding:15px">{base_path}/{version}/config/system/?{query}</td>
|
|
575
611
|
<td style="padding:15px">Yes</td>
|
|
576
612
|
</tr>
|
|
577
613
|
<tr>
|
|
578
614
|
<td style="padding:15px">retrieveIcebergSystemSystem(working, callback)</td>
|
|
579
|
-
<td style="padding:15px">
|
|
615
|
+
<td style="padding:15px">retrieve_iceberg_system_system</td>
|
|
580
616
|
<td style="padding:15px">{base_path}/{version}/config/system/?{query}</td>
|
|
581
617
|
<td style="padding:15px">Yes</td>
|
|
582
618
|
</tr>
|
|
583
619
|
<tr>
|
|
584
620
|
<td style="padding:15px">createIcebergSystemSystemById(forceTsdb, body, callback)</td>
|
|
585
|
-
<td style="padding:15px">
|
|
621
|
+
<td style="padding:15px">create_iceberg_system_system_by_id</td>
|
|
586
622
|
<td style="padding:15px">{base_path}/{version}/config/system/?{query}</td>
|
|
587
623
|
<td style="padding:15px">Yes</td>
|
|
588
624
|
</tr>
|
|
589
625
|
<tr>
|
|
590
626
|
<td style="padding:15px">updateIcebergSystemSystemById(forceTsdb, body, callback)</td>
|
|
591
|
-
<td style="padding:15px">
|
|
627
|
+
<td style="padding:15px">update_iceberg_system_system_by_id</td>
|
|
592
628
|
<td style="padding:15px">{base_path}/{version}/config/system/?{query}</td>
|
|
593
629
|
<td style="padding:15px">Yes</td>
|
|
594
630
|
</tr>
|
|
595
631
|
<tr>
|
|
596
632
|
<td style="padding:15px">deleteIcebergSystemSchedulers(callback)</td>
|
|
597
|
-
<td style="padding:15px">
|
|
633
|
+
<td style="padding:15px">delete_iceberg_system_schedulers</td>
|
|
598
634
|
<td style="padding:15px">{base_path}/{version}/config/system/schedulers/?{query}</td>
|
|
599
635
|
<td style="padding:15px">Yes</td>
|
|
600
636
|
</tr>
|
|
601
637
|
<tr>
|
|
602
638
|
<td style="padding:15px">retrieveIcebergSystemSchedulers(working, callback)</td>
|
|
603
|
-
<td style="padding:15px">
|
|
639
|
+
<td style="padding:15px">retrieve_iceberg_system_schedulers</td>
|
|
604
640
|
<td style="padding:15px">{base_path}/{version}/config/system/schedulers/?{query}</td>
|
|
605
641
|
<td style="padding:15px">Yes</td>
|
|
606
642
|
</tr>
|
|
607
643
|
<tr>
|
|
608
644
|
<td style="padding:15px">createIcebergSystemSchedulers(body, callback)</td>
|
|
609
|
-
<td style="padding:15px">
|
|
645
|
+
<td style="padding:15px">create_iceberg_system_schedulers</td>
|
|
610
646
|
<td style="padding:15px">{base_path}/{version}/config/system/schedulers/?{query}</td>
|
|
611
647
|
<td style="padding:15px">Yes</td>
|
|
612
648
|
</tr>
|
|
613
649
|
<tr>
|
|
614
650
|
<td style="padding:15px">updateIcebergSystemSchedulers(body, callback)</td>
|
|
615
|
-
<td style="padding:15px">
|
|
651
|
+
<td style="padding:15px">update_iceberg_system_schedulers</td>
|
|
616
652
|
<td style="padding:15px">{base_path}/{version}/config/system/schedulers/?{query}</td>
|
|
617
653
|
<td style="padding:15px">Yes</td>
|
|
618
654
|
</tr>
|
|
619
655
|
<tr>
|
|
620
656
|
<td style="padding:15px">deleteIcebergSystemSchedulerById(name, callback)</td>
|
|
621
|
-
<td style="padding:15px">
|
|
657
|
+
<td style="padding:15px">delete_iceberg_system_scheduler_by_id</td>
|
|
622
658
|
<td style="padding:15px">{base_path}/{version}/config/system/scheduler/{pathv1}/?{query}</td>
|
|
623
659
|
<td style="padding:15px">Yes</td>
|
|
624
660
|
</tr>
|
|
625
661
|
<tr>
|
|
626
662
|
<td style="padding:15px">retrieveIcebergSystemSchedulerById(name, working, callback)</td>
|
|
627
|
-
<td style="padding:15px">
|
|
663
|
+
<td style="padding:15px">retrieve_iceberg_system_scheduler_by_id</td>
|
|
628
664
|
<td style="padding:15px">{base_path}/{version}/config/system/scheduler/{pathv1}/?{query}</td>
|
|
629
665
|
<td style="padding:15px">Yes</td>
|
|
630
666
|
</tr>
|
|
631
667
|
<tr>
|
|
632
668
|
<td style="padding:15px">createIcebergSystemSchedulerById(name, body, callback)</td>
|
|
633
|
-
<td style="padding:15px">
|
|
669
|
+
<td style="padding:15px">create_iceberg_system_scheduler_by_id</td>
|
|
634
670
|
<td style="padding:15px">{base_path}/{version}/config/system/scheduler/{pathv1}/?{query}</td>
|
|
635
671
|
<td style="padding:15px">Yes</td>
|
|
636
672
|
</tr>
|
|
637
673
|
<tr>
|
|
638
674
|
<td style="padding:15px">updateIcebergSystemSchedulerById(name, body, callback)</td>
|
|
639
|
-
<td style="padding:15px">
|
|
675
|
+
<td style="padding:15px">update_iceberg_system_scheduler_by_id</td>
|
|
640
676
|
<td style="padding:15px">{base_path}/{version}/config/system/scheduler/{pathv1}/?{query}</td>
|
|
641
677
|
<td style="padding:15px">Yes</td>
|
|
642
678
|
</tr>
|
|
643
679
|
<tr>
|
|
644
680
|
<td style="padding:15px">deleteIcebergSystemDestinations(callback)</td>
|
|
645
|
-
<td style="padding:15px">
|
|
681
|
+
<td style="padding:15px">delete_iceberg_system_destinations</td>
|
|
646
682
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destinations/?{query}</td>
|
|
647
683
|
<td style="padding:15px">Yes</td>
|
|
648
684
|
</tr>
|
|
649
685
|
<tr>
|
|
650
686
|
<td style="padding:15px">retrieveIcebergSystemDestinations(working, callback)</td>
|
|
651
|
-
<td style="padding:15px">
|
|
687
|
+
<td style="padding:15px">retrieve_iceberg_system_destinations</td>
|
|
652
688
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destinations/?{query}</td>
|
|
653
689
|
<td style="padding:15px">Yes</td>
|
|
654
690
|
</tr>
|
|
655
691
|
<tr>
|
|
656
692
|
<td style="padding:15px">createIcebergSystemDestinations(body, callback)</td>
|
|
657
|
-
<td style="padding:15px">
|
|
693
|
+
<td style="padding:15px">create_iceberg_system_destinations</td>
|
|
658
694
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destinations/?{query}</td>
|
|
659
695
|
<td style="padding:15px">Yes</td>
|
|
660
696
|
</tr>
|
|
661
697
|
<tr>
|
|
662
698
|
<td style="padding:15px">updateIcebergSystemDestinations(body, callback)</td>
|
|
663
|
-
<td style="padding:15px">
|
|
699
|
+
<td style="padding:15px">update_iceberg_system_destinations</td>
|
|
664
700
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destinations/?{query}</td>
|
|
665
701
|
<td style="padding:15px">Yes</td>
|
|
666
702
|
</tr>
|
|
667
703
|
<tr>
|
|
668
704
|
<td style="padding:15px">deleteIcebergSystemDestinationById(name, callback)</td>
|
|
669
|
-
<td style="padding:15px">
|
|
705
|
+
<td style="padding:15px">delete_iceberg_system_destination_by_id</td>
|
|
670
706
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destination/{pathv1}/?{query}</td>
|
|
671
707
|
<td style="padding:15px">Yes</td>
|
|
672
708
|
</tr>
|
|
673
709
|
<tr>
|
|
674
710
|
<td style="padding:15px">retrieveIcebergSystemDestinationById(name, working, callback)</td>
|
|
675
|
-
<td style="padding:15px">
|
|
711
|
+
<td style="padding:15px">retrieve_iceberg_system_destination_by_id</td>
|
|
676
712
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destination/{pathv1}/?{query}</td>
|
|
677
713
|
<td style="padding:15px">Yes</td>
|
|
678
714
|
</tr>
|
|
679
715
|
<tr>
|
|
680
716
|
<td style="padding:15px">createIcebergSystemDestinationById(name, body, callback)</td>
|
|
681
|
-
<td style="padding:15px">
|
|
717
|
+
<td style="padding:15px">create_iceberg_system_destination_by_id</td>
|
|
682
718
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destination/{pathv1}/?{query}</td>
|
|
683
719
|
<td style="padding:15px">Yes</td>
|
|
684
720
|
</tr>
|
|
685
721
|
<tr>
|
|
686
722
|
<td style="padding:15px">updateIcebergSystemDestinationById(name, body, callback)</td>
|
|
687
|
-
<td style="padding:15px">
|
|
723
|
+
<td style="padding:15px">update_iceberg_system_destination_by_id</td>
|
|
688
724
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/destination/{pathv1}/?{query}</td>
|
|
689
725
|
<td style="padding:15px">Yes</td>
|
|
690
726
|
</tr>
|
|
691
727
|
<tr>
|
|
692
728
|
<td style="padding:15px">deleteIcebergSystemReports(callback)</td>
|
|
693
|
-
<td style="padding:15px">
|
|
729
|
+
<td style="padding:15px">delete_iceberg_system_reports</td>
|
|
694
730
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/reports/?{query}</td>
|
|
695
731
|
<td style="padding:15px">Yes</td>
|
|
696
732
|
</tr>
|
|
697
733
|
<tr>
|
|
698
734
|
<td style="padding:15px">retrieveIcebergSystemReports(working, callback)</td>
|
|
699
|
-
<td style="padding:15px">
|
|
735
|
+
<td style="padding:15px">retrieve_iceberg_system_reports</td>
|
|
700
736
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/reports/?{query}</td>
|
|
701
737
|
<td style="padding:15px">Yes</td>
|
|
702
738
|
</tr>
|
|
703
739
|
<tr>
|
|
704
740
|
<td style="padding:15px">createIcebergSystemReports(body, callback)</td>
|
|
705
|
-
<td style="padding:15px">
|
|
741
|
+
<td style="padding:15px">create_iceberg_system_reports</td>
|
|
706
742
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/reports/?{query}</td>
|
|
707
743
|
<td style="padding:15px">Yes</td>
|
|
708
744
|
</tr>
|
|
709
745
|
<tr>
|
|
710
746
|
<td style="padding:15px">updateIcebergSystemReports(body, callback)</td>
|
|
711
|
-
<td style="padding:15px">
|
|
747
|
+
<td style="padding:15px">update_iceberg_system_reports</td>
|
|
712
748
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/reports/?{query}</td>
|
|
713
749
|
<td style="padding:15px">Yes</td>
|
|
714
750
|
</tr>
|
|
715
751
|
<tr>
|
|
716
752
|
<td style="padding:15px">deleteIcebergSystemReportById(name, callback)</td>
|
|
717
|
-
<td style="padding:15px">
|
|
753
|
+
<td style="padding:15px">delete_iceberg_system_report_by_id</td>
|
|
718
754
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/report/{pathv1}/?{query}</td>
|
|
719
755
|
<td style="padding:15px">Yes</td>
|
|
720
756
|
</tr>
|
|
721
757
|
<tr>
|
|
722
758
|
<td style="padding:15px">retrieveIcebergSystemReportById(name, working, callback)</td>
|
|
723
|
-
<td style="padding:15px">
|
|
759
|
+
<td style="padding:15px">retrieve_iceberg_system_report_by_id</td>
|
|
724
760
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/report/{pathv1}/?{query}</td>
|
|
725
761
|
<td style="padding:15px">Yes</td>
|
|
726
762
|
</tr>
|
|
727
763
|
<tr>
|
|
728
764
|
<td style="padding:15px">createIcebergSystemReportById(name, body, callback)</td>
|
|
729
|
-
<td style="padding:15px">
|
|
765
|
+
<td style="padding:15px">create_iceberg_system_report_by_id</td>
|
|
730
766
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/report/{pathv1}/?{query}</td>
|
|
731
767
|
<td style="padding:15px">Yes</td>
|
|
732
768
|
</tr>
|
|
733
769
|
<tr>
|
|
734
770
|
<td style="padding:15px">updateIcebergSystemReportById(name, body, callback)</td>
|
|
735
|
-
<td style="padding:15px">
|
|
771
|
+
<td style="padding:15px">update_iceberg_system_report_by_id</td>
|
|
736
772
|
<td style="padding:15px">{base_path}/{version}/config/system/report-generation/report/{pathv1}/?{query}</td>
|
|
737
773
|
<td style="padding:15px">Yes</td>
|
|
738
774
|
</tr>
|
|
739
775
|
<tr>
|
|
740
776
|
<td style="padding:15px">deleteIcebergSystemSettingsSystemSettingsById(callback)</td>
|
|
741
|
-
<td style="padding:15px">
|
|
777
|
+
<td style="padding:15px">delete_iceberg_system-settings_system-settings_by_id</td>
|
|
742
778
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/?{query}</td>
|
|
743
779
|
<td style="padding:15px">Yes</td>
|
|
744
780
|
</tr>
|
|
745
781
|
<tr>
|
|
746
782
|
<td style="padding:15px">retrieveIcebergSystemSettingsSystemSettings(working, callback)</td>
|
|
747
|
-
<td style="padding:15px">
|
|
783
|
+
<td style="padding:15px">retrieve_iceberg_system-settings_system-settings</td>
|
|
748
784
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/?{query}</td>
|
|
749
785
|
<td style="padding:15px">Yes</td>
|
|
750
786
|
</tr>
|
|
751
787
|
<tr>
|
|
752
788
|
<td style="padding:15px">createIcebergSystemSettingsSystemSettingsById(forceTsdb, body, callback)</td>
|
|
753
|
-
<td style="padding:15px">
|
|
789
|
+
<td style="padding:15px">create_iceberg_system-settings_system-settings_by_id</td>
|
|
754
790
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/?{query}</td>
|
|
755
791
|
<td style="padding:15px">Yes</td>
|
|
756
792
|
</tr>
|
|
757
793
|
<tr>
|
|
758
794
|
<td style="padding:15px">updateIcebergSystemSettingsSystemSettingsById(forceTsdb, body, callback)</td>
|
|
759
|
-
<td style="padding:15px">
|
|
795
|
+
<td style="padding:15px">update_iceberg_system-settings_system-settings_by_id</td>
|
|
760
796
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/?{query}</td>
|
|
761
797
|
<td style="padding:15px">Yes</td>
|
|
762
798
|
</tr>
|
|
763
799
|
<tr>
|
|
764
800
|
<td style="padding:15px">deleteIcebergSystemSettingsSchedulers(callback)</td>
|
|
765
|
-
<td style="padding:15px">
|
|
801
|
+
<td style="padding:15px">delete_iceberg_system_settings_schedulers</td>
|
|
766
802
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/schedulers/?{query}</td>
|
|
767
803
|
<td style="padding:15px">Yes</td>
|
|
768
804
|
</tr>
|
|
769
805
|
<tr>
|
|
770
806
|
<td style="padding:15px">retrieveIcebergSystemSettingsSchedulers(working, callback)</td>
|
|
771
|
-
<td style="padding:15px">
|
|
807
|
+
<td style="padding:15px">retrieve_iceberg_system_settings_schedulers</td>
|
|
772
808
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/schedulers/?{query}</td>
|
|
773
809
|
<td style="padding:15px">Yes</td>
|
|
774
810
|
</tr>
|
|
775
811
|
<tr>
|
|
776
812
|
<td style="padding:15px">createIcebergSystemSettingsSchedulers(body, callback)</td>
|
|
777
|
-
<td style="padding:15px">
|
|
813
|
+
<td style="padding:15px">create_iceberg_system_settings_schedulers</td>
|
|
778
814
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/schedulers/?{query}</td>
|
|
779
815
|
<td style="padding:15px">Yes</td>
|
|
780
816
|
</tr>
|
|
781
817
|
<tr>
|
|
782
818
|
<td style="padding:15px">updateIcebergSystemSettingsSchedulers(body, callback)</td>
|
|
783
|
-
<td style="padding:15px">
|
|
819
|
+
<td style="padding:15px">update_iceberg_system_settings_schedulers</td>
|
|
784
820
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/schedulers/?{query}</td>
|
|
785
821
|
<td style="padding:15px">Yes</td>
|
|
786
822
|
</tr>
|
|
787
823
|
<tr>
|
|
788
824
|
<td style="padding:15px">deleteIcebergSystemSettingsSchedulerById(name, callback)</td>
|
|
789
|
-
<td style="padding:15px">
|
|
825
|
+
<td style="padding:15px">delete_iceberg_system_settings_scheduler_by_id</td>
|
|
790
826
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/scheduler/{pathv1}/?{query}</td>
|
|
791
827
|
<td style="padding:15px">Yes</td>
|
|
792
828
|
</tr>
|
|
793
829
|
<tr>
|
|
794
830
|
<td style="padding:15px">retrieveIcebergSystemSettingsSchedulerById(name, working, callback)</td>
|
|
795
|
-
<td style="padding:15px">
|
|
831
|
+
<td style="padding:15px">retrieve_iceberg_system_settings_scheduler_by_id</td>
|
|
796
832
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/scheduler/{pathv1}/?{query}</td>
|
|
797
833
|
<td style="padding:15px">Yes</td>
|
|
798
834
|
</tr>
|
|
799
835
|
<tr>
|
|
800
836
|
<td style="padding:15px">createIcebergSystemSettingsSchedulerById(name, body, callback)</td>
|
|
801
|
-
<td style="padding:15px">
|
|
837
|
+
<td style="padding:15px">create_iceberg_system_settings_scheduler_by_id</td>
|
|
802
838
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/scheduler/{pathv1}/?{query}</td>
|
|
803
839
|
<td style="padding:15px">Yes</td>
|
|
804
840
|
</tr>
|
|
805
841
|
<tr>
|
|
806
842
|
<td style="padding:15px">updateIcebergSystemSettingsSchedulerById(name, body, callback)</td>
|
|
807
|
-
<td style="padding:15px">
|
|
843
|
+
<td style="padding:15px">update_iceberg_system_settings_scheduler_by_id</td>
|
|
808
844
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/scheduler/{pathv1}/?{query}</td>
|
|
809
845
|
<td style="padding:15px">Yes</td>
|
|
810
846
|
</tr>
|
|
811
847
|
<tr>
|
|
812
848
|
<td style="padding:15px">deleteIcebergSystemSettingsDestinations(callback)</td>
|
|
813
|
-
<td style="padding:15px">
|
|
849
|
+
<td style="padding:15px">delete_iceberg_system_settings_destinations</td>
|
|
814
850
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destinations/?{query}</td>
|
|
815
851
|
<td style="padding:15px">Yes</td>
|
|
816
852
|
</tr>
|
|
817
853
|
<tr>
|
|
818
854
|
<td style="padding:15px">retrieveIcebergSystemSettingsDestinations(working, callback)</td>
|
|
819
|
-
<td style="padding:15px">
|
|
855
|
+
<td style="padding:15px">retrieve_iceberg_system_settings_destinations</td>
|
|
820
856
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destinations/?{query}</td>
|
|
821
857
|
<td style="padding:15px">Yes</td>
|
|
822
858
|
</tr>
|
|
823
859
|
<tr>
|
|
824
860
|
<td style="padding:15px">createIcebergSystemSettingsDestinations(body, callback)</td>
|
|
825
|
-
<td style="padding:15px">
|
|
861
|
+
<td style="padding:15px">create_iceberg_system_settings_destinations</td>
|
|
826
862
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destinations/?{query}</td>
|
|
827
863
|
<td style="padding:15px">Yes</td>
|
|
828
864
|
</tr>
|
|
829
865
|
<tr>
|
|
830
866
|
<td style="padding:15px">updateIcebergSystemSettingsDestinations(body, callback)</td>
|
|
831
|
-
<td style="padding:15px">
|
|
867
|
+
<td style="padding:15px">update_iceberg_system_settings_destinations</td>
|
|
832
868
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destinations/?{query}</td>
|
|
833
869
|
<td style="padding:15px">Yes</td>
|
|
834
870
|
</tr>
|
|
835
871
|
<tr>
|
|
836
872
|
<td style="padding:15px">deleteIcebergSystemSettingsDestinationById(name, callback)</td>
|
|
837
|
-
<td style="padding:15px">
|
|
873
|
+
<td style="padding:15px">delete_iceberg_system_settings_destination_by_id</td>
|
|
838
874
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destination/{pathv1}/?{query}</td>
|
|
839
875
|
<td style="padding:15px">Yes</td>
|
|
840
876
|
</tr>
|
|
841
877
|
<tr>
|
|
842
878
|
<td style="padding:15px">retrieveIcebergSystemSettingsDestinationById(name, working, callback)</td>
|
|
843
|
-
<td style="padding:15px">
|
|
879
|
+
<td style="padding:15px">retrieve_iceberg_system_settings_destination_by_id</td>
|
|
844
880
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destination/{pathv1}/?{query}</td>
|
|
845
881
|
<td style="padding:15px">Yes</td>
|
|
846
882
|
</tr>
|
|
847
883
|
<tr>
|
|
848
884
|
<td style="padding:15px">createIcebergSystemSettingsDestinationById(name, body, callback)</td>
|
|
849
|
-
<td style="padding:15px">
|
|
885
|
+
<td style="padding:15px">create_iceberg_system_settings_destination_by_id</td>
|
|
850
886
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destination/{pathv1}/?{query}</td>
|
|
851
887
|
<td style="padding:15px">Yes</td>
|
|
852
888
|
</tr>
|
|
853
889
|
<tr>
|
|
854
890
|
<td style="padding:15px">updateIcebergSystemSettingsDestinationById(name, body, callback)</td>
|
|
855
|
-
<td style="padding:15px">
|
|
891
|
+
<td style="padding:15px">update_iceberg_system_settings_destination_by_id</td>
|
|
856
892
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/destination/{pathv1}/?{query}</td>
|
|
857
893
|
<td style="padding:15px">Yes</td>
|
|
858
894
|
</tr>
|
|
859
895
|
<tr>
|
|
860
896
|
<td style="padding:15px">deleteIcebergSystemSettingsReports(callback)</td>
|
|
861
|
-
<td style="padding:15px">
|
|
897
|
+
<td style="padding:15px">delete_iceberg_system_settings_reports</td>
|
|
862
898
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/reports/?{query}</td>
|
|
863
899
|
<td style="padding:15px">Yes</td>
|
|
864
900
|
</tr>
|
|
865
901
|
<tr>
|
|
866
902
|
<td style="padding:15px">retrieveIcebergSystemSettingsReports(working, callback)</td>
|
|
867
|
-
<td style="padding:15px">
|
|
903
|
+
<td style="padding:15px">retrieve_iceberg_system_settings_reports</td>
|
|
868
904
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/reports/?{query}</td>
|
|
869
905
|
<td style="padding:15px">Yes</td>
|
|
870
906
|
</tr>
|
|
871
907
|
<tr>
|
|
872
908
|
<td style="padding:15px">createIcebergSystemSettingsReports(body, callback)</td>
|
|
873
|
-
<td style="padding:15px">
|
|
909
|
+
<td style="padding:15px">create_iceberg_system_settings_reports</td>
|
|
874
910
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/reports/?{query}</td>
|
|
875
911
|
<td style="padding:15px">Yes</td>
|
|
876
912
|
</tr>
|
|
877
913
|
<tr>
|
|
878
914
|
<td style="padding:15px">updateIcebergSystemSettingsReports(body, callback)</td>
|
|
879
|
-
<td style="padding:15px">
|
|
915
|
+
<td style="padding:15px">update_iceberg_system_settings_reports</td>
|
|
880
916
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/reports/?{query}</td>
|
|
881
917
|
<td style="padding:15px">Yes</td>
|
|
882
918
|
</tr>
|
|
883
919
|
<tr>
|
|
884
920
|
<td style="padding:15px">deleteIcebergSystemSettingsReportById(name, callback)</td>
|
|
885
|
-
<td style="padding:15px">
|
|
921
|
+
<td style="padding:15px">delete_iceberg_system_settings_report_by_id</td>
|
|
886
922
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/report/{pathv1}/?{query}</td>
|
|
887
923
|
<td style="padding:15px">Yes</td>
|
|
888
924
|
</tr>
|
|
889
925
|
<tr>
|
|
890
926
|
<td style="padding:15px">retrieveIcebergSystemSettingsReportById(name, working, callback)</td>
|
|
891
|
-
<td style="padding:15px">
|
|
927
|
+
<td style="padding:15px">retrieve_iceberg_system_settings_report_by_id</td>
|
|
892
928
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/report/{pathv1}/?{query}</td>
|
|
893
929
|
<td style="padding:15px">Yes</td>
|
|
894
930
|
</tr>
|
|
895
931
|
<tr>
|
|
896
932
|
<td style="padding:15px">createIcebergSystemSettingsReportById(name, body, callback)</td>
|
|
897
|
-
<td style="padding:15px">
|
|
933
|
+
<td style="padding:15px">create_iceberg_system_settings_report_by_id</td>
|
|
898
934
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/report/{pathv1}/?{query}</td>
|
|
899
935
|
<td style="padding:15px">Yes</td>
|
|
900
936
|
</tr>
|
|
901
937
|
<tr>
|
|
902
938
|
<td style="padding:15px">updateIcebergSystemSettingsReportById(name, body, callback)</td>
|
|
903
|
-
<td style="padding:15px">
|
|
939
|
+
<td style="padding:15px">update_iceberg_system_settings_report_by_id</td>
|
|
904
940
|
<td style="padding:15px">{base_path}/{version}/config/system-settings/report-generation/report/{pathv1}/?{query}</td>
|
|
905
941
|
<td style="padding:15px">Yes</td>
|
|
906
942
|
</tr>
|
|
907
943
|
<tr>
|
|
908
944
|
<td style="padding:15px">retrieveIcebergTopicTopic(working, callback)</td>
|
|
909
|
-
<td style="padding:15px">
|
|
945
|
+
<td style="padding:15px">retrieve_iceberg_topic_topic</td>
|
|
910
946
|
<td style="padding:15px">{base_path}/{version}/config/topic/?{query}</td>
|
|
911
947
|
<td style="padding:15px">Yes</td>
|
|
912
948
|
</tr>
|
|
913
949
|
<tr>
|
|
914
950
|
<td style="padding:15px">deleteIcebergTopicTopicById(topicName, callback)</td>
|
|
915
|
-
<td style="padding:15px">
|
|
951
|
+
<td style="padding:15px">delete_iceberg_topic_topic_by_id</td>
|
|
916
952
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/?{query}</td>
|
|
917
953
|
<td style="padding:15px">Yes</td>
|
|
918
954
|
</tr>
|
|
919
955
|
<tr>
|
|
920
956
|
<td style="padding:15px">retrieveIcebergTopicTopicById(topicName, working, callback)</td>
|
|
921
|
-
<td style="padding:15px">
|
|
957
|
+
<td style="padding:15px">retrieve_iceberg_topic_topic_by_id</td>
|
|
922
958
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/?{query}</td>
|
|
923
959
|
<td style="padding:15px">Yes</td>
|
|
924
960
|
</tr>
|
|
925
961
|
<tr>
|
|
926
962
|
<td style="padding:15px">createIcebergTopicTopicById(topicName, body, callback)</td>
|
|
927
|
-
<td style="padding:15px">
|
|
963
|
+
<td style="padding:15px">create_iceberg_topic_topic_by_id</td>
|
|
928
964
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/?{query}</td>
|
|
929
965
|
<td style="padding:15px">Yes</td>
|
|
930
966
|
</tr>
|
|
931
967
|
<tr>
|
|
932
968
|
<td style="padding:15px">updateIcebergTopicTopicById(topicName, body, callback)</td>
|
|
933
|
-
<td style="padding:15px">
|
|
969
|
+
<td style="padding:15px">update_iceberg_topic_topic_by_id</td>
|
|
934
970
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/?{query}</td>
|
|
935
971
|
<td style="padding:15px">Yes</td>
|
|
936
972
|
</tr>
|
|
937
973
|
<tr>
|
|
938
974
|
<td style="padding:15px">retrieveIcebergTopicRuleRule(topicName, working, callback)</td>
|
|
939
|
-
<td style="padding:15px">
|
|
975
|
+
<td style="padding:15px">retrieve_iceberg_topic_rule_rule</td>
|
|
940
976
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/rule/?{query}</td>
|
|
941
977
|
<td style="padding:15px">Yes</td>
|
|
942
978
|
</tr>
|
|
943
979
|
<tr>
|
|
944
980
|
<td style="padding:15px">deleteIcebergTopicRuleRuleById(topicName, ruleName, callback)</td>
|
|
945
|
-
<td style="padding:15px">
|
|
981
|
+
<td style="padding:15px">delete_iceberg_topic_rule_rule_by_id</td>
|
|
946
982
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/rule/{pathv2}/?{query}</td>
|
|
947
983
|
<td style="padding:15px">Yes</td>
|
|
948
984
|
</tr>
|
|
949
985
|
<tr>
|
|
950
986
|
<td style="padding:15px">retrieveIcebergTopicRuleRuleById(topicName, ruleName, working, download, callback)</td>
|
|
951
|
-
<td style="padding:15px">
|
|
987
|
+
<td style="padding:15px">retrieve_iceberg_topic_rule_rule_by_id</td>
|
|
952
988
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/rule/{pathv2}/?{query}</td>
|
|
953
989
|
<td style="padding:15px">Yes</td>
|
|
954
990
|
</tr>
|
|
955
991
|
<tr>
|
|
956
992
|
<td style="padding:15px">createIcebergTopicRuleRuleById(topicName, ruleName, body, callback)</td>
|
|
957
|
-
<td style="padding:15px">
|
|
993
|
+
<td style="padding:15px">create_iceberg_topic_rule_rule_by_id</td>
|
|
958
994
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/rule/{pathv2}/?{query}</td>
|
|
959
995
|
<td style="padding:15px">Yes</td>
|
|
960
996
|
</tr>
|
|
961
997
|
<tr>
|
|
962
998
|
<td style="padding:15px">updateIcebergTopicRuleRuleById(topicName, ruleName, body, callback)</td>
|
|
963
|
-
<td style="padding:15px">
|
|
999
|
+
<td style="padding:15px">update_iceberg_topic_rule_rule_by_id</td>
|
|
964
1000
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/rule/{pathv2}/?{query}</td>
|
|
965
1001
|
<td style="padding:15px">Yes</td>
|
|
966
1002
|
</tr>
|
|
967
1003
|
<tr>
|
|
968
1004
|
<td style="padding:15px">deleteHealthbotTopicResourceResourceById(topicName, resourceName, callback)</td>
|
|
969
|
-
<td style="padding:15px">
|
|
1005
|
+
<td style="padding:15px">delete_healthbot_topic_resource_resource_by_id</td>
|
|
970
1006
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/resource/{pathv2}/?{query}</td>
|
|
971
1007
|
<td style="padding:15px">Yes</td>
|
|
972
1008
|
</tr>
|
|
973
1009
|
<tr>
|
|
974
1010
|
<td style="padding:15px">createHealthbotTopicResourceResourceById(topicName, resourceName, body, callback)</td>
|
|
975
|
-
<td style="padding:15px">
|
|
1011
|
+
<td style="padding:15px">create_healthbot_topic_resource_resource_by_id</td>
|
|
976
1012
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/resource/{pathv2}/?{query}</td>
|
|
977
1013
|
<td style="padding:15px">Yes</td>
|
|
978
1014
|
</tr>
|
|
979
1015
|
<tr>
|
|
980
1016
|
<td style="padding:15px">updateHealthbotTopicResourceResourceById(topicName, resourceName, body, callback)</td>
|
|
981
|
-
<td style="padding:15px">
|
|
1017
|
+
<td style="padding:15px">update_healthbot_topic_resource_resource_by_id</td>
|
|
982
1018
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/resource/{pathv2}/?{query}</td>
|
|
983
1019
|
<td style="padding:15px">Yes</td>
|
|
984
1020
|
</tr>
|
|
985
1021
|
<tr>
|
|
986
1022
|
<td style="padding:15px">deleteIcebergTopicsTopicsById(callback)</td>
|
|
987
|
-
<td style="padding:15px">
|
|
1023
|
+
<td style="padding:15px">delete_iceberg_topics_topics_by_id</td>
|
|
988
1024
|
<td style="padding:15px">{base_path}/{version}/config/topics/?{query}</td>
|
|
989
1025
|
<td style="padding:15px">Yes</td>
|
|
990
1026
|
</tr>
|
|
991
1027
|
<tr>
|
|
992
1028
|
<td style="padding:15px">retrieveIcebergTopicsTopics(working, sort, callback)</td>
|
|
993
|
-
<td style="padding:15px">
|
|
1029
|
+
<td style="padding:15px">retrieve_iceberg_topics_topics</td>
|
|
994
1030
|
<td style="padding:15px">{base_path}/{version}/config/topics/?{query}</td>
|
|
995
1031
|
<td style="padding:15px">Yes</td>
|
|
996
1032
|
</tr>
|
|
997
1033
|
<tr>
|
|
998
1034
|
<td style="padding:15px">createIcebergTopicsTopicsById(body, callback)</td>
|
|
999
|
-
<td style="padding:15px">
|
|
1035
|
+
<td style="padding:15px">create_iceberg_topics_topics_by_id</td>
|
|
1000
1036
|
<td style="padding:15px">{base_path}/{version}/config/topics/?{query}</td>
|
|
1001
1037
|
<td style="padding:15px">Yes</td>
|
|
1002
1038
|
</tr>
|
|
1003
1039
|
<tr>
|
|
1004
1040
|
<td style="padding:15px">updateIcebergTopicsTopicsById(body, callback)</td>
|
|
1005
|
-
<td style="padding:15px">
|
|
1041
|
+
<td style="padding:15px">update_iceberg_topics_topics_by_id</td>
|
|
1006
1042
|
<td style="padding:15px">{base_path}/{version}/config/topics/?{query}</td>
|
|
1007
1043
|
<td style="padding:15px">Yes</td>
|
|
1008
1044
|
</tr>
|
|
1009
1045
|
<tr>
|
|
1010
1046
|
<td style="padding:15px">postFirstLogin(body, callback)</td>
|
|
1011
|
-
<td style="padding:15px">
|
|
1047
|
+
<td style="padding:15px">first_login</td>
|
|
1012
1048
|
<td style="padding:15px">{base_path}/{version}/first-login/?{query}</td>
|
|
1013
1049
|
<td style="padding:15px">Yes</td>
|
|
1014
1050
|
</tr>
|
|
1015
1051
|
<tr>
|
|
1016
1052
|
<td style="padding:15px">deleteHealthbotOrganizationsOrganizations(callback)</td>
|
|
1017
|
-
<td style="padding:15px">
|
|
1053
|
+
<td style="padding:15px">delete_healthbot_organizations_organizations</td>
|
|
1018
1054
|
<td style="padding:15px">{base_path}/{version}/config/organizations/?{query}</td>
|
|
1019
1055
|
<td style="padding:15px">Yes</td>
|
|
1020
1056
|
</tr>
|
|
1021
1057
|
<tr>
|
|
1022
1058
|
<td style="padding:15px">retrieveHealthbotOrganizationsOrganizations(working, callback)</td>
|
|
1023
|
-
<td style="padding:15px">
|
|
1059
|
+
<td style="padding:15px">retrieve_healthbot_organizations_organizations</td>
|
|
1024
1060
|
<td style="padding:15px">{base_path}/{version}/config/organizations/?{query}</td>
|
|
1025
1061
|
<td style="padding:15px">Yes</td>
|
|
1026
1062
|
</tr>
|
|
1027
1063
|
<tr>
|
|
1028
1064
|
<td style="padding:15px">createHealthbotOrganizationsOrganizations(body, callback)</td>
|
|
1029
|
-
<td style="padding:15px">
|
|
1065
|
+
<td style="padding:15px">create_healthbot_organizations_organizations</td>
|
|
1030
1066
|
<td style="padding:15px">{base_path}/{version}/config/organizations/?{query}</td>
|
|
1031
1067
|
<td style="padding:15px">Yes</td>
|
|
1032
1068
|
</tr>
|
|
1033
1069
|
<tr>
|
|
1034
1070
|
<td style="padding:15px">updateHealthbotOrganizationsOrganizations(body, callback)</td>
|
|
1035
|
-
<td style="padding:15px">
|
|
1071
|
+
<td style="padding:15px">update_healthbot_organizations_organizations</td>
|
|
1036
1072
|
<td style="padding:15px">{base_path}/{version}/config/organizations/?{query}</td>
|
|
1037
1073
|
<td style="padding:15px">Yes</td>
|
|
1038
1074
|
</tr>
|
|
1039
1075
|
<tr>
|
|
1040
1076
|
<td style="padding:15px">retrieveHealthbotIngestByoiIngestMappings(working, callback)</td>
|
|
1041
|
-
<td style="padding:15px">
|
|
1077
|
+
<td style="padding:15px">retrieve_healthbot_ingest_byoi_ingest_mappings</td>
|
|
1042
1078
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/ingest-mappings/?{query}</td>
|
|
1043
1079
|
<td style="padding:15px">Yes</td>
|
|
1044
1080
|
</tr>
|
|
1045
1081
|
<tr>
|
|
1046
1082
|
<td style="padding:15px">retrieveHealthbotIngestSettingsByoiIngestMappings(working, callback)</td>
|
|
1047
|
-
<td style="padding:15px">
|
|
1083
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_byoi_ingest_mappings</td>
|
|
1048
1084
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/ingest-mappings/?{query}</td>
|
|
1049
1085
|
<td style="padding:15px">Yes</td>
|
|
1050
1086
|
</tr>
|
|
1051
1087
|
<tr>
|
|
1052
1088
|
<td style="padding:15px">retrieveHealthbotTopicResourceResourceById(topicName, resourceName, working, download, callback)</td>
|
|
1053
|
-
<td style="padding:15px">
|
|
1089
|
+
<td style="padding:15px">retrieve_healthbot_topic_resource_resource_by_id</td>
|
|
1054
1090
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/resource/{pathv2}/?{query}</td>
|
|
1055
1091
|
<td style="padding:15px">Yes</td>
|
|
1056
1092
|
</tr>
|
|
1057
1093
|
<tr>
|
|
1058
1094
|
<td style="padding:15px">deleteIcebergIngest(callback)</td>
|
|
1059
|
-
<td style="padding:15px">
|
|
1095
|
+
<td style="padding:15px">delete_iceberg_ingest</td>
|
|
1060
1096
|
<td style="padding:15px">{base_path}/{version}/config/ingest/?{query}</td>
|
|
1061
1097
|
<td style="padding:15px">Yes</td>
|
|
1062
1098
|
</tr>
|
|
1063
1099
|
<tr>
|
|
1064
1100
|
<td style="padding:15px">retrieveIcebergIngest(working, callback)</td>
|
|
1065
|
-
<td style="padding:15px">
|
|
1101
|
+
<td style="padding:15px">retrieve_iceberg_ingest</td>
|
|
1066
1102
|
<td style="padding:15px">{base_path}/{version}/config/ingest/?{query}</td>
|
|
1067
1103
|
<td style="padding:15px">Yes</td>
|
|
1068
1104
|
</tr>
|
|
1069
1105
|
<tr>
|
|
1070
1106
|
<td style="padding:15px">createIcebergIngest(body, callback)</td>
|
|
1071
|
-
<td style="padding:15px">
|
|
1107
|
+
<td style="padding:15px">create_iceberg_ingest</td>
|
|
1072
1108
|
<td style="padding:15px">{base_path}/{version}/config/ingest/?{query}</td>
|
|
1073
1109
|
<td style="padding:15px">Yes</td>
|
|
1074
1110
|
</tr>
|
|
1075
1111
|
<tr>
|
|
1076
1112
|
<td style="padding:15px">updateIcebergIngest(body, callback)</td>
|
|
1077
|
-
<td style="padding:15px">
|
|
1113
|
+
<td style="padding:15px">update_iceberg_ingest</td>
|
|
1078
1114
|
<td style="padding:15px">{base_path}/{version}/config/ingest/?{query}</td>
|
|
1079
1115
|
<td style="padding:15px">Yes</td>
|
|
1080
1116
|
</tr>
|
|
1081
1117
|
<tr>
|
|
1082
1118
|
<td style="padding:15px">retrieveHealthbotIngestTaggingProfiles(working, callback)</td>
|
|
1083
|
-
<td style="padding:15px">
|
|
1119
|
+
<td style="padding:15px">retrieve_healthbot_ingest_tagging_profiles</td>
|
|
1084
1120
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profiles/?{query}</td>
|
|
1085
1121
|
<td style="padding:15px">Yes</td>
|
|
1086
1122
|
</tr>
|
|
1087
1123
|
<tr>
|
|
1088
1124
|
<td style="padding:15px">deleteHealthbotIngestTaggingProfiles(callback)</td>
|
|
1089
|
-
<td style="padding:15px">
|
|
1125
|
+
<td style="padding:15px">delete_healthbot_ingest_tagging_profiles</td>
|
|
1090
1126
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profiles/?{query}</td>
|
|
1091
1127
|
<td style="padding:15px">Yes</td>
|
|
1092
1128
|
</tr>
|
|
1093
1129
|
<tr>
|
|
1094
1130
|
<td style="padding:15px">createHealthbotIngestTaggingProfiles(body, callback)</td>
|
|
1095
|
-
<td style="padding:15px">
|
|
1131
|
+
<td style="padding:15px">create_healthbot_ingest_tagging_profiles</td>
|
|
1096
1132
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profiles/?{query}</td>
|
|
1097
1133
|
<td style="padding:15px">Yes</td>
|
|
1098
1134
|
</tr>
|
|
1099
1135
|
<tr>
|
|
1100
1136
|
<td style="padding:15px">updateHealthbotIngestTaggingProfiles(body, callback)</td>
|
|
1101
|
-
<td style="padding:15px">
|
|
1137
|
+
<td style="padding:15px">update_healthbot_ingest_tagging_profiles</td>
|
|
1102
1138
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profiles/?{query}</td>
|
|
1103
1139
|
<td style="padding:15px">Yes</td>
|
|
1104
1140
|
</tr>
|
|
1105
1141
|
<tr>
|
|
1106
1142
|
<td style="padding:15px">deleteHealthbotIngestTaggingProfileById(name, callback)</td>
|
|
1107
|
-
<td style="padding:15px">
|
|
1143
|
+
<td style="padding:15px">delete_healthbot_ingest_tagging_profile_by_id</td>
|
|
1108
1144
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1109
1145
|
<td style="padding:15px">Yes</td>
|
|
1110
1146
|
</tr>
|
|
1111
1147
|
<tr>
|
|
1112
1148
|
<td style="padding:15px">retrieveHealthbotIngestTaggingProfileById(name, working, callback)</td>
|
|
1113
|
-
<td style="padding:15px">
|
|
1149
|
+
<td style="padding:15px">retrieve_healthbot_ingest_tagging_profile_by_id</td>
|
|
1114
1150
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1115
1151
|
<td style="padding:15px">Yes</td>
|
|
1116
1152
|
</tr>
|
|
1117
1153
|
<tr>
|
|
1118
1154
|
<td style="padding:15px">createHealthbotIngestTaggingProfileById(name, body, callback)</td>
|
|
1119
|
-
<td style="padding:15px">
|
|
1155
|
+
<td style="padding:15px">create_healthbot_ingest_tagging_profile_by_id</td>
|
|
1120
1156
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1121
1157
|
<td style="padding:15px">Yes</td>
|
|
1122
1158
|
</tr>
|
|
1123
1159
|
<tr>
|
|
1124
1160
|
<td style="padding:15px">updateHealthbotIngestTaggingProfileById(name, body, callback)</td>
|
|
1125
|
-
<td style="padding:15px">
|
|
1161
|
+
<td style="padding:15px">update_healthbot_ingest_tagging_profile_by_id</td>
|
|
1126
1162
|
<td style="padding:15px">{base_path}/{version}/config/ingest/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1127
1163
|
<td style="padding:15px">Yes</td>
|
|
1128
1164
|
</tr>
|
|
1129
1165
|
<tr>
|
|
1130
1166
|
<td style="padding:15px">deleteIcebergIngestFlow(callback)</td>
|
|
1131
|
-
<td style="padding:15px">
|
|
1167
|
+
<td style="padding:15px">delete_iceberg_ingest_flow</td>
|
|
1132
1168
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/?{query}</td>
|
|
1133
1169
|
<td style="padding:15px">Yes</td>
|
|
1134
1170
|
</tr>
|
|
1135
1171
|
<tr>
|
|
1136
1172
|
<td style="padding:15px">retrieveIcebergIngestFlow(working, callback)</td>
|
|
1137
|
-
<td style="padding:15px">
|
|
1173
|
+
<td style="padding:15px">retrieve_iceberg_ingest_flow</td>
|
|
1138
1174
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/?{query}</td>
|
|
1139
1175
|
<td style="padding:15px">Yes</td>
|
|
1140
1176
|
</tr>
|
|
1141
1177
|
<tr>
|
|
1142
1178
|
<td style="padding:15px">createIcebergIngestFlow(body, callback)</td>
|
|
1143
|
-
<td style="padding:15px">
|
|
1179
|
+
<td style="padding:15px">create_iceberg_ingest_flow</td>
|
|
1144
1180
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/?{query}</td>
|
|
1145
1181
|
<td style="padding:15px">Yes</td>
|
|
1146
1182
|
</tr>
|
|
1147
1183
|
<tr>
|
|
1148
1184
|
<td style="padding:15px">updateIcebergIngestFlow(body, callback)</td>
|
|
1149
|
-
<td style="padding:15px">
|
|
1185
|
+
<td style="padding:15px">update_iceberg_ingest_flow</td>
|
|
1150
1186
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/?{query}</td>
|
|
1151
1187
|
<td style="padding:15px">Yes</td>
|
|
1152
1188
|
</tr>
|
|
1153
1189
|
<tr>
|
|
1154
1190
|
<td style="padding:15px">retrieveIcebergIngestFlowTemplateIds(working, callback)</td>
|
|
1155
|
-
<td style="padding:15px">
|
|
1191
|
+
<td style="padding:15px">retrieve_iceberg_ingest_flow_template_ids</td>
|
|
1156
1192
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/template/?{query}</td>
|
|
1157
1193
|
<td style="padding:15px">Yes</td>
|
|
1158
1194
|
</tr>
|
|
1159
1195
|
<tr>
|
|
1160
1196
|
<td style="padding:15px">deleteIcebergIngestFlowTemplateById(name, callback)</td>
|
|
1161
|
-
<td style="padding:15px">
|
|
1197
|
+
<td style="padding:15px">delete_iceberg_ingest_flow_template_by_id</td>
|
|
1162
1198
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/template/{pathv1}/?{query}</td>
|
|
1163
1199
|
<td style="padding:15px">Yes</td>
|
|
1164
1200
|
</tr>
|
|
1165
1201
|
<tr>
|
|
1166
1202
|
<td style="padding:15px">retrieveIcebergIngestFlowTemplateById(name, working, callback)</td>
|
|
1167
|
-
<td style="padding:15px">
|
|
1203
|
+
<td style="padding:15px">retrieve_iceberg_ingest_flow_template_by_id</td>
|
|
1168
1204
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/template/{pathv1}/?{query}</td>
|
|
1169
1205
|
<td style="padding:15px">Yes</td>
|
|
1170
1206
|
</tr>
|
|
1171
1207
|
<tr>
|
|
1172
1208
|
<td style="padding:15px">createIcebergIngestFlowTemplateById(name, body, callback)</td>
|
|
1173
|
-
<td style="padding:15px">
|
|
1209
|
+
<td style="padding:15px">create_iceberg_ingest_flow_template_by_id</td>
|
|
1174
1210
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/template/{pathv1}/?{query}</td>
|
|
1175
1211
|
<td style="padding:15px">Yes</td>
|
|
1176
1212
|
</tr>
|
|
1177
1213
|
<tr>
|
|
1178
1214
|
<td style="padding:15px">updateIcebergIngestFlowTemplateById(name, body, callback)</td>
|
|
1179
|
-
<td style="padding:15px">
|
|
1215
|
+
<td style="padding:15px">update_iceberg_ingest_flow_template_by_id</td>
|
|
1180
1216
|
<td style="padding:15px">{base_path}/{version}/config/ingest/flow/template/{pathv1}/?{query}</td>
|
|
1181
1217
|
<td style="padding:15px">Yes</td>
|
|
1182
1218
|
</tr>
|
|
1183
1219
|
<tr>
|
|
1184
1220
|
<td style="padding:15px">deleteHealthbotIngestSflow(callback)</td>
|
|
1185
|
-
<td style="padding:15px">
|
|
1221
|
+
<td style="padding:15px">delete_healthbot_ingest_sflow</td>
|
|
1186
1222
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/?{query}</td>
|
|
1187
1223
|
<td style="padding:15px">Yes</td>
|
|
1188
1224
|
</tr>
|
|
1189
1225
|
<tr>
|
|
1190
1226
|
<td style="padding:15px">retrieveHealthbotIngestSflow(working, callback)</td>
|
|
1191
|
-
<td style="padding:15px">
|
|
1227
|
+
<td style="padding:15px">retrieve_healthbot_ingest_sflow</td>
|
|
1192
1228
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/?{query}</td>
|
|
1193
1229
|
<td style="padding:15px">Yes</td>
|
|
1194
1230
|
</tr>
|
|
1195
1231
|
<tr>
|
|
1196
1232
|
<td style="padding:15px">createHealthbotIngestSflow(body, callback)</td>
|
|
1197
|
-
<td style="padding:15px">
|
|
1233
|
+
<td style="padding:15px">create_healthbot_ingest_sflow</td>
|
|
1198
1234
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/?{query}</td>
|
|
1199
1235
|
<td style="padding:15px">Yes</td>
|
|
1200
1236
|
</tr>
|
|
1201
1237
|
<tr>
|
|
1202
1238
|
<td style="padding:15px">updateHealthbotIngestSflow(body, callback)</td>
|
|
1203
|
-
<td style="padding:15px">
|
|
1239
|
+
<td style="padding:15px">update_healthbot_ingest_sflow</td>
|
|
1204
1240
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/?{query}</td>
|
|
1205
1241
|
<td style="padding:15px">Yes</td>
|
|
1206
1242
|
</tr>
|
|
1207
1243
|
<tr>
|
|
1208
1244
|
<td style="padding:15px">deleteHealthbotIngestSflowCounterRecordById(recordName, callback)</td>
|
|
1209
|
-
<td style="padding:15px">
|
|
1245
|
+
<td style="padding:15px">delete_healthbot_ingest_sflow_counter_record_by_id</td>
|
|
1210
1246
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/counter-record/{pathv1}/?{query}</td>
|
|
1211
1247
|
<td style="padding:15px">Yes</td>
|
|
1212
1248
|
</tr>
|
|
1213
1249
|
<tr>
|
|
1214
1250
|
<td style="padding:15px">retrieveHealthbotIngestSflowCounterRecordById(recordName, working, callback)</td>
|
|
1215
|
-
<td style="padding:15px">
|
|
1251
|
+
<td style="padding:15px">retrieve_healthbot_ingest_sflow_counter_record_by_id</td>
|
|
1216
1252
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/counter-record/{pathv1}/?{query}</td>
|
|
1217
1253
|
<td style="padding:15px">Yes</td>
|
|
1218
1254
|
</tr>
|
|
1219
1255
|
<tr>
|
|
1220
1256
|
<td style="padding:15px">createHealthbotIngestSflowCounterRecordById(recordName, body, callback)</td>
|
|
1221
|
-
<td style="padding:15px">
|
|
1257
|
+
<td style="padding:15px">create_healthbot_ingest_sflow_counter_record_by_id</td>
|
|
1222
1258
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/counter-record/{pathv1}/?{query}</td>
|
|
1223
1259
|
<td style="padding:15px">Yes</td>
|
|
1224
1260
|
</tr>
|
|
1225
1261
|
<tr>
|
|
1226
1262
|
<td style="padding:15px">updateHealthbotIngestSflowCounterRecordById(recordName, body, callback)</td>
|
|
1227
|
-
<td style="padding:15px">
|
|
1263
|
+
<td style="padding:15px">update_healthbot_ingest_sflow_counter_record_by_id</td>
|
|
1228
1264
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/counter-record/{pathv1}/?{query}</td>
|
|
1229
1265
|
<td style="padding:15px">Yes</td>
|
|
1230
1266
|
</tr>
|
|
1231
1267
|
<tr>
|
|
1232
1268
|
<td style="padding:15px">deleteHealthbotIngestSflowFlowRecordById(recordName, callback)</td>
|
|
1233
|
-
<td style="padding:15px">
|
|
1269
|
+
<td style="padding:15px">delete_healthbot_ingest_sflow_flow_record_by_id</td>
|
|
1234
1270
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/flow-record/{pathv1}/?{query}</td>
|
|
1235
1271
|
<td style="padding:15px">Yes</td>
|
|
1236
1272
|
</tr>
|
|
1237
1273
|
<tr>
|
|
1238
1274
|
<td style="padding:15px">retrieveHealthbotIngestSflowFlowRecordById(recordName, working, callback)</td>
|
|
1239
|
-
<td style="padding:15px">
|
|
1275
|
+
<td style="padding:15px">retrieve_healthbot_ingest_sflow_flow_record_by_id</td>
|
|
1240
1276
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/flow-record/{pathv1}/?{query}</td>
|
|
1241
1277
|
<td style="padding:15px">Yes</td>
|
|
1242
1278
|
</tr>
|
|
1243
1279
|
<tr>
|
|
1244
1280
|
<td style="padding:15px">createHealthbotIngestSflowFlowRecordById(recordName, body, callback)</td>
|
|
1245
|
-
<td style="padding:15px">
|
|
1281
|
+
<td style="padding:15px">create_healthbot_ingest_sflow_flow_record_by_id</td>
|
|
1246
1282
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/flow-record/{pathv1}/?{query}</td>
|
|
1247
1283
|
<td style="padding:15px">Yes</td>
|
|
1248
1284
|
</tr>
|
|
1249
1285
|
<tr>
|
|
1250
1286
|
<td style="padding:15px">updateHealthbotIngestSflowFlowRecordById(recordName, body, callback)</td>
|
|
1251
|
-
<td style="padding:15px">
|
|
1287
|
+
<td style="padding:15px">update_healthbot_ingest_sflow_flow_record_by_id</td>
|
|
1252
1288
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/flow-record/{pathv1}/?{query}</td>
|
|
1253
1289
|
<td style="padding:15px">Yes</td>
|
|
1254
1290
|
</tr>
|
|
1255
1291
|
<tr>
|
|
1256
1292
|
<td style="padding:15px">deleteHealthbotIngestSflowSampleById(sampleName, callback)</td>
|
|
1257
|
-
<td style="padding:15px">
|
|
1293
|
+
<td style="padding:15px">delete_healthbot_ingest_sflow_sample_by_id</td>
|
|
1258
1294
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/sample/{pathv1}/?{query}</td>
|
|
1259
1295
|
<td style="padding:15px">Yes</td>
|
|
1260
1296
|
</tr>
|
|
1261
1297
|
<tr>
|
|
1262
1298
|
<td style="padding:15px">retrieveHealthbotIngestSflowSampleById(sampleName, working, callback)</td>
|
|
1263
|
-
<td style="padding:15px">
|
|
1299
|
+
<td style="padding:15px">retrieve_healthbot_ingest_sflow_sample_by_id</td>
|
|
1264
1300
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/sample/{pathv1}/?{query}</td>
|
|
1265
1301
|
<td style="padding:15px">Yes</td>
|
|
1266
1302
|
</tr>
|
|
1267
1303
|
<tr>
|
|
1268
1304
|
<td style="padding:15px">createHealthbotIngestSflowSampleById(sampleName, body, callback)</td>
|
|
1269
|
-
<td style="padding:15px">
|
|
1305
|
+
<td style="padding:15px">create_healthbot_ingest_sflow_sample_by_id</td>
|
|
1270
1306
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/sample/{pathv1}/?{query}</td>
|
|
1271
1307
|
<td style="padding:15px">Yes</td>
|
|
1272
1308
|
</tr>
|
|
1273
1309
|
<tr>
|
|
1274
1310
|
<td style="padding:15px">updateHealthbotIngestSflowSampleById(sampleName, body, callback)</td>
|
|
1275
|
-
<td style="padding:15px">
|
|
1311
|
+
<td style="padding:15px">update_healthbot_ingest_sflow_sample_by_id</td>
|
|
1276
1312
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/sample/{pathv1}/?{query}</td>
|
|
1277
1313
|
<td style="padding:15px">Yes</td>
|
|
1278
1314
|
</tr>
|
|
1279
1315
|
<tr>
|
|
1280
1316
|
<td style="padding:15px">deleteHealthbotIngestSflowProtocolById(protocolName, callback)</td>
|
|
1281
|
-
<td style="padding:15px">
|
|
1317
|
+
<td style="padding:15px">delete_healthbot_ingest_sflow_protocol_by_id</td>
|
|
1282
1318
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/protocol/{pathv1}/?{query}</td>
|
|
1283
1319
|
<td style="padding:15px">Yes</td>
|
|
1284
1320
|
</tr>
|
|
1285
1321
|
<tr>
|
|
1286
1322
|
<td style="padding:15px">retrieveHealthbotIngestSflowProtocolById(protocolName, working, callback)</td>
|
|
1287
|
-
<td style="padding:15px">
|
|
1323
|
+
<td style="padding:15px">retrieve_healthbot_ingest_sflow_protocol_by_id</td>
|
|
1288
1324
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/protocol/{pathv1}/?{query}</td>
|
|
1289
1325
|
<td style="padding:15px">Yes</td>
|
|
1290
1326
|
</tr>
|
|
1291
1327
|
<tr>
|
|
1292
1328
|
<td style="padding:15px">createHealthbotIngestSflowProtocolById(protocolName, body, callback)</td>
|
|
1293
|
-
<td style="padding:15px">
|
|
1329
|
+
<td style="padding:15px">create_healthbot_ingest_sflow_protocol_by_id</td>
|
|
1294
1330
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/protocol/{pathv1}/?{query}</td>
|
|
1295
1331
|
<td style="padding:15px">Yes</td>
|
|
1296
1332
|
</tr>
|
|
1297
1333
|
<tr>
|
|
1298
1334
|
<td style="padding:15px">updateHealthbotIngestSflowProtocolById(protocolName, body, callback)</td>
|
|
1299
|
-
<td style="padding:15px">
|
|
1335
|
+
<td style="padding:15px">update_healthbot_ingest_sflow_protocol_by_id</td>
|
|
1300
1336
|
<td style="padding:15px">{base_path}/{version}/config/ingest/sflow/protocol/{pathv1}/?{query}</td>
|
|
1301
1337
|
<td style="padding:15px">Yes</td>
|
|
1302
1338
|
</tr>
|
|
1303
1339
|
<tr>
|
|
1304
1340
|
<td style="padding:15px">retrieveHealthbotIngestFrequencyProfile(working, callback)</td>
|
|
1305
|
-
<td style="padding:15px">
|
|
1341
|
+
<td style="padding:15px">retrieve_healthbot_ingest_frequency_profile</td>
|
|
1306
1342
|
<td style="padding:15px">{base_path}/{version}/config/ingest/frequency-profiles/?{query}</td>
|
|
1307
1343
|
<td style="padding:15px">Yes</td>
|
|
1308
1344
|
</tr>
|
|
1309
1345
|
<tr>
|
|
1310
1346
|
<td style="padding:15px">deleteHealthbotIngestFrequencyProfileById(name, callback)</td>
|
|
1311
|
-
<td style="padding:15px">
|
|
1347
|
+
<td style="padding:15px">delete_healthbot_ingest_frequency_profile__by_id</td>
|
|
1312
1348
|
<td style="padding:15px">{base_path}/{version}/config/ingest/frequency-profile/{pathv1}/?{query}</td>
|
|
1313
1349
|
<td style="padding:15px">Yes</td>
|
|
1314
1350
|
</tr>
|
|
1315
1351
|
<tr>
|
|
1316
1352
|
<td style="padding:15px">retrieveHealthbotIngestFrequencyProfileById(name, working, callback)</td>
|
|
1317
|
-
<td style="padding:15px">
|
|
1353
|
+
<td style="padding:15px">retrieve_healthbot_ingest_frequency_profile_by_id</td>
|
|
1318
1354
|
<td style="padding:15px">{base_path}/{version}/config/ingest/frequency-profile/{pathv1}/?{query}</td>
|
|
1319
1355
|
<td style="padding:15px">Yes</td>
|
|
1320
1356
|
</tr>
|
|
1321
1357
|
<tr>
|
|
1322
1358
|
<td style="padding:15px">createHealthbotIngestFrequencyProfileById(name, body, callback)</td>
|
|
1323
|
-
<td style="padding:15px">
|
|
1359
|
+
<td style="padding:15px">create_healthbot_ingest_frequency_profile_by_id</td>
|
|
1324
1360
|
<td style="padding:15px">{base_path}/{version}/config/ingest/frequency-profile/{pathv1}/?{query}</td>
|
|
1325
1361
|
<td style="padding:15px">Yes</td>
|
|
1326
1362
|
</tr>
|
|
1327
1363
|
<tr>
|
|
1328
1364
|
<td style="padding:15px">updateHealthbotIngestFrequencyProfileById(name, body, callback)</td>
|
|
1329
|
-
<td style="padding:15px">
|
|
1365
|
+
<td style="padding:15px">update_healthbot_ingest_frequency_profile_by_id</td>
|
|
1330
1366
|
<td style="padding:15px">{base_path}/{version}/config/ingest/frequency-profile/{pathv1}/?{query}</td>
|
|
1331
1367
|
<td style="padding:15px">Yes</td>
|
|
1332
1368
|
</tr>
|
|
1333
1369
|
<tr>
|
|
1334
1370
|
<td style="padding:15px">deleteIcebergIngestNativeGpb(callback)</td>
|
|
1335
|
-
<td style="padding:15px">
|
|
1371
|
+
<td style="padding:15px">delete_iceberg_ingest_native_gpb</td>
|
|
1336
1372
|
<td style="padding:15px">{base_path}/{version}/config/ingest/native-gpb/?{query}</td>
|
|
1337
1373
|
<td style="padding:15px">Yes</td>
|
|
1338
1374
|
</tr>
|
|
1339
1375
|
<tr>
|
|
1340
1376
|
<td style="padding:15px">retrieveIcebergIngestNativeGpb(working, callback)</td>
|
|
1341
|
-
<td style="padding:15px">
|
|
1377
|
+
<td style="padding:15px">retrieve_iceberg_ingest_native_gpb</td>
|
|
1342
1378
|
<td style="padding:15px">{base_path}/{version}/config/ingest/native-gpb/?{query}</td>
|
|
1343
1379
|
<td style="padding:15px">Yes</td>
|
|
1344
1380
|
</tr>
|
|
1345
1381
|
<tr>
|
|
1346
1382
|
<td style="padding:15px">createIcebergIngestNativeGpb(body, callback)</td>
|
|
1347
|
-
<td style="padding:15px">
|
|
1383
|
+
<td style="padding:15px">create_iceberg_ingest_native_gpb</td>
|
|
1348
1384
|
<td style="padding:15px">{base_path}/{version}/config/ingest/native-gpb/?{query}</td>
|
|
1349
1385
|
<td style="padding:15px">Yes</td>
|
|
1350
1386
|
</tr>
|
|
1351
1387
|
<tr>
|
|
1352
1388
|
<td style="padding:15px">updateIcebergIngestNativeGpb(body, callback)</td>
|
|
1353
|
-
<td style="padding:15px">
|
|
1389
|
+
<td style="padding:15px">update_iceberg_ingest_native_gpb</td>
|
|
1354
1390
|
<td style="padding:15px">{base_path}/{version}/config/ingest/native-gpb/?{query}</td>
|
|
1355
1391
|
<td style="padding:15px">Yes</td>
|
|
1356
1392
|
</tr>
|
|
1357
1393
|
<tr>
|
|
1358
1394
|
<td style="padding:15px">deleteHealthbotIngestOutboundSsh(callback)</td>
|
|
1359
|
-
<td style="padding:15px">
|
|
1395
|
+
<td style="padding:15px">delete_healthbot_ingest_outbound_ssh</td>
|
|
1360
1396
|
<td style="padding:15px">{base_path}/{version}/config/ingest/outbound-ssh/?{query}</td>
|
|
1361
1397
|
<td style="padding:15px">Yes</td>
|
|
1362
1398
|
</tr>
|
|
1363
1399
|
<tr>
|
|
1364
1400
|
<td style="padding:15px">retrieveHealthbotIngestOutboundSsh(working, callback)</td>
|
|
1365
|
-
<td style="padding:15px">
|
|
1401
|
+
<td style="padding:15px">retrieve_healthbot_ingest_outbound_ssh</td>
|
|
1366
1402
|
<td style="padding:15px">{base_path}/{version}/config/ingest/outbound-ssh/?{query}</td>
|
|
1367
1403
|
<td style="padding:15px">Yes</td>
|
|
1368
1404
|
</tr>
|
|
1369
1405
|
<tr>
|
|
1370
1406
|
<td style="padding:15px">createHealthbotIngestOutboundSsh(body, callback)</td>
|
|
1371
|
-
<td style="padding:15px">
|
|
1407
|
+
<td style="padding:15px">create_healthbot_ingest_outbound_ssh</td>
|
|
1372
1408
|
<td style="padding:15px">{base_path}/{version}/config/ingest/outbound-ssh/?{query}</td>
|
|
1373
1409
|
<td style="padding:15px">Yes</td>
|
|
1374
1410
|
</tr>
|
|
1375
1411
|
<tr>
|
|
1376
1412
|
<td style="padding:15px">updateHealthbotIngestOutboundSsh(body, callback)</td>
|
|
1377
|
-
<td style="padding:15px">
|
|
1413
|
+
<td style="padding:15px">update_healthbot_ingest_outbound_ssh</td>
|
|
1378
1414
|
<td style="padding:15px">{base_path}/{version}/config/ingest/outbound-ssh/?{query}</td>
|
|
1379
1415
|
<td style="padding:15px">Yes</td>
|
|
1380
1416
|
</tr>
|
|
1381
1417
|
<tr>
|
|
1382
1418
|
<td style="padding:15px">deleteHealthbotIngestSnmpNotification(callback)</td>
|
|
1383
|
-
<td style="padding:15px">
|
|
1419
|
+
<td style="padding:15px">delete_healthbot_ingest_snmp_notification</td>
|
|
1384
1420
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/?{query}</td>
|
|
1385
1421
|
<td style="padding:15px">Yes</td>
|
|
1386
1422
|
</tr>
|
|
1387
1423
|
<tr>
|
|
1388
1424
|
<td style="padding:15px">retrieveHealthbotIngestSnmpNotification(working, callback)</td>
|
|
1389
|
-
<td style="padding:15px">
|
|
1425
|
+
<td style="padding:15px">retrieve_healthbot_ingest_snmp_notification</td>
|
|
1390
1426
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/?{query}</td>
|
|
1391
1427
|
<td style="padding:15px">Yes</td>
|
|
1392
1428
|
</tr>
|
|
1393
1429
|
<tr>
|
|
1394
1430
|
<td style="padding:15px">createHealthbotIngestSnmpNotification(body, callback)</td>
|
|
1395
|
-
<td style="padding:15px">
|
|
1431
|
+
<td style="padding:15px">create_healthbot_ingest_snmp_notification</td>
|
|
1396
1432
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/?{query}</td>
|
|
1397
1433
|
<td style="padding:15px">Yes</td>
|
|
1398
1434
|
</tr>
|
|
1399
1435
|
<tr>
|
|
1400
1436
|
<td style="padding:15px">updateHealthbotIngestSnmpNotification(body, callback)</td>
|
|
1401
|
-
<td style="padding:15px">
|
|
1437
|
+
<td style="padding:15px">update_healthbot_ingest_snmp_notification</td>
|
|
1402
1438
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/?{query}</td>
|
|
1403
1439
|
<td style="padding:15px">Yes</td>
|
|
1404
1440
|
</tr>
|
|
1405
1441
|
<tr>
|
|
1406
1442
|
<td style="padding:15px">retrieveHealthbotIngestSnmpNotificationV3UsmUsernames(working, callback)</td>
|
|
1407
|
-
<td style="padding:15px">
|
|
1443
|
+
<td style="padding:15px">retrieve_healthbot_ingest_snmp_notification_v3_usm_usernames</td>
|
|
1408
1444
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/v3/usm/user/?{query}</td>
|
|
1409
1445
|
<td style="padding:15px">Yes</td>
|
|
1410
1446
|
</tr>
|
|
1411
1447
|
<tr>
|
|
1412
1448
|
<td style="padding:15px">retrieveHealthbotIngestSnmpNotificationV3UsmUsers(working, callback)</td>
|
|
1413
|
-
<td style="padding:15px">
|
|
1449
|
+
<td style="padding:15px">retrieve_healthbot_ingest_snmp_notification_v3_usm_users</td>
|
|
1414
1450
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/v3/usm/users/?{query}</td>
|
|
1415
1451
|
<td style="padding:15px">Yes</td>
|
|
1416
1452
|
</tr>
|
|
1417
1453
|
<tr>
|
|
1418
1454
|
<td style="padding:15px">deleteHealthbotIngestSnmpNotificationV3UsmUserById(name, callback)</td>
|
|
1419
|
-
<td style="padding:15px">
|
|
1455
|
+
<td style="padding:15px">delete_healthbot_ingest_snmp_notification_v3_usm_user_by_id</td>
|
|
1420
1456
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/v3/usm/user/{pathv1}/?{query}</td>
|
|
1421
1457
|
<td style="padding:15px">Yes</td>
|
|
1422
1458
|
</tr>
|
|
1423
1459
|
<tr>
|
|
1424
1460
|
<td style="padding:15px">retrieveHealthbotIngestSnmpNotificationV3UsmUserById(name, working, callback)</td>
|
|
1425
|
-
<td style="padding:15px">
|
|
1461
|
+
<td style="padding:15px">retrieve_healthbot_ingest_snmp_notification_v3_usm_user_by_id</td>
|
|
1426
1462
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/v3/usm/user/{pathv1}/?{query}</td>
|
|
1427
1463
|
<td style="padding:15px">Yes</td>
|
|
1428
1464
|
</tr>
|
|
1429
1465
|
<tr>
|
|
1430
1466
|
<td style="padding:15px">createHealthbotIngestSnmpNotificationV3UsmUserById(name, body, callback)</td>
|
|
1431
|
-
<td style="padding:15px">
|
|
1467
|
+
<td style="padding:15px">create_healthbot_ingest_snmp_notification_v3_usm_user_by_id</td>
|
|
1432
1468
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/v3/usm/user/{pathv1}/?{query}</td>
|
|
1433
1469
|
<td style="padding:15px">Yes</td>
|
|
1434
1470
|
</tr>
|
|
1435
1471
|
<tr>
|
|
1436
1472
|
<td style="padding:15px">updateHealthbotIngestSnmpNotificationV3UsmUserById(name, body, callback)</td>
|
|
1437
|
-
<td style="padding:15px">
|
|
1473
|
+
<td style="padding:15px">update_healthbot_ingest_snmp_notification_v3_usm_user_by_id</td>
|
|
1438
1474
|
<td style="padding:15px">{base_path}/{version}/config/ingest/snmp-notification/v3/usm/user/{pathv1}/?{query}</td>
|
|
1439
1475
|
<td style="padding:15px">Yes</td>
|
|
1440
1476
|
</tr>
|
|
1441
1477
|
<tr>
|
|
1442
1478
|
<td style="padding:15px">deleteIcebergIngestSyslog(callback)</td>
|
|
1443
|
-
<td style="padding:15px">
|
|
1479
|
+
<td style="padding:15px">delete_iceberg_ingest_syslog</td>
|
|
1444
1480
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/?{query}</td>
|
|
1445
1481
|
<td style="padding:15px">Yes</td>
|
|
1446
1482
|
</tr>
|
|
1447
1483
|
<tr>
|
|
1448
1484
|
<td style="padding:15px">retrieveIcebergIngestSyslog(working, callback)</td>
|
|
1449
|
-
<td style="padding:15px">
|
|
1485
|
+
<td style="padding:15px">retrieve_iceberg_ingest_syslog</td>
|
|
1450
1486
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/?{query}</td>
|
|
1451
1487
|
<td style="padding:15px">Yes</td>
|
|
1452
1488
|
</tr>
|
|
1453
1489
|
<tr>
|
|
1454
1490
|
<td style="padding:15px">createIcebergIngestSyslog(body, callback)</td>
|
|
1455
|
-
<td style="padding:15px">
|
|
1491
|
+
<td style="padding:15px">create_iceberg_ingest_syslog</td>
|
|
1456
1492
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/?{query}</td>
|
|
1457
1493
|
<td style="padding:15px">Yes</td>
|
|
1458
1494
|
</tr>
|
|
1459
1495
|
<tr>
|
|
1460
1496
|
<td style="padding:15px">updateIcebergIngestSyslog(body, callback)</td>
|
|
1461
|
-
<td style="padding:15px">
|
|
1497
|
+
<td style="padding:15px">update_iceberg_ingest_syslog</td>
|
|
1462
1498
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/?{query}</td>
|
|
1463
1499
|
<td style="padding:15px">Yes</td>
|
|
1464
1500
|
</tr>
|
|
1465
1501
|
<tr>
|
|
1466
1502
|
<td style="padding:15px">retrieveIcebergIngestSyslogPatternSetIds(working, callback)</td>
|
|
1467
|
-
<td style="padding:15px">
|
|
1503
|
+
<td style="padding:15px">retrieve_iceberg_ingest_syslog_pattern_set_ids</td>
|
|
1468
1504
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern-set/?{query}</td>
|
|
1469
1505
|
<td style="padding:15px">Yes</td>
|
|
1470
1506
|
</tr>
|
|
1471
1507
|
<tr>
|
|
1472
1508
|
<td style="padding:15px">retrieveIcebergIngestSyslogPatternSets(working, callback)</td>
|
|
1473
|
-
<td style="padding:15px">
|
|
1509
|
+
<td style="padding:15px">retrieve_iceberg_ingest_syslog_pattern_sets</td>
|
|
1474
1510
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern-sets/?{query}</td>
|
|
1475
1511
|
<td style="padding:15px">Yes</td>
|
|
1476
1512
|
</tr>
|
|
1477
1513
|
<tr>
|
|
1478
1514
|
<td style="padding:15px">deleteIcebergIngestSyslogPatternSetById(name, callback)</td>
|
|
1479
|
-
<td style="padding:15px">
|
|
1515
|
+
<td style="padding:15px">delete_iceberg_ingest_syslog_pattern_set_by_id</td>
|
|
1480
1516
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1481
1517
|
<td style="padding:15px">Yes</td>
|
|
1482
1518
|
</tr>
|
|
1483
1519
|
<tr>
|
|
1484
1520
|
<td style="padding:15px">retrieveIcebergIngestSyslogPatternSetById(name, working, callback)</td>
|
|
1485
|
-
<td style="padding:15px">
|
|
1521
|
+
<td style="padding:15px">retrieve_iceberg_ingest_syslog_pattern_set_by_id</td>
|
|
1486
1522
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1487
1523
|
<td style="padding:15px">Yes</td>
|
|
1488
1524
|
</tr>
|
|
1489
1525
|
<tr>
|
|
1490
1526
|
<td style="padding:15px">createIcebergIngestSyslogPatternSetById(name, body, callback)</td>
|
|
1491
|
-
<td style="padding:15px">
|
|
1527
|
+
<td style="padding:15px">create_iceberg_ingest_syslog_pattern_set_by_id</td>
|
|
1492
1528
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1493
1529
|
<td style="padding:15px">Yes</td>
|
|
1494
1530
|
</tr>
|
|
1495
1531
|
<tr>
|
|
1496
1532
|
<td style="padding:15px">updateIcebergIngestSyslogPatternSetById(name, body, callback)</td>
|
|
1497
|
-
<td style="padding:15px">
|
|
1533
|
+
<td style="padding:15px">update_iceberg_ingest_syslog_pattern_set_by_id</td>
|
|
1498
1534
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1499
1535
|
<td style="padding:15px">Yes</td>
|
|
1500
1536
|
</tr>
|
|
1501
1537
|
<tr>
|
|
1502
1538
|
<td style="padding:15px">retrieveIcebergIngestSyslogPatternIds(working, callback)</td>
|
|
1503
|
-
<td style="padding:15px">
|
|
1539
|
+
<td style="padding:15px">retrieve_iceberg_ingest_syslog_pattern_ids</td>
|
|
1504
1540
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern/?{query}</td>
|
|
1505
1541
|
<td style="padding:15px">Yes</td>
|
|
1506
1542
|
</tr>
|
|
1507
1543
|
<tr>
|
|
1508
1544
|
<td style="padding:15px">retrieveIcebergIngestSyslogPatterns(working, callback)</td>
|
|
1509
|
-
<td style="padding:15px">
|
|
1545
|
+
<td style="padding:15px">retrieve_iceberg_ingest_syslog_patterns</td>
|
|
1510
1546
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/patterns/?{query}</td>
|
|
1511
1547
|
<td style="padding:15px">Yes</td>
|
|
1512
1548
|
</tr>
|
|
1513
1549
|
<tr>
|
|
1514
1550
|
<td style="padding:15px">deleteIcebergIngestSyslogPatternById(name, callback)</td>
|
|
1515
|
-
<td style="padding:15px">
|
|
1551
|
+
<td style="padding:15px">delete_iceberg_ingest_syslog_pattern_by_id</td>
|
|
1516
1552
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern/{pathv1}/?{query}</td>
|
|
1517
1553
|
<td style="padding:15px">Yes</td>
|
|
1518
1554
|
</tr>
|
|
1519
1555
|
<tr>
|
|
1520
1556
|
<td style="padding:15px">retrieveIcebergIngestSyslogPatternById(name, working, callback)</td>
|
|
1521
|
-
<td style="padding:15px">
|
|
1557
|
+
<td style="padding:15px">retrieve_iceberg_ingest_syslog_pattern_by_id</td>
|
|
1522
1558
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern/{pathv1}/?{query}</td>
|
|
1523
1559
|
<td style="padding:15px">Yes</td>
|
|
1524
1560
|
</tr>
|
|
1525
1561
|
<tr>
|
|
1526
1562
|
<td style="padding:15px">createIcebergIngestSyslogPatternById(name, body, callback)</td>
|
|
1527
|
-
<td style="padding:15px">
|
|
1563
|
+
<td style="padding:15px">create_iceberg_ingest_syslog_pattern_by_id</td>
|
|
1528
1564
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern/{pathv1}/?{query}</td>
|
|
1529
1565
|
<td style="padding:15px">Yes</td>
|
|
1530
1566
|
</tr>
|
|
1531
1567
|
<tr>
|
|
1532
1568
|
<td style="padding:15px">updateIcebergIngestSyslogPatternById(name, body, callback)</td>
|
|
1533
|
-
<td style="padding:15px">
|
|
1569
|
+
<td style="padding:15px">update_iceberg_ingest_syslog_pattern_by_id</td>
|
|
1534
1570
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/pattern/{pathv1}/?{query}</td>
|
|
1535
1571
|
<td style="padding:15px">Yes</td>
|
|
1536
1572
|
</tr>
|
|
1537
1573
|
<tr>
|
|
1538
1574
|
<td style="padding:15px">retrieveHealthbotIngestSyslogHeaderPatternIds(working, callback)</td>
|
|
1539
|
-
<td style="padding:15px">
|
|
1575
|
+
<td style="padding:15px">retrieve_healthbot_ingest_syslog_header_pattern_ids</td>
|
|
1540
1576
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/header-pattern/?{query}</td>
|
|
1541
1577
|
<td style="padding:15px">Yes</td>
|
|
1542
1578
|
</tr>
|
|
1543
1579
|
<tr>
|
|
1544
1580
|
<td style="padding:15px">retrieveHealthbotIngestSyslogHeaderPatterns(working, callback)</td>
|
|
1545
|
-
<td style="padding:15px">
|
|
1581
|
+
<td style="padding:15px">retrieve_healthbot_ingest_syslog_header_patterns</td>
|
|
1546
1582
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/header-patterns/?{query}</td>
|
|
1547
1583
|
<td style="padding:15px">Yes</td>
|
|
1548
1584
|
</tr>
|
|
1549
1585
|
<tr>
|
|
1550
1586
|
<td style="padding:15px">deleteHealthbotIngestSyslogHeaderPatternById(name, callback)</td>
|
|
1551
|
-
<td style="padding:15px">
|
|
1587
|
+
<td style="padding:15px">delete_healthbot_ingest_syslog_header_pattern_by_id</td>
|
|
1552
1588
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/header-pattern/{pathv1}/?{query}</td>
|
|
1553
1589
|
<td style="padding:15px">Yes</td>
|
|
1554
1590
|
</tr>
|
|
1555
1591
|
<tr>
|
|
1556
1592
|
<td style="padding:15px">retrieveHealthbotIngestSyslogHeaderPatternById(name, working, callback)</td>
|
|
1557
|
-
<td style="padding:15px">
|
|
1593
|
+
<td style="padding:15px">retrieve_healthbot_ingest_syslog_header_pattern_by_id</td>
|
|
1558
1594
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/header-pattern/{pathv1}/?{query}</td>
|
|
1559
1595
|
<td style="padding:15px">Yes</td>
|
|
1560
1596
|
</tr>
|
|
1561
1597
|
<tr>
|
|
1562
1598
|
<td style="padding:15px">createHealthbotIngestSyslogHeaderPatternById(name, body, callback)</td>
|
|
1563
|
-
<td style="padding:15px">
|
|
1599
|
+
<td style="padding:15px">create_healthbot_ingest_syslog_header_pattern_by_id</td>
|
|
1564
1600
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/header-pattern/{pathv1}/?{query}</td>
|
|
1565
1601
|
<td style="padding:15px">Yes</td>
|
|
1566
1602
|
</tr>
|
|
1567
1603
|
<tr>
|
|
1568
1604
|
<td style="padding:15px">updateHealthbotIngestSyslogHeaderPatternById(name, body, callback)</td>
|
|
1569
|
-
<td style="padding:15px">
|
|
1605
|
+
<td style="padding:15px">update_healthbot_ingest_syslog_header_pattern_by_id</td>
|
|
1570
1606
|
<td style="padding:15px">{base_path}/{version}/config/ingest/syslog/header-pattern/{pathv1}/?{query}</td>
|
|
1571
1607
|
<td style="padding:15px">Yes</td>
|
|
1572
1608
|
</tr>
|
|
1573
1609
|
<tr>
|
|
1574
1610
|
<td style="padding:15px">retrieveHealthbotIngestByoiCustomPlugins(working, callback)</td>
|
|
1575
|
-
<td style="padding:15px">
|
|
1611
|
+
<td style="padding:15px">retrieve_healthbot_ingest_byoi_custom_plugins</td>
|
|
1576
1612
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/custom-plugins/?{query}</td>
|
|
1577
1613
|
<td style="padding:15px">Yes</td>
|
|
1578
1614
|
</tr>
|
|
1579
1615
|
<tr>
|
|
1580
1616
|
<td style="padding:15px">deleteHealthbotIngestByoiCustomPluginById(name, callback)</td>
|
|
1581
|
-
<td style="padding:15px">
|
|
1617
|
+
<td style="padding:15px">delete_healthbot_ingest_byoi_custom_plugin_by_id</td>
|
|
1582
1618
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1583
1619
|
<td style="padding:15px">Yes</td>
|
|
1584
1620
|
</tr>
|
|
1585
1621
|
<tr>
|
|
1586
1622
|
<td style="padding:15px">retrieveHealthbotIngestByoiCustomPluginById(name, working, callback)</td>
|
|
1587
|
-
<td style="padding:15px">
|
|
1623
|
+
<td style="padding:15px">retrieve_healthbot_ingest_byoi_custom_plugin_by_id</td>
|
|
1588
1624
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1589
1625
|
<td style="padding:15px">Yes</td>
|
|
1590
1626
|
</tr>
|
|
1591
1627
|
<tr>
|
|
1592
1628
|
<td style="padding:15px">createHealthbotIngestByoiCustomPluginById(name, body, callback)</td>
|
|
1593
|
-
<td style="padding:15px">
|
|
1629
|
+
<td style="padding:15px">create_healthbot_ingest_byoi_custom_plugin_by_id</td>
|
|
1594
1630
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1595
1631
|
<td style="padding:15px">Yes</td>
|
|
1596
1632
|
</tr>
|
|
1597
1633
|
<tr>
|
|
1598
1634
|
<td style="padding:15px">updateHealthbotIngestByoiCustomPluginById(name, body, callback)</td>
|
|
1599
|
-
<td style="padding:15px">
|
|
1635
|
+
<td style="padding:15px">update_healthbot_ingest_byoi_custom_plugin_by_id</td>
|
|
1600
1636
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1601
1637
|
<td style="padding:15px">Yes</td>
|
|
1602
1638
|
</tr>
|
|
1603
1639
|
<tr>
|
|
1604
1640
|
<td style="padding:15px">retrieveHealthbotIngestByoiDefaultPluginTliveKafkas(working, callback)</td>
|
|
1605
|
-
<td style="padding:15px">
|
|
1641
|
+
<td style="padding:15px">retrieve_healthbot_ingest_byoi_default_plugin_tlive_kafkas</td>
|
|
1606
1642
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/default-plugin/tlive-kafka-ocs/?{query}</td>
|
|
1607
1643
|
<td style="padding:15px">Yes</td>
|
|
1608
1644
|
</tr>
|
|
1609
1645
|
<tr>
|
|
1610
1646
|
<td style="padding:15px">deleteHealthbotIngestByoiDefaultPluginTliveKafkaById(name, callback)</td>
|
|
1611
|
-
<td style="padding:15px">
|
|
1647
|
+
<td style="padding:15px">delete_healthbot_ingest_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1612
1648
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1613
1649
|
<td style="padding:15px">Yes</td>
|
|
1614
1650
|
</tr>
|
|
1615
1651
|
<tr>
|
|
1616
1652
|
<td style="padding:15px">retrieveHealthbotIngestByoiDefaultPluginTliveKafkaById(name, working, callback)</td>
|
|
1617
|
-
<td style="padding:15px">
|
|
1653
|
+
<td style="padding:15px">retrieve_healthbot_ingest_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1618
1654
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1619
1655
|
<td style="padding:15px">Yes</td>
|
|
1620
1656
|
</tr>
|
|
1621
1657
|
<tr>
|
|
1622
1658
|
<td style="padding:15px">createHealthbotIngestByoiDefaultPluginTliveKafkaById(name, body, callback)</td>
|
|
1623
|
-
<td style="padding:15px">
|
|
1659
|
+
<td style="padding:15px">create_healthbot_ingest_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1624
1660
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1625
1661
|
<td style="padding:15px">Yes</td>
|
|
1626
1662
|
</tr>
|
|
1627
1663
|
<tr>
|
|
1628
1664
|
<td style="padding:15px">updateHealthbotIngestByoiDefaultPluginTliveKafkaById(name, body, callback)</td>
|
|
1629
|
-
<td style="padding:15px">
|
|
1665
|
+
<td style="padding:15px">update_healthbot_ingest_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1630
1666
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1631
1667
|
<td style="padding:15px">Yes</td>
|
|
1632
1668
|
</tr>
|
|
1633
1669
|
<tr>
|
|
1634
1670
|
<td style="padding:15px">deleteHealthbotIngestByoiIngestMappingById(name, callback)</td>
|
|
1635
|
-
<td style="padding:15px">
|
|
1671
|
+
<td style="padding:15px">delete_healthbot_ingest_byoi_ingest_mapping_by_id</td>
|
|
1636
1672
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1637
1673
|
<td style="padding:15px">Yes</td>
|
|
1638
1674
|
</tr>
|
|
1639
1675
|
<tr>
|
|
1640
1676
|
<td style="padding:15px">retrieveHealthbotIngestByoiIngestMappingById(name, working, callback)</td>
|
|
1641
|
-
<td style="padding:15px">
|
|
1677
|
+
<td style="padding:15px">retrieve_healthbot_ingest_byoi_ingest_mapping_by_id</td>
|
|
1642
1678
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1643
1679
|
<td style="padding:15px">Yes</td>
|
|
1644
1680
|
</tr>
|
|
1645
1681
|
<tr>
|
|
1646
1682
|
<td style="padding:15px">createHealthbotIngestByoiIngestMappingById(name, body, callback)</td>
|
|
1647
|
-
<td style="padding:15px">
|
|
1683
|
+
<td style="padding:15px">create_healthbot_ingest_byoi_ingest_mapping_by_id</td>
|
|
1648
1684
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1649
1685
|
<td style="padding:15px">Yes</td>
|
|
1650
1686
|
</tr>
|
|
1651
1687
|
<tr>
|
|
1652
1688
|
<td style="padding:15px">updateHealthbotIngestByoiIngestMappingById(name, body, callback)</td>
|
|
1653
|
-
<td style="padding:15px">
|
|
1689
|
+
<td style="padding:15px">update_healthbot_ingest_byoi_ingest_mapping_by_id</td>
|
|
1654
1690
|
<td style="padding:15px">{base_path}/{version}/config/ingest/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1655
1691
|
<td style="padding:15px">Yes</td>
|
|
1656
1692
|
</tr>
|
|
1657
1693
|
<tr>
|
|
1658
1694
|
<td style="padding:15px">deleteIcebergIngestSettings(callback)</td>
|
|
1659
|
-
<td style="padding:15px">
|
|
1695
|
+
<td style="padding:15px">delete_iceberg_ingest_settings</td>
|
|
1660
1696
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/?{query}</td>
|
|
1661
1697
|
<td style="padding:15px">Yes</td>
|
|
1662
1698
|
</tr>
|
|
1663
1699
|
<tr>
|
|
1664
1700
|
<td style="padding:15px">retrieveIcebergIngestSettings(working, callback)</td>
|
|
1665
|
-
<td style="padding:15px">
|
|
1701
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings</td>
|
|
1666
1702
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/?{query}</td>
|
|
1667
1703
|
<td style="padding:15px">Yes</td>
|
|
1668
1704
|
</tr>
|
|
1669
1705
|
<tr>
|
|
1670
1706
|
<td style="padding:15px">createIcebergIngestSettings(body, callback)</td>
|
|
1671
|
-
<td style="padding:15px">
|
|
1707
|
+
<td style="padding:15px">create_iceberg_ingest_settings</td>
|
|
1672
1708
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/?{query}</td>
|
|
1673
1709
|
<td style="padding:15px">Yes</td>
|
|
1674
1710
|
</tr>
|
|
1675
1711
|
<tr>
|
|
1676
1712
|
<td style="padding:15px">updateIcebergIngestSettings(body, callback)</td>
|
|
1677
|
-
<td style="padding:15px">
|
|
1713
|
+
<td style="padding:15px">update_iceberg_ingest_settings</td>
|
|
1678
1714
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/?{query}</td>
|
|
1679
1715
|
<td style="padding:15px">Yes</td>
|
|
1680
1716
|
</tr>
|
|
1681
1717
|
<tr>
|
|
1682
1718
|
<td style="padding:15px">retrieveHealthbotIngestSettingsTaggingProfiles(working, callback)</td>
|
|
1683
|
-
<td style="padding:15px">
|
|
1719
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_tagging_profiles</td>
|
|
1684
1720
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profiles/?{query}</td>
|
|
1685
1721
|
<td style="padding:15px">Yes</td>
|
|
1686
1722
|
</tr>
|
|
1687
1723
|
<tr>
|
|
1688
1724
|
<td style="padding:15px">deleteHealthbotIngestSettingsTaggingProfiles(callback)</td>
|
|
1689
|
-
<td style="padding:15px">
|
|
1725
|
+
<td style="padding:15px">delete_healthbot_ingest_settings_tagging_profiles</td>
|
|
1690
1726
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profiles/?{query}</td>
|
|
1691
1727
|
<td style="padding:15px">Yes</td>
|
|
1692
1728
|
</tr>
|
|
1693
1729
|
<tr>
|
|
1694
1730
|
<td style="padding:15px">createHealthbotIngestSettingsTaggingProfiles(body, callback)</td>
|
|
1695
|
-
<td style="padding:15px">
|
|
1731
|
+
<td style="padding:15px">create_healthbot_ingest_settings_tagging_profiles</td>
|
|
1696
1732
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profiles/?{query}</td>
|
|
1697
1733
|
<td style="padding:15px">Yes</td>
|
|
1698
1734
|
</tr>
|
|
1699
1735
|
<tr>
|
|
1700
1736
|
<td style="padding:15px">updateHealthbotIngestSettingsTaggingProfiles(body, callback)</td>
|
|
1701
|
-
<td style="padding:15px">
|
|
1737
|
+
<td style="padding:15px">update_healthbot_ingest_settings_tagging_profiles</td>
|
|
1702
1738
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profiles/?{query}</td>
|
|
1703
1739
|
<td style="padding:15px">Yes</td>
|
|
1704
1740
|
</tr>
|
|
1705
1741
|
<tr>
|
|
1706
1742
|
<td style="padding:15px">deleteHealthbotIngestSettingsTaggingProfileById(name, callback)</td>
|
|
1707
|
-
<td style="padding:15px">
|
|
1743
|
+
<td style="padding:15px">delete_healthbot_ingest_settings_tagging_profile_by_id</td>
|
|
1708
1744
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1709
1745
|
<td style="padding:15px">Yes</td>
|
|
1710
1746
|
</tr>
|
|
1711
1747
|
<tr>
|
|
1712
1748
|
<td style="padding:15px">retrieveHealthbotIngestSettingsTaggingProfileById(name, working, callback)</td>
|
|
1713
|
-
<td style="padding:15px">
|
|
1749
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_tagging_profile_by_id</td>
|
|
1714
1750
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1715
1751
|
<td style="padding:15px">Yes</td>
|
|
1716
1752
|
</tr>
|
|
1717
1753
|
<tr>
|
|
1718
1754
|
<td style="padding:15px">createHealthbotIngestSettingsTaggingProfileById(name, body, callback)</td>
|
|
1719
|
-
<td style="padding:15px">
|
|
1755
|
+
<td style="padding:15px">create_healthbot_ingest_settings_tagging_profile_by_id</td>
|
|
1720
1756
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1721
1757
|
<td style="padding:15px">Yes</td>
|
|
1722
1758
|
</tr>
|
|
1723
1759
|
<tr>
|
|
1724
1760
|
<td style="padding:15px">updateHealthbotIngestSettingsTaggingProfileById(name, body, callback)</td>
|
|
1725
|
-
<td style="padding:15px">
|
|
1761
|
+
<td style="padding:15px">update_healthbot_ingest_settings_tagging_profile_by_id</td>
|
|
1726
1762
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/data-enrichment/tagging-profile/{pathv1}/?{query}</td>
|
|
1727
1763
|
<td style="padding:15px">Yes</td>
|
|
1728
1764
|
</tr>
|
|
1729
1765
|
<tr>
|
|
1730
1766
|
<td style="padding:15px">deleteIcebergIngestSettingsFlow(callback)</td>
|
|
1731
|
-
<td style="padding:15px">
|
|
1767
|
+
<td style="padding:15px">delete_iceberg_ingest_settings_flow</td>
|
|
1732
1768
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/?{query}</td>
|
|
1733
1769
|
<td style="padding:15px">Yes</td>
|
|
1734
1770
|
</tr>
|
|
1735
1771
|
<tr>
|
|
1736
1772
|
<td style="padding:15px">retrieveIcebergIngestSettingsFlow(working, callback)</td>
|
|
1737
|
-
<td style="padding:15px">
|
|
1773
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_flow</td>
|
|
1738
1774
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/?{query}</td>
|
|
1739
1775
|
<td style="padding:15px">Yes</td>
|
|
1740
1776
|
</tr>
|
|
1741
1777
|
<tr>
|
|
1742
1778
|
<td style="padding:15px">createIcebergIngestSettingsFlow(body, callback)</td>
|
|
1743
|
-
<td style="padding:15px">
|
|
1779
|
+
<td style="padding:15px">create_iceberg_ingest_settings_flow</td>
|
|
1744
1780
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/?{query}</td>
|
|
1745
1781
|
<td style="padding:15px">Yes</td>
|
|
1746
1782
|
</tr>
|
|
1747
1783
|
<tr>
|
|
1748
1784
|
<td style="padding:15px">updateIcebergIngestSettingsFlow(body, callback)</td>
|
|
1749
|
-
<td style="padding:15px">
|
|
1785
|
+
<td style="padding:15px">update_iceberg_ingest_settings_flow</td>
|
|
1750
1786
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/?{query}</td>
|
|
1751
1787
|
<td style="padding:15px">Yes</td>
|
|
1752
1788
|
</tr>
|
|
1753
1789
|
<tr>
|
|
1754
1790
|
<td style="padding:15px">retrieveIcebergIngestSettingsFlowTemplateIds(working, callback)</td>
|
|
1755
|
-
<td style="padding:15px">
|
|
1791
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_flow_template_ids</td>
|
|
1756
1792
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/template/?{query}</td>
|
|
1757
1793
|
<td style="padding:15px">Yes</td>
|
|
1758
1794
|
</tr>
|
|
1759
1795
|
<tr>
|
|
1760
1796
|
<td style="padding:15px">deleteIcebergIngestSettingsFlowTemplateById(name, callback)</td>
|
|
1761
|
-
<td style="padding:15px">
|
|
1797
|
+
<td style="padding:15px">delete_iceberg_ingest_settings_flow_template_by_id</td>
|
|
1762
1798
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/template/{pathv1}/?{query}</td>
|
|
1763
1799
|
<td style="padding:15px">Yes</td>
|
|
1764
1800
|
</tr>
|
|
1765
1801
|
<tr>
|
|
1766
1802
|
<td style="padding:15px">retrieveIcebergIngestSettingsFlowTemplateById(name, working, callback)</td>
|
|
1767
|
-
<td style="padding:15px">
|
|
1803
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_flow_template_by_id</td>
|
|
1768
1804
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/template/{pathv1}/?{query}</td>
|
|
1769
1805
|
<td style="padding:15px">Yes</td>
|
|
1770
1806
|
</tr>
|
|
1771
1807
|
<tr>
|
|
1772
1808
|
<td style="padding:15px">createIcebergIngestSettingsFlowTemplateById(name, body, callback)</td>
|
|
1773
|
-
<td style="padding:15px">
|
|
1809
|
+
<td style="padding:15px">create_iceberg_ingest_settings_flow_template_by_id</td>
|
|
1774
1810
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/template/{pathv1}/?{query}</td>
|
|
1775
1811
|
<td style="padding:15px">Yes</td>
|
|
1776
1812
|
</tr>
|
|
1777
1813
|
<tr>
|
|
1778
1814
|
<td style="padding:15px">updateIcebergIngestSettingsFlowTemplateById(name, body, callback)</td>
|
|
1779
|
-
<td style="padding:15px">
|
|
1815
|
+
<td style="padding:15px">update_iceberg_ingest_settings_flow_template_by_id</td>
|
|
1780
1816
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/flow/template/{pathv1}/?{query}</td>
|
|
1781
1817
|
<td style="padding:15px">Yes</td>
|
|
1782
1818
|
</tr>
|
|
1783
1819
|
<tr>
|
|
1784
1820
|
<td style="padding:15px">retrieveHealthbotIngestSettingsFrequencyProfile(working, callback)</td>
|
|
1785
|
-
<td style="padding:15px">
|
|
1821
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_frequency_profile</td>
|
|
1786
1822
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/frequency-profiles/?{query}</td>
|
|
1787
1823
|
<td style="padding:15px">Yes</td>
|
|
1788
1824
|
</tr>
|
|
1789
1825
|
<tr>
|
|
1790
1826
|
<td style="padding:15px">deleteHealthbotIngestSettingsFrequencyProfileById(name, callback)</td>
|
|
1791
|
-
<td style="padding:15px">
|
|
1827
|
+
<td style="padding:15px">delete_healthbot_ingest_settings_frequency_profile__by_id</td>
|
|
1792
1828
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/frequency-profile/{pathv1}/?{query}</td>
|
|
1793
1829
|
<td style="padding:15px">Yes</td>
|
|
1794
1830
|
</tr>
|
|
1795
1831
|
<tr>
|
|
1796
1832
|
<td style="padding:15px">retrieveHealthbotIngestSettingsFrequencyProfileById(name, working, callback)</td>
|
|
1797
|
-
<td style="padding:15px">
|
|
1833
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_frequency_profile_by_id</td>
|
|
1798
1834
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/frequency-profile/{pathv1}/?{query}</td>
|
|
1799
1835
|
<td style="padding:15px">Yes</td>
|
|
1800
1836
|
</tr>
|
|
1801
1837
|
<tr>
|
|
1802
1838
|
<td style="padding:15px">createHealthbotIngestSettingsFrequencyProfileById(name, body, callback)</td>
|
|
1803
|
-
<td style="padding:15px">
|
|
1839
|
+
<td style="padding:15px">create_healthbot_ingest_settings_frequency_profile_by_id</td>
|
|
1804
1840
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/frequency-profile/{pathv1}/?{query}</td>
|
|
1805
1841
|
<td style="padding:15px">Yes</td>
|
|
1806
1842
|
</tr>
|
|
1807
1843
|
<tr>
|
|
1808
1844
|
<td style="padding:15px">updateHealthbotIngestSettingsFrequencyProfileById(name, body, callback)</td>
|
|
1809
|
-
<td style="padding:15px">
|
|
1845
|
+
<td style="padding:15px">update_healthbot_ingest_settings_frequency_profile_by_id</td>
|
|
1810
1846
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/frequency-profile/{pathv1}/?{query}</td>
|
|
1811
1847
|
<td style="padding:15px">Yes</td>
|
|
1812
1848
|
</tr>
|
|
1813
1849
|
<tr>
|
|
1814
1850
|
<td style="padding:15px">deleteIcebergIngestSettingsSyslog(callback)</td>
|
|
1815
|
-
<td style="padding:15px">
|
|
1851
|
+
<td style="padding:15px">delete_iceberg_ingest_settings_syslog</td>
|
|
1816
1852
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/?{query}</td>
|
|
1817
1853
|
<td style="padding:15px">Yes</td>
|
|
1818
1854
|
</tr>
|
|
1819
1855
|
<tr>
|
|
1820
1856
|
<td style="padding:15px">retrieveIcebergIngestSettingsSyslog(working, callback)</td>
|
|
1821
|
-
<td style="padding:15px">
|
|
1857
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_syslog</td>
|
|
1822
1858
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/?{query}</td>
|
|
1823
1859
|
<td style="padding:15px">Yes</td>
|
|
1824
1860
|
</tr>
|
|
1825
1861
|
<tr>
|
|
1826
1862
|
<td style="padding:15px">createIcebergIngestSettingsSyslog(body, callback)</td>
|
|
1827
|
-
<td style="padding:15px">
|
|
1863
|
+
<td style="padding:15px">create_iceberg_ingest_settings_syslog</td>
|
|
1828
1864
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/?{query}</td>
|
|
1829
1865
|
<td style="padding:15px">Yes</td>
|
|
1830
1866
|
</tr>
|
|
1831
1867
|
<tr>
|
|
1832
1868
|
<td style="padding:15px">updateIcebergIngestSettingsSyslog(body, callback)</td>
|
|
1833
|
-
<td style="padding:15px">
|
|
1869
|
+
<td style="padding:15px">update_iceberg_ingest_settings_syslog</td>
|
|
1834
1870
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/?{query}</td>
|
|
1835
1871
|
<td style="padding:15px">Yes</td>
|
|
1836
1872
|
</tr>
|
|
1837
1873
|
<tr>
|
|
1838
1874
|
<td style="padding:15px">retrieveIcebergIngestSettingsSyslogPatternSetIds(working, callback)</td>
|
|
1839
|
-
<td style="padding:15px">
|
|
1875
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_syslog_pattern_set_ids</td>
|
|
1840
1876
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern-set/?{query}</td>
|
|
1841
1877
|
<td style="padding:15px">Yes</td>
|
|
1842
1878
|
</tr>
|
|
1843
1879
|
<tr>
|
|
1844
1880
|
<td style="padding:15px">retrieveIcebergIngestSettingsSyslogPatternSets(working, callback)</td>
|
|
1845
|
-
<td style="padding:15px">
|
|
1881
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_syslog_pattern_sets</td>
|
|
1846
1882
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern-sets/?{query}</td>
|
|
1847
1883
|
<td style="padding:15px">Yes</td>
|
|
1848
1884
|
</tr>
|
|
1849
1885
|
<tr>
|
|
1850
1886
|
<td style="padding:15px">deleteIcebergIngestSettingsSyslogPatternSetById(name, callback)</td>
|
|
1851
|
-
<td style="padding:15px">
|
|
1887
|
+
<td style="padding:15px">delete_iceberg_ingest_settings_syslog_pattern_set_by_id</td>
|
|
1852
1888
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1853
1889
|
<td style="padding:15px">Yes</td>
|
|
1854
1890
|
</tr>
|
|
1855
1891
|
<tr>
|
|
1856
1892
|
<td style="padding:15px">retrieveIcebergIngestSettingsSyslogPatternSetById(name, working, callback)</td>
|
|
1857
|
-
<td style="padding:15px">
|
|
1893
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_syslog_pattern_set_by_id</td>
|
|
1858
1894
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1859
1895
|
<td style="padding:15px">Yes</td>
|
|
1860
1896
|
</tr>
|
|
1861
1897
|
<tr>
|
|
1862
1898
|
<td style="padding:15px">createIcebergIngestSettingsSyslogPatternSetById(name, body, callback)</td>
|
|
1863
|
-
<td style="padding:15px">
|
|
1899
|
+
<td style="padding:15px">create_iceberg_ingest_settings_syslog_pattern_set_by_id</td>
|
|
1864
1900
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1865
1901
|
<td style="padding:15px">Yes</td>
|
|
1866
1902
|
</tr>
|
|
1867
1903
|
<tr>
|
|
1868
1904
|
<td style="padding:15px">updateIcebergIngestSettingsSyslogPatternSetById(name, body, callback)</td>
|
|
1869
|
-
<td style="padding:15px">
|
|
1905
|
+
<td style="padding:15px">update_iceberg_ingest_settings_syslog_pattern_set_by_id</td>
|
|
1870
1906
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern-set/{pathv1}/?{query}</td>
|
|
1871
1907
|
<td style="padding:15px">Yes</td>
|
|
1872
1908
|
</tr>
|
|
1873
1909
|
<tr>
|
|
1874
1910
|
<td style="padding:15px">retrieveIcebergIngestSettingsSyslogPatternIds(working, callback)</td>
|
|
1875
|
-
<td style="padding:15px">
|
|
1911
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_syslog_pattern_ids</td>
|
|
1876
1912
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern/?{query}</td>
|
|
1877
1913
|
<td style="padding:15px">Yes</td>
|
|
1878
1914
|
</tr>
|
|
1879
1915
|
<tr>
|
|
1880
1916
|
<td style="padding:15px">retrieveIcebergIngestSettingsSyslogPatterns(working, callback)</td>
|
|
1881
|
-
<td style="padding:15px">
|
|
1917
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_syslog_patterns</td>
|
|
1882
1918
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/patterns/?{query}</td>
|
|
1883
1919
|
<td style="padding:15px">Yes</td>
|
|
1884
1920
|
</tr>
|
|
1885
1921
|
<tr>
|
|
1886
1922
|
<td style="padding:15px">deleteIcebergIngestSettingsSyslogPatternById(name, callback)</td>
|
|
1887
|
-
<td style="padding:15px">
|
|
1923
|
+
<td style="padding:15px">delete_iceberg_ingest_settings_syslog_pattern_by_id</td>
|
|
1888
1924
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern/{pathv1}/?{query}</td>
|
|
1889
1925
|
<td style="padding:15px">Yes</td>
|
|
1890
1926
|
</tr>
|
|
1891
1927
|
<tr>
|
|
1892
1928
|
<td style="padding:15px">retrieveIcebergIngestSettingsSyslogPatternById(name, working, callback)</td>
|
|
1893
|
-
<td style="padding:15px">
|
|
1929
|
+
<td style="padding:15px">retrieve_iceberg_ingest_settings_syslog_pattern_by_id</td>
|
|
1894
1930
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern/{pathv1}/?{query}</td>
|
|
1895
1931
|
<td style="padding:15px">Yes</td>
|
|
1896
1932
|
</tr>
|
|
1897
1933
|
<tr>
|
|
1898
1934
|
<td style="padding:15px">createIcebergIngestSettingsSyslogPatternById(name, body, callback)</td>
|
|
1899
|
-
<td style="padding:15px">
|
|
1935
|
+
<td style="padding:15px">create_iceberg_ingest_settings_syslog_pattern_by_id</td>
|
|
1900
1936
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern/{pathv1}/?{query}</td>
|
|
1901
1937
|
<td style="padding:15px">Yes</td>
|
|
1902
1938
|
</tr>
|
|
1903
1939
|
<tr>
|
|
1904
1940
|
<td style="padding:15px">updateIcebergIngestSettingsSyslogPatternById(name, body, callback)</td>
|
|
1905
|
-
<td style="padding:15px">
|
|
1941
|
+
<td style="padding:15px">update_iceberg_ingest_settings_syslog_pattern_by_id</td>
|
|
1906
1942
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/syslog/pattern/{pathv1}/?{query}</td>
|
|
1907
1943
|
<td style="padding:15px">Yes</td>
|
|
1908
1944
|
</tr>
|
|
1909
1945
|
<tr>
|
|
1910
1946
|
<td style="padding:15px">retrieveHealthbotIngestSettingsByoiCustomPlugins(working, callback)</td>
|
|
1911
|
-
<td style="padding:15px">
|
|
1947
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_byoi_custom_plugins</td>
|
|
1912
1948
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/custom-plugins/?{query}</td>
|
|
1913
1949
|
<td style="padding:15px">Yes</td>
|
|
1914
1950
|
</tr>
|
|
1915
1951
|
<tr>
|
|
1916
1952
|
<td style="padding:15px">deleteHealthbotIngestSettingsByoiCustomPluginById(name, callback)</td>
|
|
1917
|
-
<td style="padding:15px">
|
|
1953
|
+
<td style="padding:15px">delete_healthbot_ingest_settings_byoi_custom_plugin_by_id</td>
|
|
1918
1954
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1919
1955
|
<td style="padding:15px">Yes</td>
|
|
1920
1956
|
</tr>
|
|
1921
1957
|
<tr>
|
|
1922
1958
|
<td style="padding:15px">retrieveHealthbotIngestSettingsByoiCustomPluginById(name, working, callback)</td>
|
|
1923
|
-
<td style="padding:15px">
|
|
1959
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_byoi_custom_plugin_by_id</td>
|
|
1924
1960
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1925
1961
|
<td style="padding:15px">Yes</td>
|
|
1926
1962
|
</tr>
|
|
1927
1963
|
<tr>
|
|
1928
1964
|
<td style="padding:15px">createHealthbotIngestSettingsByoiCustomPluginById(name, body, callback)</td>
|
|
1929
|
-
<td style="padding:15px">
|
|
1965
|
+
<td style="padding:15px">create_healthbot_ingest_settings_byoi_custom_plugin_by_id</td>
|
|
1930
1966
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1931
1967
|
<td style="padding:15px">Yes</td>
|
|
1932
1968
|
</tr>
|
|
1933
1969
|
<tr>
|
|
1934
1970
|
<td style="padding:15px">updateHealthbotIngestSettingsByoiCustomPluginById(name, body, callback)</td>
|
|
1935
|
-
<td style="padding:15px">
|
|
1971
|
+
<td style="padding:15px">update_healthbot_ingest_settings_byoi_custom_plugin_by_id</td>
|
|
1936
1972
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/custom-plugin/{pathv1}/?{query}</td>
|
|
1937
1973
|
<td style="padding:15px">Yes</td>
|
|
1938
1974
|
</tr>
|
|
1939
1975
|
<tr>
|
|
1940
1976
|
<td style="padding:15px">retrieveHealthbotIngestSettingsByoiDefaultPluginTliveKafkas(working, callback)</td>
|
|
1941
|
-
<td style="padding:15px">
|
|
1977
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_byoi_default_plugin_tlive_kafkas</td>
|
|
1942
1978
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/default-plugin/tlive-kafka-ocs/?{query}</td>
|
|
1943
1979
|
<td style="padding:15px">Yes</td>
|
|
1944
1980
|
</tr>
|
|
1945
1981
|
<tr>
|
|
1946
1982
|
<td style="padding:15px">deleteHealthbotIngestSettingsByoiDefaultPluginTliveKafkaById(name, callback)</td>
|
|
1947
|
-
<td style="padding:15px">
|
|
1983
|
+
<td style="padding:15px">delete_healthbot_ingest_settings_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1948
1984
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1949
1985
|
<td style="padding:15px">Yes</td>
|
|
1950
1986
|
</tr>
|
|
1951
1987
|
<tr>
|
|
1952
1988
|
<td style="padding:15px">retrieveHealthbotIngestSettingsByoiDefaultPluginTliveKafkaById(name, working, callback)</td>
|
|
1953
|
-
<td style="padding:15px">
|
|
1989
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1954
1990
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1955
1991
|
<td style="padding:15px">Yes</td>
|
|
1956
1992
|
</tr>
|
|
1957
1993
|
<tr>
|
|
1958
1994
|
<td style="padding:15px">createHealthbotIngestSettingsByoiDefaultPluginTliveKafkaById(name, body, callback)</td>
|
|
1959
|
-
<td style="padding:15px">
|
|
1995
|
+
<td style="padding:15px">create_healthbot_ingest_settings_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1960
1996
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1961
1997
|
<td style="padding:15px">Yes</td>
|
|
1962
1998
|
</tr>
|
|
1963
1999
|
<tr>
|
|
1964
2000
|
<td style="padding:15px">updateHealthbotIngestSettingsByoiDefaultPluginTliveKafkaById(name, body, callback)</td>
|
|
1965
|
-
<td style="padding:15px">
|
|
2001
|
+
<td style="padding:15px">update_healthbot_ingest_settings_byoi_default_plugin_tlive_kafka_by_id</td>
|
|
1966
2002
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/default-plugin/tlive-kafka-oc/{pathv1}/?{query}</td>
|
|
1967
2003
|
<td style="padding:15px">Yes</td>
|
|
1968
2004
|
</tr>
|
|
1969
2005
|
<tr>
|
|
1970
2006
|
<td style="padding:15px">deleteHealthbotIngestSettingsByoiIngestMappingById(name, callback)</td>
|
|
1971
|
-
<td style="padding:15px">
|
|
2007
|
+
<td style="padding:15px">delete_healthbot_ingest_settings_byoi_ingest_mapping_by_id</td>
|
|
1972
2008
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1973
2009
|
<td style="padding:15px">Yes</td>
|
|
1974
2010
|
</tr>
|
|
1975
2011
|
<tr>
|
|
1976
2012
|
<td style="padding:15px">retrieveHealthbotIngestSettingsByoiIngestMappingById(name, working, callback)</td>
|
|
1977
|
-
<td style="padding:15px">
|
|
2013
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_byoi_ingest_mapping_by_id</td>
|
|
1978
2014
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1979
2015
|
<td style="padding:15px">Yes</td>
|
|
1980
2016
|
</tr>
|
|
1981
2017
|
<tr>
|
|
1982
2018
|
<td style="padding:15px">createHealthbotIngestSettingsByoiIngestMappingById(name, body, callback)</td>
|
|
1983
|
-
<td style="padding:15px">
|
|
2019
|
+
<td style="padding:15px">create_healthbot_ingest_settings_byoi_ingest_mapping_by_id</td>
|
|
1984
2020
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1985
2021
|
<td style="padding:15px">Yes</td>
|
|
1986
2022
|
</tr>
|
|
1987
2023
|
<tr>
|
|
1988
2024
|
<td style="padding:15px">updateHealthbotIngestSettingsByoiIngestMappingById(name, body, callback)</td>
|
|
1989
|
-
<td style="padding:15px">
|
|
2025
|
+
<td style="padding:15px">update_healthbot_ingest_settings_byoi_ingest_mapping_by_id</td>
|
|
1990
2026
|
<td style="padding:15px">{base_path}/{version}/config/ingest-settings/byoi/ingest-mapping/{pathv1}/?{query}</td>
|
|
1991
2027
|
<td style="padding:15px">Yes</td>
|
|
1992
2028
|
</tr>
|
|
1993
2029
|
<tr>
|
|
1994
2030
|
<td style="padding:15px">deleteHealthbotDeploymentDeploymentById(callback)</td>
|
|
1995
|
-
<td style="padding:15px">
|
|
2031
|
+
<td style="padding:15px">delete_healthbot_deployment_deployment_by_id</td>
|
|
1996
2032
|
<td style="padding:15px">{base_path}/{version}/config/deployment/?{query}</td>
|
|
1997
2033
|
<td style="padding:15px">Yes</td>
|
|
1998
2034
|
</tr>
|
|
1999
2035
|
<tr>
|
|
2000
2036
|
<td style="padding:15px">retrieveHealthbotDeploymentDeployment(working, callback)</td>
|
|
2001
|
-
<td style="padding:15px">
|
|
2037
|
+
<td style="padding:15px">retrieve_healthbot_deployment_deployment</td>
|
|
2002
2038
|
<td style="padding:15px">{base_path}/{version}/config/deployment/?{query}</td>
|
|
2003
2039
|
<td style="padding:15px">Yes</td>
|
|
2004
2040
|
</tr>
|
|
2005
2041
|
<tr>
|
|
2006
2042
|
<td style="padding:15px">createHealthbotDeploymentDeploymentById(body, callback)</td>
|
|
2007
|
-
<td style="padding:15px">
|
|
2043
|
+
<td style="padding:15px">create_healthbot_deployment_deployment_by_id</td>
|
|
2008
2044
|
<td style="padding:15px">{base_path}/{version}/config/deployment/?{query}</td>
|
|
2009
2045
|
<td style="padding:15px">Yes</td>
|
|
2010
2046
|
</tr>
|
|
2011
2047
|
<tr>
|
|
2012
2048
|
<td style="padding:15px">updateHealthbotDeploymentDeploymentById(body, callback)</td>
|
|
2013
|
-
<td style="padding:15px">
|
|
2049
|
+
<td style="padding:15px">update_healthbot_deployment_deployment_by_id</td>
|
|
2014
2050
|
<td style="padding:15px">{base_path}/{version}/config/deployment/?{query}</td>
|
|
2015
2051
|
<td style="padding:15px">Yes</td>
|
|
2016
2052
|
</tr>
|
|
2017
2053
|
<tr>
|
|
2018
2054
|
<td style="padding:15px">retrieveConfigurationJobs(jobId, jobStatus, callback)</td>
|
|
2019
|
-
<td style="padding:15px">
|
|
2055
|
+
<td style="padding:15px">retrieve_configuration_jobs</td>
|
|
2020
2056
|
<td style="padding:15px">{base_path}/{version}/config/configuration/jobs/?{query}</td>
|
|
2021
2057
|
<td style="padding:15px">Yes</td>
|
|
2022
2058
|
</tr>
|
|
2023
2059
|
<tr>
|
|
2024
2060
|
<td style="padding:15px">retrieveFilesHelperFiles(inputPath, callback)</td>
|
|
2025
|
-
<td style="padding:15px">
|
|
2061
|
+
<td style="padding:15px">retrieve_files_helper_files</td>
|
|
2026
2062
|
<td style="padding:15px">{base_path}/{version}/config/files/helper-files/?{query}</td>
|
|
2027
2063
|
<td style="padding:15px">Yes</td>
|
|
2028
2064
|
</tr>
|
|
2029
2065
|
<tr>
|
|
2030
2066
|
<td style="padding:15px">deleteFilesHelperFilesByFileName(fileName, inputPath, callback)</td>
|
|
2031
|
-
<td style="padding:15px">
|
|
2067
|
+
<td style="padding:15px">delete_files_helper_files_by_file_name</td>
|
|
2032
2068
|
<td style="padding:15px">{base_path}/{version}/config/files/helper-files/{pathv1}/?{query}</td>
|
|
2033
2069
|
<td style="padding:15px">Yes</td>
|
|
2034
2070
|
</tr>
|
|
2035
2071
|
<tr>
|
|
2036
2072
|
<td style="padding:15px">retrieveFilesHelperFilesByFileName(fileName, inputPath, callback)</td>
|
|
2037
|
-
<td style="padding:15px">
|
|
2073
|
+
<td style="padding:15px">retrieve_files_helper_files_by_file_name</td>
|
|
2038
2074
|
<td style="padding:15px">{base_path}/{version}/config/files/helper-files/{pathv1}/?{query}</td>
|
|
2039
2075
|
<td style="padding:15px">Yes</td>
|
|
2040
2076
|
</tr>
|
|
2041
2077
|
<tr>
|
|
2042
2078
|
<td style="padding:15px">createFilesHelperFilesByFileName(fileName, upFile, callback)</td>
|
|
2043
|
-
<td style="padding:15px">
|
|
2079
|
+
<td style="padding:15px">create_files_helper_files_by_file_name</td>
|
|
2044
2080
|
<td style="padding:15px">{base_path}/{version}/config/files/helper-files/{pathv1}/?{query}</td>
|
|
2045
2081
|
<td style="padding:15px">Yes</td>
|
|
2046
2082
|
</tr>
|
|
2047
2083
|
<tr>
|
|
2048
2084
|
<td style="padding:15px">backupHelperFiles(callback)</td>
|
|
2049
|
-
<td style="padding:15px">
|
|
2085
|
+
<td style="padding:15px">backup_helper_files</td>
|
|
2050
2086
|
<td style="padding:15px">{base_path}/{version}/config/files/helper-files/backup/?{query}</td>
|
|
2051
2087
|
<td style="padding:15px">Yes</td>
|
|
2052
2088
|
</tr>
|
|
2053
2089
|
<tr>
|
|
2054
2090
|
<td style="padding:15px">restoreHelperFiles(restoreFile, callback)</td>
|
|
2055
|
-
<td style="padding:15px">
|
|
2091
|
+
<td style="padding:15px">restore_helper_files</td>
|
|
2056
2092
|
<td style="padding:15px">{base_path}/{version}/config/files/helper-files/backup/?{query}</td>
|
|
2057
2093
|
<td style="padding:15px">Yes</td>
|
|
2058
2094
|
</tr>
|
|
2059
2095
|
<tr>
|
|
2060
2096
|
<td style="padding:15px">deleteFilesCertificatesByFileName(fileName, inputPath, certificateType, callback)</td>
|
|
2061
|
-
<td style="padding:15px">
|
|
2097
|
+
<td style="padding:15px">delete_files_certificates_by_file_name</td>
|
|
2062
2098
|
<td style="padding:15px">{base_path}/{version}/config/files/certificates/{pathv1}/?{query}</td>
|
|
2063
2099
|
<td style="padding:15px">Yes</td>
|
|
2064
2100
|
</tr>
|
|
2065
2101
|
<tr>
|
|
2066
2102
|
<td style="padding:15px">retrieveFilesCertificatesByFileName(fileName, inputPath, certificateType, callback)</td>
|
|
2067
|
-
<td style="padding:15px">
|
|
2103
|
+
<td style="padding:15px">retrieve_files_certificates_by_file_name</td>
|
|
2068
2104
|
<td style="padding:15px">{base_path}/{version}/config/files/certificates/{pathv1}/?{query}</td>
|
|
2069
2105
|
<td style="padding:15px">Yes</td>
|
|
2070
2106
|
</tr>
|
|
2071
2107
|
<tr>
|
|
2072
2108
|
<td style="padding:15px">createFilesCertificatesByFileName(fileName, password, certificateType, upFile, callback)</td>
|
|
2073
|
-
<td style="padding:15px">
|
|
2109
|
+
<td style="padding:15px">create_files_certificates_by_file_name</td>
|
|
2074
2110
|
<td style="padding:15px">{base_path}/{version}/config/files/certificates/{pathv1}/?{query}</td>
|
|
2075
2111
|
<td style="padding:15px">Yes</td>
|
|
2076
2112
|
</tr>
|
|
2077
2113
|
<tr>
|
|
2078
2114
|
<td style="padding:15px">retrieveHealthbotDynamicTagging(callback)</td>
|
|
2079
|
-
<td style="padding:15px">
|
|
2115
|
+
<td style="padding:15px">retrieve_healthbot_dynamic_tagging</td>
|
|
2080
2116
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/keys/?{query}</td>
|
|
2081
2117
|
<td style="padding:15px">Yes</td>
|
|
2082
2118
|
</tr>
|
|
2083
2119
|
<tr>
|
|
2084
2120
|
<td style="padding:15px">deleteHealthbotDynamicTagging(callback)</td>
|
|
2085
|
-
<td style="padding:15px">
|
|
2121
|
+
<td style="padding:15px">delete_healthbot_dynamic_tagging</td>
|
|
2086
2122
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/keys/?{query}</td>
|
|
2087
2123
|
<td style="padding:15px">Yes</td>
|
|
2088
2124
|
</tr>
|
|
2089
2125
|
<tr>
|
|
2090
2126
|
<td style="padding:15px">createHealthbotDynamicTagging(body, callback)</td>
|
|
2091
|
-
<td style="padding:15px">
|
|
2127
|
+
<td style="padding:15px">create_healthbot_dynamic_tagging</td>
|
|
2092
2128
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/keys/?{query}</td>
|
|
2093
2129
|
<td style="padding:15px">Yes</td>
|
|
2094
2130
|
</tr>
|
|
2095
2131
|
<tr>
|
|
2096
2132
|
<td style="padding:15px">updateHealthbotDynamicTagging(body, callback)</td>
|
|
2097
|
-
<td style="padding:15px">
|
|
2133
|
+
<td style="padding:15px">update_healthbot_dynamic_tagging</td>
|
|
2098
2134
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/keys/?{query}</td>
|
|
2099
2135
|
<td style="padding:15px">Yes</td>
|
|
2100
2136
|
</tr>
|
|
2101
2137
|
<tr>
|
|
2102
2138
|
<td style="padding:15px">getDynamicTaggingByKey(keyName, callback)</td>
|
|
2103
|
-
<td style="padding:15px">
|
|
2139
|
+
<td style="padding:15px">get_dynamic_tagging_by_key</td>
|
|
2104
2140
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/key/?{query}</td>
|
|
2105
2141
|
<td style="padding:15px">Yes</td>
|
|
2106
2142
|
</tr>
|
|
2107
2143
|
<tr>
|
|
2108
2144
|
<td style="padding:15px">createDynamicTaggingByKey(keyName, body, callback)</td>
|
|
2109
|
-
<td style="padding:15px">
|
|
2145
|
+
<td style="padding:15px">create_dynamic_tagging_by_key</td>
|
|
2110
2146
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/key/?{query}</td>
|
|
2111
2147
|
<td style="padding:15px">Yes</td>
|
|
2112
2148
|
</tr>
|
|
2113
2149
|
<tr>
|
|
2114
2150
|
<td style="padding:15px">deleteDynamicTaggingByKey(keyName, callback)</td>
|
|
2115
|
-
<td style="padding:15px">
|
|
2151
|
+
<td style="padding:15px">delete_dynamic_tagging_by_key</td>
|
|
2116
2152
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/key/?{query}</td>
|
|
2117
2153
|
<td style="padding:15px">Yes</td>
|
|
2118
2154
|
</tr>
|
|
2119
2155
|
<tr>
|
|
2120
2156
|
<td style="padding:15px">updateDynamicTaggingByKey(keyName, body, callback)</td>
|
|
2121
|
-
<td style="padding:15px">
|
|
2157
|
+
<td style="padding:15px">update_dynamic_tagging_by_key</td>
|
|
2122
2158
|
<td style="padding:15px">{base_path}/{version}/config/dynamic-tagging/key/?{query}</td>
|
|
2123
2159
|
<td style="padding:15px">Yes</td>
|
|
2124
2160
|
</tr>
|
|
2125
2161
|
<tr>
|
|
2126
2162
|
<td style="padding:15px">deleteIcebergProfiles(callback)</td>
|
|
2127
|
-
<td style="padding:15px">
|
|
2163
|
+
<td style="padding:15px">delete_iceberg_profiles</td>
|
|
2128
2164
|
<td style="padding:15px">{base_path}/{version}/config/profiles/?{query}</td>
|
|
2129
2165
|
<td style="padding:15px">Yes</td>
|
|
2130
2166
|
</tr>
|
|
2131
2167
|
<tr>
|
|
2132
2168
|
<td style="padding:15px">retrieveIcebergProfiles(working, callback)</td>
|
|
2133
|
-
<td style="padding:15px">
|
|
2169
|
+
<td style="padding:15px">retrieve_iceberg_profiles</td>
|
|
2134
2170
|
<td style="padding:15px">{base_path}/{version}/config/profiles/?{query}</td>
|
|
2135
2171
|
<td style="padding:15px">Yes</td>
|
|
2136
2172
|
</tr>
|
|
2137
2173
|
<tr>
|
|
2138
2174
|
<td style="padding:15px">createIcebergProfiles(body, callback)</td>
|
|
2139
|
-
<td style="padding:15px">
|
|
2175
|
+
<td style="padding:15px">create_iceberg_profiles</td>
|
|
2140
2176
|
<td style="padding:15px">{base_path}/{version}/config/profiles/?{query}</td>
|
|
2141
2177
|
<td style="padding:15px">Yes</td>
|
|
2142
2178
|
</tr>
|
|
2143
2179
|
<tr>
|
|
2144
2180
|
<td style="padding:15px">updateIcebergProfiles(body, callback)</td>
|
|
2145
|
-
<td style="padding:15px">
|
|
2181
|
+
<td style="padding:15px">update_iceberg_profiles</td>
|
|
2146
2182
|
<td style="padding:15px">{base_path}/{version}/config/profiles/?{query}</td>
|
|
2147
2183
|
<td style="padding:15px">Yes</td>
|
|
2148
2184
|
</tr>
|
|
2149
2185
|
<tr>
|
|
2150
2186
|
<td style="padding:15px">retrieveIcebergProfileSecurityCaProfiles(working, callback)</td>
|
|
2151
|
-
<td style="padding:15px">
|
|
2187
|
+
<td style="padding:15px">retrieve_iceberg_profile_security_ca_profiles</td>
|
|
2152
2188
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ca-profiles/?{query}</td>
|
|
2153
2189
|
<td style="padding:15px">Yes</td>
|
|
2154
2190
|
</tr>
|
|
2155
2191
|
<tr>
|
|
2156
2192
|
<td style="padding:15px">deleteIcebergProfileSecurityCaProfileById(name, callback)</td>
|
|
2157
|
-
<td style="padding:15px">
|
|
2193
|
+
<td style="padding:15px">delete_iceberg_profile_security_ca_profile_by_id</td>
|
|
2158
2194
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ca-profile/{pathv1}/?{query}</td>
|
|
2159
2195
|
<td style="padding:15px">Yes</td>
|
|
2160
2196
|
</tr>
|
|
2161
2197
|
<tr>
|
|
2162
2198
|
<td style="padding:15px">retrieveIcebergProfileSecurityCaProfileById(name, working, callback)</td>
|
|
2163
|
-
<td style="padding:15px">
|
|
2199
|
+
<td style="padding:15px">retrieve_iceberg_profile_security_ca_profile_by_id</td>
|
|
2164
2200
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ca-profile/{pathv1}/?{query}</td>
|
|
2165
2201
|
<td style="padding:15px">Yes</td>
|
|
2166
2202
|
</tr>
|
|
2167
2203
|
<tr>
|
|
2168
2204
|
<td style="padding:15px">createIcebergProfileSecurityCaProfileById(name, body, callback)</td>
|
|
2169
|
-
<td style="padding:15px">
|
|
2205
|
+
<td style="padding:15px">create_iceberg_profile_security_ca_profile_by_id</td>
|
|
2170
2206
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ca-profile/{pathv1}/?{query}</td>
|
|
2171
2207
|
<td style="padding:15px">Yes</td>
|
|
2172
2208
|
</tr>
|
|
2173
2209
|
<tr>
|
|
2174
2210
|
<td style="padding:15px">updateIcebergProfileSecurityCaProfileById(name, body, callback)</td>
|
|
2175
|
-
<td style="padding:15px">
|
|
2211
|
+
<td style="padding:15px">update_iceberg_profile_security_ca_profile_by_id</td>
|
|
2176
2212
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ca-profile/{pathv1}/?{query}</td>
|
|
2177
2213
|
<td style="padding:15px">Yes</td>
|
|
2178
2214
|
</tr>
|
|
2179
2215
|
<tr>
|
|
2180
2216
|
<td style="padding:15px">retrieveIcebergProfileSecurityLocalCertificates(working, callback)</td>
|
|
2181
|
-
<td style="padding:15px">
|
|
2217
|
+
<td style="padding:15px">retrieve_iceberg_profile_security_local_certificates</td>
|
|
2182
2218
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/local-certificates/?{query}</td>
|
|
2183
2219
|
<td style="padding:15px">Yes</td>
|
|
2184
2220
|
</tr>
|
|
2185
2221
|
<tr>
|
|
2186
2222
|
<td style="padding:15px">deleteIcebergProfileSecurityLocalCertificateById(name, callback)</td>
|
|
2187
|
-
<td style="padding:15px">
|
|
2223
|
+
<td style="padding:15px">delete_iceberg_profile_security_local_certificate_by_id</td>
|
|
2188
2224
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/local-certificate/{pathv1}/?{query}</td>
|
|
2189
2225
|
<td style="padding:15px">Yes</td>
|
|
2190
2226
|
</tr>
|
|
2191
2227
|
<tr>
|
|
2192
2228
|
<td style="padding:15px">retrieveIcebergProfileSecurityLocalCertificateById(name, working, callback)</td>
|
|
2193
|
-
<td style="padding:15px">
|
|
2229
|
+
<td style="padding:15px">retrieve_iceberg_profile_security_local_certificate_by_id</td>
|
|
2194
2230
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/local-certificate/{pathv1}/?{query}</td>
|
|
2195
2231
|
<td style="padding:15px">Yes</td>
|
|
2196
2232
|
</tr>
|
|
2197
2233
|
<tr>
|
|
2198
2234
|
<td style="padding:15px">createIcebergProfileSecurityLocalCertificateById(name, body, callback)</td>
|
|
2199
|
-
<td style="padding:15px">
|
|
2235
|
+
<td style="padding:15px">create_iceberg_profile_security_local_certificate_by_id</td>
|
|
2200
2236
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/local-certificate/{pathv1}/?{query}</td>
|
|
2201
2237
|
<td style="padding:15px">Yes</td>
|
|
2202
2238
|
</tr>
|
|
2203
2239
|
<tr>
|
|
2204
2240
|
<td style="padding:15px">updateIcebergProfileSecurityLocalCertificateById(name, body, callback)</td>
|
|
2205
|
-
<td style="padding:15px">
|
|
2241
|
+
<td style="padding:15px">update_iceberg_profile_security_local_certificate_by_id</td>
|
|
2206
2242
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/local-certificate/{pathv1}/?{query}</td>
|
|
2207
2243
|
<td style="padding:15px">Yes</td>
|
|
2208
2244
|
</tr>
|
|
2209
2245
|
<tr>
|
|
2210
2246
|
<td style="padding:15px">retrieveIcebergProfileSecuritySshKeyProfiles(working, callback)</td>
|
|
2211
|
-
<td style="padding:15px">
|
|
2247
|
+
<td style="padding:15px">retrieve_iceberg_profile_security_ssh_key_profiles</td>
|
|
2212
2248
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ssh-key-profiles/?{query}</td>
|
|
2213
2249
|
<td style="padding:15px">Yes</td>
|
|
2214
2250
|
</tr>
|
|
2215
2251
|
<tr>
|
|
2216
2252
|
<td style="padding:15px">deleteIcebergProfileSecuritySshKeyProfileById(name, callback)</td>
|
|
2217
|
-
<td style="padding:15px">
|
|
2253
|
+
<td style="padding:15px">delete_iceberg_profile_security_ssh_key_profile_by_id</td>
|
|
2218
2254
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ssh-key-profile/{pathv1}/?{query}</td>
|
|
2219
2255
|
<td style="padding:15px">Yes</td>
|
|
2220
2256
|
</tr>
|
|
2221
2257
|
<tr>
|
|
2222
2258
|
<td style="padding:15px">retrieveIcebergProfileSecuritySshKeyProfileById(name, working, callback)</td>
|
|
2223
|
-
<td style="padding:15px">
|
|
2259
|
+
<td style="padding:15px">retrieve_iceberg_profile_security_ssh_key_profile_by_id</td>
|
|
2224
2260
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ssh-key-profile/{pathv1}/?{query}</td>
|
|
2225
2261
|
<td style="padding:15px">Yes</td>
|
|
2226
2262
|
</tr>
|
|
2227
2263
|
<tr>
|
|
2228
2264
|
<td style="padding:15px">createIcebergProfileSecuritySshKeyProfileById(name, body, callback)</td>
|
|
2229
|
-
<td style="padding:15px">
|
|
2265
|
+
<td style="padding:15px">create_iceberg_profile_security_ssh_key_profile_by_id</td>
|
|
2230
2266
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ssh-key-profile/{pathv1}/?{query}</td>
|
|
2231
2267
|
<td style="padding:15px">Yes</td>
|
|
2232
2268
|
</tr>
|
|
2233
2269
|
<tr>
|
|
2234
2270
|
<td style="padding:15px">updateIcebergProfileSecuritySshKeyProfileById(name, body, callback)</td>
|
|
2235
|
-
<td style="padding:15px">
|
|
2271
|
+
<td style="padding:15px">update_iceberg_profile_security_ssh_key_profile_by_id</td>
|
|
2236
2272
|
<td style="padding:15px">{base_path}/{version}/config/profile/security/ssh-key-profile/{pathv1}/?{query}</td>
|
|
2237
2273
|
<td style="padding:15px">Yes</td>
|
|
2238
2274
|
</tr>
|
|
2239
2275
|
<tr>
|
|
2240
2276
|
<td style="padding:15px">retrieveIcebergProfileDataSummarizationsRaw(working, callback)</td>
|
|
2241
|
-
<td style="padding:15px">
|
|
2277
|
+
<td style="padding:15px">retrieve_iceberg_profile_data_summarizations_raw</td>
|
|
2242
2278
|
<td style="padding:15px">{base_path}/{version}/config/profile/data-summarizations/raw/?{query}</td>
|
|
2243
2279
|
<td style="padding:15px">Yes</td>
|
|
2244
2280
|
</tr>
|
|
2245
2281
|
<tr>
|
|
2246
2282
|
<td style="padding:15px">deleteIcebergProfileDataSummarizationRawById(name, callback)</td>
|
|
2247
|
-
<td style="padding:15px">
|
|
2283
|
+
<td style="padding:15px">delete_iceberg_profile_data_summarization_raw_by_id</td>
|
|
2248
2284
|
<td style="padding:15px">{base_path}/{version}/config/profile/data-summarization/raw/{pathv1}/?{query}</td>
|
|
2249
2285
|
<td style="padding:15px">Yes</td>
|
|
2250
2286
|
</tr>
|
|
2251
2287
|
<tr>
|
|
2252
2288
|
<td style="padding:15px">retrieveIcebergProfileDataSummarizationRawById(name, working, callback)</td>
|
|
2253
|
-
<td style="padding:15px">
|
|
2289
|
+
<td style="padding:15px">retrieve_iceberg_profile_data_summarization_raw_by_id</td>
|
|
2254
2290
|
<td style="padding:15px">{base_path}/{version}/config/profile/data-summarization/raw/{pathv1}/?{query}</td>
|
|
2255
2291
|
<td style="padding:15px">Yes</td>
|
|
2256
2292
|
</tr>
|
|
2257
2293
|
<tr>
|
|
2258
2294
|
<td style="padding:15px">createIcebergProfileDataSummarizationRawById(name, body, callback)</td>
|
|
2259
|
-
<td style="padding:15px">
|
|
2295
|
+
<td style="padding:15px">create_iceberg_profile_data_summarization_raw_by_id</td>
|
|
2260
2296
|
<td style="padding:15px">{base_path}/{version}/config/profile/data-summarization/raw/{pathv1}/?{query}</td>
|
|
2261
2297
|
<td style="padding:15px">Yes</td>
|
|
2262
2298
|
</tr>
|
|
2263
2299
|
<tr>
|
|
2264
2300
|
<td style="padding:15px">updateIcebergProfileDataSummarizationRawById(name, body, callback)</td>
|
|
2265
|
-
<td style="padding:15px">
|
|
2301
|
+
<td style="padding:15px">update_iceberg_profile_data_summarization_raw_by_id</td>
|
|
2266
2302
|
<td style="padding:15px">{base_path}/{version}/config/profile/data-summarization/raw/{pathv1}/?{query}</td>
|
|
2267
2303
|
<td style="padding:15px">Yes</td>
|
|
2268
2304
|
</tr>
|
|
2269
2305
|
<tr>
|
|
2270
2306
|
<td style="padding:15px">retrieveHealthbotProfileRollupSummarizationFieldProfileProfile(working, callback)</td>
|
|
2271
|
-
<td style="padding:15px">
|
|
2307
|
+
<td style="padding:15px">retrieve_healthbot_profile_rollup_summarization_field_profile_profile</td>
|
|
2272
2308
|
<td style="padding:15px">{base_path}/{version}/config/profile/rollup-summarization/field-profile/?{query}</td>
|
|
2273
2309
|
<td style="padding:15px">Yes</td>
|
|
2274
2310
|
</tr>
|
|
2275
2311
|
<tr>
|
|
2276
2312
|
<td style="padding:15px">deleteHealthbotProfileRollupSummarizationFieldProfileFieldProfileById(profileId, callback)</td>
|
|
2277
|
-
<td style="padding:15px">
|
|
2313
|
+
<td style="padding:15px">delete_healthbot_profile_rollup_summarization_field_profile_field_profile_by_id</td>
|
|
2278
2314
|
<td style="padding:15px">{base_path}/{version}/config/profile/rollup-summarization/field-profile/{pathv1}/?{query}</td>
|
|
2279
2315
|
<td style="padding:15px">Yes</td>
|
|
2280
2316
|
</tr>
|
|
2281
2317
|
<tr>
|
|
2282
2318
|
<td style="padding:15px">retrieveHealthbotProfileRollupSummarizationFieldProfileFieldProfileById(profileId, working, callback)</td>
|
|
2283
|
-
<td style="padding:15px">
|
|
2319
|
+
<td style="padding:15px">retrieve_healthbot_profile_rollup_summarization_field_profile_field_profile_by_id</td>
|
|
2284
2320
|
<td style="padding:15px">{base_path}/{version}/config/profile/rollup-summarization/field-profile/{pathv1}/?{query}</td>
|
|
2285
2321
|
<td style="padding:15px">Yes</td>
|
|
2286
2322
|
</tr>
|
|
2287
2323
|
<tr>
|
|
2288
2324
|
<td style="padding:15px">createHealthbotProfileRollupSummarizationFieldProfileFieldProfileById(profileId, body, callback)</td>
|
|
2289
|
-
<td style="padding:15px">
|
|
2325
|
+
<td style="padding:15px">create_healthbot_profile_rollup_summarization_field_profile_field_profile_by_id</td>
|
|
2290
2326
|
<td style="padding:15px">{base_path}/{version}/config/profile/rollup-summarization/field-profile/{pathv1}/?{query}</td>
|
|
2291
2327
|
<td style="padding:15px">Yes</td>
|
|
2292
2328
|
</tr>
|
|
2293
2329
|
<tr>
|
|
2294
2330
|
<td style="padding:15px">updateHealthbotProfileRollupSummarizationFieldProfileFieldProfileById(profileId, body, callback)</td>
|
|
2295
|
-
<td style="padding:15px">
|
|
2331
|
+
<td style="padding:15px">update_healthbot_profile_rollup_summarization_field_profile_field_profile_by_id</td>
|
|
2296
2332
|
<td style="padding:15px">{base_path}/{version}/config/profile/rollup-summarization/field-profile/{pathv1}/?{query}</td>
|
|
2297
2333
|
<td style="padding:15px">Yes</td>
|
|
2298
2334
|
</tr>
|
|
2299
2335
|
<tr>
|
|
2300
2336
|
<td style="padding:15px">retrieveSensors(sensorType, sensorName, depth, append, snmpTable, callback)</td>
|
|
2301
|
-
<td style="padding:15px">
|
|
2302
|
-
If you have a sensor `/1/2/3/4/5/6/` and `sensor_name=/1`and `depth=3`, the result would be `/2/3/4`. If you use `append=true`, then the result would be `/1/2/3/4`.</td>
|
|
2337
|
+
<td style="padding:15px">retrieve_sensors</td>
|
|
2303
2338
|
<td style="padding:15px">{base_path}/{version}/config/sensors/?{query}</td>
|
|
2304
2339
|
<td style="padding:15px">Yes</td>
|
|
2305
2340
|
</tr>
|
|
2306
2341
|
<tr>
|
|
2307
2342
|
<td style="padding:15px">deleteHealthbotSystemTimeSeriesDatabaseTimeSeriesDatabaseById(callback)</td>
|
|
2308
|
-
<td style="padding:15px">
|
|
2343
|
+
<td style="padding:15px">delete_healthbot_system_time-series-database_time-series-database_by_id</td>
|
|
2309
2344
|
<td style="padding:15px">{base_path}/{version}/config/system/tsdb/?{query}</td>
|
|
2310
2345
|
<td style="padding:15px">Yes</td>
|
|
2311
2346
|
</tr>
|
|
2312
2347
|
<tr>
|
|
2313
2348
|
<td style="padding:15px">retrieveHealthbotSystemTimeSeriesDatabaseTimeSeriesDatabase(working, callback)</td>
|
|
2314
|
-
<td style="padding:15px">
|
|
2349
|
+
<td style="padding:15px">retrieve_healthbot_system_time-series-database_time-series-database</td>
|
|
2315
2350
|
<td style="padding:15px">{base_path}/{version}/config/system/tsdb/?{query}</td>
|
|
2316
2351
|
<td style="padding:15px">Yes</td>
|
|
2317
2352
|
</tr>
|
|
2318
2353
|
<tr>
|
|
2319
2354
|
<td style="padding:15px">createHealthbotSystemTimeSeriesDatabaseTimeSeriesDatabaseById(forceTsdb, body, callback)</td>
|
|
2320
|
-
<td style="padding:15px">
|
|
2355
|
+
<td style="padding:15px">create_healthbot_system_time-series-database_time-series-database_by_id</td>
|
|
2321
2356
|
<td style="padding:15px">{base_path}/{version}/config/system/tsdb/?{query}</td>
|
|
2322
2357
|
<td style="padding:15px">Yes</td>
|
|
2323
2358
|
</tr>
|
|
2324
2359
|
<tr>
|
|
2325
2360
|
<td style="padding:15px">updateHealthbotSystemTimeSeriesDatabaseTimeSeriesDatabaseById(forceTsdb, body, callback)</td>
|
|
2326
|
-
<td style="padding:15px">
|
|
2361
|
+
<td style="padding:15px">update_healthbot_system_time-series-database_time-series-database_by_id</td>
|
|
2327
2362
|
<td style="padding:15px">{base_path}/{version}/config/system/tsdb/?{query}</td>
|
|
2328
2363
|
<td style="padding:15px">Yes</td>
|
|
2329
2364
|
</tr>
|
|
2330
2365
|
<tr>
|
|
2331
2366
|
<td style="padding:15px">deleteHealthbotSystemTriggerAction(callback)</td>
|
|
2332
|
-
<td style="padding:15px">
|
|
2367
|
+
<td style="padding:15px">delete_healthbot_system_trigger_action</td>
|
|
2333
2368
|
<td style="padding:15px">{base_path}/{version}/config/system/trigger_action/?{query}</td>
|
|
2334
2369
|
<td style="padding:15px">Yes</td>
|
|
2335
2370
|
</tr>
|
|
2336
2371
|
<tr>
|
|
2337
2372
|
<td style="padding:15px">retrieveHealthbotSystemTriggerAction(working, callback)</td>
|
|
2338
|
-
<td style="padding:15px">
|
|
2373
|
+
<td style="padding:15px">retrieve_healthbot_system_trigger_action</td>
|
|
2339
2374
|
<td style="padding:15px">{base_path}/{version}/config/system/trigger_action/?{query}</td>
|
|
2340
2375
|
<td style="padding:15px">Yes</td>
|
|
2341
2376
|
</tr>
|
|
2342
2377
|
<tr>
|
|
2343
2378
|
<td style="padding:15px">createHealthbotSystemTriggerAction(body, callback)</td>
|
|
2344
|
-
<td style="padding:15px">
|
|
2379
|
+
<td style="padding:15px">create_healthbot_system_trigger_action</td>
|
|
2345
2380
|
<td style="padding:15px">{base_path}/{version}/config/system/trigger_action/?{query}</td>
|
|
2346
2381
|
<td style="padding:15px">Yes</td>
|
|
2347
2382
|
</tr>
|
|
2348
2383
|
<tr>
|
|
2349
2384
|
<td style="padding:15px">updateHealthbotSystemTriggerAction(body, callback)</td>
|
|
2350
|
-
<td style="padding:15px">
|
|
2385
|
+
<td style="padding:15px">update_healthbot_system_trigger_action</td>
|
|
2351
2386
|
<td style="padding:15px">{base_path}/{version}/config/system/trigger_action/?{query}</td>
|
|
2352
2387
|
<td style="padding:15px">Yes</td>
|
|
2353
2388
|
</tr>
|
|
2354
2389
|
<tr>
|
|
2355
2390
|
<td style="padding:15px">retrieveHealthbotTopicResourceResource(topicName, working, callback)</td>
|
|
2356
|
-
<td style="padding:15px">
|
|
2391
|
+
<td style="padding:15px">retrieve_healthbot_topic_resource_resource</td>
|
|
2357
2392
|
<td style="padding:15px">{base_path}/{version}/config/topic/{pathv1}/resource/?{query}</td>
|
|
2358
2393
|
<td style="padding:15px">Yes</td>
|
|
2359
2394
|
</tr>
|
|
2360
2395
|
<tr>
|
|
2361
2396
|
<td style="padding:15px">retrieveHealthbotOrganizationOrganization(working, callback)</td>
|
|
2362
|
-
<td style="padding:15px">
|
|
2397
|
+
<td style="padding:15px">retrieve_healthbot_organization_organization</td>
|
|
2363
2398
|
<td style="padding:15px">{base_path}/{version}/config/organization/?{query}</td>
|
|
2364
2399
|
<td style="padding:15px">Yes</td>
|
|
2365
2400
|
</tr>
|
|
2366
2401
|
<tr>
|
|
2367
2402
|
<td style="padding:15px">deleteHealthbotOrganizationOrganizationById(organizationName, callback)</td>
|
|
2368
|
-
<td style="padding:15px">
|
|
2403
|
+
<td style="padding:15px">delete_healthbot_organization_organization_by_id</td>
|
|
2369
2404
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/?{query}</td>
|
|
2370
2405
|
<td style="padding:15px">Yes</td>
|
|
2371
2406
|
</tr>
|
|
2372
2407
|
<tr>
|
|
2373
2408
|
<td style="padding:15px">retrieveHealthbotOrganizationOrganizationById(organizationName, working, callback)</td>
|
|
2374
|
-
<td style="padding:15px">
|
|
2409
|
+
<td style="padding:15px">retrieve_healthbot_organization_organization_by_id</td>
|
|
2375
2410
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/?{query}</td>
|
|
2376
2411
|
<td style="padding:15px">Yes</td>
|
|
2377
2412
|
</tr>
|
|
2378
2413
|
<tr>
|
|
2379
2414
|
<td style="padding:15px">createHealthbotOrganizationOrganizationById(organizationName, body, callback)</td>
|
|
2380
|
-
<td style="padding:15px">
|
|
2415
|
+
<td style="padding:15px">create_healthbot_organization_organization_by_id</td>
|
|
2381
2416
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/?{query}</td>
|
|
2382
2417
|
<td style="padding:15px">Yes</td>
|
|
2383
2418
|
</tr>
|
|
2384
2419
|
<tr>
|
|
2385
2420
|
<td style="padding:15px">updateHealthbotOrganizationOrganizationById(organizationName, body, callback)</td>
|
|
2386
|
-
<td style="padding:15px">
|
|
2421
|
+
<td style="padding:15px">update_healthbot_organization_organization_by_id</td>
|
|
2387
2422
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/?{query}</td>
|
|
2388
2423
|
<td style="padding:15px">Yes</td>
|
|
2389
2424
|
</tr>
|
|
2390
2425
|
<tr>
|
|
2391
2426
|
<td style="padding:15px">retrieveServicesDeviceGroupsDeviceGroupDeviceGroup(callback)</td>
|
|
2392
|
-
<td style="padding:15px">
|
|
2427
|
+
<td style="padding:15px">retrieve_services_device-groups_device-group_device-group</td>
|
|
2393
2428
|
<td style="padding:15px">{base_path}/{version}/config/services/device-group/?{query}</td>
|
|
2394
2429
|
<td style="padding:15px">Yes</td>
|
|
2395
2430
|
</tr>
|
|
2396
2431
|
<tr>
|
|
2397
2432
|
<td style="padding:15px">deleteServicesDeviceGroupsDeviceGroupByDeviceGroupName(deviceGroupName, callback)</td>
|
|
2398
|
-
<td style="padding:15px">
|
|
2433
|
+
<td style="padding:15px">delete_services_device-groups_device-group_by_device_group_name</td>
|
|
2399
2434
|
<td style="padding:15px">{base_path}/{version}/config/services/device-group/{pathv1}/?{query}</td>
|
|
2400
2435
|
<td style="padding:15px">Yes</td>
|
|
2401
2436
|
</tr>
|
|
2402
2437
|
<tr>
|
|
2403
2438
|
<td style="padding:15px">createServicesDeviceGroupsDeviceGroupByDeviceGroupName(deviceGroupName, callback)</td>
|
|
2404
|
-
<td style="padding:15px">
|
|
2439
|
+
<td style="padding:15px">create_services_device-groups_device-group_by_device_group_name</td>
|
|
2405
2440
|
<td style="padding:15px">{base_path}/{version}/config/services/device-group/{pathv1}/?{query}</td>
|
|
2406
2441
|
<td style="padding:15px">Yes</td>
|
|
2407
2442
|
</tr>
|
|
2408
2443
|
<tr>
|
|
2409
2444
|
<td style="padding:15px">retrieveServicesNetworkGroup(callback)</td>
|
|
2410
|
-
<td style="padding:15px">
|
|
2445
|
+
<td style="padding:15px">retrieve_services_network-group</td>
|
|
2411
2446
|
<td style="padding:15px">{base_path}/{version}/config/services/network-group/?{query}</td>
|
|
2412
2447
|
<td style="padding:15px">Yes</td>
|
|
2413
2448
|
</tr>
|
|
2414
2449
|
<tr>
|
|
2415
2450
|
<td style="padding:15px">deleteServicesNetworkGroupByNetworkGroupName(networkGroupName, callback)</td>
|
|
2416
|
-
<td style="padding:15px">
|
|
2451
|
+
<td style="padding:15px">delete_services_network-group_by_network_group_name</td>
|
|
2417
2452
|
<td style="padding:15px">{base_path}/{version}/config/services/network-group/{pathv1}/?{query}</td>
|
|
2418
2453
|
<td style="padding:15px">Yes</td>
|
|
2419
2454
|
</tr>
|
|
2420
2455
|
<tr>
|
|
2421
2456
|
<td style="padding:15px">createServicesNetworkGroupByNetworkGroupName(networkGroupName, callback)</td>
|
|
2422
|
-
<td style="padding:15px">
|
|
2457
|
+
<td style="padding:15px">create_services_network-group_by_network_group_name</td>
|
|
2423
2458
|
<td style="padding:15px">{base_path}/{version}/config/services/network-group/{pathv1}/?{query}</td>
|
|
2424
2459
|
<td style="padding:15px">Yes</td>
|
|
2425
2460
|
</tr>
|
|
2426
2461
|
<tr>
|
|
2427
2462
|
<td style="padding:15px">get(callback)</td>
|
|
2428
|
-
<td style="padding:15px">
|
|
2463
|
+
<td style="padding:15px">retrieve_defined_api</td>
|
|
2429
2464
|
<td style="padding:15px">{base_path}/{version}/?{query}</td>
|
|
2430
2465
|
<td style="padding:15px">Yes</td>
|
|
2431
2466
|
</tr>
|
|
2432
2467
|
<tr>
|
|
2433
2468
|
<td style="padding:15px">retrieveInsightsApi(callback)</td>
|
|
2434
|
-
<td style="padding:15px">
|
|
2469
|
+
<td style="padding:15px">retrieve_insights_api</td>
|
|
2435
2470
|
<td style="padding:15px">{base_path}/{version}/insights/?{query}</td>
|
|
2436
2471
|
<td style="padding:15px">Yes</td>
|
|
2437
2472
|
</tr>
|
|
2438
2473
|
<tr>
|
|
2439
2474
|
<td style="padding:15px">deleteDataStore(groupName, key, callback)</td>
|
|
2440
|
-
<td style="padding:15px">
|
|
2475
|
+
<td style="padding:15px">delete_data_store</td>
|
|
2441
2476
|
<td style="padding:15px">{base_path}/{version}/config/data-store/{pathv1}/?{query}</td>
|
|
2442
2477
|
<td style="padding:15px">Yes</td>
|
|
2443
2478
|
</tr>
|
|
2444
2479
|
<tr>
|
|
2445
2480
|
<td style="padding:15px">retrieveDataStore(groupName, key, callback)</td>
|
|
2446
|
-
<td style="padding:15px">
|
|
2481
|
+
<td style="padding:15px">retrieve_data_store</td>
|
|
2447
2482
|
<td style="padding:15px">{base_path}/{version}/config/data-store/{pathv1}/?{query}</td>
|
|
2448
2483
|
<td style="padding:15px">Yes</td>
|
|
2449
2484
|
</tr>
|
|
2450
2485
|
<tr>
|
|
2451
2486
|
<td style="padding:15px">createDataStore(key, groupName, body, callback)</td>
|
|
2452
|
-
<td style="padding:15px">
|
|
2487
|
+
<td style="padding:15px">create_data_store</td>
|
|
2453
2488
|
<td style="padding:15px">{base_path}/{version}/config/data-store/{pathv1}/?{query}</td>
|
|
2454
2489
|
<td style="padding:15px">Yes</td>
|
|
2455
2490
|
</tr>
|
|
2456
2491
|
<tr>
|
|
2457
2492
|
<td style="padding:15px">updateDataStore(key, groupName, body, callback)</td>
|
|
2458
|
-
<td style="padding:15px">
|
|
2493
|
+
<td style="padding:15px">update_data_store</td>
|
|
2459
2494
|
<td style="padding:15px">{base_path}/{version}/config/data-store/{pathv1}/?{query}</td>
|
|
2460
2495
|
<td style="padding:15px">Yes</td>
|
|
2461
2496
|
</tr>
|
|
2462
2497
|
<tr>
|
|
2463
2498
|
<td style="padding:15px">retrieveIcebergDevicesFactsByGroup(deviceGroupName, working, update, timeout, callback)</td>
|
|
2464
|
-
<td style="padding:15px">
|
|
2499
|
+
<td style="padding:15px">retrieve_iceberg_devices_facts_by_group</td>
|
|
2465
2500
|
<td style="padding:15px">{base_path}/{version}/config/device-group/{pathv1}/facts/?{query}</td>
|
|
2466
2501
|
<td style="padding:15px">Yes</td>
|
|
2467
2502
|
</tr>
|
|
2468
2503
|
<tr>
|
|
2469
2504
|
<td style="padding:15px">retrieveIcebergDeviceDeviceFactsById(deviceId, working, update, timeout, callback)</td>
|
|
2470
|
-
<td style="padding:15px">
|
|
2505
|
+
<td style="padding:15px">retrieve_iceberg_device_device_facts_by_id</td>
|
|
2471
2506
|
<td style="padding:15px">{base_path}/{version}/config/device/{pathv1}/facts/?{query}</td>
|
|
2472
2507
|
<td style="padding:15px">Yes</td>
|
|
2473
2508
|
</tr>
|
|
2474
2509
|
<tr>
|
|
2475
2510
|
<td style="padding:15px">retrieveIcebergDevicesDevicesFacts(working, update, timeout, callback)</td>
|
|
2476
|
-
<td style="padding:15px">
|
|
2511
|
+
<td style="padding:15px">retrieve_iceberg_devices_devices_facts</td>
|
|
2477
2512
|
<td style="padding:15px">{base_path}/{version}/config/devices/facts/?{query}</td>
|
|
2478
2513
|
<td style="padding:15px">Yes</td>
|
|
2479
2514
|
</tr>
|
|
2480
2515
|
<tr>
|
|
2481
2516
|
<td style="padding:15px">deleteIcebergDeleteAllLicense(callback)</td>
|
|
2482
|
-
<td style="padding:15px">
|
|
2517
|
+
<td style="padding:15px">delete_iceberg_delete_all_license</td>
|
|
2483
2518
|
<td style="padding:15px">{base_path}/{version}/license/keys/?{query}</td>
|
|
2484
2519
|
<td style="padding:15px">Yes</td>
|
|
2485
2520
|
</tr>
|
|
2486
2521
|
<tr>
|
|
2487
2522
|
<td style="padding:15px">createIcebergAddLicenseFromFile(licenseFile, callback)</td>
|
|
2488
|
-
<td style="padding:15px">
|
|
2523
|
+
<td style="padding:15px">create_iceberg_add_license_from_file</td>
|
|
2489
2524
|
<td style="padding:15px">{base_path}/{version}/license/keys/?{query}</td>
|
|
2490
2525
|
<td style="padding:15px">Yes</td>
|
|
2491
2526
|
</tr>
|
|
2492
2527
|
<tr>
|
|
2493
2528
|
<td style="padding:15px">retrieveIcebergGetAllLicenseId(callback)</td>
|
|
2494
|
-
<td style="padding:15px">
|
|
2529
|
+
<td style="padding:15px">retrieve_iceberg_get_all_license_id</td>
|
|
2495
2530
|
<td style="padding:15px">{base_path}/{version}/license/keys/?{query}</td>
|
|
2496
2531
|
<td style="padding:15px">Yes</td>
|
|
2497
2532
|
</tr>
|
|
2498
2533
|
<tr>
|
|
2499
2534
|
<td style="padding:15px">updateIcebergReplaceLicense(body, callback)</td>
|
|
2500
|
-
<td style="padding:15px">
|
|
2535
|
+
<td style="padding:15px">update_iceberg_replace_license</td>
|
|
2501
2536
|
<td style="padding:15px">{base_path}/{version}/license/keys/?{query}</td>
|
|
2502
2537
|
<td style="padding:15px">Yes</td>
|
|
2503
2538
|
</tr>
|
|
2504
2539
|
<tr>
|
|
2505
2540
|
<td style="padding:15px">deleteIcebergDeleteLicenseById(licenseId, callback)</td>
|
|
2506
|
-
<td style="padding:15px">
|
|
2541
|
+
<td style="padding:15px">delete_iceberg_delete_license_by_id</td>
|
|
2507
2542
|
<td style="padding:15px">{base_path}/{version}/license/key/{pathv1}/?{query}</td>
|
|
2508
2543
|
<td style="padding:15px">Yes</td>
|
|
2509
2544
|
</tr>
|
|
2510
2545
|
<tr>
|
|
2511
2546
|
<td style="padding:15px">retrieveIcebergLicenseFileByLicenseId(licenseId, callback)</td>
|
|
2512
|
-
<td style="padding:15px">
|
|
2547
|
+
<td style="padding:15px">retrieve_iceberg_license_file_by_license_id</td>
|
|
2513
2548
|
<td style="padding:15px">{base_path}/{version}/license/key/{pathv1}/?{query}</td>
|
|
2514
2549
|
<td style="padding:15px">Yes</td>
|
|
2515
2550
|
</tr>
|
|
2516
2551
|
<tr>
|
|
2517
2552
|
<td style="padding:15px">retrieveIcebergLicenseKeyContents(callback)</td>
|
|
2518
|
-
<td style="padding:15px">
|
|
2553
|
+
<td style="padding:15px">retrieve_iceberg_license_key_contents</td>
|
|
2519
2554
|
<td style="padding:15px">{base_path}/{version}/license/keys/contents/?{query}</td>
|
|
2520
2555
|
<td style="padding:15px">Yes</td>
|
|
2521
2556
|
</tr>
|
|
2522
2557
|
<tr>
|
|
2523
2558
|
<td style="padding:15px">retrieveIcebergLicenseKeyContentsById(licenseId, callback)</td>
|
|
2524
|
-
<td style="padding:15px">
|
|
2559
|
+
<td style="padding:15px">retrieve_iceberg_license_key_contents_by_id</td>
|
|
2525
2560
|
<td style="padding:15px">{base_path}/{version}/license/key/{pathv1}/contents/?{query}</td>
|
|
2526
2561
|
<td style="padding:15px">Yes</td>
|
|
2527
2562
|
</tr>
|
|
2528
2563
|
<tr>
|
|
2529
2564
|
<td style="padding:15px">retrieveIcebergLicenseFeaturesInfo(callback)</td>
|
|
2530
|
-
<td style="padding:15px">
|
|
2565
|
+
<td style="padding:15px">retrieve_iceberg_license_features_info</td>
|
|
2531
2566
|
<td style="padding:15px">{base_path}/{version}/license/status/?{query}</td>
|
|
2532
2567
|
<td style="padding:15px">Yes</td>
|
|
2533
2568
|
</tr>
|
|
2534
2569
|
<tr>
|
|
2535
2570
|
<td style="padding:15px">retrieveAvailableNodes(callback)</td>
|
|
2536
|
-
<td style="padding:15px">
|
|
2571
|
+
<td style="padding:15px">retrieve_available_nodes</td>
|
|
2537
2572
|
<td style="padding:15px">{base_path}/{version}/nodes/?{query}</td>
|
|
2538
2573
|
<td style="padding:15px">Yes</td>
|
|
2539
2574
|
</tr>
|
|
2540
2575
|
<tr>
|
|
2541
2576
|
<td style="padding:15px">retrieveTsdbCounters(callback)</td>
|
|
2542
|
-
<td style="padding:15px">
|
|
2577
|
+
<td style="padding:15px">retrieve_tsdb_counters</td>
|
|
2543
2578
|
<td style="padding:15px">{base_path}/{version}/tsdb-counters/?{query}</td>
|
|
2544
2579
|
<td style="padding:15px">Yes</td>
|
|
2545
2580
|
</tr>
|
|
2546
2581
|
<tr>
|
|
2547
2582
|
<td style="padding:15px">queryTsdb(db, deviceGroup, device, measurement, topic, rule, trigger, fields, order, groupBy, limit, where, q, callback)</td>
|
|
2548
|
-
<td style="padding:15px">
|
|
2583
|
+
<td style="padding:15px">query_tsdb</td>
|
|
2549
2584
|
<td style="padding:15px">{base_path}/{version}/tsdb/query?{query}</td>
|
|
2550
2585
|
<td style="padding:15px">Yes</td>
|
|
2551
2586
|
</tr>
|
|
2552
2587
|
<tr>
|
|
2553
2588
|
<td style="padding:15px">queryTsdbPost(db, deviceGroup, device, measurement, topic, rule, trigger, fields, order, groupBy, limit, where, q, body, callback)</td>
|
|
2554
|
-
<td style="padding:15px">
|
|
2589
|
+
<td style="padding:15px">query_tsdb_post</td>
|
|
2555
2590
|
<td style="padding:15px">{base_path}/{version}/tsdb/query?{query}</td>
|
|
2556
2591
|
<td style="padding:15px">Yes</td>
|
|
2557
2592
|
</tr>
|
|
2558
2593
|
<tr>
|
|
2559
2594
|
<td style="padding:15px">generateResourceDependencies(callback)</td>
|
|
2560
|
-
<td style="padding:15px">
|
|
2595
|
+
<td style="padding:15px">generate_resource_dependencies</td>
|
|
2561
2596
|
<td style="padding:15px">{base_path}/{version}/config/rca/generate-resource-dependencies?{query}</td>
|
|
2562
2597
|
<td style="padding:15px">Yes</td>
|
|
2563
2598
|
</tr>
|
|
2564
2599
|
<tr>
|
|
2565
2600
|
<td style="padding:15px">retrieveSensorDeviceGroup(deviceGroupName, callback)</td>
|
|
2566
|
-
<td style="padding:15px">
|
|
2601
|
+
<td style="padding:15px">retrieve_sensor_device_group</td>
|
|
2567
2602
|
<td style="padding:15px">{base_path}/{version}/config/sensor/device-group/{pathv1}/?{query}</td>
|
|
2568
2603
|
<td style="padding:15px">Yes</td>
|
|
2569
2604
|
</tr>
|
|
2570
2605
|
<tr>
|
|
2571
2606
|
<td style="padding:15px">retrieveSystemDetails(serviceName, callback)</td>
|
|
2572
|
-
<td style="padding:15px">
|
|
2607
|
+
<td style="padding:15px">retrieve_system_details</td>
|
|
2573
2608
|
<td style="padding:15px">{base_path}/{version}/system-details/?{query}</td>
|
|
2574
2609
|
<td style="padding:15px">Yes</td>
|
|
2575
2610
|
</tr>
|
|
2576
2611
|
<tr>
|
|
2577
2612
|
<td style="padding:15px">userLogin(body, callback)</td>
|
|
2578
|
-
<td style="padding:15px">
|
|
2613
|
+
<td style="padding:15px">user_login</td>
|
|
2579
2614
|
<td style="padding:15px">{base_path}/{version}/login/?{query}</td>
|
|
2580
2615
|
<td style="padding:15px">Yes</td>
|
|
2581
2616
|
</tr>
|
|
2582
2617
|
<tr>
|
|
2583
2618
|
<td style="padding:15px">userLogout(body, callback)</td>
|
|
2584
|
-
<td style="padding:15px">
|
|
2619
|
+
<td style="padding:15px">user_logout</td>
|
|
2585
2620
|
<td style="padding:15px">{base_path}/{version}/logout/?{query}</td>
|
|
2586
2621
|
<td style="padding:15px">Yes</td>
|
|
2587
2622
|
</tr>
|
|
2588
2623
|
<tr>
|
|
2589
2624
|
<td style="padding:15px">refreshToken(body, callback)</td>
|
|
2590
|
-
<td style="padding:15px">
|
|
2625
|
+
<td style="padding:15px">refresh_token</td>
|
|
2591
2626
|
<td style="padding:15px">{base_path}/{version}/token/?{query}</td>
|
|
2592
2627
|
<td style="padding:15px">Yes</td>
|
|
2593
2628
|
</tr>
|
|
2594
2629
|
<tr>
|
|
2595
2630
|
<td style="padding:15px">healthbotAlterAppSettings(body, callback)</td>
|
|
2596
|
-
<td style="padding:15px">
|
|
2631
|
+
<td style="padding:15px">healthbot_alter_app_settings</td>
|
|
2597
2632
|
<td style="padding:15px">{base_path}/{version}/config/app-settings/?{query}</td>
|
|
2598
2633
|
<td style="padding:15px">Yes</td>
|
|
2599
2634
|
</tr>
|
|
2600
2635
|
<tr>
|
|
2601
2636
|
<td style="padding:15px">deleteHealthbotOrganizationSiteSiteById(organizationName, siteName, callback)</td>
|
|
2602
|
-
<td style="padding:15px">
|
|
2637
|
+
<td style="padding:15px">delete_healthbot_organization_site_site_by_id</td>
|
|
2603
2638
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/?{query}</td>
|
|
2604
2639
|
<td style="padding:15px">Yes</td>
|
|
2605
2640
|
</tr>
|
|
2606
2641
|
<tr>
|
|
2607
2642
|
<td style="padding:15px">retrieveHealthbotOrganizationSiteSiteById(organizationName, siteName, working, callback)</td>
|
|
2608
|
-
<td style="padding:15px">
|
|
2643
|
+
<td style="padding:15px">retrieve_healthbot_organization_site_site_by_id</td>
|
|
2609
2644
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/?{query}</td>
|
|
2610
2645
|
<td style="padding:15px">Yes</td>
|
|
2611
2646
|
</tr>
|
|
2612
2647
|
<tr>
|
|
2613
2648
|
<td style="padding:15px">createHealthbotOrganizationSiteSiteById(organizationName, siteName, body, callback)</td>
|
|
2614
|
-
<td style="padding:15px">
|
|
2649
|
+
<td style="padding:15px">create_healthbot_organization_site_site_by_id</td>
|
|
2615
2650
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/?{query}</td>
|
|
2616
2651
|
<td style="padding:15px">Yes</td>
|
|
2617
2652
|
</tr>
|
|
2618
2653
|
<tr>
|
|
2619
2654
|
<td style="padding:15px">updateHealthbotOrganizationSiteSiteById(organizationName, siteName, body, callback)</td>
|
|
2620
|
-
<td style="padding:15px">
|
|
2655
|
+
<td style="padding:15px">update_healthbot_organization_site_site_by_id</td>
|
|
2621
2656
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/?{query}</td>
|
|
2622
2657
|
<td style="padding:15px">Yes</td>
|
|
2623
2658
|
</tr>
|
|
2624
2659
|
<tr>
|
|
2625
2660
|
<td style="padding:15px">deleteHealthbotOrganizationSiteEdgeEdgeById(organizationName, siteName, edgeName, callback)</td>
|
|
2626
|
-
<td style="padding:15px">
|
|
2661
|
+
<td style="padding:15px">delete_healthbot_organization_site_edge_edge_by_id</td>
|
|
2627
2662
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/edge/{pathv3}/?{query}</td>
|
|
2628
2663
|
<td style="padding:15px">Yes</td>
|
|
2629
2664
|
</tr>
|
|
2630
2665
|
<tr>
|
|
2631
2666
|
<td style="padding:15px">retrieveHealthbotOrganizationSiteEdgeEdgeById(organizationName, siteName, edgeName, working, callback)</td>
|
|
2632
|
-
<td style="padding:15px">
|
|
2667
|
+
<td style="padding:15px">retrieve_healthbot_organization_site_edge_edge_by_id</td>
|
|
2633
2668
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/edge/{pathv3}/?{query}</td>
|
|
2634
2669
|
<td style="padding:15px">Yes</td>
|
|
2635
2670
|
</tr>
|
|
2636
2671
|
<tr>
|
|
2637
2672
|
<td style="padding:15px">createHealthbotOrganizationSiteEdgeEdgeById(organizationName, siteName, edgeName, body, callback)</td>
|
|
2638
|
-
<td style="padding:15px">
|
|
2673
|
+
<td style="padding:15px">create_healthbot_organization_site_edge_edge_by_id</td>
|
|
2639
2674
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/edge/{pathv3}/?{query}</td>
|
|
2640
2675
|
<td style="padding:15px">Yes</td>
|
|
2641
2676
|
</tr>
|
|
2642
2677
|
<tr>
|
|
2643
2678
|
<td style="padding:15px">updateHealthbotOrganizationSiteEdgeEdgeById(organizationName, siteName, edgeName, body, callback)</td>
|
|
2644
|
-
<td style="padding:15px">
|
|
2679
|
+
<td style="padding:15px">update_healthbot_organization_site_edge_edge_by_id</td>
|
|
2645
2680
|
<td style="padding:15px">{base_path}/{version}/config/organization/{pathv1}/site/{pathv2}/edge/{pathv3}/?{query}</td>
|
|
2646
2681
|
<td style="padding:15px">Yes</td>
|
|
2647
2682
|
</tr>
|
|
2648
2683
|
<tr>
|
|
2649
2684
|
<td style="padding:15px">retrieveHealthbotWorkflowWorkflow(working, callback)</td>
|
|
2650
|
-
<td style="padding:15px">
|
|
2685
|
+
<td style="padding:15px">retrieve_healthbot_workflow_workflow</td>
|
|
2651
2686
|
<td style="padding:15px">{base_path}/{version}/config/workflow/?{query}</td>
|
|
2652
2687
|
<td style="padding:15px">Yes</td>
|
|
2653
2688
|
</tr>
|
|
2654
2689
|
<tr>
|
|
2655
2690
|
<td style="padding:15px">deleteHealthbotWorkflowWorkflowById(workflowName, callback)</td>
|
|
2656
|
-
<td style="padding:15px">
|
|
2691
|
+
<td style="padding:15px">delete_healthbot_workflow_workflow_by_id</td>
|
|
2657
2692
|
<td style="padding:15px">{base_path}/{version}/config/workflow/{pathv1}/?{query}</td>
|
|
2658
2693
|
<td style="padding:15px">Yes</td>
|
|
2659
2694
|
</tr>
|
|
2660
2695
|
<tr>
|
|
2661
2696
|
<td style="padding:15px">retrieveHealthbotWorkflowWorkflowById(workflowName, working, callback)</td>
|
|
2662
|
-
<td style="padding:15px">
|
|
2697
|
+
<td style="padding:15px">retrieve_healthbot_workflow_workflow_by_id</td>
|
|
2663
2698
|
<td style="padding:15px">{base_path}/{version}/config/workflow/{pathv1}/?{query}</td>
|
|
2664
2699
|
<td style="padding:15px">Yes</td>
|
|
2665
2700
|
</tr>
|
|
2666
2701
|
<tr>
|
|
2667
2702
|
<td style="padding:15px">createHealthbotWorkflowWorkflowById(workflowName, body, callback)</td>
|
|
2668
|
-
<td style="padding:15px">
|
|
2703
|
+
<td style="padding:15px">create_healthbot_workflow_workflow_by_id</td>
|
|
2669
2704
|
<td style="padding:15px">{base_path}/{version}/config/workflow/{pathv1}/?{query}</td>
|
|
2670
2705
|
<td style="padding:15px">Yes</td>
|
|
2671
2706
|
</tr>
|
|
2672
2707
|
<tr>
|
|
2673
2708
|
<td style="padding:15px">updateHealthbotWorkflowWorkflowById(workflowName, body, callback)</td>
|
|
2674
|
-
<td style="padding:15px">
|
|
2709
|
+
<td style="padding:15px">update_healthbot_workflow_workflow_by_id</td>
|
|
2675
2710
|
<td style="padding:15px">{base_path}/{version}/config/workflow/{pathv1}/?{query}</td>
|
|
2676
2711
|
<td style="padding:15px">Yes</td>
|
|
2677
2712
|
</tr>
|
|
2678
2713
|
<tr>
|
|
2679
2714
|
<td style="padding:15px">deleteHealthbotWorkflowsWorkflowById(callback)</td>
|
|
2680
|
-
<td style="padding:15px">
|
|
2715
|
+
<td style="padding:15px">delete_healthbot_workflows_workflow_by_id</td>
|
|
2681
2716
|
<td style="padding:15px">{base_path}/{version}/config/workflows/?{query}</td>
|
|
2682
2717
|
<td style="padding:15px">Yes</td>
|
|
2683
2718
|
</tr>
|
|
2684
2719
|
<tr>
|
|
2685
2720
|
<td style="padding:15px">retrieveHealthbotWorkflowsWorkflowById(working, callback)</td>
|
|
2686
|
-
<td style="padding:15px">
|
|
2721
|
+
<td style="padding:15px">retrieve_healthbot_workflows_workflow_by_id</td>
|
|
2687
2722
|
<td style="padding:15px">{base_path}/{version}/config/workflows/?{query}</td>
|
|
2688
2723
|
<td style="padding:15px">Yes</td>
|
|
2689
2724
|
</tr>
|
|
2690
2725
|
<tr>
|
|
2691
2726
|
<td style="padding:15px">createHealthbotWorkflowsWorkflowById(body, callback)</td>
|
|
2692
|
-
<td style="padding:15px">
|
|
2727
|
+
<td style="padding:15px">create_healthbot_workflows_workflow_by_id</td>
|
|
2693
2728
|
<td style="padding:15px">{base_path}/{version}/config/workflows/?{query}</td>
|
|
2694
2729
|
<td style="padding:15px">Yes</td>
|
|
2695
2730
|
</tr>
|
|
2696
2731
|
<tr>
|
|
2697
2732
|
<td style="padding:15px">updateHealthbotWorkflowsWorkflowById(body, callback)</td>
|
|
2698
|
-
<td style="padding:15px">
|
|
2733
|
+
<td style="padding:15px">update_healthbot_workflows_workflow_by_id</td>
|
|
2699
2734
|
<td style="padding:15px">{base_path}/{version}/config/workflows/?{query}</td>
|
|
2700
2735
|
<td style="padding:15px">Yes</td>
|
|
2701
2736
|
</tr>
|
|
2702
2737
|
<tr>
|
|
2703
2738
|
<td style="padding:15px">retrieveInstancesScheduleState(groupName, groupType, callback)</td>
|
|
2704
|
-
<td style="padding:15px">
|
|
2739
|
+
<td style="padding:15px">retrieve_instances_schedule_state</td>
|
|
2705
2740
|
<td style="padding:15px">{base_path}/{version}/config/instances-schedule-state/{pathv1}/{pathv2}/?{query}</td>
|
|
2706
2741
|
<td style="padding:15px">Yes</td>
|
|
2707
2742
|
</tr>
|
|
2708
2743
|
<tr>
|
|
2709
2744
|
<td style="padding:15px">updateInstancesScheduleState(groupName, groupType, body, callback)</td>
|
|
2710
|
-
<td style="padding:15px">
|
|
2745
|
+
<td style="padding:15px">update_instances_schedule_state</td>
|
|
2711
2746
|
<td style="padding:15px">{base_path}/{version}/config/instances-schedule-state/{pathv1}/{pathv2}/?{query}</td>
|
|
2712
2747
|
<td style="padding:15px">Yes</td>
|
|
2713
2748
|
</tr>
|
|
2714
2749
|
<tr>
|
|
2715
2750
|
<td style="padding:15px">retrieveLogsForDeviceGroup(deviceGroupName, download, filename, callback)</td>
|
|
2716
|
-
<td style="padding:15px">
|
|
2751
|
+
<td style="padding:15px">retrieve_logs_for_device_group</td>
|
|
2717
2752
|
<td style="padding:15px">{base_path}/{version}/logs/device-group/{pathv1}/?{query}</td>
|
|
2718
2753
|
<td style="padding:15px">Yes</td>
|
|
2719
2754
|
</tr>
|
|
2720
2755
|
<tr>
|
|
2721
2756
|
<td style="padding:15px">retrieveLogsForDeviceGroupService(deviceGroupName, serviceName, download, filename, numberOfLines, callback)</td>
|
|
2722
|
-
<td style="padding:15px">
|
|
2757
|
+
<td style="padding:15px">retrieve_logs_for_device_group_service</td>
|
|
2723
2758
|
<td style="padding:15px">{base_path}/{version}/logs/device-group/{pathv1}/service/{pathv2}/?{query}</td>
|
|
2724
2759
|
<td style="padding:15px">Yes</td>
|
|
2725
2760
|
</tr>
|
|
2726
2761
|
<tr>
|
|
2727
2762
|
<td style="padding:15px">retrieveLogsForNetworkGroup(networkGroupName, download, filename, callback)</td>
|
|
2728
|
-
<td style="padding:15px">
|
|
2763
|
+
<td style="padding:15px">retrieve_logs_for_network_group</td>
|
|
2729
2764
|
<td style="padding:15px">{base_path}/{version}/logs/network-group/{pathv1}/?{query}</td>
|
|
2730
2765
|
<td style="padding:15px">Yes</td>
|
|
2731
2766
|
</tr>
|
|
2732
2767
|
<tr>
|
|
2733
2768
|
<td style="padding:15px">retrieveLogsForNetworkGroupService(networkGroupName, serviceName, download, filename, numberOfLines, callback)</td>
|
|
2734
|
-
<td style="padding:15px">
|
|
2769
|
+
<td style="padding:15px">retrieve_logs_for_network_group_service</td>
|
|
2735
2770
|
<td style="padding:15px">{base_path}/{version}/logs/network-group/{pathv1}/service/{pathv2}/?{query}</td>
|
|
2736
2771
|
<td style="padding:15px">Yes</td>
|
|
2737
2772
|
</tr>
|
|
2738
2773
|
<tr>
|
|
2739
2774
|
<td style="padding:15px">retrieveDebugForScenario(scenarioName, body, callback)</td>
|
|
2740
|
-
<td style="padding:15px">
|
|
2775
|
+
<td style="padding:15px">retrieve_debug_for_scenario</td>
|
|
2741
2776
|
<td style="padding:15px">{base_path}/{version}/debug/scenario/{pathv1}/?{query}</td>
|
|
2742
2777
|
<td style="padding:15px">Yes</td>
|
|
2743
2778
|
</tr>
|
|
2744
2779
|
<tr>
|
|
2745
2780
|
<td style="padding:15px">healthbotDebugGenerateConfiguration(callback)</td>
|
|
2746
|
-
<td style="padding:15px">
|
|
2781
|
+
<td style="padding:15px">healthbot_debug_generate_configuration</td>
|
|
2747
2782
|
<td style="padding:15px">{base_path}/{version}/debug/configuration/?{query}</td>
|
|
2748
2783
|
<td style="padding:15px">Yes</td>
|
|
2749
2784
|
</tr>
|
|
2750
2785
|
<tr>
|
|
2751
2786
|
<td style="padding:15px">retrieveDebugJobs(jobId, callback)</td>
|
|
2752
|
-
<td style="padding:15px">
|
|
2787
|
+
<td style="padding:15px">retrieve_debug_jobs</td>
|
|
2753
2788
|
<td style="padding:15px">{base_path}/{version}/debug/jobs/?{query}</td>
|
|
2754
2789
|
<td style="padding:15px">Yes</td>
|
|
2755
2790
|
</tr>
|
|
2756
2791
|
<tr>
|
|
2757
2792
|
<td style="padding:15px">deleteHealthbotWorkflowInstanceById(workflowName, workflowInstanceName, callback)</td>
|
|
2758
|
-
<td style="padding:15px">
|
|
2793
|
+
<td style="padding:15px">delete_healthbot_workflow_instance_by_id</td>
|
|
2759
2794
|
<td style="padding:15px">{base_path}/{version}/workflow-instance/{pathv1}/?{query}</td>
|
|
2760
2795
|
<td style="padding:15px">Yes</td>
|
|
2761
2796
|
</tr>
|
|
2762
2797
|
<tr>
|
|
2763
2798
|
<td style="padding:15px">retrieveHealthbotWorkflowInstanceById(workflowName, workflowInstanceName, extensive, callback)</td>
|
|
2764
|
-
<td style="padding:15px">
|
|
2799
|
+
<td style="padding:15px">retrieve_healthbot_workflow_instance_by_id</td>
|
|
2765
2800
|
<td style="padding:15px">{base_path}/{version}/workflow-instance/{pathv1}/?{query}</td>
|
|
2766
2801
|
<td style="padding:15px">Yes</td>
|
|
2767
2802
|
</tr>
|
|
2768
2803
|
<tr>
|
|
2769
2804
|
<td style="padding:15px">updateHealthbotWorkflowInstanceById(workflowName, operation, workflowInstanceName, callback)</td>
|
|
2770
|
-
<td style="padding:15px">
|
|
2805
|
+
<td style="padding:15px">update_healthbot_workflow_instance_by_id</td>
|
|
2771
2806
|
<td style="padding:15px">{base_path}/{version}/workflow-instance/{pathv1}/?{query}</td>
|
|
2772
2807
|
<td style="padding:15px">Yes</td>
|
|
2773
2808
|
</tr>
|
|
2774
2809
|
<tr>
|
|
2775
2810
|
<td style="padding:15px">createHealthbotWorkflowInstanceById(workflowName, body, callback)</td>
|
|
2776
|
-
<td style="padding:15px">
|
|
2811
|
+
<td style="padding:15px">create_healthbot_workflow_instance_by_id</td>
|
|
2777
2812
|
<td style="padding:15px">{base_path}/{version}/workflow-instance/{pathv1}/?{query}</td>
|
|
2778
2813
|
<td style="padding:15px">Yes</td>
|
|
2779
2814
|
</tr>
|
|
2780
2815
|
<tr>
|
|
2781
2816
|
<td style="padding:15px">deleteHealthbotWorkflowInstances(callback)</td>
|
|
2782
|
-
<td style="padding:15px">
|
|
2817
|
+
<td style="padding:15px">delete_healthbot_workflow_instances</td>
|
|
2783
2818
|
<td style="padding:15px">{base_path}/{version}/workflow-instances/?{query}</td>
|
|
2784
2819
|
<td style="padding:15px">Yes</td>
|
|
2785
2820
|
</tr>
|
|
2786
2821
|
<tr>
|
|
2787
2822
|
<td style="padding:15px">retrieveHealthbotWorkflowInstances(callback)</td>
|
|
2788
|
-
<td style="padding:15px">
|
|
2823
|
+
<td style="padding:15px">retrieve_healthbot_workflow_instances</td>
|
|
2789
2824
|
<td style="padding:15px">{base_path}/{version}/workflow-instances/?{query}</td>
|
|
2790
2825
|
<td style="padding:15px">Yes</td>
|
|
2791
2826
|
</tr>
|
|
2792
2827
|
<tr>
|
|
2793
2828
|
<td style="padding:15px">updateHealthbotWorkflowInstances(operation, callback)</td>
|
|
2794
|
-
<td style="padding:15px">
|
|
2829
|
+
<td style="padding:15px">update_healthbot_workflow_instances</td>
|
|
2795
2830
|
<td style="padding:15px">{base_path}/{version}/workflow-instances/?{query}</td>
|
|
2796
2831
|
<td style="padding:15px">Yes</td>
|
|
2797
2832
|
</tr>
|
|
2798
2833
|
<tr>
|
|
2799
2834
|
<td style="padding:15px">retrieveHealthbotWorkflowStatistics(callback)</td>
|
|
2800
|
-
<td style="padding:15px">
|
|
2835
|
+
<td style="padding:15px">retrieve_healthbot_workflow_statistics</td>
|
|
2801
2836
|
<td style="padding:15px">{base_path}/{version}/workflow-statistics/?{query}</td>
|
|
2802
2837
|
<td style="padding:15px">Yes</td>
|
|
2803
2838
|
</tr>
|
|
2804
2839
|
<tr>
|
|
2805
2840
|
<td style="padding:15px">retrieveDataDatabaseTable(deviceId, deviceGroupName, networkGroupName, callback)</td>
|
|
2806
|
-
<td style="padding:15px">
|
|
2841
|
+
<td style="padding:15px">retrieve_data_database_table</td>
|
|
2807
2842
|
<td style="padding:15px">{base_path}/{version}/data/database/table/?{query}</td>
|
|
2808
2843
|
<td style="padding:15px">Yes</td>
|
|
2809
2844
|
</tr>
|
|
2810
2845
|
<tr>
|
|
2811
2846
|
<td style="padding:15px">retrieveDataDatabaseTableColumnByTableName(tableName, deviceId, deviceGroupName, networkGroupName, callback)</td>
|
|
2812
|
-
<td style="padding:15px">
|
|
2847
|
+
<td style="padding:15px">retrieve_data_database_table_column_by_table_name</td>
|
|
2813
2848
|
<td style="padding:15px">{base_path}/{version}/data/database/table/column/?{query}</td>
|
|
2814
2849
|
<td style="padding:15px">Yes</td>
|
|
2815
2850
|
</tr>
|
|
2816
2851
|
<tr>
|
|
2817
2852
|
<td style="padding:15px">retrieveDataDatabaseTagsByTableName(tableName, deviceId, deviceGroupName, networkGroupName, tag, whereClause, callback)</td>
|
|
2818
|
-
<td style="padding:15px">
|
|
2853
|
+
<td style="padding:15px">retrieve_data_database_tags_by_table_name</td>
|
|
2819
2854
|
<td style="padding:15px">{base_path}/{version}/data/database/table/tags/?{query}</td>
|
|
2820
2855
|
<td style="padding:15px">Yes</td>
|
|
2821
2856
|
</tr>
|
|
2822
2857
|
<tr>
|
|
2823
2858
|
<td style="padding:15px">retrieveHealthbotDeviceDetailsByUuids(body, callback)</td>
|
|
2824
|
-
<td style="padding:15px">
|
|
2859
|
+
<td style="padding:15px">retrieve_healthbot_device_details_by_uuids</td>
|
|
2825
2860
|
<td style="padding:15px">{base_path}/{version}/deployed-device-details/?{query}</td>
|
|
2826
2861
|
<td style="padding:15px">Yes</td>
|
|
2827
2862
|
</tr>
|
|
2828
2863
|
<tr>
|
|
2829
2864
|
<td style="padding:15px">retrieveEvents(fromTimestamp, toTimestamp, color, callback)</td>
|
|
2830
|
-
<td style="padding:15px">
|
|
2865
|
+
<td style="padding:15px">retrieve_events</td>
|
|
2831
2866
|
<td style="padding:15px">{base_path}/{version}/events/?{query}</td>
|
|
2832
2867
|
<td style="padding:15px">Yes</td>
|
|
2833
2868
|
</tr>
|
|
2834
2869
|
<tr>
|
|
2835
2870
|
<td style="padding:15px">retrieveEvent(fromTimestamp, deviceId, toTimestamp, deviceGroupName, granularity, color, callback)</td>
|
|
2836
|
-
<td style="padding:15px">
|
|
2871
|
+
<td style="padding:15px">retrieve_event</td>
|
|
2837
2872
|
<td style="padding:15px">{base_path}/{version}/event/?{query}</td>
|
|
2838
2873
|
<td style="padding:15px">Yes</td>
|
|
2839
2874
|
</tr>
|
|
2840
2875
|
<tr>
|
|
2841
2876
|
<td style="padding:15px">retrieveEventDeviceGroup(fromTimestamp, deviceGroupName, toTimestamp, granularity, deviceId, color, callback)</td>
|
|
2842
|
-
<td style="padding:15px">
|
|
2877
|
+
<td style="padding:15px">retrieve_event_device_group</td>
|
|
2843
2878
|
<td style="padding:15px">{base_path}/{version}/event/device-group/?{query}</td>
|
|
2844
2879
|
<td style="padding:15px">Yes</td>
|
|
2845
2880
|
</tr>
|
|
2846
2881
|
<tr>
|
|
2847
2882
|
<td style="padding:15px">retrieveEventByEventNameDeviceGroup(eventName, fromTimestamp, deviceGroupName, toTimestamp, granularity, deviceId, color, callback)</td>
|
|
2848
|
-
<td style="padding:15px">
|
|
2883
|
+
<td style="padding:15px">retrieve_event_by_event_name_device_group</td>
|
|
2849
2884
|
<td style="padding:15px">{base_path}/{version}/event/device-group/{pathv1}/?{query}</td>
|
|
2850
2885
|
<td style="padding:15px">Yes</td>
|
|
2851
2886
|
</tr>
|
|
2852
2887
|
<tr>
|
|
2853
2888
|
<td style="padding:15px">retrieveEventNetworkGroup(fromTimestamp, networkGroupName, toTimestamp, granularity, color, callback)</td>
|
|
2854
|
-
<td style="padding:15px">
|
|
2889
|
+
<td style="padding:15px">retrieve_event_network_group</td>
|
|
2855
2890
|
<td style="padding:15px">{base_path}/{version}/event/network-group/?{query}</td>
|
|
2856
2891
|
<td style="padding:15px">Yes</td>
|
|
2857
2892
|
</tr>
|
|
2858
2893
|
<tr>
|
|
2859
2894
|
<td style="padding:15px">retrieveEventByEventNameNetworkGroup(eventName, fromTimestamp, networkGroupName, toTimestamp, granularity, color, callback)</td>
|
|
2860
|
-
<td style="padding:15px">
|
|
2895
|
+
<td style="padding:15px">retrieve_event_by_event_name_network_group</td>
|
|
2861
2896
|
<td style="padding:15px">{base_path}/{version}/event/network-group/{pathv1}/?{query}</td>
|
|
2862
2897
|
<td style="padding:15px">Yes</td>
|
|
2863
2898
|
</tr>
|
|
2864
2899
|
<tr>
|
|
2865
2900
|
<td style="padding:15px">retrieveEventByEventName(eventName, fromTimestamp, deviceId, toTimestamp, deviceGroupName, granularity, color, callback)</td>
|
|
2866
|
-
<td style="padding:15px">
|
|
2901
|
+
<td style="padding:15px">retrieve_event_by_event_name</td>
|
|
2867
2902
|
<td style="padding:15px">{base_path}/{version}/event/{pathv1}/?{query}</td>
|
|
2868
2903
|
<td style="padding:15px">Yes</td>
|
|
2869
2904
|
</tr>
|
|
2870
2905
|
<tr>
|
|
2871
2906
|
<td style="padding:15px">getFieldsFromXpath(xpath, timestamp, callback)</td>
|
|
2872
|
-
<td style="padding:15px">
|
|
2907
|
+
<td style="padding:15px">get_fields_from_xpath</td>
|
|
2873
2908
|
<td style="padding:15px">{base_path}/{version}/field-capture/?{query}</td>
|
|
2874
2909
|
<td style="padding:15px">Yes</td>
|
|
2875
2910
|
</tr>
|
|
2876
2911
|
<tr>
|
|
2877
2912
|
<td style="padding:15px">restoreGrafana(restoreFile, callback)</td>
|
|
2878
|
-
<td style="padding:15px">
|
|
2913
|
+
<td style="padding:15px">restore_grafana</td>
|
|
2879
2914
|
<td style="padding:15px">{base_path}/{version}/grafana/restore/?{query}</td>
|
|
2880
2915
|
<td style="padding:15px">Yes</td>
|
|
2881
2916
|
</tr>
|
|
2882
2917
|
<tr>
|
|
2883
2918
|
<td style="padding:15px">backupGrafana(callback)</td>
|
|
2884
|
-
<td style="padding:15px">
|
|
2919
|
+
<td style="padding:15px">backup_grafana</td>
|
|
2885
2920
|
<td style="padding:15px">{base_path}/{version}/grafana/backup/?{query}</td>
|
|
2886
2921
|
<td style="padding:15px">Yes</td>
|
|
2887
2922
|
</tr>
|
|
2888
2923
|
<tr>
|
|
2889
2924
|
<td style="padding:15px">getGrafanaLogin(callback)</td>
|
|
2890
|
-
<td style="padding:15px">
|
|
2925
|
+
<td style="padding:15px">grafana_login</td>
|
|
2891
2926
|
<td style="padding:15px">{base_path}/{version}/grafana/login/?{query}</td>
|
|
2892
2927
|
<td style="padding:15px">Yes</td>
|
|
2893
2928
|
</tr>
|
|
2894
2929
|
<tr>
|
|
2895
2930
|
<td style="padding:15px">retrieveHealthTreeByDeviceGroup(deviceGroupName, timestamp, tolerance, device, callback)</td>
|
|
2896
|
-
<td style="padding:15px">
|
|
2931
|
+
<td style="padding:15px">retrieve_health_tree_by_device_group</td>
|
|
2897
2932
|
<td style="padding:15px">{base_path}/{version}/health-tree/device-group/{pathv1}/?{query}</td>
|
|
2898
2933
|
<td style="padding:15px">Yes</td>
|
|
2899
2934
|
</tr>
|
|
2900
2935
|
<tr>
|
|
2901
2936
|
<td style="padding:15px">retrieveHealthTreeByNetworkGroup(networkGroupName, timestamp, tolerance, callback)</td>
|
|
2902
|
-
<td style="padding:15px">
|
|
2937
|
+
<td style="padding:15px">retrieve_health_tree_by_network_group</td>
|
|
2903
2938
|
<td style="padding:15px">{base_path}/{version}/health-tree/network-group/{pathv1}/?{query}</td>
|
|
2904
2939
|
<td style="padding:15px">Yes</td>
|
|
2905
2940
|
</tr>
|
|
2906
2941
|
<tr>
|
|
2907
2942
|
<td style="padding:15px">retrieveHealthTreeById(deviceId, timestamp, tolerance, callback)</td>
|
|
2908
|
-
<td style="padding:15px">
|
|
2943
|
+
<td style="padding:15px">retrieve_health_tree_by_id</td>
|
|
2909
2944
|
<td style="padding:15px">{base_path}/{version}/health-tree/{pathv1}/?{query}</td>
|
|
2910
2945
|
<td style="padding:15px">Yes</td>
|
|
2911
2946
|
</tr>
|
|
2912
2947
|
<tr>
|
|
2913
2948
|
<td style="padding:15px">retrieveHealthAll(callback)</td>
|
|
2914
|
-
<td style="padding:15px">
|
|
2949
|
+
<td style="padding:15px">retrieve_health_all</td>
|
|
2915
2950
|
<td style="padding:15px">{base_path}/{version}/health/?{query}</td>
|
|
2916
2951
|
<td style="padding:15px">Yes</td>
|
|
2917
2952
|
</tr>
|
|
2918
2953
|
<tr>
|
|
2919
2954
|
<td style="padding:15px">postInspectCommandRpcTable(body, callback)</td>
|
|
2920
|
-
<td style="padding:15px">
|
|
2955
|
+
<td style="padding:15px">inspect_command_rpc_table_on_device</td>
|
|
2921
2956
|
<td style="padding:15px">{base_path}/{version}/inspect/command-rpc/table/?{query}</td>
|
|
2922
2957
|
<td style="padding:15px">Yes</td>
|
|
2923
2958
|
</tr>
|
|
2959
|
+
<tr>
|
|
2960
|
+
<td style="padding:15px">retrieveDeviceTriggerInfo(deviceId, callback)</td>
|
|
2961
|
+
<td style="padding:15px">retrieve_device_trigger_info</td>
|
|
2962
|
+
<td style="padding:15px">{base_path}/{version}/device/{pathv1}/trigger_info/?{query}</td>
|
|
2963
|
+
<td style="padding:15px">Yes</td>
|
|
2964
|
+
</tr>
|
|
2965
|
+
<tr>
|
|
2966
|
+
<td style="padding:15px">removeIcebergDevicesFromGroup(deviceGroupName, callback)</td>
|
|
2967
|
+
<td style="padding:15px">remove_iceberg_devices_from_group</td>
|
|
2968
|
+
<td style="padding:15px">{base_path}/{version}/config/device-group/{pathv1}/device/?{query}</td>
|
|
2969
|
+
<td style="padding:15px">Yes</td>
|
|
2970
|
+
</tr>
|
|
2971
|
+
<tr>
|
|
2972
|
+
<td style="padding:15px">removeIcebergNetworkGroupNetworkGroupById(networkGroupName, callback)</td>
|
|
2973
|
+
<td style="padding:15px">remove_iceberg_network_group_network_group_by_id</td>
|
|
2974
|
+
<td style="padding:15px">{base_path}/{version}/config/network-group/{pathv1}/variable/?{query}</td>
|
|
2975
|
+
<td style="padding:15px">Yes</td>
|
|
2976
|
+
</tr>
|
|
2977
|
+
<tr>
|
|
2978
|
+
<td style="padding:15px">retrieveHealthbotIngestSettingsPaa(working, callback)</td>
|
|
2979
|
+
<td style="padding:15px">retrieve_healthbot_ingest_settings_paa</td>
|
|
2980
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/paa/?{query}</td>
|
|
2981
|
+
<td style="padding:15px">Yes</td>
|
|
2982
|
+
</tr>
|
|
2983
|
+
<tr>
|
|
2984
|
+
<td style="padding:15px">deleteHealthbotIngestPaaByPaaName(paaName, callback)</td>
|
|
2985
|
+
<td style="padding:15px">delete_healthbot_ingest_paa_by_paa_name</td>
|
|
2986
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/paa/{pathv1}/?{query}</td>
|
|
2987
|
+
<td style="padding:15px">Yes</td>
|
|
2988
|
+
</tr>
|
|
2989
|
+
<tr>
|
|
2990
|
+
<td style="padding:15px">retrieveHealthbotIngestPaaByPaaName(paaName, working, callback)</td>
|
|
2991
|
+
<td style="padding:15px">retrieve_healthbot_ingest_paa_by_paa_name</td>
|
|
2992
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/paa/{pathv1}/?{query}</td>
|
|
2993
|
+
<td style="padding:15px">Yes</td>
|
|
2994
|
+
</tr>
|
|
2995
|
+
<tr>
|
|
2996
|
+
<td style="padding:15px">updateIngestPaaByPaaName(paaName, body, callback)</td>
|
|
2997
|
+
<td style="padding:15px">update_ingest_paa_by_paa_name</td>
|
|
2998
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/paa/{pathv1}/?{query}</td>
|
|
2999
|
+
<td style="padding:15px">Yes</td>
|
|
3000
|
+
</tr>
|
|
3001
|
+
<tr>
|
|
3002
|
+
<td style="padding:15px">createIngestPaaByPaaName(paaName, body, callback)</td>
|
|
3003
|
+
<td style="padding:15px">create_ingest_paa_by_paa_name</td>
|
|
3004
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/paa/{pathv1}/?{query}</td>
|
|
3005
|
+
<td style="padding:15px">Yes</td>
|
|
3006
|
+
</tr>
|
|
3007
|
+
<tr>
|
|
3008
|
+
<td style="padding:15px">deleteHealthbotIngestIfa(callback)</td>
|
|
3009
|
+
<td style="padding:15px">delete_healthbot_ingest_ifa</td>
|
|
3010
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/?{query}</td>
|
|
3011
|
+
<td style="padding:15px">Yes</td>
|
|
3012
|
+
</tr>
|
|
3013
|
+
<tr>
|
|
3014
|
+
<td style="padding:15px">retrieveHealthbotIngestIfa(working, callback)</td>
|
|
3015
|
+
<td style="padding:15px">retrieve_healthbot_ingest_ifa</td>
|
|
3016
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/?{query}</td>
|
|
3017
|
+
<td style="padding:15px">Yes</td>
|
|
3018
|
+
</tr>
|
|
3019
|
+
<tr>
|
|
3020
|
+
<td style="padding:15px">createHealthbotIngestIfa(body, callback)</td>
|
|
3021
|
+
<td style="padding:15px">create_healthbot_ingest_ifa</td>
|
|
3022
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/?{query}</td>
|
|
3023
|
+
<td style="padding:15px">Yes</td>
|
|
3024
|
+
</tr>
|
|
3025
|
+
<tr>
|
|
3026
|
+
<td style="padding:15px">updateHealthbotIngestIfa(body, callback)</td>
|
|
3027
|
+
<td style="padding:15px">update_healthbot_ingest_ifa</td>
|
|
3028
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/?{query}</td>
|
|
3029
|
+
<td style="padding:15px">Yes</td>
|
|
3030
|
+
</tr>
|
|
3031
|
+
<tr>
|
|
3032
|
+
<td style="padding:15px">retrieveHealthbotIngestIfaDeviceIds(working, callback)</td>
|
|
3033
|
+
<td style="padding:15px">retrieve_healthbot_ingest_ifa_device_ids</td>
|
|
3034
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/device/?{query}</td>
|
|
3035
|
+
<td style="padding:15px">Yes</td>
|
|
3036
|
+
</tr>
|
|
3037
|
+
<tr>
|
|
3038
|
+
<td style="padding:15px">retrieveHealthbotIngestIfaDevices(working, callback)</td>
|
|
3039
|
+
<td style="padding:15px">retrieve_healthbot_ingest_ifa_devices</td>
|
|
3040
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/devices/?{query}</td>
|
|
3041
|
+
<td style="padding:15px">Yes</td>
|
|
3042
|
+
</tr>
|
|
3043
|
+
<tr>
|
|
3044
|
+
<td style="padding:15px">deleteHealthbotIngestIfaDeviceById(id, callback)</td>
|
|
3045
|
+
<td style="padding:15px">delete_healthbot_ingest_ifa_device_by_id</td>
|
|
3046
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/device/{pathv1}/?{query}</td>
|
|
3047
|
+
<td style="padding:15px">Yes</td>
|
|
3048
|
+
</tr>
|
|
3049
|
+
<tr>
|
|
3050
|
+
<td style="padding:15px">retrieveHealthbotIngestIfaDeviceById(id, working, callback)</td>
|
|
3051
|
+
<td style="padding:15px">retrieve_healthbot_ingest_ifa_device_by_id</td>
|
|
3052
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/device/{pathv1}/?{query}</td>
|
|
3053
|
+
<td style="padding:15px">Yes</td>
|
|
3054
|
+
</tr>
|
|
3055
|
+
<tr>
|
|
3056
|
+
<td style="padding:15px">createHealthbotIngestIfaDeviceById(id, body, callback)</td>
|
|
3057
|
+
<td style="padding:15px">create_healthbot_ingest_ifa_device_by_id</td>
|
|
3058
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/device/{pathv1}/?{query}</td>
|
|
3059
|
+
<td style="padding:15px">Yes</td>
|
|
3060
|
+
</tr>
|
|
3061
|
+
<tr>
|
|
3062
|
+
<td style="padding:15px">updateHealthbotIngestIfaDeviceById(id, body, callback)</td>
|
|
3063
|
+
<td style="padding:15px">update_healthbot_ingest_ifa_device_by_id</td>
|
|
3064
|
+
<td style="padding:15px">{base_path}/{version}/config/ingest/ifa/device/{pathv1}/?{query}</td>
|
|
3065
|
+
<td style="padding:15px">Yes</td>
|
|
3066
|
+
</tr>
|
|
3067
|
+
<tr>
|
|
3068
|
+
<td style="padding:15px">postJunosEncode(body, callback)</td>
|
|
3069
|
+
<td style="padding:15px">junosencode</td>
|
|
3070
|
+
<td style="padding:15px">{base_path}/{version}/junos-encode/?{query}</td>
|
|
3071
|
+
<td style="padding:15px">Yes</td>
|
|
3072
|
+
</tr>
|
|
3073
|
+
<tr>
|
|
3074
|
+
<td style="padding:15px">postJunosDecode(body, callback)</td>
|
|
3075
|
+
<td style="padding:15px">junosdecode</td>
|
|
3076
|
+
<td style="padding:15px">{base_path}/{version}/junos-decode/?{query}</td>
|
|
3077
|
+
<td style="padding:15px">Yes</td>
|
|
3078
|
+
</tr>
|
|
2924
3079
|
</table>
|
|
2925
3080
|
<br>
|