rest-api-spec.api.connector.secret_put.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
Elasticsearch subproject :rest-api-spec
The newest version!
{
"connector.secret_put": {
"documentation": {
"url": null,
"description": "Creates or updates a secret for a Connector."
},
"stability": "experimental",
"visibility":"private",
"headers":{
"accept": [ "application/json" ]
},
"url":{
"paths":[
{
"path":"/_connector/_secret/{id}",
"methods":[ "PUT" ],
"parts": {
"id": {
"type": "string",
"description": "The unique identifier of the connector secret to be created or updated."
}
}
}
]
},
"params":{},
"body": {
"description":"The secret value to store",
"required":true
}
}
}