@@ -13,7 +13,7 @@ class ExtendedFields(Model):
13
13
NOTE: This class is auto generated by the swagger code generator program.
14
14
Do not edit the class manually.
15
15
"""
16
- def __init__ (self , user_id = None , status_detail = None , logs = None , last_update = None , envs = None , parent_job_id = None , timing_url = None , tasks = None ):
16
+ def __init__ (self , user_id = None , status_detail = None , logs = None , last_update = None , envs = None , source_file = None , parent_job_id = None , timing_url = None , tasks = None ):
17
17
"""
18
18
ExtendedFields - a model defined in Swagger
19
19
@@ -27,6 +27,8 @@ def __init__(self, user_id=None, status_detail=None, logs=None, last_update=None
27
27
:type last_update: datetime
28
28
:param envs: The envs of this ExtendedFields.
29
29
:type envs: object
30
+ :param source_file: The source_file of this ExtendedFields.
31
+ :type source_file: str
30
32
:param parent_job_id: The parent_job_id of this ExtendedFields.
31
33
:type parent_job_id: str
32
34
:param timing_url: The timing_url of this ExtendedFields.
@@ -40,6 +42,7 @@ def __init__(self, user_id=None, status_detail=None, logs=None, last_update=None
40
42
'logs' : object ,
41
43
'last_update' : datetime ,
42
44
'envs' : object ,
45
+ 'source_file' : str ,
43
46
'parent_job_id' : str ,
44
47
'timing_url' : str ,
45
48
'tasks' : List [TaskMetadata ]
@@ -51,6 +54,7 @@ def __init__(self, user_id=None, status_detail=None, logs=None, last_update=None
51
54
'logs' : 'logs' ,
52
55
'last_update' : 'lastUpdate' ,
53
56
'envs' : 'envs' ,
57
+ 'source_file' : 'sourceFile' ,
54
58
'parent_job_id' : 'parentJobId' ,
55
59
'timing_url' : 'timingUrl' ,
56
60
'tasks' : 'tasks'
@@ -61,6 +65,7 @@ def __init__(self, user_id=None, status_detail=None, logs=None, last_update=None
61
65
self ._logs = logs
62
66
self ._last_update = last_update
63
67
self ._envs = envs
68
+ self ._source_file = source_file
64
69
self ._parent_job_id = parent_job_id
65
70
self ._timing_url = timing_url
66
71
self ._tasks = tasks
@@ -81,7 +86,7 @@ def from_dict(cls, dikt):
81
86
def user_id (self ):
82
87
"""
83
88
Gets the user_id of this ExtendedFields.
84
- The user associated with the job
89
+ The user associated with the job.
85
90
86
91
:return: The user_id of this ExtendedFields.
87
92
:rtype: str
@@ -92,7 +97,7 @@ def user_id(self):
92
97
def user_id (self , user_id ):
93
98
"""
94
99
Sets the user_id of this ExtendedFields.
95
- The user associated with the job
100
+ The user associated with the job.
96
101
97
102
:param user_id: The user_id of this ExtendedFields.
98
103
:type user_id: str
@@ -127,7 +132,7 @@ def status_detail(self, status_detail):
127
132
def logs (self ):
128
133
"""
129
134
Gets the logs of this ExtendedFields.
130
- Map of type of log file to its file location
135
+ Map of type of log file to its file location.
131
136
132
137
:return: The logs of this ExtendedFields.
133
138
:rtype: object
@@ -138,7 +143,7 @@ def logs(self):
138
143
def logs (self , logs ):
139
144
"""
140
145
Sets the logs of this ExtendedFields.
141
- Map of type of log file to its file location
146
+ Map of type of log file to its file location.
142
147
143
148
:param logs: The logs of this ExtendedFields.
144
149
:type logs: object
@@ -150,7 +155,7 @@ def logs(self, logs):
150
155
def last_update (self ):
151
156
"""
152
157
Gets the last_update of this ExtendedFields.
153
- Job last update datetime in ISO8601 format
158
+ Job last update datetime in ISO8601 format.
154
159
155
160
:return: The last_update of this ExtendedFields.
156
161
:rtype: datetime
@@ -161,7 +166,7 @@ def last_update(self):
161
166
def last_update (self , last_update ):
162
167
"""
163
168
Sets the last_update of this ExtendedFields.
164
- Job last update datetime in ISO8601 format
169
+ Job last update datetime in ISO8601 format.
165
170
166
171
:param last_update: The last_update of this ExtendedFields.
167
172
:type last_update: datetime
@@ -173,7 +178,7 @@ def last_update(self, last_update):
173
178
def envs (self ):
174
179
"""
175
180
Gets the envs of this ExtendedFields.
176
- Map of ENV variables associated with the job
181
+ Map of ENV variables key values associated with the job.
177
182
178
183
:return: The envs of this ExtendedFields.
179
184
:rtype: object
@@ -184,19 +189,42 @@ def envs(self):
184
189
def envs (self , envs ):
185
190
"""
186
191
Sets the envs of this ExtendedFields.
187
- Map of ENV variables associated with the job
192
+ Map of ENV variables key values associated with the job.
188
193
189
194
:param envs: The envs of this ExtendedFields.
190
195
:type envs: object
191
196
"""
192
197
193
198
self ._envs = envs
194
199
200
+ @property
201
+ def source_file (self ):
202
+ """
203
+ Gets the source_file of this ExtendedFields.
204
+ The text of the script executed by this job.
205
+
206
+ :return: The source_file of this ExtendedFields.
207
+ :rtype: str
208
+ """
209
+ return self ._source_file
210
+
211
+ @source_file .setter
212
+ def source_file (self , source_file ):
213
+ """
214
+ Sets the source_file of this ExtendedFields.
215
+ The text of the script executed by this job.
216
+
217
+ :param source_file: The source_file of this ExtendedFields.
218
+ :type source_file: str
219
+ """
220
+
221
+ self ._source_file = source_file
222
+
195
223
@property
196
224
def parent_job_id (self ):
197
225
"""
198
226
Gets the parent_job_id of this ExtendedFields.
199
- The parent job ID for the job
227
+ The parent job ID for the job.
200
228
201
229
:return: The parent_job_id of this ExtendedFields.
202
230
:rtype: str
@@ -207,7 +235,7 @@ def parent_job_id(self):
207
235
def parent_job_id (self , parent_job_id ):
208
236
"""
209
237
Sets the parent_job_id of this ExtendedFields.
210
- The parent job ID for the job
238
+ The parent job ID for the job.
211
239
212
240
:param parent_job_id: The parent_job_id of this ExtendedFields.
213
241
:type parent_job_id: str
0 commit comments