mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-21 20:35:54 +00:00
Remove parent query string parameter (#41098)
This commit removes the deprecated parent query string parameter. The routing parameter should be used instead.
This commit is contained in:
parent
b7599472ac
commit
8f838198fa
@ -33,10 +33,6 @@
|
||||
"type" : "string",
|
||||
"description" : "Sets the number of shard copies that must be active before proceeding with the index operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)"
|
||||
},
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "ID of the parent document"
|
||||
},
|
||||
"refresh": {
|
||||
"type" : "enum",
|
||||
"options": ["true", "false", "wait_for"],
|
||||
|
@ -33,10 +33,6 @@
|
||||
"type" : "string",
|
||||
"description" : "Sets the number of shard copies that must be active before proceeding with the delete operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)"
|
||||
},
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "ID of parent document"
|
||||
},
|
||||
"refresh": {
|
||||
"type" : "enum",
|
||||
"options": ["true", "false", "wait_for"],
|
||||
|
@ -33,10 +33,6 @@
|
||||
"type": "list",
|
||||
"description" : "A comma-separated list of stored fields to return in the response"
|
||||
},
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "The ID of the parent document"
|
||||
},
|
||||
"preference": {
|
||||
"type" : "string",
|
||||
"description" : "Specify the node or shard the operation should be performed on (default: random)"
|
||||
|
@ -30,10 +30,6 @@
|
||||
}
|
||||
},
|
||||
"params": {
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "The ID of the parent document"
|
||||
},
|
||||
"preference": {
|
||||
"type" : "string",
|
||||
"description" : "Specify the node or shard the operation should be performed on (default: random)"
|
||||
|
@ -55,10 +55,6 @@
|
||||
"type" : "boolean",
|
||||
"description" : "Specify whether format-based query failures (such as providing text to a numeric field) should be ignored"
|
||||
},
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "The ID of the parent document"
|
||||
},
|
||||
"preference": {
|
||||
"type" : "string",
|
||||
"description" : "Specify the node or shard the operation should be performed on (default: random)"
|
||||
|
@ -33,10 +33,6 @@
|
||||
"type": "list",
|
||||
"description" : "A comma-separated list of stored fields to return in the response"
|
||||
},
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "The ID of the parent document"
|
||||
},
|
||||
"preference": {
|
||||
"type" : "string",
|
||||
"description" : "Specify the node or shard the operation should be performed on (default: random)"
|
||||
|
@ -30,10 +30,6 @@
|
||||
}
|
||||
},
|
||||
"params": {
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "The ID of the parent document"
|
||||
},
|
||||
"preference": {
|
||||
"type" : "string",
|
||||
"description" : "Specify the node or shard the operation should be performed on (default: random)"
|
||||
|
@ -43,10 +43,6 @@
|
||||
"default" : "index",
|
||||
"description" : "Explicit operation type"
|
||||
},
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "ID of the parent document"
|
||||
},
|
||||
"refresh": {
|
||||
"type" : "enum",
|
||||
"options": ["true", "false", "wait_for"],
|
||||
|
@ -73,11 +73,6 @@
|
||||
"description" : "Specific routing value. Applies to all returned documents unless otherwise specified in body \"params\" or \"docs\".",
|
||||
"required" : false
|
||||
},
|
||||
"parent" : {
|
||||
"type" : "string",
|
||||
"description" : "Parent id of documents. Applies to all returned documents unless otherwise specified in body \"params\" or \"docs\".",
|
||||
"required" : false
|
||||
},
|
||||
"realtime": {
|
||||
"type": "boolean",
|
||||
"description": "Specifies if requests are real-time as opposed to near-real-time (default: true).",
|
||||
|
@ -79,11 +79,6 @@
|
||||
"description" : "Specific routing value.",
|
||||
"required" : false
|
||||
},
|
||||
"parent": {
|
||||
"type" : "string",
|
||||
"description" : "Parent id of documents.",
|
||||
"required" : false
|
||||
},
|
||||
"realtime": {
|
||||
"type": "boolean",
|
||||
"description": "Specifies if request is real-time as opposed to near-real-time (default: true).",
|
||||
|
@ -49,10 +49,6 @@
|
||||
"type": "string",
|
||||
"description": "The script language (default: painless)"
|
||||
},
|
||||
"parent": {
|
||||
"type": "string",
|
||||
"description": "ID of the parent document. Is is only used for routing and when for the upsert request"
|
||||
},
|
||||
"refresh": {
|
||||
"type" : "enum",
|
||||
"options": ["true", "false", "wait_for"],
|
||||
|
Loading…
x
Reference in New Issue
Block a user