Skip to content

Commit d48c110

Browse files
committed
[DOCS] Updates generated docs
1 parent b076a3e commit d48c110

26 files changed

+262
-288
lines changed

docs/examples/guide/197dc41c8df9629e145b3064c63b2ccc.asciidoc

-37
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[source, ruby]
2+
----
3+
response = client.indices.create(
4+
index: 'idx',
5+
body: {
6+
mappings: {
7+
_source: {
8+
mode: 'synthetic'
9+
},
10+
properties: {
11+
my_range: {
12+
type: 'ip_range'
13+
}
14+
}
15+
}
16+
}
17+
)
18+
puts response
19+
20+
response = client.index(
21+
index: 'idx',
22+
id: 1,
23+
body: {
24+
my_range: [
25+
'10.0.0.0/24',
26+
{
27+
gte: '10.0.0.0',
28+
lte: '10.0.0.255'
29+
}
30+
]
31+
}
32+
)
33+
puts response
34+
----

docs/examples/guide/2212167f67b7ad1cd2b8dcec083d09ea.asciidoc

-7
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[source, ruby]
2+
----
3+
response = client.synonyms.delete_synonym(
4+
id: 'my-synonyms-set'
5+
)
6+
puts response
7+
----

docs/examples/guide/394d8fc4d78214e6fe5e4dea62c8923f.asciidoc

-41
This file was deleted.

docs/examples/guide/3f3b3e207f79303ce6f86e03e928e062.asciidoc

-8
This file was deleted.

docs/examples/guide/7c2b45de463c8c5a06e933b1793b584b.asciidoc docs/examples/guide/443e8da9968f1c65f46a2a65a1e1e078.asciidoc

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
[source, ruby]
22
----
3-
response = client.cluster.put_component_template(
4-
name: 'my-weather-sensor-mappings',
3+
response = client.indices.put_index_template(
4+
name: 'my-weather-sensor-index-template',
55
body: {
6+
index_patterns: [
7+
'metrics-weather_sensors-*'
8+
],
9+
data_stream: {},
610
template: {
11+
settings: {
12+
'index.mode' => 'time_series',
13+
'index.lifecycle.name' => 'my-lifecycle-policy'
14+
},
715
mappings: {
816
properties: {
917
sensor_id: {
@@ -23,14 +31,14 @@ response = client.cluster.put_component_template(
2331
time_series_metric: 'gauge'
2432
},
2533
"@timestamp": {
26-
type: 'date',
27-
format: 'strict_date_optional_time'
34+
type: 'date'
2835
}
2936
}
3037
}
3138
},
39+
priority: 500,
3240
_meta: {
33-
description: 'Mappings for weather sensor data'
41+
description: 'Template for my weather sensor data'
3442
}
3543
}
3644
)

docs/examples/guide/9949bcc64c9cd6f4041819546d7fce78.asciidoc docs/examples/guide/4479e8c63a04fa22207a6a8803eadcad.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
response = client.cluster.put_settings(
44
body: {
55
persistent: {
6-
'cluster.remote.cluster_two.skip_unavailable' => true
6+
'cluster.routing.allocation.awareness.attributes' => 'rack_id'
77
}
88
}
99
)

docs/examples/guide/50d36787601ebba01fc6266abe3bd415.asciidoc

-17
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[source, ruby]
2+
----
3+
response = client.indices.create(
4+
index: 'idx',
5+
body: {
6+
mappings: {
7+
_source: {
8+
mode: 'synthetic'
9+
},
10+
properties: {
11+
binary: {
12+
type: 'binary',
13+
doc_values: true
14+
}
15+
}
16+
}
17+
}
18+
)
19+
puts response
20+
21+
response = client.index(
22+
index: 'idx',
23+
id: 1,
24+
body: {
25+
binary: [
26+
'IAA=',
27+
'EAA='
28+
]
29+
}
30+
)
31+
puts response
32+
----

docs/examples/guide/53c6256295111524d5ff2885bdcb99a9.asciidoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[source, ruby]
22
----
3-
response = client.indices.get(
4-
index: '_transform',
3+
response = client.transform.get_transform(
4+
transform_id: '_stats',
55
from: 5,
66
size: 10
77
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[source, ruby]
2+
----
3+
response = client.indices.create(
4+
index: 'idx',
5+
body: {
6+
mappings: {
7+
_source: {
8+
mode: 'synthetic'
9+
},
10+
properties: {
11+
my_range: {
12+
type: 'long_range'
13+
}
14+
}
15+
}
16+
}
17+
)
18+
puts response
19+
20+
response = client.index(
21+
index: 'idx',
22+
id: 1,
23+
body: {
24+
my_range: {
25+
gt: 200,
26+
lt: 300
27+
}
28+
}
29+
)
30+
puts response
31+
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[source, ruby]
2+
----
3+
response = client.search(
4+
body: {
5+
aggregations: {
6+
ignored_fields: {
7+
terms: {
8+
field: '_ignored'
9+
}
10+
}
11+
}
12+
}
13+
)
14+
puts response
15+
----

docs/examples/guide/75e229852d1404040bb2e83723c0f1db.asciidoc

-14
This file was deleted.

docs/examples/guide/90112d594b934c0111b7303b9f91cb7f.asciidoc

-12
This file was deleted.

docs/examples/guide/98f83f0dc4634e108ab0db6db347b2c7.asciidoc

-7
This file was deleted.

docs/examples/guide/c0220f749b260889bebc567533a01c3f.asciidoc

-7
This file was deleted.

0 commit comments

Comments
 (0)