-
Notifications
You must be signed in to change notification settings - Fork 132
Home
Za Wilgustus edited this page Dec 18, 2015
·
7 revisions
Welcome to the f5-common-python wiki!
This page will document the BigIP API:
The intent is that the client using the f5-common-python REST API can access BigIP uri's as Python objects.
For example, a user that wants to create a new Nat
instance on the BigIP device can invoke the following:
from f5.bigip import BigIP
bigip = BigIP("HOSTNAME", "USERNAME", "PASSWORD")
nat_obj = bigip.ltm.nat
nat_obj.create(folder="Common", instance_name="SOMEUSER")