forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindices.resolve_index.yaml
49 lines (49 loc) · 1.24 KB
/
indices.resolve_index.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
openapi: 3.1.0
info:
title: Schemas of indices.resolve_index category
description: Schemas of indices.resolve_index category
version: 1.0.0
paths: {}
components:
schemas:
ResolveIndexItem:
type: object
properties:
name:
$ref: '_common.yaml#/components/schemas/Name'
aliases:
type: array
items:
type: string
attributes:
type: array
items:
type: string
data_stream:
$ref: '_common.yaml#/components/schemas/DataStreamName'
required:
- attributes
- name
ResolveIndexAliasItem:
type: object
properties:
name:
$ref: '_common.yaml#/components/schemas/Name'
indices:
$ref: '_common.yaml#/components/schemas/Indices'
required:
- indices
- name
ResolveIndexDataStreamsItem:
type: object
properties:
name:
$ref: '_common.yaml#/components/schemas/DataStreamName'
timestamp_field:
$ref: '_common.yaml#/components/schemas/Field'
backing_indices:
$ref: '_common.yaml#/components/schemas/Indices'
required:
- backing_indices
- name
- timestamp_field