Skip to content

Commit f827513

Browse files
committed
adding effective_settings
1 parent 9b9b141 commit f827513

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

specification/indices/get_data_stream_settings/IndicesGetDataStreamSettingsResponse.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,11 @@ export class Response {
2929
export class DataStreamSettings {
3030
/** The name of the data stream. */
3131
name: string
32+
/** The settings specific to this data stream */
3233
settings: IndexSettings
34+
/**
35+
* The settings specific to this data stream merged with the settings from its template. These `effective_settings`
36+
* are the settings that will be used when a new index is created for this data stream.
37+
*/
38+
effective_settings: IndexSettings
3339
}

specification/indices/put_data_stream_settings/IndicesPutDataStreamSettingsResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class DataStreamSettings {
4545
settings: IndexSettings
4646
/**
4747
* The settings that are effective on this data stream, taking into account the settings from the matching index
48-
* template and the settings specfic to this data stream.
48+
* template and the settings specific to this data stream.
4949
*/
5050
effective_settings: IndexSettings
5151
/**

0 commit comments

Comments
 (0)