This YANG module provides a data model for network interfaces.
Copyright 2018-2020 Rubicon Communications, LLC.
Example URL
Correct response
No response
Internal error
package main import ( "fmt" "net/http" "io/ioutil" ) func main() { url := "http://hostname/restconf/operations/netgate-package:package-cache-cleanup" req, _ := http.NewRequest("POST", url, nil) res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) }
Example URL
operates on netgate.package.PackageInfo
input | object (netgate.package.packageinfo.Input) |
Correct response
No response
Internal error
Example URL
operates on netgate.package.PackageInstall
input | object (netgate.package.packageinstall.Input) |
Correct response
No response
Internal error
Example URL
operates on netgate.package.PackageList
input | object (netgate.package.packagelist.Input) |
Correct response
No response
Internal error
Example URL
operates on netgate.package.PackageReinstall
input | object (netgate.package.packagereinstall.Input) |
Correct response
No response
Internal error
Example URL
operates on netgate.package.PackageRemove
input | object (netgate.package.packageremove.Input) |
Correct response
No response
Internal error
Example URL
operates on netgate.package.PackageSearch
input | object (netgate.package.packagesearch.Input) |
Correct response
No response
Internal error
Example URL
operates on netgate.package.PackageUpgrade
input | object (netgate.package.packageupgrade.Input) |
Correct response
No response
Internal error