forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster._common.yaml
48 lines (48 loc) · 1.47 KB
/
cluster._common.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
openapi: 3.1.0
info:
title: Schemas of cluster._common category
description: Schemas of cluster._common category
version: 1.0.0
paths: {}
components:
schemas:
ComponentTemplate:
type: object
properties:
name:
$ref: '_common.yaml#/components/schemas/Name'
component_template:
$ref: '#/components/schemas/ComponentTemplateNode'
required:
- component_template
- name
ComponentTemplateNode:
type: object
properties:
template:
$ref: '#/components/schemas/ComponentTemplateSummary'
version:
$ref: '_common.yaml#/components/schemas/VersionNumber'
_meta:
$ref: '_common.yaml#/components/schemas/Metadata'
required:
- template
ComponentTemplateSummary:
type: object
properties:
_meta:
$ref: '_common.yaml#/components/schemas/Metadata'
version:
$ref: '_common.yaml#/components/schemas/VersionNumber'
settings:
type: object
additionalProperties:
$ref: 'indices._common.yaml#/components/schemas/IndexSettings'
mappings:
$ref: '_common.mapping.yaml#/components/schemas/TypeMapping'
aliases:
type: object
additionalProperties:
$ref: 'indices._common.yaml#/components/schemas/AliasDefinition'
lifecycle:
$ref: 'indices._common.yaml#/components/schemas/DataStreamLifecycleWithRollover'