Skip to content

Commit a04602e

Browse files
Address review comments
1 parent 2db9e26 commit a04602e

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 2 additions & 2 deletions
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: 2 additions & 2 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: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_doc_ids/table.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ point-in-time-api,https://www.elastic.co/docs/api/doc/elasticsearch/operation/op
522522
prevalidate-node-removal,https://www.elastic.co/docs/api/doc/elasticsearch/group/endpoint-cluster,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/cluster.html,
523523
preview-dfanalytics,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ml-preview-data-frame-analytics,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/preview-dfanalytics.html,
524524
preview-transform,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-transform-preview-transform,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/preview-transform.html,
525-
project-tags,todo,,
525+
project-tags,,,
526526
put-analytics-collection,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search-application-put-behavioral-analytics,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/put-analytics-collection.html,
527527
put-dfanalytics,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ml-put-data-frame-analytics,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/put-dfanalytics.html,
528528
put-enrich-policy-api,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-enrich-put-policy,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/put-enrich-policy-api.html,

specification/project/tags/TagsRequest.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ import { RequestBase } from '@_types/Base'
2626
* @cluster_privileges monitor
2727
*/
2828
export interface Request extends RequestBase {
29-
urls: [
30-
{
31-
path: '/_project/tags'
32-
methods: ['GET']
33-
}
34-
]
29+
urls: [
30+
{
31+
path: '/_project/tags'
32+
methods: ['GET']
33+
}
34+
]
3535
}

specification/project/tags/TagsResponse.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ import { Dictionary, SingleKeyDictionary } from '@spec_utils/Dictionary'
2525
* @behavior_meta AdditionalProperties fieldname=user_defined_tags description="Additional tags defined by user."
2626
*/
2727
class Tags implements AdditionalProperties<string, string> {
28-
_id: string
29-
_alias: string
30-
_type: string
31-
_organisation: string
28+
_id: string
29+
_alias: string
30+
_type: string
31+
_organisation: string
3232
}
3333

3434
class ProjectTags {
35-
origin: SingleKeyDictionary<string, Tags>
36-
linked_projects?: Dictionary<string, Tags>
35+
origin: SingleKeyDictionary<string, Tags>
36+
linked_projects?: Dictionary<string, Tags>
3737
}
3838

3939
export class Response {
40-
/**
41-
* @codegen_name project-tags
42-
*/
43-
body: ProjectTags
40+
/**
41+
* @codegen_name project_tags
42+
*/
43+
body: ProjectTags
4444
}

specification/project/tags/examples/response/ProjectTagsResponseExample1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
summary: Porject tags
1+
summary: Project tags
22
description: A successful response from `GET /_project/tags`
33
# type: response
44
# response_code: 200

0 commit comments

Comments
 (0)