github.com/GuanceCloud/cliutils@v1.1.21/pipeline/ptinput/funcs/md/pt_kvs_del.en.md (about)

     1  ### `pt_kvs_del()` {#fn_pt_kvs_del}
     2  
     3  Function prototype: `fn pt_kvs_del(name: str)`
     4  
     5  Function description: Delete the key specified in Point
     6  
     7  Function parameters:
     8  
     9  - `name`: Key to be deleted
    10  
    11  Example:
    12  
    13  ```python
    14  key_blacklist = ["k1", "k2", "k3"]
    15  for k in pt_kvs_keys() {
    16      if k in key_blacklist {
    17          pt_kvs_del(k)
    18      }
    19  }
    20  ```