a10networks / acos-client

ACOS API Client
Apache License 2.0
35 stars 61 forks source link

[BUG][STACK-2996]: [Flexpool Integration]Proxy Server configurations not getting pushed on vthunder devices. #364

Closed rahulkatre-a10 closed 2 years ago

rahulkatre-a10 commented 2 years ago

Description

Severity: High Description: vthunder devices are not getting configured with GLM proxy-server configurations. The request payload for create API '/axapi/v3/glm/proxy-server' is not correct. Provided

{
    "username": "string",
    "uuid": "string",
    "encrypted": "Unknown Type: encrypted",
    "host": "string",
    "password": 0,
    "port": 0,
    "secret-string": "string"
  }

Expected:

{
  "proxy-server": {
    "username": "string",
    "uuid": "string",
    "encrypted": "Unknown Type: encrypted",
    "host": "string",
    "password": 0,
    "port": 0,
    "secret-string": "string"
  }
}