Skip to content

Commit fb139e7

Browse files
chore(wa,dis,lt,nlu,tts): small changes
1 parent 5918c8a commit fb139e7

File tree

157 files changed

+828
-825
lines changed

Some content is hidden

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

157 files changed

+828
-825
lines changed

assistant/src/main/java/com/ibm/watson/assistant/v1/Assistant.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2019, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -12,7 +12,7 @@
1212
*/
1313

1414
/*
15-
* IBM OpenAPI SDK Code Generator Version: 3.64.1-cee95189-20230124-211647
15+
* IBM OpenAPI SDK Code Generator Version: 3.85.0-75c38f8f-20240206-210220
1616
*/
1717

1818
package com.ibm.watson.assistant.v1;
@@ -691,7 +691,7 @@ public ServiceCall<Void> deleteWorkspace(DeleteWorkspaceOptions deleteWorkspaceO
691691
*
692692
* <p>A successful call to this method only initiates asynchronous creation of the workspace. The
693693
* new workspace is not available until processing completes. To check the status of the
694-
* asynchronous operation, use the **Export workspace asynchronously** method.
694+
* asynchronous operation, use the **Get information about a workspace** method.
695695
*
696696
* @param createWorkspaceAsyncOptions the {@link CreateWorkspaceAsyncOptions} containing the
697697
* options for the call
@@ -786,7 +786,7 @@ public ServiceCall<Workspace> createWorkspaceAsync(
786786
*
787787
* <p>A successful call to this method only initiates asynchronous creation of the workspace. The
788788
* new workspace is not available until processing completes. To check the status of the
789-
* asynchronous operation, use the **Export workspace asynchronously** method.
789+
* asynchronous operation, use the **Get information about a workspace** method.
790790
*
791791
* @return a {@link ServiceCall} with a result of type {@link Workspace}
792792
*/
@@ -802,7 +802,7 @@ public ServiceCall<Workspace> createWorkspaceAsync() {
802802
*
803803
* <p>A successful call to this method only initiates an asynchronous update of the workspace. The
804804
* updated workspace is not available until processing completes. To check the status of the
805-
* asynchronous operation, use the **Export workspace asynchronously** method.
805+
* asynchronous operation, use the **Get information about a workspace** method.
806806
*
807807
* @param updateWorkspaceAsyncOptions the {@link UpdateWorkspaceAsyncOptions} containing the
808808
* options for the call

assistant/src/main/java/com/ibm/watson/assistant/v1/model/BulkClassifyOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2020, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -59,9 +59,9 @@ public BulkClassifyOptions build() {
5959
}
6060

6161
/**
62-
* Adds an input to input.
62+
* Adds a new element to input.
6363
*
64-
* @param input the new input
64+
* @param input the new element to be added
6565
* @return the BulkClassifyOptions builder
6666
*/
6767
public Builder addInput(BulkClassifyUtterance input) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CaptureGroup.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2018, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -59,9 +59,9 @@ public CaptureGroup build() {
5959
}
6060

6161
/**
62-
* Adds an location to location.
62+
* Adds a new element to location.
6363
*
64-
* @param location the new location
64+
* @param location the new element to be added
6565
* @return the CaptureGroup builder
6666
*/
6767
public Builder addLocation(Long location) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateDialogNodeOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -187,9 +187,9 @@ public CreateDialogNodeOptions build() {
187187
}
188188

189189
/**
190-
* Adds an actions to actions.
190+
* Adds a new element to actions.
191191
*
192-
* @param actions the new actions
192+
* @param actions the new element to be added
193193
* @return the CreateDialogNodeOptions builder
194194
*/
195195
public Builder addActions(DialogNodeAction actions) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateEntity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -76,9 +76,9 @@ public CreateEntity build() {
7676
}
7777

7878
/**
79-
* Adds an values to values.
79+
* Adds a new element to values.
8080
*
81-
* @param values the new values
81+
* @param values the new element to be added
8282
* @return the CreateEntity builder
8383
*/
8484
public Builder addValues(CreateValue values) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateEntityOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -77,9 +77,9 @@ public CreateEntityOptions build() {
7777
}
7878

7979
/**
80-
* Adds an values to values.
80+
* Adds a new element to values.
8181
*
82-
* @param values the new values
82+
* @param values the new element to be added
8383
* @return the CreateEntityOptions builder
8484
*/
8585
public Builder addValues(CreateValue values) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateExampleOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -72,9 +72,9 @@ public CreateExampleOptions build() {
7272
}
7373

7474
/**
75-
* Adds an mentions to mentions.
75+
* Adds a new element to mentions.
7676
*
77-
* @param mentions the new mentions
77+
* @param mentions the new element to be added
7878
* @return the CreateExampleOptions builder
7979
*/
8080
public Builder addMentions(Mention mentions) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateIntent.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -65,9 +65,9 @@ public CreateIntent build() {
6565
}
6666

6767
/**
68-
* Adds an example to examples.
68+
* Adds a new element to examples.
6969
*
70-
* @param example the new example
70+
* @param example the new element to be added
7171
* @return the CreateIntent builder
7272
*/
7373
public Builder addExample(Example example) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateIntentOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -70,9 +70,9 @@ public CreateIntentOptions build() {
7070
}
7171

7272
/**
73-
* Adds an example to examples.
73+
* Adds a new element to examples.
7474
*
75-
* @param example the new example
75+
* @param example the new element to be added
7676
* @return the CreateIntentOptions builder
7777
*/
7878
public Builder addExample(Example example) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateValue.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -80,9 +80,9 @@ public CreateValue build() {
8080
}
8181

8282
/**
83-
* Adds an synonym to synonyms.
83+
* Adds a new element to synonyms.
8484
*
85-
* @param synonym the new synonym
85+
* @param synonym the new element to be added
8686
* @return the CreateValue builder
8787
*/
8888
public Builder addSynonym(String synonym) {
@@ -95,9 +95,9 @@ public Builder addSynonym(String synonym) {
9595
}
9696

9797
/**
98-
* Adds an pattern to patterns.
98+
* Adds a new element to patterns.
9999
*
100-
* @param pattern the new pattern
100+
* @param pattern the new element to be added
101101
* @return the CreateValue builder
102102
*/
103103
public Builder addPattern(String pattern) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateValueOptions.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -90,9 +90,9 @@ public CreateValueOptions build() {
9090
}
9191

9292
/**
93-
* Adds an synonym to synonyms.
93+
* Adds a new element to synonyms.
9494
*
95-
* @param synonym the new synonym
95+
* @param synonym the new element to be added
9696
* @return the CreateValueOptions builder
9797
*/
9898
public Builder addSynonym(String synonym) {
@@ -105,9 +105,9 @@ public Builder addSynonym(String synonym) {
105105
}
106106

107107
/**
108-
* Adds an pattern to patterns.
108+
* Adds a new element to patterns.
109109
*
110-
* @param pattern the new pattern
110+
* @param pattern the new element to be added
111111
* @return the CreateValueOptions builder
112112
*/
113113
public Builder addPattern(String pattern) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateWorkspaceAsyncOptions.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2022, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -78,9 +78,9 @@ public CreateWorkspaceAsyncOptions build() {
7878
}
7979

8080
/**
81-
* Adds an dialogNode to dialogNodes.
81+
* Adds a new element to dialogNodes.
8282
*
83-
* @param dialogNode the new dialogNode
83+
* @param dialogNode the new element to be added
8484
* @return the CreateWorkspaceAsyncOptions builder
8585
*/
8686
public Builder addDialogNode(DialogNode dialogNode) {
@@ -93,9 +93,9 @@ public Builder addDialogNode(DialogNode dialogNode) {
9393
}
9494

9595
/**
96-
* Adds an counterexample to counterexamples.
96+
* Adds a new element to counterexamples.
9797
*
98-
* @param counterexample the new counterexample
98+
* @param counterexample the new element to be added
9999
* @return the CreateWorkspaceAsyncOptions builder
100100
*/
101101
public Builder addCounterexample(Counterexample counterexample) {
@@ -109,9 +109,9 @@ public Builder addCounterexample(Counterexample counterexample) {
109109
}
110110

111111
/**
112-
* Adds an webhooks to webhooks.
112+
* Adds a new element to webhooks.
113113
*
114-
* @param webhooks the new webhooks
114+
* @param webhooks the new element to be added
115115
* @return the CreateWorkspaceAsyncOptions builder
116116
*/
117117
public Builder addWebhooks(Webhook webhooks) {
@@ -124,9 +124,9 @@ public Builder addWebhooks(Webhook webhooks) {
124124
}
125125

126126
/**
127-
* Adds an intent to intents.
127+
* Adds a new element to intents.
128128
*
129-
* @param intent the new intent
129+
* @param intent the new element to be added
130130
* @return the CreateWorkspaceAsyncOptions builder
131131
*/
132132
public Builder addIntent(CreateIntent intent) {
@@ -139,9 +139,9 @@ public Builder addIntent(CreateIntent intent) {
139139
}
140140

141141
/**
142-
* Adds an entity to entities.
142+
* Adds a new element to entities.
143143
*
144-
* @param entity the new entity
144+
* @param entity the new element to be added
145145
* @return the CreateWorkspaceAsyncOptions builder
146146
*/
147147
public Builder addEntity(CreateEntity entity) {

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateWorkspaceOptions.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* (C) Copyright IBM Corp. 2017, 2023.
2+
* (C) Copyright IBM Corp. 2024.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -81,9 +81,9 @@ public CreateWorkspaceOptions build() {
8181
}
8282

8383
/**
84-
* Adds an dialogNode to dialogNodes.
84+
* Adds a new element to dialogNodes.
8585
*
86-
* @param dialogNode the new dialogNode
86+
* @param dialogNode the new element to be added
8787
* @return the CreateWorkspaceOptions builder
8888
*/
8989
public Builder addDialogNode(DialogNode dialogNode) {
@@ -96,9 +96,9 @@ public Builder addDialogNode(DialogNode dialogNode) {
9696
}
9797

9898
/**
99-
* Adds an counterexample to counterexamples.
99+
* Adds a new element to counterexamples.
100100
*
101-
* @param counterexample the new counterexample
101+
* @param counterexample the new element to be added
102102
* @return the CreateWorkspaceOptions builder
103103
*/
104104
public Builder addCounterexample(Counterexample counterexample) {
@@ -112,9 +112,9 @@ public Builder addCounterexample(Counterexample counterexample) {
112112
}
113113

114114
/**
115-
* Adds an webhooks to webhooks.
115+
* Adds a new element to webhooks.
116116
*
117-
* @param webhooks the new webhooks
117+
* @param webhooks the new element to be added
118118
* @return the CreateWorkspaceOptions builder
119119
*/
120120
public Builder addWebhooks(Webhook webhooks) {
@@ -127,9 +127,9 @@ public Builder addWebhooks(Webhook webhooks) {
127127
}
128128

129129
/**
130-
* Adds an intent to intents.
130+
* Adds a new element to intents.
131131
*
132-
* @param intent the new intent
132+
* @param intent the new element to be added
133133
* @return the CreateWorkspaceOptions builder
134134
*/
135135
public Builder addIntent(CreateIntent intent) {
@@ -142,9 +142,9 @@ public Builder addIntent(CreateIntent intent) {
142142
}
143143

144144
/**
145-
* Adds an entity to entities.
145+
* Adds a new element to entities.
146146
*
147-
* @param entity the new entity
147+
* @param entity the new element to be added
148148
* @return the CreateWorkspaceOptions builder
149149
*/
150150
public Builder addEntity(CreateEntity entity) {

0 commit comments

Comments
 (0)