removedInput schema / $defs / CompareApplicationInput
Removed value: -{
- "additionalProperties": false,
- "description": "对比应用配置差异的输入参数",
- "properties": {
- "app_name": {
- "description": "应用名称",
- "minLength": 1,
- "title": "App Name",
- "type": "string"
- },
- "compare_with": {
- "default": "running",
- "description": "revision 的对比对象:running(集群运行态)或 latest(最新配置)",
- "pattern": "^(running|latest)$",
- "title": "Compare With",
- "type": "string"
- },
- "env": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "环境名。不传 revision 时必填:对比最新配置与该环境集群运行态",
- "title": "Env"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- },
- "revision": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "版本号。传入后以该版本为基准做对比",
- "title": "Revision"
- }
- },
- "required": [
- "app_name"
- ],
- "title": "CompareApplicationInput",
- "type": "object"
-}
addedInput schema / properties / app_name
Added value: +{
+ "description": "应用名称",
+ "minLength": 1,
+ "title": "App Name",
+ "type": "string"
+}
addedInput schema / properties / compare_with
Added value: +{
+ "default": "running",
+ "description": "revision 的对比对象:running(集群运行态)或 latest(最新配置)",
+ "pattern": "^(running|latest)$",
+ "title": "Compare With",
+ "type": "string"
+}
addedInput schema / properties / env
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "环境名。不传 revision 时必填:对比最新配置与该环境集群运行态",
+ "title": "Env"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/CompareApplicationInput"
-}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
addedInput schema / properties / revision
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "版本号。传入后以该版本为基准做对比",
+ "title": "Revision"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "app_name"
+]