File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/Nest/XPack/MachineLearning/UpdateDataFeed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ public partial interface IUpdateDatafeedRequest
38
38
/// <summary>
39
39
/// A numerical character string that uniquely identifies the job.
40
40
/// </summary>
41
+ [ Obsolete ( "As of 7.4.0 the ability to associate a feed with a different job is being deprecated as it adds unnecessary complexity" ) ]
41
42
[ DataMember ( Name = "job_id" ) ]
42
43
Id JobId { get ; set ; }
43
44
@@ -85,6 +86,7 @@ public partial class UpdateDatafeedRequest
85
86
public Indices Indices { get ; set ; }
86
87
87
88
/// <inheritdoc />
89
+ [ Obsolete ( "As of 7.4.0 the ability to associate a feed with a different job is being deprecated as it adds unnecessary complexity" ) ]
88
90
public Id JobId { get ; set ; }
89
91
90
92
/// <inheritdoc />
@@ -133,6 +135,7 @@ public UpdateDatafeedDescriptor<TDocument> ChunkingConfig(Func<ChunkingConfigDes
133
135
public UpdateDatafeedDescriptor < TDocument > AllIndices ( ) => Indices ( Nest . Indices . All ) ;
134
136
135
137
/// <inheritdoc />
138
+ [ Obsolete ( "As of 7.4.0 the ability to associate a feed with a different job is being deprecated as it adds unnecessary complexity" ) ]
136
139
public UpdateDatafeedDescriptor < TDocument > JobId ( Id jobId ) => Assign ( jobId , ( a , v ) => a . JobId = v ) ;
137
140
138
141
/// <inheritdoc />
You can’t perform that action at this time.
0 commit comments