curl --location --request POST '/v1.33/secrets//update?version=' \
--header 'Content-Type: application/json' \
--data-raw '{
"Data": "",
"Driver": {
"Name": "some-driver",
"Options": {
"OptionA": "value for driver-specific option A",
"OptionB": "value for driver-specific option B"
}
},
"Labels": {
"com.example.some-label": "some-value",
"com.example.some-other-label": "some-other-value"
},
"Name": "string"
}'
{}