File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ public interface ITypeMapping
98
98
99
99
/// <summary>
100
100
/// Specifies runtime fields for the mapping.
101
+ /// <para>This functionality is in beta and is subject to change. </para>
101
102
/// </summary>
102
103
[ DataMember ( Name = "runtime" ) ]
103
104
IRuntimeFields RuntimeFields { get ; set ; }
@@ -269,6 +270,7 @@ public TypeMappingDescriptor<T> DisableIndexField(bool? disabled = true) =>
269
270
public TypeMappingDescriptor < T > RoutingField ( Func < RoutingFieldDescriptor < T > , IRoutingField > routingFieldSelector ) =>
270
271
Assign ( routingFieldSelector , ( a , v ) => a . RoutingField = v ? . Invoke ( new RoutingFieldDescriptor < T > ( ) ) ) ;
271
272
273
+ /// <inheritdoc cref="ITypeMapping.RuntimeFields" />
272
274
public TypeMappingDescriptor < T > RuntimeFields ( Func < RuntimeFieldsDescriptor < T > , IPromise < IRuntimeFields > > runtimeFieldsSelector ) =>
273
275
Assign ( runtimeFieldsSelector , ( a , v ) => a . RuntimeFields = v ? . Invoke ( new RuntimeFieldsDescriptor < T > ( ) ) ? . Value ) ;
274
276
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ public partial interface ISearchRequest : ITypedSearchRequest
182
182
183
183
/// <summary>
184
184
/// Specifies runtime fields which exist only as part of the query.
185
+ /// <para>This functionality is in beta and is subject to change. </para>
185
186
/// </summary>
186
187
[ DataMember ( Name = "runtime_mappings" ) ]
187
188
IRuntimeFields RuntimeFields { get ; set ; }
You can’t perform that action at this time.
0 commit comments