Skip to content

Commit 4faac38

Browse files
committed
feat(discovery-v1): document status & query aggregation update
DocumentStatus: documentID, status, and statusDescription are now optional. QueryAggregation: BREAKING QueryAggregation subclasses changed. BREAKING CHANGE: QueryAggregation: BREAKING QueryAggregation subclasses changed.
1 parent fe49277 commit 4faac38

17 files changed

+559
-49
lines changed

src/IBM.Watson.Discovery.v1/DiscoveryService.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2017, 2021.
2+
* (C) Copyright IBM Corp. 2022.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@
1616
*/
1717

1818
/**
19-
* IBM OpenAPI SDK Code Generator Version: 99-SNAPSHOT-07189efd-20210907-091205
19+
* IBM OpenAPI SDK Code Generator Version: 3.46.0-a4e29da0-20220224-210428
2020
*/
2121

2222
using System.Collections.Generic;
@@ -245,8 +245,8 @@ public DetailedResponse<Environment> GetEnvironment(string environmentId)
245245
/// <param name="environmentId">The ID of the environment.</param>
246246
/// <param name="name">Name that identifies the environment. (optional, default to )</param>
247247
/// <param name="description">Description of the environment. (optional, default to )</param>
248-
/// <param name="size">Size that the environment should be increased to. Environment size cannot be modified
249-
/// when using a Lite plan. Environment size can only increased and not decreased. (optional)</param>
248+
/// <param name="size">Size to change the environment to. **Note:** Lite plan users cannot change the
249+
/// environment size. (optional)</param>
250250
/// <returns><see cref="Environment" />Environment</returns>
251251
public DetailedResponse<Environment> UpdateEnvironment(string environmentId, string name = null, string description = null, string size = null)
252252
{

src/IBM.Watson.Discovery.v1/IBM.Watson.Discovery.v1.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</ItemGroup>
3535

3636
<ItemGroup>
37-
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.2.0" />
37+
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.3.1" />
3838
<PackageReference Include="IBM.Watson.Common" Version="5.3.0" />
3939
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
4040
<PackageReference Include="JsonSubTypes" Version="1.6.0" />

src/IBM.Watson.Discovery.v1/Model/Enrichment.cs

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2017, 2021.
2+
* (C) Copyright IBM Corp. 2022.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -51,15 +51,10 @@ public class Enrichment
5151
[JsonProperty("overwrite", NullValueHandling = NullValueHandling.Ignore)]
5252
public bool? Overwrite { get; set; }
5353
/// <summary>
54-
/// Name of the enrichment service to call. Current options are `natural_language_understanding` and `elements`.
54+
/// Name of the enrichment service to call. The only supported option is `natural_language_understanding`. The
55+
/// `elements` option is deprecated and support ended on 10 July 2020.
5556
///
56-
/// When using `natual_language_understanding`, the **options** object must contain Natural Language
57-
/// Understanding options.
58-
///
59-
/// When using `elements` the **options** object must contain Element Classification options. Additionally, when
60-
/// using the `elements` enrichment the configuration specified and files ingested must meet all the criteria
61-
/// specified in [the
62-
/// documentation](https://cloud.ibm.com/docs/discovery?topic=discovery-element-classification#element-classification).
57+
/// The **options** object must contain Natural Language Understanding options.
6358
/// </summary>
6459
[JsonProperty("enrichment", NullValueHandling = NullValueHandling.Ignore)]
6560
public string _Enrichment { get; set; }
@@ -70,7 +65,11 @@ public class Enrichment
7065
[JsonProperty("ignore_downstream_errors", NullValueHandling = NullValueHandling.Ignore)]
7166
public bool? IgnoreDownstreamErrors { get; set; }
7267
/// <summary>
73-
/// Options which are specific to a particular enrichment.
68+
/// Options that are specific to a particular enrichment.
69+
///
70+
/// The `elements` enrichment type is deprecated. Use the [Create a
71+
/// project](https://cloud.ibm.com/apidocs/discovery-data#createproject) method of the Discovery v2 API to
72+
/// create a `content_intelligence` project type instead.
7473
/// </summary>
7574
[JsonProperty("options", NullValueHandling = NullValueHandling.Ignore)]
7675
public EnrichmentOptions Options { get; set; }

src/IBM.Watson.Discovery.v1/Model/EnrichmentOptions.cs

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2017, 2021.
2+
* (C) Copyright IBM Corp. 2022.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,11 @@
2020
namespace IBM.Watson.Discovery.v1.Model
2121
{
2222
/// <summary>
23-
/// Options which are specific to a particular enrichment.
23+
/// Options that are specific to a particular enrichment.
24+
///
25+
/// The `elements` enrichment type is deprecated. Use the [Create a
26+
/// project](https://cloud.ibm.com/apidocs/discovery-data#createproject) method of the Discovery v2 API to create a
27+
/// `content_intelligence` project type instead.
2428
/// </summary>
2529
public class EnrichmentOptions
2630
{
@@ -86,8 +90,7 @@ public class LanguageEnumValue
8690
[JsonProperty("features", NullValueHandling = NullValueHandling.Ignore)]
8791
public NluEnrichmentFeatures Features { get; set; }
8892
/// <summary>
89-
/// For use with `elements` enrichments only. The element extraction model to use. The only model available is
90-
/// `contract`.
93+
/// The element extraction model to use, which can be `contract` only. The `elements` enrichment is deprecated.
9194
/// </summary>
9295
[JsonProperty("model", NullValueHandling = NullValueHandling.Ignore)]
9396
public string Model { get; set; }
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2017, 2020.
2+
* (C) Copyright IBM Corp. 2022.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -15,7 +15,6 @@
1515
*
1616
*/
1717

18-
using System.Collections.Generic;
1918
using JsonSubTypes;
2019
using Newtonsoft.Json;
2120

@@ -25,39 +24,24 @@ namespace IBM.Watson.Discovery.v1.Model
2524
/// An aggregation produced by Discovery to analyze the input provided.
2625
/// </summary>
2726
[JsonConverter(typeof(JsonSubtypes), "type")]
28-
[JsonSubtypes.KnownSubType(typeof(Histogram), "histogram")]
29-
[JsonSubtypes.KnownSubType(typeof(Calculation), "max")]
30-
[JsonSubtypes.KnownSubType(typeof(Calculation), "min")]
31-
[JsonSubtypes.KnownSubType(typeof(Calculation), "average")]
32-
[JsonSubtypes.KnownSubType(typeof(Calculation), "sum")]
33-
[JsonSubtypes.KnownSubType(typeof(Calculation), "unique_count")]
34-
[JsonSubtypes.KnownSubType(typeof(Term), "term")]
35-
[JsonSubtypes.KnownSubType(typeof(Filter), "filter")]
36-
[JsonSubtypes.KnownSubType(typeof(Nested), "nested")]
37-
[JsonSubtypes.KnownSubType(typeof(Timeslice), "timeslice")]
38-
[JsonSubtypes.KnownSubType(typeof(TopHits), "top_hits")]
27+
[JsonSubtypes.KnownSubType(typeof(QueryHistogramAggregation), "histogram")]
28+
[JsonSubtypes.KnownSubType(typeof(QueryCalculationAggregation), "max")]
29+
[JsonSubtypes.KnownSubType(typeof(QueryCalculationAggregation), "min")]
30+
[JsonSubtypes.KnownSubType(typeof(QueryCalculationAggregation), "average")]
31+
[JsonSubtypes.KnownSubType(typeof(QueryCalculationAggregation), "sum")]
32+
[JsonSubtypes.KnownSubType(typeof(QueryCalculationAggregation), "unique_count")]
33+
[JsonSubtypes.KnownSubType(typeof(QueryTermAggregation), "term")]
34+
[JsonSubtypes.KnownSubType(typeof(QueryFilterAggregation), "filter")]
35+
[JsonSubtypes.KnownSubType(typeof(QueryNestedAggregation), "nested")]
36+
[JsonSubtypes.KnownSubType(typeof(QueryTimesliceAggregation), "timeslice")]
37+
[JsonSubtypes.KnownSubType(typeof(QueryTopHitsAggregation), "top_hits")]
3938
public class QueryAggregation
4039
{
4140
/// <summary>
4241
/// The type of aggregation command used. For example: term, filter, max, min, etc.
4342
/// </summary>
4443
[JsonProperty("type", NullValueHandling = NullValueHandling.Ignore)]
4544
public string Type { get; set; }
46-
/// <summary>
47-
/// Array of aggregation results.
48-
/// </summary>
49-
[JsonProperty("results", NullValueHandling = NullValueHandling.Ignore)]
50-
public List<AggregationResult> Results { get; set; }
51-
/// <summary>
52-
/// Number of matching results.
53-
/// </summary>
54-
[JsonProperty("matching_results", NullValueHandling = NullValueHandling.Ignore)]
55-
public long? MatchingResults { get; set; }
56-
/// <summary>
57-
/// Aggregations returned by Discovery.
58-
/// </summary>
59-
[JsonProperty("aggregations", NullValueHandling = NullValueHandling.Ignore)]
60-
public List<QueryAggregation> Aggregations { get; set; }
6145
}
6246

6347
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/**
2+
* (C) Copyright IBM Corp. 2022.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
*/
17+
18+
using Newtonsoft.Json;
19+
20+
namespace IBM.Watson.Discovery.v1.Model
21+
{
22+
/// <summary>
23+
/// Returns a scalar calculation across all documents for the field specified. Possible calculations include min,
24+
/// max, sum, average, and unique_count.
25+
/// </summary>
26+
public class QueryCalculationAggregation : QueryAggregation
27+
{
28+
/// <summary>
29+
/// The field to perform the calculation on.
30+
/// </summary>
31+
[JsonProperty("field", NullValueHandling = NullValueHandling.Ignore)]
32+
public string Field { get; set; }
33+
/// <summary>
34+
/// The value of the calculation.
35+
/// </summary>
36+
[JsonProperty("value", NullValueHandling = NullValueHandling.Ignore)]
37+
public double? Value { get; set; }
38+
}
39+
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/**
2+
* (C) Copyright IBM Corp. 2022.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
*/
17+
18+
using System.Collections.Generic;
19+
using Newtonsoft.Json;
20+
21+
namespace IBM.Watson.Discovery.v1.Model
22+
{
23+
/// <summary>
24+
/// A modifier that narrows the document set of the sub-aggregations it precedes.
25+
/// </summary>
26+
public class QueryFilterAggregation : QueryAggregation
27+
{
28+
/// <summary>
29+
/// The filter that is written in Discovery Query Language syntax and is applied to the documents before
30+
/// sub-aggregations are run.
31+
/// </summary>
32+
[JsonProperty("match", NullValueHandling = NullValueHandling.Ignore)]
33+
public string Match { get; set; }
34+
/// <summary>
35+
/// Number of documents that match the filter.
36+
/// </summary>
37+
[JsonProperty("matching_results", NullValueHandling = NullValueHandling.Ignore)]
38+
public long? MatchingResults { get; set; }
39+
/// <summary>
40+
/// An array of sub-aggregations.
41+
/// </summary>
42+
[JsonProperty("aggregations", NullValueHandling = NullValueHandling.Ignore)]
43+
public List<QueryAggregation> Aggregations { get; set; }
44+
}
45+
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/**
2+
* (C) Copyright IBM Corp. 2022.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
*/
17+
18+
using System.Collections.Generic;
19+
using Newtonsoft.Json;
20+
21+
namespace IBM.Watson.Discovery.v1.Model
22+
{
23+
/// <summary>
24+
/// Numeric interval segments to categorize documents by using field values from a single numeric field to describe
25+
/// the category.
26+
/// </summary>
27+
public class QueryHistogramAggregation : QueryAggregation
28+
{
29+
/// <summary>
30+
/// The numeric field name used to create the histogram.
31+
/// </summary>
32+
[JsonProperty("field", NullValueHandling = NullValueHandling.Ignore)]
33+
public string Field { get; set; }
34+
/// <summary>
35+
/// The size of the sections that the results are split into.
36+
/// </summary>
37+
[JsonProperty("interval", NullValueHandling = NullValueHandling.Ignore)]
38+
public long? Interval { get; set; }
39+
/// <summary>
40+
/// Identifier specified in the query request of this aggregation.
41+
/// </summary>
42+
[JsonProperty("name", NullValueHandling = NullValueHandling.Ignore)]
43+
public string Name { get; set; }
44+
/// <summary>
45+
/// Array of numeric intervals.
46+
/// </summary>
47+
[JsonProperty("results", NullValueHandling = NullValueHandling.Ignore)]
48+
public List<QueryHistogramAggregationResult> Results { get; set; }
49+
}
50+
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/**
2+
* (C) Copyright IBM Corp. 2022.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
*/
17+
18+
using System.Collections.Generic;
19+
using Newtonsoft.Json;
20+
21+
namespace IBM.Watson.Discovery.v1.Model
22+
{
23+
/// <summary>
24+
/// Histogram numeric interval result.
25+
/// </summary>
26+
public class QueryHistogramAggregationResult
27+
{
28+
/// <summary>
29+
/// The value of the upper bound for the numeric segment.
30+
/// </summary>
31+
[JsonProperty("key", NullValueHandling = NullValueHandling.Ignore)]
32+
public long? Key { get; set; }
33+
/// <summary>
34+
/// Number of documents with the specified key as the upper bound.
35+
/// </summary>
36+
[JsonProperty("matching_results", NullValueHandling = NullValueHandling.Ignore)]
37+
public long? MatchingResults { get; set; }
38+
/// <summary>
39+
/// An array of sub-aggregations.
40+
/// </summary>
41+
[JsonProperty("aggregations", NullValueHandling = NullValueHandling.Ignore)]
42+
public List<QueryAggregation> Aggregations { get; set; }
43+
}
44+
45+
}

0 commit comments

Comments
 (0)