From 8d998a321b54cbdb8493a72f26a6cf4ac8be56fa Mon Sep 17 00:00:00 2001 From: gchaps <33642766+gchaps@users.noreply.github.com> Date: Mon, 9 Nov 2020 10:16:36 -0800 Subject: [PATCH] [DOCS] Adds another plugin breaking change (#82990) (#82995) --- docs/migration/migrate_7_10.asciidoc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/migration/migrate_7_10.asciidoc b/docs/migration/migrate_7_10.asciidoc index a2d4eecbc68405..af8497eb87ba27 100644 --- a/docs/migration/migrate_7_10.asciidoc +++ b/docs/migration/migrate_7_10.asciidoc @@ -731,3 +731,26 @@ know about each plugin that wants to gain access *via https://github.com/elastic/kibana/pull/74357[#74357]* ==== + +[discrete] +[[breaking_plugin_v7.10.0_77327]] +.Settings per case per connector +[%collapsible] +==== + +- To create a case (`POST :/api/cases`), you must provide a `connector`. +Requests without a `connector` get a `400 Bad Request`. +- To update the connector of a case (`PATCH :/api/cases`), +you must provide the `connector`. The `connector_id` attribute has been +removed in favor of the `connector` attribute. +- To set the default connector (`POST :/api/cases/configure`), +you must provide a `connector`. The `connector_id` and `connector_name` +attributes have been removed in favor of the `connector` attribute. +- To update the connector’s case closure settings +(`PATCH :/api/cases/configure`), you must provide a `connector`. +The `connector_id` and `connector_name` attributes have been removed in +favor of the `connector` attribute. + +*via https://github.com/elastic/kibana/pull/77327[#77327]* + +====