Set Protocol Profile (Server) And HTTP Profile (Server) via the SDK
I am trying to set the Protocol Profile (Server) and the HTTP Profile (Server) via the Python SDK. I am putting the profiles I want in a dictionary object.
profiles = {
"profiles": [ "f5-tcp-lan", "f5-tcp-progressive", "http_x_forward_for", "custom", "clientssl", "serverssl" ]
}
######THE ABOVE VALUES ARE IN THIS ORDER#####
#PROTOCOL PROFILE (Client)
#PROTOCOL PROFILE (Server)
#HTTP PROFILE (Client)
#HTTP PROFILE (Server)
#SSL Profile (Client)
#SSL Profile (Server)
##########################################
BIGIP_CONN = ManagementRoot("1.1.1.1","admin","123")
vip = BIGIP_CONN.tm.ltm.virtuals.get_collection()[1]
vip.update(**profiles)
When I do this I get the following error:
iControlUnexpectedHTTPError: 400 Unexpected Error: Bad Request for uri: https://labf52:443/mgmt/tm/ltm/virtual/~Common~myvipname/
Text: '{"code":400,"message":"01070097:3: Virtual server /Common/myvipname lists duplicate profiles.","errorStack":[],"apiError":3}'
Even if I put the VIP at all defaults with none of these profiles it still throws the error