You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: algoliasearch/Clients/IngestionClient.cs
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1139,6 +1139,7 @@ public interface IIngestionClient
1139
1139
/// <param name="sourceType">Filters the tasks with the specified source type. (optional)</param>
1140
1140
/// <param name="destinationID">Destination IDs for filtering the list of tasks. (optional)</param>
1141
1141
/// <param name="triggerType">Type of task trigger for filtering the list of tasks. (optional)</param>
1142
+
/// <param name="withEmailNotifications">If specified, the response only includes tasks with notifications.email.enabled set to this value. (optional)</param>
1142
1143
/// <param name="sort">Property by which to sort the list of tasks. (optional)</param>
1143
1144
/// <param name="order">Sort order of the response, ascending or descending. (optional)</param>
1144
1145
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -1147,7 +1148,7 @@ public interface IIngestionClient
1147
1148
/// <exception cref="Algolia.Search.Exceptions.AlgoliaApiException">Thrown when the API call was rejected by Algolia</exception>
1148
1149
/// <exception cref="Algolia.Search.Exceptions.AlgoliaUnreachableHostException">Thrown when the client failed to call the endpoint</exception>
/// Retrieves a list of tasks. (Synchronous version)
@@ -1165,6 +1166,7 @@ public interface IIngestionClient
1165
1166
/// <param name="sourceType">Filters the tasks with the specified source type. (optional)</param>
1166
1167
/// <param name="destinationID">Destination IDs for filtering the list of tasks. (optional)</param>
1167
1168
/// <param name="triggerType">Type of task trigger for filtering the list of tasks. (optional)</param>
1169
+
/// <param name="withEmailNotifications">If specified, the response only includes tasks with notifications.email.enabled set to this value. (optional)</param>
1168
1170
/// <param name="sort">Property by which to sort the list of tasks. (optional)</param>
1169
1171
/// <param name="order">Sort order of the response, ascending or descending. (optional)</param>
1170
1172
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -1173,7 +1175,7 @@ public interface IIngestionClient
1173
1175
/// <exception cref="Algolia.Search.Exceptions.AlgoliaApiException">Thrown when the API call was rejected by Algolia</exception>
1174
1176
/// <exception cref="Algolia.Search.Exceptions.AlgoliaUnreachableHostException">Thrown when the client failed to call the endpoint</exception>
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
3
+
//
4
+
usingSystem;
5
+
usingSystem.Text;
6
+
usingSystem.Linq;
7
+
usingSystem.Text.Json.Serialization;
8
+
usingSystem.Collections.Generic;
9
+
usingAlgolia.Search.Serializer;
10
+
usingSystem.Text.Json;
11
+
12
+
namespaceAlgolia.Search.Models.Ingestion;
13
+
14
+
/// <summary>
15
+
/// EmailNotifications
16
+
/// </summary>
17
+
publicpartialclassEmailNotifications
18
+
{
19
+
/// <summary>
20
+
/// Initializes a new instance of the EmailNotifications class.
21
+
/// </summary>
22
+
publicEmailNotifications()
23
+
{
24
+
}
25
+
26
+
/// <summary>
27
+
/// Whether to send email notifications, note that this doesn't prevent the task from being blocked.
28
+
/// </summary>
29
+
/// <value>Whether to send email notifications, note that this doesn't prevent the task from being blocked.</value>
30
+
[JsonPropertyName("enabled")]
31
+
publicbool?Enabled{get;set;}
32
+
33
+
/// <summary>
34
+
/// Returns the string presentation of the object
35
+
/// </summary>
36
+
/// <returns>String presentation of the object</returns>
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
3
+
//
4
+
usingSystem;
5
+
usingSystem.Text;
6
+
usingSystem.Linq;
7
+
usingSystem.Text.Json.Serialization;
8
+
usingSystem.Collections.Generic;
9
+
usingAlgolia.Search.Serializer;
10
+
usingSystem.Text.Json;
11
+
12
+
namespaceAlgolia.Search.Models.Ingestion;
13
+
14
+
/// <summary>
15
+
/// Notifications settings for a task.
16
+
/// </summary>
17
+
publicpartialclassNotifications
18
+
{
19
+
/// <summary>
20
+
/// Initializes a new instance of the Notifications class.
21
+
/// </summary>
22
+
[JsonConstructor]
23
+
publicNotifications(){}
24
+
/// <summary>
25
+
/// Initializes a new instance of the Notifications class.
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
3
+
//
4
+
usingSystem;
5
+
usingSystem.Text;
6
+
usingSystem.Linq;
7
+
usingSystem.Text.Json.Serialization;
8
+
usingSystem.Collections.Generic;
9
+
usingAlgolia.Search.Serializer;
10
+
usingSystem.Text.Json;
11
+
12
+
namespaceAlgolia.Search.Models.Ingestion;
13
+
14
+
/// <summary>
15
+
/// Set of rules for a task.
16
+
/// </summary>
17
+
publicpartialclassPolicies
18
+
{
19
+
/// <summary>
20
+
/// Initializes a new instance of the Policies class.
21
+
/// </summary>
22
+
publicPolicies()
23
+
{
24
+
}
25
+
26
+
/// <summary>
27
+
/// The number of critical failures in a row before blocking the task and sending a notification.
28
+
/// </summary>
29
+
/// <value>The number of critical failures in a row before blocking the task and sending a notification.</value>
30
+
[JsonPropertyName("criticalThreshold")]
31
+
publicint?CriticalThreshold{get;set;}
32
+
33
+
/// <summary>
34
+
/// Returns the string presentation of the object
35
+
/// </summary>
36
+
/// <returns>String presentation of the object</returns>
0 commit comments