@itentialopensource/adapter-tufin_secureapp 0.3.0 → 0.4.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 +994 -16
- package/CHANGELOG.md +6 -61
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +32 -23
- package/adapter.js +391 -563
- package/adapterBase.js +549 -879
- package/changelogs/CHANGELOG.md +71 -0
- package/metadata.json +49 -0
- package/package.json +24 -25
- package/pronghorn.json +939 -607
- package/propertiesSchema.json +431 -31
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.yaml +12973 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691508805766.json +120 -0
- package/report/updateReport1692203264930.json +120 -0
- package/report/updateReport1694468871425.json +120 -0
- package/report/updateReport1698422784828.json +120 -0
- package/sampleProperties.json +63 -2
- package/test/integration/adapterTestBasicGet.js +2 -4
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -27
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +338 -158
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +2 -2
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/pre-commit.sh +2 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +89 -34
- package/utils/tbUtils.js +41 -21
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
- /package/report/{Tufin-SecureApp-R19-2-RC1.OpenApi3Json.json → adapter-openapi.json} +0 -0
package/adapter.js
CHANGED
|
@@ -88,9 +88,6 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
88
88
|
let myIgnore = [
|
|
89
89
|
'healthCheck',
|
|
90
90
|
'iapGetAdapterWorkflowFunctions',
|
|
91
|
-
'iapHasAdapterEntity',
|
|
92
|
-
'iapVerifyAdapterCapability',
|
|
93
|
-
'iapUpdateAdapterEntityCache',
|
|
94
91
|
'hasEntities',
|
|
95
92
|
'getAuthorization'
|
|
96
93
|
];
|
|
@@ -118,29 +115,15 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
118
115
|
* @param {string} entity - the entity to be changed, if an action, schema or mock data file (optional)
|
|
119
116
|
* @param {string} type - the type of entity file to change, (action, schema, mock) (optional)
|
|
120
117
|
* @param {string} action - the action to be changed, if an action, schema or mock data file (optional)
|
|
118
|
+
* @param {boolean} replace - true to replace entire mock data, false to merge/append
|
|
121
119
|
* @param {Callback} callback - The results of the call
|
|
122
120
|
*/
|
|
123
|
-
iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback) {
|
|
121
|
+
iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, replace, callback) {
|
|
124
122
|
const meth = 'adapter-iapUpdateAdapterConfiguration';
|
|
125
123
|
const origin = `${this.id}-${meth}`;
|
|
126
124
|
log.trace(origin);
|
|
127
125
|
|
|
128
|
-
super.iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback);
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
/**
|
|
132
|
-
* See if the API path provided is found in this adapter
|
|
133
|
-
*
|
|
134
|
-
* @function iapFindAdapterPath
|
|
135
|
-
* @param {string} apiPath - the api path to check on
|
|
136
|
-
* @param {Callback} callback - The results of the call
|
|
137
|
-
*/
|
|
138
|
-
iapFindAdapterPath(apiPath, callback) {
|
|
139
|
-
const meth = 'adapter-iapFindAdapterPath';
|
|
140
|
-
const origin = `${this.id}-${meth}`;
|
|
141
|
-
log.trace(origin);
|
|
142
|
-
|
|
143
|
-
super.iapFindAdapterPath(apiPath, callback);
|
|
126
|
+
super.iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, replace, callback);
|
|
144
127
|
}
|
|
145
128
|
|
|
146
129
|
/**
|
|
@@ -182,7 +165,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
182
165
|
}
|
|
183
166
|
|
|
184
167
|
/**
|
|
185
|
-
* @summary Get the
|
|
168
|
+
* @summary Get the Adapter Queue
|
|
186
169
|
*
|
|
187
170
|
* @function iapGetAdapterQueue
|
|
188
171
|
* @param {Callback} callback - callback function
|
|
@@ -195,6 +178,22 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
195
178
|
return super.iapGetAdapterQueue(callback);
|
|
196
179
|
}
|
|
197
180
|
|
|
181
|
+
/* SCRIPT CALLS */
|
|
182
|
+
/**
|
|
183
|
+
* See if the API path provided is found in this adapter
|
|
184
|
+
*
|
|
185
|
+
* @function iapFindAdapterPath
|
|
186
|
+
* @param {string} apiPath - the api path to check on
|
|
187
|
+
* @param {Callback} callback - The results of the call
|
|
188
|
+
*/
|
|
189
|
+
iapFindAdapterPath(apiPath, callback) {
|
|
190
|
+
const meth = 'adapter-iapFindAdapterPath';
|
|
191
|
+
const origin = `${this.id}-${meth}`;
|
|
192
|
+
log.trace(origin);
|
|
193
|
+
|
|
194
|
+
super.iapFindAdapterPath(apiPath, callback);
|
|
195
|
+
}
|
|
196
|
+
|
|
198
197
|
/**
|
|
199
198
|
* @summary Runs troubleshoot scripts for adapter
|
|
200
199
|
*
|
|
@@ -295,176 +294,93 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
295
294
|
}
|
|
296
295
|
}
|
|
297
296
|
|
|
298
|
-
/* BROKER CALLS */
|
|
299
297
|
/**
|
|
300
|
-
* @summary
|
|
298
|
+
* @summary Deactivate adapter tasks
|
|
301
299
|
*
|
|
302
|
-
* @function
|
|
303
|
-
* @param {String} entityType - the entity type to check for
|
|
304
|
-
* @param {String/Array} entityId - the specific entity we are looking for
|
|
300
|
+
* @function iapDeactivateTasks
|
|
305
301
|
*
|
|
306
|
-
* @param {
|
|
307
|
-
*
|
|
302
|
+
* @param {Array} tasks - List of tasks to deactivate
|
|
303
|
+
* @param {Callback} callback
|
|
308
304
|
*/
|
|
309
|
-
|
|
310
|
-
const
|
|
305
|
+
iapDeactivateTasks(tasks, callback) {
|
|
306
|
+
const meth = 'adapter-iapDeactivateTasks';
|
|
307
|
+
const origin = `${this.id}-${meth}`;
|
|
311
308
|
log.trace(origin);
|
|
312
309
|
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
310
|
+
try {
|
|
311
|
+
return super.iapDeactivateTasks(tasks, callback);
|
|
312
|
+
} catch (err) {
|
|
313
|
+
log.error(`${origin}: ${err}`);
|
|
314
|
+
return callback(null, err);
|
|
315
|
+
}
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
/**
|
|
319
|
-
* @summary
|
|
320
|
-
* whether the adapter supports type, action and specific entity
|
|
319
|
+
* @summary Activate adapter tasks that have previously been deactivated
|
|
321
320
|
*
|
|
322
|
-
* @function
|
|
323
|
-
*
|
|
324
|
-
* @param {
|
|
325
|
-
* @param {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
const meth = 'adapterBase-iapVerifyAdapterCapability';
|
|
332
|
-
const origin = `${this.id}-${meth}`;
|
|
333
|
-
log.trace(origin);
|
|
334
|
-
|
|
335
|
-
// if caching
|
|
336
|
-
if (this.caching) {
|
|
337
|
-
// Make the call - iapVerifyAdapterCapability(entityType, actionType, entityId, callback)
|
|
338
|
-
return this.requestHandlerInst.iapVerifyAdapterCapability(entityType, actionType, entityId, (results, error) => {
|
|
339
|
-
if (error) {
|
|
340
|
-
return callback(null, error);
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
// if the cache needs to be updated, update and try again
|
|
344
|
-
if (results && results[0] === 'needupdate') {
|
|
345
|
-
switch (entityType) {
|
|
346
|
-
case 'template_entity': {
|
|
347
|
-
// if the cache is invalid, update the cache
|
|
348
|
-
return this.getEntities(null, null, null, null, (data, err) => {
|
|
349
|
-
if (err) {
|
|
350
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Could not update entity: $VARIABLE$, cache', [entityType], null, null, null);
|
|
351
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
352
|
-
return callback(null, errorObj);
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
// need to check the cache again since it has been updated
|
|
356
|
-
return this.requestHandlerInst.iapVerifyAdapterCapability(entityType, actionType, entityId, (vcapable, verror) => {
|
|
357
|
-
if (verror) {
|
|
358
|
-
return callback(null, verror);
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
return this.capabilityResults(vcapable, callback);
|
|
362
|
-
});
|
|
363
|
-
});
|
|
364
|
-
}
|
|
365
|
-
default: {
|
|
366
|
-
// unsupported entity type
|
|
367
|
-
const result = [false];
|
|
368
|
-
|
|
369
|
-
// put false in array for all entities
|
|
370
|
-
if (Array.isArray(entityId)) {
|
|
371
|
-
for (let e = 1; e < entityId.length; e += 1) {
|
|
372
|
-
result.push(false);
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
return callback(result);
|
|
377
|
-
}
|
|
378
|
-
}
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
// return the results
|
|
382
|
-
return this.capabilityResults(results, callback);
|
|
383
|
-
});
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
// if no entity id
|
|
387
|
-
if (!entityId) {
|
|
388
|
-
// need to check the cache again since it has been updated
|
|
389
|
-
return this.requestHandlerInst.iapVerifyAdapterCapability(entityType, actionType, null, (vcapable, verror) => {
|
|
390
|
-
if (verror) {
|
|
391
|
-
return callback(null, verror);
|
|
392
|
-
}
|
|
321
|
+
* @function iapActivateTasks
|
|
322
|
+
*
|
|
323
|
+
* @param {Array} tasks - List of tasks to activate
|
|
324
|
+
* @param {Callback} callback
|
|
325
|
+
*/
|
|
326
|
+
iapActivateTasks(tasks, callback) {
|
|
327
|
+
const meth = 'adapter-iapActivateTasks';
|
|
328
|
+
const origin = `${this.id}-${meth}`;
|
|
329
|
+
log.trace(origin);
|
|
393
330
|
|
|
394
|
-
|
|
395
|
-
|
|
331
|
+
try {
|
|
332
|
+
return super.iapActivateTasks(tasks, callback);
|
|
333
|
+
} catch (err) {
|
|
334
|
+
log.error(`${origin}: ${err}`);
|
|
335
|
+
return callback(null, err);
|
|
396
336
|
}
|
|
337
|
+
}
|
|
397
338
|
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
return callback(null, verror);
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
// is the entity in the list?
|
|
416
|
-
const isEntity = this.entityInList(entityId, data.response, callback);
|
|
417
|
-
const res = [];
|
|
418
|
-
|
|
419
|
-
// not found
|
|
420
|
-
for (let i = 0; i < isEntity.length; i += 1) {
|
|
421
|
-
if (vcapable) {
|
|
422
|
-
res.push(isEntity[i]);
|
|
423
|
-
} else {
|
|
424
|
-
res.push(false);
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
return callback(res);
|
|
429
|
-
});
|
|
430
|
-
});
|
|
431
|
-
}
|
|
432
|
-
default: {
|
|
433
|
-
// unsupported entity type
|
|
434
|
-
const result = [false];
|
|
435
|
-
|
|
436
|
-
// put false in array for all entities
|
|
437
|
-
if (Array.isArray(entityId)) {
|
|
438
|
-
for (let e = 1; e < entityId.length; e += 1) {
|
|
439
|
-
result.push(false);
|
|
440
|
-
}
|
|
441
|
-
}
|
|
339
|
+
/* CACHE CALLS */
|
|
340
|
+
/**
|
|
341
|
+
* @summary Populate the cache for the given entities
|
|
342
|
+
*
|
|
343
|
+
* @function iapPopulateEntityCache
|
|
344
|
+
* @param {String/Array of Strings} entityType - the entity type(s) to populate
|
|
345
|
+
* @param {Callback} callback - whether the cache was updated or not for each entity type
|
|
346
|
+
*
|
|
347
|
+
* @returns status of the populate
|
|
348
|
+
*/
|
|
349
|
+
iapPopulateEntityCache(entityTypes, callback) {
|
|
350
|
+
const meth = 'adapter-iapPopulateEntityCache';
|
|
351
|
+
const origin = `${this.id}-${meth}`;
|
|
352
|
+
log.trace(origin);
|
|
442
353
|
|
|
443
|
-
|
|
444
|
-
|
|
354
|
+
try {
|
|
355
|
+
return super.iapPopulateEntityCache(entityTypes, callback);
|
|
356
|
+
} catch (err) {
|
|
357
|
+
log.error(`${origin}: ${err}`);
|
|
358
|
+
return callback(null, err);
|
|
445
359
|
}
|
|
446
360
|
}
|
|
447
361
|
|
|
448
362
|
/**
|
|
449
|
-
* @summary
|
|
450
|
-
*
|
|
451
|
-
* @function iapUpdateAdapterEntityCache
|
|
363
|
+
* @summary Retrieves data from cache for specified entity type
|
|
452
364
|
*
|
|
365
|
+
* @function iapRetrieveEntitiesCache
|
|
366
|
+
* @param {String} entityType - entity of which to retrieve
|
|
367
|
+
* @param {Object} options - settings of which data to return and how to return it
|
|
368
|
+
* @param {Callback} callback - the data if it was retrieved
|
|
453
369
|
*/
|
|
454
|
-
|
|
455
|
-
const
|
|
370
|
+
iapRetrieveEntitiesCache(entityType, options, callback) {
|
|
371
|
+
const meth = 'adapter-iapCheckEiapRetrieveEntitiesCachentityCached';
|
|
372
|
+
const origin = `${this.id}-${meth}`;
|
|
456
373
|
log.trace(origin);
|
|
457
374
|
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
}
|
|
464
|
-
});
|
|
375
|
+
try {
|
|
376
|
+
return super.iapRetrieveEntitiesCache(entityType, options, callback);
|
|
377
|
+
} catch (err) {
|
|
378
|
+
log.error(`${origin}: ${err}`);
|
|
379
|
+
return callback(null, err);
|
|
465
380
|
}
|
|
466
381
|
}
|
|
467
382
|
|
|
383
|
+
/* BROKER CALLS */
|
|
468
384
|
/**
|
|
469
385
|
* @summary Determines if this adapter supports any in a list of entities
|
|
470
386
|
*
|
|
@@ -599,6 +515,38 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
599
515
|
}
|
|
600
516
|
|
|
601
517
|
/* GENERIC ADAPTER REQUEST - allows extension of adapter without new calls being added */
|
|
518
|
+
/**
|
|
519
|
+
* Makes the requested generic call
|
|
520
|
+
*
|
|
521
|
+
* @function iapExpandedGenericAdapterRequest
|
|
522
|
+
* @param {Object} metadata - metadata for the call (optional).
|
|
523
|
+
* Can be a stringified Object.
|
|
524
|
+
* @param {String} uriPath - the path of the api call - do not include the host, port, base path or version (optional)
|
|
525
|
+
* @param {String} restMethod - the rest method (GET, POST, PUT, PATCH, DELETE) (optional)
|
|
526
|
+
* @param {Object} pathVars - the parameters to be put within the url path (optional).
|
|
527
|
+
* Can be a stringified Object.
|
|
528
|
+
* @param {Object} queryData - the parameters to be put on the url (optional).
|
|
529
|
+
* Can be a stringified Object.
|
|
530
|
+
* @param {Object} requestBody - the body to add to the request (optional).
|
|
531
|
+
* Can be a stringified Object.
|
|
532
|
+
* @param {Object} addlHeaders - additional headers to be put on the call (optional).
|
|
533
|
+
* Can be a stringified Object.
|
|
534
|
+
* @param {getCallback} callback - a callback function to return the result (Generics)
|
|
535
|
+
* or the error
|
|
536
|
+
*/
|
|
537
|
+
iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback) {
|
|
538
|
+
const meth = 'adapter-iapExpandedGenericAdapterRequest';
|
|
539
|
+
const origin = `${this.id}-${meth}`;
|
|
540
|
+
log.trace(origin);
|
|
541
|
+
|
|
542
|
+
try {
|
|
543
|
+
return super.iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback);
|
|
544
|
+
} catch (err) {
|
|
545
|
+
log.error(`${origin}: ${err}`);
|
|
546
|
+
return callback(null, err);
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
|
|
602
550
|
/**
|
|
603
551
|
* Makes the requested generic call
|
|
604
552
|
*
|
|
@@ -619,93 +567,11 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
619
567
|
const origin = `${this.id}-${meth}`;
|
|
620
568
|
log.trace(origin);
|
|
621
569
|
|
|
622
|
-
if (this.suspended && this.suspendMode === 'error') {
|
|
623
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
624
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
625
|
-
return callback(null, errorObj);
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
629
|
-
if (uriPath === undefined || uriPath === null || uriPath === '') {
|
|
630
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['uriPath'], null, null, null);
|
|
631
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
632
|
-
return callback(null, errorObj);
|
|
633
|
-
}
|
|
634
|
-
if (restMethod === undefined || restMethod === null || restMethod === '') {
|
|
635
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['restMethod'], null, null, null);
|
|
636
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
637
|
-
return callback(null, errorObj);
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
/* HERE IS WHERE YOU SET THE DATA TO PASS INTO REQUEST */
|
|
641
|
-
// remove any leading / and split the uripath into path variables
|
|
642
|
-
let myPath = uriPath;
|
|
643
|
-
while (myPath.indexOf('/') === 0) {
|
|
644
|
-
myPath = myPath.substring(1);
|
|
645
|
-
}
|
|
646
|
-
const pathVars = myPath.split('/');
|
|
647
|
-
const queryParamsAvailable = queryData;
|
|
648
|
-
const queryParams = {};
|
|
649
|
-
const bodyVars = requestBody;
|
|
650
|
-
|
|
651
|
-
// loop in template. long callback arg name to avoid identifier conflicts
|
|
652
|
-
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
|
653
|
-
if (queryParamsAvailable[thisKeyInQueryParamsAvailable] !== undefined && queryParamsAvailable[thisKeyInQueryParamsAvailable] !== null
|
|
654
|
-
&& queryParamsAvailable[thisKeyInQueryParamsAvailable] !== '') {
|
|
655
|
-
queryParams[thisKeyInQueryParamsAvailable] = queryParamsAvailable[thisKeyInQueryParamsAvailable];
|
|
656
|
-
}
|
|
657
|
-
});
|
|
658
|
-
|
|
659
|
-
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
660
|
-
const reqObj = {
|
|
661
|
-
payload: bodyVars,
|
|
662
|
-
uriPathVars: pathVars,
|
|
663
|
-
uriQuery: queryParams,
|
|
664
|
-
uriOptions: {}
|
|
665
|
-
};
|
|
666
|
-
// add headers if provided
|
|
667
|
-
if (addlHeaders) {
|
|
668
|
-
reqObj.addlHeaders = addlHeaders;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
// determine the call and return flag
|
|
672
|
-
let action = 'getGenerics';
|
|
673
|
-
let returnF = true;
|
|
674
|
-
if (restMethod.toUpperCase() === 'POST') {
|
|
675
|
-
action = 'createGeneric';
|
|
676
|
-
} else if (restMethod.toUpperCase() === 'PUT') {
|
|
677
|
-
action = 'updateGeneric';
|
|
678
|
-
} else if (restMethod.toUpperCase() === 'PATCH') {
|
|
679
|
-
action = 'patchGeneric';
|
|
680
|
-
} else if (restMethod.toUpperCase() === 'DELETE') {
|
|
681
|
-
action = 'deleteGeneric';
|
|
682
|
-
returnF = false;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
570
|
try {
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
// return an error
|
|
691
|
-
if (irReturnError) {
|
|
692
|
-
/* HERE IS WHERE YOU CAN ALTER THE ERROR MESSAGE */
|
|
693
|
-
return callback(null, irReturnError);
|
|
694
|
-
}
|
|
695
|
-
if (!Object.hasOwnProperty.call(irReturnData, 'response')) {
|
|
696
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Invalid Response', ['genericAdapterRequest'], null, null, null);
|
|
697
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
698
|
-
return callback(null, errorObj);
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
/* HERE IS WHERE YOU CAN ALTER THE RETURN DATA */
|
|
702
|
-
// return the response
|
|
703
|
-
return callback(irReturnData, null);
|
|
704
|
-
});
|
|
705
|
-
} catch (ex) {
|
|
706
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Caught Exception', null, null, null, ex);
|
|
707
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
708
|
-
return callback(null, errorObj);
|
|
571
|
+
return super.genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
|
|
572
|
+
} catch (err) {
|
|
573
|
+
log.error(`${origin}: ${err}`);
|
|
574
|
+
return callback(null, err);
|
|
709
575
|
}
|
|
710
576
|
}
|
|
711
577
|
|
|
@@ -729,94 +595,56 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
729
595
|
const origin = `${this.id}-${meth}`;
|
|
730
596
|
log.trace(origin);
|
|
731
597
|
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
739
|
-
if (uriPath === undefined || uriPath === null || uriPath === '') {
|
|
740
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['uriPath'], null, null, null);
|
|
741
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
742
|
-
return callback(null, errorObj);
|
|
743
|
-
}
|
|
744
|
-
if (restMethod === undefined || restMethod === null || restMethod === '') {
|
|
745
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['restMethod'], null, null, null);
|
|
746
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
747
|
-
return callback(null, errorObj);
|
|
598
|
+
try {
|
|
599
|
+
return super.genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
|
|
600
|
+
} catch (err) {
|
|
601
|
+
log.error(`${origin}: ${err}`);
|
|
602
|
+
return callback(null, err);
|
|
748
603
|
}
|
|
604
|
+
}
|
|
749
605
|
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
const
|
|
759
|
-
const
|
|
606
|
+
/* INVENTORY CALLS */
|
|
607
|
+
/**
|
|
608
|
+
* @summary run the adapter lint script to return the results.
|
|
609
|
+
*
|
|
610
|
+
* @function iapRunAdapterLint
|
|
611
|
+
* @param {Callback} callback - callback function
|
|
612
|
+
*/
|
|
613
|
+
iapRunAdapterLint(callback) {
|
|
614
|
+
const meth = 'adapter-iapRunAdapterLint';
|
|
615
|
+
const origin = `${this.id}-${meth}`;
|
|
616
|
+
log.trace(origin);
|
|
760
617
|
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
if (queryParamsAvailable[thisKeyInQueryParamsAvailable] !== undefined && queryParamsAvailable[thisKeyInQueryParamsAvailable] !== null
|
|
764
|
-
&& queryParamsAvailable[thisKeyInQueryParamsAvailable] !== '') {
|
|
765
|
-
queryParams[thisKeyInQueryParamsAvailable] = queryParamsAvailable[thisKeyInQueryParamsAvailable];
|
|
766
|
-
}
|
|
767
|
-
});
|
|
618
|
+
return super.iapRunAdapterLint(callback);
|
|
619
|
+
}
|
|
768
620
|
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
621
|
+
/**
|
|
622
|
+
* @summary run the adapter test scripts (baseunit and unit) to return the results.
|
|
623
|
+
* can not run integration as there can be implications with that.
|
|
624
|
+
*
|
|
625
|
+
* @function iapRunAdapterTests
|
|
626
|
+
* @param {Callback} callback - callback function
|
|
627
|
+
*/
|
|
628
|
+
iapRunAdapterTests(callback) {
|
|
629
|
+
const meth = 'adapter-iapRunAdapterTests';
|
|
630
|
+
const origin = `${this.id}-${meth}`;
|
|
631
|
+
log.trace(origin);
|
|
780
632
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
let returnF = true;
|
|
784
|
-
if (restMethod.toUpperCase() === 'POST') {
|
|
785
|
-
action = 'createGenericNoBase';
|
|
786
|
-
} else if (restMethod.toUpperCase() === 'PUT') {
|
|
787
|
-
action = 'updateGenericNoBase';
|
|
788
|
-
} else if (restMethod.toUpperCase() === 'PATCH') {
|
|
789
|
-
action = 'patchGenericNoBase';
|
|
790
|
-
} else if (restMethod.toUpperCase() === 'DELETE') {
|
|
791
|
-
action = 'deleteGenericNoBase';
|
|
792
|
-
returnF = false;
|
|
793
|
-
}
|
|
633
|
+
return super.iapRunAdapterTests(callback);
|
|
634
|
+
}
|
|
794
635
|
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
if (!Object.hasOwnProperty.call(irReturnData, 'response')) {
|
|
806
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Invalid Response', ['genericAdapterRequestNoBasePath'], null, null, null);
|
|
807
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
808
|
-
return callback(null, errorObj);
|
|
809
|
-
}
|
|
636
|
+
/**
|
|
637
|
+
* @summary provide inventory information abbout the adapter
|
|
638
|
+
*
|
|
639
|
+
* @function iapGetAdapterInventory
|
|
640
|
+
* @param {Callback} callback - callback function
|
|
641
|
+
*/
|
|
642
|
+
iapGetAdapterInventory(callback) {
|
|
643
|
+
const meth = 'adapter-iapGetAdapterInventory';
|
|
644
|
+
const origin = `${this.id}-${meth}`;
|
|
645
|
+
log.trace(origin);
|
|
810
646
|
|
|
811
|
-
|
|
812
|
-
// return the response
|
|
813
|
-
return callback(irReturnData, null);
|
|
814
|
-
});
|
|
815
|
-
} catch (ex) {
|
|
816
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Caught Exception', null, null, null, ex);
|
|
817
|
-
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
818
|
-
return callback(null, errorObj);
|
|
819
|
-
}
|
|
647
|
+
return super.iapGetAdapterInventory(callback);
|
|
820
648
|
}
|
|
821
649
|
|
|
822
650
|
/**
|
|
@@ -848,7 +676,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
848
676
|
* @summary Retrieve existing application access requests
|
|
849
677
|
*
|
|
850
678
|
* @function retrieveExistingApplicationAccessRequests
|
|
851
|
-
* @param {
|
|
679
|
+
* @param {string} applicationId - path parameter
|
|
852
680
|
* @param {getCallback} callback - a callback function to return the result
|
|
853
681
|
*/
|
|
854
682
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -941,7 +769,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
941
769
|
*
|
|
942
770
|
* @function createApplicationAccessRequest
|
|
943
771
|
* @param {object} body - POST body parameter
|
|
944
|
-
* @param {
|
|
772
|
+
* @param {string} applicationId - path parameter
|
|
945
773
|
* @param {getCallback} callback - a callback function to return the result
|
|
946
774
|
*/
|
|
947
775
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1039,7 +867,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1039
867
|
*
|
|
1040
868
|
* @function updateApplicationAccessRequests
|
|
1041
869
|
* @param {object} body - PUT body parameter
|
|
1042
|
-
* @param {
|
|
870
|
+
* @param {string} applicationId - path parameter
|
|
1043
871
|
* @param {getCallback} callback - a callback function to return the result
|
|
1044
872
|
*/
|
|
1045
873
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1136,8 +964,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1136
964
|
* @summary Retrieve an existing application access request by ID
|
|
1137
965
|
*
|
|
1138
966
|
* @function retrieveAnExistingApplicationAccessRequestByID
|
|
1139
|
-
* @param {
|
|
1140
|
-
* @param {
|
|
967
|
+
* @param {string} applicationId - path parameter
|
|
968
|
+
* @param {string} requestId - path parameter
|
|
1141
969
|
* @param {getCallback} callback - a callback function to return the result
|
|
1142
970
|
*/
|
|
1143
971
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1235,8 +1063,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1235
1063
|
*
|
|
1236
1064
|
* @function updateAnApplicationAccessRequest
|
|
1237
1065
|
* @param {object} body - PUT body parameter
|
|
1238
|
-
* @param {
|
|
1239
|
-
* @param {
|
|
1066
|
+
* @param {string} applicationId - path parameter
|
|
1067
|
+
* @param {string} requestId - path parameter
|
|
1240
1068
|
* @param {getCallback} callback - a callback function to return the result
|
|
1241
1069
|
*/
|
|
1242
1070
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1339,7 +1167,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1339
1167
|
*
|
|
1340
1168
|
* @function createConnections
|
|
1341
1169
|
* @param {object} body - POST body parameter
|
|
1342
|
-
* @param {
|
|
1170
|
+
* @param {string} applicationId - path parameter
|
|
1343
1171
|
* @param {getCallback} callback - a callback function to return the result
|
|
1344
1172
|
*/
|
|
1345
1173
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1437,7 +1265,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1437
1265
|
*
|
|
1438
1266
|
* @function updateConnections
|
|
1439
1267
|
* @param {object} body - PUT body parameter
|
|
1440
|
-
* @param {
|
|
1268
|
+
* @param {string} applicationId - path parameter
|
|
1441
1269
|
* @param {getCallback} callback - a callback function to return the result
|
|
1442
1270
|
*/
|
|
1443
1271
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1534,7 +1362,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1534
1362
|
* @summary Retrieve existing connections
|
|
1535
1363
|
*
|
|
1536
1364
|
* @function retrieveExistingConnections
|
|
1537
|
-
* @param {
|
|
1365
|
+
* @param {string} applicationId - path parameter
|
|
1538
1366
|
* @param {getCallback} callback - a callback function to return the result
|
|
1539
1367
|
*/
|
|
1540
1368
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1626,7 +1454,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1626
1454
|
* @summary Retrieve existing connections, with extended resources information
|
|
1627
1455
|
*
|
|
1628
1456
|
* @function retrieveExistingConnectionsWithExtendedResourcesInformation
|
|
1629
|
-
* @param {
|
|
1457
|
+
* @param {string} applicationId - path parameter
|
|
1630
1458
|
* @param {getCallback} callback - a callback function to return the result
|
|
1631
1459
|
*/
|
|
1632
1460
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1719,8 +1547,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1719
1547
|
*
|
|
1720
1548
|
* @function createATicketToRepairAConnection
|
|
1721
1549
|
* @param {object} body - POST body parameter
|
|
1722
|
-
* @param {
|
|
1723
|
-
* @param {
|
|
1550
|
+
* @param {string} applicationId - path parameter
|
|
1551
|
+
* @param {string} connectionId - path parameter
|
|
1724
1552
|
* @param {getCallback} callback - a callback function to return the result
|
|
1725
1553
|
*/
|
|
1726
1554
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1822,8 +1650,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1822
1650
|
* @summary Delete connection
|
|
1823
1651
|
*
|
|
1824
1652
|
* @function deleteConnection
|
|
1825
|
-
* @param {
|
|
1826
|
-
* @param {
|
|
1653
|
+
* @param {string} applicationId - path parameter
|
|
1654
|
+
* @param {string} connectionId - path parameter
|
|
1827
1655
|
* @param {getCallback} callback - a callback function to return the result
|
|
1828
1656
|
*/
|
|
1829
1657
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -1903,8 +1731,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
1903
1731
|
*
|
|
1904
1732
|
* @function updateAConnection
|
|
1905
1733
|
* @param {object} body - PUT body parameter
|
|
1906
|
-
* @param {
|
|
1907
|
-
* @param {
|
|
1734
|
+
* @param {string} applicationId - path parameter
|
|
1735
|
+
* @param {string} connectionId - path parameter
|
|
1908
1736
|
* @param {getCallback} callback - a callback function to return the result
|
|
1909
1737
|
*/
|
|
1910
1738
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2006,8 +1834,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2006
1834
|
* @summary Retrieve an existing connection by ID
|
|
2007
1835
|
*
|
|
2008
1836
|
* @function retrieveAnExistingConnectionByID
|
|
2009
|
-
* @param {
|
|
2010
|
-
* @param {
|
|
1837
|
+
* @param {string} applicationId - path parameter
|
|
1838
|
+
* @param {string} connectionId - path parameter
|
|
2011
1839
|
* @param {getCallback} callback - a callback function to return the result
|
|
2012
1840
|
*/
|
|
2013
1841
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2155,9 +1983,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2155
1983
|
* @summary Delete interface connection
|
|
2156
1984
|
*
|
|
2157
1985
|
* @function deleteInterfaceConnection
|
|
2158
|
-
* @param {
|
|
2159
|
-
* @param {
|
|
2160
|
-
* @param {
|
|
1986
|
+
* @param {string} applicationId - path parameter
|
|
1987
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
1988
|
+
* @param {string} connectionInterfaceId - path parameter
|
|
2161
1989
|
* @param {getCallback} callback - a callback function to return the result
|
|
2162
1990
|
*/
|
|
2163
1991
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2242,9 +2070,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2242
2070
|
*
|
|
2243
2071
|
* @function updateAnInterfaceConnection
|
|
2244
2072
|
* @param {object} body - PUT body parameter
|
|
2245
|
-
* @param {
|
|
2246
|
-
* @param {
|
|
2247
|
-
* @param {
|
|
2073
|
+
* @param {string} applicationId - path parameter
|
|
2074
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
2075
|
+
* @param {string} connectionInterfaceId - path parameter
|
|
2248
2076
|
* @param {getCallback} callback - a callback function to return the result
|
|
2249
2077
|
*/
|
|
2250
2078
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2351,9 +2179,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2351
2179
|
* @summary Retrieve an existing interface connection by ID
|
|
2352
2180
|
*
|
|
2353
2181
|
* @function retrieveAnExistingInterfaceConnectionByID
|
|
2354
|
-
* @param {
|
|
2355
|
-
* @param {
|
|
2356
|
-
* @param {
|
|
2182
|
+
* @param {string} applicationId - path parameter
|
|
2183
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
2184
|
+
* @param {string} connectionInterfaceId - path parameter
|
|
2357
2185
|
* @param {getCallback} callback - a callback function to return the result
|
|
2358
2186
|
*/
|
|
2359
2187
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2455,7 +2283,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2455
2283
|
* @summary Retrieve existing connections to application
|
|
2456
2284
|
*
|
|
2457
2285
|
* @function retrieveExistingConnectionsToApplication
|
|
2458
|
-
* @param {
|
|
2286
|
+
* @param {string} applicationId - path parameter
|
|
2459
2287
|
* @param {getCallback} callback - a callback function to return the result
|
|
2460
2288
|
*/
|
|
2461
2289
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2548,7 +2376,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2548
2376
|
*
|
|
2549
2377
|
* @function createConnectionToApplication
|
|
2550
2378
|
* @param {object} body - POST body parameter
|
|
2551
|
-
* @param {
|
|
2379
|
+
* @param {string} applicationId - path parameter
|
|
2552
2380
|
* @param {getCallback} callback - a callback function to return the result
|
|
2553
2381
|
*/
|
|
2554
2382
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2646,8 +2474,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2646
2474
|
*
|
|
2647
2475
|
* @function updateAnApplicationInterface
|
|
2648
2476
|
* @param {object} body - PUT body parameter
|
|
2649
|
-
* @param {
|
|
2650
|
-
* @param {
|
|
2477
|
+
* @param {string} applicationId - path parameter
|
|
2478
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
2651
2479
|
* @param {getCallback} callback - a callback function to return the result
|
|
2652
2480
|
*/
|
|
2653
2481
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2749,8 +2577,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2749
2577
|
* @summary Delete application interface
|
|
2750
2578
|
*
|
|
2751
2579
|
* @function deleteApplicationInterface
|
|
2752
|
-
* @param {
|
|
2753
|
-
* @param {
|
|
2580
|
+
* @param {string} applicationId - path parameter
|
|
2581
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
2754
2582
|
* @param {getCallback} callback - a callback function to return the result
|
|
2755
2583
|
*/
|
|
2756
2584
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2829,8 +2657,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2829
2657
|
* @summary Retrieve an existing application interface by ID
|
|
2830
2658
|
*
|
|
2831
2659
|
* @function retrieveAnExistingApplicationInterfaceByID
|
|
2832
|
-
* @param {
|
|
2833
|
-
* @param {
|
|
2660
|
+
* @param {string} applicationId - path parameter
|
|
2661
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
2834
2662
|
* @param {getCallback} callback - a callback function to return the result
|
|
2835
2663
|
*/
|
|
2836
2664
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -2927,8 +2755,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
2927
2755
|
* @summary Retrieve existing interface connections
|
|
2928
2756
|
*
|
|
2929
2757
|
* @function retrieveExistingInterfaceConnections
|
|
2930
|
-
* @param {
|
|
2931
|
-
* @param {
|
|
2758
|
+
* @param {string} applicationId - path parameter
|
|
2759
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
2932
2760
|
* @param {getCallback} callback - a callback function to return the result
|
|
2933
2761
|
*/
|
|
2934
2762
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3026,8 +2854,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3026
2854
|
*
|
|
3027
2855
|
* @function createInterfaceConnections
|
|
3028
2856
|
* @param {object} body - POST body parameter
|
|
3029
|
-
* @param {
|
|
3030
|
-
* @param {
|
|
2857
|
+
* @param {string} applicationId - path parameter
|
|
2858
|
+
* @param {string} applicationInterfaceId - path parameter
|
|
3031
2859
|
* @param {getCallback} callback - a callback function to return the result
|
|
3032
2860
|
*/
|
|
3033
2861
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3129,7 +2957,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3129
2957
|
* @summary Retrieve existing application interfaces
|
|
3130
2958
|
*
|
|
3131
2959
|
* @function retrieveExistingApplicationInterfaces
|
|
3132
|
-
* @param {
|
|
2960
|
+
* @param {string} applicationId - path parameter
|
|
3133
2961
|
* @param {getCallback} callback - a callback function to return the result
|
|
3134
2962
|
*/
|
|
3135
2963
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3222,7 +3050,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3222
3050
|
*
|
|
3223
3051
|
* @function createApplicationInterface
|
|
3224
3052
|
* @param {object} body - POST body parameter
|
|
3225
|
-
* @param {
|
|
3053
|
+
* @param {string} applicationId - path parameter
|
|
3226
3054
|
* @param {getCallback} callback - a callback function to return the result
|
|
3227
3055
|
*/
|
|
3228
3056
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3319,8 +3147,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3319
3147
|
* @summary Retrieve an existing connection to application by ID
|
|
3320
3148
|
*
|
|
3321
3149
|
* @function retrieveAnExistingConnectionToApplicationByID
|
|
3322
|
-
* @param {
|
|
3323
|
-
* @param {
|
|
3150
|
+
* @param {string} applicationId - path parameter
|
|
3151
|
+
* @param {string} connectionToApplicationId - path parameter
|
|
3324
3152
|
* @param {getCallback} callback - a callback function to return the result
|
|
3325
3153
|
*/
|
|
3326
3154
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3418,8 +3246,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3418
3246
|
*
|
|
3419
3247
|
* @function updateAConnectionToApplication
|
|
3420
3248
|
* @param {object} body - PUT body parameter
|
|
3421
|
-
* @param {
|
|
3422
|
-
* @param {
|
|
3249
|
+
* @param {string} applicationId - path parameter
|
|
3250
|
+
* @param {string} connectionToApplicationId - path parameter
|
|
3423
3251
|
* @param {getCallback} callback - a callback function to return the result
|
|
3424
3252
|
*/
|
|
3425
3253
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3521,8 +3349,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3521
3349
|
* @summary Delete connection to application
|
|
3522
3350
|
*
|
|
3523
3351
|
* @function deleteConnectionToApplication
|
|
3524
|
-
* @param {
|
|
3525
|
-
* @param {
|
|
3352
|
+
* @param {string} applicationId - path parameter
|
|
3353
|
+
* @param {string} connectionToApplicationId - path parameter
|
|
3526
3354
|
* @param {getCallback} callback - a callback function to return the result
|
|
3527
3355
|
*/
|
|
3528
3356
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3601,8 +3429,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3601
3429
|
* @summary Retrieve connection to application mappings for source and target applications
|
|
3602
3430
|
*
|
|
3603
3431
|
* @function retrieveConnectionToApplicationMappingsForSourceAndTargetApplications
|
|
3604
|
-
* @param {
|
|
3605
|
-
* @param {
|
|
3432
|
+
* @param {string} sourceApplicationId - path parameter
|
|
3433
|
+
* @param {string} targetApplicationId - path parameter
|
|
3606
3434
|
* @param {getCallback} callback - a callback function to return the result
|
|
3607
3435
|
*/
|
|
3608
3436
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3700,8 +3528,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3700
3528
|
*
|
|
3701
3529
|
* @function updateConnectionToApplicationMappingsForSourceAndTargetApplications
|
|
3702
3530
|
* @param {object} body - PUT body parameter
|
|
3703
|
-
* @param {
|
|
3704
|
-
* @param {
|
|
3531
|
+
* @param {string} sourceApplicationId - path parameter
|
|
3532
|
+
* @param {string} targetApplicationId - path parameter
|
|
3705
3533
|
* @param {getCallback} callback - a callback function to return the result
|
|
3706
3534
|
*/
|
|
3707
3535
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3804,8 +3632,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3804
3632
|
*
|
|
3805
3633
|
* @function copyApplicationServersAndConnectionsToAnotherApplication
|
|
3806
3634
|
* @param {object} body - PUT body parameter
|
|
3807
|
-
* @param {
|
|
3808
|
-
* @param {
|
|
3635
|
+
* @param {string} sourceApplicationId - path parameter
|
|
3636
|
+
* @param {string} targetApplicationId - path parameter
|
|
3809
3637
|
* @param {getCallback} callback - a callback function to return the result
|
|
3810
3638
|
*/
|
|
3811
3639
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3889,8 +3717,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3889
3717
|
* @summary Retrieve server mappings for source and target applications
|
|
3890
3718
|
*
|
|
3891
3719
|
* @function retrieveServerMappingsForSourceAndTargetApplications
|
|
3892
|
-
* @param {
|
|
3893
|
-
* @param {
|
|
3720
|
+
* @param {string} sourceApplicationId - path parameter
|
|
3721
|
+
* @param {string} targetApplicationId - path parameter
|
|
3894
3722
|
* @param {getCallback} callback - a callback function to return the result
|
|
3895
3723
|
*/
|
|
3896
3724
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -3988,8 +3816,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
3988
3816
|
*
|
|
3989
3817
|
* @function updateServerMappingsForSourceAndTargetApplications
|
|
3990
3818
|
* @param {object} body - PUT body parameter
|
|
3991
|
-
* @param {
|
|
3992
|
-
* @param {
|
|
3819
|
+
* @param {string} sourceApplicationId - path parameter
|
|
3820
|
+
* @param {string} targetApplicationId - path parameter
|
|
3993
3821
|
* @param {getCallback} callback - a callback function to return the result
|
|
3994
3822
|
*/
|
|
3995
3823
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4091,7 +3919,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4091
3919
|
* @summary Retrieve a list of all connection to application pack by application ID.
|
|
4092
3920
|
*
|
|
4093
3921
|
* @function retrieveAListOfAllConnectionToApplicationPackByApplicationID
|
|
4094
|
-
* @param {
|
|
3922
|
+
* @param {string} applicationId - path parameter
|
|
4095
3923
|
* @param {getCallback} callback - a callback function to return the result
|
|
4096
3924
|
*/
|
|
4097
3925
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4184,7 +4012,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4184
4012
|
*
|
|
4185
4013
|
* @function createNewConnectionToApplicationPacks
|
|
4186
4014
|
* @param {object} body - POST body parameter
|
|
4187
|
-
* @param {
|
|
4015
|
+
* @param {string} applicationId - path parameter
|
|
4188
4016
|
* @param {getCallback} callback - a callback function to return the result
|
|
4189
4017
|
*/
|
|
4190
4018
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4281,8 +4109,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4281
4109
|
* @summary Delete application pack
|
|
4282
4110
|
*
|
|
4283
4111
|
* @function deleteApplicationPack
|
|
4284
|
-
* @param {
|
|
4285
|
-
* @param {
|
|
4112
|
+
* @param {string} customerId - path parameter
|
|
4113
|
+
* @param {string} applicationPackId - path parameter
|
|
4286
4114
|
* @param {getCallback} callback - a callback function to return the result
|
|
4287
4115
|
*/
|
|
4288
4116
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4361,8 +4189,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4361
4189
|
* @summary Retrieve an existing application pack by ID
|
|
4362
4190
|
*
|
|
4363
4191
|
* @function retrieveAnExistingApplicationPackByID
|
|
4364
|
-
* @param {
|
|
4365
|
-
* @param {
|
|
4192
|
+
* @param {string} customerId - path parameter
|
|
4193
|
+
* @param {string} applicationPackId - path parameter
|
|
4366
4194
|
* @param {getCallback} callback - a callback function to return the result
|
|
4367
4195
|
*/
|
|
4368
4196
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4460,8 +4288,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4460
4288
|
*
|
|
4461
4289
|
* @function updateAnApplicationPack
|
|
4462
4290
|
* @param {object} body - PUT body parameter
|
|
4463
|
-
* @param {
|
|
4464
|
-
* @param {
|
|
4291
|
+
* @param {string} customerId - path parameter
|
|
4292
|
+
* @param {string} applicationPackId - path parameter
|
|
4465
4293
|
* @param {getCallback} callback - a callback function to return the result
|
|
4466
4294
|
*/
|
|
4467
4295
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4563,8 +4391,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4563
4391
|
* @summary List all application pack tags
|
|
4564
4392
|
*
|
|
4565
4393
|
* @function listAllApplicationPackTags
|
|
4566
|
-
* @param {
|
|
4567
|
-
* @param {
|
|
4394
|
+
* @param {string} customerId - path parameter
|
|
4395
|
+
* @param {string} applicationPackId - path parameter
|
|
4568
4396
|
* @param {getCallback} callback - a callback function to return the result
|
|
4569
4397
|
*/
|
|
4570
4398
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4661,8 +4489,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4661
4489
|
* @summary Delete tags from application pack
|
|
4662
4490
|
*
|
|
4663
4491
|
* @function deleteTagsFromApplicationPack
|
|
4664
|
-
* @param {
|
|
4665
|
-
* @param {
|
|
4492
|
+
* @param {string} customerId - path parameter
|
|
4493
|
+
* @param {string} applicationPackId - path parameter
|
|
4666
4494
|
* @param {getCallback} callback - a callback function to return the result
|
|
4667
4495
|
*/
|
|
4668
4496
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4742,8 +4570,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4742
4570
|
*
|
|
4743
4571
|
* @function createNewTagUnderAnApplicationPack
|
|
4744
4572
|
* @param {object} body - POST body parameter
|
|
4745
|
-
* @param {
|
|
4746
|
-
* @param {
|
|
4573
|
+
* @param {string} customerId - path parameter
|
|
4574
|
+
* @param {string} applicationPackId - path parameter
|
|
4747
4575
|
* @param {getCallback} callback - a callback function to return the result
|
|
4748
4576
|
*/
|
|
4749
4577
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4846,8 +4674,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4846
4674
|
*
|
|
4847
4675
|
* @function modifyTagsOfAnApplicationPack
|
|
4848
4676
|
* @param {object} body - PUT body parameter
|
|
4849
|
-
* @param {
|
|
4850
|
-
* @param {
|
|
4677
|
+
* @param {string} customerId - path parameter
|
|
4678
|
+
* @param {string} applicationPackId - path parameter
|
|
4851
4679
|
* @param {getCallback} callback - a callback function to return the result
|
|
4852
4680
|
*/
|
|
4853
4681
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -4949,8 +4777,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
4949
4777
|
* @summary Remove application interfaces from application pack
|
|
4950
4778
|
*
|
|
4951
4779
|
* @function removeApplicationInterfacesFromApplicationPack
|
|
4952
|
-
* @param {
|
|
4953
|
-
* @param {
|
|
4780
|
+
* @param {string} customerId - path parameter
|
|
4781
|
+
* @param {string} applicationPackId - path parameter
|
|
4954
4782
|
* @param {getCallback} callback - a callback function to return the result
|
|
4955
4783
|
*/
|
|
4956
4784
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5030,8 +4858,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5030
4858
|
*
|
|
5031
4859
|
* @function updateApplicationInterfacesAndTagMapping
|
|
5032
4860
|
* @param {object} body - PUT body parameter
|
|
5033
|
-
* @param {
|
|
5034
|
-
* @param {
|
|
4861
|
+
* @param {string} customerId - path parameter
|
|
4862
|
+
* @param {string} applicationPackId - path parameter
|
|
5035
4863
|
* @param {getCallback} callback - a callback function to return the result
|
|
5036
4864
|
*/
|
|
5037
4865
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5134,7 +4962,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5134
4962
|
*
|
|
5135
4963
|
* @function createNewApplicationPacks
|
|
5136
4964
|
* @param {object} body - POST body parameter
|
|
5137
|
-
* @param {
|
|
4965
|
+
* @param {string} customerId - path parameter
|
|
5138
4966
|
* @param {getCallback} callback - a callback function to return the result
|
|
5139
4967
|
*/
|
|
5140
4968
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5232,7 +5060,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5232
5060
|
*
|
|
5233
5061
|
* @function updateApplicationPacks
|
|
5234
5062
|
* @param {object} body - PUT body parameter
|
|
5235
|
-
* @param {
|
|
5063
|
+
* @param {string} customerId - path parameter
|
|
5236
5064
|
* @param {getCallback} callback - a callback function to return the result
|
|
5237
5065
|
*/
|
|
5238
5066
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5329,7 +5157,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5329
5157
|
* @summary List all application packs
|
|
5330
5158
|
*
|
|
5331
5159
|
* @function listAllApplicationPacks
|
|
5332
|
-
* @param {
|
|
5160
|
+
* @param {string} customerId - path parameter
|
|
5333
5161
|
* @param {getCallback} callback - a callback function to return the result
|
|
5334
5162
|
*/
|
|
5335
5163
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5421,9 +5249,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5421
5249
|
* @summary Get tag by ID
|
|
5422
5250
|
*
|
|
5423
5251
|
* @function getTagByID
|
|
5424
|
-
* @param {
|
|
5425
|
-
* @param {
|
|
5426
|
-
* @param {
|
|
5252
|
+
* @param {string} customerId - path parameter
|
|
5253
|
+
* @param {string} applicationPackId - path parameter
|
|
5254
|
+
* @param {string} tagId - path parameter
|
|
5427
5255
|
* @param {getCallback} callback - a callback function to return the result
|
|
5428
5256
|
*/
|
|
5429
5257
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5526,8 +5354,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5526
5354
|
*
|
|
5527
5355
|
* @function putSecureappRepositoryApplicationsApplicationIdConnectionToApplicationPacksConnectionToApplicationPackId
|
|
5528
5356
|
* @param {object} body - PUT body parameter
|
|
5529
|
-
* @param {
|
|
5530
|
-
* @param {
|
|
5357
|
+
* @param {string} applicationId - path parameter
|
|
5358
|
+
* @param {string} connectionToApplicationPackId - path parameter
|
|
5531
5359
|
* @param {getCallback} callback - a callback function to return the result
|
|
5532
5360
|
*/
|
|
5533
5361
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5629,8 +5457,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5629
5457
|
* @summary Delete a connection to application pack
|
|
5630
5458
|
*
|
|
5631
5459
|
* @function deleteAConnectionToApplicationPack
|
|
5632
|
-
* @param {
|
|
5633
|
-
* @param {
|
|
5460
|
+
* @param {string} applicationId - path parameter
|
|
5461
|
+
* @param {string} connectionToApplicationPackId - path parameter
|
|
5634
5462
|
* @param {getCallback} callback - a callback function to return the result
|
|
5635
5463
|
*/
|
|
5636
5464
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5709,8 +5537,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5709
5537
|
* @summary Retrieve an existing connection to application pack by ID.
|
|
5710
5538
|
*
|
|
5711
5539
|
* @function retrieveAnExistingConnectionToApplicationPackByID
|
|
5712
|
-
* @param {
|
|
5713
|
-
* @param {
|
|
5540
|
+
* @param {string} applicationId - path parameter
|
|
5541
|
+
* @param {string} connectionToApplicationPackId - path parameter
|
|
5714
5542
|
* @param {getCallback} callback - a callback function to return the result
|
|
5715
5543
|
*/
|
|
5716
5544
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5807,7 +5635,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5807
5635
|
* @summary Retrieve existing access rules
|
|
5808
5636
|
*
|
|
5809
5637
|
* @function retrieveExistingAccessRules
|
|
5810
|
-
* @param {
|
|
5638
|
+
* @param {string} applicationId - path parameter
|
|
5811
5639
|
* @param {getCallback} callback - a callback function to return the result
|
|
5812
5640
|
*/
|
|
5813
5641
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -5950,7 +5778,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
5950
5778
|
* @summary Fetches server by ID
|
|
5951
5779
|
*
|
|
5952
5780
|
* @function fetchesServerByID
|
|
5953
|
-
* @param {
|
|
5781
|
+
* @param {string} serverId - path parameter
|
|
5954
5782
|
* @param {getCallback} callback - a callback function to return the result
|
|
5955
5783
|
*/
|
|
5956
5784
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6039,16 +5867,16 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6039
5867
|
}
|
|
6040
5868
|
|
|
6041
5869
|
/**
|
|
6042
|
-
* @summary If the identified server is a group, return a list of its members. When the media type is 'text/plain' (
|
|
5870
|
+
* @summary If the identified server is a group, return a list of its members. When the media type is 'text/plain' (string), print each member on a separate line.
|
|
6043
5871
|
*
|
|
6044
|
-
* @function
|
|
6045
|
-
* @param {
|
|
6046
|
-
* @param {
|
|
5872
|
+
* @function ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainstringPrintEachMemberOnASeparateLine
|
|
5873
|
+
* @param {string} applicationId - path parameter
|
|
5874
|
+
* @param {string} serverId - path parameter
|
|
6047
5875
|
* @param {getCallback} callback - a callback function to return the result
|
|
6048
5876
|
*/
|
|
6049
5877
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
6050
|
-
|
|
6051
|
-
const meth = 'adapter-
|
|
5878
|
+
ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainstringPrintEachMemberOnASeparateLine(applicationId, serverId, callback) {
|
|
5879
|
+
const meth = 'adapter-ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainstringPrintEachMemberOnASeparateLine';
|
|
6052
5880
|
const origin = `${this.id}-${meth}`;
|
|
6053
5881
|
log.trace(origin);
|
|
6054
5882
|
|
|
@@ -6112,7 +5940,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6112
5940
|
try {
|
|
6113
5941
|
// Make the call -
|
|
6114
5942
|
// identifyRequest(entity, action, requestObj, returnDataFlag, callback)
|
|
6115
|
-
return this.requestHandlerInst.identifyRequest('ApplicationServersByApplication', '
|
|
5943
|
+
return this.requestHandlerInst.identifyRequest('ApplicationServersByApplication', 'ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainstringPrintEachMemberOnASeparateLine', reqObj, true, (irReturnData, irReturnError) => {
|
|
6116
5944
|
// if we received an error or their is no response on the results
|
|
6117
5945
|
// return an error
|
|
6118
5946
|
if (irReturnError) {
|
|
@@ -6120,7 +5948,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6120
5948
|
return callback(null, irReturnError);
|
|
6121
5949
|
}
|
|
6122
5950
|
if (!Object.hasOwnProperty.call(irReturnData, 'response')) {
|
|
6123
|
-
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Invalid Response', ['
|
|
5951
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Invalid Response', ['ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainstringPrintEachMemberOnASeparateLine'], null, null, null);
|
|
6124
5952
|
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6125
5953
|
return callback(null, errorObj);
|
|
6126
5954
|
}
|
|
@@ -6140,8 +5968,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6140
5968
|
* @summary Export Server Impact Analysis to a CSV file.
|
|
6141
5969
|
*
|
|
6142
5970
|
* @function exportServerImpactAnalysisToACSVFile
|
|
6143
|
-
* @param {
|
|
6144
|
-
* @param {
|
|
5971
|
+
* @param {string} applicationId - path parameter
|
|
5972
|
+
* @param {string} serverId - path parameter
|
|
6145
5973
|
* @param {getCallback} callback - a callback function to return the result
|
|
6146
5974
|
*/
|
|
6147
5975
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6221,7 +6049,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6221
6049
|
*
|
|
6222
6050
|
* @function createServers
|
|
6223
6051
|
* @param {object} body - POST body parameter
|
|
6224
|
-
* @param {
|
|
6052
|
+
* @param {string} applicationId - path parameter
|
|
6225
6053
|
* @param {getCallback} callback - a callback function to return the result
|
|
6226
6054
|
*/
|
|
6227
6055
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6319,7 +6147,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6319
6147
|
*
|
|
6320
6148
|
* @function updateServers
|
|
6321
6149
|
* @param {object} body - PUT body parameter
|
|
6322
|
-
* @param {
|
|
6150
|
+
* @param {string} applicationId - path parameter
|
|
6323
6151
|
* @param {getCallback} callback - a callback function to return the result
|
|
6324
6152
|
*/
|
|
6325
6153
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6416,7 +6244,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6416
6244
|
* @summary Retrieve existing servers
|
|
6417
6245
|
*
|
|
6418
6246
|
* @function retrieveExistingServers
|
|
6419
|
-
* @param {
|
|
6247
|
+
* @param {string} applicationId - path parameter
|
|
6420
6248
|
* @param {getCallback} callback - a callback function to return the result
|
|
6421
6249
|
*/
|
|
6422
6250
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6509,7 +6337,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6509
6337
|
*
|
|
6510
6338
|
* @function moveServer
|
|
6511
6339
|
* @param {object} body - POST body parameter
|
|
6512
|
-
* @param {
|
|
6340
|
+
* @param {string} applicationId - path parameter
|
|
6513
6341
|
* @param {getCallback} callback - a callback function to return the result
|
|
6514
6342
|
*/
|
|
6515
6343
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6588,8 +6416,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6588
6416
|
* @summary Retrieve an existing server by ID
|
|
6589
6417
|
*
|
|
6590
6418
|
* @function retrieveAnExistingServerByID
|
|
6591
|
-
* @param {
|
|
6592
|
-
* @param {
|
|
6419
|
+
* @param {string} applicationId - path parameter
|
|
6420
|
+
* @param {string} serverId - path parameter
|
|
6593
6421
|
* @param {getCallback} callback - a callback function to return the result
|
|
6594
6422
|
*/
|
|
6595
6423
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6686,8 +6514,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6686
6514
|
* @summary Delete server
|
|
6687
6515
|
*
|
|
6688
6516
|
* @function deleteServer
|
|
6689
|
-
* @param {
|
|
6690
|
-
* @param {
|
|
6517
|
+
* @param {string} applicationId - path parameter
|
|
6518
|
+
* @param {string} serverId - path parameter
|
|
6691
6519
|
* @param {getCallback} callback - a callback function to return the result
|
|
6692
6520
|
*/
|
|
6693
6521
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6766,7 +6594,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6766
6594
|
* @summary Delete unused and non predefined global service
|
|
6767
6595
|
*
|
|
6768
6596
|
* @function deleteUnusedAndNonPredefinedGlobalService
|
|
6769
|
-
* @param {
|
|
6597
|
+
* @param {string} serviceId - path parameter
|
|
6770
6598
|
* @param {getCallback} callback - a callback function to return the result
|
|
6771
6599
|
*/
|
|
6772
6600
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -6840,7 +6668,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
6840
6668
|
* @summary Fetches service by ID
|
|
6841
6669
|
*
|
|
6842
6670
|
* @function fetchesServiceByID
|
|
6843
|
-
* @param {
|
|
6671
|
+
* @param {string} serviceId - path parameter
|
|
6844
6672
|
* @param {getCallback} callback - a callback function to return the result
|
|
6845
6673
|
*/
|
|
6846
6674
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7219,7 +7047,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7219
7047
|
*
|
|
7220
7048
|
* @function updateServices
|
|
7221
7049
|
* @param {object} body - PUT body parameter
|
|
7222
|
-
* @param {
|
|
7050
|
+
* @param {string} applicationId - path parameter
|
|
7223
7051
|
* @param {getCallback} callback - a callback function to return the result
|
|
7224
7052
|
*/
|
|
7225
7053
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7316,7 +7144,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7316
7144
|
* @summary Retrieve existing services
|
|
7317
7145
|
*
|
|
7318
7146
|
* @function retrieveExistingServices
|
|
7319
|
-
* @param {
|
|
7147
|
+
* @param {string} applicationId - path parameter
|
|
7320
7148
|
* @param {getCallback} callback - a callback function to return the result
|
|
7321
7149
|
*/
|
|
7322
7150
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7409,7 +7237,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7409
7237
|
*
|
|
7410
7238
|
* @function createServices
|
|
7411
7239
|
* @param {object} body - POST body parameter
|
|
7412
|
-
* @param {
|
|
7240
|
+
* @param {string} applicationId - path parameter
|
|
7413
7241
|
* @param {getCallback} callback - a callback function to return the result
|
|
7414
7242
|
*/
|
|
7415
7243
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7506,8 +7334,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7506
7334
|
* @summary Delete service
|
|
7507
7335
|
*
|
|
7508
7336
|
* @function deleteService
|
|
7509
|
-
* @param {
|
|
7510
|
-
* @param {
|
|
7337
|
+
* @param {string} applicationId - path parameter
|
|
7338
|
+
* @param {string} serviceId - path parameter
|
|
7511
7339
|
* @param {getCallback} callback - a callback function to return the result
|
|
7512
7340
|
*/
|
|
7513
7341
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7586,8 +7414,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7586
7414
|
* @summary Retrieve an existing service by ID
|
|
7587
7415
|
*
|
|
7588
7416
|
* @function retrieveAnExistingServiceByID
|
|
7589
|
-
* @param {
|
|
7590
|
-
* @param {
|
|
7417
|
+
* @param {string} applicationId - path parameter
|
|
7418
|
+
* @param {string} serviceId - path parameter
|
|
7591
7419
|
* @param {getCallback} callback - a callback function to return the result
|
|
7592
7420
|
*/
|
|
7593
7421
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7827,7 +7655,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7827
7655
|
* @summary Fetches user by ID
|
|
7828
7656
|
*
|
|
7829
7657
|
* @function fetchesUserByID
|
|
7830
|
-
* @param {
|
|
7658
|
+
* @param {string} userId - path parameter
|
|
7831
7659
|
* @param {getCallback} callback - a callback function to return the result
|
|
7832
7660
|
*/
|
|
7833
7661
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7919,7 +7747,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7919
7747
|
* @summary Delete unused user
|
|
7920
7748
|
*
|
|
7921
7749
|
* @function deleteUnusedUser
|
|
7922
|
-
* @param {
|
|
7750
|
+
* @param {string} userId - path parameter
|
|
7923
7751
|
* @param {getCallback} callback - a callback function to return the result
|
|
7924
7752
|
*/
|
|
7925
7753
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -7993,7 +7821,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
7993
7821
|
* @summary Retrieve security policy violations from SecureTrack
|
|
7994
7822
|
*
|
|
7995
7823
|
* @function retrieveSecurityPolicyViolationsFromSecureTrack
|
|
7996
|
-
* @param {
|
|
7824
|
+
* @param {string} applicationId - path parameter
|
|
7997
7825
|
* @param {getCallback} callback - a callback function to return the result
|
|
7998
7826
|
*/
|
|
7999
7827
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -8085,7 +7913,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
8085
7913
|
* @summary Delete an application
|
|
8086
7914
|
*
|
|
8087
7915
|
* @function deleteAnApplication
|
|
8088
|
-
* @param {
|
|
7916
|
+
* @param {string} applicationId - path parameter
|
|
8089
7917
|
* @param {getCallback} callback - a callback function to return the result
|
|
8090
7918
|
*/
|
|
8091
7919
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -8160,7 +7988,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
8160
7988
|
*
|
|
8161
7989
|
* @function changeAnApplication
|
|
8162
7990
|
* @param {object} body - PUT body parameter
|
|
8163
|
-
* @param {
|
|
7991
|
+
* @param {string} applicationId - path parameter
|
|
8164
7992
|
* @param {getCallback} callback - a callback function to return the result
|
|
8165
7993
|
*/
|
|
8166
7994
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -8257,7 +8085,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
8257
8085
|
* @summary Retrieve an existing application by ID
|
|
8258
8086
|
*
|
|
8259
8087
|
* @function retrieveAnExistingApplicationByID
|
|
8260
|
-
* @param {
|
|
8088
|
+
* @param {string} applicationId - path parameter
|
|
8261
8089
|
* @param {getCallback} callback - a callback function to return the result
|
|
8262
8090
|
*/
|
|
8263
8091
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -8441,7 +8269,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
8441
8269
|
* @summary Retrieve application history
|
|
8442
8270
|
*
|
|
8443
8271
|
* @function retrieveApplicationHistory
|
|
8444
|
-
* @param {
|
|
8272
|
+
* @param {string} applicationId - path parameter
|
|
8445
8273
|
* @param {getCallback} callback - a callback function to return the result
|
|
8446
8274
|
*/
|
|
8447
8275
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -8533,7 +8361,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
8533
8361
|
* @summary Export Impact Analysis to a CSV file.
|
|
8534
8362
|
*
|
|
8535
8363
|
* @function exportImpactAnalysisToACSVFile
|
|
8536
|
-
* @param {
|
|
8364
|
+
* @param {string} applicationId - path parameter
|
|
8537
8365
|
* @param {getCallback} callback - a callback function to return the result
|
|
8538
8366
|
*/
|
|
8539
8367
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -8842,7 +8670,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
8842
8670
|
* @summary Export application history to PDF
|
|
8843
8671
|
*
|
|
8844
8672
|
* @function exportApplicationHistoryToPDF
|
|
8845
|
-
* @param {
|
|
8673
|
+
* @param {string} applicationId - path parameter
|
|
8846
8674
|
* @param {getCallback} callback - a callback function to return the result
|
|
8847
8675
|
*/
|
|
8848
8676
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -9151,7 +8979,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
9151
8979
|
* @summary Retrieve existing applications for specific domain
|
|
9152
8980
|
*
|
|
9153
8981
|
* @function retrieveExistingApplicationsForSpecificDomain
|
|
9154
|
-
* @param {
|
|
8982
|
+
* @param {string} customerId - path parameter
|
|
9155
8983
|
* @param {getCallback} callback - a callback function to return the result
|
|
9156
8984
|
*/
|
|
9157
8985
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -9397,7 +9225,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
9397
9225
|
*
|
|
9398
9226
|
* @function updateACustomer
|
|
9399
9227
|
* @param {object} body - PUT body parameter
|
|
9400
|
-
* @param {
|
|
9228
|
+
* @param {string} customerId - path parameter
|
|
9401
9229
|
* @param {getCallback} callback - a callback function to return the result
|
|
9402
9230
|
*/
|
|
9403
9231
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -9494,7 +9322,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
9494
9322
|
* @summary Fetches customer by ID
|
|
9495
9323
|
*
|
|
9496
9324
|
* @function fetchesCustomerByID
|
|
9497
|
-
* @param {
|
|
9325
|
+
* @param {string} customerId - path parameter
|
|
9498
9326
|
* @param {getCallback} callback - a callback function to return the result
|
|
9499
9327
|
*/
|
|
9500
9328
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -9803,7 +9631,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
9803
9631
|
* @summary Fetches domain by ID
|
|
9804
9632
|
*
|
|
9805
9633
|
* @function fetchesDomainByID
|
|
9806
|
-
* @param {
|
|
9634
|
+
* @param {string} domainId - path parameter
|
|
9807
9635
|
* @param {getCallback} callback - a callback function to return the result
|
|
9808
9636
|
*/
|
|
9809
9637
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -10233,8 +10061,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
10233
10061
|
*
|
|
10234
10062
|
* @function runImpactAnalysisForGivenTask
|
|
10235
10063
|
* @param {object} body - PUT body parameter
|
|
10236
|
-
* @param {
|
|
10237
|
-
* @param {
|
|
10064
|
+
* @param {string} id - path parameter
|
|
10065
|
+
* @param {string} taskId - path parameter
|
|
10238
10066
|
* @param {getCallback} callback - a callback function to return the result
|
|
10239
10067
|
*/
|
|
10240
10068
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -10319,8 +10147,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
10319
10147
|
*
|
|
10320
10148
|
* @function runVerifierForGivenTask
|
|
10321
10149
|
* @param {object} body - PUT body parameter
|
|
10322
|
-
* @param {
|
|
10323
|
-
* @param {
|
|
10150
|
+
* @param {string} id - path parameter
|
|
10151
|
+
* @param {string} taskId - path parameter
|
|
10324
10152
|
* @param {getCallback} callback - a callback function to return the result
|
|
10325
10153
|
*/
|
|
10326
10154
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -10404,10 +10232,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
10404
10232
|
* @summary Get verifier results
|
|
10405
10233
|
*
|
|
10406
10234
|
* @function getVerifierResults
|
|
10407
|
-
* @param {
|
|
10408
|
-
* @param {
|
|
10409
|
-
* @param {
|
|
10410
|
-
* @param {
|
|
10235
|
+
* @param {string} id - path parameter
|
|
10236
|
+
* @param {string} stepId - path parameter
|
|
10237
|
+
* @param {string} taskId - path parameter
|
|
10238
|
+
* @param {string} fieldId - path parameter
|
|
10411
10239
|
* @param {getCallback} callback - a callback function to return the result
|
|
10412
10240
|
*/
|
|
10413
10241
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -10514,10 +10342,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
10514
10342
|
* @summary Get server decommission designer results
|
|
10515
10343
|
*
|
|
10516
10344
|
* @function getServerDecommissionDesignerResults
|
|
10517
|
-
* @param {
|
|
10518
|
-
* @param {
|
|
10519
|
-
* @param {
|
|
10520
|
-
* @param {
|
|
10345
|
+
* @param {string} id - path parameter
|
|
10346
|
+
* @param {string} stepId - path parameter
|
|
10347
|
+
* @param {string} taskId - path parameter
|
|
10348
|
+
* @param {string} fieldId - path parameter
|
|
10521
10349
|
* @param {getCallback} callback - a callback function to return the result
|
|
10522
10350
|
*/
|
|
10523
10351
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -10625,8 +10453,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
10625
10453
|
*
|
|
10626
10454
|
* @function runServerDecommissionDesignerForGivenTask
|
|
10627
10455
|
* @param {object} body - PUT body parameter
|
|
10628
|
-
* @param {
|
|
10629
|
-
* @param {
|
|
10456
|
+
* @param {string} id - path parameter
|
|
10457
|
+
* @param {string} taskId - path parameter
|
|
10630
10458
|
* @param {getCallback} callback - a callback function to return the result
|
|
10631
10459
|
*/
|
|
10632
10460
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -10710,10 +10538,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
10710
10538
|
* @summary Get impact analysis results
|
|
10711
10539
|
*
|
|
10712
10540
|
* @function getImpactAnalysisResults
|
|
10713
|
-
* @param {
|
|
10714
|
-
* @param {
|
|
10715
|
-
* @param {
|
|
10716
|
-
* @param {
|
|
10541
|
+
* @param {string} id - path parameter
|
|
10542
|
+
* @param {string} stepId - path parameter
|
|
10543
|
+
* @param {string} taskId - path parameter
|
|
10544
|
+
* @param {string} fieldId - path parameter
|
|
10717
10545
|
* @param {getCallback} callback - a callback function to return the result
|
|
10718
10546
|
*/
|
|
10719
10547
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11106,7 +10934,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11106
10934
|
* @summary Return the specified user
|
|
11107
10935
|
*
|
|
11108
10936
|
* @function returnTheSpecifiedUser
|
|
11109
|
-
* @param {
|
|
10937
|
+
* @param {string} id - path parameter
|
|
11110
10938
|
* @param {getCallback} callback - a callback function to return the result
|
|
11111
10939
|
*/
|
|
11112
10940
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11198,7 +11026,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11198
11026
|
* @summary Returns the history of the specified ticket
|
|
11199
11027
|
*
|
|
11200
11028
|
* @function returnsTheHistoryOfTheSpecifiedTicket
|
|
11201
|
-
* @param {
|
|
11029
|
+
* @param {string} id - path parameter
|
|
11202
11030
|
* @param {getCallback} callback - a callback function to return the result
|
|
11203
11031
|
*/
|
|
11204
11032
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11291,7 +11119,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11291
11119
|
*
|
|
11292
11120
|
* @function mapRulesToTicket
|
|
11293
11121
|
* @param {object} body - POST body parameter
|
|
11294
|
-
* @param {
|
|
11122
|
+
* @param {string} id - path parameter
|
|
11295
11123
|
* @param {getCallback} callback - a callback function to return the result
|
|
11296
11124
|
*/
|
|
11297
11125
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11371,7 +11199,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11371
11199
|
*
|
|
11372
11200
|
* @function rejectATicket
|
|
11373
11201
|
* @param {object} body - PUT body parameter
|
|
11374
|
-
* @param {
|
|
11202
|
+
* @param {string} id - path parameter
|
|
11375
11203
|
* @param {getCallback} callback - a callback function to return the result
|
|
11376
11204
|
*/
|
|
11377
11205
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11469,7 +11297,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11469
11297
|
*
|
|
11470
11298
|
* @function confirmTheRequest
|
|
11471
11299
|
* @param {object} body - PUT body parameter
|
|
11472
|
-
* @param {
|
|
11300
|
+
* @param {string} id - path parameter
|
|
11473
11301
|
* @param {getCallback} callback - a callback function to return the result
|
|
11474
11302
|
*/
|
|
11475
11303
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11567,10 +11395,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11567
11395
|
*
|
|
11568
11396
|
* @function returnsTheSpecifiedTicketToTheSpecifiedStep
|
|
11569
11397
|
* @param {object} body - PUT body parameter
|
|
11570
|
-
* @param {
|
|
11571
|
-
* @param {
|
|
11572
|
-
* @param {
|
|
11573
|
-
* @param {
|
|
11398
|
+
* @param {string} id - path parameter
|
|
11399
|
+
* @param {string} stepId - path parameter
|
|
11400
|
+
* @param {string} taskId - path parameter
|
|
11401
|
+
* @param {string} toStepId - path parameter
|
|
11574
11402
|
* @param {getCallback} callback - a callback function to return the result
|
|
11575
11403
|
*/
|
|
11576
11404
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11683,7 +11511,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11683
11511
|
*
|
|
11684
11512
|
* @function cancelATicket
|
|
11685
11513
|
* @param {object} body - PUT body parameter
|
|
11686
|
-
* @param {
|
|
11514
|
+
* @param {string} id - path parameter
|
|
11687
11515
|
* @param {getCallback} callback - a callback function to return the result
|
|
11688
11516
|
*/
|
|
11689
11517
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11781,10 +11609,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11781
11609
|
*
|
|
11782
11610
|
* @function reassignsTheSpecifiedTicketTaskToTheSpecifiedUser
|
|
11783
11611
|
* @param {object} body - PUT body parameter
|
|
11784
|
-
* @param {
|
|
11785
|
-
* @param {
|
|
11786
|
-
* @param {
|
|
11787
|
-
* @param {
|
|
11612
|
+
* @param {string} id - path parameter
|
|
11613
|
+
* @param {string} stepId - path parameter
|
|
11614
|
+
* @param {string} taskId - path parameter
|
|
11615
|
+
* @param {string} assigneeId - path parameter
|
|
11788
11616
|
* @param {getCallback} callback - a callback function to return the result
|
|
11789
11617
|
*/
|
|
11790
11618
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -11897,8 +11725,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
11897
11725
|
*
|
|
11898
11726
|
* @function changeTheRequesterOfTheSpecifiedTicketTaskToTheSpecifiedUser
|
|
11899
11727
|
* @param {object} body - PUT body parameter
|
|
11900
|
-
* @param {
|
|
11901
|
-
* @param {
|
|
11728
|
+
* @param {string} id - path parameter
|
|
11729
|
+
* @param {string} assigneeId - path parameter
|
|
11902
11730
|
* @param {getCallback} callback - a callback function to return the result
|
|
11903
11731
|
*/
|
|
11904
11732
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12051,11 +11879,11 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12051
11879
|
* @summary Get commands for device from designer results of a specific field id
|
|
12052
11880
|
*
|
|
12053
11881
|
* @function getCommandsForDeviceFromDesignerResultsOfASpecificFieldId
|
|
12054
|
-
* @param {
|
|
12055
|
-
* @param {
|
|
12056
|
-
* @param {
|
|
12057
|
-
* @param {
|
|
12058
|
-
* @param {
|
|
11882
|
+
* @param {string} id - path parameter
|
|
11883
|
+
* @param {string} stepId - path parameter
|
|
11884
|
+
* @param {string} taskId - path parameter
|
|
11885
|
+
* @param {string} fieldId - path parameter
|
|
11886
|
+
* @param {string} deviceId - path parameter
|
|
12059
11887
|
* @param {getCallback} callback - a callback function to return the result
|
|
12060
11888
|
*/
|
|
12061
11889
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12167,10 +11995,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12167
11995
|
* @summary Get designer results according to field id
|
|
12168
11996
|
*
|
|
12169
11997
|
* @function getDesignerResultsAccordingToFieldId
|
|
12170
|
-
* @param {
|
|
12171
|
-
* @param {
|
|
12172
|
-
* @param {
|
|
12173
|
-
* @param {
|
|
11998
|
+
* @param {string} id - path parameter
|
|
11999
|
+
* @param {string} stepId - path parameter
|
|
12000
|
+
* @param {string} taskId - path parameter
|
|
12001
|
+
* @param {string} fieldId - path parameter
|
|
12174
12002
|
* @param {getCallback} callback - a callback function to return the result
|
|
12175
12003
|
*/
|
|
12176
12004
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12278,8 +12106,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12278
12106
|
*
|
|
12279
12107
|
* @function changeATaskOfATicketAtTheCurrentStep
|
|
12280
12108
|
* @param {object} body - PUT body parameter
|
|
12281
|
-
* @param {
|
|
12282
|
-
* @param {
|
|
12109
|
+
* @param {string} id - path parameter
|
|
12110
|
+
* @param {string} taskId - path parameter
|
|
12283
12111
|
* @param {getCallback} callback - a callback function to return the result
|
|
12284
12112
|
*/
|
|
12285
12113
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12382,9 +12210,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12382
12210
|
*
|
|
12383
12211
|
* @function modifyTheDesignerSuggestionsForAccessRequestOrCloneServerPolicy
|
|
12384
12212
|
* @param {object} body - PUT body parameter
|
|
12385
|
-
* @param {
|
|
12386
|
-
* @param {
|
|
12387
|
-
* @param {
|
|
12213
|
+
* @param {string} id - path parameter
|
|
12214
|
+
* @param {string} taskId - path parameter
|
|
12215
|
+
* @param {string} instructionId - path parameter
|
|
12388
12216
|
* @param {getCallback} callback - a callback function to return the result
|
|
12389
12217
|
*/
|
|
12390
12218
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12491,7 +12319,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12491
12319
|
* @summary Returns the details of a specified ticket stages
|
|
12492
12320
|
*
|
|
12493
12321
|
* @function returnsTheDetailsOfASpecifiedTicketStages
|
|
12494
|
-
* @param {
|
|
12322
|
+
* @param {string} id - path parameter
|
|
12495
12323
|
* @param {getCallback} callback - a callback function to return the result
|
|
12496
12324
|
*/
|
|
12497
12325
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12584,8 +12412,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12584
12412
|
*
|
|
12585
12413
|
* @function changeMultipleFieldWithinATaskOfATicketInTheCurrentStep
|
|
12586
12414
|
* @param {object} body - PUT body parameter
|
|
12587
|
-
* @param {
|
|
12588
|
-
* @param {
|
|
12415
|
+
* @param {string} id - path parameter
|
|
12416
|
+
* @param {string} taskId - path parameter
|
|
12589
12417
|
* @param {getCallback} callback - a callback function to return the result
|
|
12590
12418
|
*/
|
|
12591
12419
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12687,8 +12515,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12687
12515
|
* @summary Returns the details of the tasks
|
|
12688
12516
|
*
|
|
12689
12517
|
* @function returnsTheDetailsOfTheTasks
|
|
12690
|
-
* @param {
|
|
12691
|
-
* @param {
|
|
12518
|
+
* @param {string} id - path parameter
|
|
12519
|
+
* @param {string} stepId - path parameter
|
|
12692
12520
|
* @param {getCallback} callback - a callback function to return the result
|
|
12693
12521
|
*/
|
|
12694
12522
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12836,10 +12664,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12836
12664
|
* @summary Get access request verifier results
|
|
12837
12665
|
*
|
|
12838
12666
|
* @function getAccessRequestVerifierResults
|
|
12839
|
-
* @param {
|
|
12840
|
-
* @param {
|
|
12841
|
-
* @param {
|
|
12842
|
-
* @param {
|
|
12667
|
+
* @param {string} id - path parameter
|
|
12668
|
+
* @param {string} stepId - path parameter
|
|
12669
|
+
* @param {string} taskId - path parameter
|
|
12670
|
+
* @param {string} fieldId - path parameter
|
|
12843
12671
|
* @param {getCallback} callback - a callback function to return the result
|
|
12844
12672
|
*/
|
|
12845
12673
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -12946,8 +12774,8 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
12946
12774
|
* @summary Returns the details of a specified ticket stages
|
|
12947
12775
|
*
|
|
12948
12776
|
* @function getSecurechangeTicketsIdStepsStepId
|
|
12949
|
-
* @param {
|
|
12950
|
-
* @param {
|
|
12777
|
+
* @param {string} id - path parameter
|
|
12778
|
+
* @param {string} stepId - path parameter
|
|
12951
12779
|
* @param {getCallback} callback - a callback function to return the result
|
|
12952
12780
|
*/
|
|
12953
12781
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13044,7 +12872,7 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13044
12872
|
* @summary Returns the details of a specified ticket
|
|
13045
12873
|
*
|
|
13046
12874
|
* @function returnsTheDetailsOfASpecifiedTicket
|
|
13047
|
-
* @param {
|
|
12875
|
+
* @param {string} id - path parameter
|
|
13048
12876
|
* @param {getCallback} callback - a callback function to return the result
|
|
13049
12877
|
*/
|
|
13050
12878
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13137,9 +12965,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13137
12965
|
*
|
|
13138
12966
|
* @function changeAFieldWithinATaskOfATicketAtTheCurrentStep
|
|
13139
12967
|
* @param {object} body - PUT body parameter
|
|
13140
|
-
* @param {
|
|
13141
|
-
* @param {
|
|
13142
|
-
* @param {
|
|
12968
|
+
* @param {string} id - path parameter
|
|
12969
|
+
* @param {string} taskId - path parameter
|
|
12970
|
+
* @param {string} fieldId - path parameter
|
|
13143
12971
|
* @param {getCallback} callback - a callback function to return the result
|
|
13144
12972
|
*/
|
|
13145
12973
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13246,11 +13074,11 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13246
13074
|
* @summary Returns the results of the Commit action
|
|
13247
13075
|
*
|
|
13248
13076
|
* @function returnsTheResultsOfTheCommitAction
|
|
13249
|
-
* @param {
|
|
13250
|
-
* @param {
|
|
13251
|
-
* @param {
|
|
13252
|
-
* @param {
|
|
13253
|
-
* @param {
|
|
13077
|
+
* @param {string} id - path parameter
|
|
13078
|
+
* @param {string} stepId - path parameter
|
|
13079
|
+
* @param {string} taskId - path parameter
|
|
13080
|
+
* @param {string} fieldId - path parameter
|
|
13081
|
+
* @param {string} managementId - path parameter
|
|
13254
13082
|
* @param {getCallback} callback - a callback function to return the result
|
|
13255
13083
|
*/
|
|
13256
13084
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13362,9 +13190,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13362
13190
|
* @summary Get server clone policy verifier results
|
|
13363
13191
|
*
|
|
13364
13192
|
* @function getServerClonePolicyVerifierResults
|
|
13365
|
-
* @param {
|
|
13366
|
-
* @param {
|
|
13367
|
-
* @param {
|
|
13193
|
+
* @param {string} id - path parameter
|
|
13194
|
+
* @param {string} stepId - path parameter
|
|
13195
|
+
* @param {string} taskId - path parameter
|
|
13368
13196
|
* @param {getCallback} callback - a callback function to return the result
|
|
13369
13197
|
*/
|
|
13370
13198
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13466,9 +13294,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13466
13294
|
* @summary Returns the details of a the fields
|
|
13467
13295
|
*
|
|
13468
13296
|
* @function returnsTheDetailsOfATheFields
|
|
13469
|
-
* @param {
|
|
13470
|
-
* @param {
|
|
13471
|
-
* @param {
|
|
13297
|
+
* @param {string} id - path parameter
|
|
13298
|
+
* @param {string} stepId - path parameter
|
|
13299
|
+
* @param {string} taskId - path parameter
|
|
13472
13300
|
* @param {getCallback} callback - a callback function to return the result
|
|
13473
13301
|
*/
|
|
13474
13302
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13571,9 +13399,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13571
13399
|
*
|
|
13572
13400
|
* @function changeMultipleFieldsWithinATaskOfATicket
|
|
13573
13401
|
* @param {object} body - PUT body parameter
|
|
13574
|
-
* @param {
|
|
13575
|
-
* @param {
|
|
13576
|
-
* @param {
|
|
13402
|
+
* @param {string} id - path parameter
|
|
13403
|
+
* @param {string} stepId - path parameter
|
|
13404
|
+
* @param {string} taskId - path parameter
|
|
13577
13405
|
* @param {getCallback} callback - a callback function to return the result
|
|
13578
13406
|
*/
|
|
13579
13407
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13680,10 +13508,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13680
13508
|
* @summary Returns topology map image (png file) for specific verifier results
|
|
13681
13509
|
*
|
|
13682
13510
|
* @function returnsTopologyMapImagePngFileForSpecificVerifierResults
|
|
13683
|
-
* @param {
|
|
13684
|
-
* @param {
|
|
13685
|
-
* @param {
|
|
13686
|
-
* @param {
|
|
13511
|
+
* @param {string} id - path parameter
|
|
13512
|
+
* @param {string} stepId - path parameter
|
|
13513
|
+
* @param {string} taskId - path parameter
|
|
13514
|
+
* @param {string} fieldId - path parameter
|
|
13687
13515
|
* @param {getCallback} callback - a callback function to return the result
|
|
13688
13516
|
*/
|
|
13689
13517
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13773,9 +13601,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13773
13601
|
*
|
|
13774
13602
|
* @function changeATaskOfATicket
|
|
13775
13603
|
* @param {object} body - PUT body parameter
|
|
13776
|
-
* @param {
|
|
13777
|
-
* @param {
|
|
13778
|
-
* @param {
|
|
13604
|
+
* @param {string} id - path parameter
|
|
13605
|
+
* @param {string} stepId - path parameter
|
|
13606
|
+
* @param {string} taskId - path parameter
|
|
13779
13607
|
* @param {getCallback} callback - a callback function to return the result
|
|
13780
13608
|
*/
|
|
13781
13609
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -13882,9 +13710,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
13882
13710
|
* @summary Returns the details of a specified task
|
|
13883
13711
|
*
|
|
13884
13712
|
* @function returnsTheDetailsOfASpecifiedTask
|
|
13885
|
-
* @param {
|
|
13886
|
-
* @param {
|
|
13887
|
-
* @param {
|
|
13713
|
+
* @param {string} id - path parameter
|
|
13714
|
+
* @param {string} stepId - path parameter
|
|
13715
|
+
* @param {string} taskId - path parameter
|
|
13888
13716
|
* @param {getCallback} callback - a callback function to return the result
|
|
13889
13717
|
*/
|
|
13890
13718
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -14130,10 +13958,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
14130
13958
|
*
|
|
14131
13959
|
* @function changeAFieldWithinATaskOfATicket
|
|
14132
13960
|
* @param {object} body - PUT body parameter
|
|
14133
|
-
* @param {
|
|
14134
|
-
* @param {
|
|
14135
|
-
* @param {
|
|
14136
|
-
* @param {
|
|
13961
|
+
* @param {string} id - path parameter
|
|
13962
|
+
* @param {string} stepId - path parameter
|
|
13963
|
+
* @param {string} taskId - path parameter
|
|
13964
|
+
* @param {string} fieldId - path parameter
|
|
14137
13965
|
* @param {getCallback} callback - a callback function to return the result
|
|
14138
13966
|
*/
|
|
14139
13967
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -14245,10 +14073,10 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
14245
14073
|
* @summary Returns the details of a specified field
|
|
14246
14074
|
*
|
|
14247
14075
|
* @function returnsTheDetailsOfASpecifiedField
|
|
14248
|
-
* @param {
|
|
14249
|
-
* @param {
|
|
14250
|
-
* @param {
|
|
14251
|
-
* @param {
|
|
14076
|
+
* @param {string} id - path parameter
|
|
14077
|
+
* @param {string} stepId - path parameter
|
|
14078
|
+
* @param {string} taskId - path parameter
|
|
14079
|
+
* @param {string} fieldId - path parameter
|
|
14252
14080
|
* @param {getCallback} callback - a callback function to return the result
|
|
14253
14081
|
*/
|
|
14254
14082
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|
|
@@ -14355,9 +14183,9 @@ class TufinSecureapp extends AdapterBaseCl {
|
|
|
14355
14183
|
* @summary Get rule decommision verifier results
|
|
14356
14184
|
*
|
|
14357
14185
|
* @function getRuleDecommisionVerifierResults
|
|
14358
|
-
* @param {
|
|
14359
|
-
* @param {
|
|
14360
|
-
* @param {
|
|
14186
|
+
* @param {string} id - path parameter
|
|
14187
|
+
* @param {string} stepId - path parameter
|
|
14188
|
+
* @param {string} taskId - path parameter
|
|
14361
14189
|
* @param {getCallback} callback - a callback function to return the result
|
|
14362
14190
|
*/
|
|
14363
14191
|
/* YOU CAN CHANGE THE PARAMETERS YOU TAKE IN HERE AND IN THE pronghorn.json FILE */
|