OpenSearch/docs/reference/ccr/apis
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
..
auto-follow [CCR] Change get autofollow patterns API response format (#36203) 2018-12-05 08:41:27 +01:00
follow [DOCS] Adds more authorization info for CCR APIs (#35606) 2018-11-21 15:01:59 -08:00
ccr-apis.asciidoc Mark CCR as beta in the docs 2018-11-10 14:38:22 -05:00
follow-request-body.asciidoc Introduce cross-cluster replication API docs (#34726) 2018-10-26 11:23:35 -04:00
get-ccr-stats.asciidoc [TEST] escape brackets 2018-11-22 14:58:42 +01:00