File tree 5 files changed +20
-0
lines changed
client/src/commonMain/kotlin/com/algolia/client/model/ingestion
5 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import kotlinx.serialization.json.*
13
13
* @param input
14
14
* @param createdAt Date of creation in RFC 3339 format.
15
15
* @param platform
16
+ * @param owner Owner of the resource.
16
17
* @param updatedAt Date of last update in RFC 3339 format.
17
18
*/
18
19
@Serializable
@@ -33,6 +34,9 @@ public data class Authentication(
33
34
34
35
@SerialName(value = " platform" ) val platform : Platform ? = null ,
35
36
37
+ /* * Owner of the resource. */
38
+ @SerialName(value = " owner" ) val owner : String? = null ,
39
+
36
40
/* * Date of last update in RFC 3339 format. */
37
41
@SerialName(value = " updatedAt" ) val updatedAt : String? = null ,
38
42
)
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import kotlinx.serialization.json.*
12
12
* @param name Descriptive name for the resource.
13
13
* @param input
14
14
* @param createdAt Date of creation in RFC 3339 format.
15
+ * @param owner Owner of the resource.
15
16
* @param updatedAt Date of last update in RFC 3339 format.
16
17
* @param authenticationID Universally unique identifier (UUID) of an authentication resource.
17
18
* @param transformationIDs
@@ -32,6 +33,9 @@ public data class Destination(
32
33
/* * Date of creation in RFC 3339 format. */
33
34
@SerialName(value = " createdAt" ) val createdAt : String ,
34
35
36
+ /* * Owner of the resource. */
37
+ @SerialName(value = " owner" ) val owner : String? = null ,
38
+
35
39
/* * Date of last update in RFC 3339 format. */
36
40
@SerialName(value = " updatedAt" ) val updatedAt : String? = null ,
37
41
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import kotlinx.serialization.json.*
11
11
* @param type
12
12
* @param name
13
13
* @param createdAt Date of creation in RFC 3339 format.
14
+ * @param owner Owner of the resource.
14
15
* @param input
15
16
* @param authenticationID Universally unique identifier (UUID) of an authentication resource.
16
17
* @param updatedAt Date of last update in RFC 3339 format.
@@ -28,6 +29,9 @@ public data class Source(
28
29
/* * Date of creation in RFC 3339 format. */
29
30
@SerialName(value = " createdAt" ) val createdAt : String ,
30
31
32
+ /* * Owner of the resource. */
33
+ @SerialName(value = " owner" ) val owner : String? = null ,
34
+
31
35
@SerialName(value = " input" ) val input : SourceInput ? = null ,
32
36
33
37
/* * Universally unique identifier (UUID) of an authentication resource. */
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import kotlinx.serialization.json.*
15
15
* @param cron Cron expression for the task's schedule.
16
16
* @param lastRun The last time the scheduled task ran in RFC 3339 format.
17
17
* @param nextRun The next scheduled run of the task in RFC 3339 format.
18
+ * @param owner Owner of the resource.
18
19
* @param input
19
20
* @param failureThreshold Maximum accepted percentage of failures for a task run to finish successfully.
20
21
* @param action
@@ -51,6 +52,9 @@ public data class Task(
51
52
/* * The next scheduled run of the task in RFC 3339 format. */
52
53
@SerialName(value = " nextRun" ) val nextRun : String? = null ,
53
54
55
+ /* * Owner of the resource. */
56
+ @SerialName(value = " owner" ) val owner : String? = null ,
57
+
54
58
@SerialName(value = " input" ) val input : TaskInput ? = null ,
55
59
56
60
/* * Maximum accepted percentage of failures for a task run to finish successfully. */
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import kotlinx.serialization.json.*
13
13
* @param createdAt Date of creation in RFC 3339 format.
14
14
* @param authenticationIDs The authentications associated with the current transformation.
15
15
* @param description A descriptive name for your transformation of what it does.
16
+ * @param owner Owner of the resource.
16
17
* @param updatedAt Date of last update in RFC 3339 format.
17
18
*/
18
19
@Serializable
@@ -36,6 +37,9 @@ public data class Transformation(
36
37
/* * A descriptive name for your transformation of what it does. */
37
38
@SerialName(value = " description" ) val description : String? = null ,
38
39
40
+ /* * Owner of the resource. */
41
+ @SerialName(value = " owner" ) val owner : String? = null ,
42
+
39
43
/* * Date of last update in RFC 3339 format. */
40
44
@SerialName(value = " updatedAt" ) val updatedAt : String? = null ,
41
45
)
You can’t perform that action at this time.
0 commit comments