summaryrefslogtreecommitdiff
path: root/rest-api-spec/test/indices.create/10_basic.yaml
blob: 2cb979b8afbc85d67354d2c6d5dc8b116de2c15d (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
"Create index with mappings":

  - do:
      indices.create:
        index: test_index
        body:
          mappings:
            type_1: {}

  - do:
      indices.get_mapping:
        index: test_index

  - match: { test_index.mappings.type_1.properties: {}}

---
"Create index with settings":

  - do:
      indices.create:
        index: test_index
        body:
          settings:
            number_of_replicas: "0"

  - do:
      indices.get_settings:
        index: test_index

  - match: { test_index.settings.index.number_of_replicas: "0"}

---
"Create index with warmers":

  - do:
      indices.create:
        index: test_index
        body:
          warmers:
            test_warmer:
              source:
                query:
                  match_all: {}

  - do:
      indices.get_warmer:
        index: test_index

  - match: {test_index.warmers.test_warmer.source.query.match_all: {}}

---
"Create index with mappings, settings and warmers":

  - do:
      indices.create:
        index: test_index
        body:
          mappings:
            type_1: {}
          settings:
            number_of_replicas: "0"
          warmers:
            test_warmer:
              source:
                query:
                  match_all: {}

  - do:
      indices.get_mapping:
        index: test_index

  - match: { test_index.mappings.type_1.properties: {}}

  - do:
      indices.get_settings:
        index: test_index

  - match: { test_index.settings.index.number_of_replicas: "0"}

  - do:
      indices.get_warmer:
        index: test_index

  - match: { test_index.warmers.test_warmer.source.query.match_all: {}}