@itentialopensource/adapter-infoblox 1.14.0 → 1.14.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/CHANGELOG.md +8 -0
- package/adapter.js +35 -1
- package/entities/Networks/mockdatafiles/getNetworkDetails.json +8 -6
- package/entities/Networks/responseSchema.json +1 -1
- package/package.json +1 -1
- package/pronghorn.json +81 -148
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +4 -4
package/CHANGELOG.md
CHANGED
package/adapter.js
CHANGED
|
@@ -1531,6 +1531,12 @@ class Infoblox extends AdapterBaseCl {
|
|
|
1531
1531
|
if (err) {
|
|
1532
1532
|
return callback(null, err);
|
|
1533
1533
|
}
|
|
1534
|
+
if (results.response.length === 0) {
|
|
1535
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Auth zone not found', [], null, null, null);
|
|
1536
|
+
errorObj.IAPerror.recommendation = 'Make sure the auth zone exists';
|
|
1537
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1538
|
+
return callback(null, errorObj);
|
|
1539
|
+
}
|
|
1534
1540
|
let ncKey = results.response[0]._ref;
|
|
1535
1541
|
const networkPath = 'zone_auth/';
|
|
1536
1542
|
if (ncKey !== null && ncKey.indexOf(networkPath) === 0) {
|
|
@@ -1616,6 +1622,12 @@ class Infoblox extends AdapterBaseCl {
|
|
|
1616
1622
|
if (err) {
|
|
1617
1623
|
return callback(null, err);
|
|
1618
1624
|
}
|
|
1625
|
+
if (results.response.length === 0) {
|
|
1626
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Network container not found', [], null, null, null);
|
|
1627
|
+
errorObj.IAPerror.recommendation = 'Make sure the network container exists';
|
|
1628
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1629
|
+
return callback(null, errorObj);
|
|
1630
|
+
}
|
|
1619
1631
|
let ncKey = results.response[0]._ref;
|
|
1620
1632
|
// log.error(ncKey);
|
|
1621
1633
|
const networkPath = 'networkcontainer/';
|
|
@@ -1700,7 +1712,14 @@ class Infoblox extends AdapterBaseCl {
|
|
|
1700
1712
|
if (err) {
|
|
1701
1713
|
return callback(null, err);
|
|
1702
1714
|
}
|
|
1703
|
-
|
|
1715
|
+
if (results.response.length === 0) {
|
|
1716
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Network not found', [], null, null, null);
|
|
1717
|
+
errorObj.IAPerror.recommendation = 'Make sure the network exists';
|
|
1718
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1719
|
+
return callback(null, errorObj);
|
|
1720
|
+
}
|
|
1721
|
+
let ncKey = results.response[0]._ref;
|
|
1722
|
+
|
|
1704
1723
|
// log.error(ncKey);
|
|
1705
1724
|
const networkPath = 'network/';
|
|
1706
1725
|
if (ncKey !== null && ncKey.indexOf(networkPath) === 0) {
|
|
@@ -2023,6 +2042,12 @@ class Infoblox extends AdapterBaseCl {
|
|
|
2023
2042
|
if (err) {
|
|
2024
2043
|
return callback(null, err);
|
|
2025
2044
|
}
|
|
2045
|
+
if (results.response.length === 0) {
|
|
2046
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Network not found', [], null, null, null);
|
|
2047
|
+
errorObj.IAPerror.recommendation = 'Make sure the network exists';
|
|
2048
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2049
|
+
return callback(null, errorObj);
|
|
2050
|
+
}
|
|
2026
2051
|
return this.getNextAvailableIps(results.response[0]._ref, number, callback);
|
|
2027
2052
|
});
|
|
2028
2053
|
}
|
|
@@ -3352,10 +3377,19 @@ class Infoblox extends AdapterBaseCl {
|
|
|
3352
3377
|
* (entities) or the error
|
|
3353
3378
|
*/
|
|
3354
3379
|
assignNextIP2(networkIP, hostName, comment, callback) {
|
|
3380
|
+
const meth = 'adapter-assignNextIP2';
|
|
3381
|
+
const origin = `${this.id}-${meth}`;
|
|
3382
|
+
log.trace(origin);
|
|
3355
3383
|
return this.getNetworkKeyByIP(networkIP, (results, err) => {
|
|
3356
3384
|
if (err) {
|
|
3357
3385
|
return callback(null, err);
|
|
3358
3386
|
}
|
|
3387
|
+
if (results.response.length === 0) {
|
|
3388
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Network not found', [], null, null, null);
|
|
3389
|
+
errorObj.IAPerror.recommendation = 'Make sure the network exists';
|
|
3390
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3391
|
+
return callback(null, errorObj);
|
|
3392
|
+
}
|
|
3359
3393
|
return this.getNextAvailableIp(results.response[0]._ref, (resultIp, errIp) => {
|
|
3360
3394
|
if (errIp) {
|
|
3361
3395
|
return callback(null, errIp);
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"_ref": "network/ZG5zLm5ldHdvcmskMy4xLjEuMC8yNC8w:3.1.1.0/24/default",
|
|
4
|
+
"comment": "For test purpose",
|
|
5
|
+
"network": "3.1.1.0/24",
|
|
6
|
+
"network_view": "default"
|
|
7
|
+
}
|
|
8
|
+
]
|
package/package.json
CHANGED
package/pronghorn.json
CHANGED
|
@@ -7547,8 +7547,7 @@
|
|
|
7547
7547
|
"type": "string",
|
|
7548
7548
|
"example": "string"
|
|
7549
7549
|
}
|
|
7550
|
-
}
|
|
7551
|
-
"definitions": {}
|
|
7550
|
+
}
|
|
7552
7551
|
}
|
|
7553
7552
|
}
|
|
7554
7553
|
],
|
|
@@ -7699,8 +7698,7 @@
|
|
|
7699
7698
|
"type": "string",
|
|
7700
7699
|
"example": "string"
|
|
7701
7700
|
}
|
|
7702
|
-
}
|
|
7703
|
-
"definitions": {}
|
|
7701
|
+
}
|
|
7704
7702
|
}
|
|
7705
7703
|
}
|
|
7706
7704
|
],
|
|
@@ -7821,8 +7819,7 @@
|
|
|
7821
7819
|
"type": "string",
|
|
7822
7820
|
"example": "string"
|
|
7823
7821
|
}
|
|
7824
|
-
}
|
|
7825
|
-
"definitions": {}
|
|
7822
|
+
}
|
|
7826
7823
|
}
|
|
7827
7824
|
}
|
|
7828
7825
|
],
|
|
@@ -7929,8 +7926,7 @@
|
|
|
7929
7926
|
"type": "string",
|
|
7930
7927
|
"example": "string"
|
|
7931
7928
|
}
|
|
7932
|
-
}
|
|
7933
|
-
"definitions": {}
|
|
7929
|
+
}
|
|
7934
7930
|
}
|
|
7935
7931
|
}
|
|
7936
7932
|
],
|
|
@@ -8059,8 +8055,7 @@
|
|
|
8059
8055
|
"type": "string",
|
|
8060
8056
|
"example": "string"
|
|
8061
8057
|
}
|
|
8062
|
-
}
|
|
8063
|
-
"definitions": {}
|
|
8058
|
+
}
|
|
8064
8059
|
}
|
|
8065
8060
|
}
|
|
8066
8061
|
],
|
|
@@ -8175,8 +8170,7 @@
|
|
|
8175
8170
|
"type": "string",
|
|
8176
8171
|
"example": "string"
|
|
8177
8172
|
}
|
|
8178
|
-
}
|
|
8179
|
-
"definitions": {}
|
|
8173
|
+
}
|
|
8180
8174
|
}
|
|
8181
8175
|
}
|
|
8182
8176
|
],
|
|
@@ -8297,8 +8291,7 @@
|
|
|
8297
8291
|
"type": "string",
|
|
8298
8292
|
"example": "string"
|
|
8299
8293
|
}
|
|
8300
|
-
}
|
|
8301
|
-
"definitions": {}
|
|
8294
|
+
}
|
|
8302
8295
|
}
|
|
8303
8296
|
}
|
|
8304
8297
|
],
|
|
@@ -8405,8 +8398,7 @@
|
|
|
8405
8398
|
"type": "string",
|
|
8406
8399
|
"example": "string"
|
|
8407
8400
|
}
|
|
8408
|
-
}
|
|
8409
|
-
"definitions": {}
|
|
8401
|
+
}
|
|
8410
8402
|
}
|
|
8411
8403
|
}
|
|
8412
8404
|
],
|
|
@@ -8555,8 +8547,7 @@
|
|
|
8555
8547
|
"type": "string",
|
|
8556
8548
|
"example": "string"
|
|
8557
8549
|
}
|
|
8558
|
-
}
|
|
8559
|
-
"definitions": {}
|
|
8550
|
+
}
|
|
8560
8551
|
}
|
|
8561
8552
|
}
|
|
8562
8553
|
],
|
|
@@ -8691,8 +8682,7 @@
|
|
|
8691
8682
|
"type": "string",
|
|
8692
8683
|
"example": "string"
|
|
8693
8684
|
}
|
|
8694
|
-
}
|
|
8695
|
-
"definitions": {}
|
|
8685
|
+
}
|
|
8696
8686
|
}
|
|
8697
8687
|
}
|
|
8698
8688
|
],
|
|
@@ -8823,9 +8813,9 @@
|
|
|
8823
8813
|
"info": "Enter the request body here: }",
|
|
8824
8814
|
"required": true,
|
|
8825
8815
|
"schema": {
|
|
8816
|
+
"title": "body",
|
|
8826
8817
|
"type": "object",
|
|
8827
|
-
"properties": {}
|
|
8828
|
-
"definitions": {}
|
|
8818
|
+
"properties": {}
|
|
8829
8819
|
}
|
|
8830
8820
|
}
|
|
8831
8821
|
],
|
|
@@ -9464,8 +9454,7 @@
|
|
|
9464
9454
|
"type": "string",
|
|
9465
9455
|
"example": "bool"
|
|
9466
9456
|
}
|
|
9467
|
-
}
|
|
9468
|
-
"definitions": {}
|
|
9457
|
+
}
|
|
9469
9458
|
}
|
|
9470
9459
|
}
|
|
9471
9460
|
],
|
|
@@ -9640,9 +9629,9 @@
|
|
|
9640
9629
|
"info": "Enter the request body here: }",
|
|
9641
9630
|
"required": true,
|
|
9642
9631
|
"schema": {
|
|
9632
|
+
"title": "body",
|
|
9643
9633
|
"type": "object",
|
|
9644
|
-
"properties": {}
|
|
9645
|
-
"definitions": {}
|
|
9634
|
+
"properties": {}
|
|
9646
9635
|
}
|
|
9647
9636
|
}
|
|
9648
9637
|
],
|
|
@@ -10494,8 +10483,7 @@
|
|
|
10494
10483
|
"type": "string",
|
|
10495
10484
|
"example": "string"
|
|
10496
10485
|
}
|
|
10497
|
-
}
|
|
10498
|
-
"definitions": {}
|
|
10486
|
+
}
|
|
10499
10487
|
}
|
|
10500
10488
|
}
|
|
10501
10489
|
],
|
|
@@ -10630,8 +10618,7 @@
|
|
|
10630
10618
|
"type": "string",
|
|
10631
10619
|
"example": "bool"
|
|
10632
10620
|
}
|
|
10633
|
-
}
|
|
10634
|
-
"definitions": {}
|
|
10621
|
+
}
|
|
10635
10622
|
}
|
|
10636
10623
|
}
|
|
10637
10624
|
],
|
|
@@ -10760,8 +10747,7 @@
|
|
|
10760
10747
|
"type": "string",
|
|
10761
10748
|
"example": "string"
|
|
10762
10749
|
}
|
|
10763
|
-
}
|
|
10764
|
-
"definitions": {}
|
|
10750
|
+
}
|
|
10765
10751
|
}
|
|
10766
10752
|
}
|
|
10767
10753
|
],
|
|
@@ -10876,8 +10862,7 @@
|
|
|
10876
10862
|
"type": "string",
|
|
10877
10863
|
"example": "string"
|
|
10878
10864
|
}
|
|
10879
|
-
}
|
|
10880
|
-
"definitions": {}
|
|
10865
|
+
}
|
|
10881
10866
|
}
|
|
10882
10867
|
}
|
|
10883
10868
|
],
|
|
@@ -11006,8 +10991,7 @@
|
|
|
11006
10991
|
"type": "string",
|
|
11007
10992
|
"example": "string"
|
|
11008
10993
|
}
|
|
11009
|
-
}
|
|
11010
|
-
"definitions": {}
|
|
10994
|
+
}
|
|
11011
10995
|
}
|
|
11012
10996
|
}
|
|
11013
10997
|
],
|
|
@@ -11122,8 +11106,7 @@
|
|
|
11122
11106
|
"type": "string",
|
|
11123
11107
|
"example": "string"
|
|
11124
11108
|
}
|
|
11125
|
-
}
|
|
11126
|
-
"definitions": {}
|
|
11109
|
+
}
|
|
11127
11110
|
}
|
|
11128
11111
|
}
|
|
11129
11112
|
],
|
|
@@ -11252,8 +11235,7 @@
|
|
|
11252
11235
|
"type": "string",
|
|
11253
11236
|
"example": "string"
|
|
11254
11237
|
}
|
|
11255
|
-
}
|
|
11256
|
-
"definitions": {}
|
|
11238
|
+
}
|
|
11257
11239
|
}
|
|
11258
11240
|
}
|
|
11259
11241
|
],
|
|
@@ -11368,8 +11350,7 @@
|
|
|
11368
11350
|
"type": "string",
|
|
11369
11351
|
"example": "string"
|
|
11370
11352
|
}
|
|
11371
|
-
}
|
|
11372
|
-
"definitions": {}
|
|
11353
|
+
}
|
|
11373
11354
|
}
|
|
11374
11355
|
}
|
|
11375
11356
|
],
|
|
@@ -11498,8 +11479,7 @@
|
|
|
11498
11479
|
"type": "string",
|
|
11499
11480
|
"example": "[{'name': 'string', 'stealth': 'bool', 'grid_replicate': 'bool', 'lead': 'bool', 'preferred_primaries': 'extserver', 'enable_preferred_primaries': 'bool'}]"
|
|
11500
11481
|
}
|
|
11501
|
-
}
|
|
11502
|
-
"definitions": {}
|
|
11482
|
+
}
|
|
11503
11483
|
}
|
|
11504
11484
|
}
|
|
11505
11485
|
],
|
|
@@ -11614,8 +11594,7 @@
|
|
|
11614
11594
|
"type": "string",
|
|
11615
11595
|
"example": "[{'name': 'string', 'stealth': 'bool', 'grid_replicate': 'bool', 'lead': 'bool', 'preferred_primaries': 'extserver', 'enable_preferred_primaries': 'bool'}]"
|
|
11616
11596
|
}
|
|
11617
|
-
}
|
|
11618
|
-
"definitions": {}
|
|
11597
|
+
}
|
|
11619
11598
|
}
|
|
11620
11599
|
}
|
|
11621
11600
|
],
|
|
@@ -11836,8 +11815,7 @@
|
|
|
11836
11815
|
"type": "string",
|
|
11837
11816
|
"example": "bool"
|
|
11838
11817
|
}
|
|
11839
|
-
}
|
|
11840
|
-
"definitions": {}
|
|
11818
|
+
}
|
|
11841
11819
|
}
|
|
11842
11820
|
}
|
|
11843
11821
|
],
|
|
@@ -11990,8 +11968,7 @@
|
|
|
11990
11968
|
"type": "string",
|
|
11991
11969
|
"example": "string"
|
|
11992
11970
|
}
|
|
11993
|
-
}
|
|
11994
|
-
"definitions": {}
|
|
11971
|
+
}
|
|
11995
11972
|
}
|
|
11996
11973
|
}
|
|
11997
11974
|
],
|
|
@@ -12130,8 +12107,7 @@
|
|
|
12130
12107
|
"type": "string",
|
|
12131
12108
|
"example": "string"
|
|
12132
12109
|
}
|
|
12133
|
-
}
|
|
12134
|
-
"definitions": {}
|
|
12110
|
+
}
|
|
12135
12111
|
}
|
|
12136
12112
|
}
|
|
12137
12113
|
],
|
|
@@ -12300,8 +12276,7 @@
|
|
|
12300
12276
|
"type": "string",
|
|
12301
12277
|
"example": "string"
|
|
12302
12278
|
}
|
|
12303
|
-
}
|
|
12304
|
-
"definitions": {}
|
|
12279
|
+
}
|
|
12305
12280
|
}
|
|
12306
12281
|
}
|
|
12307
12282
|
],
|
|
@@ -12456,8 +12431,7 @@
|
|
|
12456
12431
|
"type": "string",
|
|
12457
12432
|
"example": "string"
|
|
12458
12433
|
}
|
|
12459
|
-
}
|
|
12460
|
-
"definitions": {}
|
|
12434
|
+
}
|
|
12461
12435
|
}
|
|
12462
12436
|
}
|
|
12463
12437
|
],
|
|
@@ -12774,8 +12748,7 @@
|
|
|
12774
12748
|
"type": "string",
|
|
12775
12749
|
"example": "string"
|
|
12776
12750
|
}
|
|
12777
|
-
}
|
|
12778
|
-
"definitions": {}
|
|
12751
|
+
}
|
|
12779
12752
|
}
|
|
12780
12753
|
}
|
|
12781
12754
|
],
|
|
@@ -12918,8 +12891,7 @@
|
|
|
12918
12891
|
"type": "string",
|
|
12919
12892
|
"example": "bool"
|
|
12920
12893
|
}
|
|
12921
|
-
}
|
|
12922
|
-
"definitions": {}
|
|
12894
|
+
}
|
|
12923
12895
|
}
|
|
12924
12896
|
}
|
|
12925
12897
|
],
|
|
@@ -13446,8 +13418,7 @@
|
|
|
13446
13418
|
"type": "string",
|
|
13447
13419
|
"example": "bool"
|
|
13448
13420
|
}
|
|
13449
|
-
}
|
|
13450
|
-
"definitions": {}
|
|
13421
|
+
}
|
|
13451
13422
|
}
|
|
13452
13423
|
}
|
|
13453
13424
|
],
|
|
@@ -13656,8 +13627,7 @@
|
|
|
13656
13627
|
"type": "string",
|
|
13657
13628
|
"example": "uint"
|
|
13658
13629
|
}
|
|
13659
|
-
}
|
|
13660
|
-
"definitions": {}
|
|
13630
|
+
}
|
|
13661
13631
|
}
|
|
13662
13632
|
}
|
|
13663
13633
|
],
|
|
@@ -13808,8 +13778,7 @@
|
|
|
13808
13778
|
"type": "string",
|
|
13809
13779
|
"example": "string"
|
|
13810
13780
|
}
|
|
13811
|
-
}
|
|
13812
|
-
"definitions": {}
|
|
13781
|
+
}
|
|
13813
13782
|
}
|
|
13814
13783
|
}
|
|
13815
13784
|
],
|
|
@@ -13990,8 +13959,7 @@
|
|
|
13990
13959
|
"type": "string",
|
|
13991
13960
|
"example": "string"
|
|
13992
13961
|
}
|
|
13993
|
-
}
|
|
13994
|
-
"definitions": {}
|
|
13962
|
+
}
|
|
13995
13963
|
}
|
|
13996
13964
|
}
|
|
13997
13965
|
],
|
|
@@ -14154,8 +14122,7 @@
|
|
|
14154
14122
|
"type": "string",
|
|
14155
14123
|
"example": "bool"
|
|
14156
14124
|
}
|
|
14157
|
-
}
|
|
14158
|
-
"definitions": {}
|
|
14125
|
+
}
|
|
14159
14126
|
}
|
|
14160
14127
|
}
|
|
14161
14128
|
],
|
|
@@ -14300,8 +14267,7 @@
|
|
|
14300
14267
|
"type": "string",
|
|
14301
14268
|
"example": "string"
|
|
14302
14269
|
}
|
|
14303
|
-
}
|
|
14304
|
-
"definitions": {}
|
|
14270
|
+
}
|
|
14305
14271
|
}
|
|
14306
14272
|
}
|
|
14307
14273
|
],
|
|
@@ -14846,8 +14812,7 @@
|
|
|
14846
14812
|
"type": "string",
|
|
14847
14813
|
"example": "uint"
|
|
14848
14814
|
}
|
|
14849
|
-
}
|
|
14850
|
-
"definitions": {}
|
|
14815
|
+
}
|
|
14851
14816
|
}
|
|
14852
14817
|
}
|
|
14853
14818
|
],
|
|
@@ -15008,8 +14973,7 @@
|
|
|
15008
14973
|
"type": "string",
|
|
15009
14974
|
"example": "string"
|
|
15010
14975
|
}
|
|
15011
|
-
}
|
|
15012
|
-
"definitions": {}
|
|
14976
|
+
}
|
|
15013
14977
|
}
|
|
15014
14978
|
}
|
|
15015
14979
|
],
|
|
@@ -15156,8 +15120,7 @@
|
|
|
15156
15120
|
"type": "string",
|
|
15157
15121
|
"example": "string"
|
|
15158
15122
|
}
|
|
15159
|
-
}
|
|
15160
|
-
"definitions": {}
|
|
15123
|
+
}
|
|
15161
15124
|
}
|
|
15162
15125
|
}
|
|
15163
15126
|
],
|
|
@@ -15338,8 +15301,7 @@
|
|
|
15338
15301
|
"type": "string",
|
|
15339
15302
|
"example": "string"
|
|
15340
15303
|
}
|
|
15341
|
-
}
|
|
15342
|
-
"definitions": {}
|
|
15304
|
+
}
|
|
15343
15305
|
}
|
|
15344
15306
|
}
|
|
15345
15307
|
],
|
|
@@ -15496,8 +15458,7 @@
|
|
|
15496
15458
|
"type": "string",
|
|
15497
15459
|
"example": "string"
|
|
15498
15460
|
}
|
|
15499
|
-
}
|
|
15500
|
-
"definitions": {}
|
|
15461
|
+
}
|
|
15501
15462
|
}
|
|
15502
15463
|
}
|
|
15503
15464
|
],
|
|
@@ -15640,8 +15601,7 @@
|
|
|
15640
15601
|
"type": "string",
|
|
15641
15602
|
"example": "string"
|
|
15642
15603
|
}
|
|
15643
|
-
}
|
|
15644
|
-
"definitions": {}
|
|
15604
|
+
}
|
|
15645
15605
|
}
|
|
15646
15606
|
}
|
|
15647
15607
|
],
|
|
@@ -15766,8 +15726,7 @@
|
|
|
15766
15726
|
"type": "string",
|
|
15767
15727
|
"example": "string"
|
|
15768
15728
|
}
|
|
15769
|
-
}
|
|
15770
|
-
"definitions": {}
|
|
15729
|
+
}
|
|
15771
15730
|
}
|
|
15772
15731
|
}
|
|
15773
15732
|
],
|
|
@@ -15878,8 +15837,7 @@
|
|
|
15878
15837
|
"type": "string",
|
|
15879
15838
|
"example": "string"
|
|
15880
15839
|
}
|
|
15881
|
-
}
|
|
15882
|
-
"definitions": {}
|
|
15840
|
+
}
|
|
15883
15841
|
}
|
|
15884
15842
|
}
|
|
15885
15843
|
],
|
|
@@ -16012,8 +15970,7 @@
|
|
|
16012
15970
|
"type": "string",
|
|
16013
15971
|
"example": "['NXDOMAIN', 'BLACKLIST']"
|
|
16014
15972
|
}
|
|
16015
|
-
}
|
|
16016
|
-
"definitions": {}
|
|
15973
|
+
}
|
|
16017
15974
|
}
|
|
16018
15975
|
}
|
|
16019
15976
|
],
|
|
@@ -16132,8 +16089,7 @@
|
|
|
16132
16089
|
"type": "string",
|
|
16133
16090
|
"example": "['NXDOMAIN', 'BLACKLIST']"
|
|
16134
16091
|
}
|
|
16135
|
-
}
|
|
16136
|
-
"definitions": {}
|
|
16092
|
+
}
|
|
16137
16093
|
}
|
|
16138
16094
|
}
|
|
16139
16095
|
],
|
|
@@ -16356,8 +16312,7 @@
|
|
|
16356
16312
|
"type": "string",
|
|
16357
16313
|
"example": "bool"
|
|
16358
16314
|
}
|
|
16359
|
-
}
|
|
16360
|
-
"definitions": {}
|
|
16315
|
+
}
|
|
16361
16316
|
}
|
|
16362
16317
|
}
|
|
16363
16318
|
],
|
|
@@ -16488,8 +16443,7 @@
|
|
|
16488
16443
|
"type": "string",
|
|
16489
16444
|
"example": "bool"
|
|
16490
16445
|
}
|
|
16491
|
-
}
|
|
16492
|
-
"definitions": {}
|
|
16446
|
+
}
|
|
16493
16447
|
}
|
|
16494
16448
|
}
|
|
16495
16449
|
],
|
|
@@ -16634,8 +16588,7 @@
|
|
|
16634
16588
|
"type": "string",
|
|
16635
16589
|
"example": "bool"
|
|
16636
16590
|
}
|
|
16637
|
-
}
|
|
16638
|
-
"definitions": {}
|
|
16591
|
+
}
|
|
16639
16592
|
}
|
|
16640
16593
|
}
|
|
16641
16594
|
],
|
|
@@ -16766,8 +16719,7 @@
|
|
|
16766
16719
|
"type": "string",
|
|
16767
16720
|
"example": "bool"
|
|
16768
16721
|
}
|
|
16769
|
-
}
|
|
16770
|
-
"definitions": {}
|
|
16722
|
+
}
|
|
16771
16723
|
}
|
|
16772
16724
|
}
|
|
16773
16725
|
],
|
|
@@ -16912,8 +16864,7 @@
|
|
|
16912
16864
|
"type": "string",
|
|
16913
16865
|
"example": "bool"
|
|
16914
16866
|
}
|
|
16915
|
-
}
|
|
16916
|
-
"definitions": {}
|
|
16867
|
+
}
|
|
16917
16868
|
}
|
|
16918
16869
|
}
|
|
16919
16870
|
],
|
|
@@ -17044,8 +16995,7 @@
|
|
|
17044
16995
|
"type": "string",
|
|
17045
16996
|
"example": "bool"
|
|
17046
16997
|
}
|
|
17047
|
-
}
|
|
17048
|
-
"definitions": {}
|
|
16998
|
+
}
|
|
17049
16999
|
}
|
|
17050
17000
|
}
|
|
17051
17001
|
],
|
|
@@ -17194,8 +17144,7 @@
|
|
|
17194
17144
|
"type": "string",
|
|
17195
17145
|
"example": "bool"
|
|
17196
17146
|
}
|
|
17197
|
-
}
|
|
17198
|
-
"definitions": {}
|
|
17147
|
+
}
|
|
17199
17148
|
}
|
|
17200
17149
|
}
|
|
17201
17150
|
],
|
|
@@ -17330,8 +17279,7 @@
|
|
|
17330
17279
|
"type": "string",
|
|
17331
17280
|
"example": "bool"
|
|
17332
17281
|
}
|
|
17333
|
-
}
|
|
17334
|
-
"definitions": {}
|
|
17282
|
+
}
|
|
17335
17283
|
}
|
|
17336
17284
|
}
|
|
17337
17285
|
],
|
|
@@ -17488,8 +17436,7 @@
|
|
|
17488
17436
|
"type": "string",
|
|
17489
17437
|
"example": "uint"
|
|
17490
17438
|
}
|
|
17491
|
-
}
|
|
17492
|
-
"definitions": {}
|
|
17439
|
+
}
|
|
17493
17440
|
}
|
|
17494
17441
|
}
|
|
17495
17442
|
],
|
|
@@ -17632,8 +17579,7 @@
|
|
|
17632
17579
|
"type": "string",
|
|
17633
17580
|
"example": "uint"
|
|
17634
17581
|
}
|
|
17635
|
-
}
|
|
17636
|
-
"definitions": {}
|
|
17582
|
+
}
|
|
17637
17583
|
}
|
|
17638
17584
|
}
|
|
17639
17585
|
],
|
|
@@ -17778,8 +17724,7 @@
|
|
|
17778
17724
|
"type": "string",
|
|
17779
17725
|
"example": "bool"
|
|
17780
17726
|
}
|
|
17781
|
-
}
|
|
17782
|
-
"definitions": {}
|
|
17727
|
+
}
|
|
17783
17728
|
}
|
|
17784
17729
|
}
|
|
17785
17730
|
],
|
|
@@ -17910,8 +17855,7 @@
|
|
|
17910
17855
|
"type": "string",
|
|
17911
17856
|
"example": "bool"
|
|
17912
17857
|
}
|
|
17913
|
-
}
|
|
17914
|
-
"definitions": {}
|
|
17858
|
+
}
|
|
17915
17859
|
}
|
|
17916
17860
|
}
|
|
17917
17861
|
],
|
|
@@ -18048,8 +17992,7 @@
|
|
|
18048
17992
|
"type": "string",
|
|
18049
17993
|
"example": "string"
|
|
18050
17994
|
}
|
|
18051
|
-
}
|
|
18052
|
-
"definitions": {}
|
|
17995
|
+
}
|
|
18053
17996
|
}
|
|
18054
17997
|
}
|
|
18055
17998
|
],
|
|
@@ -18172,8 +18115,7 @@
|
|
|
18172
18115
|
"type": "string",
|
|
18173
18116
|
"example": "string"
|
|
18174
18117
|
}
|
|
18175
|
-
}
|
|
18176
|
-
"definitions": {}
|
|
18118
|
+
}
|
|
18177
18119
|
}
|
|
18178
18120
|
}
|
|
18179
18121
|
],
|
|
@@ -18560,8 +18502,7 @@
|
|
|
18560
18502
|
"type": "string",
|
|
18561
18503
|
"example": "bool"
|
|
18562
18504
|
}
|
|
18563
|
-
}
|
|
18564
|
-
"definitions": {}
|
|
18505
|
+
}
|
|
18565
18506
|
}
|
|
18566
18507
|
}
|
|
18567
18508
|
],
|
|
@@ -18658,9 +18599,9 @@
|
|
|
18658
18599
|
"info": "Enter the request body here: }",
|
|
18659
18600
|
"required": true,
|
|
18660
18601
|
"schema": {
|
|
18602
|
+
"title": "body",
|
|
18661
18603
|
"type": "object",
|
|
18662
|
-
"properties": {}
|
|
18663
|
-
"definitions": {}
|
|
18604
|
+
"properties": {}
|
|
18664
18605
|
}
|
|
18665
18606
|
}
|
|
18666
18607
|
],
|
|
@@ -19035,8 +18976,7 @@
|
|
|
19035
18976
|
"type": "string",
|
|
19036
18977
|
"example": "bool"
|
|
19037
18978
|
}
|
|
19038
|
-
}
|
|
19039
|
-
"definitions": {}
|
|
18979
|
+
}
|
|
19040
18980
|
}
|
|
19041
18981
|
}
|
|
19042
18982
|
],
|
|
@@ -19493,8 +19433,7 @@
|
|
|
19493
19433
|
"type": "string",
|
|
19494
19434
|
"example": "['FORWARD', 'IPV4', 'IPV6']"
|
|
19495
19435
|
}
|
|
19496
|
-
}
|
|
19497
|
-
"definitions": {}
|
|
19436
|
+
}
|
|
19498
19437
|
}
|
|
19499
19438
|
}
|
|
19500
19439
|
],
|
|
@@ -19885,8 +19824,7 @@
|
|
|
19885
19824
|
"type": "string",
|
|
19886
19825
|
"example": "string"
|
|
19887
19826
|
}
|
|
19888
|
-
}
|
|
19889
|
-
"definitions": {}
|
|
19827
|
+
}
|
|
19890
19828
|
}
|
|
19891
19829
|
}
|
|
19892
19830
|
],
|
|
@@ -20061,9 +19999,9 @@
|
|
|
20061
19999
|
"info": "Enter the request body here: }",
|
|
20062
20000
|
"required": true,
|
|
20063
20001
|
"schema": {
|
|
20002
|
+
"title": "body",
|
|
20064
20003
|
"type": "object",
|
|
20065
|
-
"properties": {}
|
|
20066
|
-
"definitions": {}
|
|
20004
|
+
"properties": {}
|
|
20067
20005
|
}
|
|
20068
20006
|
}
|
|
20069
20007
|
],
|
|
@@ -20180,8 +20118,7 @@
|
|
|
20180
20118
|
"type": "string",
|
|
20181
20119
|
"example": "string"
|
|
20182
20120
|
}
|
|
20183
|
-
}
|
|
20184
|
-
"definitions": {}
|
|
20121
|
+
}
|
|
20185
20122
|
}
|
|
20186
20123
|
}
|
|
20187
20124
|
],
|
|
@@ -20312,9 +20249,9 @@
|
|
|
20312
20249
|
"info": "Enter the request body here: }",
|
|
20313
20250
|
"required": true,
|
|
20314
20251
|
"schema": {
|
|
20252
|
+
"title": "body",
|
|
20315
20253
|
"type": "object",
|
|
20316
|
-
"properties": {}
|
|
20317
|
-
"definitions": {}
|
|
20254
|
+
"properties": {}
|
|
20318
20255
|
}
|
|
20319
20256
|
}
|
|
20320
20257
|
],
|
|
@@ -20435,8 +20372,7 @@
|
|
|
20435
20372
|
"type": "string",
|
|
20436
20373
|
"example": "string"
|
|
20437
20374
|
}
|
|
20438
|
-
}
|
|
20439
|
-
"definitions": {}
|
|
20375
|
+
}
|
|
20440
20376
|
}
|
|
20441
20377
|
}
|
|
20442
20378
|
],
|
|
@@ -20567,9 +20503,9 @@
|
|
|
20567
20503
|
"info": "Enter the request body here: }",
|
|
20568
20504
|
"required": true,
|
|
20569
20505
|
"schema": {
|
|
20506
|
+
"title": "body",
|
|
20570
20507
|
"type": "object",
|
|
20571
|
-
"properties": {}
|
|
20572
|
-
"definitions": {}
|
|
20508
|
+
"properties": {}
|
|
20573
20509
|
}
|
|
20574
20510
|
}
|
|
20575
20511
|
],
|
|
@@ -20806,8 +20742,7 @@
|
|
|
20806
20742
|
"type": "string",
|
|
20807
20743
|
"example": "string"
|
|
20808
20744
|
}
|
|
20809
|
-
}
|
|
20810
|
-
"definitions": {}
|
|
20745
|
+
}
|
|
20811
20746
|
}
|
|
20812
20747
|
}
|
|
20813
20748
|
],
|
|
@@ -20984,8 +20919,7 @@
|
|
|
20984
20919
|
"type": "string",
|
|
20985
20920
|
"example": "['FORWARD', 'IPV4', 'IPV6']"
|
|
20986
20921
|
}
|
|
20987
|
-
}
|
|
20988
|
-
"definitions": {}
|
|
20922
|
+
}
|
|
20989
20923
|
}
|
|
20990
20924
|
}
|
|
20991
20925
|
],
|
|
@@ -21082,9 +21016,9 @@
|
|
|
21082
21016
|
"info": "Enter the request body here: }",
|
|
21083
21017
|
"required": true,
|
|
21084
21018
|
"schema": {
|
|
21019
|
+
"title": "body",
|
|
21085
21020
|
"type": "object",
|
|
21086
|
-
"properties": {}
|
|
21087
|
-
"definitions": {}
|
|
21021
|
+
"properties": {}
|
|
21088
21022
|
}
|
|
21089
21023
|
}
|
|
21090
21024
|
],
|
|
@@ -21205,8 +21139,7 @@
|
|
|
21205
21139
|
"type": "string",
|
|
21206
21140
|
"example": "string"
|
|
21207
21141
|
}
|
|
21208
|
-
}
|
|
21209
|
-
"definitions": {}
|
|
21142
|
+
}
|
|
21210
21143
|
}
|
|
21211
21144
|
}
|
|
21212
21145
|
],
|
|
Binary file
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"configLines":
|
|
2
|
+
"version": "1.14.0",
|
|
3
|
+
"configLines": 23168,
|
|
4
4
|
"scriptLines": 1783,
|
|
5
|
-
"codeLines":
|
|
5
|
+
"codeLines": 29971,
|
|
6
6
|
"testLines": 22931,
|
|
7
7
|
"testCases": 1141,
|
|
8
|
-
"totalCodeLines":
|
|
8
|
+
"totalCodeLines": 54685,
|
|
9
9
|
"wfTasks": 407
|
|
10
10
|
}
|