Skip to content

Commit ec92582

Browse files
committed
Run make contrib
1 parent 1811711 commit ec92582

File tree

4 files changed

+45
-15
lines changed

4 files changed

+45
-15
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 16 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/indices/downsample/Request.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
* under the License.
1818
*/
1919

20-
import { RequestBase } from "@_types/Base";
21-
import { IndexName } from "@_types/common";
22-
import { DownsampleConfig } from "@indices/_types/Downsample";
20+
import { RequestBase } from '@_types/Base'
21+
import { IndexName } from '@_types/common'
22+
import { DownsampleConfig } from '@indices/_types/Downsample'
2323

2424
/**
2525
* Downsample an index.
@@ -44,20 +44,20 @@ import { DownsampleConfig } from "@indices/_types/Downsample";
4444
export interface Request extends RequestBase {
4545
urls: [
4646
{
47-
path: "/{index}/_downsample/{target_index}";
48-
methods: ["POST"];
49-
},
50-
];
47+
path: '/{index}/_downsample/{target_index}'
48+
methods: ['POST']
49+
}
50+
]
5151
path_parts: {
5252
/**
5353
* Name of the time series index to downsample.
5454
*/
55-
index: IndexName;
55+
index: IndexName
5656
/**
5757
* Name of the index to create.
5858
*/
59-
target_index: IndexName;
60-
};
59+
target_index: IndexName
60+
}
6161
/** @codegen_name config */
62-
body: DownsampleConfig;
62+
body: DownsampleConfig
6363
}

0 commit comments

Comments
 (0)