File tree Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ export type Authentication = {
2222
2323 platform ?: Platform | null ;
2424
25+ /**
26+ * Owner of the resource.
27+ */
28+ owner ?: string | null ;
29+
2530 input : AuthInputPartial ;
2631
2732 /**
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ export type Destination = {
1919 */
2020 name : string ;
2121
22+ /**
23+ * Owner of the resource.
24+ */
25+ owner ?: string | null ;
26+
2227 input : DestinationInput ;
2328
2429 /**
Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ export type Source = {
1313
1414 name : string ;
1515
16+ /**
17+ * Owner of the resource.
18+ */
19+ owner ?: string | null ;
20+
1621 input ?: SourceInput ;
1722
1823 /**
Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ export type Task = {
3636 */
3737 nextRun ?: string ;
3838
39+ /**
40+ * Owner of the resource.
41+ */
42+ owner ?: string | null ;
43+
3944 input ?: TaskInput ;
4045
4146 /**
Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ export type Transformation = {
2626 */
2727 description ?: string ;
2828
29+ /**
30+ * Owner of the resource.
31+ */
32+ owner ?: string | null ;
33+
2934 /**
3035 * Date of creation in RFC 3339 format.
3136 */
You can’t perform that action at this time.
0 commit comments