22-Apr-2020
12:14
- last edited on
28-Mar-2023
19:14
by
JRahm
Is there a way using the API to add a single key to a data group without needing to POST/PATCH the entire existing list with the single new addition?
In other words if I have a data group that looks like this:
{
"name": "key1",
"data": "value1"
},
{
"name": "key2",
"data": "value2"
}
and I want to add the following:
{
"name": "key3",
"data": "value3"
}
When using the CLI or GUI I can do this one at a time. Using the REST API it does not appear that I can just add a single new key to the list without having to GET the existing list and manually add the new one to the body before POSTing back to the LTM. Is there a way to do this that I am missing?
Solved! Go to Solution.
22-Apr-2020
14:26
- last edited on
28-Mar-2023
19:15
by
JRahm
Hello,
I workaround this with options parameter:
e.g.
?options=records add { key3 { data value3 } }
curl -ku "admin:admin" -X PATCH -H 'Content-type: application/json' -d '{ "name":"my_datagroup" }' https://localhost/mgmt/tm/ltm/data-group/internal/my_datagroup?options=records%20add%20%7b%20key3%20%7b%20data%20value3%20%7d%20%7d |jq .
Best regards.
22-Apr-2020
14:26
- last edited on
28-Mar-2023
19:15
by
JRahm
Hello,
I workaround this with options parameter:
e.g.
?options=records add { key3 { data value3 } }
curl -ku "admin:admin" -X PATCH -H 'Content-type: application/json' -d '{ "name":"my_datagroup" }' https://localhost/mgmt/tm/ltm/data-group/internal/my_datagroup?options=records%20add%20%7b%20key3%20%7b%20data%20value3%20%7d%20%7d |jq .
Best regards.
23-Apr-2020 05:57
This is exactly what I am looking for, thank you! Where can I find more info about the options(i.e. add) available with data groups? I would also like to do the same thing removing a single record as well and see what else is available.
23-Apr-2020
06:34
- last edited on
28-Mar-2023
19:15
by
JRahm
Hi,
You can find a generic explanation in user guide about options parameter.
"options:
Specifies the options to a query request. This parameter takes values that are compatible with the tmsh command-line options."
In this case, "PATCH" runs "modify" and "options" completes the tmsh command:
e.g.
modify ltm data-group internal my_datagroup records add { key3 { data value3 } }
So, to delete a record, change operation to "delete":
?options=records delete { key1 }
curl -ku "admin:admin" -X PATCH -H 'Content-type: application/json' -d '{ "name":"my_datagroup" }' https://localhost/mgmt/tm/ltm/data-group/internal/my_datagroup?options=records%20delete%20%7B%20key1%20%7D |jq .
Full docs:
https://clouddocs.f5.com/api/icontrol-rest/#
https://cdn.f5.com/websites/devcentral.f5.com/downloads/icontrol-rest-api-user-guide-14-1-0.pdf
Data-group docs:
https://clouddocs.f5.com/api/icontrol-rest/APIRef_tm_ltm_data-group.html
Regards
23-Apr-2020 07:18
Excellent. Add and deletes are both working. Thanks again!
12-Jan-2021
09:34
- last edited on
24-Mar-2022
01:31
by
li-migration
this is cool, and I had no idea this worked. What versions have you confirmed this on?
12-Jan-2021
14:24
- last edited on
28-Mar-2023
19:16
by
JRahm
Hi ,
I just ran a test on versions 14.1.2.2 and 13.1.3.2 successfully.
Best regards.
[root@bigipdelta:Active:Standalone] config # tmsh list ltm data-group internal dg_devcentral
ltm data-group internal dg_devcentral {
records {
key1 {
data value1
}
key2 {
data value2
}
key3 {
data value3
}
key4 {
data value4
}
key5 {
data value5
}
}
type string
}
[root@bigipdelta:Active:Standalone] config # curl -k -su "admin" -X PATCH -H 'Content-type: application/json' -d '{ "name":"dg_devcentral" }' https://localhost/mgmt/tm/ltm/data-group/internal/dg_devcentral?options=records%20delete%20%7B%20key1%20%7D |jq .
Enter host password for user 'admin':
{
"kind": "tm:ltm:data-group:internal:internalstate",
"name": "dg_devcentral",
"fullPath": "dg_devcentral",
"generation": 499,
"selfLink": "https://localhost/mgmt/tm/ltm/data-group/internal/dg_devcentral?options=records+delete+%7B+key1+%7D&ver=14.1.2.2",
"type": "string",
"records": [
{
"name": "key2",
"data": "value2"
},
{
"name": "key3",
"data": "value3"
},
{
"name": "key4",
"data": "value4"
},
{
"name": "key5",
"data": "value5"
}
]
}
[root@bigipdelta:Active:Standalone] config # curl -k -su "admin" -X PATCH -H 'Content-type: application/json' -d '{ "name":"dg_devcentral" }' https://localhost/mgmt/tm/ltm/data-group/internal/dg_devcentral?options=records%20add%20%7b%20key1%20%7b%20data%20value1%20%7d%20%7d |jq .
Enter host password for user 'admin':
{
"kind": "tm:ltm:data-group:internal:internalstate",
"name": "dg_devcentral",
"fullPath": "dg_devcentral",
"generation": 500,
"selfLink": "https://localhost/mgmt/tm/ltm/data-group/internal/dg_devcentral?options=records+add+%7B+key1+%7B+data+value1+%7D+%7D&ver=14.1.2.2",
"type": "string",
"records": [
{
"name": "key1",
"data": "value1"
},
{
"name": "key2",
"data": "value2"
},
{
"name": "key3",
"data": "value3"
},
{
"name": "key4",
"data": "value4"
},
{
"name": "key5",
"data": "value5"
}
]
}
12-Jan-2021 19:55
Here's a python script alternative to using curl on the cli.
12-Jan-2021 14:41
nice! I'll test 12.1, 15.1 and 16.1 and then call it good. I appreciate you!
13-Jan-2022
11:20
- last edited on
24-Mar-2022
01:32
by
li-migration
were you able to confirm the versions? About to test 15.1.3.x.
/jeff