diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index bc08077acc..38f569f3b8 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -62262,9 +62262,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 0b1225fa07..7cb25569b4 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -40819,9 +40819,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 aa73353020..e2787f2acf 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -97069,13 +97069,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 a608d04c46..a0d6f8a87e 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -132279,13 +132279,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 96a2906ea3..640c35278a 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -11582,7 +11582,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 {