1
1
/**
2
- * (C) Copyright IBM Corp. 2018, 2020.
2
+ * (C) Copyright IBM Corp. 2020.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -24,49 +24,50 @@ namespace IBM.Watson.Assistant.v1
24
24
public partial interface IAssistantService
25
25
{
26
26
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 ) ;
29
29
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 ) ;
31
31
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 ) ;
33
33
DetailedResponse < Intent > CreateIntent ( string workspaceId , string intent , string description = null , List < Example > examples = null , bool ? includeAudit = null ) ;
34
34
DetailedResponse < Intent > GetIntent ( string workspaceId , string intent , bool ? export = null , bool ? includeAudit = null ) ;
35
35
DetailedResponse < Intent > UpdateIntent ( string workspaceId , string intent , string newIntent = null , string newDescription = null , List < Example > newExamples = null , bool ? append = null , bool ? includeAudit = null ) ;
36
36
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 ) ;
38
38
DetailedResponse < Example > CreateExample ( string workspaceId , string intent , string text , List < Mention > mentions = null , bool ? includeAudit = null ) ;
39
39
DetailedResponse < Example > GetExample ( string workspaceId , string intent , string text , bool ? includeAudit = null ) ;
40
40
DetailedResponse < Example > UpdateExample ( string workspaceId , string intent , string text , string newText = null , List < Mention > newMentions = null , bool ? includeAudit = null ) ;
41
41
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 ) ;
43
43
DetailedResponse < Counterexample > CreateCounterexample ( string workspaceId , string text , bool ? includeAudit = null ) ;
44
44
DetailedResponse < Counterexample > GetCounterexample ( string workspaceId , string text , bool ? includeAudit = null ) ;
45
45
DetailedResponse < Counterexample > UpdateCounterexample ( string workspaceId , string text , string newText = null , bool ? includeAudit = null ) ;
46
46
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 ) ;
48
48
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 ) ;
49
49
DetailedResponse < Entity > GetEntity ( string workspaceId , string entity , bool ? export = null , bool ? includeAudit = null ) ;
50
50
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 ) ;
51
51
DetailedResponse < object > DeleteEntity ( string workspaceId , string entity ) ;
52
52
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 ) ;
54
54
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 ) ;
55
55
DetailedResponse < Value > GetValue ( string workspaceId , string entity , string value , bool ? export = null , bool ? includeAudit = null ) ;
56
56
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 ) ;
57
57
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 ) ;
59
59
DetailedResponse < Synonym > CreateSynonym ( string workspaceId , string entity , string value , string synonym , bool ? includeAudit = null ) ;
60
60
DetailedResponse < Synonym > GetSynonym ( string workspaceId , string entity , string value , string synonym , bool ? includeAudit = null ) ;
61
61
DetailedResponse < Synonym > UpdateSynonym ( string workspaceId , string entity , string value , string synonym , string newSynonym = null , bool ? includeAudit = null ) ;
62
62
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 ) ;
65
65
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 ) ;
67
67
DetailedResponse < object > DeleteDialogNode ( string workspaceId , string dialogNode ) ;
68
68
DetailedResponse < LogCollection > ListLogs ( string workspaceId , string sort = null , string filter = null , long ? pageLimit = null , string cursor = null ) ;
69
69
DetailedResponse < LogCollection > ListAllLogs ( string filter , string sort = null , long ? pageLimit = null , string cursor = null ) ;
70
70
DetailedResponse < object > DeleteUserData ( string customerId ) ;
71
+ DetailedResponse < BulkClassifyResponse > BulkClassify ( string workspaceId , List < BulkClassifyUtterance > input = null ) ;
71
72
}
72
73
}
0 commit comments