Skip to content

Commit d28fa35

Browse files
committed
feat(generation): generated with 3.17.0 generator and sdk-major-release-2020-rc01 api def
BREAKING CHANGE: generated with 3.17.0 generator and sdk-major-release-2020-rc01 api def
1 parent 59d28d9 commit d28fa35

File tree

114 files changed

+8698
-2506
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+8698
-2506
lines changed

src/IBM.Watson.Assistant.v1/AssistantService.cs

+864-330
Large diffs are not rendered by default.

src/IBM.Watson.Assistant.v1/IAssistantService.cs

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2020.
2+
* (C) Copyright IBM Corp. 2020.
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.
@@ -24,49 +24,50 @@ namespace IBM.Watson.Assistant.v1
2424
public partial interface IAssistantService
2525
{
2626
DetailedResponse<MessageResponse> Message(string workspaceId, MessageInput input = null, List<RuntimeIntent> intents = null, List<RuntimeEntity> entities = null, bool? alternateIntents = null, Context context = null, OutputData output = null, bool? nodesVisitedDetails = null);
27-
DetailedResponse<WorkspaceCollection> ListWorkspaces(long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
28-
DetailedResponse<Workspace> CreateWorkspace(string name = null, string description = null, string language = null, Dictionary<string, object> metadata = null, bool? learningOptOut = null, WorkspaceSystemSettings systemSettings = null, List<CreateIntent> intents = null, List<CreateEntity> entities = null, List<DialogNode> dialogNodes = null, List<Counterexample> counterexamples = null, List<Webhook> webhooks = null, bool? includeAudit = null);
27+
DetailedResponse<WorkspaceCollection> ListWorkspaces(long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
28+
DetailedResponse<Workspace> CreateWorkspace(string name = null, string description = null, string language = null, List<DialogNode> dialogNodes = null, List<Counterexample> counterexamples = null, Dictionary<string, object> metadata = null, bool? learningOptOut = null, WorkspaceSystemSettings systemSettings = null, List<Webhook> webhooks = null, List<CreateIntent> intents = null, List<CreateEntity> entities = null, bool? includeAudit = null);
2929
DetailedResponse<Workspace> GetWorkspace(string workspaceId, bool? export = null, bool? includeAudit = null, string sort = null);
30-
DetailedResponse<Workspace> UpdateWorkspace(string workspaceId, string name = null, string description = null, string language = null, Dictionary<string, object> metadata = null, bool? learningOptOut = null, WorkspaceSystemSettings systemSettings = null, List<CreateIntent> intents = null, List<CreateEntity> entities = null, List<DialogNode> dialogNodes = null, List<Counterexample> counterexamples = null, bool? append = null, List<Webhook> webhooks = null, bool? includeAudit = null);
30+
DetailedResponse<Workspace> UpdateWorkspace(string workspaceId, string name = null, string description = null, string language = null, List<DialogNode> dialogNodes = null, List<Counterexample> counterexamples = null, Dictionary<string, object> metadata = null, bool? learningOptOut = null, WorkspaceSystemSettings systemSettings = null, List<Webhook> webhooks = null, List<CreateIntent> intents = null, List<CreateEntity> entities = null, bool? append = null, bool? includeAudit = null);
3131
DetailedResponse<object> DeleteWorkspace(string workspaceId);
32-
DetailedResponse<IntentCollection> ListIntents(string workspaceId, bool? export = null, long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
32+
DetailedResponse<IntentCollection> ListIntents(string workspaceId, bool? export = null, long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
3333
DetailedResponse<Intent> CreateIntent(string workspaceId, string intent, string description = null, List<Example> examples = null, bool? includeAudit = null);
3434
DetailedResponse<Intent> GetIntent(string workspaceId, string intent, bool? export = null, bool? includeAudit = null);
3535
DetailedResponse<Intent> UpdateIntent(string workspaceId, string intent, string newIntent = null, string newDescription = null, List<Example> newExamples = null, bool? append = null, bool? includeAudit = null);
3636
DetailedResponse<object> DeleteIntent(string workspaceId, string intent);
37-
DetailedResponse<ExampleCollection> ListExamples(string workspaceId, string intent, long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
37+
DetailedResponse<ExampleCollection> ListExamples(string workspaceId, string intent, long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
3838
DetailedResponse<Example> CreateExample(string workspaceId, string intent, string text, List<Mention> mentions = null, bool? includeAudit = null);
3939
DetailedResponse<Example> GetExample(string workspaceId, string intent, string text, bool? includeAudit = null);
4040
DetailedResponse<Example> UpdateExample(string workspaceId, string intent, string text, string newText = null, List<Mention> newMentions = null, bool? includeAudit = null);
4141
DetailedResponse<object> DeleteExample(string workspaceId, string intent, string text);
42-
DetailedResponse<CounterexampleCollection> ListCounterexamples(string workspaceId, long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
42+
DetailedResponse<CounterexampleCollection> ListCounterexamples(string workspaceId, long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
4343
DetailedResponse<Counterexample> CreateCounterexample(string workspaceId, string text, bool? includeAudit = null);
4444
DetailedResponse<Counterexample> GetCounterexample(string workspaceId, string text, bool? includeAudit = null);
4545
DetailedResponse<Counterexample> UpdateCounterexample(string workspaceId, string text, string newText = null, bool? includeAudit = null);
4646
DetailedResponse<object> DeleteCounterexample(string workspaceId, string text);
47-
DetailedResponse<EntityCollection> ListEntities(string workspaceId, bool? export = null, long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
47+
DetailedResponse<EntityCollection> ListEntities(string workspaceId, bool? export = null, long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
4848
DetailedResponse<Entity> CreateEntity(string workspaceId, string entity, string description = null, Dictionary<string, object> metadata = null, bool? fuzzyMatch = null, List<CreateValue> values = null, bool? includeAudit = null);
4949
DetailedResponse<Entity> GetEntity(string workspaceId, string entity, bool? export = null, bool? includeAudit = null);
5050
DetailedResponse<Entity> UpdateEntity(string workspaceId, string entity, string newEntity = null, string newDescription = null, Dictionary<string, object> newMetadata = null, bool? newFuzzyMatch = null, List<CreateValue> newValues = null, bool? append = null, bool? includeAudit = null);
5151
DetailedResponse<object> DeleteEntity(string workspaceId, string entity);
5252
DetailedResponse<EntityMentionCollection> ListMentions(string workspaceId, string entity, bool? export = null, bool? includeAudit = null);
53-
DetailedResponse<ValueCollection> ListValues(string workspaceId, string entity, bool? export = null, long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
53+
DetailedResponse<ValueCollection> ListValues(string workspaceId, string entity, bool? export = null, long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
5454
DetailedResponse<Value> CreateValue(string workspaceId, string entity, string value, Dictionary<string, object> metadata = null, string type = null, List<string> synonyms = null, List<string> patterns = null, bool? includeAudit = null);
5555
DetailedResponse<Value> GetValue(string workspaceId, string entity, string value, bool? export = null, bool? includeAudit = null);
5656
DetailedResponse<Value> UpdateValue(string workspaceId, string entity, string value, string newValue = null, Dictionary<string, object> newMetadata = null, string newType = null, List<string> newSynonyms = null, List<string> newPatterns = null, bool? append = null, bool? includeAudit = null);
5757
DetailedResponse<object> DeleteValue(string workspaceId, string entity, string value);
58-
DetailedResponse<SynonymCollection> ListSynonyms(string workspaceId, string entity, string value, long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
58+
DetailedResponse<SynonymCollection> ListSynonyms(string workspaceId, string entity, string value, long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
5959
DetailedResponse<Synonym> CreateSynonym(string workspaceId, string entity, string value, string synonym, bool? includeAudit = null);
6060
DetailedResponse<Synonym> GetSynonym(string workspaceId, string entity, string value, string synonym, bool? includeAudit = null);
6161
DetailedResponse<Synonym> UpdateSynonym(string workspaceId, string entity, string value, string synonym, string newSynonym = null, bool? includeAudit = null);
6262
DetailedResponse<object> DeleteSynonym(string workspaceId, string entity, string value, string synonym);
63-
DetailedResponse<DialogNodeCollection> ListDialogNodes(string workspaceId, long? pageLimit = null, string sort = null, string cursor = null, bool? includeAudit = null);
64-
DetailedResponse<DialogNode> CreateDialogNode(string workspaceId, string dialogNode, string description = null, string conditions = null, string parent = null, string previousSibling = null, DialogNodeOutput output = null, Dictionary<string, object> context = null, Dictionary<string, object> metadata = null, DialogNodeNextStep nextStep = null, string title = null, string type = null, string eventName = null, string variable = null, List<DialogNodeAction> actions = null, string digressIn = null, string digressOut = null, string digressOutSlots = null, string userLabel = null, bool? disambiguationOptOut = null, bool? includeAudit = null);
63+
DetailedResponse<DialogNodeCollection> ListDialogNodes(string workspaceId, long? pageLimit = null, bool? includeCount = null, string sort = null, string cursor = null, bool? includeAudit = null);
64+
DetailedResponse<DialogNode> CreateDialogNode(string workspaceId, string dialogNode, string description = null, string conditions = null, string parent = null, string previousSibling = null, DialogNodeOutput output = null, DialogNodeContext context = null, Dictionary<string, object> metadata = null, DialogNodeNextStep nextStep = null, string title = null, string type = null, string eventName = null, string variable = null, List<DialogNodeAction> actions = null, string digressIn = null, string digressOut = null, string digressOutSlots = null, string userLabel = null, bool? disambiguationOptOut = null, bool? includeAudit = null);
6565
DetailedResponse<DialogNode> GetDialogNode(string workspaceId, string dialogNode, bool? includeAudit = null);
66-
DetailedResponse<DialogNode> UpdateDialogNode(string workspaceId, string dialogNode, string newDialogNode = null, string newDescription = null, string newConditions = null, string newParent = null, string newPreviousSibling = null, DialogNodeOutput newOutput = null, Dictionary<string, object> newContext = null, Dictionary<string, object> newMetadata = null, DialogNodeNextStep newNextStep = null, string newTitle = null, string newType = null, string newEventName = null, string newVariable = null, List<DialogNodeAction> newActions = null, string newDigressIn = null, string newDigressOut = null, string newDigressOutSlots = null, string newUserLabel = null, bool? newDisambiguationOptOut = null, bool? includeAudit = null);
66+
DetailedResponse<DialogNode> UpdateDialogNode(string workspaceId, string dialogNode, string newDialogNode = null, string newDescription = null, string newConditions = null, string newParent = null, string newPreviousSibling = null, DialogNodeOutput newOutput = null, DialogNodeContext newContext = null, Dictionary<string, object> newMetadata = null, DialogNodeNextStep newNextStep = null, string newTitle = null, string newType = null, string newEventName = null, string newVariable = null, List<DialogNodeAction> newActions = null, string newDigressIn = null, string newDigressOut = null, string newDigressOutSlots = null, string newUserLabel = null, bool? newDisambiguationOptOut = null, bool? includeAudit = null);
6767
DetailedResponse<object> DeleteDialogNode(string workspaceId, string dialogNode);
6868
DetailedResponse<LogCollection> ListLogs(string workspaceId, string sort = null, string filter = null, long? pageLimit = null, string cursor = null);
6969
DetailedResponse<LogCollection> ListAllLogs(string filter, string sort = null, long? pageLimit = null, string cursor = null);
7070
DetailedResponse<object> DeleteUserData(string customerId);
71+
DetailedResponse<BulkClassifyResponse> BulkClassify(string workspaceId, List<BulkClassifyUtterance> input = null);
7172
}
7273
}

src/IBM.Watson.Assistant.v1/IBM.Watson.Assistant.v1.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<PropertyGroup>
44
<Description>IBM.Watson.Assistant.v1 wraps the Watson Assistant service (http://www.ibm.com/watson/developercloud/assistant.html)</Description>
55
<AssemblyTitle>IBM.Watson.Assistant.v1</AssemblyTitle>
6-
<VersionPrefix>4.6.0</VersionPrefix>
6+
<VersionPrefix>5.0.0</VersionPrefix>
77
<Authors>IBM Watson</Authors>
88
<TargetFramework>netstandard2.0</TargetFramework>
99
<AssemblyName>IBM.Watson.Assistant.v1</AssemblyName>
1010
<PackageId>IBM.Watson.Assistant.v1</PackageId>
1111
<PackageTags>watson;cognitive;speech;vision;machine-learning;ml;ai;artificial-intelligence;.NET;.NET-Standard</PackageTags>
1212
<PackageIconUrl>https://watson-developer-cloud.github.io/dotnet-standard-sdk/img/Watson_Avatar_Pos_RGB.png</PackageIconUrl>
1313
<PackageProjectUrl>https://github.com/watson-developer-cloud/dotnet-standard-sdk</PackageProjectUrl>
14-
<Version>4.6.0</Version>
14+
<Version>5.0.0</Version>
1515
</PropertyGroup>
1616

1717
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -26,9 +26,9 @@
2626

2727
<ItemGroup>
2828
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.1.0" />
29-
<PackageReference Include="IBM.Watson.Common" Version="4.6.0" />
30-
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
29+
<PackageReference Include="IBM.Watson.Common" Version="5.0.0" />
3130
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
31+
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
3232
</ItemGroup>
3333

3434
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/**
2+
* (C) Copyright IBM Corp. 2020.
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.Assistant.v1.Model
22+
{
23+
/// <summary>
24+
/// BulkClassifyOutput.
25+
/// </summary>
26+
public class BulkClassifyOutput
27+
{
28+
/// <summary>
29+
/// The user input utterance to classify.
30+
/// </summary>
31+
[JsonProperty("input", NullValueHandling = NullValueHandling.Ignore)]
32+
public BulkClassifyUtterance Input { get; set; }
33+
/// <summary>
34+
/// An array of entities identified in the utterance.
35+
/// </summary>
36+
[JsonProperty("entities", NullValueHandling = NullValueHandling.Ignore)]
37+
public List<RuntimeEntity> Entities { get; set; }
38+
/// <summary>
39+
/// An array of intents recognized in the utterance.
40+
/// </summary>
41+
[JsonProperty("intents", NullValueHandling = NullValueHandling.Ignore)]
42+
public List<RuntimeIntent> Intents { get; set; }
43+
}
44+
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/**
2+
* (C) Copyright IBM Corp. 2020.
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.Assistant.v1.Model
22+
{
23+
/// <summary>
24+
/// BulkClassifyResponse.
25+
/// </summary>
26+
public class BulkClassifyResponse
27+
{
28+
/// <summary>
29+
/// An array of objects that contain classification information for the submitted input utterances.
30+
/// </summary>
31+
[JsonProperty("output", NullValueHandling = NullValueHandling.Ignore)]
32+
public List<BulkClassifyOutput> Output { get; set; }
33+
}
34+
35+
}

src/IBM.Watson.Assistant.v1/Model/SystemResponse.cs src/IBM.Watson.Assistant.v1/Model/BulkClassifyUtterance.cs

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2020.
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,15 +15,20 @@
1515
*
1616
*/
1717

18-
using IBM.Cloud.SDK.Core.Model;
18+
using Newtonsoft.Json;
1919

2020
namespace IBM.Watson.Assistant.v1.Model
2121
{
2222
/// <summary>
23-
/// For internal use only.
23+
/// The user input utterance to classify.
2424
/// </summary>
25-
public class SystemResponse : DynamicModel<object>
25+
public class BulkClassifyUtterance
2626
{
27+
/// <summary>
28+
/// The text of the input utterance.
29+
/// </summary>
30+
[JsonProperty("text", NullValueHandling = NullValueHandling.Ignore)]
31+
public string Text { get; set; }
2732
}
2833

2934
}

src/IBM.Watson.Assistant.v1/Model/Context.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2020.
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,6 +15,7 @@
1515
*
1616
*/
1717

18+
using System.Collections.Generic;
1819
using IBM.Cloud.SDK.Core.Model;
1920
using Newtonsoft.Json;
2021

@@ -34,7 +35,7 @@ public class Context : DynamicModel<object>
3435
/// For internal use only.
3536
/// </summary>
3637
[JsonProperty("system", NullValueHandling = NullValueHandling.Ignore)]
37-
public SystemResponse System { get; set; }
38+
public Dictionary<string, object> System { get; set; }
3839
/// <summary>
3940
/// Metadata related to the message.
4041
/// </summary>

src/IBM.Watson.Assistant.v1/Model/DialogNode.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2020.
2+
* (C) Copyright IBM Corp. 2020.
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.
@@ -230,7 +230,7 @@ public class DigressOutSlotsEnumValue
230230
/// The context for the dialog node.
231231
/// </summary>
232232
[JsonProperty("context", NullValueHandling = NullValueHandling.Ignore)]
233-
public Dictionary<string, object> Context { get; set; }
233+
public DialogNodeContext Context { get; set; }
234234
/// <summary>
235235
/// The metadata for the dialog node.
236236
/// </summary>

0 commit comments

Comments
 (0)