File tree 5 files changed +15
-0
lines changed
algoliasearch/ingestion/models
5 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 27
27
"type" : "type" ,
28
28
"name" : "name" ,
29
29
"platform" : "platform" ,
30
+ "owner" : "owner" ,
30
31
"input" : "input" ,
31
32
"created_at" : "createdAt" ,
32
33
"updated_at" : "updatedAt" ,
@@ -48,6 +49,8 @@ class Authentication(BaseModel):
48
49
name : str
49
50
""" Descriptive name for the resource. """
50
51
platform : Optional [Platform ] = None
52
+ owner : Optional [str ] = None
53
+ """ Owner of the resource. """
51
54
input : AuthInputPartial
52
55
created_at : str
53
56
""" Date of creation in RFC 3339 format. """
Original file line number Diff line number Diff line change 25
25
"destination_id" : "destinationID" ,
26
26
"type" : "type" ,
27
27
"name" : "name" ,
28
+ "owner" : "owner" ,
28
29
"input" : "input" ,
29
30
"created_at" : "createdAt" ,
30
31
"updated_at" : "updatedAt" ,
@@ -47,6 +48,8 @@ class Destination(BaseModel):
47
48
type : DestinationType
48
49
name : str
49
50
""" Descriptive name for the resource. """
51
+ owner : Optional [str ] = None
52
+ """ Owner of the resource. """
50
53
input : DestinationInput
51
54
created_at : str
52
55
""" Date of creation in RFC 3339 format. """
Original file line number Diff line number Diff line change 25
25
"source_id" : "sourceID" ,
26
26
"type" : "type" ,
27
27
"name" : "name" ,
28
+ "owner" : "owner" ,
28
29
"input" : "input" ,
29
30
"authentication_id" : "authenticationID" ,
30
31
"created_at" : "createdAt" ,
@@ -45,6 +46,8 @@ class Source(BaseModel):
45
46
""" Universally uniqud identifier (UUID) of a source. """
46
47
type : SourceType
47
48
name : str
49
+ owner : Optional [str ] = None
50
+ """ Owner of the resource. """
48
51
input : Optional [SourceInput ] = None
49
52
authentication_id : Optional [str ] = None
50
53
""" Universally unique identifier (UUID) of an authentication resource. """
Original file line number Diff line number Diff line change 30
30
"cron" : "cron" ,
31
31
"last_run" : "lastRun" ,
32
32
"next_run" : "nextRun" ,
33
+ "owner" : "owner" ,
33
34
"input" : "input" ,
34
35
"enabled" : "enabled" ,
35
36
"failure_threshold" : "failureThreshold" ,
@@ -64,6 +65,8 @@ class Task(BaseModel):
64
65
""" The last time the scheduled task ran in RFC 3339 format. """
65
66
next_run : Optional [str ] = None
66
67
""" The next scheduled run of the task in RFC 3339 format. """
68
+ owner : Optional [str ] = None
69
+ """ Owner of the resource. """
67
70
input : Optional [TaskInput ] = None
68
71
enabled : bool
69
72
""" Whether the task is enabled. """
Original file line number Diff line number Diff line change 24
24
"code" : "code" ,
25
25
"name" : "name" ,
26
26
"description" : "description" ,
27
+ "owner" : "owner" ,
27
28
"created_at" : "createdAt" ,
28
29
"updated_at" : "updatedAt" ,
29
30
}
@@ -48,6 +49,8 @@ class Transformation(BaseModel):
48
49
""" The uniquely identified name of your transformation. """
49
50
description : Optional [str ] = None
50
51
""" A descriptive name for your transformation of what it does. """
52
+ owner : Optional [str ] = None
53
+ """ Owner of the resource. """
51
54
created_at : str
52
55
""" Date of creation in RFC 3339 format. """
53
56
updated_at : Optional [str ] = None
You can’t perform that action at this time.
0 commit comments