Forum Discussion

Neptune_01's avatar
Neptune_01
Icon for Nimbostratus rankNimbostratus
Sep 15, 2020
Solved

F5 AS3 - Default Persistence Profile

Hi,

 

I'm trying to PATCH a new VIP via F5 AS3.

However, the Default Persistence Profile is set to cookie, i'm not able to choose the 'None' value if i send this in the JSON body.

 

Is this a bug?

 

Thanks!

  • I found this in one of our AS3 docs:

    Troubleshooting

    I’m having trouble creating an application service without persistence.

    In order to create (or update) a declaration for an application service that does include persistence, you use the persistenceMethod property with a value of [] (empty square brackets), on your application service. This sets the persistence method on the application service (BIG-IP virtual server) to none. The line should look like: 

    "persistenceMethods": []"

    .

    For example, a declaration snippet would look like the following:

    "service": {
         "class": "Service_HTTP",
         "virtualAddresses": [
             "10.0.1.10"],
         "persistenceMethods": [],
         "pool": "web_pool"
     },

    You can find the info here: https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/userguide/troubleshooting.html?highlight=persistencemethods

2 Replies

  • I found this in one of our AS3 docs:

    Troubleshooting

    I’m having trouble creating an application service without persistence.

    In order to create (or update) a declaration for an application service that does include persistence, you use the persistenceMethod property with a value of [] (empty square brackets), on your application service. This sets the persistence method on the application service (BIG-IP virtual server) to none. The line should look like: 

    "persistenceMethods": []"

    .

    For example, a declaration snippet would look like the following:

    "service": {
         "class": "Service_HTTP",
         "virtualAddresses": [
             "10.0.1.10"],
         "persistenceMethods": [],
         "pool": "web_pool"
     },

    You can find the info here: https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/userguide/troubleshooting.html?highlight=persistencemethods