diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 05d5354c05..4c3d312d73 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -62340,9 +62340,9 @@ "indices._types:SourceMode": { "type": "string", "enum": [ - "DISABLED", - "STORED", - "SYNTHETIC" + "disabled", + "stored", + "synthetic" ] }, "indices._types:IndexingSlowlogSettings": { diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 2de176d418..85f6ed4d79 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -40826,9 +40826,9 @@ "indices._types:SourceMode": { "type": "string", "enum": [ - "DISABLED", - "STORED", - "SYNTHETIC" + "disabled", + "stored", + "synthetic" ] }, "indices._types:IndexingSlowlogSettings": { diff --git a/output/schema/schema-serverless.json b/output/schema/schema-serverless.json index fb123a0753..59a08ed1ea 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -96916,13 +96916,13 @@ "kind": "enum", "members": [ { - "name": "DISABLED" + "name": "disabled" }, { - "name": "STORED" + "name": "stored" }, { - "name": "SYNTHETIC" + "name": "synthetic" } ], "name": { diff --git a/output/schema/schema.json b/output/schema/schema.json index fbb822d60c..4fe2bac714 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -132172,13 +132172,13 @@ "kind": "enum", "members": [ { - "name": "DISABLED" + "name": "disabled" }, { - "name": "STORED" + "name": "stored" }, { - "name": "SYNTHETIC" + "name": "synthetic" } ], "name": { diff --git a/output/typescript/types.ts b/output/typescript/types.ts index 6c1ddc4f0d..ab90921793 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -11570,7 +11570,7 @@ export interface IndicesSoftDeletes { retention_lease?: IndicesRetentionLease } -export type IndicesSourceMode = 'DISABLED' | 'STORED' | 'SYNTHETIC' +export type IndicesSourceMode = 'disabled' | 'stored' | 'synthetic' export interface IndicesStorage { type: IndicesStorageType diff --git a/specification/indices/_types/IndexSettings.ts b/specification/indices/_types/IndexSettings.ts index 92f7ceba17..03bd00bbad 100644 --- a/specification/indices/_types/IndexSettings.ts +++ b/specification/indices/_types/IndexSettings.ts @@ -501,9 +501,9 @@ export class MappingLimitSettingsSourceFields { } export enum SourceMode { - DISABLED, - STORED, - SYNTHETIC + disabled, + stored, + synthetic } export class SlowlogSettings {