OpenSearch/docs/reference/ccr/apis/auto-follow
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
..
delete-auto-follow-pattern.asciidoc [DOCS] Adds more authorization info for CCR APIs (#35606) 2018-11-21 15:01:59 -08:00
get-auto-follow-pattern.asciidoc [CCR] Change get autofollow patterns API response format (#36203) 2018-12-05 08:41:27 +01:00
put-auto-follow-pattern.asciidoc [DOCS] Adds more authorization info for CCR APIs (#35606) 2018-11-21 15:01:59 -08:00