For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

Puli's avatar
Puli
Icon for Nimbostratus rankNimbostratus
Feb 21, 2012

adding string members into an internal class in v10.1

I've create a internal class accouring to v10.1 via bigpipe commands

 

 

as below.

 

bp> class my_class {

 

"a" {"b"}

 

}

 

 

am trying to find a command to update the class, add/delete.

 

 

can you provide some commands in bigpipe ?

 

appreciate your help.

 

Puli.

 

1 Reply

  • bp>class my_class list

     

    class my_class {

     

    {

     

    "a" { "b" }

     

    }

     

    }

     

    bp>class my_class "b" { "c" } add

     

    bp>class my_class list

     

    class my_class {

     

    {

     

    "a" { "b" }

     

    "b" { "c" }

     

    }

     

    }