File tree 5 files changed +25
-0
lines changed
5 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ export type Authentication = {
22
22
23
23
platform ?: Platform | null ;
24
24
25
+ /**
26
+ * Owner of the resource.
27
+ */
28
+ owner ?: string | null ;
29
+
25
30
input : AuthInputPartial ;
26
31
27
32
/**
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ export type Destination = {
19
19
*/
20
20
name : string ;
21
21
22
+ /**
23
+ * Owner of the resource.
24
+ */
25
+ owner ?: string | null ;
26
+
22
27
input : DestinationInput ;
23
28
24
29
/**
Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ export type Source = {
13
13
14
14
name : string ;
15
15
16
+ /**
17
+ * Owner of the resource.
18
+ */
19
+ owner ?: string | null ;
20
+
16
21
input ?: SourceInput ;
17
22
18
23
/**
Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ export type Task = {
36
36
*/
37
37
nextRun ?: string ;
38
38
39
+ /**
40
+ * Owner of the resource.
41
+ */
42
+ owner ?: string | null ;
43
+
39
44
input ?: TaskInput ;
40
45
41
46
/**
Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ export type Transformation = {
26
26
*/
27
27
description ?: string ;
28
28
29
+ /**
30
+ * Owner of the resource.
31
+ */
32
+ owner ?: string | null ;
33
+
29
34
/**
30
35
* Date of creation in RFC 3339 format.
31
36
*/
You can’t perform that action at this time.
0 commit comments