Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added note for known typo #2369

Merged
merged 4 commits into from
Dec 13, 2023
Merged
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
5 changes: 4 additions & 1 deletion specification/indices/_types/DataStream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ enum ManagedBy {
/** @codegen_name ilm */
'Index Lifecycle Management',
/** @codegen_name datastream */
// This should have been written with capital letters, it's a known typo and should not be corrected,
// since the test cases have already been written.
'Data stream lifecycle',
/** @codegen_name unmanaged */
'Unmanaged'
Expand All @@ -42,7 +44,8 @@ export class DataStream {
/**
* Custom metadata for the stream, copied from the `_meta` object of the stream’s matching index template.
* If empty, the response omits this property.
* @doc_id mapping-meta-field */
* @doc_id mapping-meta-field
*/
_meta?: Metadata
/**
* If `true`, the data stream allows custom routing on write request.
Expand Down
Loading