@itentialopensource/adapter-apic 0.12.2 → 0.14.0
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 +138 -0
- package/PROPERTIES.md +16 -1
- package/adapter.js +2078 -0
- package/adapterBase.js +38 -0
- package/entities/ApplicationProfileOperations/action.json +25 -0
- package/entities/ApplicationProfileOperations/schema.json +19 -0
- package/entities/BridgeDomainOperations/action.json +65 -0
- package/entities/BridgeDomainOperations/schema.json +21 -0
- package/entities/EPGOperations/action.json +86 -0
- package/entities/EPGOperations/schema.json +33 -0
- package/entities/TenantOperations/action.json +87 -0
- package/entities/TenantOperations/schema.json +22 -0
- package/entities/VLANPoolOperations/action.json +147 -0
- package/entities/VLANPoolOperations/schema.json +25 -0
- package/entities/VMMDomainOperations/action.json +46 -0
- package/entities/VMMDomainOperations/schema.json +31 -0
- package/entities/VRFOperations/action.json +45 -0
- package/entities/VRFOperations/schema.json +20 -0
- package/package.json +4 -4
- package/pronghorn.json +1104 -2
- package/propertiesSchema.json +41 -3
- package/report/adapterInfo.json +7 -7
- package/report/cisco-aci-apic-openapi.json +801 -0
- package/report/updateReport1764798882161.json +120 -0
- package/sampleProperties.json +4 -1
- package/test/integration/adapterTestIntegration.js +585 -0
- package/test/unit/adapterBaseTestUnit.js +1 -1
- package/test/unit/adapterTestUnit.js +826 -0
package/pronghorn.json
CHANGED
|
@@ -300,11 +300,11 @@
|
|
|
300
300
|
{
|
|
301
301
|
"name": "maxCalls",
|
|
302
302
|
"required": false,
|
|
303
|
-
"type": "number",
|
|
303
|
+
"type": "number",
|
|
304
304
|
"info": "How many GET endpoints to test (defaults to 5)",
|
|
305
305
|
"schema": {
|
|
306
306
|
"title": "maxCalls",
|
|
307
|
-
"type": "number",
|
|
307
|
+
"type": "number",
|
|
308
308
|
"default": 5
|
|
309
309
|
}
|
|
310
310
|
}
|
|
@@ -1260,6 +1260,1108 @@
|
|
|
1260
1260
|
"path": "/deleteTenant"
|
|
1261
1261
|
},
|
|
1262
1262
|
"task": true
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"name": "getAllTenants",
|
|
1266
|
+
"summary": "Get All Tenants",
|
|
1267
|
+
"description": "Get All Tenants",
|
|
1268
|
+
"input": [
|
|
1269
|
+
{
|
|
1270
|
+
"name": "iapMetadata",
|
|
1271
|
+
"type": "object",
|
|
1272
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1273
|
+
"required": false,
|
|
1274
|
+
"schema": {
|
|
1275
|
+
"title": "iapMetadata",
|
|
1276
|
+
"type": "object"
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
],
|
|
1280
|
+
"output": {
|
|
1281
|
+
"name": "result",
|
|
1282
|
+
"type": "object",
|
|
1283
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1284
|
+
"schema": {
|
|
1285
|
+
"title": "result",
|
|
1286
|
+
"type": "object"
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
"roles": [
|
|
1290
|
+
"admin"
|
|
1291
|
+
],
|
|
1292
|
+
"route": {
|
|
1293
|
+
"verb": "GET",
|
|
1294
|
+
"path": "/getAllTenants"
|
|
1295
|
+
},
|
|
1296
|
+
"task": true
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"name": "getTenant",
|
|
1300
|
+
"summary": "Get Specific Tenant",
|
|
1301
|
+
"description": "Get Specific Tenant",
|
|
1302
|
+
"input": [
|
|
1303
|
+
{
|
|
1304
|
+
"name": "tenantName",
|
|
1305
|
+
"type": "string",
|
|
1306
|
+
"info": ": string",
|
|
1307
|
+
"required": true,
|
|
1308
|
+
"schema": {
|
|
1309
|
+
"title": "tenantName",
|
|
1310
|
+
"type": "string"
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"name": "iapMetadata",
|
|
1315
|
+
"type": "object",
|
|
1316
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1317
|
+
"required": false,
|
|
1318
|
+
"schema": {
|
|
1319
|
+
"title": "iapMetadata",
|
|
1320
|
+
"type": "object"
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
],
|
|
1324
|
+
"output": {
|
|
1325
|
+
"name": "result",
|
|
1326
|
+
"type": "object",
|
|
1327
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1328
|
+
"schema": {
|
|
1329
|
+
"title": "result",
|
|
1330
|
+
"type": "object"
|
|
1331
|
+
}
|
|
1332
|
+
},
|
|
1333
|
+
"roles": [
|
|
1334
|
+
"admin"
|
|
1335
|
+
],
|
|
1336
|
+
"route": {
|
|
1337
|
+
"verb": "POST",
|
|
1338
|
+
"path": "/getTenant"
|
|
1339
|
+
},
|
|
1340
|
+
"task": true
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"name": "getTenantWithFullSubtree",
|
|
1344
|
+
"summary": "Get Tenant with Full Subtree",
|
|
1345
|
+
"description": "Get Tenant with Full Subtree",
|
|
1346
|
+
"input": [
|
|
1347
|
+
{
|
|
1348
|
+
"name": "tenantName",
|
|
1349
|
+
"type": "string",
|
|
1350
|
+
"info": ": string",
|
|
1351
|
+
"required": true,
|
|
1352
|
+
"schema": {
|
|
1353
|
+
"title": "tenantName",
|
|
1354
|
+
"type": "string"
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"name": "iapMetadata",
|
|
1359
|
+
"type": "object",
|
|
1360
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1361
|
+
"required": false,
|
|
1362
|
+
"schema": {
|
|
1363
|
+
"title": "iapMetadata",
|
|
1364
|
+
"type": "object"
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1367
|
+
],
|
|
1368
|
+
"output": {
|
|
1369
|
+
"name": "result",
|
|
1370
|
+
"type": "object",
|
|
1371
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1372
|
+
"schema": {
|
|
1373
|
+
"title": "result",
|
|
1374
|
+
"type": "object"
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
"roles": [
|
|
1378
|
+
"admin"
|
|
1379
|
+
],
|
|
1380
|
+
"route": {
|
|
1381
|
+
"verb": "POST",
|
|
1382
|
+
"path": "/getTenantWithFullSubtree"
|
|
1383
|
+
},
|
|
1384
|
+
"task": true
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"name": "createTenantOrEnvironment",
|
|
1388
|
+
"summary": "Create Tenant or Complete Environment",
|
|
1389
|
+
"description": "Create Tenant or Complete Environment",
|
|
1390
|
+
"input": [
|
|
1391
|
+
{
|
|
1392
|
+
"name": "body",
|
|
1393
|
+
"type": "object",
|
|
1394
|
+
"info": ": object",
|
|
1395
|
+
"required": true,
|
|
1396
|
+
"schema": {
|
|
1397
|
+
"type": "object",
|
|
1398
|
+
"definitions": {}
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"name": "iapMetadata",
|
|
1403
|
+
"type": "object",
|
|
1404
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1405
|
+
"required": false,
|
|
1406
|
+
"schema": {
|
|
1407
|
+
"title": "iapMetadata",
|
|
1408
|
+
"type": "object"
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
],
|
|
1412
|
+
"output": {
|
|
1413
|
+
"name": "result",
|
|
1414
|
+
"type": "object",
|
|
1415
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1416
|
+
"schema": {
|
|
1417
|
+
"title": "result",
|
|
1418
|
+
"type": "object"
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
"roles": [
|
|
1422
|
+
"admin"
|
|
1423
|
+
],
|
|
1424
|
+
"route": {
|
|
1425
|
+
"verb": "POST",
|
|
1426
|
+
"path": "/createTenantOrEnvironment"
|
|
1427
|
+
},
|
|
1428
|
+
"task": true
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"name": "createTenantResource",
|
|
1432
|
+
"summary": "Create Resources in Tenant",
|
|
1433
|
+
"description": "Create Resources in Tenant",
|
|
1434
|
+
"input": [
|
|
1435
|
+
{
|
|
1436
|
+
"name": "tenantName",
|
|
1437
|
+
"type": "string",
|
|
1438
|
+
"info": ": string",
|
|
1439
|
+
"required": true,
|
|
1440
|
+
"schema": {
|
|
1441
|
+
"title": "tenantName",
|
|
1442
|
+
"type": "string"
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"name": "body",
|
|
1447
|
+
"type": "object",
|
|
1448
|
+
"info": ": object",
|
|
1449
|
+
"required": true,
|
|
1450
|
+
"schema": {
|
|
1451
|
+
"type": "object",
|
|
1452
|
+
"definitions": {}
|
|
1453
|
+
}
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
"name": "iapMetadata",
|
|
1457
|
+
"type": "object",
|
|
1458
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1459
|
+
"required": false,
|
|
1460
|
+
"schema": {
|
|
1461
|
+
"title": "iapMetadata",
|
|
1462
|
+
"type": "object"
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
],
|
|
1466
|
+
"output": {
|
|
1467
|
+
"name": "result",
|
|
1468
|
+
"type": "object",
|
|
1469
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1470
|
+
"schema": {
|
|
1471
|
+
"title": "result",
|
|
1472
|
+
"type": "object"
|
|
1473
|
+
}
|
|
1474
|
+
},
|
|
1475
|
+
"roles": [
|
|
1476
|
+
"admin"
|
|
1477
|
+
],
|
|
1478
|
+
"route": {
|
|
1479
|
+
"verb": "POST",
|
|
1480
|
+
"path": "/createTenantResource"
|
|
1481
|
+
},
|
|
1482
|
+
"task": true
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"name": "getAllVRFs",
|
|
1486
|
+
"summary": "Get All VRFs",
|
|
1487
|
+
"description": "Get All VRFs",
|
|
1488
|
+
"input": [
|
|
1489
|
+
{
|
|
1490
|
+
"name": "iapMetadata",
|
|
1491
|
+
"type": "object",
|
|
1492
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1493
|
+
"required": false,
|
|
1494
|
+
"schema": {
|
|
1495
|
+
"title": "iapMetadata",
|
|
1496
|
+
"type": "object"
|
|
1497
|
+
}
|
|
1498
|
+
}
|
|
1499
|
+
],
|
|
1500
|
+
"output": {
|
|
1501
|
+
"name": "result",
|
|
1502
|
+
"type": "object",
|
|
1503
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1504
|
+
"schema": {
|
|
1505
|
+
"title": "result",
|
|
1506
|
+
"type": "object"
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
"roles": [
|
|
1510
|
+
"admin"
|
|
1511
|
+
],
|
|
1512
|
+
"route": {
|
|
1513
|
+
"verb": "GET",
|
|
1514
|
+
"path": "/getAllVRFs"
|
|
1515
|
+
},
|
|
1516
|
+
"task": true
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"name": "getAllBridgeDomains",
|
|
1520
|
+
"summary": "Get All Bridge Domains",
|
|
1521
|
+
"description": "Get All Bridge Domains",
|
|
1522
|
+
"input": [
|
|
1523
|
+
{
|
|
1524
|
+
"name": "iapMetadata",
|
|
1525
|
+
"type": "object",
|
|
1526
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1527
|
+
"required": false,
|
|
1528
|
+
"schema": {
|
|
1529
|
+
"title": "iapMetadata",
|
|
1530
|
+
"type": "object"
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
],
|
|
1534
|
+
"output": {
|
|
1535
|
+
"name": "result",
|
|
1536
|
+
"type": "object",
|
|
1537
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1538
|
+
"schema": {
|
|
1539
|
+
"title": "result",
|
|
1540
|
+
"type": "object"
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
"roles": [
|
|
1544
|
+
"admin"
|
|
1545
|
+
],
|
|
1546
|
+
"route": {
|
|
1547
|
+
"verb": "GET",
|
|
1548
|
+
"path": "/getAllBridgeDomains"
|
|
1549
|
+
},
|
|
1550
|
+
"task": true
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
"name": "createDHCPRelayPolicy",
|
|
1554
|
+
"summary": "Configure DHCP Relay Policy",
|
|
1555
|
+
"description": "Configure DHCP Relay Policy",
|
|
1556
|
+
"input": [
|
|
1557
|
+
{
|
|
1558
|
+
"name": "tenantName",
|
|
1559
|
+
"type": "string",
|
|
1560
|
+
"info": ": string",
|
|
1561
|
+
"required": true,
|
|
1562
|
+
"schema": {
|
|
1563
|
+
"title": "tenantName",
|
|
1564
|
+
"type": "string"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
{
|
|
1568
|
+
"name": "dhcpRelayPolicyName",
|
|
1569
|
+
"type": "string",
|
|
1570
|
+
"info": ": string",
|
|
1571
|
+
"required": true,
|
|
1572
|
+
"schema": {
|
|
1573
|
+
"title": "dhcpRelayPolicyName",
|
|
1574
|
+
"type": "string"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
"name": "body",
|
|
1579
|
+
"type": "object",
|
|
1580
|
+
"info": ": object",
|
|
1581
|
+
"required": true,
|
|
1582
|
+
"schema": {
|
|
1583
|
+
"type": "object",
|
|
1584
|
+
"definitions": {}
|
|
1585
|
+
}
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"name": "iapMetadata",
|
|
1589
|
+
"type": "object",
|
|
1590
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1591
|
+
"required": false,
|
|
1592
|
+
"schema": {
|
|
1593
|
+
"title": "iapMetadata",
|
|
1594
|
+
"type": "object"
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
],
|
|
1598
|
+
"output": {
|
|
1599
|
+
"name": "result",
|
|
1600
|
+
"type": "object",
|
|
1601
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1602
|
+
"schema": {
|
|
1603
|
+
"title": "result",
|
|
1604
|
+
"type": "object"
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
"roles": [
|
|
1608
|
+
"admin"
|
|
1609
|
+
],
|
|
1610
|
+
"route": {
|
|
1611
|
+
"verb": "POST",
|
|
1612
|
+
"path": "/createDHCPRelayPolicy"
|
|
1613
|
+
},
|
|
1614
|
+
"task": true
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
"name": "associateDHCPRelayToBD",
|
|
1618
|
+
"summary": "Associate DHCP Relay Policy to BD",
|
|
1619
|
+
"description": "Associate DHCP Relay Policy to BD",
|
|
1620
|
+
"input": [
|
|
1621
|
+
{
|
|
1622
|
+
"name": "tenantName",
|
|
1623
|
+
"type": "string",
|
|
1624
|
+
"info": ": string",
|
|
1625
|
+
"required": true,
|
|
1626
|
+
"schema": {
|
|
1627
|
+
"title": "tenantName",
|
|
1628
|
+
"type": "string"
|
|
1629
|
+
}
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"name": "bdName",
|
|
1633
|
+
"type": "string",
|
|
1634
|
+
"info": ": string",
|
|
1635
|
+
"required": true,
|
|
1636
|
+
"schema": {
|
|
1637
|
+
"title": "bdName",
|
|
1638
|
+
"type": "string"
|
|
1639
|
+
}
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"name": "body",
|
|
1643
|
+
"type": "object",
|
|
1644
|
+
"info": ": object",
|
|
1645
|
+
"required": true,
|
|
1646
|
+
"schema": {
|
|
1647
|
+
"type": "object",
|
|
1648
|
+
"definitions": {}
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"name": "iapMetadata",
|
|
1653
|
+
"type": "object",
|
|
1654
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1655
|
+
"required": false,
|
|
1656
|
+
"schema": {
|
|
1657
|
+
"title": "iapMetadata",
|
|
1658
|
+
"type": "object"
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
],
|
|
1662
|
+
"output": {
|
|
1663
|
+
"name": "result",
|
|
1664
|
+
"type": "object",
|
|
1665
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1666
|
+
"schema": {
|
|
1667
|
+
"title": "result",
|
|
1668
|
+
"type": "object"
|
|
1669
|
+
}
|
|
1670
|
+
},
|
|
1671
|
+
"roles": [
|
|
1672
|
+
"admin"
|
|
1673
|
+
],
|
|
1674
|
+
"route": {
|
|
1675
|
+
"verb": "POST",
|
|
1676
|
+
"path": "/associateDHCPRelayToBD"
|
|
1677
|
+
},
|
|
1678
|
+
"task": true
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"name": "getAllApplicationProfiles",
|
|
1682
|
+
"summary": "Get All Application Profiles",
|
|
1683
|
+
"description": "Get All Application Profiles",
|
|
1684
|
+
"input": [
|
|
1685
|
+
{
|
|
1686
|
+
"name": "iapMetadata",
|
|
1687
|
+
"type": "object",
|
|
1688
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1689
|
+
"required": false,
|
|
1690
|
+
"schema": {
|
|
1691
|
+
"title": "iapMetadata",
|
|
1692
|
+
"type": "object"
|
|
1693
|
+
}
|
|
1694
|
+
}
|
|
1695
|
+
],
|
|
1696
|
+
"output": {
|
|
1697
|
+
"name": "result",
|
|
1698
|
+
"type": "object",
|
|
1699
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1700
|
+
"schema": {
|
|
1701
|
+
"title": "result",
|
|
1702
|
+
"type": "object"
|
|
1703
|
+
}
|
|
1704
|
+
},
|
|
1705
|
+
"roles": [
|
|
1706
|
+
"admin"
|
|
1707
|
+
],
|
|
1708
|
+
"route": {
|
|
1709
|
+
"verb": "GET",
|
|
1710
|
+
"path": "/getAllApplicationProfiles"
|
|
1711
|
+
},
|
|
1712
|
+
"task": true
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
"name": "getAllEPGs",
|
|
1716
|
+
"summary": "Get All EPGs",
|
|
1717
|
+
"description": "Get All EPGs",
|
|
1718
|
+
"input": [
|
|
1719
|
+
{
|
|
1720
|
+
"name": "iapMetadata",
|
|
1721
|
+
"type": "object",
|
|
1722
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1723
|
+
"required": false,
|
|
1724
|
+
"schema": {
|
|
1725
|
+
"title": "iapMetadata",
|
|
1726
|
+
"type": "object"
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
],
|
|
1730
|
+
"output": {
|
|
1731
|
+
"name": "result",
|
|
1732
|
+
"type": "object",
|
|
1733
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1734
|
+
"schema": {
|
|
1735
|
+
"title": "result",
|
|
1736
|
+
"type": "object"
|
|
1737
|
+
}
|
|
1738
|
+
},
|
|
1739
|
+
"roles": [
|
|
1740
|
+
"admin"
|
|
1741
|
+
],
|
|
1742
|
+
"route": {
|
|
1743
|
+
"verb": "GET",
|
|
1744
|
+
"path": "/getAllEPGs"
|
|
1745
|
+
},
|
|
1746
|
+
"task": true
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"name": "getEPGsInTenant",
|
|
1750
|
+
"summary": "Get EPGs in Tenant",
|
|
1751
|
+
"description": "Get EPGs in Tenant",
|
|
1752
|
+
"input": [
|
|
1753
|
+
{
|
|
1754
|
+
"name": "queryTargetFilter",
|
|
1755
|
+
"type": "string",
|
|
1756
|
+
"info": ": string",
|
|
1757
|
+
"required": true,
|
|
1758
|
+
"schema": {
|
|
1759
|
+
"title": "queryTargetFilter",
|
|
1760
|
+
"type": "string"
|
|
1761
|
+
}
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"name": "iapMetadata",
|
|
1765
|
+
"type": "object",
|
|
1766
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1767
|
+
"required": false,
|
|
1768
|
+
"schema": {
|
|
1769
|
+
"title": "iapMetadata",
|
|
1770
|
+
"type": "object"
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
],
|
|
1774
|
+
"output": {
|
|
1775
|
+
"name": "result",
|
|
1776
|
+
"type": "object",
|
|
1777
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1778
|
+
"schema": {
|
|
1779
|
+
"title": "result",
|
|
1780
|
+
"type": "object"
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1783
|
+
"roles": [
|
|
1784
|
+
"admin"
|
|
1785
|
+
],
|
|
1786
|
+
"route": {
|
|
1787
|
+
"verb": "POST",
|
|
1788
|
+
"path": "/getEPGsInTenant"
|
|
1789
|
+
},
|
|
1790
|
+
"task": true
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"name": "createEPGWithVMM",
|
|
1794
|
+
"summary": "Create EPG with BD and VMM Association",
|
|
1795
|
+
"description": "Create EPG with BD and VMM Association",
|
|
1796
|
+
"input": [
|
|
1797
|
+
{
|
|
1798
|
+
"name": "tenantName",
|
|
1799
|
+
"type": "string",
|
|
1800
|
+
"info": ": string",
|
|
1801
|
+
"required": true,
|
|
1802
|
+
"schema": {
|
|
1803
|
+
"title": "tenantName",
|
|
1804
|
+
"type": "string"
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"name": "appProfileName",
|
|
1809
|
+
"type": "string",
|
|
1810
|
+
"info": ": string",
|
|
1811
|
+
"required": true,
|
|
1812
|
+
"schema": {
|
|
1813
|
+
"title": "appProfileName",
|
|
1814
|
+
"type": "string"
|
|
1815
|
+
}
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"name": "body",
|
|
1819
|
+
"type": "object",
|
|
1820
|
+
"info": ": object",
|
|
1821
|
+
"required": true,
|
|
1822
|
+
"schema": {
|
|
1823
|
+
"type": "object",
|
|
1824
|
+
"definitions": {}
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"name": "iapMetadata",
|
|
1829
|
+
"type": "object",
|
|
1830
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1831
|
+
"required": false,
|
|
1832
|
+
"schema": {
|
|
1833
|
+
"title": "iapMetadata",
|
|
1834
|
+
"type": "object"
|
|
1835
|
+
}
|
|
1836
|
+
}
|
|
1837
|
+
],
|
|
1838
|
+
"output": {
|
|
1839
|
+
"name": "result",
|
|
1840
|
+
"type": "object",
|
|
1841
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1842
|
+
"schema": {
|
|
1843
|
+
"title": "result",
|
|
1844
|
+
"type": "object"
|
|
1845
|
+
}
|
|
1846
|
+
},
|
|
1847
|
+
"roles": [
|
|
1848
|
+
"admin"
|
|
1849
|
+
],
|
|
1850
|
+
"route": {
|
|
1851
|
+
"verb": "POST",
|
|
1852
|
+
"path": "/createEPGWithVMM"
|
|
1853
|
+
},
|
|
1854
|
+
"task": true
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
"name": "associateEPGWithVMM",
|
|
1858
|
+
"summary": "Associate EPG with VMM Domain",
|
|
1859
|
+
"description": "Associate EPG with VMM Domain",
|
|
1860
|
+
"input": [
|
|
1861
|
+
{
|
|
1862
|
+
"name": "tenantName",
|
|
1863
|
+
"type": "string",
|
|
1864
|
+
"info": ": string",
|
|
1865
|
+
"required": true,
|
|
1866
|
+
"schema": {
|
|
1867
|
+
"title": "tenantName",
|
|
1868
|
+
"type": "string"
|
|
1869
|
+
}
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"name": "appProfileName",
|
|
1873
|
+
"type": "string",
|
|
1874
|
+
"info": ": string",
|
|
1875
|
+
"required": true,
|
|
1876
|
+
"schema": {
|
|
1877
|
+
"title": "appProfileName",
|
|
1878
|
+
"type": "string"
|
|
1879
|
+
}
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
"name": "epgName",
|
|
1883
|
+
"type": "string",
|
|
1884
|
+
"info": ": string",
|
|
1885
|
+
"required": true,
|
|
1886
|
+
"schema": {
|
|
1887
|
+
"title": "epgName",
|
|
1888
|
+
"type": "string"
|
|
1889
|
+
}
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
"name": "body",
|
|
1893
|
+
"type": "object",
|
|
1894
|
+
"info": ": object",
|
|
1895
|
+
"required": true,
|
|
1896
|
+
"schema": {
|
|
1897
|
+
"type": "object",
|
|
1898
|
+
"definitions": {}
|
|
1899
|
+
}
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"name": "iapMetadata",
|
|
1903
|
+
"type": "object",
|
|
1904
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1905
|
+
"required": false,
|
|
1906
|
+
"schema": {
|
|
1907
|
+
"title": "iapMetadata",
|
|
1908
|
+
"type": "object"
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
],
|
|
1912
|
+
"output": {
|
|
1913
|
+
"name": "result",
|
|
1914
|
+
"type": "object",
|
|
1915
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1916
|
+
"schema": {
|
|
1917
|
+
"title": "result",
|
|
1918
|
+
"type": "object"
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
"roles": [
|
|
1922
|
+
"admin"
|
|
1923
|
+
],
|
|
1924
|
+
"route": {
|
|
1925
|
+
"verb": "POST",
|
|
1926
|
+
"path": "/associateEPGWithVMM"
|
|
1927
|
+
},
|
|
1928
|
+
"task": true
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"name": "getAllVMMDomains",
|
|
1932
|
+
"summary": "Get All VMM Domains",
|
|
1933
|
+
"description": "Get All VMM Domains",
|
|
1934
|
+
"input": [
|
|
1935
|
+
{
|
|
1936
|
+
"name": "iapMetadata",
|
|
1937
|
+
"type": "object",
|
|
1938
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1939
|
+
"required": false,
|
|
1940
|
+
"schema": {
|
|
1941
|
+
"title": "iapMetadata",
|
|
1942
|
+
"type": "object"
|
|
1943
|
+
}
|
|
1944
|
+
}
|
|
1945
|
+
],
|
|
1946
|
+
"output": {
|
|
1947
|
+
"name": "result",
|
|
1948
|
+
"type": "object",
|
|
1949
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1950
|
+
"schema": {
|
|
1951
|
+
"title": "result",
|
|
1952
|
+
"type": "object"
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
"roles": [
|
|
1956
|
+
"admin"
|
|
1957
|
+
],
|
|
1958
|
+
"route": {
|
|
1959
|
+
"verb": "GET",
|
|
1960
|
+
"path": "/getAllVMMDomains"
|
|
1961
|
+
},
|
|
1962
|
+
"task": true
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"name": "getVMwareVMMDomains",
|
|
1966
|
+
"summary": "Get VMware VMM Domains",
|
|
1967
|
+
"description": "Get VMware VMM Domains",
|
|
1968
|
+
"input": [
|
|
1969
|
+
{
|
|
1970
|
+
"name": "queryTargetFilter",
|
|
1971
|
+
"type": "string",
|
|
1972
|
+
"info": ": string",
|
|
1973
|
+
"required": true,
|
|
1974
|
+
"schema": {
|
|
1975
|
+
"title": "queryTargetFilter",
|
|
1976
|
+
"type": "string"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"name": "iapMetadata",
|
|
1981
|
+
"type": "object",
|
|
1982
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
1983
|
+
"required": false,
|
|
1984
|
+
"schema": {
|
|
1985
|
+
"title": "iapMetadata",
|
|
1986
|
+
"type": "object"
|
|
1987
|
+
}
|
|
1988
|
+
}
|
|
1989
|
+
],
|
|
1990
|
+
"output": {
|
|
1991
|
+
"name": "result",
|
|
1992
|
+
"type": "object",
|
|
1993
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1994
|
+
"schema": {
|
|
1995
|
+
"title": "result",
|
|
1996
|
+
"type": "object"
|
|
1997
|
+
}
|
|
1998
|
+
},
|
|
1999
|
+
"roles": [
|
|
2000
|
+
"admin"
|
|
2001
|
+
],
|
|
2002
|
+
"route": {
|
|
2003
|
+
"verb": "POST",
|
|
2004
|
+
"path": "/getVMwareVMMDomains"
|
|
2005
|
+
},
|
|
2006
|
+
"task": true
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"name": "getAllVLANPools",
|
|
2010
|
+
"summary": "Get All VLAN Pools",
|
|
2011
|
+
"description": "Get All VLAN Pools",
|
|
2012
|
+
"input": [
|
|
2013
|
+
{
|
|
2014
|
+
"name": "iapMetadata",
|
|
2015
|
+
"type": "object",
|
|
2016
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
2017
|
+
"required": false,
|
|
2018
|
+
"schema": {
|
|
2019
|
+
"title": "iapMetadata",
|
|
2020
|
+
"type": "object"
|
|
2021
|
+
}
|
|
2022
|
+
}
|
|
2023
|
+
],
|
|
2024
|
+
"output": {
|
|
2025
|
+
"name": "result",
|
|
2026
|
+
"type": "object",
|
|
2027
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2028
|
+
"schema": {
|
|
2029
|
+
"title": "result",
|
|
2030
|
+
"type": "object"
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
2033
|
+
"roles": [
|
|
2034
|
+
"admin"
|
|
2035
|
+
],
|
|
2036
|
+
"route": {
|
|
2037
|
+
"verb": "GET",
|
|
2038
|
+
"path": "/getAllVLANPools"
|
|
2039
|
+
},
|
|
2040
|
+
"task": true
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"name": "createDynamicVLANPool",
|
|
2044
|
+
"summary": "Create Dynamic VLAN Pool",
|
|
2045
|
+
"description": "Create Dynamic VLAN Pool",
|
|
2046
|
+
"input": [
|
|
2047
|
+
{
|
|
2048
|
+
"name": "vlanPoolName",
|
|
2049
|
+
"type": "string",
|
|
2050
|
+
"info": ": string",
|
|
2051
|
+
"required": true,
|
|
2052
|
+
"schema": {
|
|
2053
|
+
"title": "vlanPoolName",
|
|
2054
|
+
"type": "string"
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
"name": "body",
|
|
2059
|
+
"type": "object",
|
|
2060
|
+
"info": ": object",
|
|
2061
|
+
"required": true,
|
|
2062
|
+
"schema": {
|
|
2063
|
+
"type": "object",
|
|
2064
|
+
"definitions": {}
|
|
2065
|
+
}
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"name": "iapMetadata",
|
|
2069
|
+
"type": "object",
|
|
2070
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
2071
|
+
"required": false,
|
|
2072
|
+
"schema": {
|
|
2073
|
+
"title": "iapMetadata",
|
|
2074
|
+
"type": "object"
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
],
|
|
2078
|
+
"output": {
|
|
2079
|
+
"name": "result",
|
|
2080
|
+
"type": "object",
|
|
2081
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2082
|
+
"schema": {
|
|
2083
|
+
"title": "result",
|
|
2084
|
+
"type": "object"
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
"roles": [
|
|
2088
|
+
"admin"
|
|
2089
|
+
],
|
|
2090
|
+
"route": {
|
|
2091
|
+
"verb": "POST",
|
|
2092
|
+
"path": "/createDynamicVLANPool"
|
|
2093
|
+
},
|
|
2094
|
+
"task": true
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"name": "getVLANPoolDetails",
|
|
2098
|
+
"summary": "Get VLAN Pool Details",
|
|
2099
|
+
"description": "Get VLAN Pool Details",
|
|
2100
|
+
"input": [
|
|
2101
|
+
{
|
|
2102
|
+
"name": "vlanPoolName",
|
|
2103
|
+
"type": "string",
|
|
2104
|
+
"info": ": string",
|
|
2105
|
+
"required": true,
|
|
2106
|
+
"schema": {
|
|
2107
|
+
"title": "vlanPoolName",
|
|
2108
|
+
"type": "string"
|
|
2109
|
+
}
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"name": "iapMetadata",
|
|
2113
|
+
"type": "object",
|
|
2114
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
2115
|
+
"required": false,
|
|
2116
|
+
"schema": {
|
|
2117
|
+
"title": "iapMetadata",
|
|
2118
|
+
"type": "object"
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
2121
|
+
],
|
|
2122
|
+
"output": {
|
|
2123
|
+
"name": "result",
|
|
2124
|
+
"type": "object",
|
|
2125
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2126
|
+
"schema": {
|
|
2127
|
+
"title": "result",
|
|
2128
|
+
"type": "object"
|
|
2129
|
+
}
|
|
2130
|
+
},
|
|
2131
|
+
"roles": [
|
|
2132
|
+
"admin"
|
|
2133
|
+
],
|
|
2134
|
+
"route": {
|
|
2135
|
+
"verb": "POST",
|
|
2136
|
+
"path": "/getVLANPoolDetails"
|
|
2137
|
+
},
|
|
2138
|
+
"task": true
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"name": "createStaticVLANPool",
|
|
2142
|
+
"summary": "Create Static VLAN Pool",
|
|
2143
|
+
"description": "Create Static VLAN Pool",
|
|
2144
|
+
"input": [
|
|
2145
|
+
{
|
|
2146
|
+
"name": "vlanPoolName",
|
|
2147
|
+
"type": "string",
|
|
2148
|
+
"info": ": string",
|
|
2149
|
+
"required": true,
|
|
2150
|
+
"schema": {
|
|
2151
|
+
"title": "vlanPoolName",
|
|
2152
|
+
"type": "string"
|
|
2153
|
+
}
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"name": "body",
|
|
2157
|
+
"type": "object",
|
|
2158
|
+
"info": ": object",
|
|
2159
|
+
"required": true,
|
|
2160
|
+
"schema": {
|
|
2161
|
+
"type": "object",
|
|
2162
|
+
"definitions": {}
|
|
2163
|
+
}
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"name": "iapMetadata",
|
|
2167
|
+
"type": "object",
|
|
2168
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
2169
|
+
"required": false,
|
|
2170
|
+
"schema": {
|
|
2171
|
+
"title": "iapMetadata",
|
|
2172
|
+
"type": "object"
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
],
|
|
2176
|
+
"output": {
|
|
2177
|
+
"name": "result",
|
|
2178
|
+
"type": "object",
|
|
2179
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2180
|
+
"schema": {
|
|
2181
|
+
"title": "result",
|
|
2182
|
+
"type": "object"
|
|
2183
|
+
}
|
|
2184
|
+
},
|
|
2185
|
+
"roles": [
|
|
2186
|
+
"admin"
|
|
2187
|
+
],
|
|
2188
|
+
"route": {
|
|
2189
|
+
"verb": "POST",
|
|
2190
|
+
"path": "/createStaticVLANPool"
|
|
2191
|
+
},
|
|
2192
|
+
"task": true
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
"name": "associateVLANPoolWithVMM",
|
|
2196
|
+
"summary": "Associate VLAN Pool with VMM Domain",
|
|
2197
|
+
"description": "Associate VLAN Pool with VMM Domain",
|
|
2198
|
+
"input": [
|
|
2199
|
+
{
|
|
2200
|
+
"name": "vmmDomainName",
|
|
2201
|
+
"type": "string",
|
|
2202
|
+
"info": ": string",
|
|
2203
|
+
"required": true,
|
|
2204
|
+
"schema": {
|
|
2205
|
+
"title": "vmmDomainName",
|
|
2206
|
+
"type": "string"
|
|
2207
|
+
}
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"name": "body",
|
|
2211
|
+
"type": "object",
|
|
2212
|
+
"info": ": object",
|
|
2213
|
+
"required": true,
|
|
2214
|
+
"schema": {
|
|
2215
|
+
"type": "object",
|
|
2216
|
+
"definitions": {}
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"name": "iapMetadata",
|
|
2221
|
+
"type": "object",
|
|
2222
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
2223
|
+
"required": false,
|
|
2224
|
+
"schema": {
|
|
2225
|
+
"title": "iapMetadata",
|
|
2226
|
+
"type": "object"
|
|
2227
|
+
}
|
|
2228
|
+
}
|
|
2229
|
+
],
|
|
2230
|
+
"output": {
|
|
2231
|
+
"name": "result",
|
|
2232
|
+
"type": "object",
|
|
2233
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2234
|
+
"schema": {
|
|
2235
|
+
"title": "result",
|
|
2236
|
+
"type": "object"
|
|
2237
|
+
}
|
|
2238
|
+
},
|
|
2239
|
+
"roles": [
|
|
2240
|
+
"admin"
|
|
2241
|
+
],
|
|
2242
|
+
"route": {
|
|
2243
|
+
"verb": "POST",
|
|
2244
|
+
"path": "/associateVLANPoolWithVMM"
|
|
2245
|
+
},
|
|
2246
|
+
"task": true
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
"name": "getVMMDomainVLANPoolAssociation",
|
|
2250
|
+
"summary": "Get VMM Domain VLAN Pool Association",
|
|
2251
|
+
"description": "Get VMM Domain VLAN Pool Association",
|
|
2252
|
+
"input": [
|
|
2253
|
+
{
|
|
2254
|
+
"name": "vmmDomainName",
|
|
2255
|
+
"type": "string",
|
|
2256
|
+
"info": ": string",
|
|
2257
|
+
"required": true,
|
|
2258
|
+
"schema": {
|
|
2259
|
+
"title": "vmmDomainName",
|
|
2260
|
+
"type": "string"
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"name": "iapMetadata",
|
|
2265
|
+
"type": "object",
|
|
2266
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
2267
|
+
"required": false,
|
|
2268
|
+
"schema": {
|
|
2269
|
+
"title": "iapMetadata",
|
|
2270
|
+
"type": "object"
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2273
|
+
],
|
|
2274
|
+
"output": {
|
|
2275
|
+
"name": "result",
|
|
2276
|
+
"type": "object",
|
|
2277
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2278
|
+
"schema": {
|
|
2279
|
+
"title": "result",
|
|
2280
|
+
"type": "object"
|
|
2281
|
+
}
|
|
2282
|
+
},
|
|
2283
|
+
"roles": [
|
|
2284
|
+
"admin"
|
|
2285
|
+
],
|
|
2286
|
+
"route": {
|
|
2287
|
+
"verb": "POST",
|
|
2288
|
+
"path": "/getVMMDomainVLANPoolAssociation"
|
|
2289
|
+
},
|
|
2290
|
+
"task": true
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"name": "addVLANRangeToPool",
|
|
2294
|
+
"summary": "Add VLAN Range to Existing Pool",
|
|
2295
|
+
"description": "Add VLAN Range to Existing Pool",
|
|
2296
|
+
"input": [
|
|
2297
|
+
{
|
|
2298
|
+
"name": "vlanPoolName",
|
|
2299
|
+
"type": "string",
|
|
2300
|
+
"info": ": string",
|
|
2301
|
+
"required": true,
|
|
2302
|
+
"schema": {
|
|
2303
|
+
"title": "vlanPoolName",
|
|
2304
|
+
"type": "string"
|
|
2305
|
+
}
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"name": "vlanStart",
|
|
2309
|
+
"type": "string",
|
|
2310
|
+
"info": ": string",
|
|
2311
|
+
"required": true,
|
|
2312
|
+
"schema": {
|
|
2313
|
+
"title": "vlanStart",
|
|
2314
|
+
"type": "string"
|
|
2315
|
+
}
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"name": "vlanEnd",
|
|
2319
|
+
"type": "string",
|
|
2320
|
+
"info": ": string",
|
|
2321
|
+
"required": true,
|
|
2322
|
+
"schema": {
|
|
2323
|
+
"title": "vlanEnd",
|
|
2324
|
+
"type": "string"
|
|
2325
|
+
}
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
"name": "body",
|
|
2329
|
+
"type": "object",
|
|
2330
|
+
"info": ": object",
|
|
2331
|
+
"required": true,
|
|
2332
|
+
"schema": {
|
|
2333
|
+
"type": "object",
|
|
2334
|
+
"definitions": {}
|
|
2335
|
+
}
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
"name": "iapMetadata",
|
|
2339
|
+
"type": "object",
|
|
2340
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
2341
|
+
"required": false,
|
|
2342
|
+
"schema": {
|
|
2343
|
+
"title": "iapMetadata",
|
|
2344
|
+
"type": "object"
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
],
|
|
2348
|
+
"output": {
|
|
2349
|
+
"name": "result",
|
|
2350
|
+
"type": "object",
|
|
2351
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2352
|
+
"schema": {
|
|
2353
|
+
"title": "result",
|
|
2354
|
+
"type": "object"
|
|
2355
|
+
}
|
|
2356
|
+
},
|
|
2357
|
+
"roles": [
|
|
2358
|
+
"admin"
|
|
2359
|
+
],
|
|
2360
|
+
"route": {
|
|
2361
|
+
"verb": "POST",
|
|
2362
|
+
"path": "/addVLANRangeToPool"
|
|
2363
|
+
},
|
|
2364
|
+
"task": true
|
|
1263
2365
|
}
|
|
1264
2366
|
],
|
|
1265
2367
|
"version": "0.1.0"
|