You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Only perform the operation if the document has this primary term.
70
+
optionalint64if_primary_term=3;
71
+
72
+
// Only perform the operation if the document has this sequence number.
73
+
optionalint64if_seq_no=4;
74
+
75
+
// Set to create to only index the document if it does not already exist (put if absent). If a document with the specified `_id` already exists, the indexing operation will fail. Same as using the `<index>/_create` endpoint. Valid values: `index`, `create`. If document id is specified, it defaults to `index`. Otherwise, it defaults to `create`.
76
+
optionalOpTypeop_type=5;
77
+
78
+
// ID of the pipeline to use to preprocess incoming documents. If the index has a default ingest pipeline specified, then setting the value to `_none` disables the default ingest pipeline for this request. If a final pipeline is configured it will always run, regardless of the value of this parameter.
79
+
optionalstringpipeline=6;
80
+
81
+
// If `true`, OpenSearch refreshes the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` do nothing with refreshes. Valid values: `true`, `false`, `wait_for`.
82
+
optionalRefreshrefresh=7;
83
+
84
+
// If `true`, the destination must be an index alias.
85
+
optionalboolrequire_alias=8;
86
+
87
+
// A custom value used to route operations to a specific shard.
88
+
repeatedstringrouting=9;
89
+
90
+
// Period the request waits for the following operations: automatic index creation, dynamic mapping updates, waiting for active shards.
91
+
optionalstringtimeout=10;
92
+
93
+
// Explicit version number for concurrency control. The specified version must match the current version of the document for the request to succeed.
94
+
optionalint64version=11;
95
+
96
+
// The specific version type: `external`, `external_gte`.
97
+
optionalVersionTypeversion_type=12;
98
+
99
+
// The number of shard copies that must be active before proceeding with the operation. Set to all or any positive integer up to the total number of shards in the index (`number_of_replicas+1`).
// Indicates which source fields are returned for matching documents. These fields are returned in the `hits._source` property of the search response. Valid values are: `true` to return the entire document source; `false` to not return the document source; `<string>` to return the source fields that are specified as a comma-separated list (supports wildcard (`*`) patterns).
// Only perform the operation if the document has this primary term.
3184
+
optionalint64if_primary_term=3;
3185
+
3186
+
// Only perform the operation if the document has this sequence number.
3187
+
optionalint64if_seq_no=4;
3188
+
3189
+
// Set to create to only index the document if it does not already exist (put if absent). If a document with the specified `_id` already exists, the indexing operation will fail. Same as using the `<index>/_create` endpoint. Valid values: `index`, `create`. If document id is specified, it defaults to `index`. Otherwise, it defaults to `create`.
3190
+
optionalOpTypeop_type=5;
3191
+
3192
+
// ID of the pipeline to use to preprocess incoming documents. If the index has a default ingest pipeline specified, then setting the value to `_none` disables the default ingest pipeline for this request. If a final pipeline is configured it will always run, regardless of the value of this parameter.
3193
+
optionalstringpipeline=6;
3194
+
3195
+
// If `true`, OpenSearch refreshes the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` do nothing with refreshes. Valid values: `true`, `false`, `wait_for`.
3196
+
optionalRefreshrefresh=7;
3197
+
3198
+
// If `true`, the destination must be an index alias.
3199
+
optionalboolrequire_alias=8;
3200
+
3201
+
// A custom value used to route operations to a specific shard.
3202
+
repeatedstringrouting=9;
3203
+
3204
+
// Period the request waits for the following operations: automatic index creation, dynamic mapping updates, waiting for active shards.
3205
+
optionalstringtimeout=10;
3206
+
3207
+
// Explicit version number for concurrency control. The specified version must match the current version of the document for the request to succeed.
3208
+
optionalint64version=11;
3209
+
3210
+
// The specific version type: `external`, `external_gte`.
3211
+
optionalVersionTypeversion_type=12;
3212
+
3213
+
// The number of shard copies that must be active before proceeding with the operation. Set to all or any positive integer up to the total number of shards in the index (`number_of_replicas+1`).
0 commit comments