diff --git a/packages/grafana-openapi/src/api/openapi3.json b/packages/grafana-openapi/src/api/openapi3.json index f979f541781..97fc58fc681 100644 --- a/packages/grafana-openapi/src/api/openapi3.json +++ b/packages/grafana-openapi/src/api/openapi3.json @@ -3279,12 +3279,6 @@ }, "BacktestConfig": { "properties": { - "annotations": { - "additionalProperties": { - "type": "string" - }, - "type": "object" - }, "condition": { "type": "string" }, @@ -3294,8 +3288,12 @@ }, "type": "array" }, + "exec_err_state": { + "enum": ["OK", "Alerting", "Error"], + "type": "string" + }, "for": { - "$ref": "#/components/schemas/Duration" + "type": "string" }, "from": { "format": "date-time", @@ -3304,22 +3302,38 @@ "interval": { "$ref": "#/components/schemas/Duration" }, + "keep_firing_for": { + "type": "string" + }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, + "missing_series_evals_to_resolve": { + "format": "int64", + "type": "integer" + }, + "namespace_uid": { + "type": "string" + }, "no_data_state": { "enum": ["Alerting", "NoData", "OK"], "type": "string" }, + "rule_group": { + "type": "string" + }, "title": { "type": "string" }, "to": { "format": "date-time", "type": "string" + }, + "uid": { + "type": "string" } }, "type": "object" @@ -6177,6 +6191,12 @@ "interval": { "$ref": "#/components/schemas/Duration" }, + "labels": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, "limit": { "format": "int64", "type": "integer" @@ -6187,6 +6207,12 @@ "query_offset": { "type": "string" }, + "remote_write": { + "items": { + "$ref": "#/components/schemas/RemoteWriteConfig" + }, + "type": "array" + }, "rules": { "items": { "$ref": "#/components/schemas/GettableExtendedRuleNode" @@ -8619,6 +8645,12 @@ "interval": { "$ref": "#/components/schemas/Duration" }, + "labels": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, "limit": { "format": "int64", "type": "integer" @@ -8629,6 +8661,12 @@ "query_offset": { "type": "string" }, + "remote_write": { + "items": { + "$ref": "#/components/schemas/RemoteWriteConfig" + }, + "type": "array" + }, "rules": { "items": { "$ref": "#/components/schemas/PostableExtendedRuleNode" @@ -9653,6 +9691,14 @@ }, "type": "object" }, + "RemoteWriteConfig": { + "properties": { + "url": { + "type": "string" + } + }, + "type": "object" + }, "Report": { "properties": { "created": { @@ -10329,6 +10375,12 @@ "interval": { "$ref": "#/components/schemas/Duration" }, + "labels": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, "limit": { "format": "int64", "type": "integer" @@ -10339,6 +10391,12 @@ "query_offset": { "type": "string" }, + "remote_write": { + "items": { + "$ref": "#/components/schemas/RemoteWriteConfig" + }, + "type": "array" + }, "rules": { "items": { "$ref": "#/components/schemas/GettableExtendedRuleNode" diff --git a/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2alpha1.json b/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2alpha1.json index 8b4cba148a6..177851e372c 100644 --- a/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2alpha1.json +++ b/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2alpha1.json @@ -1609,6 +1609,10 @@ "skipUrlSync": { "type": "boolean", "default": false + }, + "valuesFormat": { + "enum": ["csv", "json"], + "type": "string" } }, "additionalProperties": false diff --git a/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2beta1.json b/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2beta1.json index 3ecfa6789ae..f438601f07f 100644 --- a/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2beta1.json +++ b/packages/grafana-openapi/src/apis/dashboard.grafana.app-v2beta1.json @@ -1622,6 +1622,10 @@ "skipUrlSync": { "type": "boolean", "default": false + }, + "valuesFormat": { + "type": "string", + "enum": ["csv", "json"] } }, "additionalProperties": false