@itentialopensource/adapter-paragon_ems_device_manager 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +6 -0
- package/.eslintrc.js +18 -0
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +17 -0
- package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
- package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
- package/.jshintrc +0 -0
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +1238 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +172 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +641 -0
- package/README.md +337 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +15794 -0
- package/adapterBase.js +1787 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +90 -0
- package/entities/.system/mockdatafiles/MFA_Step_1-default.json +31 -0
- package/entities/.system/mockdatafiles/MFA_Step_2-default.json +107 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenReq_MFA_Step_1.json +19 -0
- package/entities/.system/schemaTokenReq_MFA_Step_2.json +24 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/.system/schemaTokenResp_MFA_Step_1.json +38 -0
- package/entities/.system/schemaTokenResp_MFA_Step_2.json +33 -0
- package/entities/CommandService/action.json +44 -0
- package/entities/CommandService/schema.json +20 -0
- package/entities/ConfigOperationService/action.json +184 -0
- package/entities/ConfigOperationService/schema.json +27 -0
- package/entities/ConfigResourceService/action.json +964 -0
- package/entities/ConfigResourceService/schema.json +66 -0
- package/entities/ConfigTemplateService/action.json +345 -0
- package/entities/ConfigTemplateService/schema.json +266 -0
- package/entities/DeviceLCMService/action.json +44 -0
- package/entities/DeviceLCMService/schema.json +20 -0
- package/entities/DeviceOnboardingService/action.json +105 -0
- package/entities/DeviceOnboardingService/schema.json +23 -0
- package/entities/DevicemanagerService/action.json +1770 -0
- package/entities/DevicemanagerService/schema.json +402 -0
- package/entities/InventoryService/action.json +164 -0
- package/entities/InventoryService/schema.json +26 -0
- package/error.json +190 -0
- package/package.json +85 -0
- package/pronghorn.json +51658 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1249 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/creationReport.json +1205 -0
- package/report/pathfinder-ems-devicemanager (2).json +38961 -0
- package/sampleProperties.json +195 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +18342 -0
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +6439 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +178 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +225 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +246 -0
- package/utils/tbUtils.js +490 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +195 -0
- package/workflows/README.md +3 -0
package/CALLS.md
ADDED
|
@@ -0,0 +1,1238 @@
|
|
|
1
|
+
## Using this Adapter
|
|
2
|
+
|
|
3
|
+
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
|
|
4
|
+
|
|
5
|
+
### Generic Adapter Calls
|
|
6
|
+
|
|
7
|
+
These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
|
|
8
|
+
|
|
9
|
+
<table border="1" class="bordered-table">
|
|
10
|
+
<tr>
|
|
11
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
12
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
13
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
14
|
+
</tr>
|
|
15
|
+
<tr>
|
|
16
|
+
<td style="padding:15px">connect()</td>
|
|
17
|
+
<td style="padding:15px">This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.</td>
|
|
18
|
+
<td style="padding:15px">No</td>
|
|
19
|
+
</tr>
|
|
20
|
+
<tr>
|
|
21
|
+
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Paragon_ems_device_manager. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
|
+
<td style="padding:15px">No</td>
|
|
24
|
+
</tr>
|
|
25
|
+
<tr>
|
|
26
|
+
<td style="padding:15px">refreshProperties(properties)</td>
|
|
27
|
+
<td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td>
|
|
28
|
+
<td style="padding:15px">No</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
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 Paragon_ems_device_manager.</td>
|
|
33
|
+
<td style="padding:15px">No</td>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td>
|
|
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
|
+
<td style="padding:15px">Yes</td>
|
|
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
|
+
<tr>
|
|
46
|
+
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
|
+
<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>
|
|
48
|
+
<td style="padding:15px">Yes</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td style="padding:15px">iapUnsuspendAdapter(callback)</td>
|
|
52
|
+
<td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td>
|
|
53
|
+
<td style="padding:15px">Yes</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapGetAdapterQueue(callback)</td>
|
|
57
|
+
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
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
|
+
<td style="padding:15px">Yes</td>
|
|
64
|
+
</tr>
|
|
65
|
+
|
|
66
|
+
<tr>
|
|
67
|
+
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
|
+
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
69
|
+
<td style="padding:15px">Yes</td>
|
|
70
|
+
</tr>
|
|
71
|
+
<tr>
|
|
72
|
+
<td style="padding:15px">iapRunAdapterConnectivity(callback)</td>
|
|
73
|
+
<td style="padding:15px">This call will return the results of a connectivity check.</td>
|
|
74
|
+
<td style="padding:15px">Yes</td>
|
|
75
|
+
</tr>
|
|
76
|
+
<tr>
|
|
77
|
+
<td style="padding:15px">iapRunAdapterBasicGet(callback)</td>
|
|
78
|
+
<td style="padding:15px">This call will return the results of running basic get API calls.</td>
|
|
79
|
+
<td style="padding:15px">Yes</td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr>
|
|
82
|
+
<td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td>
|
|
83
|
+
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
|
+
<td style="padding:15px">Yes</td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
|
+
<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>
|
|
89
|
+
<td style="padding:15px">Yes</td>
|
|
90
|
+
</tr>
|
|
91
|
+
<tr>
|
|
92
|
+
<td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
93
|
+
<td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td>
|
|
94
|
+
<td style="padding:15px">Yes</td>
|
|
95
|
+
</tr>
|
|
96
|
+
<tr>
|
|
97
|
+
<td style="padding:15px">iapHasAdapterEntity(entityType, entityId, callback)</td>
|
|
98
|
+
<td style="padding:15px">This call verifies the adapter has the specific entity.</td>
|
|
99
|
+
<td style="padding:15px">No</td>
|
|
100
|
+
</tr>
|
|
101
|
+
<tr>
|
|
102
|
+
<td style="padding:15px">iapVerifyAdapterCapability(entityType, actionType, entityId, callback)</td>
|
|
103
|
+
<td style="padding:15px">This call verifies the adapter can perform the provided action on the specific entity.</td>
|
|
104
|
+
<td style="padding:15px">No</td>
|
|
105
|
+
</tr>
|
|
106
|
+
<tr>
|
|
107
|
+
<td style="padding:15px">iapUpdateAdapterEntityCache()</td>
|
|
108
|
+
<td style="padding:15px">This call will update the entity cache.</td>
|
|
109
|
+
<td style="padding:15px">No</td>
|
|
110
|
+
</tr>
|
|
111
|
+
</table>
|
|
112
|
+
<br>
|
|
113
|
+
|
|
114
|
+
### Adapter Broker Calls
|
|
115
|
+
|
|
116
|
+
These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
|
|
117
|
+
|
|
118
|
+
<table border="1" class="bordered-table">
|
|
119
|
+
<tr>
|
|
120
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
121
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
122
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
123
|
+
</tr>
|
|
124
|
+
<tr>
|
|
125
|
+
<td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
|
|
126
|
+
<td style="padding:15px">This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
|
|
127
|
+
<td style="padding:15px">No</td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
|
+
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
+
<td style="padding:15px">Yes</td>
|
|
133
|
+
</tr>
|
|
134
|
+
<tr>
|
|
135
|
+
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
|
+
<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">Yes</td>
|
|
138
|
+
</tr>
|
|
139
|
+
<tr>
|
|
140
|
+
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
|
+
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
+
<td style="padding:15px">Yes</td>
|
|
143
|
+
</tr>
|
|
144
|
+
<tr>
|
|
145
|
+
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
|
+
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
+
<td style="padding:15px">Yes</td>
|
|
148
|
+
</tr>
|
|
149
|
+
<tr>
|
|
150
|
+
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
|
+
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
+
<td style="padding:15px">Yes</td>
|
|
153
|
+
</tr>
|
|
154
|
+
</table>
|
|
155
|
+
<br>
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Specific Adapter Calls
|
|
159
|
+
|
|
160
|
+
Specific adapter calls are built based on the API of the Paragon_ems_device_manager. 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.
|
|
161
|
+
|
|
162
|
+
<table border="1" class="bordered-table">
|
|
163
|
+
<tr>
|
|
164
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
165
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
166
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
167
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
168
|
+
</tr>
|
|
169
|
+
<tr>
|
|
170
|
+
<td style="padding:15px">devicemanagerServiceBulkListConfigTemplate(body, callback)</td>
|
|
171
|
+
<td style="padding:15px">This API can be used to list config-template based on specification given in request body.</td>
|
|
172
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-config-template?{query}</td>
|
|
173
|
+
<td style="padding:15px">Yes</td>
|
|
174
|
+
</tr>
|
|
175
|
+
<tr>
|
|
176
|
+
<td style="padding:15px">devicemanagerServiceUpdateResourceLock(iD, body, callback)</td>
|
|
177
|
+
<td style="padding:15px">Update resource-lock by ID</td>
|
|
178
|
+
<td style="padding:15px">{base_path}/{version}/resource-lock/{pathv1}?{query}</td>
|
|
179
|
+
<td style="padding:15px">Yes</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td style="padding:15px">devicemanagerServiceDeleteResourceLock(iD, callback)</td>
|
|
183
|
+
<td style="padding:15px">Delete resource-lock by ID</td>
|
|
184
|
+
<td style="padding:15px">{base_path}/{version}/resource-lock/{pathv1}?{query}</td>
|
|
185
|
+
<td style="padding:15px">Yes</td>
|
|
186
|
+
</tr>
|
|
187
|
+
<tr>
|
|
188
|
+
<td style="padding:15px">devicemanagerServiceGetResourceLock(iD, detail, fields, refFields, callback)</td>
|
|
189
|
+
<td style="padding:15px">Get resource-lock by ID</td>
|
|
190
|
+
<td style="padding:15px">{base_path}/{version}/resource-lock/{pathv1}?{query}</td>
|
|
191
|
+
<td style="padding:15px">Yes</td>
|
|
192
|
+
</tr>
|
|
193
|
+
<tr>
|
|
194
|
+
<td style="padding:15px">devicemanagerServiceCreateDeviceTemplate(body, callback)</td>
|
|
195
|
+
<td style="padding:15px">Create device-template</td>
|
|
196
|
+
<td style="padding:15px">{base_path}/{version}/device-template?{query}</td>
|
|
197
|
+
<td style="padding:15px">Yes</td>
|
|
198
|
+
</tr>
|
|
199
|
+
<tr>
|
|
200
|
+
<td style="padding:15px">devicemanagerServiceListDeviceTemplate(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
201
|
+
<td style="padding:15px">This API can be used to list device-template based on specification given in query parameters.</td>
|
|
202
|
+
<td style="padding:15px">{base_path}/{version}/device-template?{query}</td>
|
|
203
|
+
<td style="padding:15px">Yes</td>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td style="padding:15px">devicemanagerServiceUpdateLastPublishedNotification(iD, body, callback)</td>
|
|
207
|
+
<td style="padding:15px">Update last-published-notification by ID</td>
|
|
208
|
+
<td style="padding:15px">{base_path}/{version}/last-published-notification/{pathv1}?{query}</td>
|
|
209
|
+
<td style="padding:15px">Yes</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td style="padding:15px">devicemanagerServiceDeleteLastPublishedNotification(iD, callback)</td>
|
|
213
|
+
<td style="padding:15px">Delete last-published-notification by ID</td>
|
|
214
|
+
<td style="padding:15px">{base_path}/{version}/last-published-notification/{pathv1}?{query}</td>
|
|
215
|
+
<td style="padding:15px">Yes</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td style="padding:15px">devicemanagerServiceGetLastPublishedNotification(iD, detail, fields, refFields, callback)</td>
|
|
219
|
+
<td style="padding:15px">Get last-published-notification by ID</td>
|
|
220
|
+
<td style="padding:15px">{base_path}/{version}/last-published-notification/{pathv1}?{query}</td>
|
|
221
|
+
<td style="padding:15px">Yes</td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td style="padding:15px">devicemanagerServiceBulkListDeviceTemplate(body, callback)</td>
|
|
225
|
+
<td style="padding:15px">This API can be used to list device-template based on specification given in request body.</td>
|
|
226
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-device-template?{query}</td>
|
|
227
|
+
<td style="padding:15px">Yes</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td style="padding:15px">devicemanagerServiceDeleteDeviceTemplateConfigTemplateRef(uuid, deviceTemplateConfigTemplateRefUuid, deviceTemplateConfigTemplateRefHref, callback)</td>
|
|
231
|
+
<td style="padding:15px">Delete device-template-config-template-ref by ID</td>
|
|
232
|
+
<td style="padding:15px">{base_path}/{version}/device-template-config-template/{pathv1}?{query}</td>
|
|
233
|
+
<td style="padding:15px">Yes</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td style="padding:15px">devicemanagerServiceBulkExtRefUpdate(body, callback)</td>
|
|
237
|
+
<td style="padding:15px">This API can be used to create/delete multiple references for ExtRef table.</td>
|
|
238
|
+
<td style="padding:15px">{base_path}/{version}/bulk-ext-ref-update?{query}</td>
|
|
239
|
+
<td style="padding:15px">Yes</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td style="padding:15px">devicemanagerServiceCreateConfigTemplateDeployment(body, callback)</td>
|
|
243
|
+
<td style="padding:15px">Create config-template-deployment</td>
|
|
244
|
+
<td style="padding:15px">{base_path}/{version}/config-template-deployment?{query}</td>
|
|
245
|
+
<td style="padding:15px">Yes</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td style="padding:15px">devicemanagerServiceListConfigTemplateDeployment(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
249
|
+
<td style="padding:15px">This API can be used to list config-template-deployment based on specification given in query parameters.</td>
|
|
250
|
+
<td style="padding:15px">{base_path}/{version}/config-template-deployment?{query}</td>
|
|
251
|
+
<td style="padding:15px">Yes</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td style="padding:15px">devicemanagerServiceBulkListConfiguration(body, callback)</td>
|
|
255
|
+
<td style="padding:15px">This API can be used to list configuration based on specification given in request body.</td>
|
|
256
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-configuration?{query}</td>
|
|
257
|
+
<td style="padding:15px">Yes</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td style="padding:15px">devicemanagerServiceCreateConfigTemplateViewdef(body, callback)</td>
|
|
261
|
+
<td style="padding:15px">Create config-template-viewdef</td>
|
|
262
|
+
<td style="padding:15px">{base_path}/{version}/config-template-viewdef?{query}</td>
|
|
263
|
+
<td style="padding:15px">Yes</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td style="padding:15px">devicemanagerServiceListConfigTemplateViewdef(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
267
|
+
<td style="padding:15px">This API can be used to list config-template-viewdef based on specification given in query parameters.</td>
|
|
268
|
+
<td style="padding:15px">{base_path}/{version}/config-template-viewdef?{query}</td>
|
|
269
|
+
<td style="padding:15px">Yes</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<td style="padding:15px">devicemanagerServiceCreateDeviceTemplateConfigTemplateRef(body, callback)</td>
|
|
273
|
+
<td style="padding:15px">Create device-template-config-template-ref</td>
|
|
274
|
+
<td style="padding:15px">{base_path}/{version}/device-template-config-template?{query}</td>
|
|
275
|
+
<td style="padding:15px">Yes</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td style="padding:15px">devicemanagerServiceUpdateDeviceTemplate(iD, body, callback)</td>
|
|
279
|
+
<td style="padding:15px">Update device-template by ID</td>
|
|
280
|
+
<td style="padding:15px">{base_path}/{version}/device-template/{pathv1}?{query}</td>
|
|
281
|
+
<td style="padding:15px">Yes</td>
|
|
282
|
+
</tr>
|
|
283
|
+
<tr>
|
|
284
|
+
<td style="padding:15px">devicemanagerServiceDeleteDeviceTemplate(iD, callback)</td>
|
|
285
|
+
<td style="padding:15px">Delete device-template by ID</td>
|
|
286
|
+
<td style="padding:15px">{base_path}/{version}/device-template/{pathv1}?{query}</td>
|
|
287
|
+
<td style="padding:15px">Yes</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td style="padding:15px">devicemanagerServiceGetDeviceTemplate(iD, detail, fields, refFields, callback)</td>
|
|
291
|
+
<td style="padding:15px">Get device-template by ID</td>
|
|
292
|
+
<td style="padding:15px">{base_path}/{version}/device-template/{pathv1}?{query}</td>
|
|
293
|
+
<td style="padding:15px">Yes</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr>
|
|
296
|
+
<td style="padding:15px">devicemanagerServiceCreateConfigArchive(body, callback)</td>
|
|
297
|
+
<td style="padding:15px">Create config-archive</td>
|
|
298
|
+
<td style="padding:15px">{base_path}/{version}/config-archive?{query}</td>
|
|
299
|
+
<td style="padding:15px">Yes</td>
|
|
300
|
+
</tr>
|
|
301
|
+
<tr>
|
|
302
|
+
<td style="padding:15px">devicemanagerServiceListConfigArchive(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
303
|
+
<td style="padding:15px">This API can be used to list config-archive based on specification given in query parameters.</td>
|
|
304
|
+
<td style="padding:15px">{base_path}/{version}/config-archive?{query}</td>
|
|
305
|
+
<td style="padding:15px">Yes</td>
|
|
306
|
+
</tr>
|
|
307
|
+
<tr>
|
|
308
|
+
<td style="padding:15px">devicemanagerServiceUpdateConfigResourceRef(iD, body, callback)</td>
|
|
309
|
+
<td style="padding:15px">Update config-resource-ref by ID</td>
|
|
310
|
+
<td style="padding:15px">{base_path}/{version}/config-resource-ref/{pathv1}?{query}</td>
|
|
311
|
+
<td style="padding:15px">Yes</td>
|
|
312
|
+
</tr>
|
|
313
|
+
<tr>
|
|
314
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfigResourceRef(iD, callback)</td>
|
|
315
|
+
<td style="padding:15px">Delete config-resource-ref by ID</td>
|
|
316
|
+
<td style="padding:15px">{base_path}/{version}/config-resource-ref/{pathv1}?{query}</td>
|
|
317
|
+
<td style="padding:15px">Yes</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td style="padding:15px">devicemanagerServiceGetConfigResourceRef(iD, detail, fields, refFields, callback)</td>
|
|
321
|
+
<td style="padding:15px">Get config-resource-ref by ID</td>
|
|
322
|
+
<td style="padding:15px">{base_path}/{version}/config-resource-ref/{pathv1}?{query}</td>
|
|
323
|
+
<td style="padding:15px">Yes</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td style="padding:15px">devicemanagerServiceCreateConfigResourceRefReferenceRef(body, callback)</td>
|
|
327
|
+
<td style="padding:15px">Create config-resource-ref-reference-ref</td>
|
|
328
|
+
<td style="padding:15px">{base_path}/{version}/config-resource-ref-reference?{query}</td>
|
|
329
|
+
<td style="padding:15px">Yes</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td style="padding:15px">devicemanagerServiceCreateResourceLock(body, callback)</td>
|
|
333
|
+
<td style="padding:15px">Create resource-lock</td>
|
|
334
|
+
<td style="padding:15px">{base_path}/{version}/resource-lock?{query}</td>
|
|
335
|
+
<td style="padding:15px">Yes</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td style="padding:15px">devicemanagerServiceListResourceLock(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
339
|
+
<td style="padding:15px">This API can be used to list resource-lock based on specification given in query parameters.</td>
|
|
340
|
+
<td style="padding:15px">{base_path}/{version}/resource-lock?{query}</td>
|
|
341
|
+
<td style="padding:15px">Yes</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td style="padding:15px">devicemanagerServiceUpdateConfigResource(iD, body, callback)</td>
|
|
345
|
+
<td style="padding:15px">Update config-resource by ID</td>
|
|
346
|
+
<td style="padding:15px">{base_path}/{version}/config-resource/{pathv1}?{query}</td>
|
|
347
|
+
<td style="padding:15px">Yes</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<tr>
|
|
350
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfigResource(iD, callback)</td>
|
|
351
|
+
<td style="padding:15px">Delete config-resource by ID</td>
|
|
352
|
+
<td style="padding:15px">{base_path}/{version}/config-resource/{pathv1}?{query}</td>
|
|
353
|
+
<td style="padding:15px">Yes</td>
|
|
354
|
+
</tr>
|
|
355
|
+
<tr>
|
|
356
|
+
<td style="padding:15px">devicemanagerServiceGetConfigResource(iD, detail, fields, refFields, callback)</td>
|
|
357
|
+
<td style="padding:15px">Get config-resource by ID</td>
|
|
358
|
+
<td style="padding:15px">{base_path}/{version}/config-resource/{pathv1}?{query}</td>
|
|
359
|
+
<td style="padding:15px">Yes</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td style="padding:15px">devicemanagerServiceSync(body, callback)</td>
|
|
363
|
+
<td style="padding:15px">This API can be used to CREATE/UPDATE/DELETE multiple resources from database</td>
|
|
364
|
+
<td style="padding:15px">{base_path}/{version}/sync?{query}</td>
|
|
365
|
+
<td style="padding:15px">Yes</td>
|
|
366
|
+
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td style="padding:15px">devicemanagerServiceUpdateActivationIPInfo(iD, body, callback)</td>
|
|
369
|
+
<td style="padding:15px">Update activation-ip-info by ID</td>
|
|
370
|
+
<td style="padding:15px">{base_path}/{version}/activation-ip-info/{pathv1}?{query}</td>
|
|
371
|
+
<td style="padding:15px">Yes</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td style="padding:15px">devicemanagerServiceDeleteActivationIPInfo(iD, callback)</td>
|
|
375
|
+
<td style="padding:15px">Delete activation-ip-info by ID</td>
|
|
376
|
+
<td style="padding:15px">{base_path}/{version}/activation-ip-info/{pathv1}?{query}</td>
|
|
377
|
+
<td style="padding:15px">Yes</td>
|
|
378
|
+
</tr>
|
|
379
|
+
<tr>
|
|
380
|
+
<td style="padding:15px">devicemanagerServiceGetActivationIPInfo(iD, detail, fields, refFields, callback)</td>
|
|
381
|
+
<td style="padding:15px">Get activation-ip-info by ID</td>
|
|
382
|
+
<td style="padding:15px">{base_path}/{version}/activation-ip-info/{pathv1}?{query}</td>
|
|
383
|
+
<td style="padding:15px">Yes</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td style="padding:15px">devicemanagerServiceBulkRefUpdate(body, callback)</td>
|
|
387
|
+
<td style="padding:15px">This API can be used to ADD/DELETE multiple references between two resources.</td>
|
|
388
|
+
<td style="padding:15px">{base_path}/{version}/bulk-ref-update?{query}</td>
|
|
389
|
+
<td style="padding:15px">Yes</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfigResourceRefReferenceRef(uuid, configResourceRefReferenceRefUuid, configResourceRefReferenceRefHref, callback)</td>
|
|
393
|
+
<td style="padding:15px">Delete config-resource-ref-reference-ref by ID</td>
|
|
394
|
+
<td style="padding:15px">{base_path}/{version}/config-resource-ref-reference/{pathv1}?{query}</td>
|
|
395
|
+
<td style="padding:15px">Yes</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td style="padding:15px">devicemanagerServiceUpdateDeviceActivationInfo(iD, body, callback)</td>
|
|
399
|
+
<td style="padding:15px">Update device-activation-info by ID</td>
|
|
400
|
+
<td style="padding:15px">{base_path}/{version}/device-activation-info/{pathv1}?{query}</td>
|
|
401
|
+
<td style="padding:15px">Yes</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr>
|
|
404
|
+
<td style="padding:15px">devicemanagerServiceDeleteDeviceActivationInfo(iD, callback)</td>
|
|
405
|
+
<td style="padding:15px">Delete device-activation-info by ID</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/device-activation-info/{pathv1}?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">devicemanagerServiceGetDeviceActivationInfo(iD, detail, fields, refFields, callback)</td>
|
|
411
|
+
<td style="padding:15px">Get device-activation-info by ID</td>
|
|
412
|
+
<td style="padding:15px">{base_path}/{version}/device-activation-info/{pathv1}?{query}</td>
|
|
413
|
+
<td style="padding:15px">Yes</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr>
|
|
416
|
+
<td style="padding:15px">devicemanagerServiceBulkListConfigTemplateViewdef(body, callback)</td>
|
|
417
|
+
<td style="padding:15px">This API can be used to list config-template-viewdef based on specification given in request body.</td>
|
|
418
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-config-template-viewdef?{query}</td>
|
|
419
|
+
<td style="padding:15px">Yes</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td style="padding:15px">devicemanagerServiceCreateDeviceActivationInfo(body, callback)</td>
|
|
423
|
+
<td style="padding:15px">Create device-activation-info</td>
|
|
424
|
+
<td style="padding:15px">{base_path}/{version}/device-activation-info?{query}</td>
|
|
425
|
+
<td style="padding:15px">Yes</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td style="padding:15px">devicemanagerServiceListDeviceActivationInfo(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
429
|
+
<td style="padding:15px">This API can be used to list device-activation-info based on specification given in query parameters.</td>
|
|
430
|
+
<td style="padding:15px">{base_path}/{version}/device-activation-info?{query}</td>
|
|
431
|
+
<td style="padding:15px">Yes</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td style="padding:15px">devicemanagerServiceCreateLastPublishedNotification(body, callback)</td>
|
|
435
|
+
<td style="padding:15px">Create last-published-notification</td>
|
|
436
|
+
<td style="padding:15px">{base_path}/{version}/last-published-notification?{query}</td>
|
|
437
|
+
<td style="padding:15px">Yes</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td style="padding:15px">devicemanagerServiceListLastPublishedNotification(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
441
|
+
<td style="padding:15px">This API can be used to list last-published-notification based on specification given in query parameters.</td>
|
|
442
|
+
<td style="padding:15px">{base_path}/{version}/last-published-notification?{query}</td>
|
|
443
|
+
<td style="padding:15px">Yes</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td style="padding:15px">devicemanagerServiceBulkListConfigTemplateDeployment(body, callback)</td>
|
|
447
|
+
<td style="padding:15px">This API can be used to list config-template-deployment based on specification given in request body.</td>
|
|
448
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-config-template-deployment?{query}</td>
|
|
449
|
+
<td style="padding:15px">Yes</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td style="padding:15px">devicemanagerServiceUpdateConfigArchive(iD, body, callback)</td>
|
|
453
|
+
<td style="padding:15px">Update config-archive by ID</td>
|
|
454
|
+
<td style="padding:15px">{base_path}/{version}/config-archive/{pathv1}?{query}</td>
|
|
455
|
+
<td style="padding:15px">Yes</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfigArchive(iD, callback)</td>
|
|
459
|
+
<td style="padding:15px">Delete config-archive by ID</td>
|
|
460
|
+
<td style="padding:15px">{base_path}/{version}/config-archive/{pathv1}?{query}</td>
|
|
461
|
+
<td style="padding:15px">Yes</td>
|
|
462
|
+
</tr>
|
|
463
|
+
<tr>
|
|
464
|
+
<td style="padding:15px">devicemanagerServiceGetConfigArchive(iD, detail, fields, refFields, callback)</td>
|
|
465
|
+
<td style="padding:15px">Get config-archive by ID</td>
|
|
466
|
+
<td style="padding:15px">{base_path}/{version}/config-archive/{pathv1}?{query}</td>
|
|
467
|
+
<td style="padding:15px">Yes</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td style="padding:15px">devicemanagerServiceCreateConfigResourceRef(body, callback)</td>
|
|
471
|
+
<td style="padding:15px">Create config-resource-ref</td>
|
|
472
|
+
<td style="padding:15px">{base_path}/{version}/config-resource-ref?{query}</td>
|
|
473
|
+
<td style="padding:15px">Yes</td>
|
|
474
|
+
</tr>
|
|
475
|
+
<tr>
|
|
476
|
+
<td style="padding:15px">devicemanagerServiceListConfigResourceRef(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
477
|
+
<td style="padding:15px">This API can be used to list config-resource-ref based on specification given in query parameters.</td>
|
|
478
|
+
<td style="padding:15px">{base_path}/{version}/config-resource-ref?{query}</td>
|
|
479
|
+
<td style="padding:15px">Yes</td>
|
|
480
|
+
</tr>
|
|
481
|
+
<tr>
|
|
482
|
+
<td style="padding:15px">devicemanagerServiceBulkListResourceLock(body, callback)</td>
|
|
483
|
+
<td style="padding:15px">This API can be used to list resource-lock based on specification given in request body.</td>
|
|
484
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-resource-lock?{query}</td>
|
|
485
|
+
<td style="padding:15px">Yes</td>
|
|
486
|
+
</tr>
|
|
487
|
+
<tr>
|
|
488
|
+
<td style="padding:15px">devicemanagerServiceBulkListConfigResourceRef(body, callback)</td>
|
|
489
|
+
<td style="padding:15px">This API can be used to list config-resource-ref based on specification given in request body.</td>
|
|
490
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-config-resource-ref?{query}</td>
|
|
491
|
+
<td style="padding:15px">Yes</td>
|
|
492
|
+
</tr>
|
|
493
|
+
<tr>
|
|
494
|
+
<td style="padding:15px">devicemanagerServiceUpdateDeletedResource(iD, body, callback)</td>
|
|
495
|
+
<td style="padding:15px">Update deleted-resource by ID</td>
|
|
496
|
+
<td style="padding:15px">{base_path}/{version}/deleted-resource/{pathv1}?{query}</td>
|
|
497
|
+
<td style="padding:15px">Yes</td>
|
|
498
|
+
</tr>
|
|
499
|
+
<tr>
|
|
500
|
+
<td style="padding:15px">devicemanagerServiceDeleteDeletedResource(iD, callback)</td>
|
|
501
|
+
<td style="padding:15px">Delete deleted-resource by ID</td>
|
|
502
|
+
<td style="padding:15px">{base_path}/{version}/deleted-resource/{pathv1}?{query}</td>
|
|
503
|
+
<td style="padding:15px">Yes</td>
|
|
504
|
+
</tr>
|
|
505
|
+
<tr>
|
|
506
|
+
<td style="padding:15px">devicemanagerServiceGetDeletedResource(iD, detail, fields, refFields, callback)</td>
|
|
507
|
+
<td style="padding:15px">Get deleted-resource by ID</td>
|
|
508
|
+
<td style="padding:15px">{base_path}/{version}/deleted-resource/{pathv1}?{query}</td>
|
|
509
|
+
<td style="padding:15px">Yes</td>
|
|
510
|
+
</tr>
|
|
511
|
+
<tr>
|
|
512
|
+
<td style="padding:15px">devicemanagerServiceBulkListConfigArchive(body, callback)</td>
|
|
513
|
+
<td style="padding:15px">This API can be used to list config-archive based on specification given in request body.</td>
|
|
514
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-config-archive?{query}</td>
|
|
515
|
+
<td style="padding:15px">Yes</td>
|
|
516
|
+
</tr>
|
|
517
|
+
<tr>
|
|
518
|
+
<td style="padding:15px">devicemanagerServiceBulkListLastPublishedNotification(body, callback)</td>
|
|
519
|
+
<td style="padding:15px">This API can be used to list last-published-notification based on specification given in request body.</td>
|
|
520
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-last-published-notification?{query}</td>
|
|
521
|
+
<td style="padding:15px">Yes</td>
|
|
522
|
+
</tr>
|
|
523
|
+
<tr>
|
|
524
|
+
<td style="padding:15px">devicemanagerServiceExtRefUpdate(body, callback)</td>
|
|
525
|
+
<td style="padding:15px">This API can be used to create/delete reference for ExtRef table.</td>
|
|
526
|
+
<td style="padding:15px">{base_path}/{version}/ext-ref-update?{query}</td>
|
|
527
|
+
<td style="padding:15px">Yes</td>
|
|
528
|
+
</tr>
|
|
529
|
+
<tr>
|
|
530
|
+
<td style="padding:15px">devicemanagerServiceBulkListActivationIPInfo(body, callback)</td>
|
|
531
|
+
<td style="padding:15px">This API can be used to list activation-ip-info based on specification given in request body.</td>
|
|
532
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-activation-ip-info?{query}</td>
|
|
533
|
+
<td style="padding:15px">Yes</td>
|
|
534
|
+
</tr>
|
|
535
|
+
<tr>
|
|
536
|
+
<td style="padding:15px">devicemanagerServiceCreateConfigTemplate(body, callback)</td>
|
|
537
|
+
<td style="padding:15px">Create config-template</td>
|
|
538
|
+
<td style="padding:15px">{base_path}/{version}/config-template?{query}</td>
|
|
539
|
+
<td style="padding:15px">Yes</td>
|
|
540
|
+
</tr>
|
|
541
|
+
<tr>
|
|
542
|
+
<td style="padding:15px">devicemanagerServiceListConfigTemplate(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
543
|
+
<td style="padding:15px">This API can be used to list config-template based on specification given in query parameters.</td>
|
|
544
|
+
<td style="padding:15px">{base_path}/{version}/config-template?{query}</td>
|
|
545
|
+
<td style="padding:15px">Yes</td>
|
|
546
|
+
</tr>
|
|
547
|
+
<tr>
|
|
548
|
+
<td style="padding:15px">devicemanagerServiceBulkListDeletedResource(body, callback)</td>
|
|
549
|
+
<td style="padding:15px">This API can be used to list deleted-resource based on specification given in request body.</td>
|
|
550
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-deleted-resource?{query}</td>
|
|
551
|
+
<td style="padding:15px">Yes</td>
|
|
552
|
+
</tr>
|
|
553
|
+
<tr>
|
|
554
|
+
<td style="padding:15px">devicemanagerServiceCreateActivationIPInfo(body, callback)</td>
|
|
555
|
+
<td style="padding:15px">Create activation-ip-info</td>
|
|
556
|
+
<td style="padding:15px">{base_path}/{version}/activation-ip-info?{query}</td>
|
|
557
|
+
<td style="padding:15px">Yes</td>
|
|
558
|
+
</tr>
|
|
559
|
+
<tr>
|
|
560
|
+
<td style="padding:15px">devicemanagerServiceListActivationIPInfo(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
561
|
+
<td style="padding:15px">This API can be used to list activation-ip-info based on specification given in query parameters.</td>
|
|
562
|
+
<td style="padding:15px">{base_path}/{version}/activation-ip-info?{query}</td>
|
|
563
|
+
<td style="padding:15px">Yes</td>
|
|
564
|
+
</tr>
|
|
565
|
+
<tr>
|
|
566
|
+
<td style="padding:15px">devicemanagerServiceUpdateConfigTemplate(iD, body, callback)</td>
|
|
567
|
+
<td style="padding:15px">Update config-template by ID</td>
|
|
568
|
+
<td style="padding:15px">{base_path}/{version}/config-template/{pathv1}?{query}</td>
|
|
569
|
+
<td style="padding:15px">Yes</td>
|
|
570
|
+
</tr>
|
|
571
|
+
<tr>
|
|
572
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfigTemplate(iD, callback)</td>
|
|
573
|
+
<td style="padding:15px">Delete config-template by ID</td>
|
|
574
|
+
<td style="padding:15px">{base_path}/{version}/config-template/{pathv1}?{query}</td>
|
|
575
|
+
<td style="padding:15px">Yes</td>
|
|
576
|
+
</tr>
|
|
577
|
+
<tr>
|
|
578
|
+
<td style="padding:15px">devicemanagerServiceGetConfigTemplate(iD, detail, fields, refFields, callback)</td>
|
|
579
|
+
<td style="padding:15px">Get config-template by ID</td>
|
|
580
|
+
<td style="padding:15px">{base_path}/{version}/config-template/{pathv1}?{query}</td>
|
|
581
|
+
<td style="padding:15px">Yes</td>
|
|
582
|
+
</tr>
|
|
583
|
+
<tr>
|
|
584
|
+
<td style="padding:15px">devicemanagerServiceUpdateConfiguration(iD, body, callback)</td>
|
|
585
|
+
<td style="padding:15px">Update configuration by ID</td>
|
|
586
|
+
<td style="padding:15px">{base_path}/{version}/configuration/{pathv1}?{query}</td>
|
|
587
|
+
<td style="padding:15px">Yes</td>
|
|
588
|
+
</tr>
|
|
589
|
+
<tr>
|
|
590
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfiguration(iD, callback)</td>
|
|
591
|
+
<td style="padding:15px">Delete configuration by ID</td>
|
|
592
|
+
<td style="padding:15px">{base_path}/{version}/configuration/{pathv1}?{query}</td>
|
|
593
|
+
<td style="padding:15px">Yes</td>
|
|
594
|
+
</tr>
|
|
595
|
+
<tr>
|
|
596
|
+
<td style="padding:15px">devicemanagerServiceGetConfiguration(iD, detail, fields, refFields, callback)</td>
|
|
597
|
+
<td style="padding:15px">Get configuration by ID</td>
|
|
598
|
+
<td style="padding:15px">{base_path}/{version}/configuration/{pathv1}?{query}</td>
|
|
599
|
+
<td style="padding:15px">Yes</td>
|
|
600
|
+
</tr>
|
|
601
|
+
<tr>
|
|
602
|
+
<td style="padding:15px">devicemanagerServiceCreateDeletedResource(body, callback)</td>
|
|
603
|
+
<td style="padding:15px">Create deleted-resource</td>
|
|
604
|
+
<td style="padding:15px">{base_path}/{version}/deleted-resource?{query}</td>
|
|
605
|
+
<td style="padding:15px">Yes</td>
|
|
606
|
+
</tr>
|
|
607
|
+
<tr>
|
|
608
|
+
<td style="padding:15px">devicemanagerServiceListDeletedResource(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
609
|
+
<td style="padding:15px">This API can be used to list deleted-resource based on specification given in query parameters.</td>
|
|
610
|
+
<td style="padding:15px">{base_path}/{version}/deleted-resource?{query}</td>
|
|
611
|
+
<td style="padding:15px">Yes</td>
|
|
612
|
+
</tr>
|
|
613
|
+
<tr>
|
|
614
|
+
<td style="padding:15px">devicemanagerServiceCreateConfigResource(body, callback)</td>
|
|
615
|
+
<td style="padding:15px">Create config-resource</td>
|
|
616
|
+
<td style="padding:15px">{base_path}/{version}/config-resource?{query}</td>
|
|
617
|
+
<td style="padding:15px">Yes</td>
|
|
618
|
+
</tr>
|
|
619
|
+
<tr>
|
|
620
|
+
<td style="padding:15px">devicemanagerServiceListConfigResource(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
621
|
+
<td style="padding:15px">This API can be used to list config-resource based on specification given in query parameters.</td>
|
|
622
|
+
<td style="padding:15px">{base_path}/{version}/config-resource?{query}</td>
|
|
623
|
+
<td style="padding:15px">Yes</td>
|
|
624
|
+
</tr>
|
|
625
|
+
<tr>
|
|
626
|
+
<td style="padding:15px">devicemanagerServiceBulkListDeviceActivationInfo(body, callback)</td>
|
|
627
|
+
<td style="padding:15px">This API can be used to list device-activation-info based on specification given in request body.</td>
|
|
628
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-device-activation-info?{query}</td>
|
|
629
|
+
<td style="padding:15px">Yes</td>
|
|
630
|
+
</tr>
|
|
631
|
+
<tr>
|
|
632
|
+
<td style="padding:15px">devicemanagerServiceBulkListConfigResource(body, callback)</td>
|
|
633
|
+
<td style="padding:15px">This API can be used to list config-resource based on specification given in request body.</td>
|
|
634
|
+
<td style="padding:15px">{base_path}/{version}/bulk-list-config-resource?{query}</td>
|
|
635
|
+
<td style="padding:15px">Yes</td>
|
|
636
|
+
</tr>
|
|
637
|
+
<tr>
|
|
638
|
+
<td style="padding:15px">devicemanagerServiceUpdateConfigTemplateViewdef(iD, body, callback)</td>
|
|
639
|
+
<td style="padding:15px">Update config-template-viewdef by ID</td>
|
|
640
|
+
<td style="padding:15px">{base_path}/{version}/config-template-viewdef/{pathv1}?{query}</td>
|
|
641
|
+
<td style="padding:15px">Yes</td>
|
|
642
|
+
</tr>
|
|
643
|
+
<tr>
|
|
644
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfigTemplateViewdef(iD, callback)</td>
|
|
645
|
+
<td style="padding:15px">Delete config-template-viewdef by ID</td>
|
|
646
|
+
<td style="padding:15px">{base_path}/{version}/config-template-viewdef/{pathv1}?{query}</td>
|
|
647
|
+
<td style="padding:15px">Yes</td>
|
|
648
|
+
</tr>
|
|
649
|
+
<tr>
|
|
650
|
+
<td style="padding:15px">devicemanagerServiceGetConfigTemplateViewdef(iD, detail, fields, refFields, callback)</td>
|
|
651
|
+
<td style="padding:15px">Get config-template-viewdef by ID</td>
|
|
652
|
+
<td style="padding:15px">{base_path}/{version}/config-template-viewdef/{pathv1}?{query}</td>
|
|
653
|
+
<td style="padding:15px">Yes</td>
|
|
654
|
+
</tr>
|
|
655
|
+
<tr>
|
|
656
|
+
<td style="padding:15px">devicemanagerServiceUpdateConfigTemplateDeployment(iD, body, callback)</td>
|
|
657
|
+
<td style="padding:15px">Update config-template-deployment by ID</td>
|
|
658
|
+
<td style="padding:15px">{base_path}/{version}/config-template-deployment/{pathv1}?{query}</td>
|
|
659
|
+
<td style="padding:15px">Yes</td>
|
|
660
|
+
</tr>
|
|
661
|
+
<tr>
|
|
662
|
+
<td style="padding:15px">devicemanagerServiceDeleteConfigTemplateDeployment(iD, callback)</td>
|
|
663
|
+
<td style="padding:15px">Delete config-template-deployment by ID</td>
|
|
664
|
+
<td style="padding:15px">{base_path}/{version}/config-template-deployment/{pathv1}?{query}</td>
|
|
665
|
+
<td style="padding:15px">Yes</td>
|
|
666
|
+
</tr>
|
|
667
|
+
<tr>
|
|
668
|
+
<td style="padding:15px">devicemanagerServiceGetConfigTemplateDeployment(iD, detail, fields, refFields, callback)</td>
|
|
669
|
+
<td style="padding:15px">Get config-template-deployment by ID</td>
|
|
670
|
+
<td style="padding:15px">{base_path}/{version}/config-template-deployment/{pathv1}?{query}</td>
|
|
671
|
+
<td style="padding:15px">Yes</td>
|
|
672
|
+
</tr>
|
|
673
|
+
<tr>
|
|
674
|
+
<td style="padding:15px">devicemanagerServiceCreateConfiguration(body, callback)</td>
|
|
675
|
+
<td style="padding:15px">Create configuration</td>
|
|
676
|
+
<td style="padding:15px">{base_path}/{version}/configuration?{query}</td>
|
|
677
|
+
<td style="padding:15px">Yes</td>
|
|
678
|
+
</tr>
|
|
679
|
+
<tr>
|
|
680
|
+
<td style="padding:15px">devicemanagerServiceListConfiguration(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
681
|
+
<td style="padding:15px">This API can be used to list configuration based on specification given in query parameters.</td>
|
|
682
|
+
<td style="padding:15px">{base_path}/{version}/configuration?{query}</td>
|
|
683
|
+
<td style="padding:15px">Yes</td>
|
|
684
|
+
</tr>
|
|
685
|
+
<tr>
|
|
686
|
+
<td style="padding:15px">devicemanagerServiceRefUpdate(body, callback)</td>
|
|
687
|
+
<td style="padding:15px">This API can be used to ADD/DELETE reference between two resources.</td>
|
|
688
|
+
<td style="padding:15px">{base_path}/{version}/ref-update?{query}</td>
|
|
689
|
+
<td style="padding:15px">Yes</td>
|
|
690
|
+
</tr>
|
|
691
|
+
<tr>
|
|
692
|
+
<td style="padding:15px">inventoryServiceSyncInventoryAsync(body, callback)</td>
|
|
693
|
+
<td style="padding:15px">InventoryService_SyncInventoryAsync</td>
|
|
694
|
+
<td style="padding:15px">{base_path}/{version}/sync-inventory-async?{query}</td>
|
|
695
|
+
<td style="padding:15px">Yes</td>
|
|
696
|
+
</tr>
|
|
697
|
+
<tr>
|
|
698
|
+
<td style="padding:15px">inventoryServiceUpdateArchivedConfigVersion(body, callback)</td>
|
|
699
|
+
<td style="padding:15px">InventoryService_UpdateArchivedConfigVersion</td>
|
|
700
|
+
<td style="padding:15px">{base_path}/{version}/update-archived-config-version?{query}</td>
|
|
701
|
+
<td style="padding:15px">Yes</td>
|
|
702
|
+
</tr>
|
|
703
|
+
<tr>
|
|
704
|
+
<td style="padding:15px">inventoryServiceGetDeviceInfo(body, callback)</td>
|
|
705
|
+
<td style="padding:15px">InventoryService_GetDeviceInfo</td>
|
|
706
|
+
<td style="padding:15px">{base_path}/{version}/get-device-info?{query}</td>
|
|
707
|
+
<td style="padding:15px">Yes</td>
|
|
708
|
+
</tr>
|
|
709
|
+
<tr>
|
|
710
|
+
<td style="padding:15px">inventoryServiceDiffArchivedConfigVersions(body, callback)</td>
|
|
711
|
+
<td style="padding:15px">InventoryService_DiffArchivedConfigVersions</td>
|
|
712
|
+
<td style="padding:15px">{base_path}/{version}/diff-archived-config-versions?{query}</td>
|
|
713
|
+
<td style="padding:15px">Yes</td>
|
|
714
|
+
</tr>
|
|
715
|
+
<tr>
|
|
716
|
+
<td style="padding:15px">inventoryServiceListDeviceConfiguration(body, callback)</td>
|
|
717
|
+
<td style="padding:15px">InventoryService_ListDeviceConfiguration</td>
|
|
718
|
+
<td style="padding:15px">{base_path}/{version}/list-device-configuration?{query}</td>
|
|
719
|
+
<td style="padding:15px">Yes</td>
|
|
720
|
+
</tr>
|
|
721
|
+
<tr>
|
|
722
|
+
<td style="padding:15px">inventoryServiceSyncInventory(body, callback)</td>
|
|
723
|
+
<td style="padding:15px">InventoryService_SyncInventory</td>
|
|
724
|
+
<td style="padding:15px">{base_path}/{version}/sync-inventory?{query}</td>
|
|
725
|
+
<td style="padding:15px">Yes</td>
|
|
726
|
+
</tr>
|
|
727
|
+
<tr>
|
|
728
|
+
<td style="padding:15px">inventoryServiceGetArchivedConfigVersion(body, callback)</td>
|
|
729
|
+
<td style="padding:15px">InventoryService_GetArchivedConfigVersion</td>
|
|
730
|
+
<td style="padding:15px">{base_path}/{version}/get-archived-config-version?{query}</td>
|
|
731
|
+
<td style="padding:15px">Yes</td>
|
|
732
|
+
</tr>
|
|
733
|
+
<tr>
|
|
734
|
+
<td style="padding:15px">inventoryServiceDeleteArchivedConfigVersion(body, callback)</td>
|
|
735
|
+
<td style="padding:15px">InventoryService_DeleteArchivedConfigVersion</td>
|
|
736
|
+
<td style="padding:15px">{base_path}/{version}/delete-archived-config-version?{query}</td>
|
|
737
|
+
<td style="padding:15px">Yes</td>
|
|
738
|
+
</tr>
|
|
739
|
+
<tr>
|
|
740
|
+
<td style="padding:15px">configResourceServiceEditSubinterfaceConfig(body, callback)</td>
|
|
741
|
+
<td style="padding:15px">ConfigResourceService_EditSubinterfaceConfig</td>
|
|
742
|
+
<td style="padding:15px">{base_path}/{version}/set-subinterface-config?{query}</td>
|
|
743
|
+
<td style="padding:15px">Yes</td>
|
|
744
|
+
</tr>
|
|
745
|
+
<tr>
|
|
746
|
+
<td style="padding:15px">configResourceServiceGetQosInterfaceConfig(body, callback)</td>
|
|
747
|
+
<td style="padding:15px">ConfigResourceService_GetQosInterfaceConfig</td>
|
|
748
|
+
<td style="padding:15px">{base_path}/{version}/get-qos-interface-config?{query}</td>
|
|
749
|
+
<td style="padding:15px">Yes</td>
|
|
750
|
+
</tr>
|
|
751
|
+
<tr>
|
|
752
|
+
<td style="padding:15px">configResourceServiceEditSslInitiationProfileConfig(body, callback)</td>
|
|
753
|
+
<td style="padding:15px">ConfigResourceService_EditSslInitiationProfileConfig</td>
|
|
754
|
+
<td style="padding:15px">{base_path}/{version}/set-ssl-initiation-profile-config?{query}</td>
|
|
755
|
+
<td style="padding:15px">Yes</td>
|
|
756
|
+
</tr>
|
|
757
|
+
<tr>
|
|
758
|
+
<td style="padding:15px">configResourceServiceEditQosInterfaceConfig(body, callback)</td>
|
|
759
|
+
<td style="padding:15px">ConfigResourceService_EditQosInterfaceConfig</td>
|
|
760
|
+
<td style="padding:15px">{base_path}/{version}/set-qos-interface-config?{query}</td>
|
|
761
|
+
<td style="padding:15px">Yes</td>
|
|
762
|
+
</tr>
|
|
763
|
+
<tr>
|
|
764
|
+
<td style="padding:15px">configResourceServiceGetAclInterfaceConfig(body, callback)</td>
|
|
765
|
+
<td style="padding:15px">ConfigResourceService_GetAclInterfaceConfig</td>
|
|
766
|
+
<td style="padding:15px">{base_path}/{version}/get-acl-interface-config?{query}</td>
|
|
767
|
+
<td style="padding:15px">Yes</td>
|
|
768
|
+
</tr>
|
|
769
|
+
<tr>
|
|
770
|
+
<td style="padding:15px">configResourceServiceEditStpConfig(body, callback)</td>
|
|
771
|
+
<td style="padding:15px">ConfigResourceService_EditStpConfig</td>
|
|
772
|
+
<td style="padding:15px">{base_path}/{version}/set-stp-config?{query}</td>
|
|
773
|
+
<td style="padding:15px">Yes</td>
|
|
774
|
+
</tr>
|
|
775
|
+
<tr>
|
|
776
|
+
<td style="padding:15px">configResourceServiceGetIgmpConfig(body, callback)</td>
|
|
777
|
+
<td style="padding:15px">ConfigResourceService_GetIgmpConfig</td>
|
|
778
|
+
<td style="padding:15px">{base_path}/{version}/get-igmp-config?{query}</td>
|
|
779
|
+
<td style="padding:15px">Yes</td>
|
|
780
|
+
</tr>
|
|
781
|
+
<tr>
|
|
782
|
+
<td style="padding:15px">configResourceServiceEditEvpnConfig(body, callback)</td>
|
|
783
|
+
<td style="padding:15px">ConfigResourceService_EditEvpnConfig</td>
|
|
784
|
+
<td style="padding:15px">{base_path}/{version}/set-evpn-config?{query}</td>
|
|
785
|
+
<td style="padding:15px">Yes</td>
|
|
786
|
+
</tr>
|
|
787
|
+
<tr>
|
|
788
|
+
<td style="padding:15px">configResourceServiceGetZoneConfig(body, callback)</td>
|
|
789
|
+
<td style="padding:15px">ConfigResourceService_GetZoneConfig</td>
|
|
790
|
+
<td style="padding:15px">{base_path}/{version}/get-zone-config?{query}</td>
|
|
791
|
+
<td style="padding:15px">Yes</td>
|
|
792
|
+
</tr>
|
|
793
|
+
<tr>
|
|
794
|
+
<td style="padding:15px">configResourceServiceGetAsPathSetConfig(body, callback)</td>
|
|
795
|
+
<td style="padding:15px">ConfigResourceService_GetAsPathSetConfig</td>
|
|
796
|
+
<td style="padding:15px">{base_path}/{version}/get-as-path-set-config?{query}</td>
|
|
797
|
+
<td style="padding:15px">Yes</td>
|
|
798
|
+
</tr>
|
|
799
|
+
<tr>
|
|
800
|
+
<td style="padding:15px">configResourceServiceGetSubinterfaceConfig(body, callback)</td>
|
|
801
|
+
<td style="padding:15px">ConfigResourceService_GetSubinterfaceConfig</td>
|
|
802
|
+
<td style="padding:15px">{base_path}/{version}/get-subinterface-config?{query}</td>
|
|
803
|
+
<td style="padding:15px">Yes</td>
|
|
804
|
+
</tr>
|
|
805
|
+
<tr>
|
|
806
|
+
<td style="padding:15px">configResourceServiceGetInterfaceConfig(body, callback)</td>
|
|
807
|
+
<td style="padding:15px">ConfigResourceService_GetInterfaceConfig</td>
|
|
808
|
+
<td style="padding:15px">{base_path}/{version}/get-interface-config?{query}</td>
|
|
809
|
+
<td style="padding:15px">Yes</td>
|
|
810
|
+
</tr>
|
|
811
|
+
<tr>
|
|
812
|
+
<td style="padding:15px">configResourceServiceEditSecurityStreamServerConfig(body, callback)</td>
|
|
813
|
+
<td style="padding:15px">ConfigResourceService_EditSecurityStreamServerConfig</td>
|
|
814
|
+
<td style="padding:15px">{base_path}/{version}/set-security-stream-server-config?{query}</td>
|
|
815
|
+
<td style="padding:15px">Yes</td>
|
|
816
|
+
</tr>
|
|
817
|
+
<tr>
|
|
818
|
+
<td style="padding:15px">configResourceServiceEditSystemConfig(body, callback)</td>
|
|
819
|
+
<td style="padding:15px">ConfigResourceService_EditSystemConfig</td>
|
|
820
|
+
<td style="padding:15px">{base_path}/{version}/set-system-config?{query}</td>
|
|
821
|
+
<td style="padding:15px">Yes</td>
|
|
822
|
+
</tr>
|
|
823
|
+
<tr>
|
|
824
|
+
<td style="padding:15px">configResourceServiceEditCommunitySetConfig(body, callback)</td>
|
|
825
|
+
<td style="padding:15px">ConfigResourceService_EditCommunitySetConfig</td>
|
|
826
|
+
<td style="padding:15px">{base_path}/{version}/set-community-set-config?{query}</td>
|
|
827
|
+
<td style="padding:15px">Yes</td>
|
|
828
|
+
</tr>
|
|
829
|
+
<tr>
|
|
830
|
+
<td style="padding:15px">configResourceServiceGetStaticRoutesConfig(body, callback)</td>
|
|
831
|
+
<td style="padding:15px">ConfigResourceService_GetStaticRoutesConfig</td>
|
|
832
|
+
<td style="padding:15px">{base_path}/{version}/get-static-routes-config?{query}</td>
|
|
833
|
+
<td style="padding:15px">Yes</td>
|
|
834
|
+
</tr>
|
|
835
|
+
<tr>
|
|
836
|
+
<td style="padding:15px">configResourceServiceGetStpConfig(body, callback)</td>
|
|
837
|
+
<td style="padding:15px">ConfigResourceService_GetStpConfig</td>
|
|
838
|
+
<td style="padding:15px">{base_path}/{version}/get-stp-config?{query}</td>
|
|
839
|
+
<td style="padding:15px">Yes</td>
|
|
840
|
+
</tr>
|
|
841
|
+
<tr>
|
|
842
|
+
<td style="padding:15px">configResourceServiceGetSecurityStreamServerConfig(body, callback)</td>
|
|
843
|
+
<td style="padding:15px">ConfigResourceService_GetSecurityStreamServerConfig</td>
|
|
844
|
+
<td style="padding:15px">{base_path}/{version}/get-security-stream-server-config?{query}</td>
|
|
845
|
+
<td style="padding:15px">Yes</td>
|
|
846
|
+
</tr>
|
|
847
|
+
<tr>
|
|
848
|
+
<td style="padding:15px">configResourceServiceEditBgpNeighborConfig(body, callback)</td>
|
|
849
|
+
<td style="padding:15px">ConfigResourceService_EditBgpNeighborConfig</td>
|
|
850
|
+
<td style="padding:15px">{base_path}/{version}/set-bgp-neighbor-config?{query}</td>
|
|
851
|
+
<td style="padding:15px">Yes</td>
|
|
852
|
+
</tr>
|
|
853
|
+
<tr>
|
|
854
|
+
<td style="padding:15px">configResourceServiceEditBgpPeerGroupConfig(body, callback)</td>
|
|
855
|
+
<td style="padding:15px">ConfigResourceService_EditBgpPeerGroupConfig</td>
|
|
856
|
+
<td style="padding:15px">{base_path}/{version}/set-bgp-peer-group-config?{query}</td>
|
|
857
|
+
<td style="padding:15px">Yes</td>
|
|
858
|
+
</tr>
|
|
859
|
+
<tr>
|
|
860
|
+
<td style="padding:15px">configResourceServiceEditAclInterfaceConfig(body, callback)</td>
|
|
861
|
+
<td style="padding:15px">ConfigResourceService_EditAclInterfaceConfig</td>
|
|
862
|
+
<td style="padding:15px">{base_path}/{version}/set-acl-interface-config?{query}</td>
|
|
863
|
+
<td style="padding:15px">Yes</td>
|
|
864
|
+
</tr>
|
|
865
|
+
<tr>
|
|
866
|
+
<td style="padding:15px">configResourceServiceGetEvpnConfig(body, callback)</td>
|
|
867
|
+
<td style="padding:15px">ConfigResourceService_GetEvpnConfig</td>
|
|
868
|
+
<td style="padding:15px">{base_path}/{version}/get-evpn-config?{query}</td>
|
|
869
|
+
<td style="padding:15px">Yes</td>
|
|
870
|
+
</tr>
|
|
871
|
+
<tr>
|
|
872
|
+
<td style="padding:15px">configResourceServiceEditNetworkInstanceConfig(body, callback)</td>
|
|
873
|
+
<td style="padding:15px">ConfigResourceService_EditNetworkInstanceConfig</td>
|
|
874
|
+
<td style="padding:15px">{base_path}/{version}/set-network-instance-config?{query}</td>
|
|
875
|
+
<td style="padding:15px">Yes</td>
|
|
876
|
+
</tr>
|
|
877
|
+
<tr>
|
|
878
|
+
<td style="padding:15px">configResourceServiceEditIgmpConfig(body, callback)</td>
|
|
879
|
+
<td style="padding:15px">ConfigResourceService_EditIgmpConfig</td>
|
|
880
|
+
<td style="padding:15px">{base_path}/{version}/set-igmp-config?{query}</td>
|
|
881
|
+
<td style="padding:15px">Yes</td>
|
|
882
|
+
</tr>
|
|
883
|
+
<tr>
|
|
884
|
+
<td style="padding:15px">configResourceServiceEditInterfaceConfig(body, callback)</td>
|
|
885
|
+
<td style="padding:15px">ConfigResourceService_EditInterfaceConfig</td>
|
|
886
|
+
<td style="padding:15px">{base_path}/{version}/set-interface-config?{query}</td>
|
|
887
|
+
<td style="padding:15px">Yes</td>
|
|
888
|
+
</tr>
|
|
889
|
+
<tr>
|
|
890
|
+
<td style="padding:15px">configResourceServiceGetLacpConfig(body, callback)</td>
|
|
891
|
+
<td style="padding:15px">ConfigResourceService_GetLacpConfig</td>
|
|
892
|
+
<td style="padding:15px">{base_path}/{version}/get-lacp-config?{query}</td>
|
|
893
|
+
<td style="padding:15px">Yes</td>
|
|
894
|
+
</tr>
|
|
895
|
+
<tr>
|
|
896
|
+
<td style="padding:15px">configResourceServiceEditVlanConfig(body, callback)</td>
|
|
897
|
+
<td style="padding:15px">ConfigResourceService_EditVlanConfig</td>
|
|
898
|
+
<td style="padding:15px">{base_path}/{version}/set-vlan-config?{query}</td>
|
|
899
|
+
<td style="padding:15px">Yes</td>
|
|
900
|
+
</tr>
|
|
901
|
+
<tr>
|
|
902
|
+
<td style="padding:15px">configResourceServiceEditSecurityLogConfig(body, callback)</td>
|
|
903
|
+
<td style="padding:15px">ConfigResourceService_EditSecurityLogConfig</td>
|
|
904
|
+
<td style="padding:15px">{base_path}/{version}/set-security-log-config?{query}</td>
|
|
905
|
+
<td style="padding:15px">Yes</td>
|
|
906
|
+
</tr>
|
|
907
|
+
<tr>
|
|
908
|
+
<td style="padding:15px">configResourceServiceEditBgpGlobalConfig(body, callback)</td>
|
|
909
|
+
<td style="padding:15px">ConfigResourceService_EditBgpGlobalConfig</td>
|
|
910
|
+
<td style="padding:15px">{base_path}/{version}/set-bgp-global-config?{query}</td>
|
|
911
|
+
<td style="padding:15px">Yes</td>
|
|
912
|
+
</tr>
|
|
913
|
+
<tr>
|
|
914
|
+
<td style="padding:15px">configResourceServiceEditZoneConfig(body, callback)</td>
|
|
915
|
+
<td style="padding:15px">ConfigResourceService_EditZoneConfig</td>
|
|
916
|
+
<td style="padding:15px">{base_path}/{version}/set-zone-config?{query}</td>
|
|
917
|
+
<td style="padding:15px">Yes</td>
|
|
918
|
+
</tr>
|
|
919
|
+
<tr>
|
|
920
|
+
<td style="padding:15px">configResourceServiceGetSystemConfig(body, callback)</td>
|
|
921
|
+
<td style="padding:15px">ConfigResourceService_GetSystemConfig</td>
|
|
922
|
+
<td style="padding:15px">{base_path}/{version}/get-system-config?{query}</td>
|
|
923
|
+
<td style="padding:15px">Yes</td>
|
|
924
|
+
</tr>
|
|
925
|
+
<tr>
|
|
926
|
+
<td style="padding:15px">configResourceServiceGetBgpGlobalConfig(body, callback)</td>
|
|
927
|
+
<td style="padding:15px">ConfigResourceService_GetBgpGlobalConfig</td>
|
|
928
|
+
<td style="padding:15px">{base_path}/{version}/get-bgp-global-config?{query}</td>
|
|
929
|
+
<td style="padding:15px">Yes</td>
|
|
930
|
+
</tr>
|
|
931
|
+
<tr>
|
|
932
|
+
<td style="padding:15px">configResourceServiceEditStaticRoutesConfig(body, callback)</td>
|
|
933
|
+
<td style="padding:15px">ConfigResourceService_EditStaticRoutesConfig</td>
|
|
934
|
+
<td style="padding:15px">{base_path}/{version}/set-static-routes-config?{query}</td>
|
|
935
|
+
<td style="padding:15px">Yes</td>
|
|
936
|
+
</tr>
|
|
937
|
+
<tr>
|
|
938
|
+
<td style="padding:15px">configResourceServiceGetBgpPeerGroupConfig(body, callback)</td>
|
|
939
|
+
<td style="padding:15px">ConfigResourceService_GetBgpPeerGroupConfig</td>
|
|
940
|
+
<td style="padding:15px">{base_path}/{version}/get-bgp-peer-group-config?{query}</td>
|
|
941
|
+
<td style="padding:15px">Yes</td>
|
|
942
|
+
</tr>
|
|
943
|
+
<tr>
|
|
944
|
+
<td style="padding:15px">configResourceServiceGetCommunitySetConfig(body, callback)</td>
|
|
945
|
+
<td style="padding:15px">ConfigResourceService_GetCommunitySetConfig</td>
|
|
946
|
+
<td style="padding:15px">{base_path}/{version}/get-community-set-config?{query}</td>
|
|
947
|
+
<td style="padding:15px">Yes</td>
|
|
948
|
+
</tr>
|
|
949
|
+
<tr>
|
|
950
|
+
<td style="padding:15px">configResourceServiceGetNetworkInstanceConfig(body, callback)</td>
|
|
951
|
+
<td style="padding:15px">ConfigResourceService_GetNetworkInstanceConfig</td>
|
|
952
|
+
<td style="padding:15px">{base_path}/{version}/get-network-instance-config?{query}</td>
|
|
953
|
+
<td style="padding:15px">Yes</td>
|
|
954
|
+
</tr>
|
|
955
|
+
<tr>
|
|
956
|
+
<td style="padding:15px">configResourceServiceEditPolicyDefinitionConfig(body, callback)</td>
|
|
957
|
+
<td style="padding:15px">ConfigResourceService_EditPolicyDefinitionConfig</td>
|
|
958
|
+
<td style="padding:15px">{base_path}/{version}/set-policy-definition-config?{query}</td>
|
|
959
|
+
<td style="padding:15px">Yes</td>
|
|
960
|
+
</tr>
|
|
961
|
+
<tr>
|
|
962
|
+
<td style="padding:15px">configResourceServiceGetVlanConfig(body, callback)</td>
|
|
963
|
+
<td style="padding:15px">ConfigResourceService_GetVlanConfig</td>
|
|
964
|
+
<td style="padding:15px">{base_path}/{version}/get-vlan-config?{query}</td>
|
|
965
|
+
<td style="padding:15px">Yes</td>
|
|
966
|
+
</tr>
|
|
967
|
+
<tr>
|
|
968
|
+
<td style="padding:15px">configResourceServiceGetSecurityLogConfig(body, callback)</td>
|
|
969
|
+
<td style="padding:15px">ConfigResourceService_GetSecurityLogConfig</td>
|
|
970
|
+
<td style="padding:15px">{base_path}/{version}/get-security-log-config?{query}</td>
|
|
971
|
+
<td style="padding:15px">Yes</td>
|
|
972
|
+
</tr>
|
|
973
|
+
<tr>
|
|
974
|
+
<td style="padding:15px">configResourceServiceGetBgpNeighborConfig(body, callback)</td>
|
|
975
|
+
<td style="padding:15px">ConfigResourceService_GetBgpNeighborConfig</td>
|
|
976
|
+
<td style="padding:15px">{base_path}/{version}/get-bgp-neighbor-config?{query}</td>
|
|
977
|
+
<td style="padding:15px">Yes</td>
|
|
978
|
+
</tr>
|
|
979
|
+
<tr>
|
|
980
|
+
<td style="padding:15px">configResourceServiceEditQosClassifierConfig(body, callback)</td>
|
|
981
|
+
<td style="padding:15px">ConfigResourceService_EditQosClassifierConfig</td>
|
|
982
|
+
<td style="padding:15px">{base_path}/{version}/set-qos-classifier-config?{query}</td>
|
|
983
|
+
<td style="padding:15px">Yes</td>
|
|
984
|
+
</tr>
|
|
985
|
+
<tr>
|
|
986
|
+
<td style="padding:15px">configResourceServiceGetSslInitiationProfileConfig(body, callback)</td>
|
|
987
|
+
<td style="padding:15px">ConfigResourceService_GetSslInitiationProfileConfig</td>
|
|
988
|
+
<td style="padding:15px">{base_path}/{version}/get-ssl-initiation-profile-config?{query}</td>
|
|
989
|
+
<td style="padding:15px">Yes</td>
|
|
990
|
+
</tr>
|
|
991
|
+
<tr>
|
|
992
|
+
<td style="padding:15px">configResourceServiceEditLacpConfig(body, callback)</td>
|
|
993
|
+
<td style="padding:15px">ConfigResourceService_EditLacpConfig</td>
|
|
994
|
+
<td style="padding:15px">{base_path}/{version}/set-lacp-config?{query}</td>
|
|
995
|
+
<td style="padding:15px">Yes</td>
|
|
996
|
+
</tr>
|
|
997
|
+
<tr>
|
|
998
|
+
<td style="padding:15px">configResourceServiceGetQosClassifierConfig(body, callback)</td>
|
|
999
|
+
<td style="padding:15px">ConfigResourceService_GetQosClassifierConfig</td>
|
|
1000
|
+
<td style="padding:15px">{base_path}/{version}/get-qos-classifier-config?{query}</td>
|
|
1001
|
+
<td style="padding:15px">Yes</td>
|
|
1002
|
+
</tr>
|
|
1003
|
+
<tr>
|
|
1004
|
+
<td style="padding:15px">configResourceServiceEditAsPathSetConfig(body, callback)</td>
|
|
1005
|
+
<td style="padding:15px">ConfigResourceService_EditAsPathSetConfig</td>
|
|
1006
|
+
<td style="padding:15px">{base_path}/{version}/set-as-path-set-config?{query}</td>
|
|
1007
|
+
<td style="padding:15px">Yes</td>
|
|
1008
|
+
</tr>
|
|
1009
|
+
<tr>
|
|
1010
|
+
<td style="padding:15px">configResourceServiceGetPolicyDefinitionConfig(body, callback)</td>
|
|
1011
|
+
<td style="padding:15px">ConfigResourceService_GetPolicyDefinitionConfig</td>
|
|
1012
|
+
<td style="padding:15px">{base_path}/{version}/get-policy-definition-config?{query}</td>
|
|
1013
|
+
<td style="padding:15px">Yes</td>
|
|
1014
|
+
</tr>
|
|
1015
|
+
<tr>
|
|
1016
|
+
<td style="padding:15px">configResourceServiceGetAclSetConfig(body, callback)</td>
|
|
1017
|
+
<td style="padding:15px">ConfigResourceService_GetAclSetConfig</td>
|
|
1018
|
+
<td style="padding:15px">{base_path}/{version}/get-acl-set-config?{query}</td>
|
|
1019
|
+
<td style="padding:15px">Yes</td>
|
|
1020
|
+
</tr>
|
|
1021
|
+
<tr>
|
|
1022
|
+
<td style="padding:15px">configResourceServiceEditAclSetConfig(body, callback)</td>
|
|
1023
|
+
<td style="padding:15px">ConfigResourceService_EditAclSetConfig</td>
|
|
1024
|
+
<td style="padding:15px">{base_path}/{version}/set-acl-set-config?{query}</td>
|
|
1025
|
+
<td style="padding:15px">Yes</td>
|
|
1026
|
+
</tr>
|
|
1027
|
+
<tr>
|
|
1028
|
+
<td style="padding:15px">configTemplateServiceGetAssociations(body, callback)</td>
|
|
1029
|
+
<td style="padding:15px">ConfigTemplateService_GetAssociations</td>
|
|
1030
|
+
<td style="padding:15px">{base_path}/{version}/config-template/get-associations?{query}</td>
|
|
1031
|
+
<td style="padding:15px">Yes</td>
|
|
1032
|
+
</tr>
|
|
1033
|
+
<tr>
|
|
1034
|
+
<td style="padding:15px">configTemplateServiceValidate(body, callback)</td>
|
|
1035
|
+
<td style="padding:15px">ConfigTemplateService_Validate</td>
|
|
1036
|
+
<td style="padding:15px">{base_path}/{version}/config-template/validate?{query}</td>
|
|
1037
|
+
<td style="padding:15px">Yes</td>
|
|
1038
|
+
</tr>
|
|
1039
|
+
<tr>
|
|
1040
|
+
<td style="padding:15px">configTemplateServiceAssignToDeviceTemplate(body, callback)</td>
|
|
1041
|
+
<td style="padding:15px">ConfigTemplateService_AssignToDeviceTemplate</td>
|
|
1042
|
+
<td style="padding:15px">{base_path}/{version}/config-template/assign-to-device-template?{query}</td>
|
|
1043
|
+
<td style="padding:15px">Yes</td>
|
|
1044
|
+
</tr>
|
|
1045
|
+
<tr>
|
|
1046
|
+
<td style="padding:15px">configTemplateServiceUnassignFromDeviceTemplate(body, callback)</td>
|
|
1047
|
+
<td style="padding:15px">ConfigTemplateService_UnassignFromDeviceTemplate</td>
|
|
1048
|
+
<td style="padding:15px">{base_path}/{version}/config-template/unassign-from-device-template?{query}</td>
|
|
1049
|
+
<td style="padding:15px">Yes</td>
|
|
1050
|
+
</tr>
|
|
1051
|
+
<tr>
|
|
1052
|
+
<td style="padding:15px">configTemplateServiceDelete(body, callback)</td>
|
|
1053
|
+
<td style="padding:15px">ConfigTemplateService_Delete</td>
|
|
1054
|
+
<td style="padding:15px">{base_path}/{version}/config-template/delete?{query}</td>
|
|
1055
|
+
<td style="padding:15px">Yes</td>
|
|
1056
|
+
</tr>
|
|
1057
|
+
<tr>
|
|
1058
|
+
<td style="padding:15px">configTemplateServiceListConfigTemplateView(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
|
|
1059
|
+
<td style="padding:15px">ConfigTemplateService_ListConfigTemplateView</td>
|
|
1060
|
+
<td style="padding:15px">{base_path}/{version}/config-template-view?{query}</td>
|
|
1061
|
+
<td style="padding:15px">Yes</td>
|
|
1062
|
+
</tr>
|
|
1063
|
+
<tr>
|
|
1064
|
+
<td style="padding:15px">configTemplateServiceSaveAssociations(body, callback)</td>
|
|
1065
|
+
<td style="padding:15px">ConfigTemplateService_SaveAssociations</td>
|
|
1066
|
+
<td style="padding:15px">{base_path}/{version}/config-template/save-associations?{query}</td>
|
|
1067
|
+
<td style="padding:15px">Yes</td>
|
|
1068
|
+
</tr>
|
|
1069
|
+
<tr>
|
|
1070
|
+
<td style="padding:15px">configTemplateServiceValidateAsync(body, callback)</td>
|
|
1071
|
+
<td style="padding:15px">ConfigTemplateService_ValidateAsync</td>
|
|
1072
|
+
<td style="padding:15px">{base_path}/{version}/config-template/validate-async?{query}</td>
|
|
1073
|
+
<td style="padding:15px">Yes</td>
|
|
1074
|
+
</tr>
|
|
1075
|
+
<tr>
|
|
1076
|
+
<td style="padding:15px">configTemplateServiceConfigureInitValues(body, callback)</td>
|
|
1077
|
+
<td style="padding:15px">ConfigTemplateService_ConfigureInitValues</td>
|
|
1078
|
+
<td style="padding:15px">{base_path}/{version}/config-template/configure-init-values?{query}</td>
|
|
1079
|
+
<td style="padding:15px">Yes</td>
|
|
1080
|
+
</tr>
|
|
1081
|
+
<tr>
|
|
1082
|
+
<td style="padding:15px">configTemplateServiceDeployAsync(body, callback)</td>
|
|
1083
|
+
<td style="padding:15px">ConfigTemplateService_DeployAsync</td>
|
|
1084
|
+
<td style="padding:15px">{base_path}/{version}/config-template/deploy-async?{query}</td>
|
|
1085
|
+
<td style="padding:15px">Yes</td>
|
|
1086
|
+
</tr>
|
|
1087
|
+
<tr>
|
|
1088
|
+
<td style="padding:15px">configTemplateServiceValidateAssociations(body, callback)</td>
|
|
1089
|
+
<td style="padding:15px">ConfigTemplateService_ValidateAssociations</td>
|
|
1090
|
+
<td style="padding:15px">{base_path}/{version}/config-template/validate-associations?{query}</td>
|
|
1091
|
+
<td style="padding:15px">Yes</td>
|
|
1092
|
+
</tr>
|
|
1093
|
+
<tr>
|
|
1094
|
+
<td style="padding:15px">configTemplateServiceDeploy(body, callback)</td>
|
|
1095
|
+
<td style="padding:15px">ConfigTemplateService_Deploy</td>
|
|
1096
|
+
<td style="padding:15px">{base_path}/{version}/config-template/deploy?{query}</td>
|
|
1097
|
+
<td style="padding:15px">Yes</td>
|
|
1098
|
+
</tr>
|
|
1099
|
+
<tr>
|
|
1100
|
+
<td style="padding:15px">configTemplateServiceEditWithViewdef(body, callback)</td>
|
|
1101
|
+
<td style="padding:15px">ConfigTemplateService_EditWithViewdef</td>
|
|
1102
|
+
<td style="padding:15px">{base_path}/{version}/config-template/edit-with-viewdef?{query}</td>
|
|
1103
|
+
<td style="padding:15px">Yes</td>
|
|
1104
|
+
</tr>
|
|
1105
|
+
<tr>
|
|
1106
|
+
<td style="padding:15px">configTemplateServiceGenerateSchema(body, callback)</td>
|
|
1107
|
+
<td style="padding:15px">ConfigTemplateService_GenerateSchema</td>
|
|
1108
|
+
<td style="padding:15px">{base_path}/{version}/config-template/generate-schema?{query}</td>
|
|
1109
|
+
<td style="padding:15px">Yes</td>
|
|
1110
|
+
</tr>
|
|
1111
|
+
<tr>
|
|
1112
|
+
<td style="padding:15px">configTemplateServiceCreateWithViewdef(body, callback)</td>
|
|
1113
|
+
<td style="padding:15px">ConfigTemplateService_CreateWithViewdef</td>
|
|
1114
|
+
<td style="padding:15px">{base_path}/{version}/config-template/create-with-viewdef?{query}</td>
|
|
1115
|
+
<td style="padding:15px">Yes</td>
|
|
1116
|
+
</tr>
|
|
1117
|
+
<tr>
|
|
1118
|
+
<td style="padding:15px">configTemplateServicePreview(body, callback)</td>
|
|
1119
|
+
<td style="padding:15px">ConfigTemplateService_Preview</td>
|
|
1120
|
+
<td style="padding:15px">{base_path}/{version}/config-template/preview?{query}</td>
|
|
1121
|
+
<td style="padding:15px">Yes</td>
|
|
1122
|
+
</tr>
|
|
1123
|
+
<tr>
|
|
1124
|
+
<td style="padding:15px">configTemplateServiceDeployAssociations(body, callback)</td>
|
|
1125
|
+
<td style="padding:15px">ConfigTemplateService_DeployAssociations</td>
|
|
1126
|
+
<td style="padding:15px">{base_path}/{version}/config-template/deploy-associations?{query}</td>
|
|
1127
|
+
<td style="padding:15px">Yes</td>
|
|
1128
|
+
</tr>
|
|
1129
|
+
<tr>
|
|
1130
|
+
<td style="padding:15px">deviceOnboardingServiceDiscoverDevices(body, callback)</td>
|
|
1131
|
+
<td style="padding:15px">DeviceOnboardingService_DiscoverDevices</td>
|
|
1132
|
+
<td style="padding:15px">{base_path}/{version}/discover-devices?{query}</td>
|
|
1133
|
+
<td style="padding:15px">Yes</td>
|
|
1134
|
+
</tr>
|
|
1135
|
+
<tr>
|
|
1136
|
+
<td style="padding:15px">deviceOnboardingServiceGetSupportedVendors(callback)</td>
|
|
1137
|
+
<td style="padding:15px">DeviceOnboardingService_GetSupportedVendors</td>
|
|
1138
|
+
<td style="padding:15px">{base_path}/{version}/get-supported-vendors?{query}</td>
|
|
1139
|
+
<td style="padding:15px">Yes</td>
|
|
1140
|
+
</tr>
|
|
1141
|
+
<tr>
|
|
1142
|
+
<td style="padding:15px">deviceOnboardingServiceAddDevices(body, callback)</td>
|
|
1143
|
+
<td style="padding:15px">DeviceOnboardingService_AddDevices</td>
|
|
1144
|
+
<td style="padding:15px">{base_path}/{version}/add-devices?{query}</td>
|
|
1145
|
+
<td style="padding:15px">Yes</td>
|
|
1146
|
+
</tr>
|
|
1147
|
+
<tr>
|
|
1148
|
+
<td style="padding:15px">deviceOnboardingServiceGetBootstrapConfig(body, callback)</td>
|
|
1149
|
+
<td style="padding:15px">DeviceOnboardingService_GetBootstrapConfig</td>
|
|
1150
|
+
<td style="padding:15px">{base_path}/{version}/get-bootstrap-config?{query}</td>
|
|
1151
|
+
<td style="padding:15px">Yes</td>
|
|
1152
|
+
</tr>
|
|
1153
|
+
<tr>
|
|
1154
|
+
<td style="padding:15px">deviceOnboardingServiceActivateReachableDevices(body, callback)</td>
|
|
1155
|
+
<td style="padding:15px">DeviceOnboardingService_ActivateReachableDevices</td>
|
|
1156
|
+
<td style="padding:15px">{base_path}/{version}/activate-reachable-devices?{query}</td>
|
|
1157
|
+
<td style="padding:15px">Yes</td>
|
|
1158
|
+
</tr>
|
|
1159
|
+
<tr>
|
|
1160
|
+
<td style="padding:15px">configOperationServiceDeployConfigResource(body, callback)</td>
|
|
1161
|
+
<td style="padding:15px">ConfigOperationService_DeployConfigResource</td>
|
|
1162
|
+
<td style="padding:15px">{base_path}/{version}/deploy-config-resource?{query}</td>
|
|
1163
|
+
<td style="padding:15px">Yes</td>
|
|
1164
|
+
</tr>
|
|
1165
|
+
<tr>
|
|
1166
|
+
<td style="padding:15px">configOperationServiceDeployConfigResourceAsync(body, callback)</td>
|
|
1167
|
+
<td style="padding:15px">ConfigOperationService_DeployConfigResourceAsync</td>
|
|
1168
|
+
<td style="padding:15px">{base_path}/{version}/deploy-config-resource-async?{query}</td>
|
|
1169
|
+
<td style="padding:15px">Yes</td>
|
|
1170
|
+
</tr>
|
|
1171
|
+
<tr>
|
|
1172
|
+
<td style="padding:15px">configOperationServicePublishConfigResource(body, callback)</td>
|
|
1173
|
+
<td style="padding:15px">ConfigOperationService_PublishConfigResource</td>
|
|
1174
|
+
<td style="padding:15px">{base_path}/{version}/publish-config-resource?{query}</td>
|
|
1175
|
+
<td style="padding:15px">Yes</td>
|
|
1176
|
+
</tr>
|
|
1177
|
+
<tr>
|
|
1178
|
+
<td style="padding:15px">configOperationServiceSyncConfig(body, callback)</td>
|
|
1179
|
+
<td style="padding:15px">ConfigOperationService_SyncConfig</td>
|
|
1180
|
+
<td style="padding:15px">{base_path}/{version}/sync-config?{query}</td>
|
|
1181
|
+
<td style="padding:15px">Yes</td>
|
|
1182
|
+
</tr>
|
|
1183
|
+
<tr>
|
|
1184
|
+
<td style="padding:15px">configOperationServiceGetEffectiveState(body, callback)</td>
|
|
1185
|
+
<td style="padding:15px">ConfigOperationService_GetEffectiveState</td>
|
|
1186
|
+
<td style="padding:15px">{base_path}/{version}/get-effective-state?{query}</td>
|
|
1187
|
+
<td style="padding:15px">Yes</td>
|
|
1188
|
+
</tr>
|
|
1189
|
+
<tr>
|
|
1190
|
+
<td style="padding:15px">configOperationServicePreviewConfig(body, callback)</td>
|
|
1191
|
+
<td style="padding:15px">ConfigOperationService_PreviewConfig</td>
|
|
1192
|
+
<td style="padding:15px">{base_path}/{version}/preview-config?{query}</td>
|
|
1193
|
+
<td style="padding:15px">Yes</td>
|
|
1194
|
+
</tr>
|
|
1195
|
+
<tr>
|
|
1196
|
+
<td style="padding:15px">configOperationServiceRestoreArchivedConfigVersionAsync(body, callback)</td>
|
|
1197
|
+
<td style="padding:15px">ConfigOperationService_RestoreArchivedConfigVersionAsync</td>
|
|
1198
|
+
<td style="padding:15px">{base_path}/{version}/restore-archived-config-version-async?{query}</td>
|
|
1199
|
+
<td style="padding:15px">Yes</td>
|
|
1200
|
+
</tr>
|
|
1201
|
+
<tr>
|
|
1202
|
+
<td style="padding:15px">configOperationServiceValidateConfig(body, callback)</td>
|
|
1203
|
+
<td style="padding:15px">ConfigOperationService_ValidateConfig</td>
|
|
1204
|
+
<td style="padding:15px">{base_path}/{version}/validate-config?{query}</td>
|
|
1205
|
+
<td style="padding:15px">Yes</td>
|
|
1206
|
+
</tr>
|
|
1207
|
+
<tr>
|
|
1208
|
+
<td style="padding:15px">configOperationServiceRestoreArchivedConfigVersion(body, callback)</td>
|
|
1209
|
+
<td style="padding:15px">ConfigOperationService_RestoreArchivedConfigVersion</td>
|
|
1210
|
+
<td style="padding:15px">{base_path}/{version}/restore-archived-config-version?{query}</td>
|
|
1211
|
+
<td style="padding:15px">Yes</td>
|
|
1212
|
+
</tr>
|
|
1213
|
+
<tr>
|
|
1214
|
+
<td style="padding:15px">commandServiceRebootDevices(body, callback)</td>
|
|
1215
|
+
<td style="padding:15px">RPC to reboot the specified devices</td>
|
|
1216
|
+
<td style="padding:15px">{base_path}/{version}/reboot-devices?{query}</td>
|
|
1217
|
+
<td style="padding:15px">Yes</td>
|
|
1218
|
+
</tr>
|
|
1219
|
+
<tr>
|
|
1220
|
+
<td style="padding:15px">commandServiceGetNeighbors(body, callback)</td>
|
|
1221
|
+
<td style="padding:15px">RPC to get the L2 neighbours for the specified device</td>
|
|
1222
|
+
<td style="padding:15px">{base_path}/{version}/get-neighbors?{query}</td>
|
|
1223
|
+
<td style="padding:15px">Yes</td>
|
|
1224
|
+
</tr>
|
|
1225
|
+
<tr>
|
|
1226
|
+
<td style="padding:15px">deviceLCMServiceDeleteSingleDevice(body, callback)</td>
|
|
1227
|
+
<td style="padding:15px">DeviceLCMService_DeleteSingleDevice</td>
|
|
1228
|
+
<td style="padding:15px">{base_path}/{version}/delete-single-device?{query}</td>
|
|
1229
|
+
<td style="padding:15px">Yes</td>
|
|
1230
|
+
</tr>
|
|
1231
|
+
<tr>
|
|
1232
|
+
<td style="padding:15px">deviceLCMServiceDeleteDevicesAsync(body, callback)</td>
|
|
1233
|
+
<td style="padding:15px">DeviceLCMService_DeleteDevicesAsync</td>
|
|
1234
|
+
<td style="padding:15px">{base_path}/{version}/delete-devices-async?{query}</td>
|
|
1235
|
+
<td style="padding:15px">Yes</td>
|
|
1236
|
+
</tr>
|
|
1237
|
+
</table>
|
|
1238
|
+
<br>
|