Skip to content

Commit 07234ee

Browse files
committed
feat: Regenerate SDK
1 parent 297a0ff commit 07234ee

File tree

388 files changed

+1639
-8779
lines changed

Some content is hidden

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

388 files changed

+1639
-8779
lines changed

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

Lines changed: 0 additions & 705 deletions
Large diffs are not rendered by default.

src/IBM.WatsonDeveloperCloud.Assistant.v1/IBM.WatsonDeveloperCloud.Assistant.v1.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
</PropertyGroup>
1717

1818
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
19-
<DebugType>full</DebugType>
20-
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<DebugSymbols>true</DebugSymbols>
2121
</PropertyGroup>
2222

2323
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
24-
<DebugType>full</DebugType>
25-
<DebugSymbols>true</DebugSymbols>
24+
<DebugType>full</DebugType>
25+
<DebugSymbols>true</DebugSymbols>
2626
</PropertyGroup>
2727

2828
<ItemGroup>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/CaptureGroup.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,11 @@ public class CaptureGroup : BaseModel
2828
/// <summary>
2929
/// A recognized capture group for the entity.
3030
/// </summary>
31-
/// <value>
32-
/// A recognized capture group for the entity.
33-
/// </value>
3431
[JsonProperty("group", NullValueHandling = NullValueHandling.Ignore)]
3532
public string Group { get; set; }
3633
/// <summary>
3734
/// Zero-based character offsets that indicate where the entity value begins and ends in the input text.
3835
/// </summary>
39-
/// <value>
40-
/// Zero-based character offsets that indicate where the entity value begins and ends in the input text.
41-
/// </value>
4236
[JsonProperty("location", NullValueHandling = NullValueHandling.Ignore)]
4337
public List<long?> Location { get; set; }
4438
}

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,11 @@ public class Context : BaseModel
2727
/// <summary>
2828
/// The unique identifier of the conversation.
2929
/// </summary>
30-
/// <value>
31-
/// The unique identifier of the conversation.
32-
/// </value>
3330
[JsonProperty("conversation_id", NullValueHandling = NullValueHandling.Ignore)]
3431
public dynamic ConversationId { get; set; }
3532
/// <summary>
3633
/// For internal use only.
3734
/// </summary>
38-
/// <value>
39-
/// For internal use only.
40-
/// </value>
4135
[JsonProperty("system", NullValueHandling = NullValueHandling.Ignore)]
4236
public dynamic System { get; set; }
4337
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/Counterexample.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,16 @@ public class Counterexample : BaseModel
2828
/// <summary>
2929
/// The text of the counterexample.
3030
/// </summary>
31-
/// <value>
32-
/// The text of the counterexample.
33-
/// </value>
3431
[JsonProperty("text", NullValueHandling = NullValueHandling.Ignore)]
3532
public string Text { get; set; }
3633
/// <summary>
3734
/// The timestamp for creation of the counterexample.
3835
/// </summary>
39-
/// <value>
40-
/// The timestamp for creation of the counterexample.
41-
/// </value>
4236
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
4337
public virtual DateTime Created { get; private set; }
4438
/// <summary>
4539
/// The timestamp for the last update to the counterexample.
4640
/// </summary>
47-
/// <value>
48-
/// The timestamp for the last update to the counterexample.
49-
/// </value>
5041
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
5142
public virtual DateTime Updated { get; private set; }
5243
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/CounterexampleCollection.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,11 @@ public class CounterexampleCollection : BaseModel
2828
/// <summary>
2929
/// An array of objects describing the examples marked as irrelevant input.
3030
/// </summary>
31-
/// <value>
32-
/// An array of objects describing the examples marked as irrelevant input.
33-
/// </value>
3431
[JsonProperty("counterexamples", NullValueHandling = NullValueHandling.Ignore)]
3532
public List<Counterexample> Counterexamples { get; set; }
3633
/// <summary>
3734
/// The pagination data for the returned objects.
3835
/// </summary>
39-
/// <value>
40-
/// The pagination data for the returned objects.
41-
/// </value>
4236
[JsonProperty("pagination", NullValueHandling = NullValueHandling.Ignore)]
4337
public Pagination Pagination { get; set; }
4438
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/CreateCounterexample.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,6 @@ public class CreateCounterexample : BaseModel
3131
/// - It cannot consist of only whitespace characters
3232
/// - It must be no longer than 1024 characters.
3333
/// </summary>
34-
/// <value>
35-
/// The text of a user input marked as irrelevant input. This string must conform to the following restrictions:
36-
///
37-
/// - It cannot contain carriage return, newline, or tab characters
38-
/// - It cannot consist of only whitespace characters
39-
/// - It must be no longer than 1024 characters.
40-
/// </value>
4134
[JsonProperty("text", NullValueHandling = NullValueHandling.Ignore)]
4235
public string Text { get; set; }
4336
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/CreateDialogNode.cs

Lines changed: 1 addition & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -229,159 +229,98 @@ public enum DigressOutSlotsEnum
229229
/// <summary>
230230
/// How the dialog node is processed.
231231
/// </summary>
232-
/// <value>
233-
/// How the dialog node is processed.
234-
/// </value>
235232
[JsonProperty("type", NullValueHandling = NullValueHandling.Ignore)]
236233
public NodeTypeEnum? NodeType { get; set; }
237234
/// <summary>
238235
/// How an `event_handler` node is processed.
239236
/// </summary>
240-
/// <value>
241-
/// How an `event_handler` node is processed.
242-
/// </value>
243237
[JsonProperty("event_name", NullValueHandling = NullValueHandling.Ignore)]
244238
public EventNameEnum? EventName { get; set; }
245239
/// <summary>
246240
/// Whether this top-level dialog node can be digressed into.
247241
/// </summary>
248-
/// <value>
249-
/// Whether this top-level dialog node can be digressed into.
250-
/// </value>
251242
[JsonProperty("digress_in", NullValueHandling = NullValueHandling.Ignore)]
252243
public DigressInEnum? DigressIn { get; set; }
253244
/// <summary>
254245
/// Whether this dialog node can be returned to after a digression.
255246
/// </summary>
256-
/// <value>
257-
/// Whether this dialog node can be returned to after a digression.
258-
/// </value>
259247
[JsonProperty("digress_out", NullValueHandling = NullValueHandling.Ignore)]
260248
public DigressOutEnum? DigressOut { get; set; }
261249
/// <summary>
262250
/// Whether the user can digress to top-level nodes while filling out slots.
263251
/// </summary>
264-
/// <value>
265-
/// Whether the user can digress to top-level nodes while filling out slots.
266-
/// </value>
267252
[JsonProperty("digress_out_slots", NullValueHandling = NullValueHandling.Ignore)]
268253
public DigressOutSlotsEnum? DigressOutSlots { get; set; }
269254
/// <summary>
270255
/// The dialog node ID. This string must conform to the following restrictions:
271256
/// - It can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
272257
/// - It must be no longer than 1024 characters.
273258
/// </summary>
274-
/// <value>
275-
/// The dialog node ID. This string must conform to the following restrictions:
276-
/// - It can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
277-
/// - It must be no longer than 1024 characters.
278-
/// </value>
279259
[JsonProperty("dialog_node", NullValueHandling = NullValueHandling.Ignore)]
280260
public string DialogNode { get; set; }
281261
/// <summary>
282262
/// The description of the dialog node. This string cannot contain carriage return, newline, or tab characters,
283263
/// and it must be no longer than 128 characters.
284264
/// </summary>
285-
/// <value>
286-
/// The description of the dialog node. This string cannot contain carriage return, newline, or tab characters,
287-
/// and it must be no longer than 128 characters.
288-
/// </value>
289265
[JsonProperty("description", NullValueHandling = NullValueHandling.Ignore)]
290266
public string Description { get; set; }
291267
/// <summary>
292268
/// The condition that will trigger the dialog node. This string cannot contain carriage return, newline, or tab
293269
/// characters, and it must be no longer than 2048 characters.
294270
/// </summary>
295-
/// <value>
296-
/// The condition that will trigger the dialog node. This string cannot contain carriage return, newline, or tab
297-
/// characters, and it must be no longer than 2048 characters.
298-
/// </value>
299271
[JsonProperty("conditions", NullValueHandling = NullValueHandling.Ignore)]
300272
public string Conditions { get; set; }
301273
/// <summary>
302274
/// The ID of the parent dialog node.
303275
/// </summary>
304-
/// <value>
305-
/// The ID of the parent dialog node.
306-
/// </value>
307276
[JsonProperty("parent", NullValueHandling = NullValueHandling.Ignore)]
308277
public string Parent { get; set; }
309278
/// <summary>
310279
/// The ID of the previous dialog node.
311280
/// </summary>
312-
/// <value>
313-
/// The ID of the previous dialog node.
314-
/// </value>
315281
[JsonProperty("previous_sibling", NullValueHandling = NullValueHandling.Ignore)]
316282
public string PreviousSibling { get; set; }
317283
/// <summary>
318284
/// The output of the dialog node. For more information about how to specify dialog node output, see the
319285
/// [documentation](https://console.bluemix.net/docs/services/conversation/dialog-overview.html#complex).
320286
/// </summary>
321-
/// <value>
322-
/// The output of the dialog node. For more information about how to specify dialog node output, see the
323-
/// [documentation](https://console.bluemix.net/docs/services/conversation/dialog-overview.html#complex).
324-
/// </value>
325287
[JsonProperty("output", NullValueHandling = NullValueHandling.Ignore)]
326-
public dynamic Output { get; set; }
288+
public DialogNodeOutput Output { get; set; }
327289
/// <summary>
328290
/// The context for the dialog node.
329291
/// </summary>
330-
/// <value>
331-
/// The context for the dialog node.
332-
/// </value>
333292
[JsonProperty("context", NullValueHandling = NullValueHandling.Ignore)]
334293
public object Context { get; set; }
335294
/// <summary>
336295
/// The metadata for the dialog node.
337296
/// </summary>
338-
/// <value>
339-
/// The metadata for the dialog node.
340-
/// </value>
341297
[JsonProperty("metadata", NullValueHandling = NullValueHandling.Ignore)]
342298
public object Metadata { get; set; }
343299
/// <summary>
344300
/// The next step to be executed in dialog processing.
345301
/// </summary>
346-
/// <value>
347-
/// The next step to be executed in dialog processing.
348-
/// </value>
349302
[JsonProperty("next_step", NullValueHandling = NullValueHandling.Ignore)]
350303
public DialogNodeNextStep NextStep { get; set; }
351304
/// <summary>
352305
/// An array of objects describing any actions to be invoked by the dialog node.
353306
/// </summary>
354-
/// <value>
355-
/// An array of objects describing any actions to be invoked by the dialog node.
356-
/// </value>
357307
[JsonProperty("actions", NullValueHandling = NullValueHandling.Ignore)]
358308
public List<DialogNodeAction> Actions { get; set; }
359309
/// <summary>
360310
/// The alias used to identify the dialog node. This string must conform to the following restrictions:
361311
/// - It can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
362312
/// - It must be no longer than 64 characters.
363313
/// </summary>
364-
/// <value>
365-
/// The alias used to identify the dialog node. This string must conform to the following restrictions:
366-
/// - It can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
367-
/// - It must be no longer than 64 characters.
368-
/// </value>
369314
[JsonProperty("title", NullValueHandling = NullValueHandling.Ignore)]
370315
public string Title { get; set; }
371316
/// <summary>
372317
/// The location in the dialog context where output is stored.
373318
/// </summary>
374-
/// <value>
375-
/// The location in the dialog context where output is stored.
376-
/// </value>
377319
[JsonProperty("variable", NullValueHandling = NullValueHandling.Ignore)]
378320
public string Variable { get; set; }
379321
/// <summary>
380322
/// A label that can be displayed externally to describe the purpose of the node to users.
381323
/// </summary>
382-
/// <value>
383-
/// A label that can be displayed externally to describe the purpose of the node to users.
384-
/// </value>
385324
[JsonProperty("user_label", NullValueHandling = NullValueHandling.Ignore)]
386325
public string UserLabel { get; set; }
387326
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/CreateEntity.cs

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -31,46 +31,27 @@ public class CreateEntity : BaseModel
3131
/// - It cannot begin with the reserved prefix `sys-`.
3232
/// - It must be no longer than 64 characters.
3333
/// </summary>
34-
/// <value>
35-
/// The name of the entity. This string must conform to the following restrictions:
36-
/// - It can contain only Unicode alphanumeric, underscore, and hyphen characters.
37-
/// - It cannot begin with the reserved prefix `sys-`.
38-
/// - It must be no longer than 64 characters.
39-
/// </value>
4034
[JsonProperty("entity", NullValueHandling = NullValueHandling.Ignore)]
4135
public string Entity { get; set; }
4236
/// <summary>
4337
/// The description of the entity. This string cannot contain carriage return, newline, or tab characters, and
4438
/// it must be no longer than 128 characters.
4539
/// </summary>
46-
/// <value>
47-
/// The description of the entity. This string cannot contain carriage return, newline, or tab characters, and
48-
/// it must be no longer than 128 characters.
49-
/// </value>
5040
[JsonProperty("description", NullValueHandling = NullValueHandling.Ignore)]
5141
public string Description { get; set; }
5242
/// <summary>
5343
/// Any metadata related to the value.
5444
/// </summary>
55-
/// <value>
56-
/// Any metadata related to the value.
57-
/// </value>
5845
[JsonProperty("metadata", NullValueHandling = NullValueHandling.Ignore)]
5946
public object Metadata { get; set; }
6047
/// <summary>
6148
/// An array of objects describing the entity values.
6249
/// </summary>
63-
/// <value>
64-
/// An array of objects describing the entity values.
65-
/// </value>
6650
[JsonProperty("values", NullValueHandling = NullValueHandling.Ignore)]
6751
public List<CreateValue> Values { get; set; }
6852
/// <summary>
6953
/// Whether to use fuzzy matching for the entity.
7054
/// </summary>
71-
/// <value>
72-
/// Whether to use fuzzy matching for the entity.
73-
/// </value>
7455
[JsonProperty("fuzzy_match", NullValueHandling = NullValueHandling.Ignore)]
7556
public bool? FuzzyMatch { get; set; }
7657
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/CreateExample.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,11 @@ public class CreateExample : BaseModel
3131
/// - It cannot consist of only whitespace characters.
3232
/// - It must be no longer than 1024 characters.
3333
/// </summary>
34-
/// <value>
35-
/// The text of a user input example. This string must conform to the following restrictions:
36-
/// - It cannot contain carriage return, newline, or tab characters.
37-
/// - It cannot consist of only whitespace characters.
38-
/// - It must be no longer than 1024 characters.
39-
/// </value>
4034
[JsonProperty("text", NullValueHandling = NullValueHandling.Ignore)]
4135
public string Text { get; set; }
4236
/// <summary>
4337
/// An array of contextual entity mentions.
4438
/// </summary>
45-
/// <value>
46-
/// An array of contextual entity mentions.
47-
/// </value>
4839
[JsonProperty("mentions", NullValueHandling = NullValueHandling.Ignore)]
4940
public List<Mentions> Mentions { get; set; }
5041
}

0 commit comments

Comments
 (0)