File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 3
3
4
4
namespace Nest
5
5
{
6
- public interface IClusterPutSettingsResponse : IResponse
6
+ public interface IClusterGetSettingsResponse : IResponse
7
7
{
8
- [ JsonProperty ( PropertyName = "acknowledged" ) ]
9
- bool Acknowledged { get ; }
10
-
11
8
[ JsonProperty ( PropertyName = "persistent" ) ]
12
9
IDictionary < string , object > Persistent { get ; set ; }
13
10
14
11
[ JsonProperty ( PropertyName = "transient" ) ]
15
12
IDictionary < string , object > Transient { get ; set ; }
16
13
}
17
14
18
- public class ClusterPutSettingsResponse : BaseResponse , IClusterPutSettingsResponse
15
+ public class ClusterGetSettingsResponse : BaseResponse , IClusterGetSettingsResponse
19
16
{
20
- public bool Acknowledged { get ; internal set ; }
21
17
public IDictionary < string , object > Persistent { get ; set ; }
22
18
public IDictionary < string , object > Transient { get ; set ; }
23
19
}
Original file line number Diff line number Diff line change 3
3
4
4
namespace Nest
5
5
{
6
- public interface IClusterGetSettingsResponse : IResponse
6
+ public interface IClusterPutSettingsResponse : IResponse
7
7
{
8
+ [ JsonProperty ( PropertyName = "acknowledged" ) ]
9
+ bool Acknowledged { get ; }
10
+
8
11
[ JsonProperty ( PropertyName = "persistent" ) ]
9
12
IDictionary < string , object > Persistent { get ; set ; }
10
13
11
14
[ JsonProperty ( PropertyName = "transient" ) ]
12
15
IDictionary < string , object > Transient { get ; set ; }
13
16
}
14
17
15
- public class ClusterGetSettingsResponse : BaseResponse , IClusterGetSettingsResponse
18
+ public class ClusterPutSettingsResponse : BaseResponse , IClusterPutSettingsResponse
16
19
{
20
+ public bool Acknowledged { get ; internal set ; }
17
21
public IDictionary < string , object > Persistent { get ; set ; }
18
22
public IDictionary < string , object > Transient { get ; set ; }
19
23
}
Original file line number Diff line number Diff line change 208
208
<Compile Include =" Domain\Marker\PropertyPathMarker.cs" />
209
209
<Compile Include =" Domain\Repository\Snapshot.cs" />
210
210
<Compile Include =" Domain\Repository\SnapshotRestore.cs" />
211
- <Compile Include =" Domain\Responses\ClusterGetSettingsResponse - Copy.cs" />
212
211
<Compile Include =" Domain\Responses\ClusterPutSettingsResponse.cs" />
212
+ <Compile Include =" Domain\Responses\ClusterGetSettingsResponse.cs" />
213
213
<Compile Include =" Domain\Responses\GetSnapshotResponse.cs" />
214
214
<Compile Include =" Domain\Responses\MultiTermVectorResponse.cs" />
215
215
<Compile Include =" Domain\Responses\RestoreResponse.cs" />
You can’t perform that action at this time.
0 commit comments