show cli dynamic integers
Python
Copy
import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show cli dynamic integers",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show cli dynamic integers",
        "msg": "Success",
        "code": "200",
        "body": {
          "TABLE_dynamic_integers": {
            "ROW_dynamic_integers": [
              {
                "name-o": "<i1>",
                "min": 1,
                "max": 30
              },
              {
                "name-o": "<module>",
                "min": 1,
                "max": 30
              },
              {
                "name-o": "<new_id>",
                "min": 1,
                "max": 1
              },
              {
                "name-o": "<vdc-id>",
                "min": 1,
                "max": 1
              },
              {
                "name-o": "<module-number>",
                "min": 1,
                "max": 30
              },
              {
                "name-o": "<fan_num>",
                "min": 1,
                "max": 3
              },
              {
                "name-o": "<po-lb-rotate-range>",
                "min": 0,
                "max": 63
              },
              {
                "name-o": "<vdc-mgr-max-mem>",
                "min": 256,
                "max": 16015
              },
              {
                "name-o": "<mc_id>",
                "min": 0,
                "max": 131072
              },
              {
                "name-o": "<gsh_rootfs>",
                "min": 250,
                "max": 2000
              },
              {
                "name-o": "<gsh_cpu>",
                "min": 1,
                "max": 20
              },
              {
                "name-o": "<gsh_memory>",
                "min": 256,
                "max": 3840
              },
              {
                "name-o": "<mcast-ent>",
                "min": 0,
                "max": 8000
              },
              {
                "name-o": "<size-in-bytes>",
                "min": 27456,
                "max": 12582912
              },
              {
                "name-o": "<xoff-bytes>",
                "min": 12480,
                "max": 12582912
              },
              {
                "name-o": "<xon-bytes>",
                "min": 12480,
                "max": 12582912
              },
              {
                "name-o": "<q-size>",
                "min": 1,
                "max": 12582912
              },
              {
                "name-o": "<min-thresh>",
                "min": 1,
                "max": 12582912
              },
              {
                "name-o": "<max-thresh>",
                "min": 1,
                "max": 12582912
              }
            ]
          }
        }
      }
    }
  }
}