diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 8f6ab9a711..795406fb12 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -61830,9 +61830,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 07cfd255df..66335414f0 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -40667,9 +40667,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 875c444a0b..5b54d28ea9 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -96029,13 +96029,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 f1c41d1d4c..3917103c29 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -131438,13 +131438,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 dda32baf36..c9453d8e8d 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -11527,7 +11527,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 038ea7617b..b2d19a6ec2 100644 --- a/specification/indices/_types/IndexSettings.ts +++ b/specification/indices/_types/IndexSettings.ts @@ -499,9 +499,9 @@ export class MappingLimitSettingsSourceFields { } export enum SourceMode { - disabled, - stored, - synthetic + DISABLED, + STORED, + SYNTHETIC } export class SlowlogSettings {