├── .gitignore ├── Makefile ├── README.md ├── benchmark.sh ├── data ├── github-apis.txt ├── okta-apis.txt ├── okta-spec.yaml ├── openai-apis.txt ├── openai-spec.yaml ├── single-static-apis.txt └── static-apis.txt ├── docker-compose.yml ├── docs ├── data │ └── echarts.js ├── images │ └── result.png └── index.html ├── env └── default.env ├── gateways ├── apisix │ ├── config │ │ ├── apisix-github.yaml │ │ ├── apisix-okta.yaml │ │ ├── apisix-openai.yaml │ │ ├── apisix-single-static.yaml │ │ ├── apisix-static.yaml │ │ └── config.yaml │ └── docker-compose.yml ├── kong │ ├── declarative-config │ │ ├── kong-github.yaml │ │ ├── kong-okta.yaml │ │ ├── kong-openai.yaml │ │ ├── kong-single-static.yaml │ │ └── kong-static.yaml │ ├── docker-compose.yml │ └── src │ │ └── kong │ │ ├── conf_loader │ │ └── init.lua │ │ └── router │ │ ├── init.lua │ │ └── radix.lua └── tyk │ ├── apps │ ├── github │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 100.json │ │ ├── 101.json │ │ ├── 102.json │ │ ├── 103.json │ │ ├── 104.json │ │ ├── 105.json │ │ ├── 106.json │ │ ├── 107.json │ │ ├── 108.json │ │ ├── 109.json │ │ ├── 11.json │ │ ├── 110.json │ │ ├── 111.json │ │ ├── 112.json │ │ ├── 113.json │ │ ├── 114.json │ │ ├── 115.json │ │ ├── 116.json │ │ ├── 117.json │ │ ├── 118.json │ │ ├── 119.json │ │ ├── 12.json │ │ ├── 120.json │ │ ├── 121.json │ │ ├── 122.json │ │ ├── 123.json │ │ ├── 124.json │ │ ├── 125.json │ │ ├── 126.json │ │ ├── 127.json │ │ ├── 128.json │ │ ├── 129.json │ │ ├── 13.json │ │ ├── 130.json │ │ ├── 131.json │ │ ├── 132.json │ │ ├── 133.json │ │ ├── 134.json │ │ ├── 135.json │ │ ├── 136.json │ │ ├── 137.json │ │ ├── 138.json │ │ ├── 139.json │ │ ├── 14.json │ │ ├── 140.json │ │ ├── 141.json │ │ ├── 142.json │ │ ├── 143.json │ │ ├── 144.json │ │ ├── 145.json │ │ ├── 146.json │ │ ├── 147.json │ │ ├── 148.json │ │ ├── 149.json │ │ ├── 15.json │ │ ├── 150.json │ │ ├── 151.json │ │ ├── 152.json │ │ ├── 153.json │ │ ├── 154.json │ │ ├── 155.json │ │ ├── 156.json │ │ ├── 157.json │ │ ├── 158.json │ │ ├── 159.json │ │ ├── 16.json │ │ ├── 160.json │ │ ├── 161.json │ │ ├── 162.json │ │ ├── 163.json │ │ ├── 164.json │ │ ├── 165.json │ │ ├── 166.json │ │ ├── 167.json │ │ ├── 168.json │ │ ├── 169.json │ │ ├── 17.json │ │ ├── 170.json │ │ ├── 171.json │ │ ├── 172.json │ │ ├── 173.json │ │ ├── 174.json │ │ ├── 175.json │ │ ├── 176.json │ │ ├── 177.json │ │ ├── 178.json │ │ ├── 179.json │ │ ├── 18.json │ │ ├── 180.json │ │ ├── 181.json │ │ ├── 182.json │ │ ├── 183.json │ │ ├── 184.json │ │ ├── 185.json │ │ ├── 186.json │ │ ├── 187.json │ │ ├── 188.json │ │ ├── 189.json │ │ ├── 19.json │ │ ├── 190.json │ │ ├── 191.json │ │ ├── 192.json │ │ ├── 193.json │ │ ├── 194.json │ │ ├── 195.json │ │ ├── 196.json │ │ ├── 197.json │ │ ├── 198.json │ │ ├── 199.json │ │ ├── 2.json │ │ ├── 20.json │ │ ├── 200.json │ │ ├── 201.json │ │ ├── 202.json │ │ ├── 203.json │ │ ├── 204.json │ │ ├── 205.json │ │ ├── 206.json │ │ ├── 207.json │ │ ├── 208.json │ │ ├── 209.json │ │ ├── 21.json │ │ ├── 210.json │ │ ├── 211.json │ │ ├── 212.json │ │ ├── 213.json │ │ ├── 214.json │ │ ├── 215.json │ │ ├── 216.json │ │ ├── 217.json │ │ ├── 218.json │ │ ├── 219.json │ │ ├── 22.json │ │ ├── 220.json │ │ ├── 221.json │ │ ├── 222.json │ │ ├── 223.json │ │ ├── 224.json │ │ ├── 225.json │ │ ├── 226.json │ │ ├── 227.json │ │ ├── 228.json │ │ ├── 229.json │ │ ├── 23.json │ │ ├── 230.json │ │ ├── 231.json │ │ ├── 232.json │ │ ├── 233.json │ │ ├── 234.json │ │ ├── 235.json │ │ ├── 236.json │ │ ├── 237.json │ │ ├── 238.json │ │ ├── 239.json │ │ ├── 24.json │ │ ├── 240.json │ │ ├── 241.json │ │ ├── 242.json │ │ ├── 243.json │ │ ├── 244.json │ │ ├── 245.json │ │ ├── 246.json │ │ ├── 247.json │ │ ├── 248.json │ │ ├── 249.json │ │ ├── 25.json │ │ ├── 250.json │ │ ├── 251.json │ │ ├── 252.json │ │ ├── 253.json │ │ ├── 254.json │ │ ├── 255.json │ │ ├── 256.json │ │ ├── 257.json │ │ ├── 258.json │ │ ├── 259.json │ │ ├── 26.json │ │ ├── 260.json │ │ ├── 261.json │ │ ├── 262.json │ │ ├── 263.json │ │ ├── 264.json │ │ ├── 265.json │ │ ├── 266.json │ │ ├── 267.json │ │ ├── 268.json │ │ ├── 269.json │ │ ├── 27.json │ │ ├── 270.json │ │ ├── 271.json │ │ ├── 272.json │ │ ├── 273.json │ │ ├── 274.json │ │ ├── 275.json │ │ ├── 276.json │ │ ├── 277.json │ │ ├── 278.json │ │ ├── 279.json │ │ ├── 28.json │ │ ├── 280.json │ │ ├── 281.json │ │ ├── 282.json │ │ ├── 283.json │ │ ├── 284.json │ │ ├── 285.json │ │ ├── 286.json │ │ ├── 287.json │ │ ├── 288.json │ │ ├── 289.json │ │ ├── 29.json │ │ ├── 290.json │ │ ├── 291.json │ │ ├── 292.json │ │ ├── 293.json │ │ ├── 294.json │ │ ├── 295.json │ │ ├── 296.json │ │ ├── 297.json │ │ ├── 298.json │ │ ├── 299.json │ │ ├── 3.json │ │ ├── 30.json │ │ ├── 300.json │ │ ├── 301.json │ │ ├── 302.json │ │ ├── 303.json │ │ ├── 304.json │ │ ├── 305.json │ │ ├── 306.json │ │ ├── 307.json │ │ ├── 308.json │ │ ├── 309.json │ │ ├── 31.json │ │ ├── 310.json │ │ ├── 311.json │ │ ├── 312.json │ │ ├── 313.json │ │ ├── 314.json │ │ ├── 315.json │ │ ├── 316.json │ │ ├── 317.json │ │ ├── 318.json │ │ ├── 319.json │ │ ├── 32.json │ │ ├── 320.json │ │ ├── 321.json │ │ ├── 322.json │ │ ├── 323.json │ │ ├── 324.json │ │ ├── 325.json │ │ ├── 326.json │ │ ├── 327.json │ │ ├── 328.json │ │ ├── 329.json │ │ ├── 33.json │ │ ├── 330.json │ │ ├── 331.json │ │ ├── 332.json │ │ ├── 333.json │ │ ├── 334.json │ │ ├── 335.json │ │ ├── 336.json │ │ ├── 337.json │ │ ├── 338.json │ │ ├── 339.json │ │ ├── 34.json │ │ ├── 340.json │ │ ├── 341.json │ │ ├── 342.json │ │ ├── 343.json │ │ ├── 344.json │ │ ├── 345.json │ │ ├── 346.json │ │ ├── 347.json │ │ ├── 348.json │ │ ├── 349.json │ │ ├── 35.json │ │ ├── 350.json │ │ ├── 351.json │ │ ├── 352.json │ │ ├── 353.json │ │ ├── 354.json │ │ ├── 355.json │ │ ├── 356.json │ │ ├── 357.json │ │ ├── 358.json │ │ ├── 359.json │ │ ├── 36.json │ │ ├── 360.json │ │ ├── 361.json │ │ ├── 362.json │ │ ├── 363.json │ │ ├── 364.json │ │ ├── 365.json │ │ ├── 366.json │ │ ├── 367.json │ │ ├── 368.json │ │ ├── 369.json │ │ ├── 37.json │ │ ├── 370.json │ │ ├── 371.json │ │ ├── 372.json │ │ ├── 373.json │ │ ├── 374.json │ │ ├── 375.json │ │ ├── 376.json │ │ ├── 377.json │ │ ├── 378.json │ │ ├── 379.json │ │ ├── 38.json │ │ ├── 380.json │ │ ├── 381.json │ │ ├── 382.json │ │ ├── 383.json │ │ ├── 384.json │ │ ├── 385.json │ │ ├── 386.json │ │ ├── 387.json │ │ ├── 388.json │ │ ├── 389.json │ │ ├── 39.json │ │ ├── 390.json │ │ ├── 391.json │ │ ├── 392.json │ │ ├── 393.json │ │ ├── 394.json │ │ ├── 395.json │ │ ├── 396.json │ │ ├── 397.json │ │ ├── 398.json │ │ ├── 399.json │ │ ├── 4.json │ │ ├── 40.json │ │ ├── 400.json │ │ ├── 401.json │ │ ├── 402.json │ │ ├── 403.json │ │ ├── 404.json │ │ ├── 405.json │ │ ├── 406.json │ │ ├── 407.json │ │ ├── 408.json │ │ ├── 409.json │ │ ├── 41.json │ │ ├── 410.json │ │ ├── 411.json │ │ ├── 412.json │ │ ├── 413.json │ │ ├── 414.json │ │ ├── 415.json │ │ ├── 416.json │ │ ├── 417.json │ │ ├── 418.json │ │ ├── 419.json │ │ ├── 42.json │ │ ├── 420.json │ │ ├── 421.json │ │ ├── 422.json │ │ ├── 423.json │ │ ├── 424.json │ │ ├── 425.json │ │ ├── 426.json │ │ ├── 427.json │ │ ├── 428.json │ │ ├── 429.json │ │ ├── 43.json │ │ ├── 430.json │ │ ├── 431.json │ │ ├── 432.json │ │ ├── 433.json │ │ ├── 434.json │ │ ├── 435.json │ │ ├── 436.json │ │ ├── 437.json │ │ ├── 438.json │ │ ├── 439.json │ │ ├── 44.json │ │ ├── 440.json │ │ ├── 441.json │ │ ├── 442.json │ │ ├── 443.json │ │ ├── 444.json │ │ ├── 445.json │ │ ├── 446.json │ │ ├── 447.json │ │ ├── 448.json │ │ ├── 449.json │ │ ├── 45.json │ │ ├── 450.json │ │ ├── 451.json │ │ ├── 452.json │ │ ├── 453.json │ │ ├── 454.json │ │ ├── 455.json │ │ ├── 456.json │ │ ├── 457.json │ │ ├── 458.json │ │ ├── 459.json │ │ ├── 46.json │ │ ├── 460.json │ │ ├── 461.json │ │ ├── 462.json │ │ ├── 463.json │ │ ├── 464.json │ │ ├── 465.json │ │ ├── 466.json │ │ ├── 467.json │ │ ├── 468.json │ │ ├── 469.json │ │ ├── 47.json │ │ ├── 470.json │ │ ├── 471.json │ │ ├── 472.json │ │ ├── 473.json │ │ ├── 474.json │ │ ├── 475.json │ │ ├── 476.json │ │ ├── 477.json │ │ ├── 478.json │ │ ├── 479.json │ │ ├── 48.json │ │ ├── 480.json │ │ ├── 481.json │ │ ├── 482.json │ │ ├── 483.json │ │ ├── 484.json │ │ ├── 485.json │ │ ├── 486.json │ │ ├── 487.json │ │ ├── 488.json │ │ ├── 489.json │ │ ├── 49.json │ │ ├── 490.json │ │ ├── 491.json │ │ ├── 492.json │ │ ├── 493.json │ │ ├── 494.json │ │ ├── 495.json │ │ ├── 496.json │ │ ├── 497.json │ │ ├── 498.json │ │ ├── 499.json │ │ ├── 5.json │ │ ├── 50.json │ │ ├── 500.json │ │ ├── 501.json │ │ ├── 502.json │ │ ├── 503.json │ │ ├── 504.json │ │ ├── 505.json │ │ ├── 506.json │ │ ├── 507.json │ │ ├── 508.json │ │ ├── 509.json │ │ ├── 51.json │ │ ├── 510.json │ │ ├── 511.json │ │ ├── 512.json │ │ ├── 513.json │ │ ├── 514.json │ │ ├── 515.json │ │ ├── 516.json │ │ ├── 517.json │ │ ├── 518.json │ │ ├── 519.json │ │ ├── 52.json │ │ ├── 520.json │ │ ├── 521.json │ │ ├── 522.json │ │ ├── 523.json │ │ ├── 524.json │ │ ├── 525.json │ │ ├── 526.json │ │ ├── 527.json │ │ ├── 528.json │ │ ├── 529.json │ │ ├── 53.json │ │ ├── 530.json │ │ ├── 531.json │ │ ├── 532.json │ │ ├── 533.json │ │ ├── 534.json │ │ ├── 535.json │ │ ├── 536.json │ │ ├── 537.json │ │ ├── 538.json │ │ ├── 539.json │ │ ├── 54.json │ │ ├── 540.json │ │ ├── 541.json │ │ ├── 542.json │ │ ├── 543.json │ │ ├── 544.json │ │ ├── 545.json │ │ ├── 546.json │ │ ├── 547.json │ │ ├── 548.json │ │ ├── 549.json │ │ ├── 55.json │ │ ├── 550.json │ │ ├── 551.json │ │ ├── 552.json │ │ ├── 553.json │ │ ├── 554.json │ │ ├── 555.json │ │ ├── 556.json │ │ ├── 557.json │ │ ├── 558.json │ │ ├── 559.json │ │ ├── 56.json │ │ ├── 560.json │ │ ├── 561.json │ │ ├── 562.json │ │ ├── 563.json │ │ ├── 564.json │ │ ├── 565.json │ │ ├── 566.json │ │ ├── 567.json │ │ ├── 568.json │ │ ├── 569.json │ │ ├── 57.json │ │ ├── 570.json │ │ ├── 571.json │ │ ├── 572.json │ │ ├── 573.json │ │ ├── 574.json │ │ ├── 575.json │ │ ├── 576.json │ │ ├── 577.json │ │ ├── 578.json │ │ ├── 579.json │ │ ├── 58.json │ │ ├── 580.json │ │ ├── 581.json │ │ ├── 582.json │ │ ├── 583.json │ │ ├── 584.json │ │ ├── 585.json │ │ ├── 586.json │ │ ├── 587.json │ │ ├── 588.json │ │ ├── 589.json │ │ ├── 59.json │ │ ├── 590.json │ │ ├── 591.json │ │ ├── 592.json │ │ ├── 593.json │ │ ├── 594.json │ │ ├── 595.json │ │ ├── 596.json │ │ ├── 597.json │ │ ├── 598.json │ │ ├── 599.json │ │ ├── 6.json │ │ ├── 60.json │ │ ├── 600.json │ │ ├── 601.json │ │ ├── 602.json │ │ ├── 603.json │ │ ├── 604.json │ │ ├── 605.json │ │ ├── 606.json │ │ ├── 607.json │ │ ├── 608.json │ │ ├── 609.json │ │ ├── 61.json │ │ ├── 62.json │ │ ├── 63.json │ │ ├── 64.json │ │ ├── 65.json │ │ ├── 66.json │ │ ├── 67.json │ │ ├── 68.json │ │ ├── 69.json │ │ ├── 7.json │ │ ├── 70.json │ │ ├── 71.json │ │ ├── 72.json │ │ ├── 73.json │ │ ├── 74.json │ │ ├── 75.json │ │ ├── 76.json │ │ ├── 77.json │ │ ├── 78.json │ │ ├── 79.json │ │ ├── 8.json │ │ ├── 80.json │ │ ├── 81.json │ │ ├── 82.json │ │ ├── 83.json │ │ ├── 84.json │ │ ├── 85.json │ │ ├── 86.json │ │ ├── 87.json │ │ ├── 88.json │ │ ├── 89.json │ │ ├── 9.json │ │ ├── 90.json │ │ ├── 91.json │ │ ├── 92.json │ │ ├── 93.json │ │ ├── 94.json │ │ ├── 95.json │ │ ├── 96.json │ │ ├── 97.json │ │ ├── 98.json │ │ └── 99.json │ ├── okta │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 100.json │ │ ├── 101.json │ │ ├── 102.json │ │ ├── 103.json │ │ ├── 104.json │ │ ├── 105.json │ │ ├── 106.json │ │ ├── 107.json │ │ ├── 108.json │ │ ├── 109.json │ │ ├── 11.json │ │ ├── 110.json │ │ ├── 111.json │ │ ├── 112.json │ │ ├── 113.json │ │ ├── 114.json │ │ ├── 115.json │ │ ├── 116.json │ │ ├── 117.json │ │ ├── 118.json │ │ ├── 119.json │ │ ├── 12.json │ │ ├── 120.json │ │ ├── 121.json │ │ ├── 122.json │ │ ├── 123.json │ │ ├── 124.json │ │ ├── 125.json │ │ ├── 126.json │ │ ├── 127.json │ │ ├── 128.json │ │ ├── 129.json │ │ ├── 13.json │ │ ├── 130.json │ │ ├── 131.json │ │ ├── 132.json │ │ ├── 133.json │ │ ├── 134.json │ │ ├── 135.json │ │ ├── 136.json │ │ ├── 137.json │ │ ├── 138.json │ │ ├── 139.json │ │ ├── 14.json │ │ ├── 140.json │ │ ├── 141.json │ │ ├── 142.json │ │ ├── 143.json │ │ ├── 144.json │ │ ├── 145.json │ │ ├── 146.json │ │ ├── 147.json │ │ ├── 148.json │ │ ├── 149.json │ │ ├── 15.json │ │ ├── 150.json │ │ ├── 151.json │ │ ├── 152.json │ │ ├── 153.json │ │ ├── 154.json │ │ ├── 155.json │ │ ├── 156.json │ │ ├── 157.json │ │ ├── 158.json │ │ ├── 159.json │ │ ├── 16.json │ │ ├── 160.json │ │ ├── 161.json │ │ ├── 162.json │ │ ├── 163.json │ │ ├── 164.json │ │ ├── 165.json │ │ ├── 166.json │ │ ├── 167.json │ │ ├── 168.json │ │ ├── 169.json │ │ ├── 17.json │ │ ├── 170.json │ │ ├── 171.json │ │ ├── 172.json │ │ ├── 173.json │ │ ├── 174.json │ │ ├── 175.json │ │ ├── 176.json │ │ ├── 177.json │ │ ├── 178.json │ │ ├── 179.json │ │ ├── 18.json │ │ ├── 180.json │ │ ├── 181.json │ │ ├── 182.json │ │ ├── 183.json │ │ ├── 184.json │ │ ├── 185.json │ │ ├── 186.json │ │ ├── 187.json │ │ ├── 188.json │ │ ├── 189.json │ │ ├── 19.json │ │ ├── 190.json │ │ ├── 191.json │ │ ├── 192.json │ │ ├── 193.json │ │ ├── 194.json │ │ ├── 195.json │ │ ├── 196.json │ │ ├── 197.json │ │ ├── 198.json │ │ ├── 199.json │ │ ├── 2.json │ │ ├── 20.json │ │ ├── 200.json │ │ ├── 201.json │ │ ├── 202.json │ │ ├── 203.json │ │ ├── 204.json │ │ ├── 205.json │ │ ├── 206.json │ │ ├── 207.json │ │ ├── 208.json │ │ ├── 209.json │ │ ├── 21.json │ │ ├── 210.json │ │ ├── 211.json │ │ ├── 212.json │ │ ├── 213.json │ │ ├── 214.json │ │ ├── 215.json │ │ ├── 216.json │ │ ├── 217.json │ │ ├── 22.json │ │ ├── 23.json │ │ ├── 24.json │ │ ├── 25.json │ │ ├── 26.json │ │ ├── 27.json │ │ ├── 28.json │ │ ├── 29.json │ │ ├── 3.json │ │ ├── 30.json │ │ ├── 31.json │ │ ├── 32.json │ │ ├── 33.json │ │ ├── 34.json │ │ ├── 35.json │ │ ├── 36.json │ │ ├── 37.json │ │ ├── 38.json │ │ ├── 39.json │ │ ├── 4.json │ │ ├── 40.json │ │ ├── 41.json │ │ ├── 42.json │ │ ├── 43.json │ │ ├── 44.json │ │ ├── 45.json │ │ ├── 46.json │ │ ├── 47.json │ │ ├── 48.json │ │ ├── 49.json │ │ ├── 5.json │ │ ├── 50.json │ │ ├── 51.json │ │ ├── 52.json │ │ ├── 53.json │ │ ├── 54.json │ │ ├── 55.json │ │ ├── 56.json │ │ ├── 57.json │ │ ├── 58.json │ │ ├── 59.json │ │ ├── 6.json │ │ ├── 60.json │ │ ├── 61.json │ │ ├── 62.json │ │ ├── 63.json │ │ ├── 64.json │ │ ├── 65.json │ │ ├── 66.json │ │ ├── 67.json │ │ ├── 68.json │ │ ├── 69.json │ │ ├── 7.json │ │ ├── 70.json │ │ ├── 71.json │ │ ├── 72.json │ │ ├── 73.json │ │ ├── 74.json │ │ ├── 75.json │ │ ├── 76.json │ │ ├── 77.json │ │ ├── 78.json │ │ ├── 79.json │ │ ├── 8.json │ │ ├── 80.json │ │ ├── 81.json │ │ ├── 82.json │ │ ├── 83.json │ │ ├── 84.json │ │ ├── 85.json │ │ ├── 86.json │ │ ├── 87.json │ │ ├── 88.json │ │ ├── 89.json │ │ ├── 9.json │ │ ├── 90.json │ │ ├── 91.json │ │ ├── 92.json │ │ ├── 93.json │ │ ├── 94.json │ │ ├── 95.json │ │ ├── 96.json │ │ ├── 97.json │ │ ├── 98.json │ │ └── 99.json │ ├── openai │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 11.json │ │ ├── 12.json │ │ ├── 13.json │ │ ├── 14.json │ │ ├── 15.json │ │ ├── 16.json │ │ ├── 17.json │ │ ├── 18.json │ │ ├── 19.json │ │ ├── 2.json │ │ ├── 20.json │ │ ├── 21.json │ │ ├── 22.json │ │ ├── 23.json │ │ ├── 24.json │ │ ├── 25.json │ │ ├── 26.json │ │ ├── 27.json │ │ ├── 28.json │ │ ├── 29.json │ │ ├── 3.json │ │ ├── 30.json │ │ ├── 31.json │ │ ├── 32.json │ │ ├── 33.json │ │ ├── 34.json │ │ ├── 35.json │ │ ├── 36.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ └── 9.json │ ├── single-static │ │ └── 1.json │ └── static │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 100.json │ │ ├── 11.json │ │ ├── 12.json │ │ ├── 13.json │ │ ├── 14.json │ │ ├── 15.json │ │ ├── 16.json │ │ ├── 17.json │ │ ├── 18.json │ │ ├── 19.json │ │ ├── 2.json │ │ ├── 20.json │ │ ├── 21.json │ │ ├── 22.json │ │ ├── 23.json │ │ ├── 24.json │ │ ├── 25.json │ │ ├── 26.json │ │ ├── 27.json │ │ ├── 28.json │ │ ├── 29.json │ │ ├── 3.json │ │ ├── 30.json │ │ ├── 31.json │ │ ├── 32.json │ │ ├── 33.json │ │ ├── 34.json │ │ ├── 35.json │ │ ├── 36.json │ │ ├── 37.json │ │ ├── 38.json │ │ ├── 39.json │ │ ├── 4.json │ │ ├── 40.json │ │ ├── 41.json │ │ ├── 42.json │ │ ├── 43.json │ │ ├── 44.json │ │ ├── 45.json │ │ ├── 46.json │ │ ├── 47.json │ │ ├── 48.json │ │ ├── 49.json │ │ ├── 5.json │ │ ├── 50.json │ │ ├── 51.json │ │ ├── 52.json │ │ ├── 53.json │ │ ├── 54.json │ │ ├── 55.json │ │ ├── 56.json │ │ ├── 57.json │ │ ├── 58.json │ │ ├── 59.json │ │ ├── 6.json │ │ ├── 60.json │ │ ├── 61.json │ │ ├── 62.json │ │ ├── 63.json │ │ ├── 64.json │ │ ├── 65.json │ │ ├── 66.json │ │ ├── 67.json │ │ ├── 68.json │ │ ├── 69.json │ │ ├── 7.json │ │ ├── 70.json │ │ ├── 71.json │ │ ├── 72.json │ │ ├── 73.json │ │ ├── 74.json │ │ ├── 75.json │ │ ├── 76.json │ │ ├── 77.json │ │ ├── 78.json │ │ ├── 79.json │ │ ├── 8.json │ │ ├── 80.json │ │ ├── 81.json │ │ ├── 82.json │ │ ├── 83.json │ │ ├── 84.json │ │ ├── 85.json │ │ ├── 86.json │ │ ├── 87.json │ │ ├── 88.json │ │ ├── 89.json │ │ ├── 9.json │ │ ├── 90.json │ │ ├── 91.json │ │ ├── 92.json │ │ ├── 93.json │ │ ├── 94.json │ │ ├── 95.json │ │ ├── 96.json │ │ ├── 97.json │ │ ├── 98.json │ │ └── 99.json │ ├── docker-compose.yml │ ├── gen_apis.lua │ └── tyk.conf ├── nginx.conf └── scripts ├── spec-parser.py └── wrk ├── github-path.lua ├── okta-path.lua └── openai-path.lua /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /data/single-static-apis.txt: -------------------------------------------------------------------------------- 1 | /api -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | nginx: 3 | image: nginx:latest 4 | network_mode: host 5 | volumes: 6 | - ./nginx.conf:/etc/nginx/nginx.conf 7 | # ports: 8 | # - "8888:8888" 9 | -------------------------------------------------------------------------------- /docs/images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vm-001/gateways-routing-benchmark/8122a5cf2ed2cc2fb69f7bc7ab09022322a4b525/docs/images/result.png -------------------------------------------------------------------------------- /env/default.env: -------------------------------------------------------------------------------- 1 | export CPU_CORES=1 2 | export BENCHMARK_DATA=single-static -------------------------------------------------------------------------------- /gateways/apisix/config/apisix-single-static.yaml: -------------------------------------------------------------------------------- 1 | routes: 2 | - uri: /api 3 | upstream: 4 | nodes: 5 | "host.docker.internal:8888": 1 6 | type: roundrobin 7 | #END -------------------------------------------------------------------------------- /gateways/apisix/config/config.yaml: -------------------------------------------------------------------------------- 1 | apisix: 2 | node_listen: 9080 3 | enable_ipv6: false 4 | 5 | router: 6 | http: radixtree_uri_with_parameter 7 | 8 | nginx_config: 9 | worker_processes: ${{WORKER_PROCESSES:=}} 10 | http: 11 | enable_access_log: false 12 | worker_rlimit_nofile: 65535 13 | event: 14 | worker_connections: 65535 15 | 16 | deployment: 17 | role: data_plane 18 | role_data_plane: 19 | config_provider: yaml 20 | -------------------------------------------------------------------------------- /gateways/apisix/docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | apisix: 3 | image: apache/apisix:latest 4 | container_name: apisix 5 | restart: always 6 | user: root 7 | volumes: 8 | - ./config/config.yaml:/usr/local/apisix/conf/config.yaml 9 | - ./config/apisix-${BENCHMARK_DATA}.yaml:/usr/local/apisix/conf/apisix.yaml 10 | environment: 11 | - APISIX_STAND_ALONE=true 12 | - WORKER_PROCESSES=${CPU_CORES:-1} 13 | ports: 14 | - "9080:9080/tcp" 15 | extra_hosts: 16 | - "host.docker.internal:host-gateway" -------------------------------------------------------------------------------- /gateways/kong/declarative-config/kong-single-static.yaml: -------------------------------------------------------------------------------- 1 | _format_version: "3.0" 2 | 3 | services: 4 | - name: example-service 5 | host: host.docker.internal 6 | port: 8888 7 | protocol: http 8 | routes: 9 | - name: example-route 10 | strip_path: false 11 | paths: 12 | - /api -------------------------------------------------------------------------------- /gateways/tyk/apps/github/104.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/installation/repositories", 3 | "api_id": "104", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/installation/repositories", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/108.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/ssh_signing_keys", 3 | "api_id": "108", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/ssh_signing_keys", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/110.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/actions/runners", 3 | "api_id": "110", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/actions/runners", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/111.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/installation/token", 3 | "api_id": "111", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/installation/token", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/114.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/issues", 3 | "api_id": "114", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/issues", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/117.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/projects/{project_id}/columns", 3 | "api_id": "117", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/projects/{project_id}/columns", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/119.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/notifications", 3 | "api_id": "119", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/notifications", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/120.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/apps/{app_slug}", 3 | "api_id": "120", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/apps/{app_slug}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/121.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/starred", 3 | "api_id": "121", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/starred", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/122.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/assignments/{assignment_id}", 3 | "api_id": "122", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/assignments/{assignment_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/123.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/licenses", 3 | "api_id": "123", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/licenses", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/124.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/rate_limit", 3 | "api_id": "124", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/rate_limit", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/127.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/licenses/{license}", 3 | "api_id": "127", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/licenses/{license}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/130.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/markdown", 3 | "api_id": "130", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/markdown", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/133.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/subscriptions", 3 | "api_id": "133", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/subscriptions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/134.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/classrooms", 3 | "api_id": "134", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/classrooms", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/137.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/classrooms/{classroom_id}", 3 | "api_id": "137", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/classrooms/{classroom_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/138.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users", 3 | "api_id": "138", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/143.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/projects", 3 | "api_id": "143", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/projects", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/145.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/events", 3 | "api_id": "145", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/events", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/149.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/pulls", 3 | "api_id": "149", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/pulls", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/150.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/followers", 3 | "api_id": "150", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/followers", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/152.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/following", 3 | "api_id": "152", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/following", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/156.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/gists", 3 | "api_id": "156", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/gists", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/158.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/gpg_keys", 3 | "api_id": "158", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/gpg_keys", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/159.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/projects", 3 | "api_id": "159", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/projects", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/160.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/hovercard", 3 | "api_id": "160", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/hovercard", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/164.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/properties/schema", 3 | "api_id": "164", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/properties/schema", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/166.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/teams/{team_id}/projects", 3 | "api_id": "166", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/teams/{team_id}/projects", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/171.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/zen", 3 | "api_id": "171", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/zen", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/174.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/teams/{team_id}/repos", 3 | "api_id": "174", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/teams/{team_id}/repos", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/178.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/properties/values", 3 | "api_id": "178", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/properties/values", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/182.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/teams/{team_id}/teams", 3 | "api_id": "182", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/teams/{team_id}/teams", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/184.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user", 3 | "api_id": "184", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/185.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/public_members", 3 | "api_id": "185", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/public_members", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/195.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/copilot/billing", 3 | "api_id": "195", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/copilot/billing", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/208.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/dependabot/alerts", 3 | "api_id": "208", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/dependabot/alerts", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/210.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/blocks", 3 | "api_id": "210", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/blocks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/211.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/dependabot/secrets", 3 | "api_id": "211", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/dependabot/secrets", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/212.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/blocks/{username}", 3 | "api_id": "212", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/blocks/{username}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/216.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/teams", 3 | "api_id": "216", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/teams", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/217.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/installation", 3 | "api_id": "217", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/installation", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/218.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/keys", 3 | "api_id": "218", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/keys", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/220.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/codespaces/secrets", 3 | "api_id": "220", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/codespaces/secrets", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/221.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/orgs", 3 | "api_id": "221", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/orgs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/224.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/packages", 3 | "api_id": "224", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/packages", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/226.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/docker/conflicts", 3 | "api_id": "226", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/docker/conflicts", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/228.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/following/{username}", 3 | "api_id": "228", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/following/{username}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/229.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/teams/{team_slug}", 3 | "api_id": "229", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/teams/{team_slug}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/230.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/events", 3 | "api_id": "230", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/events", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/233.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/failed_invitations", 3 | "api_id": "233", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/failed_invitations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/235.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/gpg_keys", 3 | "api_id": "235", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/gpg_keys", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/237.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/hooks", 3 | "api_id": "237", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/hooks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/238.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/codespaces/secrets", 3 | "api_id": "238", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/codespaces/secrets", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/245.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/gpg_keys/{gpg_key_id}", 3 | "api_id": "245", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/gpg_keys/{gpg_key_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/247.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/app/installation-requests", 3 | "api_id": "247", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/app/installation-requests", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/249.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/merges", 3 | "api_id": "249", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/merges", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/25.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/orgs", 3 | "api_id": "25", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/orgs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/250.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/installations", 3 | "api_id": "250", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/installations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/252.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/hooks/{hook_id}", 3 | "api_id": "252", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/hooks/{hook_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/254.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/installation", 3 | "api_id": "254", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/installation", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/256.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/repos", 3 | "api_id": "256", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/repos", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/257.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/installations", 3 | "api_id": "257", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/installations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/261.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/interaction-limits", 3 | "api_id": "261", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/interaction-limits", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/27.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/comments", 3 | "api_id": "27", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/comments", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/272.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/invitations", 3 | "api_id": "272", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/invitations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/284.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/pages", 3 | "api_id": "284", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/pages", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/287.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/issues", 3 | "api_id": "287", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/issues", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/29.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/packages", 3 | "api_id": "29", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/packages", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/290.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/", 3 | "api_id": "290", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/292.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/members/{username}", 3 | "api_id": "292", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/members/{username}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/295.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/actions/secrets", 3 | "api_id": "295", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/actions/secrets", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/30.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/commits", 3 | "api_id": "30", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/commits", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/300.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/advisories", 3 | "api_id": "300", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/advisories", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/308.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/tags", 3 | "api_id": "308", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/tags", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/310.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/octocat", 3 | "api_id": "310", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/octocat", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/315.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/organizations", 3 | "api_id": "315", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/organizations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/326.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/teams", 3 | "api_id": "326", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/teams", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/328.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/topics", 3 | "api_id": "328", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/topics", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/331.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/actions/variables", 3 | "api_id": "331", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/actions/variables", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/332.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/emails", 3 | "api_id": "332", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/emails", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/333.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/readme", 3 | "api_id": "333", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/readme", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/336.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/advisories/{ghsa_id}", 3 | "api_id": "336", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/advisories/{ghsa_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/337.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/releases", 3 | "api_id": "337", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/releases", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/34.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/{gist_id}", 3 | "api_id": "34", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/{gist_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/340.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/followers", 3 | "api_id": "340", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/followers", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/341.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/app", 3 | "api_id": "341", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/app", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/350.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/blocks", 3 | "api_id": "350", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/blocks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/351.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/versions", 3 | "api_id": "351", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/versions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/353.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/starred", 3 | "api_id": "353", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/starred", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/357.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}/projects", 3 | "api_id": "357", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}/projects", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/358.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/blocks/{username}", 3 | "api_id": "358", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/blocks/{username}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/362.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users/{username}", 3 | "api_id": "362", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users/{username}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/363.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/teams", 3 | "api_id": "363", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/teams", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/364.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/starred/{owner}/{repo}", 3 | "api_id": "364", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/starred/{owner}/{repo}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/366.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/social_accounts", 3 | "api_id": "366", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/social_accounts", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/370.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/app/hook/deliveries", 3 | "api_id": "370", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/app/hook/deliveries", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/371.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/repository_invitations", 3 | "api_id": "371", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/repository_invitations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/372.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/repos", 3 | "api_id": "372", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/repos", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/373.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/projects", 3 | "api_id": "373", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/projects", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/380.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/migrations", 3 | "api_id": "380", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/migrations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/381.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/memberships/orgs/{org}", 3 | "api_id": "381", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/memberships/orgs/{org}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/382.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/memberships/orgs", 3 | "api_id": "382", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/memberships/orgs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/387.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/keys/{key_id}", 3 | "api_id": "387", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/keys/{key_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/388.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/codespaces", 3 | "api_id": "388", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/codespaces", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/392.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/keys", 3 | "api_id": "392", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/keys", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/393.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/interaction-limits", 3 | "api_id": "393", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/interaction-limits", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/395.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/following", 3 | "api_id": "395", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/following", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/396.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/email/visibility", 3 | "api_id": "396", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/email/visibility", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/398.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/codespaces/access", 3 | "api_id": "398", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/codespaces/access", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/399.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/docker/conflicts", 3 | "api_id": "399", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/docker/conflicts", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/408.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/codespaces", 3 | "api_id": "408", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/codespaces", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/409.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/rulesets", 3 | "api_id": "409", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/rulesets", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/41.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/hooks", 3 | "api_id": "41", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/hooks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/412.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/packages", 3 | "api_id": "412", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/packages", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/417.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/code", 3 | "api_id": "417", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/code", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/420.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/labels", 3 | "api_id": "420", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/labels", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/428.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/members", 3 | "api_id": "428", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/members", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/431.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/commits", 3 | "api_id": "431", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/commits", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/432.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/import", 3 | "api_id": "432", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/import", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/437.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}", 3 | "api_id": "437", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/443.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/issues", 3 | "api_id": "443", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/issues", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/445.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/rulesets", 3 | "api_id": "445", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/rulesets", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/452.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/app/hook/config", 3 | "api_id": "452", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/app/hook/config", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/453.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}", 3 | "api_id": "453", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/458.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/labels", 3 | "api_id": "458", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/labels", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/461.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/license", 3 | "api_id": "461", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/license", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/468.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/repositories", 3 | "api_id": "468", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/repositories", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/469.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/markdown/raw", 3 | "api_id": "469", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/markdown/raw", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/470.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/starred", 3 | "api_id": "470", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/starred", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/477.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/migrations", 3 | "api_id": "477", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/migrations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/479.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/topics", 3 | "api_id": "479", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/topics", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/484.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/events", 3 | "api_id": "484", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/events", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/487.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/users", 3 | "api_id": "487", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/users", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/490.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/forks", 3 | "api_id": "490", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/forks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/492.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/marketplace_listing/plans", 3 | "api_id": "492", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/marketplace_listing/plans", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/498.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/teams/{team_id}", 3 | "api_id": "498", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/teams/{team_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/499.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/projects/columns/{column_id}", 3 | "api_id": "499", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/projects/columns/{column_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/502.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orgs/{org}/repos", 3 | "api_id": "502", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orgs/{org}/repos", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/512.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/events", 3 | "api_id": "512", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/events", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/513.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repos/{owner}/{repo}/activity", 3 | "api_id": "513", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repos/{owner}/{repo}/activity", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/523.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/feeds", 3 | "api_id": "523", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/feeds", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/53.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/{gist_id}/comments", 3 | "api_id": "53", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/{gist_id}/comments", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/531.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists", 3 | "api_id": "531", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/539.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/issues", 3 | "api_id": "539", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/issues", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/544.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/keys", 3 | "api_id": "544", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/keys", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/560.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/public", 3 | "api_id": "560", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/public", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/569.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/codes_of_conduct", 3 | "api_id": "569", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/codes_of_conduct", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/571.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/marketplace_purchases", 3 | "api_id": "571", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/marketplace_purchases", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/576.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/codes_of_conduct/{key}", 3 | "api_id": "576", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/codes_of_conduct/{key}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/582.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/emojis", 3 | "api_id": "582", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/emojis", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/584.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/teams/{team_id}/members", 3 | "api_id": "584", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/teams/{team_id}/members", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/599.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/meta", 3 | "api_id": "599", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/meta", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/601.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/repositories", 3 | "api_id": "601", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/repositories", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/61.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/user/public_emails", 3 | "api_id": "61", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/user/public_emails", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/64.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/app/installations", 3 | "api_id": "64", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/app/installations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/72.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/{gist_id}/commits", 3 | "api_id": "72", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/{gist_id}/commits", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/77.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/{gist_id}/forks", 3 | "api_id": "77", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/{gist_id}/forks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/83.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/{gist_id}/star", 3 | "api_id": "83", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/{gist_id}/star", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/86.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/projects/{project_id}", 3 | "api_id": "86", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/projects/{project_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/89.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gists/{gist_id}/{sha}", 3 | "api_id": "89", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gists/{gist_id}/{sha}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/93.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gitignore/templates", 3 | "api_id": "93", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gitignore/templates", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/github/99.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/gitignore/templates/{name}", 3 | "api_id": "99", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/gitignore/templates/{name}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps", 3 | "api_id": "1", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/104.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/logs", 3 | "api_id": "104", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/logs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/105.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/mappings", 3 | "api_id": "105", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/mappings", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/106.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/mappings/{mappingId}", 3 | "api_id": "106", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/mappings/{mappingId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/112.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/meta/types/user", 3 | "api_id": "112", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/meta/types/user", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/114.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/org", 3 | "api_id": "114", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/org", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/115.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/org/contacts", 3 | "api_id": "115", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/org/contacts", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/116.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/org/logo", 3 | "api_id": "116", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/org/logo", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/125.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/org/preferences", 3 | "api_id": "125", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/org/preferences", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/128.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/policies", 3 | "api_id": "128", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/policies", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/129.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/policies/{policyId}", 3 | "api_id": "129", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/policies/{policyId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/140.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/sessions", 3 | "api_id": "140", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/sessions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/141.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/sessions/{sessionId}", 3 | "api_id": "141", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/sessions/{sessionId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/143.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/templates/sms", 3 | "api_id": "143", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/templates/sms", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/145.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/trustedOrigins", 3 | "api_id": "145", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/trustedOrigins", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/149.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/users", 3 | "api_id": "149", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/users", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/151.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/users/{userId}", 3 | "api_id": "151", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/users/{userId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/170.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/users/{userId}/idps", 3 | "api_id": "170", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/users/{userId}/idps", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/18.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps/{appId}/features", 3 | "api_id": "18", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps/{appId}/features", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/182.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/users/{userId}/roles", 3 | "api_id": "182", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/users/{userId}/roles", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/194.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/zones", 3 | "api_id": "194", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/zones", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/195.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/zones/{zoneId}", 3 | "api_id": "195", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/zones/{zoneId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/199.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/domains", 3 | "api_id": "199", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/domains", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps/{appId}", 3 | "api_id": "2", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps/{appId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/20.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps/{appId}/grants", 3 | "api_id": "20", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps/{appId}/grants", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/202.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/domains/{domainId}", 3 | "api_id": "202", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/domains/{domainId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/203.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/brands", 3 | "api_id": "203", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/brands", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/204.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/brands/{brandId}", 3 | "api_id": "204", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/brands/{brandId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/22.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps/{appId}/groups", 3 | "api_id": "22", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps/{appId}/groups", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/26.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps/{appId}/logo", 3 | "api_id": "26", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps/{appId}/logo", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/27.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps/{appId}/tokens", 3 | "api_id": "27", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps/{appId}/tokens", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/30.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/apps/{appId}/users", 3 | "api_id": "30", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/apps/{appId}/users", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/32.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/authenticators", 3 | "api_id": "32", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/authenticators", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/36.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/authorizationServers", 3 | "api_id": "36", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/authorizationServers", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/57.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/eventHooks", 3 | "api_id": "57", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/eventHooks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/62.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/features", 3 | "api_id": "62", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/features", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/63.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/features/{featureId}", 3 | "api_id": "63", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/features/{featureId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/67.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/groups", 3 | "api_id": "67", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/groups", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/68.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/groups/rules", 3 | "api_id": "68", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/groups/rules", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/69.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/groups/rules/{ruleId}", 3 | "api_id": "69", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/groups/rules/{ruleId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/72.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/groups/{groupId}", 3 | "api_id": "72", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/groups/{groupId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/73.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/groups/{groupId}/apps", 3 | "api_id": "73", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/groups/{groupId}/apps", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/83.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/idps", 3 | "api_id": "83", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/idps", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/84.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/idps/credentials/keys", 3 | "api_id": "84", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/idps/credentials/keys", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/86.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/idps/{idpId}", 3 | "api_id": "86", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/idps/{idpId}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/96.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/idps/{idpId}/users", 3 | "api_id": "96", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/idps/{idpId}/users", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/okta/99.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api/v1/inlineHooks", 3 | "api_id": "99", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api/v1/inlineHooks", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/chat/completions", 3 | "api_id": "1", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/chat/completions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/10.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/files", 3 | "api_id": "10", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/files", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/11.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/files/{file_id}", 3 | "api_id": "11", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/files/{file_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/12.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/files/{file_id}/content", 3 | "api_id": "12", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/files/{file_id}/content", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/13.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/fine_tuning/jobs", 3 | "api_id": "13", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/fine_tuning/jobs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/17.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/models", 3 | "api_id": "17", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/models", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/18.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/models/{model}", 3 | "api_id": "18", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/models/{model}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/19.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/moderations", 3 | "api_id": "19", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/moderations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/completions", 3 | "api_id": "2", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/completions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/20.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/assistants", 3 | "api_id": "20", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/assistants", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/21.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/assistants/{assistant_id}", 3 | "api_id": "21", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/assistants/{assistant_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/22.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/threads", 3 | "api_id": "22", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/threads", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/23.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/threads/{thread_id}", 3 | "api_id": "23", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/threads/{thread_id}", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/26.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/threads/runs", 3 | "api_id": "26", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/threads/runs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/27.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/threads/{thread_id}/runs", 3 | "api_id": "27", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/threads/{thread_id}/runs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/images/generations", 3 | "api_id": "3", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/images/generations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/images/edits", 3 | "api_id": "4", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/images/edits", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/images/variations", 3 | "api_id": "5", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/images/variations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/6.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/embeddings", 3 | "api_id": "6", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/embeddings", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/7.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/audio/speech", 3 | "api_id": "7", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/audio/speech", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/8.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/audio/transcriptions", 3 | "api_id": "8", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/audio/transcriptions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/openai/9.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/audio/translations", 3 | "api_id": "9", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/audio/translations", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/single-static/1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/api", 3 | "api_id": "1", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/api", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/users", 3 | "api_id": "1", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/users", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/10.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/payments/process/creditcard", 3 | "api_id": "10", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/payments/process/creditcard", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/100.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/activities/logged/actions", 3 | "api_id": "100", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/activities/logged/actions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/11.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/notifications/push", 3 | "api_id": "11", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/notifications/push", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/12.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/messages/inbox", 3 | "api_id": "12", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/messages/inbox", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/13.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/settings/profile", 3 | "api_id": "13", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/settings/profile", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/14.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/cart/items/add", 3 | "api_id": "14", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/cart/items/add", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/15.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/wishlist/items/remove", 3 | "api_id": "15", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/wishlist/items/remove", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/16.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/profile/preferences/update", 3 | "api_id": "16", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/profile/preferences/update", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/17.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/feedback/suggestions", 3 | "api_id": "17", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/feedback/suggestions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/18.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/subscriptions/plans", 3 | "api_id": "18", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/subscriptions/plans", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/19.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/billing/invoices/summary", 3 | "api_id": "19", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/billing/invoices/summary", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/products", 3 | "api_id": "2", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/products", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/20.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/events/calendar/upcoming", 3 | "api_id": "20", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/events/calendar/upcoming", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/21.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/files/documents/downloads", 3 | "api_id": "21", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/files/documents/downloads", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/22.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/support/tickets/create", 3 | "api_id": "22", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/support/tickets/create", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/23.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/assets/images/gallery", 3 | "api_id": "23", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/assets/images/gallery", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/24.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/roles/permissions/manage", 3 | "api_id": "24", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/roles/permissions/manage", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/25.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/licenses/software/activate", 3 | "api_id": "25", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/licenses/software/activate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/26.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/tags/categories/list", 3 | "api_id": "26", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/tags/categories/list", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/27.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/products/query", 3 | "api_id": "27", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/products/query", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/28.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/locales/languages/translate", 3 | "api_id": "28", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/locales/languages/translate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/29.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/teams/members/add", 3 | "api_id": "29", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/teams/members/add", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orders", 3 | "api_id": "3", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orders", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/30.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/projects/tasks/list", 3 | "api_id": "30", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/projects/tasks/list", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/31.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/calendar/events/schedule", 3 | "api_id": "31", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/calendar/events/schedule", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/32.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/groups/threads/discussions", 3 | "api_id": "32", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/groups/threads/discussions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/33.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/threads/comments/post", 3 | "api_id": "33", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/threads/comments/post", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/34.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/ratings/products/rate", 3 | "api_id": "34", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/ratings/products/rate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/35.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/rankings/users/top", 3 | "api_id": "35", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/rankings/users/top", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/36.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/favorites/items/add", 3 | "api_id": "36", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/favorites/items/add", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/37.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/bookmarks/links/save", 3 | "api_id": "37", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/bookmarks/links/save", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/38.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/suggestions/ideas/submit", 3 | "api_id": "38", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/suggestions/ideas/submit", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/39.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/activities/logged/actions", 3 | "api_id": "39", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/activities/logged/actions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/customers", 3 | "api_id": "4", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/customers", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/40.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/plans/subscriptions/manage", 3 | "api_id": "40", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/plans/subscriptions/manage", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/41.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/schedules/appointments/book", 3 | "api_id": "41", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/schedules/appointments/book", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/42.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/attendees/events/register", 3 | "api_id": "42", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/attendees/events/register", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/43.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/checkins/attendees/scan", 3 | "api_id": "43", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/checkins/attendees/scan", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/45.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/booking/availability/check", 3 | "api_id": "45", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/booking/availability/check", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/46.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/facilities/rooms/list", 3 | "api_id": "46", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/facilities/rooms/list", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/47.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/services/amenities/view", 3 | "api_id": "47", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/services/amenities/view", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/48.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/promotions/deals/discounts", 3 | "api_id": "48", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/promotions/deals/discounts", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/inventory/items", 3 | "api_id": "5", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/inventory/items", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/50.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/loyalty/referrals/earnings", 3 | "api_id": "50", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/loyalty/referrals/earnings", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/52.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/earnings/reports/analytics", 3 | "api_id": "52", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/earnings/reports/analytics", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/53.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/statistics/metrics/insights", 3 | "api_id": "53", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/statistics/metrics/insights", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/54.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/trends/charts/graphs", 3 | "api_id": "54", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/trends/charts/graphs", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/55.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/dashboards/widgets/plugins", 3 | "api_id": "55", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/dashboards/widgets/plugins", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/57.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/interfaces/endpoints/routes", 3 | "api_id": "57", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/interfaces/endpoints/routes", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/58.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/paths/urls/links/redirects", 3 | "api_id": "58", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/paths/urls/links/redirects", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/59.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/forwards/responses/errors", 3 | "api_id": "59", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/forwards/responses/errors", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/6.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/transactions/sales", 3 | "api_id": "6", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/transactions/sales", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/60.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/status/logs/audit", 3 | "api_id": "60", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/status/logs/audit", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/61.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/tracking/monitoring/alerts", 3 | "api_id": "61", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/tracking/monitoring/alerts", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/62.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/books", 3 | "api_id": "62", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/books", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/63.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/products", 3 | "api_id": "63", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/products", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/64.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/orders", 3 | "api_id": "64", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/orders", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/65.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/customers", 3 | "api_id": "65", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/customers", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/66.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/inventory/items", 3 | "api_id": "66", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/inventory/items", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/67.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/transactions/sales", 3 | "api_id": "67", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/transactions/sales", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/68.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/reviews/products/latest", 3 | "api_id": "68", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/reviews/products/latest", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/69.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/categories/subcategories", 3 | "api_id": "69", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/categories/subcategories", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/7.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/reviews/products/latest", 3 | "api_id": "7", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/reviews/products/latest", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/70.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/addresses/validate", 3 | "api_id": "70", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/addresses/validate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/71.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/payments/process/creditcard", 3 | "api_id": "71", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/payments/process/creditcard", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/72.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/notifications/push", 3 | "api_id": "72", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/notifications/push", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/73.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/messages/inbox", 3 | "api_id": "73", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/messages/inbox", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/74.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/settings/profile", 3 | "api_id": "74", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/settings/profile", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/75.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/cart/items/add", 3 | "api_id": "75", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/cart/items/add", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/76.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/wishlist/items/remove", 3 | "api_id": "76", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/wishlist/items/remove", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/77.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/profile/preferences/update", 3 | "api_id": "77", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/profile/preferences/update", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/78.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/feedback/suggestions", 3 | "api_id": "78", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/feedback/suggestions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/79.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/subscriptions/plans", 3 | "api_id": "79", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/subscriptions/plans", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/8.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/categories/subcategories", 3 | "api_id": "8", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/categories/subcategories", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/80.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/billing/invoices/summary", 3 | "api_id": "80", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/billing/invoices/summary", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/81.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/events/calendar/upcoming", 3 | "api_id": "81", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/events/calendar/upcoming", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/82.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/files/documents/downloads", 3 | "api_id": "82", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/files/documents/downloads", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/83.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/support/tickets/create", 3 | "api_id": "83", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/support/tickets/create", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/84.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/assets/images/gallery", 3 | "api_id": "84", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/assets/images/gallery", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/85.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/roles/permissions/manage", 3 | "api_id": "85", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/roles/permissions/manage", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/86.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/licenses/software/activate", 3 | "api_id": "86", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/licenses/software/activate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/87.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/tags/categories/list", 3 | "api_id": "87", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/tags/categories/list", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/88.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/search/products/query", 3 | "api_id": "88", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/search/products/query", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/89.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/locales/languages/translate", 3 | "api_id": "89", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/locales/languages/translate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/9.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/addresses/validate", 3 | "api_id": "9", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/addresses/validate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/90.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/teams/members/add", 3 | "api_id": "90", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/teams/members/add", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/91.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/projects/tasks/list", 3 | "api_id": "91", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/projects/tasks/list", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/92.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/calendar/events/schedule", 3 | "api_id": "92", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/calendar/events/schedule", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/93.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/groups/threads/discussions", 3 | "api_id": "93", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/groups/threads/discussions", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/94.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/threads/comments/post", 3 | "api_id": "94", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/threads/comments/post", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/95.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/ratings/products/rate", 3 | "api_id": "95", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/ratings/products/rate", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/96.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/rankings/users/top", 3 | "api_id": "96", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/rankings/users/top", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/97.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/favorites/items/add", 3 | "api_id": "97", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/favorites/items/add", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/98.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/bookmarks/links/save", 3 | "api_id": "98", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/bookmarks/links/save", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /gateways/tyk/apps/static/99.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "/suggestions/ideas/submit", 3 | "api_id": "99", 4 | "org_id": "test", 5 | "use_keyless": true, 6 | "version_data": { 7 | "not_versioned": true, 8 | "versions": { 9 | "Default": { 10 | "name": "Default", 11 | "use_extended_paths": true 12 | } 13 | } 14 | }, 15 | "proxy": { 16 | "listen_path": "/suggestions/ideas/submit", 17 | "target_url": "http://host.docker.internal:8888/", 18 | "strip_listen_path": false 19 | }, 20 | "active": true 21 | } 22 | -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- 1 | worker_processes 1; 2 | 3 | worker_rlimit_nofile 65535; 4 | 5 | events { 6 | accept_mutex off; 7 | worker_connections 65535; 8 | } 9 | 10 | http { 11 | server { 12 | listen 8888; 13 | access_log off; 14 | 15 | location / { 16 | return 200; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /scripts/wrk/github-path.lua: -------------------------------------------------------------------------------- 1 | local counter = 0 2 | 3 | local API = "/repos/" .. tostring(os.time()) .. "/%d/pages/health" 4 | 5 | print(API) 6 | 7 | request = function() 8 | counter = counter + 1 9 | local path = string.format(API, counter) 10 | return wrk.format(nil, path) 11 | end 12 | -------------------------------------------------------------------------------- /scripts/wrk/okta-path.lua: -------------------------------------------------------------------------------- 1 | local counter = 0 2 | 3 | local API = "/api/v1/brands/" .. tostring(os.time()) .. "/templates/email/111/customizations/%d/preview" 4 | 5 | print(API) 6 | 7 | request = function() 8 | counter = counter + 1 9 | local path = string.format(API, counter) 10 | return wrk.format(nil, path) 11 | end 12 | -------------------------------------------------------------------------------- /scripts/wrk/openai-path.lua: -------------------------------------------------------------------------------- 1 | local counter = 0 2 | 3 | local API = "/threads/" .. tostring(os.time()) .. "/messages/111/files/%d" 4 | 5 | print(API) 6 | 7 | request = function() 8 | counter = counter + 1 9 | local path = string.format(API, counter) 10 | return wrk.format(nil, path) 11 | end 12 | --------------------------------------------------------------------------------