Auto-generated code for 8.15 (#2472)
This commit is contained in:
@ -1,11 +0,0 @@
|
|||||||
// This file is autogenerated, DO NOT EDIT
|
|
||||||
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
||||||
|
|
||||||
[source, js]
|
|
||||||
----
|
|
||||||
const response = await client.transport.request({
|
|
||||||
method: "DELETE",
|
|
||||||
path: "/_ingest/geoip/database/my-database-id",
|
|
||||||
});
|
|
||||||
console.log(response);
|
|
||||||
----
|
|
||||||
@ -5,7 +5,7 @@
|
|||||||
----
|
----
|
||||||
const response = await client.ingest.putPipeline({
|
const response = await client.ingest.putPipeline({
|
||||||
id: "geoip",
|
id: "geoip",
|
||||||
description: "Add geoip info",
|
description: "Add ip geolocation info",
|
||||||
processors: [
|
processors: [
|
||||||
{
|
{
|
||||||
geoip: {
|
geoip: {
|
||||||
@ -5,7 +5,7 @@
|
|||||||
----
|
----
|
||||||
const response = await client.ingest.putPipeline({
|
const response = await client.ingest.putPipeline({
|
||||||
id: "geoip",
|
id: "geoip",
|
||||||
description: "Add geoip info",
|
description: "Add ip geolocation info",
|
||||||
processors: [
|
processors: [
|
||||||
{
|
{
|
||||||
geoip: {
|
geoip: {
|
||||||
@ -1,11 +0,0 @@
|
|||||||
// This file is autogenerated, DO NOT EDIT
|
|
||||||
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
||||||
|
|
||||||
[source, js]
|
|
||||||
----
|
|
||||||
const response = await client.transport.request({
|
|
||||||
method: "GET",
|
|
||||||
path: "/_ingest/geoip/database/my-database-id",
|
|
||||||
});
|
|
||||||
console.log(response);
|
|
||||||
----
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
// This file is autogenerated, DO NOT EDIT
|
|
||||||
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
||||||
|
|
||||||
[source, js]
|
|
||||||
----
|
|
||||||
const response = await client.transport.request({
|
|
||||||
method: "DELETE",
|
|
||||||
path: "/_ingest/geoip/database/example-database-id",
|
|
||||||
});
|
|
||||||
console.log(response);
|
|
||||||
----
|
|
||||||
@ -4,7 +4,7 @@
|
|||||||
[source, js]
|
[source, js]
|
||||||
----
|
----
|
||||||
const response = await client.security.putRole({
|
const response = await client.security.putRole({
|
||||||
name: "role_with_remote_indices",
|
name: "only_remote_access_role",
|
||||||
remote_indices: [
|
remote_indices: [
|
||||||
{
|
{
|
||||||
clusters: ["my_remote"],
|
clusters: ["my_remote"],
|
||||||
@ -12,6 +12,12 @@ const response = await client.security.putRole({
|
|||||||
privileges: ["read", "read_cross_cluster", "view_index_metadata"],
|
privileges: ["read", "read_cross_cluster", "view_index_metadata"],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
remote_cluster: [
|
||||||
|
{
|
||||||
|
clusters: ["my_remote"],
|
||||||
|
privileges: ["monitor_stats"],
|
||||||
|
},
|
||||||
|
],
|
||||||
});
|
});
|
||||||
console.log(response);
|
console.log(response);
|
||||||
----
|
----
|
||||||
34
docs/doc_examples/7f1fade93225f8cf6000b93334d76ce4.asciidoc
Normal file
34
docs/doc_examples/7f1fade93225f8cf6000b93334d76ce4.asciidoc
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.ingest.putPipeline({
|
||||||
|
id: "ip_location",
|
||||||
|
description: "Add ip geolocation info",
|
||||||
|
processors: [
|
||||||
|
{
|
||||||
|
ip_location: {
|
||||||
|
field: "ip",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
|
||||||
|
const response1 = await client.index({
|
||||||
|
index: "my-index-000001",
|
||||||
|
id: "my_id",
|
||||||
|
pipeline: "ip_location",
|
||||||
|
document: {
|
||||||
|
ip: "80.231.5.0",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.log(response1);
|
||||||
|
|
||||||
|
const response2 = await client.get({
|
||||||
|
index: "my-index-000001",
|
||||||
|
id: "my_id",
|
||||||
|
});
|
||||||
|
console.log(response2);
|
||||||
|
----
|
||||||
13
docs/doc_examples/9313f534e1aa266cde7d4af74665497f.asciidoc
Normal file
13
docs/doc_examples/9313f534e1aa266cde7d4af74665497f.asciidoc
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.connector.put({
|
||||||
|
connector_id: "my-{service-name-stub}-connector",
|
||||||
|
index_name: "my-elasticsearch-index",
|
||||||
|
name: "Content synced from {service-name}",
|
||||||
|
service_type: "{service-name-stub}",
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
----
|
||||||
34
docs/doc_examples/a3779f21f132787c48681bfb50453592.asciidoc
Normal file
34
docs/doc_examples/a3779f21f132787c48681bfb50453592.asciidoc
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.ingest.putPipeline({
|
||||||
|
id: "ip_location",
|
||||||
|
description: "Add ip geolocation info",
|
||||||
|
processors: [
|
||||||
|
{
|
||||||
|
ip_location: {
|
||||||
|
field: "ip",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
|
||||||
|
const response1 = await client.index({
|
||||||
|
index: "my-index-000001",
|
||||||
|
id: "my_id",
|
||||||
|
pipeline: "ip_location",
|
||||||
|
document: {
|
||||||
|
ip: "89.160.20.128",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.log(response1);
|
||||||
|
|
||||||
|
const response2 = await client.get({
|
||||||
|
index: "my-index-000001",
|
||||||
|
id: "my_id",
|
||||||
|
});
|
||||||
|
console.log(response2);
|
||||||
|
----
|
||||||
14
docs/doc_examples/ae3473adaf1515afcf7773f26c018e5c.asciidoc
Normal file
14
docs/doc_examples/ae3473adaf1515afcf7773f26c018e5c.asciidoc
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.connector.put({
|
||||||
|
connector_id: "my-{service-name-stub}-connector",
|
||||||
|
index_name: "my-elasticsearch-index",
|
||||||
|
name: "Content synced from {service-name}",
|
||||||
|
service_type: "{service-name-stub}",
|
||||||
|
is_native: true,
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
----
|
||||||
@ -5,7 +5,7 @@
|
|||||||
----
|
----
|
||||||
const response = await client.ingest.putPipeline({
|
const response = await client.ingest.putPipeline({
|
||||||
id: "geoip",
|
id: "geoip",
|
||||||
description: "Add geoip info",
|
description: "Add ip geolocation info",
|
||||||
processors: [
|
processors: [
|
||||||
{
|
{
|
||||||
geoip: {
|
geoip: {
|
||||||
@ -4,12 +4,11 @@
|
|||||||
[source, js]
|
[source, js]
|
||||||
----
|
----
|
||||||
const response = await client.transport.request({
|
const response = await client.transport.request({
|
||||||
method: "PUT",
|
method: "POST",
|
||||||
path: "/_ingest/geoip/database/my-database-id",
|
path: "/_query_rules/my-ruleset/_test",
|
||||||
body: {
|
body: {
|
||||||
name: "GeoIP2-Domain",
|
match_criteria: {
|
||||||
maxmind: {
|
query_string: "puggles",
|
||||||
account_id: "1025402",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
36
docs/doc_examples/e308899a306e61d1a590868308689955.asciidoc
Normal file
36
docs/doc_examples/e308899a306e61d1a590868308689955.asciidoc
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.ingest.putPipeline({
|
||||||
|
id: "ip_location",
|
||||||
|
description: "Add ip geolocation info",
|
||||||
|
processors: [
|
||||||
|
{
|
||||||
|
ip_location: {
|
||||||
|
field: "ip",
|
||||||
|
target_field: "geo",
|
||||||
|
database_file: "GeoLite2-Country.mmdb",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
|
||||||
|
const response1 = await client.index({
|
||||||
|
index: "my-index-000001",
|
||||||
|
id: "my_id",
|
||||||
|
pipeline: "ip_location",
|
||||||
|
document: {
|
||||||
|
ip: "89.160.20.128",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.log(response1);
|
||||||
|
|
||||||
|
const response2 = await client.get({
|
||||||
|
index: "my-index-000001",
|
||||||
|
id: "my_id",
|
||||||
|
});
|
||||||
|
console.log(response2);
|
||||||
|
----
|
||||||
Reference in New Issue
Block a user