removedInput schema / $defs
Removed value: -{
- "GetManifestInput": {
- "additionalProperties": false,
- "description": "导出应用 YAML 清单的输入参数",
- "properties": {
- "app_name": {
- "description": "应用名称",
- "minLength": 1,
- "title": "App Name",
- "type": "string"
- },
- "env": {
- "description": "环境名",
- "minLength": 1,
- "title": "Env",
- "type": "string"
- },
- "source": {
- "default": "latest",
- "description": "导出来源:latest(最新渲染配置)或 running(集群运行态 CR)",
- "pattern": "^(latest|running)$",
- "title": "Source",
- "type": "string"
- }
- },
- "required": [
- "app_name",
- "env"
- ],
- "title": "GetManifestInput",
- "type": "object"
- }
-}
addedInput schema / properties / app_name
Added value: +{
+ "description": "应用名称",
+ "minLength": 1,
+ "title": "App Name",
+ "type": "string"
+}
addedInput schema / properties / env
Added value: +{
+ "description": "环境名",
+ "minLength": 1,
+ "title": "Env",
+ "type": "string"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/GetManifestInput"
-}
addedInput schema / properties / source
Added value: +{
+ "default": "latest",
+ "description": "导出来源:latest(最新渲染配置)或 running(集群运行态 CR)",
+ "pattern": "^(latest|running)$",
+ "title": "Source",
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "app_name",
+ "env"
+]