f5devcentral / vscode-f5

Let the F5 VSCode extension supercharge your workflows with schema validation, rest client, fast templates, and so much more!!!
https://f5devcentral.github.io/vscode-f5/#/
Apache License 2.0
57 stars 14 forks source link

System Management IP Declarative Onboarding Conversion is non functional #224

Closed MicSkr closed 1 week ago

MicSkr commented 1 year ago

Environment

Summary

Certain Sys Management configurations do not convert properly

Steps To Reproduce

Steps to reproduce the behavior:

  1. Convert the following CONF to DO declaration by highlight and right click, convert to DO:

    sys management-ip 10.10.10.1/24 {   }
  2. Observe the following error response:

    {
    "schemaVersion": "1.0.0",
    "class": "Device",
    "async": true,
    "Common": {
        "class": "Tenant",
        "}": {
            "class": "ManagementIp",
            "address": "}"
        }
    }
    }

Expected Behavior

Output like this:

{
    "schemaVersion": "1.0.0",
    "class": "Device",
    "async": true,
    "Common": {
        "class": "Tenant",
        "ManagementIp_IPv4": {
            "class": "ManagementIp",
            "address": "10.10.10.1/24"
        }
    }
}
DumpySquare commented 1 week ago

this function is provided by the vscode-f5-chariot extension which is based on the ACC engine. That engine is no longer getting any public updates. closing