├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── errors.json └── schema.json ├── developing.md ├── dump-errors ├── .gitignore └── dump.py ├── freeipa ├── client.go ├── client_test.go ├── example_test.go ├── generated.go └── util.go ├── gen ├── convert.go ├── err.go ├── freeipa.gotmpl ├── main.go └── schema.go └── thirdparty └── snaker ├── LICENSE.txt └── snaker.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /gen/gen 2 | .vscode 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/README.md -------------------------------------------------------------------------------- /data/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/data/errors.json -------------------------------------------------------------------------------- /data/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/data/schema.json -------------------------------------------------------------------------------- /developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/developing.md -------------------------------------------------------------------------------- /dump-errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/dump-errors/.gitignore -------------------------------------------------------------------------------- /dump-errors/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/dump-errors/dump.py -------------------------------------------------------------------------------- /freeipa/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/freeipa/client.go -------------------------------------------------------------------------------- /freeipa/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/freeipa/client_test.go -------------------------------------------------------------------------------- /freeipa/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/freeipa/example_test.go -------------------------------------------------------------------------------- /freeipa/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/freeipa/generated.go -------------------------------------------------------------------------------- /freeipa/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/freeipa/util.go -------------------------------------------------------------------------------- /gen/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/gen/convert.go -------------------------------------------------------------------------------- /gen/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/gen/err.go -------------------------------------------------------------------------------- /gen/freeipa.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/gen/freeipa.gotmpl -------------------------------------------------------------------------------- /gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/gen/main.go -------------------------------------------------------------------------------- /gen/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/gen/schema.go -------------------------------------------------------------------------------- /thirdparty/snaker/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/thirdparty/snaker/LICENSE.txt -------------------------------------------------------------------------------- /thirdparty/snaker/snaker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehwalris/go-freeipa/HEAD/thirdparty/snaker/snaker.go --------------------------------------------------------------------------------