Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 57 additions & 3 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions specification/ingest/_types/Pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ export class Pipeline {
* @availability serverless
*/
modified_date_millis?: EpochTime<UnitMillis>
/**
* Controls how processors in this pipeline should read and write data on a document's source.
* @server_default classic
* @availability stack since=9.2.0
* @availability serverless
*/
field_access_pattern?: FieldAccessPattern
}

// Unused .. but let's keep it for now
Expand Down Expand Up @@ -104,3 +111,8 @@ export class PipelineConfig {
*/
processors: ProcessorContainer[]
}

export enum FieldAccessPattern {
classic,
flexible
}
8 changes: 8 additions & 0 deletions specification/ingest/put_pipeline/PutPipelineRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import { RequestBase } from '@_types/Base'
import { Id, Metadata, VersionNumber } from '@_types/common'
import { Duration } from '@_types/Time'
import { FieldAccessPattern } from '@ingest/_types/Pipeline'
import { ProcessorContainer } from '@ingest/_types/Processors'

/**
Expand Down Expand Up @@ -86,5 +87,12 @@ export interface Request extends RequestBase {
* @server_default false
*/
deprecated?: boolean
/**
* Controls how processors in this pipeline should read and write data on a document's source.
* @server_default classic
* @availability stack since=9.2.0
* @availability serverless
*/
field_access_pattern?: FieldAccessPattern
}
}
Loading