Re: implementing policies through REST interface

2019-09-24 Thread Nicolas Delsaux
Well, i managed to use the excellent nipyapi Python client which provides nearly all the calls I was needing. Thanks anyway ! Le 24/09/2019 à 16:25, Bryan Bende a écrit : The best way to figure out the REST calls would be to use the UI while you have Chrome Dev Tools open and go through the

Re: implementing policies through REST interface

2019-09-24 Thread Bryan Bende
That is a good choice too, should have mentioned that. Glad you got it working. On Tue, Sep 24, 2019 at 10:33 AM Nicolas Delsaux wrote: > > Well, i managed to use the excellent nipyapi Python client which > provides nearly all the calls I was needing. > > Thanks anyway ! > > Le 24/09/2019 à

Re: implementing policies through REST interface

2019-09-24 Thread Bryan Bende
The best way to figure out the REST calls would be to use the UI while you have Chrome Dev Tools open and go through the process of creating the policies you are interested in and then you'll see the requests that are made. In terms of the a REST client, there isn't really an official client, but

implementing policies through REST interface

2019-09-24 Thread Nicolas Delsaux
    Hi all i'm deploying my nifi node in containers and, as a consqeunce, i have to periodically rewrite policies to have it working. As it is really painful, i would like to write a script that will write those policies automatically at first startup. Are there any tutorials about that ? I'm