简体   繁体   中英

Query Azure filewall data using the Java SDK?

I'm trying to poll some data about the Firewall using the Java SDK. I can't figure out how I am supposed to do so.

I went over all the documentation Tried using similar methods And I have tried accessing the firewall data through other objects like ApplicationGateways

private Azure azure = null;
...
ApplicationGateways applicationGateways = azure.applicationGateways();
applicationGateways.inner().list();

I expect an object that includes data of NAT rule collections, Network rule collections, Application rule collections

And of course, details about each object within those collections

Currently, there is no available Azure java SDK which can manage Azure Firewall. You can use Azure REST API ( https://docs.microsoft.com/en-us/rest/api/firewall/ ) to manage the Firewall resource.

Or, you can use Azure PowerShell or Azure CLI at the moment.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM