├── .gitignore ├── LICENSE.txt ├── NiFiDeploy.groovy ├── README.md ├── TemplateInspector.groovy ├── assets └── HelloNiFi_screenshot.png ├── nifi-deploy.yml └── test-yaml.groovy /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperepel/nifi-api-deploy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NiFiDeploy.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperepel/nifi-api-deploy/HEAD/NiFiDeploy.groovy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperepel/nifi-api-deploy/HEAD/README.md -------------------------------------------------------------------------------- /TemplateInspector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperepel/nifi-api-deploy/HEAD/TemplateInspector.groovy -------------------------------------------------------------------------------- /assets/HelloNiFi_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperepel/nifi-api-deploy/HEAD/assets/HelloNiFi_screenshot.png -------------------------------------------------------------------------------- /nifi-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperepel/nifi-api-deploy/HEAD/nifi-deploy.yml -------------------------------------------------------------------------------- /test-yaml.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperepel/nifi-api-deploy/HEAD/test-yaml.groovy --------------------------------------------------------------------------------