Class DocumentExistsRequest
Request for DocumentExists
https://opensearch.org/docs/latest/api-reference/document-apis/get-documents/
Inheritance
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public class DocumentExistsRequest : PlainRequestBase<DocumentExistsRequestParameters>, IDocumentExistsRequest, IRequest<DocumentExistsRequestParameters>, IRequest
Constructors
| Edit this page View SourceDocumentExistsRequest()
Used for serialization purposes, making sure we have a parameterless constructor
Declaration
protected DocumentExistsRequest()
DocumentExistsRequest(IndexName, Id)
/{index}/_doc/{id}
Declaration
public DocumentExistsRequest(IndexName index, Id id)
Parameters
Type | Name | Description |
---|---|---|
IndexName | index | this parameter is required |
Id | id | this parameter is required |
Properties
| Edit this page View SourcePreference
Specifies the node or shard the operation should be performed on. Random by default.
Declaration
public string Preference { get; set; }
Property Value
Type | Description |
---|---|
string |
Realtime
If true
, the request is real-time as opposed to near-real-time.
Declaration
public bool? Realtime { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Refresh
If true
, OpenSearch refreshes all shards involved in the delete by query after the request completes.
Declaration
public Refresh? Refresh { get; set; }
Property Value
Type | Description |
---|---|
Refresh? |
Routing
A document is routed to a particular shard in an index using the following formula
shard_num = hash(_routing) % num_primary_shards
OpenSearch will use the document id if not provided.
For requests that are constructed from/for a document OpenSearch.Client will automatically infer the routing key if that document has a JoinField or a routing mapping on for its type exists on ConnectionSettings
Declaration
public Routing Routing { get; set; }
Property Value
Type | Description |
---|---|
Routing |
Self
Declaration
protected IDocumentExistsRequest Self { get; }
Property Value
Type | Description |
---|---|
IDocumentExistsRequest |
SourceEnabled
Whether the _source should be included in the response.
Declaration
public bool? SourceEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? |
SourceExcludes
A comma-separated list of source fields to exclude in the response.
Declaration
public Fields SourceExcludes { get; set; }
Property Value
Type | Description |
---|---|
Fields |
SourceIncludes
A comma-separated list of source fields to include in the response.
Declaration
public Fields SourceIncludes { get; set; }
Property Value
Type | Description |
---|---|
Fields |
StoredFields
List of stored fields to return as part of a hit. If no fields are specified, no stored fields are included in the response. If this field
is specified, the _source
parameter defaults to false.
Declaration
public Fields StoredFields { get; set; }
Property Value
Type | Description |
---|---|
Fields |
Version
Explicit version number for concurrency control. The specified version must match the current version of the document for the request to succeed.
Declaration
public long? Version { get; set; }
Property Value
Type | Description |
---|---|
long? |
VersionType
Specific version type: external
, external_gte
.
Declaration
public VersionType? VersionType { get; set; }
Property Value
Type | Description |
---|---|
VersionType? |