OpenSearch/docs/reference/ccr
Martijn van Groningen b9707c29a1
[CCR] Change get autofollow patterns API response format (#36203)
The current response format is:

```
{
    "pattern1": {
        ...
    },
    "pattern2": {
        ...
    }
}
```

The new format is:

```
{
    "patterns": [
        {
            "name": "pattern1",
            "pattern": {
                ...
            }
        },
        {
            "name": "pattern2",
            "pattern": {
                ...
            }
        }
    ]
}
```

This format is more structured and more friendly for parsing and generating specs.
This is a breaking change, but it is better to do this now while ccr
is still a beta feature than later.

Follow up from #36049
2018-12-05 08:41:27 +01:00
..
apis [CCR] Change get autofollow patterns API response format (#36203) 2018-12-05 08:41:27 +01:00
auto-follow.asciidoc Provide links to auto-follow docs (#35674) 2018-11-19 20:40:58 -05:00
getting-started.asciidoc Provide links to auto-follow docs (#35674) 2018-11-19 20:40:58 -05:00
index.asciidoc Provide links to auto-follow docs (#35674) 2018-11-19 20:40:58 -05:00
overview.asciidoc Provide links to auto-follow docs (#35674) 2018-11-19 20:40:58 -05:00
requirements.asciidoc Introduce CCR overview (#35436) 2018-11-13 12:15:37 -05:00