@itentialopensource/adapter-calix_smx 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +5 -0
- package/.eslintrc.js +19 -0
- package/.jshintrc +3 -0
- package/AUTH.md +42 -0
- package/BROKER.md +211 -0
- package/CALLS.md +207 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +13 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +676 -0
- package/README.md +344 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +35 -0
- package/TROUBLESHOOT.md +56 -0
- package/UTILITIES.md +473 -0
- package/adapter.js +189915 -0
- package/adapterBase.js +1526 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/Config/action.json +861 -0
- package/entities/Config/schema.json +136 -0
- package/entities/ConfigDevice/action.json +12813 -0
- package/entities/ConfigDevice/schema.json +1281 -0
- package/entities/ConfigProfile/action.json +2608 -0
- package/entities/ConfigProfile/schema.json +164 -0
- package/entities/ConfigTemplate/action.json +841 -0
- package/entities/ConfigTemplate/schema.json +147 -0
- package/entities/EMS/action.json +1565 -0
- package/entities/EMS/schema.json +182 -0
- package/entities/EMSProfile/action.json +14871 -0
- package/entities/EMSProfile/schema.json +1001 -0
- package/entities/EMSRegion/action.json +127 -0
- package/entities/EMSRegion/schema.json +24 -0
- package/entities/EMSService/action.json +855 -0
- package/entities/EMSService/schema.json +269 -0
- package/entities/EMSSubscriber/action.json +190 -0
- package/entities/EMSSubscriber/schema.json +104 -0
- package/entities/Fault/action.json +209 -0
- package/entities/Fault/schema.json +61 -0
- package/entities/Log/action.json +25 -0
- package/entities/Log/schema.json +19 -0
- package/entities/PerformanceMonitoring/action.json +1114 -0
- package/entities/PerformanceMonitoring/schema.json +302 -0
- package/entities/Port/action.json +24 -0
- package/entities/Port/schema.json +30 -0
- package/error.json +190 -0
- package/metadata.json +81 -0
- package/package.json +76 -0
- package/pronghorn.json +119022 -0
- package/propertiesDecorators.json +18 -0
- package/propertiesSchema.json +1765 -0
- package/report/creationReport.json +9189 -0
- package/report/smx_modified_rename.json +97860 -0
- package/report/updateReport1766175812348.json +120 -0
- package/sampleProperties.json +263 -0
- package/test/integration/adapterTestBasicGet.js +117 -0
- package/test/integration/adapterTestConnectivity.js +117 -0
- package/test/integration/adapterTestIntegration.js +45491 -0
- package/test/unit/adapterBaseTestUnit.js +1628 -0
- package/test/unit/adapterTestUnit.js +66088 -0
- package/utils/adapterInfo.js +156 -0
- package/utils/argParser.js +44 -0
- package/utils/checkMigrate.js +102 -0
- package/utils/entitiesToDB.js +190 -0
- package/utils/findPath.js +74 -0
- package/utils/logger.js +26 -0
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +153 -0
- package/utils/mongoDbConnection.js +79 -0
- package/utils/mongoUtils.js +162 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/taskMover.js +308 -0
- package/utils/tbScript.js +103 -0
- package/utils/tbUtils.js +347 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +177 -0
- package/utils/updateAdapterConfig.js +158 -0
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": true,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "getClassMapByDeviceByProfile",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getClassMapByDeviceByProfile",
|
|
14
|
+
"getPolicyActionsByDeviceByProfile",
|
|
15
|
+
"getPolicyMapByDeviceByProfile",
|
|
16
|
+
"getClassMapByDevice",
|
|
17
|
+
"getPolicyActionsByDevice",
|
|
18
|
+
"getPolicyMapByDevice",
|
|
19
|
+
"getPonuscosByDevice",
|
|
20
|
+
"getAllClassMap",
|
|
21
|
+
"getClassMapByProfile",
|
|
22
|
+
"createAccessListIpv4ByProfile",
|
|
23
|
+
"updateAccessListIpv4ByProfile",
|
|
24
|
+
"createAccessListIpv6ByProfile",
|
|
25
|
+
"updateAccessListIpv6ByProfile",
|
|
26
|
+
"createAccessListByProfile",
|
|
27
|
+
"updateAccessListByProfile",
|
|
28
|
+
"createAggregateShaperProfileByProfile",
|
|
29
|
+
"updateAggregateShaperProfileByProfile",
|
|
30
|
+
"createAggregatedServiceByProfile",
|
|
31
|
+
"updateAggregatedServiceByProfile",
|
|
32
|
+
"createAuthenticationProfileByProfile",
|
|
33
|
+
"updateAuthenticationProfileByProfile",
|
|
34
|
+
"createClassMapByProfile",
|
|
35
|
+
"updateClassMapByProfile",
|
|
36
|
+
"createClassMapIpByProfile",
|
|
37
|
+
"updateClassMapIpByProfile",
|
|
38
|
+
"createControlPolicyByProfile",
|
|
39
|
+
"updateControlPolicyByProfile",
|
|
40
|
+
"createCosqProfileByProfile",
|
|
41
|
+
"updateCosqProfileByProfile",
|
|
42
|
+
"createDelayMeasurementProfileByProfile",
|
|
43
|
+
"updateDelayMeasurementProfileByProfile",
|
|
44
|
+
"createDhcpProfileByProfile",
|
|
45
|
+
"updateDhcpProfileByProfile",
|
|
46
|
+
"createDhcpV4RelayProfileByProfile",
|
|
47
|
+
"updateDhcpV4RelayProfileByProfile",
|
|
48
|
+
"createDhcpV4ServerPoolByProfile",
|
|
49
|
+
"updateDhcpV4ServerPoolByProfile",
|
|
50
|
+
"createDhcpV4ServerProfileByProfile",
|
|
51
|
+
"updateDhcpV4ServerProfileByProfile",
|
|
52
|
+
"createDhcpV6RelayProfileByProfile",
|
|
53
|
+
"updateDhcpV6RelayProfileByProfile",
|
|
54
|
+
"createDhcpV6ServerPoolByProfile",
|
|
55
|
+
"updateDhcpV6ServerPoolByProfile",
|
|
56
|
+
"createDhcpV6ServerProfileByProfile",
|
|
57
|
+
"updateDhcpV6ServerProfileByProfile",
|
|
58
|
+
"createDialplanProfileByProfile",
|
|
59
|
+
"updateDialplanProfileByProfile",
|
|
60
|
+
"createDiameterClientInstanceByProfile",
|
|
61
|
+
"updateDiameterClientInstanceByProfile",
|
|
62
|
+
"createDiameterPeerProfileByProfile",
|
|
63
|
+
"updateDiameterPeerProfileByProfile",
|
|
64
|
+
"createDscpmapProfileByProfile",
|
|
65
|
+
"updateDscpmapProfileByProfile",
|
|
66
|
+
"createH248ProfileByProfile",
|
|
67
|
+
"updateH248ProfileByProfile",
|
|
68
|
+
"createIdProfileByProfile",
|
|
69
|
+
"updateIdProfileByProfile",
|
|
70
|
+
"createIgmpProfileByProfile",
|
|
71
|
+
"updateIgmpProfileByProfile",
|
|
72
|
+
"createIpv4PrefixByProfile",
|
|
73
|
+
"updateIpv4PrefixByProfile",
|
|
74
|
+
"createIpv6PrefixByProfile",
|
|
75
|
+
"updateIpv6PrefixByProfile",
|
|
76
|
+
"createL2DhcpProxyProfileByProfile",
|
|
77
|
+
"updateL2DhcpProxyProfileByProfile",
|
|
78
|
+
"createL2cpProfileByProfile",
|
|
79
|
+
"updateL2cpProfileByProfile",
|
|
80
|
+
"createL3DhcpProfileByProfile",
|
|
81
|
+
"updateL3DhcpProfileByProfile",
|
|
82
|
+
"createLossMeasurementProfileByProfile",
|
|
83
|
+
"updateLossMeasurementProfileByProfile",
|
|
84
|
+
"createMgcpProfileByProfile",
|
|
85
|
+
"updateMgcpProfileByProfile",
|
|
86
|
+
"createMgtInterfaceByProfile",
|
|
87
|
+
"updateMgtInterfaceByProfile",
|
|
88
|
+
"createMulticastProfileByProfile",
|
|
89
|
+
"updateMulticastProfileByProfile",
|
|
90
|
+
"createMulticastWhitelistProfileByProfile",
|
|
91
|
+
"updateMulticastWhitelistProfileByProfile",
|
|
92
|
+
"createMvrProfileByProfile",
|
|
93
|
+
"updateMvrProfileByProfile",
|
|
94
|
+
"createNidMgmtProfileByProfile",
|
|
95
|
+
"updateNidMgmtProfileByProfile",
|
|
96
|
+
"createNtpByProfile",
|
|
97
|
+
"updateNtpByProfile",
|
|
98
|
+
"createOamPmProfileByProfile",
|
|
99
|
+
"updateOamPmProfileByProfile",
|
|
100
|
+
"createOntProfileByProfile",
|
|
101
|
+
"updateOntProfileByProfile",
|
|
102
|
+
"createOntTimingProfileByProfile",
|
|
103
|
+
"updateOntTimingProfileByProfile",
|
|
104
|
+
"createOuiMatchListByProfile",
|
|
105
|
+
"updateOuiMatchListByProfile",
|
|
106
|
+
"createPcpMapByProfile",
|
|
107
|
+
"updatePcpMapByProfile",
|
|
108
|
+
"createPolicyActionsByProfile",
|
|
109
|
+
"updatePolicyActionsByProfile",
|
|
110
|
+
"createPolicyMapByProfile",
|
|
111
|
+
"updatePolicyMapByProfile",
|
|
112
|
+
"createPonupstreampolicyByProfile",
|
|
113
|
+
"updatePonupstreampolicyByProfile",
|
|
114
|
+
"createPonuscosByProfile",
|
|
115
|
+
"updatePonuscosByProfile",
|
|
116
|
+
"createPppoeIaProfileByProfile",
|
|
117
|
+
"updatePppoeIaProfileByProfile",
|
|
118
|
+
"createPppoeProfileByProfile",
|
|
119
|
+
"updatePppoeProfileByProfile",
|
|
120
|
+
"createPriorityMapProfileByProfile",
|
|
121
|
+
"updatePriorityMapProfileByProfile",
|
|
122
|
+
"createPwe3GosProfileByProfile",
|
|
123
|
+
"updatePwe3GosProfileByProfile",
|
|
124
|
+
"createPwe3ProfileByProfile",
|
|
125
|
+
"updatePwe3ProfileByProfile",
|
|
126
|
+
"createRadiusClientInstanceByProfile",
|
|
127
|
+
"updateRadiusClientInstanceByProfile",
|
|
128
|
+
"createRadiusServerProfileByProfile",
|
|
129
|
+
"updateRadiusServerProfileByProfile",
|
|
130
|
+
"createRgMgmtProfileByProfile",
|
|
131
|
+
"updateRgMgmtProfileByProfile",
|
|
132
|
+
"createRmongosProfileByProfile",
|
|
133
|
+
"updateRmongosProfileByProfile",
|
|
134
|
+
"createSipProfileByProfile",
|
|
135
|
+
"updateSipProfileByProfile",
|
|
136
|
+
"createSubscriberServiceTemplateByProfile",
|
|
137
|
+
"updateSubscriberServiceTemplateByProfile",
|
|
138
|
+
"getAccessListIpv4ByProfile1",
|
|
139
|
+
"deleteAccessListIpv4ByProfile",
|
|
140
|
+
"getAccessListIpv6ByProfile1",
|
|
141
|
+
"deleteAccessListIpv6ByProfile",
|
|
142
|
+
"getAccessListByProfile1",
|
|
143
|
+
"deleteAccessListByProfile",
|
|
144
|
+
"getAggregateShaperProfileByProfile",
|
|
145
|
+
"deleteAggregateShaperProfileByProfile",
|
|
146
|
+
"getAggregatedServiceByProfile1",
|
|
147
|
+
"deleteAggregatedServiceByProfile",
|
|
148
|
+
"getAuthenticationProfileByProfile1",
|
|
149
|
+
"deleteAuthenticationProfileByProfile",
|
|
150
|
+
"getClassMapByProfile1",
|
|
151
|
+
"deleteClassMapByProfile",
|
|
152
|
+
"getClassMapIpByProfile",
|
|
153
|
+
"deleteClassMapIpByProfile",
|
|
154
|
+
"getControlPolicyByProfile",
|
|
155
|
+
"deleteControlPolicyByProfile",
|
|
156
|
+
"getCosqProfileByProfile1",
|
|
157
|
+
"deleteCosqProfileByProfile",
|
|
158
|
+
"getDelayMeasurementProfileByProfile",
|
|
159
|
+
"deleteDelayMeasurementProfileByProfile",
|
|
160
|
+
"getDhcpProfileByProfile1",
|
|
161
|
+
"deleteDhcpProfileByProfile",
|
|
162
|
+
"getDhcpV4RelayProfileByProfile1",
|
|
163
|
+
"deleteDhcpV4RelayProfileByProfile",
|
|
164
|
+
"getDhcpV4ServerPoolByProfile1",
|
|
165
|
+
"deleteDhcpV4ServerPoolByProfile",
|
|
166
|
+
"getDhcpV4ServerProfileByProfile1",
|
|
167
|
+
"deleteDhcpV4ServerProfileByProfile",
|
|
168
|
+
"getDhcpV6RelayProfileByProfile1",
|
|
169
|
+
"deleteDhcpV6RelayProfileByProfile",
|
|
170
|
+
"getDhcpV6ServerPoolByProfile1",
|
|
171
|
+
"deleteDhcpV6ServerPoolByProfile",
|
|
172
|
+
"getDhcpV6ServerProfileByProfile1",
|
|
173
|
+
"deleteDhcpV6ServerProfileByProfile",
|
|
174
|
+
"getDialplanProfileByProfile",
|
|
175
|
+
"deleteDialplanProfileByProfile",
|
|
176
|
+
"getDiameterClientInstanceByProfile",
|
|
177
|
+
"deleteDiameterClientInstanceByProfile",
|
|
178
|
+
"getDiameterPeerProfileByProfile",
|
|
179
|
+
"deleteDiameterPeerProfileByProfile",
|
|
180
|
+
"getDscpmapProfileByProfile1",
|
|
181
|
+
"deleteDscpmapProfileByProfile",
|
|
182
|
+
"getH248ProfileByProfile1",
|
|
183
|
+
"deleteH248ProfileByProfile",
|
|
184
|
+
"getIdProfileByProfile1",
|
|
185
|
+
"deleteIdProfileByProfile",
|
|
186
|
+
"getIgmpProfileByProfile1",
|
|
187
|
+
"deleteIgmpProfileByProfile",
|
|
188
|
+
"getIpv4PrefixByProfile",
|
|
189
|
+
"deleteIpv4PrefixByProfile",
|
|
190
|
+
"getIpv6PrefixByProfile",
|
|
191
|
+
"deleteIpv6PrefixByProfile",
|
|
192
|
+
"getL2DhcpProxyProfileByProfile",
|
|
193
|
+
"deleteL2DhcpProxyProfileByProfile",
|
|
194
|
+
"getL2cpProfileByProfile1",
|
|
195
|
+
"deleteL2cpProfileByProfile",
|
|
196
|
+
"getL3DhcpProfileByProfile1",
|
|
197
|
+
"deleteL3DhcpProfileByProfile",
|
|
198
|
+
"getLossMeasurementProfileByProfile",
|
|
199
|
+
"deleteLossMeasurementProfileByProfile",
|
|
200
|
+
"getMgcpProfileByProfile1",
|
|
201
|
+
"deleteMgcpProfileByProfile",
|
|
202
|
+
"getMgtInterfaceByProfile",
|
|
203
|
+
"deleteMgtInterfaceByProfile",
|
|
204
|
+
"getMulticastProfileByProfile1",
|
|
205
|
+
"deleteMulticastProfileByProfile",
|
|
206
|
+
"getMulticastWhitelistProfileByProfile1",
|
|
207
|
+
"deleteMulticastWhitelistProfileByProfile",
|
|
208
|
+
"getMvrProfileByProfile1",
|
|
209
|
+
"deleteMvrProfileByProfile",
|
|
210
|
+
"getNidMgmtProfileByProfile",
|
|
211
|
+
"deleteNidMgmtProfileByProfile",
|
|
212
|
+
"getNtpByProfile",
|
|
213
|
+
"deleteNtpByProfile",
|
|
214
|
+
"getOamPmProfileByProfile1",
|
|
215
|
+
"deleteOamPmProfileByProfile",
|
|
216
|
+
"getOntProfileByProfile",
|
|
217
|
+
"deleteOntProfileByProfile",
|
|
218
|
+
"getOntTimingProfileByProfile1",
|
|
219
|
+
"deleteOntTimingProfileByProfile",
|
|
220
|
+
"getOuiMatchListByProfile1",
|
|
221
|
+
"deleteOuiMatchListByProfile",
|
|
222
|
+
"getPcpMapByProfile",
|
|
223
|
+
"deletePcpMapByProfile",
|
|
224
|
+
"getPolicyActionsByProfile",
|
|
225
|
+
"deletePolicyActionsByProfile",
|
|
226
|
+
"getPolicyMapByProfile",
|
|
227
|
+
"deletePolicyMapByProfile",
|
|
228
|
+
"getPonupstreampolicyByProfile",
|
|
229
|
+
"deletePonupstreampolicyByProfile",
|
|
230
|
+
"getPonuscosByProfile",
|
|
231
|
+
"deletePonuscosByProfile",
|
|
232
|
+
"getPppoeIaProfileByProfile1",
|
|
233
|
+
"deletePppoeIaProfileByProfile",
|
|
234
|
+
"getPppoeProfileByProfile1",
|
|
235
|
+
"deletePppoeProfileByProfile",
|
|
236
|
+
"getPriorityMapProfileByProfile1",
|
|
237
|
+
"deletePriorityMapProfileByProfile",
|
|
238
|
+
"getPwe3GosProfileByProfile",
|
|
239
|
+
"deletePwe3GosProfileByProfile",
|
|
240
|
+
"getPwe3ProfileByProfile",
|
|
241
|
+
"deletePwe3ProfileByProfile",
|
|
242
|
+
"getRadiusClientInstanceByProfile",
|
|
243
|
+
"deleteRadiusClientInstanceByProfile",
|
|
244
|
+
"getRadiusServerProfileByProfile",
|
|
245
|
+
"deleteRadiusServerProfileByProfile",
|
|
246
|
+
"getRgMgmtProfileByProfile1",
|
|
247
|
+
"deleteRgMgmtProfileByProfile",
|
|
248
|
+
"getRmongosProfileByProfile1",
|
|
249
|
+
"deleteRmongosProfileByProfile",
|
|
250
|
+
"getSipProfileByProfile1",
|
|
251
|
+
"deleteSipProfileByProfile",
|
|
252
|
+
"getSubscriberServiceTemplateByProfile1",
|
|
253
|
+
"deleteSubscriberServiceTemplateByProfile",
|
|
254
|
+
"getSyslogProfileByProfile",
|
|
255
|
+
"deleteSyslogProfileByProfile",
|
|
256
|
+
"getTdmProfileByProfile",
|
|
257
|
+
"deleteTdmProfileByProfile",
|
|
258
|
+
"getTransportServiceProfileByProfile",
|
|
259
|
+
"deleteTransportServiceProfileByProfile",
|
|
260
|
+
"createSyslogProfileByProfile",
|
|
261
|
+
"updateSyslogProfileByProfile",
|
|
262
|
+
"createTdmProfileByProfile",
|
|
263
|
+
"updateTdmProfileByProfile",
|
|
264
|
+
"createTransportServiceProfileByProfile",
|
|
265
|
+
"updateTransportServiceProfileByProfile",
|
|
266
|
+
"getPortTemplate1",
|
|
267
|
+
"deletePortTemplate1",
|
|
268
|
+
"getAllNetGeoFfp",
|
|
269
|
+
"updateNetGeoFfp",
|
|
270
|
+
"getNetGeoFfp",
|
|
271
|
+
"createNetGeoFfp",
|
|
272
|
+
"deleteNetGeoFfp",
|
|
273
|
+
"getCheckLog",
|
|
274
|
+
"createConsistencyCheck",
|
|
275
|
+
"createSwitch",
|
|
276
|
+
"getAllPeerNodeGroup",
|
|
277
|
+
"createPeerNodeGroup",
|
|
278
|
+
"updatePeerNodeGroup",
|
|
279
|
+
"getPeerNodeGroupByName",
|
|
280
|
+
"deletePeerNodeGroupByName",
|
|
281
|
+
"getAllAccessList1",
|
|
282
|
+
"createAccessList",
|
|
283
|
+
"updateAccessList",
|
|
284
|
+
"getAccessListByProfile2",
|
|
285
|
+
"updateAccessListByProfile1",
|
|
286
|
+
"deleteAccessListByProfile1",
|
|
287
|
+
"getAllAggregateShaperProfile1",
|
|
288
|
+
"createAggregateShaperProfile",
|
|
289
|
+
"updateAggregateShaperProfile",
|
|
290
|
+
"getAggregateShaperProfileByProfile1",
|
|
291
|
+
"updateAggregateShaperProfileByProfile1",
|
|
292
|
+
"deleteAggregateShaperProfileByProfile1",
|
|
293
|
+
"getAllAggregatedService1",
|
|
294
|
+
"createAggregatedService",
|
|
295
|
+
"updateAggregatedService",
|
|
296
|
+
"getAggregatedServiceByProfile2",
|
|
297
|
+
"deleteAggregatedServiceByProfile1",
|
|
298
|
+
"getAllAuthenticationProfile1",
|
|
299
|
+
"createAuthenticationProfile",
|
|
300
|
+
"updateAuthenticationProfile",
|
|
301
|
+
"getAuthenticationProfileByProfile2",
|
|
302
|
+
"deleteAuthenticationProfileByProfile1",
|
|
303
|
+
"getAllBandwidthProfile1",
|
|
304
|
+
"createBandwidthProfile",
|
|
305
|
+
"updateBandwidthProfile",
|
|
306
|
+
"getBandwidthProfileByProfile1",
|
|
307
|
+
"deleteBandwidthProfileByProfile",
|
|
308
|
+
"getAllCallHomeDeviceCredentialProfile",
|
|
309
|
+
"createCallHomeDeviceCredentialProfile",
|
|
310
|
+
"updateCallHomeDeviceCredentialProfile",
|
|
311
|
+
"getCallHomeDeviceCredentialProfileByProfile",
|
|
312
|
+
"deleteCallHomeDeviceCredentialProfileByProfile",
|
|
313
|
+
"getAllClassMap1",
|
|
314
|
+
"createClassMap",
|
|
315
|
+
"updateClassMap",
|
|
316
|
+
"getAllNames",
|
|
317
|
+
"getClassMapByProfile2",
|
|
318
|
+
"updateClassMapByProfile1",
|
|
319
|
+
"deleteClassMapByProfile1",
|
|
320
|
+
"getAllControlPolicy",
|
|
321
|
+
"createControlPolicy",
|
|
322
|
+
"updateControlPolicy",
|
|
323
|
+
"getControlPolicyByProfile1",
|
|
324
|
+
"updateControlPolicyByProfile1",
|
|
325
|
+
"deleteControlPolicyByProfile1",
|
|
326
|
+
"getAllDelayMeasurementProfile1",
|
|
327
|
+
"createDelayMeasurementProfile",
|
|
328
|
+
"updateDelayMeasurementProfile",
|
|
329
|
+
"getDelayMeasurementProfileByProfile1",
|
|
330
|
+
"deleteDelayMeasurementProfileByProfile1",
|
|
331
|
+
"getAllDhcpProfile1",
|
|
332
|
+
"createDhcpProfile",
|
|
333
|
+
"updateDhcpProfile",
|
|
334
|
+
"getDhcpProfileByProfile2",
|
|
335
|
+
"deleteDhcpProfileByProfile1",
|
|
336
|
+
"getAllDhcpV4RelayProfile1",
|
|
337
|
+
"createDhcpV4RelayProfile",
|
|
338
|
+
"updateDhcpV4RelayProfile",
|
|
339
|
+
"getDhcpV4RelayProfile",
|
|
340
|
+
"updateDhcpV4RelayProfile1",
|
|
341
|
+
"deleteDhcpV4RelayProfile",
|
|
342
|
+
"getAllDhcpV4ServerPool1",
|
|
343
|
+
"createDhcpV4ServerPool",
|
|
344
|
+
"updateDhcpV4ServerPool",
|
|
345
|
+
"getDhcpV4ServerPool",
|
|
346
|
+
"updateDhcpV4ServerPool1",
|
|
347
|
+
"deleteDhcpV4ServerPool",
|
|
348
|
+
"getAllDhcpV4ServerProfile1",
|
|
349
|
+
"createDhcpV4ServerProfile",
|
|
350
|
+
"updateDhcpV4ServerProfile",
|
|
351
|
+
"getDhcpV4ServerProfile",
|
|
352
|
+
"updateDhcpV4ServerProfile1",
|
|
353
|
+
"deleteDhcpV4ServerProfile",
|
|
354
|
+
"getAllDhcpV6RelayProfile1",
|
|
355
|
+
"createDhcpV6RelayProfile",
|
|
356
|
+
"updateDhcpV6RelayProfile",
|
|
357
|
+
"getDhcpV6RelayProfile",
|
|
358
|
+
"updateDhcpV6RelayProfile1",
|
|
359
|
+
"deleteDhcpV6RelayProfile",
|
|
360
|
+
"getAllDhcpV6ServerPool1",
|
|
361
|
+
"createDhcpV6ServerPool",
|
|
362
|
+
"updateDhcpV6ServerPool",
|
|
363
|
+
"getDhcpV6ServerPool",
|
|
364
|
+
"updateDhcpV6ServerPool1",
|
|
365
|
+
"deleteDhcpV6ServerPool",
|
|
366
|
+
"getAllDhcpV6ServerProfile1",
|
|
367
|
+
"createDhcpV6ServerProfile",
|
|
368
|
+
"updateDhcpV6ServerProfile",
|
|
369
|
+
"getDhcpV6ServerProfile",
|
|
370
|
+
"updateDhcpV6ServerProfile1",
|
|
371
|
+
"deleteDhcpV6ServerProfile",
|
|
372
|
+
"getAllDialPlan",
|
|
373
|
+
"createDialPlan",
|
|
374
|
+
"updateDialPlan",
|
|
375
|
+
"getDialPlanByProfile",
|
|
376
|
+
"deleteDialPlanByProfile",
|
|
377
|
+
"getAllDiameterClientInstance1",
|
|
378
|
+
"createDiameterClientInstance",
|
|
379
|
+
"updateDiameterClientInstance",
|
|
380
|
+
"getDiameterClientInstance",
|
|
381
|
+
"updateDiameterClientInstance1",
|
|
382
|
+
"deleteDiameterClientInstance",
|
|
383
|
+
"getAllDiameterPeerProfile1",
|
|
384
|
+
"createDiameterPeerProfile",
|
|
385
|
+
"updateDiameterPeerProfile",
|
|
386
|
+
"getDiameterPeerProfile",
|
|
387
|
+
"updateDiameterPeerProfile1",
|
|
388
|
+
"deleteDiameterPeerProfile",
|
|
389
|
+
"getAllDownstreamDataRateProfile1",
|
|
390
|
+
"createDownstreamDataRateProfile",
|
|
391
|
+
"updateDownstreamDataRateProfile",
|
|
392
|
+
"getDownstreamDataRateProfileByProfile1",
|
|
393
|
+
"deleteDownstreamDataRateProfileByProfile",
|
|
394
|
+
"getAllCosqProfile2",
|
|
395
|
+
"createCosqProfile",
|
|
396
|
+
"updateCosqProfile",
|
|
397
|
+
"getCosqProfileByProfile2",
|
|
398
|
+
"deleteCosqProfileByProfile1",
|
|
399
|
+
"getAllDtaProfile1",
|
|
400
|
+
"createDtaProfile",
|
|
401
|
+
"updateDtaProfile",
|
|
402
|
+
"getDtaProfileByProfile1",
|
|
403
|
+
"deleteDtaProfileByProfile",
|
|
404
|
+
"getAllEmixProfile",
|
|
405
|
+
"createEmixProfile",
|
|
406
|
+
"updateEmixProfile",
|
|
407
|
+
"getEmixProfileByName",
|
|
408
|
+
"deleteEmixProfileByName",
|
|
409
|
+
"updateEmixProfileByProfile",
|
|
410
|
+
"getAllErps1",
|
|
411
|
+
"getDescription",
|
|
412
|
+
"getErpsByProfile",
|
|
413
|
+
"deleteErpsByProfile",
|
|
414
|
+
"getAllErpsprofile",
|
|
415
|
+
"createErpsprofile",
|
|
416
|
+
"updateErpsprofile",
|
|
417
|
+
"getErpsprofileByProfile",
|
|
418
|
+
"deleteErpsprofileByProfile",
|
|
419
|
+
"getAllFastRateAdaptationProfile1",
|
|
420
|
+
"createFastRateAdaptationProfile",
|
|
421
|
+
"updateFastRateAdaptationProfile",
|
|
422
|
+
"getFastRateAdaptationProfileByProfile1",
|
|
423
|
+
"deleteFastRateAdaptationProfileByProfile",
|
|
424
|
+
"getAllG8032",
|
|
425
|
+
"getDescription1",
|
|
426
|
+
"getG8032ByProfile",
|
|
427
|
+
"deleteG8032ByProfile",
|
|
428
|
+
"getAllG8032profile",
|
|
429
|
+
"createG8032profile",
|
|
430
|
+
"updateG8032profile",
|
|
431
|
+
"getG8032profileByProfile",
|
|
432
|
+
"deleteG8032profileByProfile",
|
|
433
|
+
"getAllH248Profile1",
|
|
434
|
+
"createH248Profile",
|
|
435
|
+
"updateH248Profile",
|
|
436
|
+
"getH248ProfileByProfile2",
|
|
437
|
+
"deleteH248ProfileByProfile1",
|
|
438
|
+
"getAllIdProfile1",
|
|
439
|
+
"createIdProfile",
|
|
440
|
+
"updateIdProfile",
|
|
441
|
+
"getIdProfileByProfile2",
|
|
442
|
+
"deleteIdProfileByProfile1",
|
|
443
|
+
"getAllIgmpProfile1",
|
|
444
|
+
"createIgmpProfile",
|
|
445
|
+
"updateIgmpProfile",
|
|
446
|
+
"getIgmpProfileByProfile2",
|
|
447
|
+
"deleteIgmpProfileByProfile1",
|
|
448
|
+
"getAllIpv4Prefix",
|
|
449
|
+
"createIpv4Prefix",
|
|
450
|
+
"updateIpv4Prefix",
|
|
451
|
+
"getIpv4PrefixByProfile1",
|
|
452
|
+
"updateIpv4PrefixByProfile1",
|
|
453
|
+
"deleteIpv4PrefixByProfile1",
|
|
454
|
+
"getAllIpv6Prefix",
|
|
455
|
+
"createIpv6Prefix",
|
|
456
|
+
"updateIpv6Prefix",
|
|
457
|
+
"getIpv6PrefixByName",
|
|
458
|
+
"deleteIpv6PrefixByName",
|
|
459
|
+
"updateIpv6PrefixByProfile1",
|
|
460
|
+
"getAllL2DhcpproxyProfile",
|
|
461
|
+
"createL2DhcpproxyProfile",
|
|
462
|
+
"updateL2DhcpproxyProfile",
|
|
463
|
+
"getL2DhcpproxyProfile",
|
|
464
|
+
"deleteL2DhcpproxyProfile",
|
|
465
|
+
"getAllL2cpProfile1",
|
|
466
|
+
"createL2cpProfile",
|
|
467
|
+
"updateL2cpProfile",
|
|
468
|
+
"getL2cpProfileByProfile2",
|
|
469
|
+
"deleteL2cpProfileByProfile1",
|
|
470
|
+
"getAllL3DhcpProfile1",
|
|
471
|
+
"createL3DhcpProfile",
|
|
472
|
+
"updateL3DhcpProfile",
|
|
473
|
+
"getL3DhcpProfileByProfile2",
|
|
474
|
+
"deleteL3DhcpProfileByProfile1",
|
|
475
|
+
"getAllLineConfigVector1",
|
|
476
|
+
"createLineConfigVector",
|
|
477
|
+
"updateLineConfigVector",
|
|
478
|
+
"getLineConfigVectorByProfile1",
|
|
479
|
+
"deleteLineConfigVectorByProfile",
|
|
480
|
+
"getAllLineSpectrumProfile1",
|
|
481
|
+
"createLineSpectrumProfile",
|
|
482
|
+
"updateLineSpectrumProfile",
|
|
483
|
+
"getLineSpectrumProfileByProfile1",
|
|
484
|
+
"deleteLineSpectrumProfileByProfile",
|
|
485
|
+
"getAllLossMeasurementProfile1",
|
|
486
|
+
"createLossMeasurementProfile",
|
|
487
|
+
"updateLossMeasurementProfile",
|
|
488
|
+
"getLossMeasurementProfileByProfile1",
|
|
489
|
+
"deleteLossMeasurementProfileByProfile1",
|
|
490
|
+
"getAllMeg1",
|
|
491
|
+
"createMeg",
|
|
492
|
+
"updateMeg",
|
|
493
|
+
"getMegByProfile1",
|
|
494
|
+
"deleteMegByProfile",
|
|
495
|
+
"getAllMgcpProfile1",
|
|
496
|
+
"createMgcpProfile",
|
|
497
|
+
"updateMgcpProfile",
|
|
498
|
+
"getMgcpProfileByProfile2",
|
|
499
|
+
"deleteMgcpProfileByProfile1",
|
|
500
|
+
"getAllMgtInterfaceProfile",
|
|
501
|
+
"createMgtInterfaceProfile",
|
|
502
|
+
"updateMgtInterfaceProfile",
|
|
503
|
+
"getMgtInterfaceProfileByProfile",
|
|
504
|
+
"deleteMgtInterfaceProfileByProfile",
|
|
505
|
+
"getAllMulticastProfile1",
|
|
506
|
+
"createMulticastProfile",
|
|
507
|
+
"updateMulticastProfile",
|
|
508
|
+
"getMulticastProfileByProfile2",
|
|
509
|
+
"deleteMulticastProfileByProfile1",
|
|
510
|
+
"getAllMulticastWhitelistProfile1",
|
|
511
|
+
"createMulticastWhitelistProfile",
|
|
512
|
+
"updateMulticastWhitelistProfile",
|
|
513
|
+
"getMulticastWhitelistProfileByProfile2",
|
|
514
|
+
"deleteMulticastWhitelistProfileByProfile1",
|
|
515
|
+
"getAllMvrProfile1",
|
|
516
|
+
"createMvrProfile",
|
|
517
|
+
"updateMvrProfile",
|
|
518
|
+
"getMvrProfileByProfile2",
|
|
519
|
+
"deleteMvrProfileByProfile1",
|
|
520
|
+
"getAllNidMgmtProfile",
|
|
521
|
+
"createNidMgmtProfile",
|
|
522
|
+
"updateNidMgmtProfile",
|
|
523
|
+
"getNidMgmtProfile",
|
|
524
|
+
"updateNidMgmtProfile1",
|
|
525
|
+
"deleteNidMgmtProfile",
|
|
526
|
+
"getAllNoiseMarginProfile1",
|
|
527
|
+
"createNoiseMarginProfile",
|
|
528
|
+
"updateNoiseMarginProfile",
|
|
529
|
+
"getNoiseMarginProfileByProfile1",
|
|
530
|
+
"deleteNoiseMarginProfileByProfile",
|
|
531
|
+
"getAllNtp1",
|
|
532
|
+
"createNtp",
|
|
533
|
+
"updateNtp",
|
|
534
|
+
"getNtpByProfile1",
|
|
535
|
+
"deleteNtpByProfile1",
|
|
536
|
+
"getAllOamPmProfile1",
|
|
537
|
+
"createOamPmProfile",
|
|
538
|
+
"updateOamPmProfile",
|
|
539
|
+
"getOamPmProfileByProfile2",
|
|
540
|
+
"deleteOamPmProfileByProfile1",
|
|
541
|
+
"getAllOntProfile",
|
|
542
|
+
"createOntProfile",
|
|
543
|
+
"updateOntProfile",
|
|
544
|
+
"getDeviceByDevice2",
|
|
545
|
+
"getOntProfile",
|
|
546
|
+
"updateOntProfile1",
|
|
547
|
+
"deleteOntProfile",
|
|
548
|
+
"getAllOntTimingProfile1",
|
|
549
|
+
"createOntTimingProfile",
|
|
550
|
+
"updateOntTimingProfile",
|
|
551
|
+
"getOntTimingProfileByProfile2",
|
|
552
|
+
"deleteOntTimingProfileByProfile1",
|
|
553
|
+
"getAllOuiMatchList1",
|
|
554
|
+
"createOuiMatchList",
|
|
555
|
+
"updateOuiMatchList",
|
|
556
|
+
"getOuiMatchListByProfile2",
|
|
557
|
+
"deleteOuiMatchListByProfile1",
|
|
558
|
+
"getAllPcpMap1",
|
|
559
|
+
"createPcpMap",
|
|
560
|
+
"updatePcpMap",
|
|
561
|
+
"getPcpMapByProfile1",
|
|
562
|
+
"updatePcpMapByProfile1",
|
|
563
|
+
"deletePcpMapByProfile1",
|
|
564
|
+
"getAllPolicyActions1",
|
|
565
|
+
"createPolicyActions",
|
|
566
|
+
"updatePolicyActions",
|
|
567
|
+
"getPolicyActionsByProfile1",
|
|
568
|
+
"updatePolicyActionsByProfile1",
|
|
569
|
+
"deletePolicyActionsByProfile1",
|
|
570
|
+
"getAllPolicyMap1",
|
|
571
|
+
"createPolicyMap",
|
|
572
|
+
"updatePolicyMap",
|
|
573
|
+
"getPolicyMapByProfile1",
|
|
574
|
+
"updatePolicyMapByProfile1",
|
|
575
|
+
"deletePolicyMapByProfile1",
|
|
576
|
+
"getAllPoncosprofile",
|
|
577
|
+
"createPoncosprofile",
|
|
578
|
+
"updatePoncosprofile",
|
|
579
|
+
"getPoncosprofileByProfile",
|
|
580
|
+
"deletePoncosprofileByProfile",
|
|
581
|
+
"getAllPonupstream",
|
|
582
|
+
"createPonupstream",
|
|
583
|
+
"updatePonupstream",
|
|
584
|
+
"getPonupstreamByProfile",
|
|
585
|
+
"deletePonupstreamByProfile",
|
|
586
|
+
"getAllPonupstreampolicy1",
|
|
587
|
+
"createPonupstreampolicy",
|
|
588
|
+
"updatePonupstreampolicy",
|
|
589
|
+
"getPonupstreampolicyByProfile1",
|
|
590
|
+
"deletePonupstreampolicyByProfile1",
|
|
591
|
+
"getAllPonuscos",
|
|
592
|
+
"createPonuscos",
|
|
593
|
+
"updatePonuscos",
|
|
594
|
+
"getPonuscosByProfile1",
|
|
595
|
+
"deletePonuscosByProfile1",
|
|
596
|
+
"getAllPppoeIaProfile1",
|
|
597
|
+
"createPppoeIaProfile",
|
|
598
|
+
"updatePppoeIaProfile",
|
|
599
|
+
"getPppoeIaProfileByProfile2",
|
|
600
|
+
"deletePppoeIaProfileByProfile1",
|
|
601
|
+
"getAllPppoeProfile1",
|
|
602
|
+
"createPppoeProfile",
|
|
603
|
+
"updatePppoeProfile",
|
|
604
|
+
"getPppoeProfileByProfile2",
|
|
605
|
+
"deletePppoeProfileByProfile1",
|
|
606
|
+
"getAllPriorityMapProfile1",
|
|
607
|
+
"createPriorityMapProfile",
|
|
608
|
+
"updatePriorityMapProfile",
|
|
609
|
+
"getPriorityMapProfileByProfile2",
|
|
610
|
+
"deletePriorityMapProfileByProfile1",
|
|
611
|
+
"getAllPwe3GosProfile1",
|
|
612
|
+
"createPwe3GosProfile",
|
|
613
|
+
"updatePwe3GosProfile",
|
|
614
|
+
"getPwe3GosProfileByProfile1",
|
|
615
|
+
"deletePwe3GosProfileByProfile1",
|
|
616
|
+
"getAllPwe3Profile1",
|
|
617
|
+
"createPwe3Profile",
|
|
618
|
+
"updatePwe3Profile",
|
|
619
|
+
"getPwe3ProfileByProfile1",
|
|
620
|
+
"deletePwe3ProfileByProfile1",
|
|
621
|
+
"getAllRadiusClientInstance1",
|
|
622
|
+
"createRadiusClientInstance",
|
|
623
|
+
"updateRadiusClientInstance",
|
|
624
|
+
"getRadiusClientInstance",
|
|
625
|
+
"updateRadiusClientInstance1",
|
|
626
|
+
"deleteRadiusClientInstance",
|
|
627
|
+
"getAllRadiusServerProfile1",
|
|
628
|
+
"createRadiusServerProfile",
|
|
629
|
+
"updateRadiusServerProfile",
|
|
630
|
+
"getRadiusServerProfile",
|
|
631
|
+
"updateRadiusServerProfile1",
|
|
632
|
+
"deleteRadiusServerProfile",
|
|
633
|
+
"getAllReinitializationPolicyProfile1",
|
|
634
|
+
"createReinitializationPolicyProfile",
|
|
635
|
+
"updateReinitializationPolicyProfile",
|
|
636
|
+
"getReinitializationPolicyProfileByProfile1",
|
|
637
|
+
"deleteReinitializationPolicyProfileByProfile",
|
|
638
|
+
"getAllReserveVlanSettingProfile",
|
|
639
|
+
"createReserveVlanSettingProfile",
|
|
640
|
+
"updateReserveVlanSettingProfile",
|
|
641
|
+
"getReserveVlanSettingProfileByProfile",
|
|
642
|
+
"deleteReserveVlanSettingProfileByProfile",
|
|
643
|
+
"getAllRetransmissionProfile1",
|
|
644
|
+
"createRetransmissionProfile",
|
|
645
|
+
"updateRetransmissionProfile",
|
|
646
|
+
"getRetransmissionProfileByProfile1",
|
|
647
|
+
"deleteRetransmissionProfileByProfile",
|
|
648
|
+
"getAllRfiProfile1",
|
|
649
|
+
"createRfiProfile",
|
|
650
|
+
"updateRfiProfile",
|
|
651
|
+
"getRfiProfileByProfile1",
|
|
652
|
+
"deleteRfiProfileByProfile",
|
|
653
|
+
"getAllRgMgmtProfile1",
|
|
654
|
+
"createRgMgmtProfile",
|
|
655
|
+
"updateRgMgmtProfile",
|
|
656
|
+
"getRgMgmtProfileByProfile2",
|
|
657
|
+
"deleteRgMgmtProfileByProfile1",
|
|
658
|
+
"getAllRmonSession",
|
|
659
|
+
"createRmonSession",
|
|
660
|
+
"updateRmonSession",
|
|
661
|
+
"getRmonSessionByName",
|
|
662
|
+
"deleteRmonSessionByName",
|
|
663
|
+
"getAllRmongosProfile1",
|
|
664
|
+
"createRmongosProfile",
|
|
665
|
+
"updateRmongosProfile",
|
|
666
|
+
"getRmongosProfileByProfile2",
|
|
667
|
+
"deleteRmongosProfileByProfile1",
|
|
668
|
+
"getAllSatTestProfile",
|
|
669
|
+
"createSatTestProfile",
|
|
670
|
+
"updateSatTestProfile",
|
|
671
|
+
"getSatTestProfileByName",
|
|
672
|
+
"deleteSatTestProfileByName",
|
|
673
|
+
"updateSatTestProfileByProfile",
|
|
674
|
+
"getAllServiceBandwidthProfile",
|
|
675
|
+
"createServiceBandwidthProfile",
|
|
676
|
+
"updateServiceBandwidthProfile",
|
|
677
|
+
"getServiceBandwidthProfileByProfile",
|
|
678
|
+
"deleteServiceBandwidthProfileByProfile",
|
|
679
|
+
"getAllSipProfile1",
|
|
680
|
+
"createSipProfile",
|
|
681
|
+
"updateSipProfile",
|
|
682
|
+
"getSipProfileByProfile2",
|
|
683
|
+
"deleteSipProfileByProfile1",
|
|
684
|
+
"getAllSubscriberServiceTemplate1",
|
|
685
|
+
"createSubscriberServiceTemplate",
|
|
686
|
+
"updateSubscriberServiceTemplate",
|
|
687
|
+
"getSubscriberServiceTemplateByProfile2",
|
|
688
|
+
"deleteSubscriberServiceTemplateByProfile1",
|
|
689
|
+
"getAllSyslogProfile",
|
|
690
|
+
"createSyslogProfile",
|
|
691
|
+
"updateSyslogProfile",
|
|
692
|
+
"getDeviceModel",
|
|
693
|
+
"getDeviceModelByProfile",
|
|
694
|
+
"deleteDeviceModelByProfile",
|
|
695
|
+
"getAllTddProfile1",
|
|
696
|
+
"createTddProfile",
|
|
697
|
+
"updateTddProfile",
|
|
698
|
+
"getTddProfileByProfile1",
|
|
699
|
+
"deleteTddProfileByProfile",
|
|
700
|
+
"getAllTdmProfile1",
|
|
701
|
+
"createTdmProfile",
|
|
702
|
+
"updateTdmProfile",
|
|
703
|
+
"getTdmProfileByProfile2",
|
|
704
|
+
"deleteTdmProfileByProfile1",
|
|
705
|
+
"getAllTransportServiceProfile1",
|
|
706
|
+
"createTransportServiceProfile",
|
|
707
|
+
"updateTransportServiceProfile",
|
|
708
|
+
"getTransportServiceProfileByProfile2",
|
|
709
|
+
"deleteTransportServiceProfileByProfile1",
|
|
710
|
+
"getAllUpstreamDataRateProfile1",
|
|
711
|
+
"createUpstreamDataRateProfile",
|
|
712
|
+
"updateUpstreamDataRateProfile",
|
|
713
|
+
"getUpstreamDataRateProfileByProfile1",
|
|
714
|
+
"deleteUpstreamDataRateProfileByProfile",
|
|
715
|
+
"getAllUpstreamPowerBackOffProfile1",
|
|
716
|
+
"createUpstreamPowerBackOffProfile",
|
|
717
|
+
"updateUpstreamPowerBackOffProfile",
|
|
718
|
+
"getUpstreamPowerBackOffProfileByProfile1",
|
|
719
|
+
"deleteUpstreamPowerBackOffProfileByProfile",
|
|
720
|
+
"getAllVectoringProfile",
|
|
721
|
+
"createVectoringProfile",
|
|
722
|
+
"updateVectoringProfile",
|
|
723
|
+
"getVectoringProfileByProfile",
|
|
724
|
+
"deleteVectoringProfileByProfile",
|
|
725
|
+
"getDeviceByDevice4",
|
|
726
|
+
"getDeviceByDevice5",
|
|
727
|
+
"getDeviceByDevice6",
|
|
728
|
+
"getDeviceByDevice7",
|
|
729
|
+
"getDeviceByDevice8",
|
|
730
|
+
"getDeviceByDevice9",
|
|
731
|
+
"getDeviceByDevice10",
|
|
732
|
+
"getDeviceByDevice11",
|
|
733
|
+
"getDeviceByDevice12",
|
|
734
|
+
"getDeviceByDevice13",
|
|
735
|
+
"getDeviceByDevice14",
|
|
736
|
+
"getDeviceByDevice15",
|
|
737
|
+
"getDeviceByDevice16",
|
|
738
|
+
"getDeviceByDevice17",
|
|
739
|
+
"getDeviceByDevice18",
|
|
740
|
+
"getDeviceByDevice19",
|
|
741
|
+
"getDeviceByDevice21",
|
|
742
|
+
"getDeviceByDevice22"
|
|
743
|
+
],
|
|
744
|
+
"external_name": "ph_request_type"
|
|
745
|
+
},
|
|
746
|
+
"deviceName": {
|
|
747
|
+
"type": "string",
|
|
748
|
+
"description": "",
|
|
749
|
+
"parse": false,
|
|
750
|
+
"encode": false,
|
|
751
|
+
"encrypt": {
|
|
752
|
+
"type": "AES",
|
|
753
|
+
"key": ""
|
|
754
|
+
},
|
|
755
|
+
"external_name": "device-name"
|
|
756
|
+
},
|
|
757
|
+
"profileName": {
|
|
758
|
+
"type": "string",
|
|
759
|
+
"description": "profile name",
|
|
760
|
+
"parse": false,
|
|
761
|
+
"encode": false,
|
|
762
|
+
"encrypt": {
|
|
763
|
+
"type": "AES",
|
|
764
|
+
"key": ""
|
|
765
|
+
},
|
|
766
|
+
"external_name": "profile-name"
|
|
767
|
+
},
|
|
768
|
+
"templateName": {
|
|
769
|
+
"type": "string",
|
|
770
|
+
"description": "templateName",
|
|
771
|
+
"parse": false,
|
|
772
|
+
"encode": false,
|
|
773
|
+
"encrypt": {
|
|
774
|
+
"type": "AES",
|
|
775
|
+
"key": ""
|
|
776
|
+
},
|
|
777
|
+
"external_name": "template-name"
|
|
778
|
+
},
|
|
779
|
+
"peerNodeGroupName": {
|
|
780
|
+
"type": "string",
|
|
781
|
+
"description": "peer-node-group-name",
|
|
782
|
+
"parse": false,
|
|
783
|
+
"encode": false,
|
|
784
|
+
"encrypt": {
|
|
785
|
+
"type": "AES",
|
|
786
|
+
"key": ""
|
|
787
|
+
},
|
|
788
|
+
"external_name": "peer-node-group-name"
|
|
789
|
+
},
|
|
790
|
+
"netGeoFfpName": {
|
|
791
|
+
"type": "string",
|
|
792
|
+
"description": "net-geo-ffp-name",
|
|
793
|
+
"parse": false,
|
|
794
|
+
"encode": false,
|
|
795
|
+
"encrypt": {
|
|
796
|
+
"type": "AES",
|
|
797
|
+
"key": ""
|
|
798
|
+
},
|
|
799
|
+
"external_name": "net-geo-ffp-name"
|
|
800
|
+
},
|
|
801
|
+
"forceDelete": {
|
|
802
|
+
"type": "boolean",
|
|
803
|
+
"description": "",
|
|
804
|
+
"parse": false,
|
|
805
|
+
"encode": false,
|
|
806
|
+
"encrypt": {
|
|
807
|
+
"type": "AES",
|
|
808
|
+
"key": ""
|
|
809
|
+
},
|
|
810
|
+
"external_name": "force-delete"
|
|
811
|
+
},
|
|
812
|
+
"paramDeviceName": {
|
|
813
|
+
"type": "string",
|
|
814
|
+
"description": "param-device-name",
|
|
815
|
+
"parse": false,
|
|
816
|
+
"encode": false,
|
|
817
|
+
"encrypt": {
|
|
818
|
+
"type": "AES",
|
|
819
|
+
"key": ""
|
|
820
|
+
},
|
|
821
|
+
"external_name": "param-device-name"
|
|
822
|
+
},
|
|
823
|
+
"dhcpV4RelayProfileName": {
|
|
824
|
+
"type": "string",
|
|
825
|
+
"description": "dhcp-v4-relay-profile-name",
|
|
826
|
+
"parse": false,
|
|
827
|
+
"encode": false,
|
|
828
|
+
"encrypt": {
|
|
829
|
+
"type": "AES",
|
|
830
|
+
"key": ""
|
|
831
|
+
},
|
|
832
|
+
"external_name": "dhcp-v4-relay-profile-name"
|
|
833
|
+
},
|
|
834
|
+
"dhcpV4ServerPoolName": {
|
|
835
|
+
"type": "string",
|
|
836
|
+
"description": "dhcp-v4-server-pool-name",
|
|
837
|
+
"parse": false,
|
|
838
|
+
"encode": false,
|
|
839
|
+
"encrypt": {
|
|
840
|
+
"type": "AES",
|
|
841
|
+
"key": ""
|
|
842
|
+
},
|
|
843
|
+
"external_name": "dhcp-v4-server-pool-name"
|
|
844
|
+
},
|
|
845
|
+
"dhcpV4ServerProfileName": {
|
|
846
|
+
"type": "string",
|
|
847
|
+
"description": "dhcp-v4-server-profile-name",
|
|
848
|
+
"parse": false,
|
|
849
|
+
"encode": false,
|
|
850
|
+
"encrypt": {
|
|
851
|
+
"type": "AES",
|
|
852
|
+
"key": ""
|
|
853
|
+
},
|
|
854
|
+
"external_name": "dhcp-v4-server-profile-name"
|
|
855
|
+
},
|
|
856
|
+
"dhcpV6RelayProfileName": {
|
|
857
|
+
"type": "string",
|
|
858
|
+
"description": "dhcp-v6-relay-profile-name",
|
|
859
|
+
"parse": false,
|
|
860
|
+
"encode": false,
|
|
861
|
+
"encrypt": {
|
|
862
|
+
"type": "AES",
|
|
863
|
+
"key": ""
|
|
864
|
+
},
|
|
865
|
+
"external_name": "dhcp-v6-relay-profile-name"
|
|
866
|
+
},
|
|
867
|
+
"dhcpV6ServerPoolName": {
|
|
868
|
+
"type": "string",
|
|
869
|
+
"description": "poolName",
|
|
870
|
+
"parse": false,
|
|
871
|
+
"encode": false,
|
|
872
|
+
"encrypt": {
|
|
873
|
+
"type": "AES",
|
|
874
|
+
"key": ""
|
|
875
|
+
},
|
|
876
|
+
"external_name": "dhcp-v6-server-pool-name"
|
|
877
|
+
},
|
|
878
|
+
"dhcpV6ServerProfileName": {
|
|
879
|
+
"type": "string",
|
|
880
|
+
"description": "profileName",
|
|
881
|
+
"parse": false,
|
|
882
|
+
"encode": false,
|
|
883
|
+
"encrypt": {
|
|
884
|
+
"type": "AES",
|
|
885
|
+
"key": ""
|
|
886
|
+
},
|
|
887
|
+
"external_name": "dhcp-v6-server-profile-name"
|
|
888
|
+
},
|
|
889
|
+
"diameterClientInstanceName": {
|
|
890
|
+
"type": "string",
|
|
891
|
+
"description": "diameter-client-instance-name",
|
|
892
|
+
"parse": false,
|
|
893
|
+
"encode": false,
|
|
894
|
+
"encrypt": {
|
|
895
|
+
"type": "AES",
|
|
896
|
+
"key": ""
|
|
897
|
+
},
|
|
898
|
+
"external_name": "diameter-client-instance-name"
|
|
899
|
+
},
|
|
900
|
+
"diameterPeerProfileName": {
|
|
901
|
+
"type": "string",
|
|
902
|
+
"description": "diameter-peer-profile-name",
|
|
903
|
+
"parse": false,
|
|
904
|
+
"encode": false,
|
|
905
|
+
"encrypt": {
|
|
906
|
+
"type": "AES",
|
|
907
|
+
"key": ""
|
|
908
|
+
},
|
|
909
|
+
"external_name": "diameter-peer-profile-name"
|
|
910
|
+
},
|
|
911
|
+
"ontId": {
|
|
912
|
+
"type": "string",
|
|
913
|
+
"description": "ont-id, action in [push, unpush] required",
|
|
914
|
+
"parse": false,
|
|
915
|
+
"encode": false,
|
|
916
|
+
"encrypt": {
|
|
917
|
+
"type": "AES",
|
|
918
|
+
"key": ""
|
|
919
|
+
},
|
|
920
|
+
"external_name": "ont-id"
|
|
921
|
+
},
|
|
922
|
+
"seqNum": {
|
|
923
|
+
"type": "number",
|
|
924
|
+
"description": "seq-num",
|
|
925
|
+
"parse": false,
|
|
926
|
+
"encode": false,
|
|
927
|
+
"encrypt": {
|
|
928
|
+
"type": "AES",
|
|
929
|
+
"key": ""
|
|
930
|
+
},
|
|
931
|
+
"external_name": "seq-num"
|
|
932
|
+
},
|
|
933
|
+
"l2DhcpproxyProfileName": {
|
|
934
|
+
"type": "string",
|
|
935
|
+
"description": "l2-dhcpproxy-profile-name",
|
|
936
|
+
"parse": false,
|
|
937
|
+
"encode": false,
|
|
938
|
+
"encrypt": {
|
|
939
|
+
"type": "AES",
|
|
940
|
+
"key": ""
|
|
941
|
+
},
|
|
942
|
+
"external_name": "l2-dhcpproxy-profile-name"
|
|
943
|
+
},
|
|
944
|
+
"nidMgmtProfileName": {
|
|
945
|
+
"type": "string",
|
|
946
|
+
"description": "nid-mgmt-profile-name",
|
|
947
|
+
"parse": false,
|
|
948
|
+
"encode": false,
|
|
949
|
+
"encrypt": {
|
|
950
|
+
"type": "AES",
|
|
951
|
+
"key": ""
|
|
952
|
+
},
|
|
953
|
+
"external_name": "nid-mgmt-profile-name"
|
|
954
|
+
},
|
|
955
|
+
"ontProfileName": {
|
|
956
|
+
"type": "string",
|
|
957
|
+
"description": "ont-profile-name",
|
|
958
|
+
"parse": false,
|
|
959
|
+
"encode": false,
|
|
960
|
+
"encrypt": {
|
|
961
|
+
"type": "AES",
|
|
962
|
+
"key": ""
|
|
963
|
+
},
|
|
964
|
+
"external_name": "ont-profile-name"
|
|
965
|
+
},
|
|
966
|
+
"radiusClientInstanceName": {
|
|
967
|
+
"type": "string",
|
|
968
|
+
"description": "radius-client-instance-name",
|
|
969
|
+
"parse": false,
|
|
970
|
+
"encode": false,
|
|
971
|
+
"encrypt": {
|
|
972
|
+
"type": "AES",
|
|
973
|
+
"key": ""
|
|
974
|
+
},
|
|
975
|
+
"external_name": "radius-client-instance-name"
|
|
976
|
+
},
|
|
977
|
+
"radiusServerProfileName": {
|
|
978
|
+
"type": "string",
|
|
979
|
+
"description": "radius-server-profile-name",
|
|
980
|
+
"parse": false,
|
|
981
|
+
"encode": false,
|
|
982
|
+
"encrypt": {
|
|
983
|
+
"type": "AES",
|
|
984
|
+
"key": ""
|
|
985
|
+
},
|
|
986
|
+
"external_name": "radius-server-profile-name"
|
|
987
|
+
},
|
|
988
|
+
"deviceModel": {
|
|
989
|
+
"type": "string",
|
|
990
|
+
"description": "device model",
|
|
991
|
+
"parse": false,
|
|
992
|
+
"encode": false,
|
|
993
|
+
"encrypt": {
|
|
994
|
+
"type": "AES",
|
|
995
|
+
"key": ""
|
|
996
|
+
},
|
|
997
|
+
"external_name": "device-model"
|
|
998
|
+
}
|
|
999
|
+
},
|
|
1000
|
+
"definitions": {}
|
|
1001
|
+
}
|