@itentialopensource/adapter-alkira 0.3.0 → 0.3.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/CALLS.md +478 -450
- package/CHANGELOG.md +8 -0
- package/README.md +10 -6
- package/adapterBase.js +103 -0
- package/metadata.json +23 -53
- package/package.json +4 -4
- package/propertiesSchema.json +64 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +50699 -0
- package/report/adapter-openapi.yaml +40216 -0
- package/report/adapterInfo.json +5 -5
- package/report/updateReport1694473004973.json +120 -0
- package/sampleProperties.json +12 -0
- package/test/unit/adapterBaseTestUnit.js +6 -6
- package/test/unit/adapterTestUnit.js +9 -3
- package/utils/methodDocumentor.js +57 -22
package/CALLS.md
CHANGED
|
@@ -19,7 +19,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
19
19
|
</tr>
|
|
20
20
|
<tr>
|
|
21
21
|
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
-
<td style="padding:15px">This call ensures that the adapter can communicate with Alkira. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Alkira. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
23
|
<td style="padding:15px">No</td>
|
|
24
24
|
</tr>
|
|
25
25
|
<tr>
|
|
@@ -29,7 +29,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
29
29
|
</tr>
|
|
30
30
|
<tr>
|
|
31
31
|
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
-
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Alkira.</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 Adapter for Alkira.</td>
|
|
33
33
|
<td style="padding:15px">No</td>
|
|
34
34
|
</tr>
|
|
35
35
|
<tr>
|
|
@@ -37,11 +37,6 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
37
37
|
<td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
|
|
38
38
|
<td style="padding:15px">Yes</td>
|
|
39
39
|
</tr>
|
|
40
|
-
<tr>
|
|
41
|
-
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
42
|
-
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
43
|
-
<td style="padding:15px">Yes</td>
|
|
44
|
-
</tr>
|
|
45
40
|
<tr>
|
|
46
41
|
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
42
|
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
@@ -57,12 +52,16 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
57
52
|
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
53
|
<td style="padding:15px">Yes</td>
|
|
59
54
|
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
57
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
60
|
<tr>
|
|
61
61
|
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
62
|
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
63
|
<td style="padding:15px">Yes</td>
|
|
64
64
|
</tr>
|
|
65
|
-
|
|
66
65
|
<tr>
|
|
67
66
|
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
67
|
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
@@ -83,6 +82,21 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
83
82
|
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
83
|
<td style="padding:15px">Yes</td>
|
|
85
84
|
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
|
|
87
|
+
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
|
|
88
|
+
<td style="padding:15px">Yes</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
|
|
92
|
+
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
|
|
93
|
+
<td style="padding:15px">Yes</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
|
|
97
|
+
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
|
|
98
|
+
<td style="padding:15px">Yes</td>
|
|
99
|
+
</tr>
|
|
86
100
|
<tr>
|
|
87
101
|
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
102
|
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
@@ -94,23 +108,46 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
94
108
|
<td style="padding:15px">Yes</td>
|
|
95
109
|
</tr>
|
|
96
110
|
<tr>
|
|
97
|
-
<td style="padding:15px">
|
|
98
|
-
<td style="padding:15px">
|
|
99
|
-
<td style="padding:15px">
|
|
111
|
+
<td style="padding:15px">iapRunAdapterLint(callback)</td>
|
|
112
|
+
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
|
|
113
|
+
<td style="padding:15px">Yes</td>
|
|
100
114
|
</tr>
|
|
101
115
|
<tr>
|
|
102
|
-
<td style="padding:15px">
|
|
103
|
-
<td style="padding:15px">
|
|
104
|
-
<td style="padding:15px">
|
|
116
|
+
<td style="padding:15px">iapRunAdapterTests(callback)</td>
|
|
117
|
+
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
|
|
118
|
+
<td style="padding:15px">Yes</td>
|
|
105
119
|
</tr>
|
|
106
120
|
<tr>
|
|
107
|
-
<td style="padding:15px">
|
|
108
|
-
<td style="padding:15px">This call
|
|
109
|
-
<td style="padding:15px">
|
|
121
|
+
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
|
|
122
|
+
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
|
|
123
|
+
<td style="padding:15px">Yes</td>
|
|
110
124
|
</tr>
|
|
111
125
|
</table>
|
|
112
126
|
<br>
|
|
127
|
+
|
|
128
|
+
### Adapter Cache Calls
|
|
129
|
+
|
|
130
|
+
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
|
|
113
131
|
|
|
132
|
+
<table border="1" class="bordered-table">
|
|
133
|
+
<tr>
|
|
134
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
135
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
136
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
|
|
140
|
+
<td style="padding:15px">This call populates the adapter cache.</td>
|
|
141
|
+
<td style="padding:15px">Yes</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
|
|
145
|
+
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
|
|
146
|
+
<td style="padding:15px">Yes</td>
|
|
147
|
+
</tr>
|
|
148
|
+
</table>
|
|
149
|
+
<br>
|
|
150
|
+
|
|
114
151
|
### Adapter Broker Calls
|
|
115
152
|
|
|
116
153
|
These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
|
|
@@ -129,32 +166,31 @@ These are adapter methods that are used to integrate to IAP Brokers. This adapte
|
|
|
129
166
|
<tr>
|
|
130
167
|
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
168
|
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
-
<td style="padding:15px">
|
|
169
|
+
<td style="padding:15px">No</td>
|
|
133
170
|
</tr>
|
|
134
171
|
<tr>
|
|
135
172
|
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
173
|
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
137
|
-
<td style="padding:15px">
|
|
174
|
+
<td style="padding:15px">No</td>
|
|
138
175
|
</tr>
|
|
139
176
|
<tr>
|
|
140
177
|
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
178
|
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
-
<td style="padding:15px">
|
|
179
|
+
<td style="padding:15px">No</td>
|
|
143
180
|
</tr>
|
|
144
181
|
<tr>
|
|
145
182
|
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
183
|
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
-
<td style="padding:15px">
|
|
184
|
+
<td style="padding:15px">No</td>
|
|
148
185
|
</tr>
|
|
149
186
|
<tr>
|
|
150
187
|
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
188
|
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
-
<td style="padding:15px">
|
|
189
|
+
<td style="padding:15px">No</td>
|
|
153
190
|
</tr>
|
|
154
191
|
</table>
|
|
155
192
|
<br>
|
|
156
193
|
|
|
157
|
-
|
|
158
194
|
### Specific Adapter Calls
|
|
159
195
|
|
|
160
196
|
Specific adapter calls are built based on the API of the Alkira. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
@@ -168,637 +204,637 @@ Specific adapter calls are built based on the API of the Alkira. The Adapter Bui
|
|
|
168
204
|
</tr>
|
|
169
205
|
<tr>
|
|
170
206
|
<td style="padding:15px">loginUsersUsingPOST(body, callback)</td>
|
|
171
|
-
<td style="padding:15px">
|
|
207
|
+
<td style="padding:15px">loginUsersUsingPOST</td>
|
|
172
208
|
<td style="padding:15px">{base_path}/{version}/users/login?{query}</td>
|
|
173
209
|
<td style="padding:15px">Yes</td>
|
|
174
210
|
</tr>
|
|
175
211
|
<tr>
|
|
176
212
|
<td style="padding:15px">logoutUsersUsingPOST(name, body, callback)</td>
|
|
177
|
-
<td style="padding:15px">
|
|
213
|
+
<td style="padding:15px">logoutUsersUsingPOST</td>
|
|
178
214
|
<td style="padding:15px">{base_path}/{version}/users/logout?{query}</td>
|
|
179
215
|
<td style="padding:15px">Yes</td>
|
|
180
216
|
</tr>
|
|
181
217
|
<tr>
|
|
182
218
|
<td style="padding:15px">postLogin(body, callback)</td>
|
|
183
|
-
<td style="padding:15px">
|
|
219
|
+
<td style="padding:15px">login</td>
|
|
184
220
|
<td style="padding:15px">{base_path}/{version}/login?{query}</td>
|
|
185
221
|
<td style="padding:15px">Yes</td>
|
|
186
222
|
</tr>
|
|
187
223
|
<tr>
|
|
188
224
|
<td style="padding:15px">oauthLogin(body, callback)</td>
|
|
189
|
-
<td style="padding:15px">
|
|
225
|
+
<td style="padding:15px">oauthLogin</td>
|
|
190
226
|
<td style="padding:15px">{base_path}/{version}/oauth/login?{query}</td>
|
|
191
227
|
<td style="padding:15px">Yes</td>
|
|
192
228
|
</tr>
|
|
193
229
|
<tr>
|
|
194
230
|
<td style="padding:15px">getLogout(callback)</td>
|
|
195
|
-
<td style="padding:15px">
|
|
231
|
+
<td style="padding:15px">logout</td>
|
|
196
232
|
<td style="padding:15px">{base_path}/{version}/logout?{query}</td>
|
|
197
233
|
<td style="padding:15px">Yes</td>
|
|
198
234
|
</tr>
|
|
199
235
|
<tr>
|
|
200
236
|
<td style="padding:15px">createSession(body, callback)</td>
|
|
201
|
-
<td style="padding:15px">
|
|
237
|
+
<td style="padding:15px">createSession</td>
|
|
202
238
|
<td style="padding:15px">{base_path}/{version}/sessions?{query}</td>
|
|
203
239
|
<td style="padding:15px">Yes</td>
|
|
204
240
|
</tr>
|
|
205
241
|
<tr>
|
|
206
242
|
<td style="padding:15px">deleteSession(callback)</td>
|
|
207
|
-
<td style="padding:15px">
|
|
243
|
+
<td style="padding:15px">deleteSession</td>
|
|
208
244
|
<td style="padding:15px">{base_path}/{version}/sessions?{query}</td>
|
|
209
245
|
<td style="padding:15px">Yes</td>
|
|
210
246
|
</tr>
|
|
211
247
|
<tr>
|
|
212
248
|
<td style="padding:15px">otpLogin(otp, callback)</td>
|
|
213
|
-
<td style="padding:15px">
|
|
249
|
+
<td style="padding:15px">otpLogin</td>
|
|
214
250
|
<td style="padding:15px">{base_path}/{version}/otp/login?{query}</td>
|
|
215
251
|
<td style="padding:15px">Yes</td>
|
|
216
252
|
</tr>
|
|
217
253
|
<tr>
|
|
218
254
|
<td style="padding:15px">getsegments(tenantNetworkId, callback)</td>
|
|
219
|
-
<td style="padding:15px">
|
|
255
|
+
<td style="padding:15px">getsegments</td>
|
|
220
256
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segments?{query}</td>
|
|
221
257
|
<td style="padding:15px">Yes</td>
|
|
222
258
|
</tr>
|
|
223
259
|
<tr>
|
|
224
260
|
<td style="padding:15px">createSegment(tenantNetworkId, body, callback)</td>
|
|
225
|
-
<td style="padding:15px">
|
|
261
|
+
<td style="padding:15px">createSegment</td>
|
|
226
262
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segments?{query}</td>
|
|
227
263
|
<td style="padding:15px">Yes</td>
|
|
228
264
|
</tr>
|
|
229
265
|
<tr>
|
|
230
266
|
<td style="padding:15px">getSegment(tenantNetworkId, segmentId, callback)</td>
|
|
231
|
-
<td style="padding:15px">
|
|
267
|
+
<td style="padding:15px">getSegment</td>
|
|
232
268
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segments/{pathv2}?{query}</td>
|
|
233
269
|
<td style="padding:15px">Yes</td>
|
|
234
270
|
</tr>
|
|
235
271
|
<tr>
|
|
236
272
|
<td style="padding:15px">updateSegment(tenantNetworkId, segmentId, body, callback)</td>
|
|
237
|
-
<td style="padding:15px">
|
|
273
|
+
<td style="padding:15px">updateSegment</td>
|
|
238
274
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segments/{pathv2}?{query}</td>
|
|
239
275
|
<td style="padding:15px">Yes</td>
|
|
240
276
|
</tr>
|
|
241
277
|
<tr>
|
|
242
278
|
<td style="padding:15px">deleteSegment(tenantNetworkId, segmentId, callback)</td>
|
|
243
|
-
<td style="padding:15px">
|
|
279
|
+
<td style="padding:15px">deleteSegment</td>
|
|
244
280
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segments/{pathv2}?{query}</td>
|
|
245
281
|
<td style="padding:15px">Yes</td>
|
|
246
282
|
</tr>
|
|
247
283
|
<tr>
|
|
248
284
|
<td style="padding:15px">getgroups(tenantNetworkId, segmentId, serviceId, groupTypes, callback)</td>
|
|
249
|
-
<td style="padding:15px">
|
|
285
|
+
<td style="padding:15px">getgroups</td>
|
|
250
286
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/groups?{query}</td>
|
|
251
287
|
<td style="padding:15px">Yes</td>
|
|
252
288
|
</tr>
|
|
253
289
|
<tr>
|
|
254
290
|
<td style="padding:15px">creategroups(tenantNetworkId, body, callback)</td>
|
|
255
|
-
<td style="padding:15px">
|
|
291
|
+
<td style="padding:15px">creategroups</td>
|
|
256
292
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/groups?{query}</td>
|
|
257
293
|
<td style="padding:15px">Yes</td>
|
|
258
294
|
</tr>
|
|
259
295
|
<tr>
|
|
260
296
|
<td style="padding:15px">getgroup(tenantNetworkId, groupId, callback)</td>
|
|
261
|
-
<td style="padding:15px">
|
|
297
|
+
<td style="padding:15px">getgroup</td>
|
|
262
298
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/groups/{pathv2}?{query}</td>
|
|
263
299
|
<td style="padding:15px">Yes</td>
|
|
264
300
|
</tr>
|
|
265
301
|
<tr>
|
|
266
302
|
<td style="padding:15px">updategroups(tenantNetworkId, groupId, body, callback)</td>
|
|
267
|
-
<td style="padding:15px">
|
|
303
|
+
<td style="padding:15px">updategroups</td>
|
|
268
304
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/groups/{pathv2}?{query}</td>
|
|
269
305
|
<td style="padding:15px">Yes</td>
|
|
270
306
|
</tr>
|
|
271
307
|
<tr>
|
|
272
308
|
<td style="padding:15px">deletegroups(tenantNetworkId, groupId, callback)</td>
|
|
273
|
-
<td style="padding:15px">
|
|
309
|
+
<td style="padding:15px">deletegroups</td>
|
|
274
310
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/groups/{pathv2}?{query}</td>
|
|
275
311
|
<td style="padding:15px">Yes</td>
|
|
276
312
|
</tr>
|
|
277
313
|
<tr>
|
|
278
314
|
<td style="padding:15px">getAllUsersUsingGET(userName, active, callback)</td>
|
|
279
|
-
<td style="padding:15px">
|
|
315
|
+
<td style="padding:15px">getAllUsersUsingGET</td>
|
|
280
316
|
<td style="padding:15px">{base_path}/{version}/users?{query}</td>
|
|
281
317
|
<td style="padding:15px">Yes</td>
|
|
282
318
|
</tr>
|
|
283
319
|
<tr>
|
|
284
320
|
<td style="padding:15px">createUsersUsingPOST(body, callback)</td>
|
|
285
|
-
<td style="padding:15px">
|
|
321
|
+
<td style="padding:15px">createUsersUsingPOST</td>
|
|
286
322
|
<td style="padding:15px">{base_path}/{version}/users?{query}</td>
|
|
287
323
|
<td style="padding:15px">Yes</td>
|
|
288
324
|
</tr>
|
|
289
325
|
<tr>
|
|
290
326
|
<td style="padding:15px">getUsersByIdUsingGET(name, userId, callback)</td>
|
|
291
|
-
<td style="padding:15px">
|
|
327
|
+
<td style="padding:15px">getUsersByIdUsingGET</td>
|
|
292
328
|
<td style="padding:15px">{base_path}/{version}/users/{pathv1}?{query}</td>
|
|
293
329
|
<td style="padding:15px">Yes</td>
|
|
294
330
|
</tr>
|
|
295
331
|
<tr>
|
|
296
332
|
<td style="padding:15px">updateUsersByIdUsingPUT(userId, body, callback)</td>
|
|
297
|
-
<td style="padding:15px">
|
|
333
|
+
<td style="padding:15px">updateUsersByIdUsingPUT</td>
|
|
298
334
|
<td style="padding:15px">{base_path}/{version}/users/{pathv1}?{query}</td>
|
|
299
335
|
<td style="padding:15px">Yes</td>
|
|
300
336
|
</tr>
|
|
301
337
|
<tr>
|
|
302
338
|
<td style="padding:15px">deleteUsersByIdUsingDELETE(name, userId, callback)</td>
|
|
303
|
-
<td style="padding:15px">
|
|
339
|
+
<td style="padding:15px">deleteUsersByIdUsingDELETE</td>
|
|
304
340
|
<td style="padding:15px">{base_path}/{version}/users/{pathv1}?{query}</td>
|
|
305
341
|
<td style="padding:15px">Yes</td>
|
|
306
342
|
</tr>
|
|
307
343
|
<tr>
|
|
308
344
|
<td style="padding:15px">getUserProfileUsingGET(name, callback)</td>
|
|
309
|
-
<td style="padding:15px">
|
|
345
|
+
<td style="padding:15px">getUserProfileUsingGET</td>
|
|
310
346
|
<td style="padding:15px">{base_path}/{version}/userprofile?{query}</td>
|
|
311
347
|
<td style="padding:15px">Yes</td>
|
|
312
348
|
</tr>
|
|
313
349
|
<tr>
|
|
314
350
|
<td style="padding:15px">updateUserProfileUsingPUT(name, body, callback)</td>
|
|
315
|
-
<td style="padding:15px">
|
|
351
|
+
<td style="padding:15px">updateUserProfileUsingPUT</td>
|
|
316
352
|
<td style="padding:15px">{base_path}/{version}/userprofile?{query}</td>
|
|
317
353
|
<td style="padding:15px">Yes</td>
|
|
318
354
|
</tr>
|
|
319
355
|
<tr>
|
|
320
356
|
<td style="padding:15px">getusergroups(callback)</td>
|
|
321
|
-
<td style="padding:15px">
|
|
357
|
+
<td style="padding:15px">getusergroups</td>
|
|
322
358
|
<td style="padding:15px">{base_path}/{version}/user-groups?{query}</td>
|
|
323
359
|
<td style="padding:15px">Yes</td>
|
|
324
360
|
</tr>
|
|
325
361
|
<tr>
|
|
326
362
|
<td style="padding:15px">createUserGroup(body, callback)</td>
|
|
327
|
-
<td style="padding:15px">
|
|
363
|
+
<td style="padding:15px">createUserGroup</td>
|
|
328
364
|
<td style="padding:15px">{base_path}/{version}/user-groups?{query}</td>
|
|
329
365
|
<td style="padding:15px">Yes</td>
|
|
330
366
|
</tr>
|
|
331
367
|
<tr>
|
|
332
368
|
<td style="padding:15px">getUserGroup(usergroupId, callback)</td>
|
|
333
|
-
<td style="padding:15px">
|
|
369
|
+
<td style="padding:15px">getUserGroup</td>
|
|
334
370
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}?{query}</td>
|
|
335
371
|
<td style="padding:15px">Yes</td>
|
|
336
372
|
</tr>
|
|
337
373
|
<tr>
|
|
338
374
|
<td style="padding:15px">updateUserGroup(usergroupId, body, callback)</td>
|
|
339
|
-
<td style="padding:15px">
|
|
375
|
+
<td style="padding:15px">updateUserGroup</td>
|
|
340
376
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}?{query}</td>
|
|
341
377
|
<td style="padding:15px">Yes</td>
|
|
342
378
|
</tr>
|
|
343
379
|
<tr>
|
|
344
380
|
<td style="padding:15px">deleteUserGroup(usergroupId, callback)</td>
|
|
345
|
-
<td style="padding:15px">
|
|
381
|
+
<td style="padding:15px">deleteUserGroup</td>
|
|
346
382
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}?{query}</td>
|
|
347
383
|
<td style="padding:15px">Yes</td>
|
|
348
384
|
</tr>
|
|
349
385
|
<tr>
|
|
350
386
|
<td style="padding:15px">getUsersInUserGroup(usergroupId, callback)</td>
|
|
351
|
-
<td style="padding:15px">
|
|
387
|
+
<td style="padding:15px">getUsersInUserGroup</td>
|
|
352
388
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}/users?{query}</td>
|
|
353
389
|
<td style="padding:15px">Yes</td>
|
|
354
390
|
</tr>
|
|
355
391
|
<tr>
|
|
356
392
|
<td style="padding:15px">addUsersToUserGroup(usergroupId, body, callback)</td>
|
|
357
|
-
<td style="padding:15px">
|
|
393
|
+
<td style="padding:15px">addUsersToUserGroup</td>
|
|
358
394
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}/users?{query}</td>
|
|
359
395
|
<td style="padding:15px">Yes</td>
|
|
360
396
|
</tr>
|
|
361
397
|
<tr>
|
|
362
398
|
<td style="padding:15px">replaceUsersInUserGroup(usergroupId, body, callback)</td>
|
|
363
|
-
<td style="padding:15px">
|
|
399
|
+
<td style="padding:15px">replaceUsersInUserGroup</td>
|
|
364
400
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}/users?{query}</td>
|
|
365
401
|
<td style="padding:15px">Yes</td>
|
|
366
402
|
</tr>
|
|
367
403
|
<tr>
|
|
368
404
|
<td style="padding:15px">getUserFromUserGroup(usergroupId, userId, callback)</td>
|
|
369
|
-
<td style="padding:15px">
|
|
405
|
+
<td style="padding:15px">getUserFromUserGroup</td>
|
|
370
406
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}/users/{pathv2}?{query}</td>
|
|
371
407
|
<td style="padding:15px">Yes</td>
|
|
372
408
|
</tr>
|
|
373
409
|
<tr>
|
|
374
410
|
<td style="padding:15px">deleteUserFromUserGroup(usergroupId, userId, callback)</td>
|
|
375
|
-
<td style="padding:15px">
|
|
411
|
+
<td style="padding:15px">deleteUserFromUserGroup</td>
|
|
376
412
|
<td style="padding:15px">{base_path}/{version}/user-groups/{pathv1}/users/{pathv2}?{query}</td>
|
|
377
413
|
<td style="padding:15px">Yes</td>
|
|
378
414
|
</tr>
|
|
379
415
|
<tr>
|
|
380
416
|
<td style="padding:15px">getRolesUsingGET(callback)</td>
|
|
381
|
-
<td style="padding:15px">
|
|
417
|
+
<td style="padding:15px">getRolesUsingGET</td>
|
|
382
418
|
<td style="padding:15px">{base_path}/{version}/roles?{query}</td>
|
|
383
419
|
<td style="padding:15px">Yes</td>
|
|
384
420
|
</tr>
|
|
385
421
|
<tr>
|
|
386
422
|
<td style="padding:15px">createRoleUsingPOST(body, callback)</td>
|
|
387
|
-
<td style="padding:15px">
|
|
423
|
+
<td style="padding:15px">createRoleUsingPOST</td>
|
|
388
424
|
<td style="padding:15px">{base_path}/{version}/roles?{query}</td>
|
|
389
425
|
<td style="padding:15px">Yes</td>
|
|
390
426
|
</tr>
|
|
391
427
|
<tr>
|
|
392
428
|
<td style="padding:15px">getRoleByIdUsingGET(roleId, callback)</td>
|
|
393
|
-
<td style="padding:15px">
|
|
429
|
+
<td style="padding:15px">getRoleByIdUsingGET</td>
|
|
394
430
|
<td style="padding:15px">{base_path}/{version}/roles/{pathv1}?{query}</td>
|
|
395
431
|
<td style="padding:15px">Yes</td>
|
|
396
432
|
</tr>
|
|
397
433
|
<tr>
|
|
398
434
|
<td style="padding:15px">updateRoleUsingPUT1(roleId, body, callback)</td>
|
|
399
|
-
<td style="padding:15px">
|
|
435
|
+
<td style="padding:15px">updateRoleUsingPUT_1</td>
|
|
400
436
|
<td style="padding:15px">{base_path}/{version}/roles/{pathv1}?{query}</td>
|
|
401
437
|
<td style="padding:15px">Yes</td>
|
|
402
438
|
</tr>
|
|
403
439
|
<tr>
|
|
404
440
|
<td style="padding:15px">deleteRoleByIdUsingDELETE(roleId, callback)</td>
|
|
405
|
-
<td style="padding:15px">
|
|
441
|
+
<td style="padding:15px">deleteRoleByIdUsingDELETE</td>
|
|
406
442
|
<td style="padding:15px">{base_path}/{version}/roles/{pathv1}?{query}</td>
|
|
407
443
|
<td style="padding:15px">Yes</td>
|
|
408
444
|
</tr>
|
|
409
445
|
<tr>
|
|
410
446
|
<td style="padding:15px">getPermissionsUsingGET(showAll, userName, callback)</td>
|
|
411
|
-
<td style="padding:15px">
|
|
447
|
+
<td style="padding:15px">getPermissionsUsingGET</td>
|
|
412
448
|
<td style="padding:15px">{base_path}/{version}/permissions?{query}</td>
|
|
413
449
|
<td style="padding:15px">Yes</td>
|
|
414
450
|
</tr>
|
|
415
451
|
<tr>
|
|
416
452
|
<td style="padding:15px">getIdentityProvidersUsingGET(callback)</td>
|
|
417
|
-
<td style="padding:15px">
|
|
453
|
+
<td style="padding:15px">getIdentityProvidersUsingGET</td>
|
|
418
454
|
<td style="padding:15px">{base_path}/{version}/identityproviders?{query}</td>
|
|
419
455
|
<td style="padding:15px">Yes</td>
|
|
420
456
|
</tr>
|
|
421
457
|
<tr>
|
|
422
458
|
<td style="padding:15px">addIdentityProviderUsingPOST(body, callback)</td>
|
|
423
|
-
<td style="padding:15px">
|
|
459
|
+
<td style="padding:15px">addIdentityProviderUsingPOST</td>
|
|
424
460
|
<td style="padding:15px">{base_path}/{version}/identityproviders?{query}</td>
|
|
425
461
|
<td style="padding:15px">Yes</td>
|
|
426
462
|
</tr>
|
|
427
463
|
<tr>
|
|
428
464
|
<td style="padding:15px">getIdentityProviderUsingGET(identityProviderId, callback)</td>
|
|
429
|
-
<td style="padding:15px">
|
|
465
|
+
<td style="padding:15px">getIdentityProviderUsingGET</td>
|
|
430
466
|
<td style="padding:15px">{base_path}/{version}/identityproviders/{pathv1}?{query}</td>
|
|
431
467
|
<td style="padding:15px">Yes</td>
|
|
432
468
|
</tr>
|
|
433
469
|
<tr>
|
|
434
470
|
<td style="padding:15px">updateIdentityProviderUsingPUT(identityProviderId, body, callback)</td>
|
|
435
|
-
<td style="padding:15px">
|
|
471
|
+
<td style="padding:15px">updateIdentityProviderUsingPUT</td>
|
|
436
472
|
<td style="padding:15px">{base_path}/{version}/identityproviders/{pathv1}?{query}</td>
|
|
437
473
|
<td style="padding:15px">Yes</td>
|
|
438
474
|
</tr>
|
|
439
475
|
<tr>
|
|
440
476
|
<td style="padding:15px">deleteIdentityProviderUsingDELETE(identityProviderId, callback)</td>
|
|
441
|
-
<td style="padding:15px">
|
|
477
|
+
<td style="padding:15px">deleteIdentityProviderUsingDELETE</td>
|
|
442
478
|
<td style="padding:15px">{base_path}/{version}/identityproviders/{pathv1}?{query}</td>
|
|
443
479
|
<td style="padding:15px">Yes</td>
|
|
444
480
|
</tr>
|
|
445
481
|
<tr>
|
|
446
482
|
<td style="padding:15px">getconnectors(tenantNetworkId, callback)</td>
|
|
447
|
-
<td style="padding:15px">
|
|
483
|
+
<td style="padding:15px">getconnectors</td>
|
|
448
484
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors?{query}</td>
|
|
449
485
|
<td style="padding:15px">Yes</td>
|
|
450
486
|
</tr>
|
|
451
487
|
<tr>
|
|
452
488
|
<td style="padding:15px">getConnector(tenantNetworkId, connectorId, callback)</td>
|
|
453
|
-
<td style="padding:15px">
|
|
489
|
+
<td style="padding:15px">getConnector</td>
|
|
454
490
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}?{query}</td>
|
|
455
491
|
<td style="padding:15px">Yes</td>
|
|
456
492
|
</tr>
|
|
457
493
|
<tr>
|
|
458
494
|
<td style="padding:15px">getawsvpcconnectors(tenantNetworkId, callback)</td>
|
|
459
|
-
<td style="padding:15px">
|
|
495
|
+
<td style="padding:15px">getawsvpcconnectors</td>
|
|
460
496
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/awsvpcconnectors?{query}</td>
|
|
461
497
|
<td style="padding:15px">Yes</td>
|
|
462
498
|
</tr>
|
|
463
499
|
<tr>
|
|
464
500
|
<td style="padding:15px">createAWSVPCConnector(tenantNetworkId, body, callback)</td>
|
|
465
|
-
<td style="padding:15px">
|
|
501
|
+
<td style="padding:15px">createAWSVPCConnector</td>
|
|
466
502
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/awsvpcconnectors?{query}</td>
|
|
467
503
|
<td style="padding:15px">Yes</td>
|
|
468
504
|
</tr>
|
|
469
505
|
<tr>
|
|
470
506
|
<td style="padding:15px">getAWSVPCConnector(tenantNetworkId, awsvpcconnectorId, callback)</td>
|
|
471
|
-
<td style="padding:15px">
|
|
507
|
+
<td style="padding:15px">getAWSVPCConnector</td>
|
|
472
508
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/awsvpcconnectors/{pathv2}?{query}</td>
|
|
473
509
|
<td style="padding:15px">Yes</td>
|
|
474
510
|
</tr>
|
|
475
511
|
<tr>
|
|
476
512
|
<td style="padding:15px">updateAWSVPCConnector(tenantNetworkId, awsvpcconnectorId, body, callback)</td>
|
|
477
|
-
<td style="padding:15px">
|
|
513
|
+
<td style="padding:15px">updateAWSVPCConnector</td>
|
|
478
514
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/awsvpcconnectors/{pathv2}?{query}</td>
|
|
479
515
|
<td style="padding:15px">Yes</td>
|
|
480
516
|
</tr>
|
|
481
517
|
<tr>
|
|
482
518
|
<td style="padding:15px">deleteAWSVPCConnector(tenantNetworkId, awsvpcconnectorId, callback)</td>
|
|
483
|
-
<td style="padding:15px">
|
|
519
|
+
<td style="padding:15px">deleteAWSVPCConnector</td>
|
|
484
520
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/awsvpcconnectors/{pathv2}?{query}</td>
|
|
485
521
|
<td style="padding:15px">Yes</td>
|
|
486
522
|
</tr>
|
|
487
523
|
<tr>
|
|
488
524
|
<td style="padding:15px">getazurevnetconnectors(tenantNetworkId, callback)</td>
|
|
489
|
-
<td style="padding:15px">
|
|
525
|
+
<td style="padding:15px">getazurevnetconnectors</td>
|
|
490
526
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azurevnetconnectors?{query}</td>
|
|
491
527
|
<td style="padding:15px">Yes</td>
|
|
492
528
|
</tr>
|
|
493
529
|
<tr>
|
|
494
530
|
<td style="padding:15px">createAzureVNETConnector(tenantNetworkId, body, callback)</td>
|
|
495
|
-
<td style="padding:15px">
|
|
531
|
+
<td style="padding:15px">createAzureVNETConnector</td>
|
|
496
532
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azurevnetconnectors?{query}</td>
|
|
497
533
|
<td style="padding:15px">Yes</td>
|
|
498
534
|
</tr>
|
|
499
535
|
<tr>
|
|
500
536
|
<td style="padding:15px">getAzureVNETConnector(tenantNetworkId, azurevnetconnectorId, callback)</td>
|
|
501
|
-
<td style="padding:15px">
|
|
537
|
+
<td style="padding:15px">getAzureVNETConnector</td>
|
|
502
538
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azurevnetconnectors/{pathv2}?{query}</td>
|
|
503
539
|
<td style="padding:15px">Yes</td>
|
|
504
540
|
</tr>
|
|
505
541
|
<tr>
|
|
506
542
|
<td style="padding:15px">updateAzureVNETConnector(tenantNetworkId, azurevnetconnectorId, body, callback)</td>
|
|
507
|
-
<td style="padding:15px">
|
|
543
|
+
<td style="padding:15px">updateAzureVNETConnector</td>
|
|
508
544
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azurevnetconnectors/{pathv2}?{query}</td>
|
|
509
545
|
<td style="padding:15px">Yes</td>
|
|
510
546
|
</tr>
|
|
511
547
|
<tr>
|
|
512
548
|
<td style="padding:15px">deleteAzureVNETConnector(tenantNetworkId, azurevnetconnectorId, callback)</td>
|
|
513
|
-
<td style="padding:15px">
|
|
549
|
+
<td style="padding:15px">deleteAzureVNETConnector</td>
|
|
514
550
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azurevnetconnectors/{pathv2}?{query}</td>
|
|
515
551
|
<td style="padding:15px">Yes</td>
|
|
516
552
|
</tr>
|
|
517
553
|
<tr>
|
|
518
554
|
<td style="padding:15px">getgcpconnectors(tenantNetworkId, callback)</td>
|
|
519
|
-
<td style="padding:15px">
|
|
555
|
+
<td style="padding:15px">getgcpconnectors</td>
|
|
520
556
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/gcpvpcconnectors?{query}</td>
|
|
521
557
|
<td style="padding:15px">Yes</td>
|
|
522
558
|
</tr>
|
|
523
559
|
<tr>
|
|
524
560
|
<td style="padding:15px">createGCPConnector(tenantNetworkId, body, callback)</td>
|
|
525
|
-
<td style="padding:15px">
|
|
561
|
+
<td style="padding:15px">createGCPConnector</td>
|
|
526
562
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/gcpvpcconnectors?{query}</td>
|
|
527
563
|
<td style="padding:15px">Yes</td>
|
|
528
564
|
</tr>
|
|
529
565
|
<tr>
|
|
530
566
|
<td style="padding:15px">getGCPConnector(tenantNetworkId, gcpconnectorId, callback)</td>
|
|
531
|
-
<td style="padding:15px">
|
|
567
|
+
<td style="padding:15px">getGCPConnector</td>
|
|
532
568
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/gcpvpcconnectors/{pathv2}?{query}</td>
|
|
533
569
|
<td style="padding:15px">Yes</td>
|
|
534
570
|
</tr>
|
|
535
571
|
<tr>
|
|
536
572
|
<td style="padding:15px">updateGCPConnector(tenantNetworkId, gcpconnectorId, body, callback)</td>
|
|
537
|
-
<td style="padding:15px">
|
|
573
|
+
<td style="padding:15px">updateGCPConnector</td>
|
|
538
574
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/gcpvpcconnectors/{pathv2}?{query}</td>
|
|
539
575
|
<td style="padding:15px">Yes</td>
|
|
540
576
|
</tr>
|
|
541
577
|
<tr>
|
|
542
578
|
<td style="padding:15px">deleteGCPConnector(tenantNetworkId, gcpconnectorId, callback)</td>
|
|
543
|
-
<td style="padding:15px">
|
|
579
|
+
<td style="padding:15px">deleteGCPConnector</td>
|
|
544
580
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/gcpvpcconnectors/{pathv2}?{query}</td>
|
|
545
581
|
<td style="padding:15px">Yes</td>
|
|
546
582
|
</tr>
|
|
547
583
|
<tr>
|
|
548
584
|
<td style="padding:15px">getOCIVCNConnectors(tenantNetworkId, callback)</td>
|
|
549
|
-
<td style="padding:15px">
|
|
585
|
+
<td style="padding:15px">getOCIVCNConnectors</td>
|
|
550
586
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/oci-vcn-connectors?{query}</td>
|
|
551
587
|
<td style="padding:15px">Yes</td>
|
|
552
588
|
</tr>
|
|
553
589
|
<tr>
|
|
554
590
|
<td style="padding:15px">createOCIVCNConnector(tenantNetworkId, body, callback)</td>
|
|
555
|
-
<td style="padding:15px">
|
|
591
|
+
<td style="padding:15px">createOCIVCNConnector</td>
|
|
556
592
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/oci-vcn-connectors?{query}</td>
|
|
557
593
|
<td style="padding:15px">Yes</td>
|
|
558
594
|
</tr>
|
|
559
595
|
<tr>
|
|
560
596
|
<td style="padding:15px">getOCIVCNConnector(tenantNetworkId, oCIVCNConnectorId, callback)</td>
|
|
561
|
-
<td style="padding:15px">
|
|
597
|
+
<td style="padding:15px">getOCIVCNConnector</td>
|
|
562
598
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/oci-vcn-connectors/{pathv2}?{query}</td>
|
|
563
599
|
<td style="padding:15px">Yes</td>
|
|
564
600
|
</tr>
|
|
565
601
|
<tr>
|
|
566
602
|
<td style="padding:15px">updateOCIVCNConnector(tenantNetworkId, oCIVCNConnectorId, body, callback)</td>
|
|
567
|
-
<td style="padding:15px">
|
|
603
|
+
<td style="padding:15px">updateOCIVCNConnector</td>
|
|
568
604
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/oci-vcn-connectors/{pathv2}?{query}</td>
|
|
569
605
|
<td style="padding:15px">Yes</td>
|
|
570
606
|
</tr>
|
|
571
607
|
<tr>
|
|
572
608
|
<td style="padding:15px">deleteOCIVCNConnector(tenantNetworkId, oCIVCNConnectorId, callback)</td>
|
|
573
|
-
<td style="padding:15px">
|
|
609
|
+
<td style="padding:15px">deleteOCIVCNConnector</td>
|
|
574
610
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/oci-vcn-connectors/{pathv2}?{query}</td>
|
|
575
611
|
<td style="padding:15px">Yes</td>
|
|
576
612
|
</tr>
|
|
577
613
|
<tr>
|
|
578
614
|
<td style="padding:15px">getipsecconnectors(tenantNetworkId, callback)</td>
|
|
579
|
-
<td style="padding:15px">
|
|
615
|
+
<td style="padding:15px">getipsecconnectors</td>
|
|
580
616
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ipsecconnectors?{query}</td>
|
|
581
617
|
<td style="padding:15px">Yes</td>
|
|
582
618
|
</tr>
|
|
583
619
|
<tr>
|
|
584
620
|
<td style="padding:15px">createIPSecConnector(tenantNetworkId, body, callback)</td>
|
|
585
|
-
<td style="padding:15px">
|
|
621
|
+
<td style="padding:15px">createIPSecConnector</td>
|
|
586
622
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ipsecconnectors?{query}</td>
|
|
587
623
|
<td style="padding:15px">Yes</td>
|
|
588
624
|
</tr>
|
|
589
625
|
<tr>
|
|
590
626
|
<td style="padding:15px">getIPSecConnector(tenantNetworkId, ipsecconnectorId, callback)</td>
|
|
591
|
-
<td style="padding:15px">
|
|
627
|
+
<td style="padding:15px">getIPSecConnector</td>
|
|
592
628
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ipsecconnectors/{pathv2}?{query}</td>
|
|
593
629
|
<td style="padding:15px">Yes</td>
|
|
594
630
|
</tr>
|
|
595
631
|
<tr>
|
|
596
632
|
<td style="padding:15px">updateIPSecConnector(tenantNetworkId, ipsecconnectorId, body, callback)</td>
|
|
597
|
-
<td style="padding:15px">
|
|
633
|
+
<td style="padding:15px">updateIPSecConnector</td>
|
|
598
634
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ipsecconnectors/{pathv2}?{query}</td>
|
|
599
635
|
<td style="padding:15px">Yes</td>
|
|
600
636
|
</tr>
|
|
601
637
|
<tr>
|
|
602
638
|
<td style="padding:15px">deleteIPSecConnector(tenantNetworkId, ipsecconnectorId, callback)</td>
|
|
603
|
-
<td style="padding:15px">
|
|
639
|
+
<td style="padding:15px">deleteIPSecConnector</td>
|
|
604
640
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ipsecconnectors/{pathv2}?{query}</td>
|
|
605
641
|
<td style="padding:15px">Yes</td>
|
|
606
642
|
</tr>
|
|
607
643
|
<tr>
|
|
608
644
|
<td style="padding:15px">getIPSecConnectorSiteConfiguration(tenantNetworkId, ipsecconnectorId, siteId, callback)</td>
|
|
609
|
-
<td style="padding:15px">
|
|
645
|
+
<td style="padding:15px">getIPSecConnectorSiteConfiguration</td>
|
|
610
646
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ipsecconnectors/{pathv2}/sites/{pathv3}?{query}</td>
|
|
611
647
|
<td style="padding:15px">Yes</td>
|
|
612
648
|
</tr>
|
|
613
649
|
<tr>
|
|
614
650
|
<td style="padding:15px">getciscosdwaningresses(tenantNetworkId, callback)</td>
|
|
615
|
-
<td style="padding:15px">
|
|
651
|
+
<td style="padding:15px">getciscosdwaningresses</td>
|
|
616
652
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ciscosdwaningresses?{query}</td>
|
|
617
653
|
<td style="padding:15px">Yes</td>
|
|
618
654
|
</tr>
|
|
619
655
|
<tr>
|
|
620
656
|
<td style="padding:15px">createCiscoSDWANIngress(tenantNetworkId, body, callback)</td>
|
|
621
|
-
<td style="padding:15px">
|
|
657
|
+
<td style="padding:15px">createCiscoSDWANIngress</td>
|
|
622
658
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ciscosdwaningresses?{query}</td>
|
|
623
659
|
<td style="padding:15px">Yes</td>
|
|
624
660
|
</tr>
|
|
625
661
|
<tr>
|
|
626
662
|
<td style="padding:15px">getCiscoSDWANIngress(tenantNetworkId, ciscosdwaningressId, callback)</td>
|
|
627
|
-
<td style="padding:15px">
|
|
663
|
+
<td style="padding:15px">getCiscoSDWANIngress</td>
|
|
628
664
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ciscosdwaningresses/{pathv2}?{query}</td>
|
|
629
665
|
<td style="padding:15px">Yes</td>
|
|
630
666
|
</tr>
|
|
631
667
|
<tr>
|
|
632
668
|
<td style="padding:15px">updateCiscoSDWANIngress(tenantNetworkId, ciscosdwaningressId, body, callback)</td>
|
|
633
|
-
<td style="padding:15px">
|
|
669
|
+
<td style="padding:15px">updateCiscoSDWANIngress</td>
|
|
634
670
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ciscosdwaningresses/{pathv2}?{query}</td>
|
|
635
671
|
<td style="padding:15px">Yes</td>
|
|
636
672
|
</tr>
|
|
637
673
|
<tr>
|
|
638
674
|
<td style="padding:15px">deleteCiscoSDWANIngress(tenantNetworkId, ciscosdwaningressId, callback)</td>
|
|
639
|
-
<td style="padding:15px">
|
|
675
|
+
<td style="padding:15px">deleteCiscoSDWANIngress</td>
|
|
640
676
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ciscosdwaningresses/{pathv2}?{query}</td>
|
|
641
677
|
<td style="padding:15px">Yes</td>
|
|
642
678
|
</tr>
|
|
643
679
|
<tr>
|
|
644
680
|
<td style="padding:15px">getCiscoSDWANConnectorInstanceConfiguration(tenantNetworkId, ciscosdwaningressId, instanceId, callback)</td>
|
|
645
|
-
<td style="padding:15px">
|
|
681
|
+
<td style="padding:15px">getCiscoSDWANConnectorInstanceConfiguration</td>
|
|
646
682
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ciscosdwaningresses/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
647
683
|
<td style="padding:15px">Yes</td>
|
|
648
684
|
</tr>
|
|
649
685
|
<tr>
|
|
650
686
|
<td style="padding:15px">getinternetconnectors(tenantNetworkId, callback)</td>
|
|
651
|
-
<td style="padding:15px">
|
|
687
|
+
<td style="padding:15px">getinternetconnectors</td>
|
|
652
688
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internetconnectors?{query}</td>
|
|
653
689
|
<td style="padding:15px">Yes</td>
|
|
654
690
|
</tr>
|
|
655
691
|
<tr>
|
|
656
692
|
<td style="padding:15px">createInternetConnector(tenantNetworkId, body, callback)</td>
|
|
657
|
-
<td style="padding:15px">
|
|
693
|
+
<td style="padding:15px">createInternetConnector</td>
|
|
658
694
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internetconnectors?{query}</td>
|
|
659
695
|
<td style="padding:15px">Yes</td>
|
|
660
696
|
</tr>
|
|
661
697
|
<tr>
|
|
662
698
|
<td style="padding:15px">getInternetConnector(tenantNetworkId, internetconnectorId, callback)</td>
|
|
663
|
-
<td style="padding:15px">
|
|
699
|
+
<td style="padding:15px">getInternetConnector</td>
|
|
664
700
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internetconnectors/{pathv2}?{query}</td>
|
|
665
701
|
<td style="padding:15px">Yes</td>
|
|
666
702
|
</tr>
|
|
667
703
|
<tr>
|
|
668
704
|
<td style="padding:15px">updateInternetConnector(tenantNetworkId, internetconnectorId, body, callback)</td>
|
|
669
|
-
<td style="padding:15px">
|
|
705
|
+
<td style="padding:15px">updateInternetConnector</td>
|
|
670
706
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internetconnectors/{pathv2}?{query}</td>
|
|
671
707
|
<td style="padding:15px">Yes</td>
|
|
672
708
|
</tr>
|
|
673
709
|
<tr>
|
|
674
710
|
<td style="padding:15px">deleteInternetConnector(tenantNetworkId, internetconnectorId, callback)</td>
|
|
675
|
-
<td style="padding:15px">
|
|
711
|
+
<td style="padding:15px">deleteInternetConnector</td>
|
|
676
712
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internetconnectors/{pathv2}?{query}</td>
|
|
677
713
|
<td style="padding:15px">Yes</td>
|
|
678
714
|
</tr>
|
|
679
715
|
<tr>
|
|
680
716
|
<td style="padding:15px">getInternetConnectorConfiguration(tenantNetworkId, internetconnectorId, callback)</td>
|
|
681
|
-
<td style="padding:15px">
|
|
717
|
+
<td style="padding:15px">getInternetConnectorConfiguration</td>
|
|
682
718
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internetconnectors/{pathv2}/configuration?{query}</td>
|
|
683
719
|
<td style="padding:15px">Yes</td>
|
|
684
720
|
</tr>
|
|
685
721
|
<tr>
|
|
686
722
|
<td style="padding:15px">getdirectconnectconnectors(tenantNetworkId, callback)</td>
|
|
687
|
-
<td style="padding:15px">
|
|
723
|
+
<td style="padding:15px">getdirectconnectconnectors</td>
|
|
688
724
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/directconnectconnectors?{query}</td>
|
|
689
725
|
<td style="padding:15px">Yes</td>
|
|
690
726
|
</tr>
|
|
691
727
|
<tr>
|
|
692
728
|
<td style="padding:15px">createDirectConnectConnector(tenantNetworkId, body, callback)</td>
|
|
693
|
-
<td style="padding:15px">
|
|
729
|
+
<td style="padding:15px">createDirectConnectConnector</td>
|
|
694
730
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/directconnectconnectors?{query}</td>
|
|
695
731
|
<td style="padding:15px">Yes</td>
|
|
696
732
|
</tr>
|
|
697
733
|
<tr>
|
|
698
734
|
<td style="padding:15px">getDirectConnectConnector(tenantNetworkId, directconnectconnectorId, callback)</td>
|
|
699
|
-
<td style="padding:15px">
|
|
735
|
+
<td style="padding:15px">getDirectConnectConnector</td>
|
|
700
736
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/directconnectconnectors/{pathv2}?{query}</td>
|
|
701
737
|
<td style="padding:15px">Yes</td>
|
|
702
738
|
</tr>
|
|
703
739
|
<tr>
|
|
704
740
|
<td style="padding:15px">updateDirectConnectConnector(tenantNetworkId, directconnectconnectorId, body, callback)</td>
|
|
705
|
-
<td style="padding:15px">
|
|
741
|
+
<td style="padding:15px">updateDirectConnectConnector</td>
|
|
706
742
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/directconnectconnectors/{pathv2}?{query}</td>
|
|
707
743
|
<td style="padding:15px">Yes</td>
|
|
708
744
|
</tr>
|
|
709
745
|
<tr>
|
|
710
746
|
<td style="padding:15px">deleteDirectConnectConnector(tenantNetworkId, directconnectconnectorId, callback)</td>
|
|
711
|
-
<td style="padding:15px">
|
|
747
|
+
<td style="padding:15px">deleteDirectConnectConnector</td>
|
|
712
748
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/directconnectconnectors/{pathv2}?{query}</td>
|
|
713
749
|
<td style="padding:15px">Yes</td>
|
|
714
750
|
</tr>
|
|
715
751
|
<tr>
|
|
716
752
|
<td style="padding:15px">getDirectConnectConnectorInstanceConfiguration(tenantNetworkId, directconnectconnectorId, instanceId, callback)</td>
|
|
717
|
-
<td style="padding:15px">
|
|
753
|
+
<td style="padding:15px">getDirectConnectConnectorInstanceConfiguration</td>
|
|
718
754
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/directconnectconnectors/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
719
755
|
<td style="padding:15px">Yes</td>
|
|
720
756
|
</tr>
|
|
721
757
|
<tr>
|
|
722
758
|
<td style="padding:15px">getAzureErConnectors(tenantNetworkId, callback)</td>
|
|
723
|
-
<td style="padding:15px">
|
|
759
|
+
<td style="padding:15px">getAzureErConnectors</td>
|
|
724
760
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azure-express-route-connectors?{query}</td>
|
|
725
761
|
<td style="padding:15px">Yes</td>
|
|
726
762
|
</tr>
|
|
727
763
|
<tr>
|
|
728
764
|
<td style="padding:15px">createAzureErConnector(tenantNetworkId, body, callback)</td>
|
|
729
|
-
<td style="padding:15px">
|
|
765
|
+
<td style="padding:15px">createAzureErConnector</td>
|
|
730
766
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azure-express-route-connectors?{query}</td>
|
|
731
767
|
<td style="padding:15px">Yes</td>
|
|
732
768
|
</tr>
|
|
733
769
|
<tr>
|
|
734
770
|
<td style="padding:15px">getAzureErConnector(tenantNetworkId, azureErConnectorId, callback)</td>
|
|
735
|
-
<td style="padding:15px">
|
|
771
|
+
<td style="padding:15px">getAzureErConnector</td>
|
|
736
772
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azure-express-route-connectors/{pathv2}?{query}</td>
|
|
737
773
|
<td style="padding:15px">Yes</td>
|
|
738
774
|
</tr>
|
|
739
775
|
<tr>
|
|
740
776
|
<td style="padding:15px">updateAzureErConnector(tenantNetworkId, azureErConnectorId, body, callback)</td>
|
|
741
|
-
<td style="padding:15px">
|
|
777
|
+
<td style="padding:15px">updateAzureErConnector</td>
|
|
742
778
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azure-express-route-connectors/{pathv2}?{query}</td>
|
|
743
779
|
<td style="padding:15px">Yes</td>
|
|
744
780
|
</tr>
|
|
745
781
|
<tr>
|
|
746
782
|
<td style="padding:15px">deleteAzureErConnector(tenantNetworkId, azureErConnectorId, callback)</td>
|
|
747
|
-
<td style="padding:15px">
|
|
783
|
+
<td style="padding:15px">deleteAzureErConnector</td>
|
|
748
784
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azure-express-route-connectors/{pathv2}?{query}</td>
|
|
749
785
|
<td style="padding:15px">Yes</td>
|
|
750
786
|
</tr>
|
|
751
787
|
<tr>
|
|
752
788
|
<td style="padding:15px">getAzureErConnectorInstanceConfiguration(tenantNetworkId, azureErConnectorId, instanceId, callback)</td>
|
|
753
|
-
<td style="padding:15px">
|
|
789
|
+
<td style="padding:15px">getAzureErConnectorInstanceConfiguration</td>
|
|
754
790
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/azure-express-route-connectors/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
755
791
|
<td style="padding:15px">Yes</td>
|
|
756
792
|
</tr>
|
|
757
793
|
<tr>
|
|
758
794
|
<td style="padding:15px">getAuditLogs(status, type, search, sortBy, offset, limit, startTime, endTime, tags, callback)</td>
|
|
759
|
-
<td style="padding:15px">
|
|
795
|
+
<td style="padding:15px">getAuditLogs</td>
|
|
760
796
|
<td style="padding:15px">{base_path}/{version}/auditlogs?{query}</td>
|
|
761
797
|
<td style="padding:15px">Yes</td>
|
|
762
798
|
</tr>
|
|
763
799
|
<tr>
|
|
764
800
|
<td style="padding:15px">getAuditLogTags(limit, callback)</td>
|
|
765
|
-
<td style="padding:15px">
|
|
801
|
+
<td style="padding:15px">getAuditLogTags</td>
|
|
766
802
|
<td style="padding:15px">{base_path}/{version}/auditlog-tags?{query}</td>
|
|
767
803
|
<td style="padding:15px">Yes</td>
|
|
768
804
|
</tr>
|
|
769
805
|
<tr>
|
|
770
806
|
<td style="padding:15px">getTenantNetworks(callback)</td>
|
|
771
|
-
<td style="padding:15px">
|
|
807
|
+
<td style="padding:15px">getTenantNetworks</td>
|
|
772
808
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks?{query}</td>
|
|
773
809
|
<td style="padding:15px">Yes</td>
|
|
774
810
|
</tr>
|
|
775
811
|
<tr>
|
|
776
812
|
<td style="padding:15px">createTenantNetwork(body, callback)</td>
|
|
777
|
-
<td style="padding:15px">
|
|
813
|
+
<td style="padding:15px">createTenantNetwork</td>
|
|
778
814
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks?{query}</td>
|
|
779
815
|
<td style="padding:15px">Yes</td>
|
|
780
816
|
</tr>
|
|
781
817
|
<tr>
|
|
782
818
|
<td style="padding:15px">getTenantNetwork(tenantNetworkId, callback)</td>
|
|
783
|
-
<td style="padding:15px">
|
|
819
|
+
<td style="padding:15px">getTenantNetwork</td>
|
|
784
820
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}?{query}</td>
|
|
785
821
|
<td style="padding:15px">Yes</td>
|
|
786
822
|
</tr>
|
|
787
823
|
<tr>
|
|
788
824
|
<td style="padding:15px">updateTenantNetwork(tenantNetworkId, body, callback)</td>
|
|
789
|
-
<td style="padding:15px">
|
|
825
|
+
<td style="padding:15px">updateTenantNetwork</td>
|
|
790
826
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}?{query}</td>
|
|
791
827
|
<td style="padding:15px">Yes</td>
|
|
792
828
|
</tr>
|
|
793
829
|
<tr>
|
|
794
830
|
<td style="padding:15px">deleteTenantNetwork(tenantNetworkId, callback)</td>
|
|
795
|
-
<td style="padding:15px">
|
|
831
|
+
<td style="padding:15px">deleteTenantNetwork</td>
|
|
796
832
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}?{query}</td>
|
|
797
833
|
<td style="padding:15px">Yes</td>
|
|
798
834
|
</tr>
|
|
799
835
|
<tr>
|
|
800
836
|
<td style="padding:15px">provisionTenantNetwork(tenantNetworkId, callback)</td>
|
|
801
|
-
<td style="padding:15px">
|
|
837
|
+
<td style="padding:15px">provisionTenantNetwork</td>
|
|
802
838
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/provision?{query}</td>
|
|
803
839
|
<td style="padding:15px">Yes</td>
|
|
804
840
|
</tr>
|
|
@@ -840,109 +876,109 @@ Specific adapter calls are built based on the API of the Alkira. The Adapter Bui
|
|
|
840
876
|
</tr>
|
|
841
877
|
<tr>
|
|
842
878
|
<td style="padding:15px">getfirewallzones(tenantNetworkId, callback)</td>
|
|
843
|
-
<td style="padding:15px">
|
|
879
|
+
<td style="padding:15px">getfirewallzones</td>
|
|
844
880
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/firewallzones?{query}</td>
|
|
845
881
|
<td style="padding:15px">Yes</td>
|
|
846
882
|
</tr>
|
|
847
883
|
<tr>
|
|
848
884
|
<td style="padding:15px">getFirewallZone(tenantNetworkId, firewallzoneId, callback)</td>
|
|
849
|
-
<td style="padding:15px">
|
|
885
|
+
<td style="padding:15px">getFirewallZone</td>
|
|
850
886
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/firewallzones/{pathv2}?{query}</td>
|
|
851
887
|
<td style="padding:15px">Yes</td>
|
|
852
888
|
</tr>
|
|
853
889
|
<tr>
|
|
854
890
|
<td style="padding:15px">getinternetapplications(tenantNetworkId, callback)</td>
|
|
855
|
-
<td style="padding:15px">
|
|
891
|
+
<td style="padding:15px">getinternetapplications</td>
|
|
856
892
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internet-applications?{query}</td>
|
|
857
893
|
<td style="padding:15px">Yes</td>
|
|
858
894
|
</tr>
|
|
859
895
|
<tr>
|
|
860
896
|
<td style="padding:15px">createInternetApplication(tenantNetworkId, body, callback)</td>
|
|
861
|
-
<td style="padding:15px">
|
|
897
|
+
<td style="padding:15px">createInternetApplication</td>
|
|
862
898
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internet-applications?{query}</td>
|
|
863
899
|
<td style="padding:15px">Yes</td>
|
|
864
900
|
</tr>
|
|
865
901
|
<tr>
|
|
866
902
|
<td style="padding:15px">getInternetApplication(tenantNetworkId, internetapplicationId, callback)</td>
|
|
867
|
-
<td style="padding:15px">
|
|
903
|
+
<td style="padding:15px">getInternetApplication</td>
|
|
868
904
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internet-applications/{pathv2}?{query}</td>
|
|
869
905
|
<td style="padding:15px">Yes</td>
|
|
870
906
|
</tr>
|
|
871
907
|
<tr>
|
|
872
908
|
<td style="padding:15px">updateInternetApplication(tenantNetworkId, internetapplicationId, body, callback)</td>
|
|
873
|
-
<td style="padding:15px">
|
|
909
|
+
<td style="padding:15px">updateInternetApplication</td>
|
|
874
910
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internet-applications/{pathv2}?{query}</td>
|
|
875
911
|
<td style="padding:15px">Yes</td>
|
|
876
912
|
</tr>
|
|
877
913
|
<tr>
|
|
878
914
|
<td style="padding:15px">deleteInternetApplication(tenantNetworkId, internetapplicationId, callback)</td>
|
|
879
|
-
<td style="padding:15px">
|
|
915
|
+
<td style="padding:15px">deleteInternetApplication</td>
|
|
880
916
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/internet-applications/{pathv2}?{query}</td>
|
|
881
917
|
<td style="padding:15px">Yes</td>
|
|
882
918
|
</tr>
|
|
883
919
|
<tr>
|
|
884
920
|
<td style="padding:15px">getpanfwservices(tenantNetworkId, callback)</td>
|
|
885
|
-
<td style="padding:15px">
|
|
921
|
+
<td style="padding:15px">getpanfwservices</td>
|
|
886
922
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices?{query}</td>
|
|
887
923
|
<td style="padding:15px">Yes</td>
|
|
888
924
|
</tr>
|
|
889
925
|
<tr>
|
|
890
926
|
<td style="padding:15px">createPANFWService(tenantNetworkId, body, callback)</td>
|
|
891
|
-
<td style="padding:15px">
|
|
927
|
+
<td style="padding:15px">createPANFWService</td>
|
|
892
928
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices?{query}</td>
|
|
893
929
|
<td style="padding:15px">Yes</td>
|
|
894
930
|
</tr>
|
|
895
931
|
<tr>
|
|
896
932
|
<td style="padding:15px">getPANFWService(tenantNetworkId, serviceId, callback)</td>
|
|
897
|
-
<td style="padding:15px">
|
|
933
|
+
<td style="padding:15px">getPANFWService</td>
|
|
898
934
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices/{pathv2}?{query}</td>
|
|
899
935
|
<td style="padding:15px">Yes</td>
|
|
900
936
|
</tr>
|
|
901
937
|
<tr>
|
|
902
938
|
<td style="padding:15px">updatePANFWService(tenantNetworkId, serviceId, body, callback)</td>
|
|
903
|
-
<td style="padding:15px">
|
|
939
|
+
<td style="padding:15px">updatePANFWService</td>
|
|
904
940
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices/{pathv2}?{query}</td>
|
|
905
941
|
<td style="padding:15px">Yes</td>
|
|
906
942
|
</tr>
|
|
907
943
|
<tr>
|
|
908
944
|
<td style="padding:15px">deletePANFWService(tenantNetworkId, serviceId, callback)</td>
|
|
909
|
-
<td style="padding:15px">
|
|
945
|
+
<td style="padding:15px">deletePANFWService</td>
|
|
910
946
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices/{pathv2}?{query}</td>
|
|
911
947
|
<td style="padding:15px">Yes</td>
|
|
912
948
|
</tr>
|
|
913
949
|
<tr>
|
|
914
950
|
<td style="padding:15px">getPANFWServiceInstanceConfiguration(tenantNetworkId, serviceId, instanceId, callback)</td>
|
|
915
|
-
<td style="padding:15px">
|
|
951
|
+
<td style="padding:15px">getPANFWServiceInstanceConfiguration</td>
|
|
916
952
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
917
953
|
<td style="padding:15px">Yes</td>
|
|
918
954
|
</tr>
|
|
919
955
|
<tr>
|
|
920
956
|
<td style="padding:15px">getPANAutoscaleOptionsUsingGET(serviceId, tenantNetworkId, callback)</td>
|
|
921
|
-
<td style="padding:15px">
|
|
957
|
+
<td style="padding:15px">getPANAutoscaleOptionsUsingGET</td>
|
|
922
958
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices/{pathv2}/autoscaleoptions?{query}</td>
|
|
923
959
|
<td style="padding:15px">Yes</td>
|
|
924
960
|
</tr>
|
|
925
961
|
<tr>
|
|
926
962
|
<td style="padding:15px">updatePANAutoscaleOptionsUsingPUT(serviceId, tenantNetworkId, body, callback)</td>
|
|
927
|
-
<td style="padding:15px">
|
|
963
|
+
<td style="padding:15px">updatePANAutoscaleOptionsUsingPUT</td>
|
|
928
964
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices/{pathv2}/autoscaleoptions?{query}</td>
|
|
929
965
|
<td style="padding:15px">Yes</td>
|
|
930
966
|
</tr>
|
|
931
967
|
<tr>
|
|
932
968
|
<td style="padding:15px">deletePANAutoscaleOptionsUsingDELETE(serviceId, tenantNetworkId, callback)</td>
|
|
933
|
-
<td style="padding:15px">
|
|
969
|
+
<td style="padding:15px">deletePANAutoscaleOptionsUsingDELETE</td>
|
|
934
970
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/panfwservices/{pathv2}/autoscaleoptions?{query}</td>
|
|
935
971
|
<td style="padding:15px">Yes</td>
|
|
936
972
|
</tr>
|
|
937
973
|
<tr>
|
|
938
974
|
<td style="padding:15px">getservices(tenantNetworkId, callback)</td>
|
|
939
|
-
<td style="padding:15px">
|
|
975
|
+
<td style="padding:15px">getservices</td>
|
|
940
976
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/services?{query}</td>
|
|
941
977
|
<td style="padding:15px">Yes</td>
|
|
942
978
|
</tr>
|
|
943
979
|
<tr>
|
|
944
980
|
<td style="padding:15px">getService(tenantNetworkId, serviceId, callback)</td>
|
|
945
|
-
<td style="padding:15px">
|
|
981
|
+
<td style="padding:15px">getService</td>
|
|
946
982
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/services/{pathv2}?{query}</td>
|
|
947
983
|
<td style="padding:15px">Yes</td>
|
|
948
984
|
</tr>
|
|
@@ -954,19 +990,19 @@ Specific adapter calls are built based on the API of the Alkira. The Adapter Bui
|
|
|
954
990
|
</tr>
|
|
955
991
|
<tr>
|
|
956
992
|
<td style="padding:15px">getTenantResourceLimits(callback)</td>
|
|
957
|
-
<td style="padding:15px">
|
|
993
|
+
<td style="padding:15px">getTenantResourceLimits</td>
|
|
958
994
|
<td style="padding:15px">{base_path}/{version}/resourcelimits?{query}</td>
|
|
959
995
|
<td style="padding:15px">Yes</td>
|
|
960
996
|
</tr>
|
|
961
997
|
<tr>
|
|
962
998
|
<td style="padding:15px">getResourceUsage(category = UNKNOWN, type = UNKNOWN, scope = UNKNOWN, callback)</td>
|
|
963
|
-
<td style="padding:15px">
|
|
999
|
+
<td style="padding:15px">getResourceUsage</td>
|
|
964
1000
|
<td style="padding:15px">{base_path}/{version}/resourceusage?{query}</td>
|
|
965
1001
|
<td style="padding:15px">Yes</td>
|
|
966
1002
|
</tr>
|
|
967
1003
|
<tr>
|
|
968
1004
|
<td style="padding:15px">getCXPs(name, state = AVAILABLE, callback)</td>
|
|
969
|
-
<td style="padding:15px">
|
|
1005
|
+
<td style="padding:15px">getCXPs</td>
|
|
970
1006
|
<td style="padding:15px">{base_path}/{version}/inventory/cxps?{query}</td>
|
|
971
1007
|
<td style="padding:15px">Yes</td>
|
|
972
1008
|
</tr>
|
|
@@ -978,259 +1014,259 @@ Specific adapter calls are built based on the API of the Alkira. The Adapter Bui
|
|
|
978
1014
|
</tr>
|
|
979
1015
|
<tr>
|
|
980
1016
|
<td style="padding:15px">getinvoicesummaries(fromYearMonth, page, size, sort, toYearMonth, callback)</td>
|
|
981
|
-
<td style="padding:15px">
|
|
1017
|
+
<td style="padding:15px">getinvoicesummaries</td>
|
|
982
1018
|
<td style="padding:15px">{base_path}/{version}/invoice-summaries?{query}</td>
|
|
983
1019
|
<td style="padding:15px">Yes</td>
|
|
984
1020
|
</tr>
|
|
985
1021
|
<tr>
|
|
986
1022
|
<td style="padding:15px">getInvoiceSummary(invoiceId, callback)</td>
|
|
987
|
-
<td style="padding:15px">
|
|
1023
|
+
<td style="padding:15px">getInvoiceSummary</td>
|
|
988
1024
|
<td style="padding:15px">{base_path}/{version}/invoice-summaries/{pathv1}?{query}</td>
|
|
989
1025
|
<td style="padding:15px">Yes</td>
|
|
990
1026
|
</tr>
|
|
991
1027
|
<tr>
|
|
992
1028
|
<td style="padding:15px">pingFromConnector(tenantNetworkId, connectorId, body, callback)</td>
|
|
993
|
-
<td style="padding:15px">
|
|
1029
|
+
<td style="padding:15px">pingFromConnector</td>
|
|
994
1030
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/troubleshooting/ping?{query}</td>
|
|
995
1031
|
<td style="padding:15px">Yes</td>
|
|
996
1032
|
</tr>
|
|
997
1033
|
<tr>
|
|
998
1034
|
<td style="padding:15px">pingFromConnectorInstance(tenantNetworkId, connectorId, instanceId, body, callback)</td>
|
|
999
|
-
<td style="padding:15px">
|
|
1035
|
+
<td style="padding:15px">pingFromConnectorInstance</td>
|
|
1000
1036
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/instances/{pathv3}/troubleshooting/ping?{query}</td>
|
|
1001
1037
|
<td style="padding:15px">Yes</td>
|
|
1002
1038
|
</tr>
|
|
1003
1039
|
<tr>
|
|
1004
1040
|
<td style="padding:15px">getJobs(status, type, search, sortBy, offset, limit, startTime, endTime, tags, callback)</td>
|
|
1005
|
-
<td style="padding:15px">
|
|
1041
|
+
<td style="padding:15px">getJobs</td>
|
|
1006
1042
|
<td style="padding:15px">{base_path}/{version}/jobs?{query}</td>
|
|
1007
1043
|
<td style="padding:15px">Yes</td>
|
|
1008
1044
|
</tr>
|
|
1009
1045
|
<tr>
|
|
1010
1046
|
<td style="padding:15px">getJob(jobId, callback)</td>
|
|
1011
|
-
<td style="padding:15px">
|
|
1047
|
+
<td style="padding:15px">getJob</td>
|
|
1012
1048
|
<td style="padding:15px">{base_path}/{version}/jobs/{pathv1}?{query}</td>
|
|
1013
1049
|
<td style="padding:15px">Yes</td>
|
|
1014
1050
|
</tr>
|
|
1015
1051
|
<tr>
|
|
1016
1052
|
<td style="padding:15px">getAlerts(status, priority, theTypeOfTheAlertsToFilterOn, search, sortBy, offset, limit, startTime, endTime, tags, markedRead, callback)</td>
|
|
1017
|
-
<td style="padding:15px">
|
|
1053
|
+
<td style="padding:15px">getAlerts</td>
|
|
1018
1054
|
<td style="padding:15px">{base_path}/{version}/alerts?{query}</td>
|
|
1019
1055
|
<td style="padding:15px">Yes</td>
|
|
1020
1056
|
</tr>
|
|
1021
1057
|
<tr>
|
|
1022
1058
|
<td style="padding:15px">getAlertTags(limit, callback)</td>
|
|
1023
|
-
<td style="padding:15px">
|
|
1059
|
+
<td style="padding:15px">getAlertTags</td>
|
|
1024
1060
|
<td style="padding:15px">{base_path}/{version}/alert-tags?{query}</td>
|
|
1025
1061
|
<td style="padding:15px">Yes</td>
|
|
1026
1062
|
</tr>
|
|
1027
1063
|
<tr>
|
|
1028
1064
|
<td style="padding:15px">resolved(id, callback)</td>
|
|
1029
|
-
<td style="padding:15px">
|
|
1065
|
+
<td style="padding:15px">resolved</td>
|
|
1030
1066
|
<td style="padding:15px">{base_path}/{version}/alerts/{pathv1}?{query}</td>
|
|
1031
1067
|
<td style="padding:15px">Yes</td>
|
|
1032
1068
|
</tr>
|
|
1033
1069
|
<tr>
|
|
1034
1070
|
<td style="padding:15px">traceRouteFromConnector(tenantNetworkId, connectorId, body, callback)</td>
|
|
1035
|
-
<td style="padding:15px">
|
|
1071
|
+
<td style="padding:15px">traceRouteFromConnector</td>
|
|
1036
1072
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/troubleshooting/traceroute?{query}</td>
|
|
1037
1073
|
<td style="padding:15px">Yes</td>
|
|
1038
1074
|
</tr>
|
|
1039
1075
|
<tr>
|
|
1040
1076
|
<td style="padding:15px">traceRouteFromConnectorInstance(tenantNetworkId, connectorId, instanceId, body, callback)</td>
|
|
1041
|
-
<td style="padding:15px">
|
|
1077
|
+
<td style="padding:15px">traceRouteFromConnectorInstance</td>
|
|
1042
1078
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/instances/{pathv3}/troubleshooting/traceroute?{query}</td>
|
|
1043
1079
|
<td style="padding:15px">Yes</td>
|
|
1044
1080
|
</tr>
|
|
1045
1081
|
<tr>
|
|
1046
1082
|
<td style="padding:15px">logsFromConnector(tenantNetworkId, connectorId, body, callback)</td>
|
|
1047
|
-
<td style="padding:15px">
|
|
1083
|
+
<td style="padding:15px">logsFromConnector</td>
|
|
1048
1084
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/troubleshooting/logs?{query}</td>
|
|
1049
1085
|
<td style="padding:15px">Yes</td>
|
|
1050
1086
|
</tr>
|
|
1051
1087
|
<tr>
|
|
1052
1088
|
<td style="padding:15px">logsFromConnectorInstance(tenantNetworkId, connectorId, instanceId, body, callback)</td>
|
|
1053
|
-
<td style="padding:15px">
|
|
1089
|
+
<td style="padding:15px">logsFromConnectorInstance</td>
|
|
1054
1090
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/instances/{pathv3}/troubleshooting/logs?{query}</td>
|
|
1055
1091
|
<td style="padding:15px">Yes</td>
|
|
1056
1092
|
</tr>
|
|
1057
1093
|
<tr>
|
|
1058
1094
|
<td style="padding:15px">getMessages(requestId, fromOffset, callback)</td>
|
|
1059
|
-
<td style="padding:15px">
|
|
1095
|
+
<td style="padding:15px">getMessages</td>
|
|
1060
1096
|
<td style="padding:15px">{base_path}/{version}/messages?{query}</td>
|
|
1061
1097
|
<td style="padding:15px">Yes</td>
|
|
1062
1098
|
</tr>
|
|
1063
1099
|
<tr>
|
|
1064
1100
|
<td style="padding:15px">getSessionCountUsingGET(tenantNetworkId, cxp, segmentName, startTime, endTime, appName, maxItems, callback)</td>
|
|
1065
|
-
<td style="padding:15px">
|
|
1101
|
+
<td style="padding:15px">getSessionCountUsingGET</td>
|
|
1066
1102
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/application-sessions/{pathv2}?{query}</td>
|
|
1067
1103
|
<td style="padding:15px">Yes</td>
|
|
1068
1104
|
</tr>
|
|
1069
1105
|
<tr>
|
|
1070
1106
|
<td style="padding:15px">getAppNameTimeSeriesUsingGET(tenantNetworkId, cxp, segmentName, startTime, endTime, appName, maxItems, callback)</td>
|
|
1071
|
-
<td style="padding:15px">
|
|
1107
|
+
<td style="padding:15px">getAppNameTimeSeriesUsingGET</td>
|
|
1072
1108
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/applications?{query}</td>
|
|
1073
1109
|
<td style="padding:15px">Yes</td>
|
|
1074
1110
|
</tr>
|
|
1075
1111
|
<tr>
|
|
1076
1112
|
<td style="padding:15px">getRuleNameTimeSeriesUsingGET(tenantNetworkId, cxp, segmentName, startTime, endTime, ruleName, callback)</td>
|
|
1077
|
-
<td style="padding:15px">
|
|
1113
|
+
<td style="padding:15px">getRuleNameTimeSeriesUsingGET</td>
|
|
1078
1114
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/policyhits?{query}</td>
|
|
1079
1115
|
<td style="padding:15px">Yes</td>
|
|
1080
1116
|
</tr>
|
|
1081
1117
|
<tr>
|
|
1082
1118
|
<td style="padding:15px">getTopApplicationsUsingGET(tenantNetworkId, cxp, segmentName, startTime, endTime, callback)</td>
|
|
1083
|
-
<td style="padding:15px">
|
|
1119
|
+
<td style="padding:15px">getTopApplicationsUsingGET</td>
|
|
1084
1120
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/topapplications?{query}</td>
|
|
1085
1121
|
<td style="padding:15px">Yes</td>
|
|
1086
1122
|
</tr>
|
|
1087
1123
|
<tr>
|
|
1088
1124
|
<td style="padding:15px">getTopApplicationsbyConnectorUsingGET(tenantNetworkId, segmentName, startTime, endTime, connectorId, callback)</td>
|
|
1089
|
-
<td style="padding:15px">
|
|
1125
|
+
<td style="padding:15px">getTopApplicationsbyConnectorUsingGET</td>
|
|
1090
1126
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/topapplications/{pathv2}?{query}</td>
|
|
1091
1127
|
<td style="padding:15px">Yes</td>
|
|
1092
1128
|
</tr>
|
|
1093
1129
|
<tr>
|
|
1094
1130
|
<td style="padding:15px">getTopPolicyHitsUsingGET(tenantNetworkId, cxp, segmentName, startTime, endTime, callback)</td>
|
|
1095
|
-
<td style="padding:15px">
|
|
1131
|
+
<td style="padding:15px">getTopPolicyHitsUsingGET</td>
|
|
1096
1132
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/toppolicyhits?{query}</td>
|
|
1097
1133
|
<td style="padding:15px">Yes</td>
|
|
1098
1134
|
</tr>
|
|
1099
1135
|
<tr>
|
|
1100
1136
|
<td style="padding:15px">getTopPolicyHitsbyConnectorUsingGET(tenantNetworkId, segmentName, startTime, endTime, connectorId, callback)</td>
|
|
1101
|
-
<td style="padding:15px">
|
|
1137
|
+
<td style="padding:15px">getTopPolicyHitsbyConnectorUsingGET</td>
|
|
1102
1138
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/toppolicyhits/{pathv2}?{query}</td>
|
|
1103
1139
|
<td style="padding:15px">Yes</td>
|
|
1104
1140
|
</tr>
|
|
1105
1141
|
<tr>
|
|
1106
1142
|
<td style="padding:15px">getRemoteAccessConnectors(tenantNetworkId, callback)</td>
|
|
1107
|
-
<td style="padding:15px">
|
|
1143
|
+
<td style="padding:15px">getRemoteAccessConnectors</td>
|
|
1108
1144
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connectors?{query}</td>
|
|
1109
1145
|
<td style="padding:15px">Yes</td>
|
|
1110
1146
|
</tr>
|
|
1111
1147
|
<tr>
|
|
1112
1148
|
<td style="padding:15px">getRemoteAccesssConnector(connectorId, tenantNetworkId, callback)</td>
|
|
1113
|
-
<td style="padding:15px">
|
|
1149
|
+
<td style="padding:15px">getRemoteAccesssConnector</td>
|
|
1114
1150
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connectors/{pathv2}?{query}</td>
|
|
1115
1151
|
<td style="padding:15px">Yes</td>
|
|
1116
1152
|
</tr>
|
|
1117
1153
|
<tr>
|
|
1118
1154
|
<td style="padding:15px">getRemoteAccesssConnectorConfiguration(connectorId, tenantNetworkId, cxp, userGroup, callback)</td>
|
|
1119
|
-
<td style="padding:15px">
|
|
1155
|
+
<td style="padding:15px">getRemoteAccesssConnectorConfiguration</td>
|
|
1120
1156
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connectors/{pathv2}/configuration?{query}</td>
|
|
1121
1157
|
<td style="padding:15px">Yes</td>
|
|
1122
1158
|
</tr>
|
|
1123
1159
|
<tr>
|
|
1124
1160
|
<td style="padding:15px">deleteAllRemoteAccessSessions(connectorTemplateId, cxpName, callback)</td>
|
|
1125
|
-
<td style="padding:15px">
|
|
1161
|
+
<td style="padding:15px">deleteAllRemoteAccessSessions</td>
|
|
1126
1162
|
<td style="padding:15px">{base_path}/{version}/alkira-remote-access-connector-templates/{pathv1}/sessions?{query}</td>
|
|
1127
1163
|
<td style="padding:15px">Yes</td>
|
|
1128
1164
|
</tr>
|
|
1129
1165
|
<tr>
|
|
1130
1166
|
<td style="padding:15px">deleteRemoteAccessSession(connectorTemplateId, sessionId, callback)</td>
|
|
1131
|
-
<td style="padding:15px">
|
|
1167
|
+
<td style="padding:15px">deleteRemoteAccessSession</td>
|
|
1132
1168
|
<td style="padding:15px">{base_path}/{version}/alkira-remote-access-connector-templates/{pathv1}/sessions/{pathv2}?{query}</td>
|
|
1133
1169
|
<td style="padding:15px">Yes</td>
|
|
1134
1170
|
</tr>
|
|
1135
1171
|
<tr>
|
|
1136
1172
|
<td style="padding:15px">getConnectorTemplates(tenantNetworkId, callback)</td>
|
|
1137
|
-
<td style="padding:15px">
|
|
1173
|
+
<td style="padding:15px">getConnectorTemplates</td>
|
|
1138
1174
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connector-templates?{query}</td>
|
|
1139
1175
|
<td style="padding:15px">Yes</td>
|
|
1140
1176
|
</tr>
|
|
1141
1177
|
<tr>
|
|
1142
1178
|
<td style="padding:15px">createConnectorTemplate(tenantNetworkId, body, callback)</td>
|
|
1143
|
-
<td style="padding:15px">
|
|
1179
|
+
<td style="padding:15px">createConnectorTemplate</td>
|
|
1144
1180
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connector-templates?{query}</td>
|
|
1145
1181
|
<td style="padding:15px">Yes</td>
|
|
1146
1182
|
</tr>
|
|
1147
1183
|
<tr>
|
|
1148
1184
|
<td style="padding:15px">getConnectorTemplate(connectorTemplateId, tenantNetworkId, callback)</td>
|
|
1149
|
-
<td style="padding:15px">
|
|
1185
|
+
<td style="padding:15px">getConnectorTemplate</td>
|
|
1150
1186
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connector-templates/{pathv2}?{query}</td>
|
|
1151
1187
|
<td style="padding:15px">Yes</td>
|
|
1152
1188
|
</tr>
|
|
1153
1189
|
<tr>
|
|
1154
1190
|
<td style="padding:15px">updateConnectorTemplate(connectorTemplateId, tenantNetworkId, body, callback)</td>
|
|
1155
|
-
<td style="padding:15px">
|
|
1191
|
+
<td style="padding:15px">updateConnectorTemplate</td>
|
|
1156
1192
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connector-templates/{pathv2}?{query}</td>
|
|
1157
1193
|
<td style="padding:15px">Yes</td>
|
|
1158
1194
|
</tr>
|
|
1159
1195
|
<tr>
|
|
1160
1196
|
<td style="padding:15px">deleteConnectorTemplate(connectorTemplateId, tenantNetworkId, callback)</td>
|
|
1161
|
-
<td style="padding:15px">
|
|
1197
|
+
<td style="padding:15px">deleteConnectorTemplate</td>
|
|
1162
1198
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connector-templates/{pathv2}?{query}</td>
|
|
1163
1199
|
<td style="padding:15px">Yes</td>
|
|
1164
1200
|
</tr>
|
|
1165
1201
|
<tr>
|
|
1166
1202
|
<td style="padding:15px">getTenant(tenantId, id, callback)</td>
|
|
1167
|
-
<td style="padding:15px">
|
|
1203
|
+
<td style="padding:15px">getTenant</td>
|
|
1168
1204
|
<td style="padding:15px">{base_path}/{version}/tenant/{pathv1}?{query}</td>
|
|
1169
1205
|
<td style="padding:15px">Yes</td>
|
|
1170
1206
|
</tr>
|
|
1171
1207
|
<tr>
|
|
1172
1208
|
<td style="padding:15px">updateTenant(tenantId, id, body, callback)</td>
|
|
1173
|
-
<td style="padding:15px">
|
|
1209
|
+
<td style="padding:15px">updateTenant</td>
|
|
1174
1210
|
<td style="padding:15px">{base_path}/{version}/tenant/{pathv1}?{query}</td>
|
|
1175
1211
|
<td style="padding:15px">Yes</td>
|
|
1176
1212
|
</tr>
|
|
1177
1213
|
<tr>
|
|
1178
1214
|
<td style="padding:15px">getTenantPreferences(tenantId, callback)</td>
|
|
1179
|
-
<td style="padding:15px">
|
|
1215
|
+
<td style="padding:15px">getTenantPreferences</td>
|
|
1180
1216
|
<td style="padding:15px">{base_path}/{version}/tenants/{pathv1}/preferences?{query}</td>
|
|
1181
1217
|
<td style="padding:15px">Yes</td>
|
|
1182
1218
|
</tr>
|
|
1183
1219
|
<tr>
|
|
1184
1220
|
<td style="padding:15px">updateTenantPreferences(tenantId, body, callback)</td>
|
|
1185
|
-
<td style="padding:15px">
|
|
1221
|
+
<td style="padding:15px">updateTenantPreferences</td>
|
|
1186
1222
|
<td style="padding:15px">{base_path}/{version}/tenants/{pathv1}/preferences?{query}</td>
|
|
1187
1223
|
<td style="padding:15px">Yes</td>
|
|
1188
1224
|
</tr>
|
|
1189
1225
|
<tr>
|
|
1190
1226
|
<td style="padding:15px">getIntegrationsByTypeAndSubType(id, subType, type, callback)</td>
|
|
1191
|
-
<td style="padding:15px">
|
|
1227
|
+
<td style="padding:15px">getIntegrationsByTypeAndSubType</td>
|
|
1192
1228
|
<td style="padding:15px">{base_path}/{version}/tenant/{pathv1}/integration?{query}</td>
|
|
1193
1229
|
<td style="padding:15px">Yes</td>
|
|
1194
1230
|
</tr>
|
|
1195
1231
|
<tr>
|
|
1196
1232
|
<td style="padding:15px">getIntegrations(id, type, callback)</td>
|
|
1197
|
-
<td style="padding:15px">
|
|
1233
|
+
<td style="padding:15px">getIntegrations</td>
|
|
1198
1234
|
<td style="padding:15px">{base_path}/{version}/tenants/{pathv1}/integrations?{query}</td>
|
|
1199
1235
|
<td style="padding:15px">Yes</td>
|
|
1200
1236
|
</tr>
|
|
1201
1237
|
<tr>
|
|
1202
1238
|
<td style="padding:15px">createIntegration(id, body, callback)</td>
|
|
1203
|
-
<td style="padding:15px">
|
|
1239
|
+
<td style="padding:15px">createIntegration</td>
|
|
1204
1240
|
<td style="padding:15px">{base_path}/{version}/tenants/{pathv1}/integrations?{query}</td>
|
|
1205
1241
|
<td style="padding:15px">Yes</td>
|
|
1206
1242
|
</tr>
|
|
1207
1243
|
<tr>
|
|
1208
1244
|
<td style="padding:15px">deleteIntegrations(id, callback)</td>
|
|
1209
|
-
<td style="padding:15px">
|
|
1245
|
+
<td style="padding:15px">deleteIntegrations</td>
|
|
1210
1246
|
<td style="padding:15px">{base_path}/{version}/tenants/{pathv1}/integrations?{query}</td>
|
|
1211
1247
|
<td style="padding:15px">Yes</td>
|
|
1212
1248
|
</tr>
|
|
1213
1249
|
<tr>
|
|
1214
1250
|
<td style="padding:15px">updateIntegration(id, integrationId, body, callback)</td>
|
|
1215
|
-
<td style="padding:15px">
|
|
1251
|
+
<td style="padding:15px">updateIntegration</td>
|
|
1216
1252
|
<td style="padding:15px">{base_path}/{version}/tenants/{pathv1}/integrations/{pathv2}?{query}</td>
|
|
1217
1253
|
<td style="padding:15px">Yes</td>
|
|
1218
1254
|
</tr>
|
|
1219
1255
|
<tr>
|
|
1220
1256
|
<td style="padding:15px">deleteIntegration(id, integrationId, callback)</td>
|
|
1221
|
-
<td style="padding:15px">
|
|
1257
|
+
<td style="padding:15px">deleteIntegration</td>
|
|
1222
1258
|
<td style="padding:15px">{base_path}/{version}/tenants/{pathv1}/integrations/{pathv2}?{query}</td>
|
|
1223
1259
|
<td style="padding:15px">Yes</td>
|
|
1224
1260
|
</tr>
|
|
1225
1261
|
<tr>
|
|
1226
1262
|
<td style="padding:15px">getCloudProviderAccounts(callback)</td>
|
|
1227
|
-
<td style="padding:15px">
|
|
1263
|
+
<td style="padding:15px">getCloudProviderAccounts</td>
|
|
1228
1264
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-accounts?{query}</td>
|
|
1229
1265
|
<td style="padding:15px">Yes</td>
|
|
1230
1266
|
</tr>
|
|
1231
1267
|
<tr>
|
|
1232
1268
|
<td style="padding:15px">createCloudProviderAccount(body, callback)</td>
|
|
1233
|
-
<td style="padding:15px">
|
|
1269
|
+
<td style="padding:15px">createCloudProviderAccount</td>
|
|
1234
1270
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-accounts?{query}</td>
|
|
1235
1271
|
<td style="padding:15px">Yes</td>
|
|
1236
1272
|
</tr>
|
|
@@ -1242,69 +1278,61 @@ Specific adapter calls are built based on the API of the Alkira. The Adapter Bui
|
|
|
1242
1278
|
</tr>
|
|
1243
1279
|
<tr>
|
|
1244
1280
|
<td style="padding:15px">getCloudProviderAccount(cloudProviderAccountId, callback)</td>
|
|
1245
|
-
<td style="padding:15px">
|
|
1281
|
+
<td style="padding:15px">getCloudProviderAccount</td>
|
|
1246
1282
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-accounts/{pathv1}?{query}</td>
|
|
1247
1283
|
<td style="padding:15px">Yes</td>
|
|
1248
1284
|
</tr>
|
|
1249
1285
|
<tr>
|
|
1250
1286
|
<td style="padding:15px">updateCloudProviderAccount(cloudProviderAccountId, body, callback)</td>
|
|
1251
|
-
<td style="padding:15px">
|
|
1287
|
+
<td style="padding:15px">updateCloudProviderAccount</td>
|
|
1252
1288
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-accounts/{pathv1}?{query}</td>
|
|
1253
1289
|
<td style="padding:15px">Yes</td>
|
|
1254
1290
|
</tr>
|
|
1255
1291
|
<tr>
|
|
1256
1292
|
<td style="padding:15px">deleteCloudProviderAccount(cloudProviderAccountId, callback)</td>
|
|
1257
|
-
<td style="padding:15px">
|
|
1293
|
+
<td style="padding:15px">deleteCloudProviderAccount</td>
|
|
1258
1294
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-accounts/{pathv1}?{query}</td>
|
|
1259
1295
|
<td style="padding:15px">Yes</td>
|
|
1260
1296
|
</tr>
|
|
1261
1297
|
<tr>
|
|
1262
1298
|
<td style="padding:15px">getCloudProviderObjects(offset, limit, cloudProvider = AWS, cloudProviderObjectNativeId, cloudProviderAccountId, cloudProviderObjectType, search, sortBy, callback)</td>
|
|
1263
|
-
<td style="padding:15px">
|
|
1299
|
+
<td style="padding:15px">getCloudProviderObjects</td>
|
|
1264
1300
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-objects?{query}</td>
|
|
1265
1301
|
<td style="padding:15px">Yes</td>
|
|
1266
1302
|
</tr>
|
|
1267
1303
|
<tr>
|
|
1268
1304
|
<td style="padding:15px">getCloudProviderObject(cloudProviderObjectId, callback)</td>
|
|
1269
|
-
<td style="padding:15px">
|
|
1305
|
+
<td style="padding:15px">getCloudProviderObject</td>
|
|
1270
1306
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-objects/{pathv1}?{query}</td>
|
|
1271
1307
|
<td style="padding:15px">Yes</td>
|
|
1272
1308
|
</tr>
|
|
1273
1309
|
<tr>
|
|
1274
1310
|
<td style="padding:15px">getCloudProviderObjectTags(cloudProvider, cloudProviderObjectType, callback)</td>
|
|
1275
|
-
<td style="padding:15px">
|
|
1276
|
-
|
|
1277
|
-
Tags are used to improve the search experience of cloud provider objects. Each tag is a key/value pair where the key is the `name` of the search key and the `value` is the list of possible search items. Each `CloudProviderObjectTag` can be used to filter Cloud provider search results.
|
|
1278
|
-
|
|
1279
|
-
### Example:
|
|
1280
|
-
Get the list of all tags for cloudProvider `AWS` and cloudProviderObjectType `VPC`
|
|
1281
|
-
#### Tags Request
|
|
1282
|
-
```
|
|
1283
|
-
api/cloud-provider-objects/tags?cloud...(description truncated)</td>
|
|
1311
|
+
<td style="padding:15px">getCloudProviderObjectTags</td>
|
|
1284
1312
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-objects/tags?{query}</td>
|
|
1285
1313
|
<td style="padding:15px">Yes</td>
|
|
1286
1314
|
</tr>
|
|
1287
1315
|
<tr>
|
|
1288
1316
|
<td style="padding:15px">getCloudProviderObjectCounts(callback)</td>
|
|
1289
|
-
<td style="padding:15px">
|
|
1317
|
+
<td style="padding:15px">getCloudProviderObjectCounts</td>
|
|
1290
1318
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-object-count?{query}</td>
|
|
1291
1319
|
<td style="padding:15px">Yes</td>
|
|
1292
1320
|
</tr>
|
|
1293
1321
|
<tr>
|
|
1294
1322
|
<td style="padding:15px">getCloudProviderObjectCountByTimes(callback)</td>
|
|
1295
|
-
<td style="padding:15px">
|
|
1323
|
+
<td style="padding:15px">getCloudProviderObjectCountByTimes</td>
|
|
1296
1324
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-object-count-by-time?{query}</td>
|
|
1297
1325
|
<td style="padding:15px">Yes</td>
|
|
1298
1326
|
</tr>
|
|
1299
1327
|
<tr>
|
|
1300
1328
|
<td style="padding:15px">getCloudProviderObjectSyncRequests(offset, limit, paginated, callback)</td>
|
|
1301
|
-
<td style="padding:15px">
|
|
1329
|
+
<td style="padding:15px">getCloudProviderObjectSyncRequests</td>
|
|
1302
1330
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-object-sync-requests?{query}</td>
|
|
1303
1331
|
<td style="padding:15px">Yes</td>
|
|
1304
1332
|
</tr>
|
|
1305
1333
|
<tr>
|
|
1306
1334
|
<td style="padding:15px">createCloudProviderObjectSyncRequest(body, callback)</td>
|
|
1307
|
-
<td style="padding:15px">
|
|
1335
|
+
<td style="padding:15px">createCloudProviderObjectSyncRequest</td>
|
|
1308
1336
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-object-sync-requests?{query}</td>
|
|
1309
1337
|
<td style="padding:15px">Yes</td>
|
|
1310
1338
|
</tr>
|
|
@@ -1316,13 +1344,13 @@ api/cloud-provider-objects/tags?cloud...(description truncated)</td>
|
|
|
1316
1344
|
</tr>
|
|
1317
1345
|
<tr>
|
|
1318
1346
|
<td style="padding:15px">getCloudProviderObjectSyncRequest(cloudProviderObjectSyncRequestId, callback)</td>
|
|
1319
|
-
<td style="padding:15px">
|
|
1347
|
+
<td style="padding:15px">getCloudProviderObjectSyncRequest</td>
|
|
1320
1348
|
<td style="padding:15px">{base_path}/{version}/cloud-provider-objects/{pathv1}?{query}</td>
|
|
1321
1349
|
<td style="padding:15px">Yes</td>
|
|
1322
1350
|
</tr>
|
|
1323
1351
|
<tr>
|
|
1324
1352
|
<td style="padding:15px">getCloudInsights(offset, limit, cloudProvider = AWS, type = AWS_EIP_UNASSOCIATED, types, category = SECURITY, severity = HIGH, cloudProviderAccountId, expanded, callback)</td>
|
|
1325
|
-
<td style="padding:15px">
|
|
1353
|
+
<td style="padding:15px">getCloudInsights</td>
|
|
1326
1354
|
<td style="padding:15px">{base_path}/{version}/cloud-insights?{query}</td>
|
|
1327
1355
|
<td style="padding:15px">Yes</td>
|
|
1328
1356
|
</tr>
|
|
@@ -1334,31 +1362,31 @@ api/cloud-provider-objects/tags?cloud...(description truncated)</td>
|
|
|
1334
1362
|
</tr>
|
|
1335
1363
|
<tr>
|
|
1336
1364
|
<td style="padding:15px">getCloudInsight(cloudInsightId, callback)</td>
|
|
1337
|
-
<td style="padding:15px">
|
|
1365
|
+
<td style="padding:15px">getCloudInsight</td>
|
|
1338
1366
|
<td style="padding:15px">{base_path}/{version}/cloud-insights/{pathv1}?{query}</td>
|
|
1339
1367
|
<td style="padding:15px">Yes</td>
|
|
1340
1368
|
</tr>
|
|
1341
1369
|
<tr>
|
|
1342
1370
|
<td style="padding:15px">updateCloudInsight(cloudInsightId, body, callback)</td>
|
|
1343
|
-
<td style="padding:15px">
|
|
1371
|
+
<td style="padding:15px">updateCloudInsight</td>
|
|
1344
1372
|
<td style="padding:15px">{base_path}/{version}/cloud-insights/{pathv1}?{query}</td>
|
|
1345
1373
|
<td style="padding:15px">Yes</td>
|
|
1346
1374
|
</tr>
|
|
1347
1375
|
<tr>
|
|
1348
1376
|
<td style="padding:15px">getCloudInsightCategorySummaries(cloudProvider = AWS, cloudProviderAccountId, callback)</td>
|
|
1349
|
-
<td style="padding:15px">
|
|
1377
|
+
<td style="padding:15px">getCloudInsightCategorySummaries</td>
|
|
1350
1378
|
<td style="padding:15px">{base_path}/{version}/cloud-insights-summary?{query}</td>
|
|
1351
1379
|
<td style="padding:15px">Yes</td>
|
|
1352
1380
|
</tr>
|
|
1353
1381
|
<tr>
|
|
1354
1382
|
<td style="padding:15px">getCloudInsightRefreshRequests(offset, limit, state = PENDING, callback)</td>
|
|
1355
|
-
<td style="padding:15px">
|
|
1383
|
+
<td style="padding:15px">getCloudInsightRefreshRequests</td>
|
|
1356
1384
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-refresh-requests?{query}</td>
|
|
1357
1385
|
<td style="padding:15px">Yes</td>
|
|
1358
1386
|
</tr>
|
|
1359
1387
|
<tr>
|
|
1360
1388
|
<td style="padding:15px">createCloudInsightRefreshRequest(body, callback)</td>
|
|
1361
|
-
<td style="padding:15px">
|
|
1389
|
+
<td style="padding:15px">createCloudInsightRefreshRequest</td>
|
|
1362
1390
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-refresh-requests?{query}</td>
|
|
1363
1391
|
<td style="padding:15px">Yes</td>
|
|
1364
1392
|
</tr>
|
|
@@ -1370,43 +1398,43 @@ api/cloud-provider-objects/tags?cloud...(description truncated)</td>
|
|
|
1370
1398
|
</tr>
|
|
1371
1399
|
<tr>
|
|
1372
1400
|
<td style="padding:15px">getCloudInsightRefreshRequest(cloudInsightRefreshRequestId, callback)</td>
|
|
1373
|
-
<td style="padding:15px">
|
|
1401
|
+
<td style="padding:15px">getCloudInsightRefreshRequest</td>
|
|
1374
1402
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-refresh-requests/{pathv1}?{query}</td>
|
|
1375
1403
|
<td style="padding:15px">Yes</td>
|
|
1376
1404
|
</tr>
|
|
1377
1405
|
<tr>
|
|
1378
1406
|
<td style="padding:15px">getCloudInsightDefinitions(offset, limit, cloudProvider = AWS, type = AWS_EIP_UNASSOCIATED, category = SECURITY, severity = HIGH, callback)</td>
|
|
1379
|
-
<td style="padding:15px">
|
|
1407
|
+
<td style="padding:15px">getCloudInsightDefinitions</td>
|
|
1380
1408
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-definitions?{query}</td>
|
|
1381
1409
|
<td style="padding:15px">Yes</td>
|
|
1382
1410
|
</tr>
|
|
1383
1411
|
<tr>
|
|
1384
1412
|
<td style="padding:15px">getCloudInsightDefinition(cloudInsightDefinitionId, callback)</td>
|
|
1385
|
-
<td style="padding:15px">
|
|
1413
|
+
<td style="padding:15px">getCloudInsightDefinition</td>
|
|
1386
1414
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-definitions/{pathv1}?{query}</td>
|
|
1387
1415
|
<td style="padding:15px">Yes</td>
|
|
1388
1416
|
</tr>
|
|
1389
1417
|
<tr>
|
|
1390
1418
|
<td style="padding:15px">updateCloudInsightDefinition(cloudInsightDefinitionId, body, callback)</td>
|
|
1391
|
-
<td style="padding:15px">
|
|
1419
|
+
<td style="padding:15px">updateCloudInsightDefinition</td>
|
|
1392
1420
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-definitions/{pathv1}?{query}</td>
|
|
1393
1421
|
<td style="padding:15px">Yes</td>
|
|
1394
1422
|
</tr>
|
|
1395
1423
|
<tr>
|
|
1396
1424
|
<td style="padding:15px">getCloudInsightDefinitionSummaries(offset, limit, cloudProvider = AWS, type = AWS_EIP_UNASSOCIATED, category = SECURITY, severity = HIGH, callback)</td>
|
|
1397
|
-
<td style="padding:15px">
|
|
1425
|
+
<td style="padding:15px">getCloudInsightDefinitionSummaries</td>
|
|
1398
1426
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-definitions-summary?{query}</td>
|
|
1399
1427
|
<td style="padding:15px">Yes</td>
|
|
1400
1428
|
</tr>
|
|
1401
1429
|
<tr>
|
|
1402
1430
|
<td style="padding:15px">getCloudInsightReportConfigurations(offset, limit, search, callback)</td>
|
|
1403
|
-
<td style="padding:15px">
|
|
1431
|
+
<td style="padding:15px">getCloudInsightReportConfigurations</td>
|
|
1404
1432
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-report-configurations?{query}</td>
|
|
1405
1433
|
<td style="padding:15px">Yes</td>
|
|
1406
1434
|
</tr>
|
|
1407
1435
|
<tr>
|
|
1408
1436
|
<td style="padding:15px">createCloudInsightReportConfiguration(body, callback)</td>
|
|
1409
|
-
<td style="padding:15px">
|
|
1437
|
+
<td style="padding:15px">createCloudInsightReportConfiguration</td>
|
|
1410
1438
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-report-configurations?{query}</td>
|
|
1411
1439
|
<td style="padding:15px">Yes</td>
|
|
1412
1440
|
</tr>
|
|
@@ -1418,1219 +1446,1219 @@ api/cloud-provider-objects/tags?cloud...(description truncated)</td>
|
|
|
1418
1446
|
</tr>
|
|
1419
1447
|
<tr>
|
|
1420
1448
|
<td style="padding:15px">getCloudInsightReportConfiguration(cloudInsightReportConfigurationId, callback)</td>
|
|
1421
|
-
<td style="padding:15px">
|
|
1449
|
+
<td style="padding:15px">getCloudInsightReportConfiguration</td>
|
|
1422
1450
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-report-configurations/{pathv1}?{query}</td>
|
|
1423
1451
|
<td style="padding:15px">Yes</td>
|
|
1424
1452
|
</tr>
|
|
1425
1453
|
<tr>
|
|
1426
1454
|
<td style="padding:15px">getCloudInsightReports(offset, limit, configurationId, callback)</td>
|
|
1427
|
-
<td style="padding:15px">
|
|
1455
|
+
<td style="padding:15px">getCloudInsightReports</td>
|
|
1428
1456
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-reports?{query}</td>
|
|
1429
1457
|
<td style="padding:15px">Yes</td>
|
|
1430
1458
|
</tr>
|
|
1431
1459
|
<tr>
|
|
1432
1460
|
<td style="padding:15px">deleteallCloudInsightReports(configurationId, callback)</td>
|
|
1433
|
-
<td style="padding:15px">Delete all CloudInsightReports
|
|
1461
|
+
<td style="padding:15px">Delete all CloudInsightReports</td>
|
|
1434
1462
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-reports?{query}</td>
|
|
1435
1463
|
<td style="padding:15px">Yes</td>
|
|
1436
1464
|
</tr>
|
|
1437
1465
|
<tr>
|
|
1438
1466
|
<td style="padding:15px">getCloudInsightReport(cloudInsightReportId, callback)</td>
|
|
1439
|
-
<td style="padding:15px">
|
|
1467
|
+
<td style="padding:15px">getCloudInsightReport</td>
|
|
1440
1468
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-reports/{pathv1}?{query}</td>
|
|
1441
1469
|
<td style="padding:15px">Yes</td>
|
|
1442
1470
|
</tr>
|
|
1443
1471
|
<tr>
|
|
1444
1472
|
<td style="padding:15px">deleteCloudInsightReport(cloudInsightReportId, callback)</td>
|
|
1445
|
-
<td style="padding:15px">
|
|
1473
|
+
<td style="padding:15px">deleteCloudInsightReport</td>
|
|
1446
1474
|
<td style="padding:15px">{base_path}/{version}/cloud-insight-reports/{pathv1}?{query}</td>
|
|
1447
1475
|
<td style="padding:15px">Yes</td>
|
|
1448
1476
|
</tr>
|
|
1449
1477
|
<tr>
|
|
1450
1478
|
<td style="padding:15px">getbillingtags(callback)</td>
|
|
1451
|
-
<td style="padding:15px">
|
|
1479
|
+
<td style="padding:15px">getbillingtags</td>
|
|
1452
1480
|
<td style="padding:15px">{base_path}/{version}/tags?{query}</td>
|
|
1453
1481
|
<td style="padding:15px">Yes</td>
|
|
1454
1482
|
</tr>
|
|
1455
1483
|
<tr>
|
|
1456
1484
|
<td style="padding:15px">createBillingTag(body, callback)</td>
|
|
1457
|
-
<td style="padding:15px">
|
|
1485
|
+
<td style="padding:15px">createBillingTag</td>
|
|
1458
1486
|
<td style="padding:15px">{base_path}/{version}/tags?{query}</td>
|
|
1459
1487
|
<td style="padding:15px">Yes</td>
|
|
1460
1488
|
</tr>
|
|
1461
1489
|
<tr>
|
|
1462
1490
|
<td style="padding:15px">getBillingTag(billingTagId, callback)</td>
|
|
1463
|
-
<td style="padding:15px">
|
|
1491
|
+
<td style="padding:15px">getBillingTag</td>
|
|
1464
1492
|
<td style="padding:15px">{base_path}/{version}/tags/{pathv1}?{query}</td>
|
|
1465
1493
|
<td style="padding:15px">Yes</td>
|
|
1466
1494
|
</tr>
|
|
1467
1495
|
<tr>
|
|
1468
1496
|
<td style="padding:15px">updateBillingTag(billingTagId, body, callback)</td>
|
|
1469
|
-
<td style="padding:15px">
|
|
1497
|
+
<td style="padding:15px">updateBillingTag</td>
|
|
1470
1498
|
<td style="padding:15px">{base_path}/{version}/tags/{pathv1}?{query}</td>
|
|
1471
1499
|
<td style="padding:15px">Yes</td>
|
|
1472
1500
|
</tr>
|
|
1473
1501
|
<tr>
|
|
1474
1502
|
<td style="padding:15px">deleteBillingTag(billingTagId, callback)</td>
|
|
1475
|
-
<td style="padding:15px">
|
|
1503
|
+
<td style="padding:15px">deleteBillingTag</td>
|
|
1476
1504
|
<td style="padding:15px">{base_path}/{version}/tags/{pathv1}?{query}</td>
|
|
1477
1505
|
<td style="padding:15px">Yes</td>
|
|
1478
1506
|
</tr>
|
|
1479
1507
|
<tr>
|
|
1480
1508
|
<td style="padding:15px">getArubaEdgeconnectconnectors(tenantNetworkId, callback)</td>
|
|
1481
|
-
<td style="padding:15px">
|
|
1509
|
+
<td style="padding:15px">getArubaEdgeconnectconnectors</td>
|
|
1482
1510
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/aruba-edge-connectors?{query}</td>
|
|
1483
1511
|
<td style="padding:15px">Yes</td>
|
|
1484
1512
|
</tr>
|
|
1485
1513
|
<tr>
|
|
1486
1514
|
<td style="padding:15px">createArubaEdgeConnectConnector(tenantNetworkId, body, callback)</td>
|
|
1487
|
-
<td style="padding:15px">
|
|
1515
|
+
<td style="padding:15px">createArubaEdgeConnectConnector</td>
|
|
1488
1516
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/aruba-edge-connectors?{query}</td>
|
|
1489
1517
|
<td style="padding:15px">Yes</td>
|
|
1490
1518
|
</tr>
|
|
1491
1519
|
<tr>
|
|
1492
1520
|
<td style="padding:15px">getArubaEdgeConnectConnector(tenantNetworkId, arubaEdgeconnectConnectorId, callback)</td>
|
|
1493
|
-
<td style="padding:15px">
|
|
1521
|
+
<td style="padding:15px">getArubaEdgeConnectConnector</td>
|
|
1494
1522
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/aruba-edge-connectors/{pathv2}?{query}</td>
|
|
1495
1523
|
<td style="padding:15px">Yes</td>
|
|
1496
1524
|
</tr>
|
|
1497
1525
|
<tr>
|
|
1498
1526
|
<td style="padding:15px">updateArubaEdgeConnectConnector(tenantNetworkId, arubaEdgeconnectConnectorId, body, callback)</td>
|
|
1499
|
-
<td style="padding:15px">
|
|
1527
|
+
<td style="padding:15px">updateArubaEdgeConnectConnector</td>
|
|
1500
1528
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/aruba-edge-connectors/{pathv2}?{query}</td>
|
|
1501
1529
|
<td style="padding:15px">Yes</td>
|
|
1502
1530
|
</tr>
|
|
1503
1531
|
<tr>
|
|
1504
1532
|
<td style="padding:15px">deleteArubaEdgeConnectConnector(tenantNetworkId, arubaEdgeconnectConnectorId, callback)</td>
|
|
1505
|
-
<td style="padding:15px">
|
|
1533
|
+
<td style="padding:15px">deleteArubaEdgeConnectConnector</td>
|
|
1506
1534
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/aruba-edge-connectors/{pathv2}?{query}</td>
|
|
1507
1535
|
<td style="padding:15px">Yes</td>
|
|
1508
1536
|
</tr>
|
|
1509
1537
|
<tr>
|
|
1510
1538
|
<td style="padding:15px">getArubaEdgeConnectConnectorInstanceConfiguration(tenantNetworkId, arubaEdgeconnectconnectorId, instanceId, callback)</td>
|
|
1511
|
-
<td style="padding:15px">
|
|
1539
|
+
<td style="padding:15px">getArubaEdgeConnectConnectorInstanceConfiguration</td>
|
|
1512
1540
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/aruba-edge-connectors/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
1513
1541
|
<td style="padding:15px">Yes</td>
|
|
1514
1542
|
</tr>
|
|
1515
1543
|
<tr>
|
|
1516
1544
|
<td style="padding:15px">getAkamaiProlexicconnectors(tenantNetworkId, callback)</td>
|
|
1517
|
-
<td style="padding:15px">
|
|
1545
|
+
<td style="padding:15px">getAkamaiProlexicconnectors</td>
|
|
1518
1546
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/akamai-prolexic-connectors?{query}</td>
|
|
1519
1547
|
<td style="padding:15px">Yes</td>
|
|
1520
1548
|
</tr>
|
|
1521
1549
|
<tr>
|
|
1522
1550
|
<td style="padding:15px">createAkamaiProlexicConnector(tenantNetworkId, body, callback)</td>
|
|
1523
|
-
<td style="padding:15px">
|
|
1551
|
+
<td style="padding:15px">createAkamaiProlexicConnector</td>
|
|
1524
1552
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/akamai-prolexic-connectors?{query}</td>
|
|
1525
1553
|
<td style="padding:15px">Yes</td>
|
|
1526
1554
|
</tr>
|
|
1527
1555
|
<tr>
|
|
1528
1556
|
<td style="padding:15px">getAkamaiProlexicConnector(tenantNetworkId, id, callback)</td>
|
|
1529
|
-
<td style="padding:15px">
|
|
1557
|
+
<td style="padding:15px">getAkamaiProlexicConnector</td>
|
|
1530
1558
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/akamai-prolexic-connectors/{pathv2}?{query}</td>
|
|
1531
1559
|
<td style="padding:15px">Yes</td>
|
|
1532
1560
|
</tr>
|
|
1533
1561
|
<tr>
|
|
1534
1562
|
<td style="padding:15px">updateAkamaiProlexicConnector(tenantNetworkId, id, body, callback)</td>
|
|
1535
|
-
<td style="padding:15px">
|
|
1563
|
+
<td style="padding:15px">updateAkamaiProlexicConnector</td>
|
|
1536
1564
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/akamai-prolexic-connectors/{pathv2}?{query}</td>
|
|
1537
1565
|
<td style="padding:15px">Yes</td>
|
|
1538
1566
|
</tr>
|
|
1539
1567
|
<tr>
|
|
1540
1568
|
<td style="padding:15px">deleteAkamaiProlexicConnector(tenantNetworkId, id, callback)</td>
|
|
1541
|
-
<td style="padding:15px">
|
|
1569
|
+
<td style="padding:15px">deleteAkamaiProlexicConnector</td>
|
|
1542
1570
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/akamai-prolexic-connectors/{pathv2}?{query}</td>
|
|
1543
1571
|
<td style="padding:15px">Yes</td>
|
|
1544
1572
|
</tr>
|
|
1545
1573
|
<tr>
|
|
1546
1574
|
<td style="padding:15px">getCloudNativeServices(cloudProvider, name, callback)</td>
|
|
1547
|
-
<td style="padding:15px">
|
|
1575
|
+
<td style="padding:15px">getCloudNativeServices</td>
|
|
1548
1576
|
<td style="padding:15px">{base_path}/{version}/inventory/cloudnativeservices?{query}</td>
|
|
1549
1577
|
<td style="padding:15px">Yes</td>
|
|
1550
1578
|
</tr>
|
|
1551
1579
|
<tr>
|
|
1552
1580
|
<td style="padding:15px">getCountUsingGET(tenantNetworkId, cxp, segmentName, startTime, endTime, active, sessionId, templateId, userName, userGroupId, callback)</td>
|
|
1553
|
-
<td style="padding:15px">
|
|
1581
|
+
<td style="padding:15px">getCountUsingGET</td>
|
|
1554
1582
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/remote-access-sessions/count?{query}</td>
|
|
1555
1583
|
<td style="padding:15px">Yes</td>
|
|
1556
1584
|
</tr>
|
|
1557
1585
|
<tr>
|
|
1558
1586
|
<td style="padding:15px">getRemoteAccessTopApplications(tenantNetworkId, cxp, segmentName, startTime, endTime, maxItems, sessionId, templateId, userName, userGroupId, userGroup, callback)</td>
|
|
1559
|
-
<td style="padding:15px">
|
|
1587
|
+
<td style="padding:15px">getRemoteAccessTopApplications</td>
|
|
1560
1588
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/remote-access-sessions/topapplications?{query}</td>
|
|
1561
1589
|
<td style="padding:15px">Yes</td>
|
|
1562
1590
|
</tr>
|
|
1563
1591
|
<tr>
|
|
1564
1592
|
<td style="padding:15px">getRemoteAccessDataUtilizationUsingGET(tenantNetworkId, templateId, cxp, segmentName, startTime, endTime, active, sessionId, userName, userGroupId, maxItems, callback)</td>
|
|
1565
|
-
<td style="padding:15px">
|
|
1593
|
+
<td style="padding:15px">getRemoteAccessDataUtilizationUsingGET</td>
|
|
1566
1594
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/remote-access-sessions/data-utilization?{query}</td>
|
|
1567
1595
|
<td style="padding:15px">Yes</td>
|
|
1568
1596
|
</tr>
|
|
1569
1597
|
<tr>
|
|
1570
1598
|
<td style="padding:15px">getRemoteAccessConnectorDataUtilizationUsingGET(tenantNetworkId, startTime, endTime, connectorId, userGroupId, callback)</td>
|
|
1571
|
-
<td style="padding:15px">
|
|
1599
|
+
<td style="padding:15px">getRemoteAccessConnectorDataUtilizationUsingGET</td>
|
|
1572
1600
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/remote-access-sessions/utilization?{query}</td>
|
|
1573
1601
|
<td style="padding:15px">Yes</td>
|
|
1574
1602
|
</tr>
|
|
1575
1603
|
<tr>
|
|
1576
1604
|
<td style="padding:15px">getRemoteAccessTopPolicyHits(tenantNetworkId, cxp, segmentName, startTime, endTime, maxItems, sessionId, templateId, userName, userGroupId, userGroup, callback)</td>
|
|
1577
|
-
<td style="padding:15px">
|
|
1605
|
+
<td style="padding:15px">getRemoteAccessTopPolicyHits</td>
|
|
1578
1606
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/remote-access-sessions/toppolicyhits?{query}</td>
|
|
1579
1607
|
<td style="padding:15px">Yes</td>
|
|
1580
1608
|
</tr>
|
|
1581
1609
|
<tr>
|
|
1582
1610
|
<td style="padding:15px">getRemoteAccessBandwidthUtilizationUsingGET(tenantNetworkId, templateId, cxp, segmentName, startTime, endTime, active, sessionId, userName, userGroupId, maxItems, callback)</td>
|
|
1583
|
-
<td style="padding:15px">
|
|
1611
|
+
<td style="padding:15px">getRemoteAccessBandwidthUtilizationUsingGET</td>
|
|
1584
1612
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/stats/remote-access-sessions/bandwidth-utilization?{query}</td>
|
|
1585
1613
|
<td style="padding:15px">Yes</td>
|
|
1586
1614
|
</tr>
|
|
1587
1615
|
<tr>
|
|
1588
1616
|
<td style="padding:15px">getAuthenticationAttemptsUsingGET(tenantNetworkId, startTime, endTime, limit, offset, status, templateId, callback)</td>
|
|
1589
|
-
<td style="padding:15px">
|
|
1617
|
+
<td style="padding:15px">getAuthenticationAttemptsUsingGET</td>
|
|
1590
1618
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connector-templates/{pathv2}/authentication-attempts?{query}</td>
|
|
1591
1619
|
<td style="padding:15px">Yes</td>
|
|
1592
1620
|
</tr>
|
|
1593
1621
|
<tr>
|
|
1594
1622
|
<td style="padding:15px">getRemoteAccessSessionsUsingGET(tenantNetworkId, cxp, segmentName, startTime, endTime, active, templateId, limit, offset, callback)</td>
|
|
1595
|
-
<td style="padding:15px">
|
|
1623
|
+
<td style="padding:15px">getRemoteAccessSessionsUsingGET</td>
|
|
1596
1624
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/alkira-remote-access-connector-templates/{pathv2}/sessions?{query}</td>
|
|
1597
1625
|
<td style="padding:15px">Yes</td>
|
|
1598
1626
|
</tr>
|
|
1599
1627
|
<tr>
|
|
1600
1628
|
<td style="padding:15px">getNATPolicies(tenantNetworkId, callback)</td>
|
|
1601
|
-
<td style="padding:15px">
|
|
1629
|
+
<td style="padding:15px">getNATPolicies</td>
|
|
1602
1630
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-policies?{query}</td>
|
|
1603
1631
|
<td style="padding:15px">Yes</td>
|
|
1604
1632
|
</tr>
|
|
1605
1633
|
<tr>
|
|
1606
1634
|
<td style="padding:15px">createNATPolicy(tenantNetworkId, body, callback)</td>
|
|
1607
|
-
<td style="padding:15px">
|
|
1635
|
+
<td style="padding:15px">createNATPolicy</td>
|
|
1608
1636
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-policies?{query}</td>
|
|
1609
1637
|
<td style="padding:15px">Yes</td>
|
|
1610
1638
|
</tr>
|
|
1611
1639
|
<tr>
|
|
1612
1640
|
<td style="padding:15px">getNATPolicy(tenantNetworkId, nATPolicyId, callback)</td>
|
|
1613
|
-
<td style="padding:15px">
|
|
1641
|
+
<td style="padding:15px">getNATPolicy</td>
|
|
1614
1642
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-policies/{pathv2}?{query}</td>
|
|
1615
1643
|
<td style="padding:15px">Yes</td>
|
|
1616
1644
|
</tr>
|
|
1617
1645
|
<tr>
|
|
1618
1646
|
<td style="padding:15px">updateNATPolicy(tenantNetworkId, nATPolicyId, body, callback)</td>
|
|
1619
|
-
<td style="padding:15px">
|
|
1647
|
+
<td style="padding:15px">updateNATPolicy</td>
|
|
1620
1648
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-policies/{pathv2}?{query}</td>
|
|
1621
1649
|
<td style="padding:15px">Yes</td>
|
|
1622
1650
|
</tr>
|
|
1623
1651
|
<tr>
|
|
1624
1652
|
<td style="padding:15px">deleteNATPolicy(tenantNetworkId, nATPolicyId, callback)</td>
|
|
1625
|
-
<td style="padding:15px">
|
|
1653
|
+
<td style="padding:15px">deleteNATPolicy</td>
|
|
1626
1654
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-policies/{pathv2}?{query}</td>
|
|
1627
1655
|
<td style="padding:15px">Yes</td>
|
|
1628
1656
|
</tr>
|
|
1629
1657
|
<tr>
|
|
1630
1658
|
<td style="padding:15px">getNATRules(tenantNetworkId, callback)</td>
|
|
1631
|
-
<td style="padding:15px">
|
|
1659
|
+
<td style="padding:15px">getNATRules</td>
|
|
1632
1660
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-rules?{query}</td>
|
|
1633
1661
|
<td style="padding:15px">Yes</td>
|
|
1634
1662
|
</tr>
|
|
1635
1663
|
<tr>
|
|
1636
1664
|
<td style="padding:15px">createNATRule(tenantNetworkId, body, callback)</td>
|
|
1637
|
-
<td style="padding:15px">
|
|
1665
|
+
<td style="padding:15px">createNATRule</td>
|
|
1638
1666
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-rules?{query}</td>
|
|
1639
1667
|
<td style="padding:15px">Yes</td>
|
|
1640
1668
|
</tr>
|
|
1641
1669
|
<tr>
|
|
1642
1670
|
<td style="padding:15px">getNATRule(tenantNetworkId, nATRuleId, callback)</td>
|
|
1643
|
-
<td style="padding:15px">
|
|
1671
|
+
<td style="padding:15px">getNATRule</td>
|
|
1644
1672
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-rules/{pathv2}?{query}</td>
|
|
1645
1673
|
<td style="padding:15px">Yes</td>
|
|
1646
1674
|
</tr>
|
|
1647
1675
|
<tr>
|
|
1648
1676
|
<td style="padding:15px">updateNATRule(tenantNetworkId, nATRuleId, body, callback)</td>
|
|
1649
|
-
<td style="padding:15px">
|
|
1677
|
+
<td style="padding:15px">updateNATRule</td>
|
|
1650
1678
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-rules/{pathv2}?{query}</td>
|
|
1651
1679
|
<td style="padding:15px">Yes</td>
|
|
1652
1680
|
</tr>
|
|
1653
1681
|
<tr>
|
|
1654
1682
|
<td style="padding:15px">deleteNATRule(tenantNetworkId, nATRuleId, callback)</td>
|
|
1655
|
-
<td style="padding:15px">
|
|
1683
|
+
<td style="padding:15px">deleteNATRule</td>
|
|
1656
1684
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/nat-rules/{pathv2}?{query}</td>
|
|
1657
1685
|
<td style="padding:15px">Yes</td>
|
|
1658
1686
|
</tr>
|
|
1659
1687
|
<tr>
|
|
1660
1688
|
<td style="padding:15px">getGlobalCidrLists(tenantNetworkId, callback)</td>
|
|
1661
|
-
<td style="padding:15px">
|
|
1689
|
+
<td style="padding:15px">getGlobalCidrLists</td>
|
|
1662
1690
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/global-cidr-lists?{query}</td>
|
|
1663
1691
|
<td style="padding:15px">Yes</td>
|
|
1664
1692
|
</tr>
|
|
1665
1693
|
<tr>
|
|
1666
1694
|
<td style="padding:15px">createGlobalCidrList(tenantNetworkId, body, callback)</td>
|
|
1667
|
-
<td style="padding:15px">
|
|
1695
|
+
<td style="padding:15px">createGlobalCidrList</td>
|
|
1668
1696
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/global-cidr-lists?{query}</td>
|
|
1669
1697
|
<td style="padding:15px">Yes</td>
|
|
1670
1698
|
</tr>
|
|
1671
1699
|
<tr>
|
|
1672
1700
|
<td style="padding:15px">getGlobalCidrList(tenantNetworkId, globalCidrListId, callback)</td>
|
|
1673
|
-
<td style="padding:15px">
|
|
1701
|
+
<td style="padding:15px">getGlobalCidrList</td>
|
|
1674
1702
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/global-cidr-lists/{pathv2}?{query}</td>
|
|
1675
1703
|
<td style="padding:15px">Yes</td>
|
|
1676
1704
|
</tr>
|
|
1677
1705
|
<tr>
|
|
1678
1706
|
<td style="padding:15px">updateGlobalCidrList(tenantNetworkId, globalCidrListId, body, callback)</td>
|
|
1679
|
-
<td style="padding:15px">
|
|
1707
|
+
<td style="padding:15px">updateGlobalCidrList</td>
|
|
1680
1708
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/global-cidr-lists/{pathv2}?{query}</td>
|
|
1681
1709
|
<td style="padding:15px">Yes</td>
|
|
1682
1710
|
</tr>
|
|
1683
1711
|
<tr>
|
|
1684
1712
|
<td style="padding:15px">deleteGlobalCidrList(tenantNetworkId, globalCidrListId, callback)</td>
|
|
1685
|
-
<td style="padding:15px">
|
|
1713
|
+
<td style="padding:15px">deleteGlobalCidrList</td>
|
|
1686
1714
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/global-cidr-lists/{pathv2}?{query}</td>
|
|
1687
1715
|
<td style="padding:15px">Yes</td>
|
|
1688
1716
|
</tr>
|
|
1689
1717
|
<tr>
|
|
1690
1718
|
<td style="padding:15px">getsegmentResources(tenantNetworkId, callback)</td>
|
|
1691
|
-
<td style="padding:15px">
|
|
1719
|
+
<td style="padding:15px">getsegmentResources</td>
|
|
1692
1720
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resources?{query}</td>
|
|
1693
1721
|
<td style="padding:15px">Yes</td>
|
|
1694
1722
|
</tr>
|
|
1695
1723
|
<tr>
|
|
1696
1724
|
<td style="padding:15px">createSegmentResource(tenantNetworkId, body, callback)</td>
|
|
1697
|
-
<td style="padding:15px">
|
|
1725
|
+
<td style="padding:15px">createSegmentResource</td>
|
|
1698
1726
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resources?{query}</td>
|
|
1699
1727
|
<td style="padding:15px">Yes</td>
|
|
1700
1728
|
</tr>
|
|
1701
1729
|
<tr>
|
|
1702
1730
|
<td style="padding:15px">getSegmentResource(tenantNetworkId, segmentResourceId, callback)</td>
|
|
1703
|
-
<td style="padding:15px">
|
|
1731
|
+
<td style="padding:15px">getSegmentResource</td>
|
|
1704
1732
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resources/{pathv2}?{query}</td>
|
|
1705
1733
|
<td style="padding:15px">Yes</td>
|
|
1706
1734
|
</tr>
|
|
1707
1735
|
<tr>
|
|
1708
1736
|
<td style="padding:15px">updateSegmentResource(tenantNetworkId, segmentResourceId, body, callback)</td>
|
|
1709
|
-
<td style="padding:15px">
|
|
1737
|
+
<td style="padding:15px">updateSegmentResource</td>
|
|
1710
1738
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resources/{pathv2}?{query}</td>
|
|
1711
1739
|
<td style="padding:15px">Yes</td>
|
|
1712
1740
|
</tr>
|
|
1713
1741
|
<tr>
|
|
1714
1742
|
<td style="padding:15px">deleteSegmentResource(tenantNetworkId, segmentResourceId, callback)</td>
|
|
1715
|
-
<td style="padding:15px">
|
|
1743
|
+
<td style="padding:15px">deleteSegmentResource</td>
|
|
1716
1744
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resources/{pathv2}?{query}</td>
|
|
1717
1745
|
<td style="padding:15px">Yes</td>
|
|
1718
1746
|
</tr>
|
|
1719
1747
|
<tr>
|
|
1720
1748
|
<td style="padding:15px">getSegmentResourceShares(tenantNetworkId, callback)</td>
|
|
1721
|
-
<td style="padding:15px">
|
|
1749
|
+
<td style="padding:15px">getSegmentResourceShares</td>
|
|
1722
1750
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resource-shares?{query}</td>
|
|
1723
1751
|
<td style="padding:15px">Yes</td>
|
|
1724
1752
|
</tr>
|
|
1725
1753
|
<tr>
|
|
1726
1754
|
<td style="padding:15px">createSegmentResourceShare(tenantNetworkId, body, callback)</td>
|
|
1727
|
-
<td style="padding:15px">
|
|
1755
|
+
<td style="padding:15px">createSegmentResourceShare</td>
|
|
1728
1756
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resource-shares?{query}</td>
|
|
1729
1757
|
<td style="padding:15px">Yes</td>
|
|
1730
1758
|
</tr>
|
|
1731
1759
|
<tr>
|
|
1732
1760
|
<td style="padding:15px">getSegmentResourceShare(tenantNetworkId, segmentResourceShareId, callback)</td>
|
|
1733
|
-
<td style="padding:15px">
|
|
1761
|
+
<td style="padding:15px">getSegmentResourceShare</td>
|
|
1734
1762
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resource-shares/{pathv2}?{query}</td>
|
|
1735
1763
|
<td style="padding:15px">Yes</td>
|
|
1736
1764
|
</tr>
|
|
1737
1765
|
<tr>
|
|
1738
1766
|
<td style="padding:15px">updateSegmentResourceShare(tenantNetworkId, segmentResourceShareId, body, callback)</td>
|
|
1739
|
-
<td style="padding:15px">
|
|
1767
|
+
<td style="padding:15px">updateSegmentResourceShare</td>
|
|
1740
1768
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resource-shares/{pathv2}?{query}</td>
|
|
1741
1769
|
<td style="padding:15px">Yes</td>
|
|
1742
1770
|
</tr>
|
|
1743
1771
|
<tr>
|
|
1744
1772
|
<td style="padding:15px">deleteSegmentResourceShare(tenantNetworkId, segmentResourceShareId, callback)</td>
|
|
1745
|
-
<td style="padding:15px">
|
|
1773
|
+
<td style="padding:15px">deleteSegmentResourceShare</td>
|
|
1746
1774
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resource-shares/{pathv2}?{query}</td>
|
|
1747
1775
|
<td style="padding:15px">Yes</td>
|
|
1748
1776
|
</tr>
|
|
1749
1777
|
<tr>
|
|
1750
1778
|
<td style="padding:15px">getCheckPointFWServices(tenantNetworkId, callback)</td>
|
|
1751
|
-
<td style="padding:15px">
|
|
1779
|
+
<td style="padding:15px">getCheckPointFWServices</td>
|
|
1752
1780
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/chkp-fw-services?{query}</td>
|
|
1753
1781
|
<td style="padding:15px">Yes</td>
|
|
1754
1782
|
</tr>
|
|
1755
1783
|
<tr>
|
|
1756
1784
|
<td style="padding:15px">createCheckPointFWService(tenantNetworkId, body, callback)</td>
|
|
1757
|
-
<td style="padding:15px">
|
|
1785
|
+
<td style="padding:15px">createCheckPointFWService</td>
|
|
1758
1786
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/chkp-fw-services?{query}</td>
|
|
1759
1787
|
<td style="padding:15px">Yes</td>
|
|
1760
1788
|
</tr>
|
|
1761
1789
|
<tr>
|
|
1762
1790
|
<td style="padding:15px">getCheckPointFWService(tenantNetworkId, serviceId, callback)</td>
|
|
1763
|
-
<td style="padding:15px">
|
|
1791
|
+
<td style="padding:15px">getCheckPointFWService</td>
|
|
1764
1792
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/chkp-fw-services/{pathv2}?{query}</td>
|
|
1765
1793
|
<td style="padding:15px">Yes</td>
|
|
1766
1794
|
</tr>
|
|
1767
1795
|
<tr>
|
|
1768
1796
|
<td style="padding:15px">updateCheckPointFWService(tenantNetworkId, serviceId, body, callback)</td>
|
|
1769
|
-
<td style="padding:15px">
|
|
1797
|
+
<td style="padding:15px">updateCheckPointFWService</td>
|
|
1770
1798
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/chkp-fw-services/{pathv2}?{query}</td>
|
|
1771
1799
|
<td style="padding:15px">Yes</td>
|
|
1772
1800
|
</tr>
|
|
1773
1801
|
<tr>
|
|
1774
1802
|
<td style="padding:15px">deleteCheckPointFWService(tenantNetworkId, serviceId, callback)</td>
|
|
1775
|
-
<td style="padding:15px">
|
|
1803
|
+
<td style="padding:15px">deleteCheckPointFWService</td>
|
|
1776
1804
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/chkp-fw-services/{pathv2}?{query}</td>
|
|
1777
1805
|
<td style="padding:15px">Yes</td>
|
|
1778
1806
|
</tr>
|
|
1779
1807
|
<tr>
|
|
1780
1808
|
<td style="padding:15px">getCheckPointFWServiceInstanceConfiguration(tenantNetworkId, serviceId, instanceId, callback)</td>
|
|
1781
|
-
<td style="padding:15px">
|
|
1809
|
+
<td style="padding:15px">getCheckPointFWServiceInstanceConfiguration</td>
|
|
1782
1810
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/chkp-fw-services/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
1783
1811
|
<td style="padding:15px">Yes</td>
|
|
1784
1812
|
</tr>
|
|
1785
1813
|
<tr>
|
|
1786
1814
|
<td style="padding:15px">getFortinetFWServices(tenantNetworkId, callback)</td>
|
|
1787
|
-
<td style="padding:15px">
|
|
1815
|
+
<td style="padding:15px">getFortinetFWServices</td>
|
|
1788
1816
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ftnt-fw-services?{query}</td>
|
|
1789
1817
|
<td style="padding:15px">Yes</td>
|
|
1790
1818
|
</tr>
|
|
1791
1819
|
<tr>
|
|
1792
1820
|
<td style="padding:15px">createFortinetFWService(tenantNetworkId, body, callback)</td>
|
|
1793
|
-
<td style="padding:15px">
|
|
1821
|
+
<td style="padding:15px">createFortinetFWService</td>
|
|
1794
1822
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ftnt-fw-services?{query}</td>
|
|
1795
1823
|
<td style="padding:15px">Yes</td>
|
|
1796
1824
|
</tr>
|
|
1797
1825
|
<tr>
|
|
1798
1826
|
<td style="padding:15px">getFortinetFWService(tenantNetworkId, serviceId, callback)</td>
|
|
1799
|
-
<td style="padding:15px">
|
|
1827
|
+
<td style="padding:15px">getFortinetFWService</td>
|
|
1800
1828
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ftnt-fw-services/{pathv2}?{query}</td>
|
|
1801
1829
|
<td style="padding:15px">Yes</td>
|
|
1802
1830
|
</tr>
|
|
1803
1831
|
<tr>
|
|
1804
1832
|
<td style="padding:15px">updateFortinetFWService(tenantNetworkId, serviceId, body, callback)</td>
|
|
1805
|
-
<td style="padding:15px">
|
|
1833
|
+
<td style="padding:15px">updateFortinetFWService</td>
|
|
1806
1834
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ftnt-fw-services/{pathv2}?{query}</td>
|
|
1807
1835
|
<td style="padding:15px">Yes</td>
|
|
1808
1836
|
</tr>
|
|
1809
1837
|
<tr>
|
|
1810
1838
|
<td style="padding:15px">deleteFortinetFWService(tenantNetworkId, serviceId, callback)</td>
|
|
1811
|
-
<td style="padding:15px">
|
|
1839
|
+
<td style="padding:15px">deleteFortinetFWService</td>
|
|
1812
1840
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ftnt-fw-services/{pathv2}?{query}</td>
|
|
1813
1841
|
<td style="padding:15px">Yes</td>
|
|
1814
1842
|
</tr>
|
|
1815
1843
|
<tr>
|
|
1816
1844
|
<td style="padding:15px">getFortinetFWServiceInstanceConfiguration(tenantNetworkId, serviceId, instanceId, callback)</td>
|
|
1817
|
-
<td style="padding:15px">
|
|
1845
|
+
<td style="padding:15px">getFortinetFWServiceInstanceConfiguration</td>
|
|
1818
1846
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/ftnt-fw-services/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
1819
1847
|
<td style="padding:15px">Yes</td>
|
|
1820
1848
|
</tr>
|
|
1821
1849
|
<tr>
|
|
1822
1850
|
<td style="padding:15px">getCiscoFTDvFWServices(tenantNetworkId, callback)</td>
|
|
1823
|
-
<td style="padding:15px">
|
|
1851
|
+
<td style="padding:15px">getCiscoFTDvFWServices</td>
|
|
1824
1852
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/cisco-ftdv-fw-services?{query}</td>
|
|
1825
1853
|
<td style="padding:15px">Yes</td>
|
|
1826
1854
|
</tr>
|
|
1827
1855
|
<tr>
|
|
1828
1856
|
<td style="padding:15px">createCiscoFTDvFWService(tenantNetworkId, body, callback)</td>
|
|
1829
|
-
<td style="padding:15px">
|
|
1857
|
+
<td style="padding:15px">createCiscoFTDvFWService</td>
|
|
1830
1858
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/cisco-ftdv-fw-services?{query}</td>
|
|
1831
1859
|
<td style="padding:15px">Yes</td>
|
|
1832
1860
|
</tr>
|
|
1833
1861
|
<tr>
|
|
1834
1862
|
<td style="padding:15px">getCiscoFTDvFWService(tenantNetworkId, serviceId, callback)</td>
|
|
1835
|
-
<td style="padding:15px">
|
|
1863
|
+
<td style="padding:15px">getCiscoFTDvFWService</td>
|
|
1836
1864
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/cisco-ftdv-fw-services/{pathv2}?{query}</td>
|
|
1837
1865
|
<td style="padding:15px">Yes</td>
|
|
1838
1866
|
</tr>
|
|
1839
1867
|
<tr>
|
|
1840
1868
|
<td style="padding:15px">updateCiscoFTDvFWService(tenantNetworkId, serviceId, body, callback)</td>
|
|
1841
|
-
<td style="padding:15px">
|
|
1869
|
+
<td style="padding:15px">updateCiscoFTDvFWService</td>
|
|
1842
1870
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/cisco-ftdv-fw-services/{pathv2}?{query}</td>
|
|
1843
1871
|
<td style="padding:15px">Yes</td>
|
|
1844
1872
|
</tr>
|
|
1845
1873
|
<tr>
|
|
1846
1874
|
<td style="padding:15px">deleteCiscoFTDvFWService(tenantNetworkId, serviceId, callback)</td>
|
|
1847
|
-
<td style="padding:15px">
|
|
1875
|
+
<td style="padding:15px">deleteCiscoFTDvFWService</td>
|
|
1848
1876
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/cisco-ftdv-fw-services/{pathv2}?{query}</td>
|
|
1849
1877
|
<td style="padding:15px">Yes</td>
|
|
1850
1878
|
</tr>
|
|
1851
1879
|
<tr>
|
|
1852
1880
|
<td style="padding:15px">getCiscoFTDvFWServiceInstanceConfiguration(tenantNetworkId, serviceId, instanceId, callback)</td>
|
|
1853
|
-
<td style="padding:15px">
|
|
1881
|
+
<td style="padding:15px">getCiscoFTDvFWServiceInstanceConfiguration</td>
|
|
1854
1882
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/cisco-ftdv-fw-services/{pathv2}/instances/{pathv3}/configuration?{query}</td>
|
|
1855
1883
|
<td style="padding:15px">Yes</td>
|
|
1856
1884
|
</tr>
|
|
1857
1885
|
<tr>
|
|
1858
1886
|
<td style="padding:15px">getZscalerInternetAccessServices(tenantNetworkId, callback)</td>
|
|
1859
|
-
<td style="padding:15px">
|
|
1887
|
+
<td style="padding:15px">getZscalerInternetAccessServices</td>
|
|
1860
1888
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/zscaler-internet-access-services?{query}</td>
|
|
1861
1889
|
<td style="padding:15px">Yes</td>
|
|
1862
1890
|
</tr>
|
|
1863
1891
|
<tr>
|
|
1864
1892
|
<td style="padding:15px">createZscalerInternetAccessService(tenantNetworkId, body, callback)</td>
|
|
1865
|
-
<td style="padding:15px">
|
|
1893
|
+
<td style="padding:15px">createZscalerInternetAccessService</td>
|
|
1866
1894
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/zscaler-internet-access-services?{query}</td>
|
|
1867
1895
|
<td style="padding:15px">Yes</td>
|
|
1868
1896
|
</tr>
|
|
1869
1897
|
<tr>
|
|
1870
1898
|
<td style="padding:15px">getZscalerInternetAccessService(tenantNetworkId, serviceId, callback)</td>
|
|
1871
|
-
<td style="padding:15px">
|
|
1899
|
+
<td style="padding:15px">getZscalerInternetAccessService</td>
|
|
1872
1900
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/zscaler-internet-access-services/{pathv2}?{query}</td>
|
|
1873
1901
|
<td style="padding:15px">Yes</td>
|
|
1874
1902
|
</tr>
|
|
1875
1903
|
<tr>
|
|
1876
1904
|
<td style="padding:15px">updateZscalerInternetAccessService(tenantNetworkId, serviceId, body, callback)</td>
|
|
1877
|
-
<td style="padding:15px">
|
|
1905
|
+
<td style="padding:15px">updateZscalerInternetAccessService</td>
|
|
1878
1906
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/zscaler-internet-access-services/{pathv2}?{query}</td>
|
|
1879
1907
|
<td style="padding:15px">Yes</td>
|
|
1880
1908
|
</tr>
|
|
1881
1909
|
<tr>
|
|
1882
1910
|
<td style="padding:15px">deleteZscalerInternetAccessService(tenantNetworkId, serviceId, callback)</td>
|
|
1883
|
-
<td style="padding:15px">
|
|
1911
|
+
<td style="padding:15px">deleteZscalerInternetAccessService</td>
|
|
1884
1912
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/zscaler-internet-access-services/{pathv2}?{query}</td>
|
|
1885
1913
|
<td style="padding:15px">Yes</td>
|
|
1886
1914
|
</tr>
|
|
1887
1915
|
<tr>
|
|
1888
1916
|
<td style="padding:15px">getInfoBloxServices(tenantNetworkId, callback)</td>
|
|
1889
|
-
<td style="padding:15px">
|
|
1917
|
+
<td style="padding:15px">getInfoBloxServices</td>
|
|
1890
1918
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/infoblox-services?{query}</td>
|
|
1891
1919
|
<td style="padding:15px">Yes</td>
|
|
1892
1920
|
</tr>
|
|
1893
1921
|
<tr>
|
|
1894
1922
|
<td style="padding:15px">createInfoBloxService(tenantNetworkId, body, callback)</td>
|
|
1895
|
-
<td style="padding:15px">
|
|
1923
|
+
<td style="padding:15px">createInfoBloxService</td>
|
|
1896
1924
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/infoblox-services?{query}</td>
|
|
1897
1925
|
<td style="padding:15px">Yes</td>
|
|
1898
1926
|
</tr>
|
|
1899
1927
|
<tr>
|
|
1900
1928
|
<td style="padding:15px">getInfoBloxService(tenantNetworkId, serviceId, callback)</td>
|
|
1901
|
-
<td style="padding:15px">
|
|
1929
|
+
<td style="padding:15px">getInfoBloxService</td>
|
|
1902
1930
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/infoblox-services/{pathv2}?{query}</td>
|
|
1903
1931
|
<td style="padding:15px">Yes</td>
|
|
1904
1932
|
</tr>
|
|
1905
1933
|
<tr>
|
|
1906
1934
|
<td style="padding:15px">updateInfoBloxService(tenantNetworkId, serviceId, body, callback)</td>
|
|
1907
|
-
<td style="padding:15px">
|
|
1935
|
+
<td style="padding:15px">updateInfoBloxService</td>
|
|
1908
1936
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/infoblox-services/{pathv2}?{query}</td>
|
|
1909
1937
|
<td style="padding:15px">Yes</td>
|
|
1910
1938
|
</tr>
|
|
1911
1939
|
<tr>
|
|
1912
1940
|
<td style="padding:15px">deleteInfoBloxService(tenantNetworkId, serviceId, callback)</td>
|
|
1913
|
-
<td style="padding:15px">
|
|
1941
|
+
<td style="padding:15px">deleteInfoBloxService</td>
|
|
1914
1942
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/infoblox-services/{pathv2}?{query}</td>
|
|
1915
1943
|
<td style="padding:15px">Yes</td>
|
|
1916
1944
|
</tr>
|
|
1917
1945
|
<tr>
|
|
1918
1946
|
<td style="padding:15px">getFeatureFlag(feature, callback)</td>
|
|
1919
|
-
<td style="padding:15px">
|
|
1947
|
+
<td style="padding:15px">getFeatureFlag</td>
|
|
1920
1948
|
<td style="padding:15px">{base_path}/{version}/tenantfeatureflags/{pathv1}?{query}</td>
|
|
1921
1949
|
<td style="padding:15px">Yes</td>
|
|
1922
1950
|
</tr>
|
|
1923
1951
|
<tr>
|
|
1924
1952
|
<td style="padding:15px">getTenantEnabledFeatures(callback)</td>
|
|
1925
|
-
<td style="padding:15px">
|
|
1953
|
+
<td style="padding:15px">getTenantEnabledFeatures</td>
|
|
1926
1954
|
<td style="padding:15px">{base_path}/{version}/tenantenabledfeatures?{query}</td>
|
|
1927
1955
|
<td style="padding:15px">Yes</td>
|
|
1928
1956
|
</tr>
|
|
1929
1957
|
<tr>
|
|
1930
1958
|
<td style="padding:15px">capturePacketsFromConnector(tenantNetworkId, connectorId, body, callback)</td>
|
|
1931
|
-
<td style="padding:15px">
|
|
1959
|
+
<td style="padding:15px">capturePacketsFromConnector</td>
|
|
1932
1960
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/troubleshooting/capturepackets?{query}</td>
|
|
1933
1961
|
<td style="padding:15px">Yes</td>
|
|
1934
1962
|
</tr>
|
|
1935
1963
|
<tr>
|
|
1936
1964
|
<td style="padding:15px">getPacketCaptureResponses(callback)</td>
|
|
1937
|
-
<td style="padding:15px">
|
|
1965
|
+
<td style="padding:15px">getPacketCaptureResponses</td>
|
|
1938
1966
|
<td style="padding:15px">{base_path}/{version}/troubleshooting/capturepackets/responses?{query}</td>
|
|
1939
1967
|
<td style="padding:15px">Yes</td>
|
|
1940
1968
|
</tr>
|
|
1941
1969
|
<tr>
|
|
1942
1970
|
<td style="padding:15px">downloadPacketCapture(pathParam, callback)</td>
|
|
1943
|
-
<td style="padding:15px">
|
|
1971
|
+
<td style="padding:15px">downloadPacketCapture</td>
|
|
1944
1972
|
<td style="padding:15px">{base_path}/{version}/troubleshooting/capturepackets/download?{query}</td>
|
|
1945
1973
|
<td style="padding:15px">Yes</td>
|
|
1946
1974
|
</tr>
|
|
1947
1975
|
<tr>
|
|
1948
1976
|
<td style="padding:15px">getAllBYOIP(tenantNetworkId, callback)</td>
|
|
1949
|
-
<td style="padding:15px">
|
|
1977
|
+
<td style="padding:15px">getAllBYOIP</td>
|
|
1950
1978
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/byoips?{query}</td>
|
|
1951
1979
|
<td style="padding:15px">Yes</td>
|
|
1952
1980
|
</tr>
|
|
1953
1981
|
<tr>
|
|
1954
1982
|
<td style="padding:15px">createBYOIP(tenantNetworkId, body, callback)</td>
|
|
1955
|
-
<td style="padding:15px">
|
|
1983
|
+
<td style="padding:15px">createBYOIP</td>
|
|
1956
1984
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/byoips?{query}</td>
|
|
1957
1985
|
<td style="padding:15px">Yes</td>
|
|
1958
1986
|
</tr>
|
|
1959
1987
|
<tr>
|
|
1960
1988
|
<td style="padding:15px">deleteAllBYOIP(tenantNetworkId, callback)</td>
|
|
1961
|
-
<td style="padding:15px">
|
|
1989
|
+
<td style="padding:15px">deleteAllBYOIP</td>
|
|
1962
1990
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/byoips?{query}</td>
|
|
1963
1991
|
<td style="padding:15px">Yes</td>
|
|
1964
1992
|
</tr>
|
|
1965
1993
|
<tr>
|
|
1966
1994
|
<td style="padding:15px">getBYOIP(tenantNetworkId, byoipId, callback)</td>
|
|
1967
|
-
<td style="padding:15px">
|
|
1995
|
+
<td style="padding:15px">getBYOIP</td>
|
|
1968
1996
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/byoips/{pathv2}?{query}</td>
|
|
1969
1997
|
<td style="padding:15px">Yes</td>
|
|
1970
1998
|
</tr>
|
|
1971
1999
|
<tr>
|
|
1972
2000
|
<td style="padding:15px">updateBYOIP(tenantNetworkId, byoipId, body, callback)</td>
|
|
1973
|
-
<td style="padding:15px">
|
|
2001
|
+
<td style="padding:15px">updateBYOIP</td>
|
|
1974
2002
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/byoips/{pathv2}?{query}</td>
|
|
1975
2003
|
<td style="padding:15px">Yes</td>
|
|
1976
2004
|
</tr>
|
|
1977
2005
|
<tr>
|
|
1978
2006
|
<td style="padding:15px">deleteBYOIP(tenantNetworkId, byoipId, callback)</td>
|
|
1979
|
-
<td style="padding:15px">
|
|
2007
|
+
<td style="padding:15px">deleteBYOIP</td>
|
|
1980
2008
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/byoips/{pathv2}?{query}</td>
|
|
1981
2009
|
<td style="padding:15px">Yes</td>
|
|
1982
2010
|
</tr>
|
|
1983
2011
|
<tr>
|
|
1984
2012
|
<td style="padding:15px">getBYOIPReferences(tenantNetworkId, byoipId, callback)</td>
|
|
1985
|
-
<td style="padding:15px">
|
|
2013
|
+
<td style="padding:15px">getBYOIPReferences</td>
|
|
1986
2014
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/byoips/{pathv2}/references?{query}</td>
|
|
1987
2015
|
<td style="padding:15px">Yes</td>
|
|
1988
2016
|
</tr>
|
|
1989
2017
|
<tr>
|
|
1990
2018
|
<td style="padding:15px">getallcredentials(tenantNetworkId, callback)</td>
|
|
1991
|
-
<td style="padding:15px">
|
|
2019
|
+
<td style="padding:15px">getallcredentials</td>
|
|
1992
2020
|
<td style="padding:15px">{base_path}/{version}/credentials?{query}</td>
|
|
1993
2021
|
<td style="padding:15px">Yes</td>
|
|
1994
2022
|
</tr>
|
|
1995
2023
|
<tr>
|
|
1996
2024
|
<td style="padding:15px">addAWSVPCCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
1997
|
-
<td style="padding:15px">
|
|
2025
|
+
<td style="padding:15px">addAWSVPCCredentialsUsingPOST</td>
|
|
1998
2026
|
<td style="padding:15px">{base_path}/{version}/credentials/awsvpc?{query}</td>
|
|
1999
2027
|
<td style="padding:15px">Yes</td>
|
|
2000
2028
|
</tr>
|
|
2001
2029
|
<tr>
|
|
2002
2030
|
<td style="padding:15px">updateAWSVPCCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2003
|
-
<td style="padding:15px">
|
|
2031
|
+
<td style="padding:15px">updateAWSVPCCredentialsUsingPUT</td>
|
|
2004
2032
|
<td style="padding:15px">{base_path}/{version}/credentials/awsvpc/{pathv1}?{query}</td>
|
|
2005
2033
|
<td style="padding:15px">Yes</td>
|
|
2006
2034
|
</tr>
|
|
2007
2035
|
<tr>
|
|
2008
2036
|
<td style="padding:15px">deleteAwsVpcCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2009
|
-
<td style="padding:15px">
|
|
2037
|
+
<td style="padding:15px">deleteAwsVpcCredentialsUsingDELETE</td>
|
|
2010
2038
|
<td style="padding:15px">{base_path}/{version}/credentials/awsvpc/{pathv1}?{query}</td>
|
|
2011
2039
|
<td style="padding:15px">Yes</td>
|
|
2012
2040
|
</tr>
|
|
2013
2041
|
<tr>
|
|
2014
2042
|
<td style="padding:15px">addAzureCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2015
|
-
<td style="padding:15px">
|
|
2043
|
+
<td style="padding:15px">addAzureCredentialsUsingPOST</td>
|
|
2016
2044
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/credentials/azurevnet?{query}</td>
|
|
2017
2045
|
<td style="padding:15px">Yes</td>
|
|
2018
2046
|
</tr>
|
|
2019
2047
|
<tr>
|
|
2020
2048
|
<td style="padding:15px">updateAzureCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2021
|
-
<td style="padding:15px">
|
|
2049
|
+
<td style="padding:15px">updateAzureCredentialsUsingPUT</td>
|
|
2022
2050
|
<td style="padding:15px">{base_path}/{version}/credentials/azurevnet/{pathv1}?{query}</td>
|
|
2023
2051
|
<td style="padding:15px">Yes</td>
|
|
2024
2052
|
</tr>
|
|
2025
2053
|
<tr>
|
|
2026
2054
|
<td style="padding:15px">deleteAzureCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2027
|
-
<td style="padding:15px">
|
|
2055
|
+
<td style="padding:15px">deleteAzureCredentialsUsingDELETE</td>
|
|
2028
2056
|
<td style="padding:15px">{base_path}/{version}/credentials/azurevnet/{pathv1}?{query}</td>
|
|
2029
2057
|
<td style="padding:15px">Yes</td>
|
|
2030
2058
|
</tr>
|
|
2031
2059
|
<tr>
|
|
2032
2060
|
<td style="padding:15px">addOCIVCNCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2033
|
-
<td style="padding:15px">
|
|
2061
|
+
<td style="padding:15px">addOCIVCNCredentialsUsingPOST</td>
|
|
2034
2062
|
<td style="padding:15px">{base_path}/{version}/credentials/ocivcn?{query}</td>
|
|
2035
2063
|
<td style="padding:15px">Yes</td>
|
|
2036
2064
|
</tr>
|
|
2037
2065
|
<tr>
|
|
2038
2066
|
<td style="padding:15px">updateOCIVCNCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2039
|
-
<td style="padding:15px">
|
|
2067
|
+
<td style="padding:15px">updateOCIVCNCredentialsUsingPUT</td>
|
|
2040
2068
|
<td style="padding:15px">{base_path}/{version}/credentials/ocivcn/{pathv1}?{query}</td>
|
|
2041
2069
|
<td style="padding:15px">Yes</td>
|
|
2042
2070
|
</tr>
|
|
2043
2071
|
<tr>
|
|
2044
2072
|
<td style="padding:15px">deletePOCIVCNCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2045
|
-
<td style="padding:15px">
|
|
2073
|
+
<td style="padding:15px">deletePOCIVCNCredentialsUsingDELETE</td>
|
|
2046
2074
|
<td style="padding:15px">{base_path}/{version}/credentials/ocivcn/{pathv1}?{query}</td>
|
|
2047
2075
|
<td style="padding:15px">Yes</td>
|
|
2048
2076
|
</tr>
|
|
2049
2077
|
<tr>
|
|
2050
2078
|
<td style="padding:15px">addCiscoSDWANInstanceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2051
|
-
<td style="padding:15px">
|
|
2079
|
+
<td style="padding:15px">addCiscoSDWANInstanceCredentialsUsingPOST</td>
|
|
2052
2080
|
<td style="padding:15px">{base_path}/{version}/credentials/ciscosdwan?{query}</td>
|
|
2053
2081
|
<td style="padding:15px">Yes</td>
|
|
2054
2082
|
</tr>
|
|
2055
2083
|
<tr>
|
|
2056
2084
|
<td style="padding:15px">updateCiscoSDWANInstanceCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2057
|
-
<td style="padding:15px">
|
|
2085
|
+
<td style="padding:15px">updateCiscoSDWANInstanceCredentialsUsingPUT</td>
|
|
2058
2086
|
<td style="padding:15px">{base_path}/{version}/credentials/ciscosdwan/{pathv1}?{query}</td>
|
|
2059
2087
|
<td style="padding:15px">Yes</td>
|
|
2060
2088
|
</tr>
|
|
2061
2089
|
<tr>
|
|
2062
2090
|
<td style="padding:15px">deleteCiscosdwanCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2063
|
-
<td style="padding:15px">
|
|
2091
|
+
<td style="padding:15px">deleteCiscosdwanCredentialsUsingDELETE</td>
|
|
2064
2092
|
<td style="padding:15px">{base_path}/{version}/credentials/ciscosdwan/{pathv1}?{query}</td>
|
|
2065
2093
|
<td style="padding:15px">Yes</td>
|
|
2066
2094
|
</tr>
|
|
2067
2095
|
<tr>
|
|
2068
2096
|
<td style="padding:15px">addGCPCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2069
|
-
<td style="padding:15px">
|
|
2097
|
+
<td style="padding:15px">addGCPCredentialsUsingPOST</td>
|
|
2070
2098
|
<td style="padding:15px">{base_path}/{version}/credentials/gcpvpc?{query}</td>
|
|
2071
2099
|
<td style="padding:15px">Yes</td>
|
|
2072
2100
|
</tr>
|
|
2073
2101
|
<tr>
|
|
2074
2102
|
<td style="padding:15px">updateGCPCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2075
|
-
<td style="padding:15px">
|
|
2103
|
+
<td style="padding:15px">updateGCPCredentialsUsingPUT</td>
|
|
2076
2104
|
<td style="padding:15px">{base_path}/{version}/credentials/gcpvpc/{pathv1}?{query}</td>
|
|
2077
2105
|
<td style="padding:15px">Yes</td>
|
|
2078
2106
|
</tr>
|
|
2079
2107
|
<tr>
|
|
2080
2108
|
<td style="padding:15px">deleteGcpvpcCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2081
|
-
<td style="padding:15px">
|
|
2109
|
+
<td style="padding:15px">deleteGcpvpcCredentialsUsingDELETE</td>
|
|
2082
2110
|
<td style="padding:15px">{base_path}/{version}/credentials/gcpvpc/{pathv1}?{query}</td>
|
|
2083
2111
|
<td style="padding:15px">Yes</td>
|
|
2084
2112
|
</tr>
|
|
2085
2113
|
<tr>
|
|
2086
2114
|
<td style="padding:15px">addLDAPCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2087
|
-
<td style="padding:15px">
|
|
2115
|
+
<td style="padding:15px">addLDAPCredentialsUsingPOST</td>
|
|
2088
2116
|
<td style="padding:15px">{base_path}/{version}/credentials/ldap?{query}</td>
|
|
2089
2117
|
<td style="padding:15px">Yes</td>
|
|
2090
2118
|
</tr>
|
|
2091
2119
|
<tr>
|
|
2092
2120
|
<td style="padding:15px">updateLDAPCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2093
|
-
<td style="padding:15px">
|
|
2121
|
+
<td style="padding:15px">updateLDAPCredentialsUsingPUT</td>
|
|
2094
2122
|
<td style="padding:15px">{base_path}/{version}/credentials/ldap/{pathv1}?{query}</td>
|
|
2095
2123
|
<td style="padding:15px">Yes</td>
|
|
2096
2124
|
</tr>
|
|
2097
2125
|
<tr>
|
|
2098
2126
|
<td style="padding:15px">deleteLDAPCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2099
|
-
<td style="padding:15px">
|
|
2127
|
+
<td style="padding:15px">deleteLDAPCredentialsUsingDELETE</td>
|
|
2100
2128
|
<td style="padding:15px">{base_path}/{version}/credentials/ldap/{pathv1}?{query}</td>
|
|
2101
2129
|
<td style="padding:15px">Yes</td>
|
|
2102
2130
|
</tr>
|
|
2103
2131
|
<tr>
|
|
2104
2132
|
<td style="padding:15px">addPANCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2105
|
-
<td style="padding:15px">
|
|
2133
|
+
<td style="padding:15px">addPANCredentialsUsingPOST</td>
|
|
2106
2134
|
<td style="padding:15px">{base_path}/{version}/credentials/pan?{query}</td>
|
|
2107
2135
|
<td style="padding:15px">Yes</td>
|
|
2108
2136
|
</tr>
|
|
2109
2137
|
<tr>
|
|
2110
2138
|
<td style="padding:15px">updatePANCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2111
|
-
<td style="padding:15px">
|
|
2139
|
+
<td style="padding:15px">updatePANCredentialsUsingPUT</td>
|
|
2112
2140
|
<td style="padding:15px">{base_path}/{version}/credentials/pan/{pathv1}?{query}</td>
|
|
2113
2141
|
<td style="padding:15px">Yes</td>
|
|
2114
2142
|
</tr>
|
|
2115
2143
|
<tr>
|
|
2116
2144
|
<td style="padding:15px">deletePanCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2117
|
-
<td style="padding:15px">
|
|
2145
|
+
<td style="padding:15px">deletePanCredentialsUsingDELETE</td>
|
|
2118
2146
|
<td style="padding:15px">{base_path}/{version}/credentials/pan/{pathv1}?{query}</td>
|
|
2119
2147
|
<td style="padding:15px">Yes</td>
|
|
2120
2148
|
</tr>
|
|
2121
2149
|
<tr>
|
|
2122
2150
|
<td style="padding:15px">addPANInstanceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2123
|
-
<td style="padding:15px">
|
|
2151
|
+
<td style="padding:15px">addPANInstanceCredentialsUsingPOST</td>
|
|
2124
2152
|
<td style="padding:15px">{base_path}/{version}/credentials/paninstance?{query}</td>
|
|
2125
2153
|
<td style="padding:15px">Yes</td>
|
|
2126
2154
|
</tr>
|
|
2127
2155
|
<tr>
|
|
2128
2156
|
<td style="padding:15px">updatePANInstanceCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2129
|
-
<td style="padding:15px">
|
|
2157
|
+
<td style="padding:15px">updatePANInstanceCredentialsUsingPUT</td>
|
|
2130
2158
|
<td style="padding:15px">{base_path}/{version}/credentials/paninstance/{pathv1}?{query}</td>
|
|
2131
2159
|
<td style="padding:15px">Yes</td>
|
|
2132
2160
|
</tr>
|
|
2133
2161
|
<tr>
|
|
2134
2162
|
<td style="padding:15px">deletePanInstanceCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2135
|
-
<td style="padding:15px">
|
|
2163
|
+
<td style="padding:15px">deletePanInstanceCredentialsUsingDELETE</td>
|
|
2136
2164
|
<td style="padding:15px">{base_path}/{version}/credentials/paninstance/{pathv1}?{query}</td>
|
|
2137
2165
|
<td style="padding:15px">Yes</td>
|
|
2138
2166
|
</tr>
|
|
2139
2167
|
<tr>
|
|
2140
2168
|
<td style="padding:15px">addPANMasterKeyCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2141
|
-
<td style="padding:15px">
|
|
2169
|
+
<td style="padding:15px">addPANMasterKeyCredentialsUsingPOST</td>
|
|
2142
2170
|
<td style="padding:15px">{base_path}/{version}/credentials/pan-masterkey?{query}</td>
|
|
2143
2171
|
<td style="padding:15px">Yes</td>
|
|
2144
2172
|
</tr>
|
|
2145
2173
|
<tr>
|
|
2146
2174
|
<td style="padding:15px">updatePANMasterKeyCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2147
|
-
<td style="padding:15px">
|
|
2175
|
+
<td style="padding:15px">updatePANMasterKeyCredentialsUsingPUT</td>
|
|
2148
2176
|
<td style="padding:15px">{base_path}/{version}/credentials/pan-masterkey/{pathv1}?{query}</td>
|
|
2149
2177
|
<td style="padding:15px">Yes</td>
|
|
2150
2178
|
</tr>
|
|
2151
2179
|
<tr>
|
|
2152
2180
|
<td style="padding:15px">deletePanMasterKeyCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2153
|
-
<td style="padding:15px">
|
|
2181
|
+
<td style="padding:15px">deletePanMasterKeyCredentialsUsingDELETE</td>
|
|
2154
2182
|
<td style="padding:15px">{base_path}/{version}/credentials/pan-masterkey/{pathv1}?{query}</td>
|
|
2155
2183
|
<td style="padding:15px">Yes</td>
|
|
2156
2184
|
</tr>
|
|
2157
2185
|
<tr>
|
|
2158
2186
|
<td style="padding:15px">addPANRegistrationCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2159
|
-
<td style="padding:15px">
|
|
2187
|
+
<td style="padding:15px">addPANRegistrationCredentialsUsingPOST</td>
|
|
2160
2188
|
<td style="padding:15px">{base_path}/{version}/credentials/pan-registration?{query}</td>
|
|
2161
2189
|
<td style="padding:15px">Yes</td>
|
|
2162
2190
|
</tr>
|
|
2163
2191
|
<tr>
|
|
2164
2192
|
<td style="padding:15px">updatePANRegistrationCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2165
|
-
<td style="padding:15px">
|
|
2193
|
+
<td style="padding:15px">updatePANRegistrationCredentialsUsingPUT</td>
|
|
2166
2194
|
<td style="padding:15px">{base_path}/{version}/credentials/pan-registration/{pathv1}?{query}</td>
|
|
2167
2195
|
<td style="padding:15px">Yes</td>
|
|
2168
2196
|
</tr>
|
|
2169
2197
|
<tr>
|
|
2170
2198
|
<td style="padding:15px">deletePanRegistrationCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2171
|
-
<td style="padding:15px">
|
|
2199
|
+
<td style="padding:15px">deletePanRegistrationCredentialsUsingDELETE</td>
|
|
2172
2200
|
<td style="padding:15px">{base_path}/{version}/credentials/pan-registration/{pathv1}?{query}</td>
|
|
2173
2201
|
<td style="padding:15px">Yes</td>
|
|
2174
2202
|
</tr>
|
|
2175
2203
|
<tr>
|
|
2176
2204
|
<td style="padding:15px">addKeyPairCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2177
|
-
<td style="padding:15px">
|
|
2205
|
+
<td style="padding:15px">addKeyPairCredentialsUsingPOST</td>
|
|
2178
2206
|
<td style="padding:15px">{base_path}/{version}/credentials/keypair?{query}</td>
|
|
2179
2207
|
<td style="padding:15px">Yes</td>
|
|
2180
2208
|
</tr>
|
|
2181
2209
|
<tr>
|
|
2182
2210
|
<td style="padding:15px">deleteKeyPairCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2183
|
-
<td style="padding:15px">
|
|
2211
|
+
<td style="padding:15px">deleteKeyPairCredentialsUsingDELETE</td>
|
|
2184
2212
|
<td style="padding:15px">{base_path}/{version}/credentials/keypair/{pathv1}?{query}</td>
|
|
2185
2213
|
<td style="padding:15px">Yes</td>
|
|
2186
2214
|
</tr>
|
|
2187
2215
|
<tr>
|
|
2188
2216
|
<td style="padding:15px">addArubaEdgeConnectCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2189
|
-
<td style="padding:15px">
|
|
2217
|
+
<td style="padding:15px">addArubaEdgeConnectCredentialsUsingPOST</td>
|
|
2190
2218
|
<td style="padding:15px">{base_path}/{version}/credentials/aruba-edge-connector-instances?{query}</td>
|
|
2191
2219
|
<td style="padding:15px">Yes</td>
|
|
2192
2220
|
</tr>
|
|
2193
2221
|
<tr>
|
|
2194
2222
|
<td style="padding:15px">deleteArubaEdgeConnectCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2195
|
-
<td style="padding:15px">
|
|
2223
|
+
<td style="padding:15px">deleteArubaEdgeConnectCredentialsUsingDELETE</td>
|
|
2196
2224
|
<td style="padding:15px">{base_path}/{version}/credentials/aruba-edge-connector-instances/{pathv1}?{query}</td>
|
|
2197
2225
|
<td style="padding:15px">Yes</td>
|
|
2198
2226
|
</tr>
|
|
2199
2227
|
<tr>
|
|
2200
2228
|
<td style="padding:15px">addAkamaiProlexicCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2201
|
-
<td style="padding:15px">
|
|
2229
|
+
<td style="padding:15px">addAkamaiProlexicCredentialsUsingPOST</td>
|
|
2202
2230
|
<td style="padding:15px">{base_path}/{version}/credentials/akamai-prolexic?{query}</td>
|
|
2203
2231
|
<td style="padding:15px">Yes</td>
|
|
2204
2232
|
</tr>
|
|
2205
2233
|
<tr>
|
|
2206
2234
|
<td style="padding:15px">deleteAkamaiProlexicCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2207
|
-
<td style="padding:15px">
|
|
2235
|
+
<td style="padding:15px">deleteAkamaiProlexicCredentialsUsingDELETE</td>
|
|
2208
2236
|
<td style="padding:15px">{base_path}/{version}/credentials/akamai-prolexic/{pathv1}?{query}</td>
|
|
2209
2237
|
<td style="padding:15px">Yes</td>
|
|
2210
2238
|
</tr>
|
|
2211
2239
|
<tr>
|
|
2212
2240
|
<td style="padding:15px">addCheckPointFWServiceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2213
|
-
<td style="padding:15px">
|
|
2241
|
+
<td style="padding:15px">addCheckPointFWServiceCredentialsUsingPOST</td>
|
|
2214
2242
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw?{query}</td>
|
|
2215
2243
|
<td style="padding:15px">Yes</td>
|
|
2216
2244
|
</tr>
|
|
2217
2245
|
<tr>
|
|
2218
2246
|
<td style="padding:15px">updateCheckPointFWServiceCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2219
|
-
<td style="padding:15px">
|
|
2247
|
+
<td style="padding:15px">updateCheckPointFWServiceCredentialsUsingPUT</td>
|
|
2220
2248
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw/{pathv1}?{query}</td>
|
|
2221
2249
|
<td style="padding:15px">Yes</td>
|
|
2222
2250
|
</tr>
|
|
2223
2251
|
<tr>
|
|
2224
2252
|
<td style="padding:15px">deletePCheckPointFWServiceCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2225
|
-
<td style="padding:15px">
|
|
2253
|
+
<td style="padding:15px">deletePCheckPointFWServiceCredentialsUsingDELETE</td>
|
|
2226
2254
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw/{pathv1}?{query}</td>
|
|
2227
2255
|
<td style="padding:15px">Yes</td>
|
|
2228
2256
|
</tr>
|
|
2229
2257
|
<tr>
|
|
2230
2258
|
<td style="padding:15px">addCheckPointFWServiceInstanceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2231
|
-
<td style="padding:15px">
|
|
2259
|
+
<td style="padding:15px">addCheckPointFWServiceInstanceCredentialsUsingPOST</td>
|
|
2232
2260
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw-instance?{query}</td>
|
|
2233
2261
|
<td style="padding:15px">Yes</td>
|
|
2234
2262
|
</tr>
|
|
2235
2263
|
<tr>
|
|
2236
2264
|
<td style="padding:15px">updateCheckPointFWServiceInstanceCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2237
|
-
<td style="padding:15px">
|
|
2265
|
+
<td style="padding:15px">updateCheckPointFWServiceInstanceCredentialsUsingPUT</td>
|
|
2238
2266
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw-instance/{pathv1}?{query}</td>
|
|
2239
2267
|
<td style="padding:15px">Yes</td>
|
|
2240
2268
|
</tr>
|
|
2241
2269
|
<tr>
|
|
2242
2270
|
<td style="padding:15px">deletePCheckPointFWServiceInstanceCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2243
|
-
<td style="padding:15px">
|
|
2271
|
+
<td style="padding:15px">deletePCheckPointFWServiceInstanceCredentialsUsingDELETE</td>
|
|
2244
2272
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw-instance/{pathv1}?{query}</td>
|
|
2245
2273
|
<td style="padding:15px">Yes</td>
|
|
2246
2274
|
</tr>
|
|
2247
2275
|
<tr>
|
|
2248
2276
|
<td style="padding:15px">addCheckPointFWManagementServerCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2249
|
-
<td style="padding:15px">
|
|
2277
|
+
<td style="padding:15px">addCheckPointFWManagementServerCredentialsUsingPOST</td>
|
|
2250
2278
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw-management-server?{query}</td>
|
|
2251
2279
|
<td style="padding:15px">Yes</td>
|
|
2252
2280
|
</tr>
|
|
2253
2281
|
<tr>
|
|
2254
2282
|
<td style="padding:15px">updateCheckPointFWManagementServerCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2255
|
-
<td style="padding:15px">
|
|
2283
|
+
<td style="padding:15px">updateCheckPointFWManagementServerCredentialsUsingPUT</td>
|
|
2256
2284
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw-management-server/{pathv1}?{query}</td>
|
|
2257
2285
|
<td style="padding:15px">Yes</td>
|
|
2258
2286
|
</tr>
|
|
2259
2287
|
<tr>
|
|
2260
2288
|
<td style="padding:15px">deletePCheckPointFWManagementServerCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2261
|
-
<td style="padding:15px">
|
|
2289
|
+
<td style="padding:15px">deletePCheckPointFWManagementServerCredentialsUsingDELETE</td>
|
|
2262
2290
|
<td style="padding:15px">{base_path}/{version}/credentials/chkp-fw-management-server/{pathv1}?{query}</td>
|
|
2263
2291
|
<td style="padding:15px">Yes</td>
|
|
2264
2292
|
</tr>
|
|
2265
2293
|
<tr>
|
|
2266
2294
|
<td style="padding:15px">addUsernamePasswordCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2267
|
-
<td style="padding:15px">
|
|
2295
|
+
<td style="padding:15px">addUsernamePasswordCredentialsUsingPOST</td>
|
|
2268
2296
|
<td style="padding:15px">{base_path}/{version}/credentials/username-password?{query}</td>
|
|
2269
2297
|
<td style="padding:15px">Yes</td>
|
|
2270
2298
|
</tr>
|
|
2271
2299
|
<tr>
|
|
2272
2300
|
<td style="padding:15px">updateUsernamePasswordCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2273
|
-
<td style="padding:15px">
|
|
2301
|
+
<td style="padding:15px">updateUsernamePasswordCredentialsUsingPUT</td>
|
|
2274
2302
|
<td style="padding:15px">{base_path}/{version}/credentials/username-password/{pathv1}?{query}</td>
|
|
2275
2303
|
<td style="padding:15px">Yes</td>
|
|
2276
2304
|
</tr>
|
|
2277
2305
|
<tr>
|
|
2278
2306
|
<td style="padding:15px">deleteUsernamePasswordCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2279
|
-
<td style="padding:15px">
|
|
2307
|
+
<td style="padding:15px">deleteUsernamePasswordCredentialsUsingDELETE</td>
|
|
2280
2308
|
<td style="padding:15px">{base_path}/{version}/credentials/username-password/{pathv1}?{query}</td>
|
|
2281
2309
|
<td style="padding:15px">Yes</td>
|
|
2282
2310
|
</tr>
|
|
2283
2311
|
<tr>
|
|
2284
2312
|
<td style="padding:15px">addSplunkHECTokenCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2285
|
-
<td style="padding:15px">
|
|
2313
|
+
<td style="padding:15px">addSplunkHECTokenCredentialsUsingPOST</td>
|
|
2286
2314
|
<td style="padding:15px">{base_path}/{version}/credentials/splunk-hec-token?{query}</td>
|
|
2287
2315
|
<td style="padding:15px">Yes</td>
|
|
2288
2316
|
</tr>
|
|
2289
2317
|
<tr>
|
|
2290
2318
|
<td style="padding:15px">updateSplunkHECTokenCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2291
|
-
<td style="padding:15px">
|
|
2319
|
+
<td style="padding:15px">updateSplunkHECTokenCredentialsUsingPUT</td>
|
|
2292
2320
|
<td style="padding:15px">{base_path}/{version}/credentials/splunk-hec-token/{pathv1}?{query}</td>
|
|
2293
2321
|
<td style="padding:15px">Yes</td>
|
|
2294
2322
|
</tr>
|
|
2295
2323
|
<tr>
|
|
2296
2324
|
<td style="padding:15px">deleteSplunkHECTokenCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2297
|
-
<td style="padding:15px">
|
|
2325
|
+
<td style="padding:15px">deleteSplunkHECTokenCredentialsUsingDELETE</td>
|
|
2298
2326
|
<td style="padding:15px">{base_path}/{version}/credentials/splunk-hec-token/{pathv1}?{query}</td>
|
|
2299
2327
|
<td style="padding:15px">Yes</td>
|
|
2300
2328
|
</tr>
|
|
2301
2329
|
<tr>
|
|
2302
2330
|
<td style="padding:15px">addFtntFWServiceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2303
|
-
<td style="padding:15px">
|
|
2331
|
+
<td style="padding:15px">addFtntFWServiceCredentialsUsingPOST</td>
|
|
2304
2332
|
<td style="padding:15px">{base_path}/{version}/credentials/ftntfw?{query}</td>
|
|
2305
2333
|
<td style="padding:15px">Yes</td>
|
|
2306
2334
|
</tr>
|
|
2307
2335
|
<tr>
|
|
2308
2336
|
<td style="padding:15px">updateFtntFWServiceCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2309
|
-
<td style="padding:15px">
|
|
2337
|
+
<td style="padding:15px">updateFtntFWServiceCredentialsUsingPUT</td>
|
|
2310
2338
|
<td style="padding:15px">{base_path}/{version}/credentials/ftntfw/{pathv1}?{query}</td>
|
|
2311
2339
|
<td style="padding:15px">Yes</td>
|
|
2312
2340
|
</tr>
|
|
2313
2341
|
<tr>
|
|
2314
2342
|
<td style="padding:15px">deleteFtntFWServiceCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2315
|
-
<td style="padding:15px">
|
|
2343
|
+
<td style="padding:15px">deleteFtntFWServiceCredentialsUsingDELETE</td>
|
|
2316
2344
|
<td style="padding:15px">{base_path}/{version}/credentials/ftntfw/{pathv1}?{query}</td>
|
|
2317
2345
|
<td style="padding:15px">Yes</td>
|
|
2318
2346
|
</tr>
|
|
2319
2347
|
<tr>
|
|
2320
2348
|
<td style="padding:15px">addFtntFWServiceInstanceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2321
|
-
<td style="padding:15px">
|
|
2349
|
+
<td style="padding:15px">addFtntFWServiceInstanceCredentialsUsingPOST</td>
|
|
2322
2350
|
<td style="padding:15px">{base_path}/{version}/credentials/ftntfw-instance?{query}</td>
|
|
2323
2351
|
<td style="padding:15px">Yes</td>
|
|
2324
2352
|
</tr>
|
|
2325
2353
|
<tr>
|
|
2326
2354
|
<td style="padding:15px">updateFtntFWServiceInstanceCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2327
|
-
<td style="padding:15px">
|
|
2355
|
+
<td style="padding:15px">updateFtntFWServiceInstanceCredentialsUsingPUT</td>
|
|
2328
2356
|
<td style="padding:15px">{base_path}/{version}/credentials/ftntfw-instance/{pathv1}?{query}</td>
|
|
2329
2357
|
<td style="padding:15px">Yes</td>
|
|
2330
2358
|
</tr>
|
|
2331
2359
|
<tr>
|
|
2332
2360
|
<td style="padding:15px">deleteFtntFWServiceInstanceCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2333
|
-
<td style="padding:15px">
|
|
2361
|
+
<td style="padding:15px">deleteFtntFWServiceInstanceCredentialsUsingDELETE</td>
|
|
2334
2362
|
<td style="padding:15px">{base_path}/{version}/credentials/ftntfw-instance/{pathv1}?{query}</td>
|
|
2335
2363
|
<td style="padding:15px">Yes</td>
|
|
2336
2364
|
</tr>
|
|
2337
2365
|
<tr>
|
|
2338
2366
|
<td style="padding:15px">addCiscoFTDvFWCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2339
|
-
<td style="padding:15px">
|
|
2367
|
+
<td style="padding:15px">addCiscoFTDvFWCredentialsUsingPOST</td>
|
|
2340
2368
|
<td style="padding:15px">{base_path}/{version}/credentials/cisco-ftdv-fw?{query}</td>
|
|
2341
2369
|
<td style="padding:15px">Yes</td>
|
|
2342
2370
|
</tr>
|
|
2343
2371
|
<tr>
|
|
2344
2372
|
<td style="padding:15px">updateCiscoFTDvFWCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2345
|
-
<td style="padding:15px">
|
|
2373
|
+
<td style="padding:15px">updateCiscoFTDvFWCredentialsUsingPUT</td>
|
|
2346
2374
|
<td style="padding:15px">{base_path}/{version}/credentials/cisco-ftdv-fw/{pathv1}?{query}</td>
|
|
2347
2375
|
<td style="padding:15px">Yes</td>
|
|
2348
2376
|
</tr>
|
|
2349
2377
|
<tr>
|
|
2350
2378
|
<td style="padding:15px">deleteCiscoFTDvFWCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2351
|
-
<td style="padding:15px">
|
|
2379
|
+
<td style="padding:15px">deleteCiscoFTDvFWCredentialsUsingDELETE</td>
|
|
2352
2380
|
<td style="padding:15px">{base_path}/{version}/credentials/cisco-ftdv-fw/{pathv1}?{query}</td>
|
|
2353
2381
|
<td style="padding:15px">Yes</td>
|
|
2354
2382
|
</tr>
|
|
2355
2383
|
<tr>
|
|
2356
2384
|
<td style="padding:15px">addCiscoFTDvFWInstanceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2357
|
-
<td style="padding:15px">
|
|
2385
|
+
<td style="padding:15px">addCiscoFTDvFWInstanceCredentialsUsingPOST</td>
|
|
2358
2386
|
<td style="padding:15px">{base_path}/{version}/credentials/cisco-ftdv-fw-instance?{query}</td>
|
|
2359
2387
|
<td style="padding:15px">Yes</td>
|
|
2360
2388
|
</tr>
|
|
2361
2389
|
<tr>
|
|
2362
2390
|
<td style="padding:15px">updateCiscoFTDvFWInstanceCredentialsUsingPUT(tenantNetworkId, credentialId, body, callback)</td>
|
|
2363
|
-
<td style="padding:15px">
|
|
2391
|
+
<td style="padding:15px">updateCiscoFTDvFWInstanceCredentialsUsingPUT</td>
|
|
2364
2392
|
<td style="padding:15px">{base_path}/{version}/credentials/cisco-ftdv-fw-instance/{pathv1}?{query}</td>
|
|
2365
2393
|
<td style="padding:15px">Yes</td>
|
|
2366
2394
|
</tr>
|
|
2367
2395
|
<tr>
|
|
2368
2396
|
<td style="padding:15px">deleteCiscoFTDvFWInstanceCredentialsUsingDELETE(tenantNetworkId, credentialId, force, callback)</td>
|
|
2369
|
-
<td style="padding:15px">
|
|
2397
|
+
<td style="padding:15px">deleteCiscoFTDvFWInstanceCredentialsUsingDELETE</td>
|
|
2370
2398
|
<td style="padding:15px">{base_path}/{version}/credentials/cisco-ftdv-fw-instance/{pathv1}?{query}</td>
|
|
2371
2399
|
<td style="padding:15px">Yes</td>
|
|
2372
2400
|
</tr>
|
|
2373
2401
|
<tr>
|
|
2374
2402
|
<td style="padding:15px">addInfoBloxCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2375
|
-
<td style="padding:15px">
|
|
2403
|
+
<td style="padding:15px">addInfoBloxCredentialsUsingPOST</td>
|
|
2376
2404
|
<td style="padding:15px">{base_path}/{version}/credentials/infoblox?{query}</td>
|
|
2377
2405
|
<td style="padding:15px">Yes</td>
|
|
2378
2406
|
</tr>
|
|
2379
2407
|
<tr>
|
|
2380
2408
|
<td style="padding:15px">addInfoBloxInstanceCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2381
|
-
<td style="padding:15px">
|
|
2409
|
+
<td style="padding:15px">addInfoBloxInstanceCredentialsUsingPOST</td>
|
|
2382
2410
|
<td style="padding:15px">{base_path}/{version}/credentials/infoblox-instance?{query}</td>
|
|
2383
2411
|
<td style="padding:15px">Yes</td>
|
|
2384
2412
|
</tr>
|
|
2385
2413
|
<tr>
|
|
2386
2414
|
<td style="padding:15px">addInfoBloxGridMasterCredentialsUsingPOST(tenantNetworkId, body, callback)</td>
|
|
2387
|
-
<td style="padding:15px">
|
|
2415
|
+
<td style="padding:15px">addInfoBloxGridMasterCredentialsUsingPOST</td>
|
|
2388
2416
|
<td style="padding:15px">{base_path}/{version}/credentials/infoblox-grid-master?{query}</td>
|
|
2389
2417
|
<td style="padding:15px">Yes</td>
|
|
2390
2418
|
</tr>
|
|
2391
2419
|
<tr>
|
|
2392
2420
|
<td style="padding:15px">getAllUnexpiredOTP(callback)</td>
|
|
2393
|
-
<td style="padding:15px">
|
|
2421
|
+
<td style="padding:15px">getAllUnexpiredOTP</td>
|
|
2394
2422
|
<td style="padding:15px">{base_path}/{version}/otps?{query}</td>
|
|
2395
2423
|
<td style="padding:15px">Yes</td>
|
|
2396
2424
|
</tr>
|
|
2397
2425
|
<tr>
|
|
2398
2426
|
<td style="padding:15px">createOneTimePassword(body, callback)</td>
|
|
2399
|
-
<td style="padding:15px">
|
|
2427
|
+
<td style="padding:15px">createOneTimePassword</td>
|
|
2400
2428
|
<td style="padding:15px">{base_path}/{version}/otps?{query}</td>
|
|
2401
2429
|
<td style="padding:15px">Yes</td>
|
|
2402
2430
|
</tr>
|
|
2403
2431
|
<tr>
|
|
2404
2432
|
<td style="padding:15px">deleteValidOneTimePasswords(callback)</td>
|
|
2405
|
-
<td style="padding:15px">
|
|
2433
|
+
<td style="padding:15px">deleteValidOneTimePasswords</td>
|
|
2406
2434
|
<td style="padding:15px">{base_path}/{version}/otps?{query}</td>
|
|
2407
2435
|
<td style="padding:15px">Yes</td>
|
|
2408
2436
|
</tr>
|
|
2409
2437
|
<tr>
|
|
2410
2438
|
<td style="padding:15px">deleteOneTimePasswordById(otpId, callback)</td>
|
|
2411
|
-
<td style="padding:15px">
|
|
2439
|
+
<td style="padding:15px">deleteOneTimePasswordById</td>
|
|
2412
2440
|
<td style="padding:15px">{base_path}/{version}/otps/{pathv1}?{query}</td>
|
|
2413
2441
|
<td style="padding:15px">Yes</td>
|
|
2414
2442
|
</tr>
|
|
2415
2443
|
<tr>
|
|
2416
2444
|
<td style="padding:15px">getLoginSpecification(callback)</td>
|
|
2417
|
-
<td style="padding:15px">
|
|
2445
|
+
<td style="padding:15px">getLoginSpecification</td>
|
|
2418
2446
|
<td style="padding:15px">{base_path}/{version}/login-specification?{query}</td>
|
|
2419
2447
|
<td style="padding:15px">Yes</td>
|
|
2420
2448
|
</tr>
|
|
2421
2449
|
<tr>
|
|
2422
2450
|
<td style="padding:15px">createOrUpdateLoginSpecification(body, callback)</td>
|
|
2423
|
-
<td style="padding:15px">
|
|
2451
|
+
<td style="padding:15px">createOrUpdateLoginSpecification</td>
|
|
2424
2452
|
<td style="padding:15px">{base_path}/{version}/login-specification?{query}</td>
|
|
2425
2453
|
<td style="padding:15px">Yes</td>
|
|
2426
2454
|
</tr>
|
|
2427
2455
|
<tr>
|
|
2428
2456
|
<td style="padding:15px">deleteLoginSpecification(callback)</td>
|
|
2429
|
-
<td style="padding:15px">
|
|
2457
|
+
<td style="padding:15px">deleteLoginSpecification</td>
|
|
2430
2458
|
<td style="padding:15px">{base_path}/{version}/login-specification?{query}</td>
|
|
2431
2459
|
<td style="padding:15px">Yes</td>
|
|
2432
2460
|
</tr>
|
|
2433
2461
|
<tr>
|
|
2434
2462
|
<td style="padding:15px">getPasswordSpecification(callback)</td>
|
|
2435
|
-
<td style="padding:15px">
|
|
2463
|
+
<td style="padding:15px">getPasswordSpecification</td>
|
|
2436
2464
|
<td style="padding:15px">{base_path}/{version}/password-specification?{query}</td>
|
|
2437
2465
|
<td style="padding:15px">Yes</td>
|
|
2438
2466
|
</tr>
|
|
2439
2467
|
<tr>
|
|
2440
2468
|
<td style="padding:15px">createOrUpdatePasswordSpecification(body, callback)</td>
|
|
2441
|
-
<td style="padding:15px">
|
|
2469
|
+
<td style="padding:15px">createOrUpdatePasswordSpecification</td>
|
|
2442
2470
|
<td style="padding:15px">{base_path}/{version}/password-specification?{query}</td>
|
|
2443
2471
|
<td style="padding:15px">Yes</td>
|
|
2444
2472
|
</tr>
|
|
2445
2473
|
<tr>
|
|
2446
2474
|
<td style="padding:15px">deletePasswordSpecification(callback)</td>
|
|
2447
|
-
<td style="padding:15px">
|
|
2475
|
+
<td style="padding:15px">deletePasswordSpecification</td>
|
|
2448
2476
|
<td style="padding:15px">{base_path}/{version}/password-specification?{query}</td>
|
|
2449
2477
|
<td style="padding:15px">Yes</td>
|
|
2450
2478
|
</tr>
|
|
2451
2479
|
<tr>
|
|
2452
2480
|
<td style="padding:15px">getAllRoutePolicies(tenantNetworkId, callback)</td>
|
|
2453
|
-
<td style="padding:15px">
|
|
2481
|
+
<td style="padding:15px">getAllRoutePolicies</td>
|
|
2454
2482
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/route-policies?{query}</td>
|
|
2455
2483
|
<td style="padding:15px">Yes</td>
|
|
2456
2484
|
</tr>
|
|
2457
2485
|
<tr>
|
|
2458
2486
|
<td style="padding:15px">createRoutePolicies(tenantNetworkId, body, callback)</td>
|
|
2459
|
-
<td style="padding:15px">
|
|
2487
|
+
<td style="padding:15px">createRoutePolicies</td>
|
|
2460
2488
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/route-policies?{query}</td>
|
|
2461
2489
|
<td style="padding:15px">Yes</td>
|
|
2462
2490
|
</tr>
|
|
2463
2491
|
<tr>
|
|
2464
2492
|
<td style="padding:15px">deleteAllRoutePolicies(tenantNetworkId, callback)</td>
|
|
2465
|
-
<td style="padding:15px">
|
|
2493
|
+
<td style="padding:15px">deleteAllRoutePolicies</td>
|
|
2466
2494
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/route-policies?{query}</td>
|
|
2467
2495
|
<td style="padding:15px">Yes</td>
|
|
2468
2496
|
</tr>
|
|
2469
2497
|
<tr>
|
|
2470
2498
|
<td style="padding:15px">getRoutePolicy(tenantNetworkId, routePolicyId, callback)</td>
|
|
2471
|
-
<td style="padding:15px">
|
|
2499
|
+
<td style="padding:15px">getRoutePolicy</td>
|
|
2472
2500
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/route-policies/{pathv2}?{query}</td>
|
|
2473
2501
|
<td style="padding:15px">Yes</td>
|
|
2474
2502
|
</tr>
|
|
2475
2503
|
<tr>
|
|
2476
2504
|
<td style="padding:15px">updateRoutePolicy(tenantNetworkId, routePolicyId, body, callback)</td>
|
|
2477
|
-
<td style="padding:15px">
|
|
2505
|
+
<td style="padding:15px">updateRoutePolicy</td>
|
|
2478
2506
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/route-policies/{pathv2}?{query}</td>
|
|
2479
2507
|
<td style="padding:15px">Yes</td>
|
|
2480
2508
|
</tr>
|
|
2481
2509
|
<tr>
|
|
2482
2510
|
<td style="padding:15px">deleteRoutePolicy(tenantNetworkId, routePolicyId, callback)</td>
|
|
2483
|
-
<td style="padding:15px">
|
|
2511
|
+
<td style="padding:15px">deleteRoutePolicy</td>
|
|
2484
2512
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/route-policies/{pathv2}?{query}</td>
|
|
2485
2513
|
<td style="padding:15px">Yes</td>
|
|
2486
2514
|
</tr>
|
|
2487
2515
|
<tr>
|
|
2488
2516
|
<td style="padding:15px">getInvoiceDetails(fromYearMonth, page, size, sort, toYearMonth, callback)</td>
|
|
2489
|
-
<td style="padding:15px">
|
|
2517
|
+
<td style="padding:15px">getInvoiceDetails</td>
|
|
2490
2518
|
<td style="padding:15px">{base_path}/{version}/invoices?{query}</td>
|
|
2491
2519
|
<td style="padding:15px">Yes</td>
|
|
2492
2520
|
</tr>
|
|
2493
2521
|
<tr>
|
|
2494
2522
|
<td style="padding:15px">getInvoiceDetail(invoiceId, callback)</td>
|
|
2495
|
-
<td style="padding:15px">
|
|
2523
|
+
<td style="padding:15px">getInvoiceDetail</td>
|
|
2496
2524
|
<td style="padding:15px">{base_path}/{version}/invoices/{pathv1}?{query}</td>
|
|
2497
2525
|
<td style="padding:15px">Yes</td>
|
|
2498
2526
|
</tr>
|
|
2499
2527
|
<tr>
|
|
2500
2528
|
<td style="padding:15px">getMeters(fromYearMonth, page, size, sort, toYearMonth, callback)</td>
|
|
2501
|
-
<td style="padding:15px">
|
|
2529
|
+
<td style="padding:15px">getMeters</td>
|
|
2502
2530
|
<td style="padding:15px">{base_path}/{version}/meters?{query}</td>
|
|
2503
2531
|
<td style="padding:15px">Yes</td>
|
|
2504
2532
|
</tr>
|
|
2505
2533
|
<tr>
|
|
2506
2534
|
<td style="padding:15px">getMeterItems(meterId, page, size, sort, callback)</td>
|
|
2507
|
-
<td style="padding:15px">
|
|
2535
|
+
<td style="padding:15px">getMeterItems</td>
|
|
2508
2536
|
<td style="padding:15px">{base_path}/{version}/meters/{pathv1}/items?{query}</td>
|
|
2509
2537
|
<td style="padding:15px">Yes</td>
|
|
2510
2538
|
</tr>
|
|
2511
2539
|
<tr>
|
|
2512
2540
|
<td style="padding:15px">getRoutes(tenantNetworkId, type = received, cxp, segmentName, segmentId, connectorId, search, lpmPrefix, prefixType, offset, limit, callback)</td>
|
|
2513
|
-
<td style="padding:15px">
|
|
2541
|
+
<td style="padding:15px">getRoutes</td>
|
|
2514
2542
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/routes?{query}</td>
|
|
2515
2543
|
<td style="padding:15px">Yes</td>
|
|
2516
2544
|
</tr>
|
|
2517
2545
|
<tr>
|
|
2518
2546
|
<td style="padding:15px">getPolicies(tenantNetworkId, fromConnector, toConnector, callback)</td>
|
|
2519
|
-
<td style="padding:15px">
|
|
2547
|
+
<td style="padding:15px">getPolicies</td>
|
|
2520
2548
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/policies?{query}</td>
|
|
2521
2549
|
<td style="padding:15px">Yes</td>
|
|
2522
2550
|
</tr>
|
|
2523
2551
|
<tr>
|
|
2524
2552
|
<td style="padding:15px">createPolicy(tenantNetworkId, body, callback)</td>
|
|
2525
|
-
<td style="padding:15px">
|
|
2553
|
+
<td style="padding:15px">createPolicy</td>
|
|
2526
2554
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/policies?{query}</td>
|
|
2527
2555
|
<td style="padding:15px">Yes</td>
|
|
2528
2556
|
</tr>
|
|
2529
2557
|
<tr>
|
|
2530
2558
|
<td style="padding:15px">getPolicy(tenantNetworkId, id, callback)</td>
|
|
2531
|
-
<td style="padding:15px">
|
|
2559
|
+
<td style="padding:15px">getPolicy</td>
|
|
2532
2560
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/policies/{pathv2}?{query}</td>
|
|
2533
2561
|
<td style="padding:15px">Yes</td>
|
|
2534
2562
|
</tr>
|
|
2535
2563
|
<tr>
|
|
2536
2564
|
<td style="padding:15px">updatePolicy(tenantNetworkId, id, body, callback)</td>
|
|
2537
|
-
<td style="padding:15px">
|
|
2565
|
+
<td style="padding:15px">updatePolicy</td>
|
|
2538
2566
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/policies/{pathv2}?{query}</td>
|
|
2539
2567
|
<td style="padding:15px">Yes</td>
|
|
2540
2568
|
</tr>
|
|
2541
2569
|
<tr>
|
|
2542
2570
|
<td style="padding:15px">deletePolicy(tenantNetworkId, id, callback)</td>
|
|
2543
|
-
<td style="padding:15px">
|
|
2571
|
+
<td style="padding:15px">deletePolicy</td>
|
|
2544
2572
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/policies/{pathv2}?{query}</td>
|
|
2545
2573
|
<td style="padding:15px">Yes</td>
|
|
2546
2574
|
</tr>
|
|
2547
2575
|
<tr>
|
|
2548
2576
|
<td style="padding:15px">getRules(tenantNetworkId, callback)</td>
|
|
2549
|
-
<td style="padding:15px">
|
|
2577
|
+
<td style="padding:15px">getRules</td>
|
|
2550
2578
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rules?{query}</td>
|
|
2551
2579
|
<td style="padding:15px">Yes</td>
|
|
2552
2580
|
</tr>
|
|
2553
2581
|
<tr>
|
|
2554
2582
|
<td style="padding:15px">createRule(tenantNetworkId, body, callback)</td>
|
|
2555
|
-
<td style="padding:15px">
|
|
2583
|
+
<td style="padding:15px">createRule</td>
|
|
2556
2584
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rules?{query}</td>
|
|
2557
2585
|
<td style="padding:15px">Yes</td>
|
|
2558
2586
|
</tr>
|
|
2559
2587
|
<tr>
|
|
2560
2588
|
<td style="padding:15px">getRule(tenantNetworkId, id, callback)</td>
|
|
2561
|
-
<td style="padding:15px">
|
|
2589
|
+
<td style="padding:15px">getRule</td>
|
|
2562
2590
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rules/{pathv2}?{query}</td>
|
|
2563
2591
|
<td style="padding:15px">Yes</td>
|
|
2564
2592
|
</tr>
|
|
2565
2593
|
<tr>
|
|
2566
2594
|
<td style="padding:15px">updateRule(tenantNetworkId, id, body, callback)</td>
|
|
2567
|
-
<td style="padding:15px">
|
|
2595
|
+
<td style="padding:15px">updateRule</td>
|
|
2568
2596
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rules/{pathv2}?{query}</td>
|
|
2569
2597
|
<td style="padding:15px">Yes</td>
|
|
2570
2598
|
</tr>
|
|
2571
2599
|
<tr>
|
|
2572
2600
|
<td style="padding:15px">deleteRule(tenantNetworkId, id, callback)</td>
|
|
2573
|
-
<td style="padding:15px">
|
|
2601
|
+
<td style="padding:15px">deleteRule</td>
|
|
2574
2602
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rules/{pathv2}?{query}</td>
|
|
2575
2603
|
<td style="padding:15px">Yes</td>
|
|
2576
2604
|
</tr>
|
|
2577
2605
|
<tr>
|
|
2578
2606
|
<td style="padding:15px">getRulelists(tenantNetworkId, callback)</td>
|
|
2579
|
-
<td style="padding:15px">
|
|
2607
|
+
<td style="padding:15px">getRulelists</td>
|
|
2580
2608
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rulelists?{query}</td>
|
|
2581
2609
|
<td style="padding:15px">Yes</td>
|
|
2582
2610
|
</tr>
|
|
2583
2611
|
<tr>
|
|
2584
2612
|
<td style="padding:15px">createRulelist(tenantNetworkId, body, callback)</td>
|
|
2585
|
-
<td style="padding:15px">
|
|
2613
|
+
<td style="padding:15px">createRulelist</td>
|
|
2586
2614
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rulelists?{query}</td>
|
|
2587
2615
|
<td style="padding:15px">Yes</td>
|
|
2588
2616
|
</tr>
|
|
2589
2617
|
<tr>
|
|
2590
2618
|
<td style="padding:15px">getRulelist(tenantNetworkId, id, callback)</td>
|
|
2591
|
-
<td style="padding:15px">
|
|
2619
|
+
<td style="padding:15px">getRulelist</td>
|
|
2592
2620
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rulelists/{pathv2}?{query}</td>
|
|
2593
2621
|
<td style="padding:15px">Yes</td>
|
|
2594
2622
|
</tr>
|
|
2595
2623
|
<tr>
|
|
2596
2624
|
<td style="padding:15px">updateRulelist(tenantNetworkId, id, body, callback)</td>
|
|
2597
|
-
<td style="padding:15px">
|
|
2625
|
+
<td style="padding:15px">updateRulelist</td>
|
|
2598
2626
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rulelists/{pathv2}?{query}</td>
|
|
2599
2627
|
<td style="padding:15px">Yes</td>
|
|
2600
2628
|
</tr>
|
|
2601
2629
|
<tr>
|
|
2602
2630
|
<td style="padding:15px">deleteRulelist(tenantNetworkId, id, callback)</td>
|
|
2603
|
-
<td style="padding:15px">
|
|
2631
|
+
<td style="padding:15px">deleteRulelist</td>
|
|
2604
2632
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/rulelists/{pathv2}?{query}</td>
|
|
2605
2633
|
<td style="padding:15px">Yes</td>
|
|
2606
2634
|
</tr>
|
|
2607
2635
|
<tr>
|
|
2608
2636
|
<td style="padding:15px">getPrefixlists(tenantNetworkId, callback)</td>
|
|
2609
|
-
<td style="padding:15px">
|
|
2637
|
+
<td style="padding:15px">getPrefixlists</td>
|
|
2610
2638
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/prefixlists?{query}</td>
|
|
2611
2639
|
<td style="padding:15px">Yes</td>
|
|
2612
2640
|
</tr>
|
|
2613
2641
|
<tr>
|
|
2614
2642
|
<td style="padding:15px">createPrefixlist(tenantNetworkId, body, callback)</td>
|
|
2615
|
-
<td style="padding:15px">
|
|
2643
|
+
<td style="padding:15px">createPrefixlist</td>
|
|
2616
2644
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/prefixlists?{query}</td>
|
|
2617
2645
|
<td style="padding:15px">Yes</td>
|
|
2618
2646
|
</tr>
|
|
2619
2647
|
<tr>
|
|
2620
2648
|
<td style="padding:15px">getPrefixlist(tenantNetworkId, id, callback)</td>
|
|
2621
|
-
<td style="padding:15px">
|
|
2649
|
+
<td style="padding:15px">getPrefixlist</td>
|
|
2622
2650
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/prefixlists/{pathv2}?{query}</td>
|
|
2623
2651
|
<td style="padding:15px">Yes</td>
|
|
2624
2652
|
</tr>
|
|
2625
2653
|
<tr>
|
|
2626
2654
|
<td style="padding:15px">updatePrefixlist(tenantNetworkId, id, body, callback)</td>
|
|
2627
|
-
<td style="padding:15px">
|
|
2655
|
+
<td style="padding:15px">updatePrefixlist</td>
|
|
2628
2656
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/prefixlists/{pathv2}?{query}</td>
|
|
2629
2657
|
<td style="padding:15px">Yes</td>
|
|
2630
2658
|
</tr>
|
|
2631
2659
|
<tr>
|
|
2632
2660
|
<td style="padding:15px">deletePrefixlist(tenantNetworkId, id, callback)</td>
|
|
2633
|
-
<td style="padding:15px">
|
|
2661
|
+
<td style="padding:15px">deletePrefixlist</td>
|
|
2634
2662
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/prefixlists/{pathv2}?{query}</td>
|
|
2635
2663
|
<td style="padding:15px">Yes</td>
|
|
2636
2664
|
</tr>
|
|
@@ -2684,133 +2712,133 @@ api/cloud-provider-objects/tags?cloud...(description truncated)</td>
|
|
|
2684
2712
|
</tr>
|
|
2685
2713
|
<tr>
|
|
2686
2714
|
<td style="padding:15px">captureFlowsFromConnector(tenantNetworkId, connectorId, body, callback)</td>
|
|
2687
|
-
<td style="padding:15px">
|
|
2715
|
+
<td style="padding:15px">captureFlowsFromConnector</td>
|
|
2688
2716
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/troubleshooting/captureflows?{query}</td>
|
|
2689
2717
|
<td style="padding:15px">Yes</td>
|
|
2690
2718
|
</tr>
|
|
2691
2719
|
<tr>
|
|
2692
2720
|
<td style="padding:15px">captureFlowsFromResourceShare(tenantNetworkId, segmentResourceShareId, body, callback)</td>
|
|
2693
|
-
<td style="padding:15px">
|
|
2721
|
+
<td style="padding:15px">captureFlowsFromResourceShare</td>
|
|
2694
2722
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resource-shares/{pathv2}/troubleshooting/captureflows?{query}</td>
|
|
2695
2723
|
<td style="padding:15px">Yes</td>
|
|
2696
2724
|
</tr>
|
|
2697
2725
|
<tr>
|
|
2698
2726
|
<td style="padding:15px">getActiveNatTranslation(tenantNetworkId, connectorId, body, callback)</td>
|
|
2699
|
-
<td style="padding:15px">
|
|
2727
|
+
<td style="padding:15px">getActiveNatTranslation</td>
|
|
2700
2728
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/connectors/{pathv2}/troubleshooting/active-nat-translations?{query}</td>
|
|
2701
2729
|
<td style="padding:15px">Yes</td>
|
|
2702
2730
|
</tr>
|
|
2703
2731
|
<tr>
|
|
2704
2732
|
<td style="padding:15px">getActiveNatTranslationForResourceShare(tenantNetworkId, segmentResourceShareId, body, callback)</td>
|
|
2705
|
-
<td style="padding:15px">
|
|
2733
|
+
<td style="padding:15px">getActiveNatTranslationForResourceShare</td>
|
|
2706
2734
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/segment-resource-shares/{pathv2}/troubleshooting/active-nat-translations?{query}</td>
|
|
2707
2735
|
<td style="padding:15px">Yes</td>
|
|
2708
2736
|
</tr>
|
|
2709
2737
|
<tr>
|
|
2710
2738
|
<td style="padding:15px">getAllAsPathLists(tenantNetworkId, callback)</td>
|
|
2711
|
-
<td style="padding:15px">
|
|
2739
|
+
<td style="padding:15px">getAllAsPathLists</td>
|
|
2712
2740
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/as-path-lists?{query}</td>
|
|
2713
2741
|
<td style="padding:15px">Yes</td>
|
|
2714
2742
|
</tr>
|
|
2715
2743
|
<tr>
|
|
2716
2744
|
<td style="padding:15px">createAsPathLists(tenantNetworkId, body, callback)</td>
|
|
2717
|
-
<td style="padding:15px">
|
|
2745
|
+
<td style="padding:15px">createAsPathLists</td>
|
|
2718
2746
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/as-path-lists?{query}</td>
|
|
2719
2747
|
<td style="padding:15px">Yes</td>
|
|
2720
2748
|
</tr>
|
|
2721
2749
|
<tr>
|
|
2722
2750
|
<td style="padding:15px">deleteAllAsPathLists(tenantNetworkId, callback)</td>
|
|
2723
|
-
<td style="padding:15px">
|
|
2751
|
+
<td style="padding:15px">deleteAllAsPathLists</td>
|
|
2724
2752
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/as-path-lists?{query}</td>
|
|
2725
2753
|
<td style="padding:15px">Yes</td>
|
|
2726
2754
|
</tr>
|
|
2727
2755
|
<tr>
|
|
2728
2756
|
<td style="padding:15px">getAsPathList(tenantNetworkId, asPathListId, callback)</td>
|
|
2729
|
-
<td style="padding:15px">
|
|
2757
|
+
<td style="padding:15px">getAsPathList</td>
|
|
2730
2758
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/as-path-lists/{pathv2}?{query}</td>
|
|
2731
2759
|
<td style="padding:15px">Yes</td>
|
|
2732
2760
|
</tr>
|
|
2733
2761
|
<tr>
|
|
2734
2762
|
<td style="padding:15px">updateAsPathList(tenantNetworkId, asPathListId, body, callback)</td>
|
|
2735
|
-
<td style="padding:15px">
|
|
2763
|
+
<td style="padding:15px">updateAsPathList</td>
|
|
2736
2764
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/as-path-lists/{pathv2}?{query}</td>
|
|
2737
2765
|
<td style="padding:15px">Yes</td>
|
|
2738
2766
|
</tr>
|
|
2739
2767
|
<tr>
|
|
2740
2768
|
<td style="padding:15px">deleteAsPathList(tenantNetworkId, asPathListId, callback)</td>
|
|
2741
|
-
<td style="padding:15px">
|
|
2769
|
+
<td style="padding:15px">deleteAsPathList</td>
|
|
2742
2770
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/as-path-lists/{pathv2}?{query}</td>
|
|
2743
2771
|
<td style="padding:15px">Yes</td>
|
|
2744
2772
|
</tr>
|
|
2745
2773
|
<tr>
|
|
2746
2774
|
<td style="padding:15px">getAllCommunityLists(tenantNetworkId, callback)</td>
|
|
2747
|
-
<td style="padding:15px">
|
|
2775
|
+
<td style="padding:15px">getAllCommunityLists</td>
|
|
2748
2776
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/community-lists?{query}</td>
|
|
2749
2777
|
<td style="padding:15px">Yes</td>
|
|
2750
2778
|
</tr>
|
|
2751
2779
|
<tr>
|
|
2752
2780
|
<td style="padding:15px">createCommunityLists(tenantNetworkId, body, callback)</td>
|
|
2753
|
-
<td style="padding:15px">
|
|
2781
|
+
<td style="padding:15px">createCommunityLists</td>
|
|
2754
2782
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/community-lists?{query}</td>
|
|
2755
2783
|
<td style="padding:15px">Yes</td>
|
|
2756
2784
|
</tr>
|
|
2757
2785
|
<tr>
|
|
2758
2786
|
<td style="padding:15px">deleteAllCommunityLists(tenantNetworkId, callback)</td>
|
|
2759
|
-
<td style="padding:15px">
|
|
2787
|
+
<td style="padding:15px">deleteAllCommunityLists</td>
|
|
2760
2788
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/community-lists?{query}</td>
|
|
2761
2789
|
<td style="padding:15px">Yes</td>
|
|
2762
2790
|
</tr>
|
|
2763
2791
|
<tr>
|
|
2764
2792
|
<td style="padding:15px">getCommunityList(tenantNetworkId, communityListId, callback)</td>
|
|
2765
|
-
<td style="padding:15px">
|
|
2793
|
+
<td style="padding:15px">getCommunityList</td>
|
|
2766
2794
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/community-lists/{pathv2}?{query}</td>
|
|
2767
2795
|
<td style="padding:15px">Yes</td>
|
|
2768
2796
|
</tr>
|
|
2769
2797
|
<tr>
|
|
2770
2798
|
<td style="padding:15px">updateCommunityList(tenantNetworkId, communityListId, body, callback)</td>
|
|
2771
|
-
<td style="padding:15px">
|
|
2799
|
+
<td style="padding:15px">updateCommunityList</td>
|
|
2772
2800
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/community-lists/{pathv2}?{query}</td>
|
|
2773
2801
|
<td style="padding:15px">Yes</td>
|
|
2774
2802
|
</tr>
|
|
2775
2803
|
<tr>
|
|
2776
2804
|
<td style="padding:15px">deleteCommunityList(tenantNetworkId, communityListId, callback)</td>
|
|
2777
|
-
<td style="padding:15px">
|
|
2805
|
+
<td style="padding:15px">deleteCommunityList</td>
|
|
2778
2806
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/community-lists/{pathv2}?{query}</td>
|
|
2779
2807
|
<td style="padding:15px">Yes</td>
|
|
2780
2808
|
</tr>
|
|
2781
2809
|
<tr>
|
|
2782
2810
|
<td style="padding:15px">getAllExtendedCommunityLists(tenantNetworkId, callback)</td>
|
|
2783
|
-
<td style="padding:15px">
|
|
2811
|
+
<td style="padding:15px">getAllExtendedCommunityLists</td>
|
|
2784
2812
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/extended-community-lists?{query}</td>
|
|
2785
2813
|
<td style="padding:15px">Yes</td>
|
|
2786
2814
|
</tr>
|
|
2787
2815
|
<tr>
|
|
2788
2816
|
<td style="padding:15px">createExtendedCommunityLists(tenantNetworkId, body, callback)</td>
|
|
2789
|
-
<td style="padding:15px">
|
|
2817
|
+
<td style="padding:15px">createExtendedCommunityLists</td>
|
|
2790
2818
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/extended-community-lists?{query}</td>
|
|
2791
2819
|
<td style="padding:15px">Yes</td>
|
|
2792
2820
|
</tr>
|
|
2793
2821
|
<tr>
|
|
2794
2822
|
<td style="padding:15px">deleteAllExtendedCommunityLists(tenantNetworkId, callback)</td>
|
|
2795
|
-
<td style="padding:15px">
|
|
2823
|
+
<td style="padding:15px">deleteAllExtendedCommunityLists</td>
|
|
2796
2824
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/extended-community-lists?{query}</td>
|
|
2797
2825
|
<td style="padding:15px">Yes</td>
|
|
2798
2826
|
</tr>
|
|
2799
2827
|
<tr>
|
|
2800
2828
|
<td style="padding:15px">getExtendedCommunityList(tenantNetworkId, extendedCommunityListId, callback)</td>
|
|
2801
|
-
<td style="padding:15px">
|
|
2829
|
+
<td style="padding:15px">getExtendedCommunityList</td>
|
|
2802
2830
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/extended-community-lists/{pathv2}?{query}</td>
|
|
2803
2831
|
<td style="padding:15px">Yes</td>
|
|
2804
2832
|
</tr>
|
|
2805
2833
|
<tr>
|
|
2806
2834
|
<td style="padding:15px">updateExtendedCommunityList(tenantNetworkId, extendedCommunityListId, body, callback)</td>
|
|
2807
|
-
<td style="padding:15px">
|
|
2835
|
+
<td style="padding:15px">updateExtendedCommunityList</td>
|
|
2808
2836
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/extended-community-lists/{pathv2}?{query}</td>
|
|
2809
2837
|
<td style="padding:15px">Yes</td>
|
|
2810
2838
|
</tr>
|
|
2811
2839
|
<tr>
|
|
2812
2840
|
<td style="padding:15px">deleteExtendedCommunityList(tenantNetworkId, extendedCommunityListId, callback)</td>
|
|
2813
|
-
<td style="padding:15px">
|
|
2841
|
+
<td style="padding:15px">deleteExtendedCommunityList</td>
|
|
2814
2842
|
<td style="padding:15px">{base_path}/{version}/tenantnetworks/{pathv1}/extended-community-lists/{pathv2}?{query}</td>
|
|
2815
2843
|
<td style="padding:15px">Yes</td>
|
|
2816
2844
|
</tr>
|