refactor: Convert Tanzu provider to declarative JSON config (#7124)

Signed-off-by: Nick Kuhn <nick.kuhn@broadcom.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Nick Kuhn
2026-03-10 10:06:53 -04:00
committed by GitHub
parent 9f061f7936
commit a191f0d958
9 changed files with 310 additions and 2 deletions
+36
View File
@@ -4195,9 +4195,20 @@
"display_name": {
"type": "string"
},
"dynamic_models": {
"type": "boolean",
"nullable": true
},
"engine": {
"$ref": "#/components/schemas/ProviderEngine"
},
"env_vars": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnvVarConfig"
},
"nullable": true
},
"headers": {
"type": "object",
"additionalProperties": {
@@ -4460,6 +4471,31 @@
}
}
},
"EnvVarConfig": {
"type": "object",
"required": [
"name"
],
"properties": {
"default": {
"type": "string",
"nullable": true
},
"description": {
"type": "string",
"nullable": true
},
"name": {
"type": "string"
},
"required": {
"type": "boolean"
},
"secret": {
"type": "boolean"
}
}
},
"Envs": {
"type": "object",
"additionalProperties": {