File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/Nest/Document/Multiple/Bulk/BulkOperation Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,17 @@ public interface IBulkOperation
20
20
[ JsonProperty ( "_id" ) ]
21
21
Id Id { get ; set ; }
22
22
23
- [ JsonProperty ( "_version " ) ]
23
+ [ JsonProperty ( "version " ) ]
24
24
long ? Version { get ; set ; }
25
25
26
- [ JsonProperty ( "_version_type " ) ]
26
+ [ JsonProperty ( "version_type " ) ]
27
27
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
28
28
VersionType ? VersionType { get ; set ; }
29
29
30
- [ JsonProperty ( "_routing " ) ]
30
+ [ JsonProperty ( "routing " ) ]
31
31
string Routing { get ; set ; }
32
32
33
- [ JsonProperty ( "_parent " ) ]
33
+ [ JsonProperty ( "parent " ) ]
34
34
Id Parent { get ; set ; }
35
35
36
36
[ JsonProperty ( "_timestamp" ) ]
@@ -41,7 +41,7 @@ public interface IBulkOperation
41
41
[ Obsolete ( "This feature is no longer supported on indices created in Elasticsearch 5.0.0 and up" ) ]
42
42
Time Ttl { get ; set ; }
43
43
44
- [ JsonProperty ( "_retry_on_conflict " ) ]
44
+ [ JsonProperty ( "retry_on_conflict " ) ]
45
45
int ? RetriesOnConflict { get ; set ; }
46
46
47
47
object GetBody ( ) ;
You can’t perform that action at this time.
0 commit comments