File tree Expand file tree Collapse file tree 5 files changed +15
-0
lines changed
src/main/scala/algoliasearch/ingestion Expand file tree Collapse file tree 5 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ import algoliasearch.ingestion.Platform._
28
28
* Universally unique identifier (UUID) of an authentication resource.
29
29
* @param name
30
30
* Descriptive name for the resource.
31
+ * @param owner
32
+ * Owner of the resource.
31
33
* @param createdAt
32
34
* Date of creation in RFC 3339 format.
33
35
* @param updatedAt
@@ -38,6 +40,7 @@ case class Authentication(
38
40
`type` : AuthenticationType ,
39
41
name : String ,
40
42
platform : Option [Platform ] = scala.None ,
43
+ owner : Option [String ] = scala.None ,
41
44
input : AuthInputPartial ,
42
45
createdAt : String ,
43
46
updatedAt : Option [String ] = scala.None
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ import algoliasearch.ingestion.DestinationType._
27
27
* Universally unique identifier (UUID) of a destination resource.
28
28
* @param name
29
29
* Descriptive name for the resource.
30
+ * @param owner
31
+ * Owner of the resource.
30
32
* @param createdAt
31
33
* Date of creation in RFC 3339 format.
32
34
* @param updatedAt
@@ -38,6 +40,7 @@ case class Destination(
38
40
destinationID : String ,
39
41
`type` : DestinationType ,
40
42
name : String ,
43
+ owner : Option [String ] = scala.None ,
41
44
input : DestinationInput ,
42
45
createdAt : String ,
43
46
updatedAt : Option [String ] = scala.None ,
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ import algoliasearch.ingestion.SourceType._
25
25
*
26
26
* @param sourceID
27
27
* Universally uniqud identifier (UUID) of a source.
28
+ * @param owner
29
+ * Owner of the resource.
28
30
* @param authenticationID
29
31
* Universally unique identifier (UUID) of an authentication resource.
30
32
* @param createdAt
@@ -36,6 +38,7 @@ case class Source(
36
38
sourceID : String ,
37
39
`type` : SourceType ,
38
40
name : String ,
41
+ owner : Option [String ] = scala.None ,
39
42
input : Option [SourceInput ] = scala.None ,
40
43
authenticationID : Option [String ] = scala.None ,
41
44
createdAt : String ,
Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ import algoliasearch.ingestion.ActionType._
35
35
* The last time the scheduled task ran in RFC 3339 format.
36
36
* @param nextRun
37
37
* The next scheduled run of the task in RFC 3339 format.
38
+ * @param owner
39
+ * Owner of the resource.
38
40
* @param enabled
39
41
* Whether the task is enabled.
40
42
* @param failureThreshold
@@ -53,6 +55,7 @@ case class Task(
53
55
cron : Option [String ] = scala.None ,
54
56
lastRun : Option [String ] = scala.None ,
55
57
nextRun : Option [String ] = scala.None ,
58
+ owner : Option [String ] = scala.None ,
56
59
input : Option [TaskInput ] = scala.None ,
57
60
enabled : Boolean ,
58
61
failureThreshold : Option [Int ] = scala.None ,
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ package algoliasearch.ingestion
31
31
* The uniquely identified name of your transformation.
32
32
* @param description
33
33
* A descriptive name for your transformation of what it does.
34
+ * @param owner
35
+ * Owner of the resource.
34
36
* @param createdAt
35
37
* Date of creation in RFC 3339 format.
36
38
* @param updatedAt
@@ -42,6 +44,7 @@ case class Transformation(
42
44
code : String ,
43
45
name : String ,
44
46
description : Option [String ] = scala.None ,
47
+ owner : Option [String ] = scala.None ,
45
48
createdAt : String ,
46
49
updatedAt : Option [String ] = scala.None
47
50
)
You can’t perform that action at this time.
0 commit comments