We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to attach an iRule to virtual server with your API ?
The text was updated successfully, but these errors were encountered:
@Menta2L Yes!
You would have to add the iRules using the AddVirtualServer method and build the structure yourself. So
// Adds VirtualServer with iRules config := &bigip.VirtualServer{ Name: "someVSname", Partition: "Common", Rules: []string{ "/Common/Rule1", "/Common/Rule2", }, } f5.AddVirtualServer(config)
I believe that should work. @scottdware
Sorry, something went wrong.
You are right, @kenmaglio
Merge pull request scottdware#30 from GaddamSaketha/master
87e8642
added udp and postgresql monitor resources and license banners to required files
No branches or pull requests
Is it possible to attach an iRule to virtual server with your API ?
The text was updated successfully, but these errors were encountered: