Chore: Bump grafana-plugin-sdk-go version to v0.214.0 (#84162)

* bump grafana-plugin-sdk-go version to v0.214.0

* make swagger-clean && make openapi3-gen
This commit is contained in:
ismail simsek
2024-03-11 16:49:53 +01:00
committed by GitHub
parent 7d1ea1c655
commit 3bb38d82ab
10 changed files with 182 additions and 134 deletions

View File

@@ -6690,6 +6690,7 @@
"type": "object"
},
"JSONWebKey": {
"description": "JSONWebKey represents a public or private key in JWK format. It can be\nmarshaled into JSON and unmarshaled from JSON.",
"properties": {
"Algorithm": {
"description": "Key algorithm, parsed from `alg` header.",
@@ -6722,7 +6723,7 @@
"$ref": "#/components/schemas/URL"
},
"Key": {
"description": "Cryptographic key, can be a symmetric or asymmetric key."
"description": "Key is the Go in-memory representation of this key. It must have one\nof these types:\ned25519.PublicKey\ned25519.PrivateKey\necdsa.PublicKey\necdsa.PrivateKey\nrsa.PublicKey\nrsa.PrivateKey\n[]byte (a symmetric key)\n\nWhen marshaling this JSONWebKey into JSON, the \"kty\" header parameter\nwill be automatically set based on the type of this field."
},
"KeyID": {
"description": "Key identifier, parsed from `kid` header.",
@@ -6733,7 +6734,6 @@
"type": "string"
}
},
"title": "JSONWebKey represents a public or private key in JWK format.",
"type": "object"
},
"Json": {