huaweicloudsdkvas 3.1.142__py2.py3-none-any.whl → 3.1.143__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- huaweicloudsdkvas/v2/model/create_response_body.py +3 -3
- huaweicloudsdkvas/v2/model/create_tasks_request.py +5 -5
- huaweicloudsdkvas/v2/model/create_tasks_request_body.py +19 -19
- huaweicloudsdkvas/v2/model/create_tasks_response.py +3 -3
- huaweicloudsdkvas/v2/model/delete_task_request.py +5 -5
- huaweicloudsdkvas/v2/model/delete_task_response.py +1 -1
- huaweicloudsdkvas/v2/model/list_tasks_details_request.py +21 -21
- huaweicloudsdkvas/v2/model/list_tasks_details_response.py +5 -5
- huaweicloudsdkvas/v2/model/show_task_request.py +5 -5
- huaweicloudsdkvas/v2/model/show_task_response.py +43 -43
- huaweicloudsdkvas/v2/model/start_task_request.py +5 -5
- huaweicloudsdkvas/v2/model/start_task_response.py +1 -1
- huaweicloudsdkvas/v2/model/stop_task_request.py +5 -5
- huaweicloudsdkvas/v2/model/stop_task_response.py +1 -1
- huaweicloudsdkvas/v2/model/task_details.py +41 -41
- huaweicloudsdkvas/v2/model/task_details_error.py +5 -5
- huaweicloudsdkvas/v2/model/task_details_service_title.py +5 -5
- huaweicloudsdkvas/v2/model/task_hosting_result.py +3 -3
- huaweicloudsdkvas/v2/model/task_hosting_result_hosting_result.py +9 -9
- huaweicloudsdkvas/v2/model/task_input.py +7 -7
- huaweicloudsdkvas/v2/model/task_input_data.py +23 -23
- huaweicloudsdkvas/v2/model/task_input_vcn.py +9 -9
- huaweicloudsdkvas/v2/model/task_output.py +11 -11
- huaweicloudsdkvas/v2/model/task_output_dis.py +5 -5
- huaweicloudsdkvas/v2/model/task_output_for_display.py +11 -11
- huaweicloudsdkvas/v2/model/task_output_hosting.py +3 -3
- huaweicloudsdkvas/v2/model/task_output_hosting_for_display.py +7 -7
- huaweicloudsdkvas/v2/model/task_output_hosting_for_display_obs.py +5 -5
- huaweicloudsdkvas/v2/model/task_output_localpath.py +5 -5
- huaweicloudsdkvas/v2/model/task_output_obs.py +7 -7
- huaweicloudsdkvas/v2/model/task_output_webhook.py +7 -7
- huaweicloudsdkvas/v2/model/task_service_config.py +3 -3
- huaweicloudsdkvas/v2/model/task_timing.py +15 -15
- huaweicloudsdkvas/v2/model/task_timing_frequency.py +9 -9
- huaweicloudsdkvas/v2/model/task_timing_periods.py +5 -5
- huaweicloudsdkvas/v2/model/update_task_request.py +7 -7
- huaweicloudsdkvas/v2/model/update_task_request_body.py +13 -13
- huaweicloudsdkvas/v2/model/update_task_response.py +41 -41
- huaweicloudsdkvas/v2/vas_async_client.py +7 -7
- huaweicloudsdkvas/v2/vas_client.py +7 -7
- {huaweicloudsdkvas-3.1.142.dist-info → huaweicloudsdkvas-3.1.143.dist-info}/METADATA +2 -2
- huaweicloudsdkvas-3.1.143.dist-info/RECORD +50 -0
- huaweicloudsdkvas-3.1.142.dist-info/RECORD +0 -50
- {huaweicloudsdkvas-3.1.142.dist-info → huaweicloudsdkvas-3.1.143.dist-info}/LICENSE +0 -0
- {huaweicloudsdkvas-3.1.142.dist-info → huaweicloudsdkvas-3.1.143.dist-info}/WHEEL +0 -0
- {huaweicloudsdkvas-3.1.142.dist-info → huaweicloudsdkvas-3.1.143.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class TaskOutputLocalpath:
|
|
27
27
|
}
|
28
28
|
|
29
29
|
def __init__(self, mount_source_path=None, data_category=None):
|
30
|
-
"""TaskOutputLocalpath
|
30
|
+
r"""TaskOutputLocalpath
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
@@ -49,7 +49,7 @@ class TaskOutputLocalpath:
|
|
49
49
|
|
50
50
|
@property
|
51
51
|
def mount_source_path(self):
|
52
|
-
"""Gets the mount_source_path of this TaskOutputLocalpath.
|
52
|
+
r"""Gets the mount_source_path of this TaskOutputLocalpath.
|
53
53
|
|
54
54
|
挂载的源路径,存放作业运行结果的路径,选用localpath类型输出时必填。必须为linux路径,且为选用的边缘运行池挂载路径的子路径,长度不超过255。
|
55
55
|
|
@@ -60,7 +60,7 @@ class TaskOutputLocalpath:
|
|
60
60
|
|
61
61
|
@mount_source_path.setter
|
62
62
|
def mount_source_path(self, mount_source_path):
|
63
|
-
"""Sets the mount_source_path of this TaskOutputLocalpath.
|
63
|
+
r"""Sets the mount_source_path of this TaskOutputLocalpath.
|
64
64
|
|
65
65
|
挂载的源路径,存放作业运行结果的路径,选用localpath类型输出时必填。必须为linux路径,且为选用的边缘运行池挂载路径的子路径,长度不超过255。
|
66
66
|
|
@@ -71,7 +71,7 @@ class TaskOutputLocalpath:
|
|
71
71
|
|
72
72
|
@property
|
73
73
|
def data_category(self):
|
74
|
-
"""Gets the data_category of this TaskOutputLocalpath.
|
74
|
+
r"""Gets the data_category of this TaskOutputLocalpath.
|
75
75
|
|
76
76
|
作业输出数据类别的列表,选填,仅部分服务需要。当输出类型下有这个列表时,表示希望这个输出类型下存放dataCategory列表内的数据。
|
77
77
|
|
@@ -82,7 +82,7 @@ class TaskOutputLocalpath:
|
|
82
82
|
|
83
83
|
@data_category.setter
|
84
84
|
def data_category(self, data_category):
|
85
|
-
"""Sets the data_category of this TaskOutputLocalpath.
|
85
|
+
r"""Sets the data_category of this TaskOutputLocalpath.
|
86
86
|
|
87
87
|
作业输出数据类别的列表,选填,仅部分服务需要。当输出类型下有这个列表时,表示希望这个输出类型下存放dataCategory列表内的数据。
|
88
88
|
|
@@ -29,7 +29,7 @@ class TaskOutputObs:
|
|
29
29
|
}
|
30
30
|
|
31
31
|
def __init__(self, bucket=None, path=None, data_category=None):
|
32
|
-
"""TaskOutputObs
|
32
|
+
r"""TaskOutputObs
|
33
33
|
|
34
34
|
The model defined in huaweicloud sdk
|
35
35
|
|
@@ -55,7 +55,7 @@ class TaskOutputObs:
|
|
55
55
|
|
56
56
|
@property
|
57
57
|
def bucket(self):
|
58
|
-
"""Gets the bucket of this TaskOutputObs.
|
58
|
+
r"""Gets the bucket of this TaskOutputObs.
|
59
59
|
|
60
60
|
OBS桶名,选用obs类型输出时必填。
|
61
61
|
|
@@ -66,7 +66,7 @@ class TaskOutputObs:
|
|
66
66
|
|
67
67
|
@bucket.setter
|
68
68
|
def bucket(self, bucket):
|
69
|
-
"""Sets the bucket of this TaskOutputObs.
|
69
|
+
r"""Sets the bucket of this TaskOutputObs.
|
70
70
|
|
71
71
|
OBS桶名,选用obs类型输出时必填。
|
72
72
|
|
@@ -77,7 +77,7 @@ class TaskOutputObs:
|
|
77
77
|
|
78
78
|
@property
|
79
79
|
def path(self):
|
80
|
-
"""Gets the path of this TaskOutputObs.
|
80
|
+
r"""Gets the path of this TaskOutputObs.
|
81
81
|
|
82
82
|
OBS的路径,选用obs类型输出时必填。
|
83
83
|
|
@@ -88,7 +88,7 @@ class TaskOutputObs:
|
|
88
88
|
|
89
89
|
@path.setter
|
90
90
|
def path(self, path):
|
91
|
-
"""Sets the path of this TaskOutputObs.
|
91
|
+
r"""Sets the path of this TaskOutputObs.
|
92
92
|
|
93
93
|
OBS的路径,选用obs类型输出时必填。
|
94
94
|
|
@@ -99,7 +99,7 @@ class TaskOutputObs:
|
|
99
99
|
|
100
100
|
@property
|
101
101
|
def data_category(self):
|
102
|
-
"""Gets the data_category of this TaskOutputObs.
|
102
|
+
r"""Gets the data_category of this TaskOutputObs.
|
103
103
|
|
104
104
|
作业输出数据类别的列表,选填,仅部分服务需要。当输出类型下有这个列表时,表示希望这个输出类型下存放dataCategory列表内的数据。
|
105
105
|
|
@@ -110,7 +110,7 @@ class TaskOutputObs:
|
|
110
110
|
|
111
111
|
@data_category.setter
|
112
112
|
def data_category(self, data_category):
|
113
|
-
"""Sets the data_category of this TaskOutputObs.
|
113
|
+
r"""Sets the data_category of this TaskOutputObs.
|
114
114
|
|
115
115
|
作业输出数据类别的列表,选填,仅部分服务需要。当输出类型下有这个列表时,表示希望这个输出类型下存放dataCategory列表内的数据。
|
116
116
|
|
@@ -29,7 +29,7 @@ class TaskOutputWebhook:
|
|
29
29
|
}
|
30
30
|
|
31
31
|
def __init__(self, url=None, headers=None, data_category=None):
|
32
|
-
"""TaskOutputWebhook
|
32
|
+
r"""TaskOutputWebhook
|
33
33
|
|
34
34
|
The model defined in huaweicloud sdk
|
35
35
|
|
@@ -55,7 +55,7 @@ class TaskOutputWebhook:
|
|
55
55
|
|
56
56
|
@property
|
57
57
|
def url(self):
|
58
|
-
"""Gets the url of this TaskOutputWebhook.
|
58
|
+
r"""Gets the url of this TaskOutputWebhook.
|
59
59
|
|
60
60
|
结果回调地址,选用webhook类型输出时必填。
|
61
61
|
|
@@ -66,7 +66,7 @@ class TaskOutputWebhook:
|
|
66
66
|
|
67
67
|
@url.setter
|
68
68
|
def url(self, url):
|
69
|
-
"""Sets the url of this TaskOutputWebhook.
|
69
|
+
r"""Sets the url of this TaskOutputWebhook.
|
70
70
|
|
71
71
|
结果回调地址,选用webhook类型输出时必填。
|
72
72
|
|
@@ -77,7 +77,7 @@ class TaskOutputWebhook:
|
|
77
77
|
|
78
78
|
@property
|
79
79
|
def headers(self):
|
80
|
-
"""Gets the headers of this TaskOutputWebhook.
|
80
|
+
r"""Gets the headers of this TaskOutputWebhook.
|
81
81
|
|
82
82
|
结果回调时需要携带的请求头,选用webhook类型输出时必填。整体呈json格式,以键值对的形式表示请求头和取值,至少1组,至多10组。
|
83
83
|
|
@@ -88,7 +88,7 @@ class TaskOutputWebhook:
|
|
88
88
|
|
89
89
|
@headers.setter
|
90
90
|
def headers(self, headers):
|
91
|
-
"""Sets the headers of this TaskOutputWebhook.
|
91
|
+
r"""Sets the headers of this TaskOutputWebhook.
|
92
92
|
|
93
93
|
结果回调时需要携带的请求头,选用webhook类型输出时必填。整体呈json格式,以键值对的形式表示请求头和取值,至少1组,至多10组。
|
94
94
|
|
@@ -99,7 +99,7 @@ class TaskOutputWebhook:
|
|
99
99
|
|
100
100
|
@property
|
101
101
|
def data_category(self):
|
102
|
-
"""Gets the data_category of this TaskOutputWebhook.
|
102
|
+
r"""Gets the data_category of this TaskOutputWebhook.
|
103
103
|
|
104
104
|
作业输出数据类别的列表,选填,仅部分服务需要。当输出类型下有这个列表时,表示希望这个输出类型下存放dataCategory列表内的数据。
|
105
105
|
|
@@ -110,7 +110,7 @@ class TaskOutputWebhook:
|
|
110
110
|
|
111
111
|
@data_category.setter
|
112
112
|
def data_category(self, data_category):
|
113
|
-
"""Sets the data_category of this TaskOutputWebhook.
|
113
|
+
r"""Sets the data_category of this TaskOutputWebhook.
|
114
114
|
|
115
115
|
作业输出数据类别的列表,选填,仅部分服务需要。当输出类型下有这个列表时,表示希望这个输出类型下存放dataCategory列表内的数据。
|
116
116
|
|
@@ -25,7 +25,7 @@ class TaskServiceConfig:
|
|
25
25
|
}
|
26
26
|
|
27
27
|
def __init__(self, common=None):
|
28
|
-
"""TaskServiceConfig
|
28
|
+
r"""TaskServiceConfig
|
29
29
|
|
30
30
|
The model defined in huaweicloud sdk
|
31
31
|
|
@@ -43,7 +43,7 @@ class TaskServiceConfig:
|
|
43
43
|
|
44
44
|
@property
|
45
45
|
def common(self):
|
46
|
-
"""Gets the common of this TaskServiceConfig.
|
46
|
+
r"""Gets the common of this TaskServiceConfig.
|
47
47
|
|
48
48
|
作业运行时指定的具体的算法配置项,部分服务需填且必填。整体呈json格式,具体配置项参见相应算法服务的说明。
|
49
49
|
|
@@ -54,7 +54,7 @@ class TaskServiceConfig:
|
|
54
54
|
|
55
55
|
@common.setter
|
56
56
|
def common(self, common):
|
57
|
-
"""Sets the common of this TaskServiceConfig.
|
57
|
+
r"""Sets the common of this TaskServiceConfig.
|
58
58
|
|
59
59
|
作业运行时指定的具体的算法配置项,部分服务需填且必填。整体呈json格式,具体配置项参见相应算法服务的说明。
|
60
60
|
|
@@ -37,7 +37,7 @@ class TaskTiming:
|
|
37
37
|
}
|
38
38
|
|
39
39
|
def __init__(self, type=None, timezone=None, days_of_week=None, days_of_month=None, date=None, periods=None, frequency=None):
|
40
|
-
"""TaskTiming
|
40
|
+
r"""TaskTiming
|
41
41
|
|
42
42
|
The model defined in huaweicloud sdk
|
43
43
|
|
@@ -83,7 +83,7 @@ class TaskTiming:
|
|
83
83
|
|
84
84
|
@property
|
85
85
|
def type(self):
|
86
|
-
"""Gets the type of this TaskTiming.
|
86
|
+
r"""Gets the type of this TaskTiming.
|
87
87
|
|
88
88
|
计划任务的类型,使用计划任务时必填。可选类型分别为once(仅执行一次),daily(每日执行),weekly(每周执行),monthly(每月执行)。
|
89
89
|
|
@@ -94,7 +94,7 @@ class TaskTiming:
|
|
94
94
|
|
95
95
|
@type.setter
|
96
96
|
def type(self, type):
|
97
|
-
"""Sets the type of this TaskTiming.
|
97
|
+
r"""Sets the type of this TaskTiming.
|
98
98
|
|
99
99
|
计划任务的类型,使用计划任务时必填。可选类型分别为once(仅执行一次),daily(每日执行),weekly(每周执行),monthly(每月执行)。
|
100
100
|
|
@@ -105,7 +105,7 @@ class TaskTiming:
|
|
105
105
|
|
106
106
|
@property
|
107
107
|
def timezone(self):
|
108
|
-
"""Gets the timezone of this TaskTiming.
|
108
|
+
r"""Gets the timezone of this TaskTiming.
|
109
109
|
|
110
110
|
用户所处的时区,使用计划任务时必填。精确到分钟。
|
111
111
|
|
@@ -116,7 +116,7 @@ class TaskTiming:
|
|
116
116
|
|
117
117
|
@timezone.setter
|
118
118
|
def timezone(self, timezone):
|
119
|
-
"""Sets the timezone of this TaskTiming.
|
119
|
+
r"""Sets the timezone of this TaskTiming.
|
120
120
|
|
121
121
|
用户所处的时区,使用计划任务时必填。精确到分钟。
|
122
122
|
|
@@ -127,7 +127,7 @@ class TaskTiming:
|
|
127
127
|
|
128
128
|
@property
|
129
129
|
def days_of_week(self):
|
130
|
-
"""Gets the days_of_week of this TaskTiming.
|
130
|
+
r"""Gets the days_of_week of this TaskTiming.
|
131
131
|
|
132
132
|
作业会在一周的哪几天执行,当且仅当计划任务类型为weekly时,该字段需填且必填。1~7分别指代星期一至星期日。
|
133
133
|
|
@@ -138,7 +138,7 @@ class TaskTiming:
|
|
138
138
|
|
139
139
|
@days_of_week.setter
|
140
140
|
def days_of_week(self, days_of_week):
|
141
|
-
"""Sets the days_of_week of this TaskTiming.
|
141
|
+
r"""Sets the days_of_week of this TaskTiming.
|
142
142
|
|
143
143
|
作业会在一周的哪几天执行,当且仅当计划任务类型为weekly时,该字段需填且必填。1~7分别指代星期一至星期日。
|
144
144
|
|
@@ -149,7 +149,7 @@ class TaskTiming:
|
|
149
149
|
|
150
150
|
@property
|
151
151
|
def days_of_month(self):
|
152
|
-
"""Gets the days_of_month of this TaskTiming.
|
152
|
+
r"""Gets the days_of_month of this TaskTiming.
|
153
153
|
|
154
154
|
作业会在一个月的哪几天执行,当且仅当计划任务类型为monthly时,该字段需填且必填。1~31分别指代一个月中的1日至31日。
|
155
155
|
|
@@ -160,7 +160,7 @@ class TaskTiming:
|
|
160
160
|
|
161
161
|
@days_of_month.setter
|
162
162
|
def days_of_month(self, days_of_month):
|
163
|
-
"""Sets the days_of_month of this TaskTiming.
|
163
|
+
r"""Sets the days_of_month of this TaskTiming.
|
164
164
|
|
165
165
|
作业会在一个月的哪几天执行,当且仅当计划任务类型为monthly时,该字段需填且必填。1~31分别指代一个月中的1日至31日。
|
166
166
|
|
@@ -171,7 +171,7 @@ class TaskTiming:
|
|
171
171
|
|
172
172
|
@property
|
173
173
|
def date(self):
|
174
|
-
"""Gets the date of this TaskTiming.
|
174
|
+
r"""Gets the date of this TaskTiming.
|
175
175
|
|
176
176
|
作业的执行日。当且仅当计划任务类型为once且为频率模式时,该字段需填且必填。格式形如yyyy-MM-dd。
|
177
177
|
|
@@ -182,7 +182,7 @@ class TaskTiming:
|
|
182
182
|
|
183
183
|
@date.setter
|
184
184
|
def date(self, date):
|
185
|
-
"""Sets the date of this TaskTiming.
|
185
|
+
r"""Sets the date of this TaskTiming.
|
186
186
|
|
187
187
|
作业的执行日。当且仅当计划任务类型为once且为频率模式时,该字段需填且必填。格式形如yyyy-MM-dd。
|
188
188
|
|
@@ -193,7 +193,7 @@ class TaskTiming:
|
|
193
193
|
|
194
194
|
@property
|
195
195
|
def periods(self):
|
196
|
-
"""Gets the periods of this TaskTiming.
|
196
|
+
r"""Gets the periods of this TaskTiming.
|
197
197
|
|
198
198
|
时间段模式配置。和frequency字段二选一,不可共存。时间段模式下,至少需指定一个时间段。
|
199
199
|
|
@@ -204,7 +204,7 @@ class TaskTiming:
|
|
204
204
|
|
205
205
|
@periods.setter
|
206
206
|
def periods(self, periods):
|
207
|
-
"""Sets the periods of this TaskTiming.
|
207
|
+
r"""Sets the periods of this TaskTiming.
|
208
208
|
|
209
209
|
时间段模式配置。和frequency字段二选一,不可共存。时间段模式下,至少需指定一个时间段。
|
210
210
|
|
@@ -215,7 +215,7 @@ class TaskTiming:
|
|
215
215
|
|
216
216
|
@property
|
217
217
|
def frequency(self):
|
218
|
-
"""Gets the frequency of this TaskTiming.
|
218
|
+
r"""Gets the frequency of this TaskTiming.
|
219
219
|
|
220
220
|
:return: The frequency of this TaskTiming.
|
221
221
|
:rtype: :class:`huaweicloudsdkvas.v2.TaskTimingFrequency`
|
@@ -224,7 +224,7 @@ class TaskTiming:
|
|
224
224
|
|
225
225
|
@frequency.setter
|
226
226
|
def frequency(self, frequency):
|
227
|
-
"""Sets the frequency of this TaskTiming.
|
227
|
+
r"""Sets the frequency of this TaskTiming.
|
228
228
|
|
229
229
|
:param frequency: The frequency of this TaskTiming.
|
230
230
|
:type frequency: :class:`huaweicloudsdkvas.v2.TaskTimingFrequency`
|
@@ -31,7 +31,7 @@ class TaskTimingFrequency:
|
|
31
31
|
}
|
32
32
|
|
33
33
|
def __init__(self, interval=None, duration=None, begin_at=None, end_at=None):
|
34
|
-
"""TaskTimingFrequency
|
34
|
+
r"""TaskTimingFrequency
|
35
35
|
|
36
36
|
The model defined in huaweicloud sdk
|
37
37
|
|
@@ -62,7 +62,7 @@ class TaskTimingFrequency:
|
|
62
62
|
|
63
63
|
@property
|
64
64
|
def interval(self):
|
65
|
-
"""Gets the interval of this TaskTimingFrequency.
|
65
|
+
r"""Gets the interval of this TaskTimingFrequency.
|
66
66
|
|
67
67
|
相邻两次执行之间的间隔,频率模式必填。取值范围在5~720之间,单位:分钟。
|
68
68
|
|
@@ -73,7 +73,7 @@ class TaskTimingFrequency:
|
|
73
73
|
|
74
74
|
@interval.setter
|
75
75
|
def interval(self, interval):
|
76
|
-
"""Sets the interval of this TaskTimingFrequency.
|
76
|
+
r"""Sets the interval of this TaskTimingFrequency.
|
77
77
|
|
78
78
|
相邻两次执行之间的间隔,频率模式必填。取值范围在5~720之间,单位:分钟。
|
79
79
|
|
@@ -84,7 +84,7 @@ class TaskTimingFrequency:
|
|
84
84
|
|
85
85
|
@property
|
86
86
|
def duration(self):
|
87
|
-
"""Gets the duration of this TaskTimingFrequency.
|
87
|
+
r"""Gets the duration of this TaskTimingFrequency.
|
88
88
|
|
89
89
|
单次执行的运行时长,频率模式必填。取值范围在5~720之间,单位:分钟。
|
90
90
|
|
@@ -95,7 +95,7 @@ class TaskTimingFrequency:
|
|
95
95
|
|
96
96
|
@duration.setter
|
97
97
|
def duration(self, duration):
|
98
|
-
"""Sets the duration of this TaskTimingFrequency.
|
98
|
+
r"""Sets the duration of this TaskTimingFrequency.
|
99
99
|
|
100
100
|
单次执行的运行时长,频率模式必填。取值范围在5~720之间,单位:分钟。
|
101
101
|
|
@@ -106,7 +106,7 @@ class TaskTimingFrequency:
|
|
106
106
|
|
107
107
|
@property
|
108
108
|
def begin_at(self):
|
109
|
-
"""Gets the begin_at of this TaskTimingFrequency.
|
109
|
+
r"""Gets the begin_at of this TaskTimingFrequency.
|
110
110
|
|
111
111
|
单日内执行的起始时间,选填。格式形如hh:mm:ss。
|
112
112
|
|
@@ -117,7 +117,7 @@ class TaskTimingFrequency:
|
|
117
117
|
|
118
118
|
@begin_at.setter
|
119
119
|
def begin_at(self, begin_at):
|
120
|
-
"""Sets the begin_at of this TaskTimingFrequency.
|
120
|
+
r"""Sets the begin_at of this TaskTimingFrequency.
|
121
121
|
|
122
122
|
单日内执行的起始时间,选填。格式形如hh:mm:ss。
|
123
123
|
|
@@ -128,7 +128,7 @@ class TaskTimingFrequency:
|
|
128
128
|
|
129
129
|
@property
|
130
130
|
def end_at(self):
|
131
|
-
"""Gets the end_at of this TaskTimingFrequency.
|
131
|
+
r"""Gets the end_at of this TaskTimingFrequency.
|
132
132
|
|
133
133
|
单日内执行的结束时间,选填。格式形如hh:mm:ss。
|
134
134
|
|
@@ -139,7 +139,7 @@ class TaskTimingFrequency:
|
|
139
139
|
|
140
140
|
@end_at.setter
|
141
141
|
def end_at(self, end_at):
|
142
|
-
"""Sets the end_at of this TaskTimingFrequency.
|
142
|
+
r"""Sets the end_at of this TaskTimingFrequency.
|
143
143
|
|
144
144
|
单日内执行的结束时间,选填。格式形如hh:mm:ss。
|
145
145
|
|
@@ -27,7 +27,7 @@ class TaskTimingPeriods:
|
|
27
27
|
}
|
28
28
|
|
29
29
|
def __init__(self, begin_at=None, end_at=None):
|
30
|
-
"""TaskTimingPeriods
|
30
|
+
r"""TaskTimingPeriods
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
@@ -50,7 +50,7 @@ class TaskTimingPeriods:
|
|
50
50
|
|
51
51
|
@property
|
52
52
|
def begin_at(self):
|
53
|
-
"""Gets the begin_at of this TaskTimingPeriods.
|
53
|
+
r"""Gets the begin_at of this TaskTimingPeriods.
|
54
54
|
|
55
55
|
单个时间段执行的起始时间,和end_at需成对出现。计划任务类型为once时,格式为yyyy-MM-ddThh:mm:ss,其余计划任务类型时,格式为hh:mm:ss。
|
56
56
|
|
@@ -61,7 +61,7 @@ class TaskTimingPeriods:
|
|
61
61
|
|
62
62
|
@begin_at.setter
|
63
63
|
def begin_at(self, begin_at):
|
64
|
-
"""Sets the begin_at of this TaskTimingPeriods.
|
64
|
+
r"""Sets the begin_at of this TaskTimingPeriods.
|
65
65
|
|
66
66
|
单个时间段执行的起始时间,和end_at需成对出现。计划任务类型为once时,格式为yyyy-MM-ddThh:mm:ss,其余计划任务类型时,格式为hh:mm:ss。
|
67
67
|
|
@@ -72,7 +72,7 @@ class TaskTimingPeriods:
|
|
72
72
|
|
73
73
|
@property
|
74
74
|
def end_at(self):
|
75
|
-
"""Gets the end_at of this TaskTimingPeriods.
|
75
|
+
r"""Gets the end_at of this TaskTimingPeriods.
|
76
76
|
|
77
77
|
单个时间段执行的结束时间,和begin_at需成对出现。计划任务类型为once时,格式为yyyy-MM-ddThh:mm:ss,其余计划任务类型时,格式为hh:mm:ss。
|
78
78
|
|
@@ -83,7 +83,7 @@ class TaskTimingPeriods:
|
|
83
83
|
|
84
84
|
@end_at.setter
|
85
85
|
def end_at(self, end_at):
|
86
|
-
"""Sets the end_at of this TaskTimingPeriods.
|
86
|
+
r"""Sets the end_at of this TaskTimingPeriods.
|
87
87
|
|
88
88
|
单个时间段执行的结束时间,和begin_at需成对出现。计划任务类型为once时,格式为yyyy-MM-ddThh:mm:ss,其余计划任务类型时,格式为hh:mm:ss。
|
89
89
|
|
@@ -29,7 +29,7 @@ class UpdateTaskRequest:
|
|
29
29
|
}
|
30
30
|
|
31
31
|
def __init__(self, service_name=None, task_id=None, body=None):
|
32
|
-
"""UpdateTaskRequest
|
32
|
+
r"""UpdateTaskRequest
|
33
33
|
|
34
34
|
The model defined in huaweicloud sdk
|
35
35
|
|
@@ -55,7 +55,7 @@ class UpdateTaskRequest:
|
|
55
55
|
|
56
56
|
@property
|
57
57
|
def service_name(self):
|
58
|
-
"""Gets the service_name of this UpdateTaskRequest.
|
58
|
+
r"""Gets the service_name of this UpdateTaskRequest.
|
59
59
|
|
60
60
|
服务名称
|
61
61
|
|
@@ -66,7 +66,7 @@ class UpdateTaskRequest:
|
|
66
66
|
|
67
67
|
@service_name.setter
|
68
68
|
def service_name(self, service_name):
|
69
|
-
"""Sets the service_name of this UpdateTaskRequest.
|
69
|
+
r"""Sets the service_name of this UpdateTaskRequest.
|
70
70
|
|
71
71
|
服务名称
|
72
72
|
|
@@ -77,7 +77,7 @@ class UpdateTaskRequest:
|
|
77
77
|
|
78
78
|
@property
|
79
79
|
def task_id(self):
|
80
|
-
"""Gets the task_id of this UpdateTaskRequest.
|
80
|
+
r"""Gets the task_id of this UpdateTaskRequest.
|
81
81
|
|
82
82
|
指定的服务作业ID
|
83
83
|
|
@@ -88,7 +88,7 @@ class UpdateTaskRequest:
|
|
88
88
|
|
89
89
|
@task_id.setter
|
90
90
|
def task_id(self, task_id):
|
91
|
-
"""Sets the task_id of this UpdateTaskRequest.
|
91
|
+
r"""Sets the task_id of this UpdateTaskRequest.
|
92
92
|
|
93
93
|
指定的服务作业ID
|
94
94
|
|
@@ -99,7 +99,7 @@ class UpdateTaskRequest:
|
|
99
99
|
|
100
100
|
@property
|
101
101
|
def body(self):
|
102
|
-
"""Gets the body of this UpdateTaskRequest.
|
102
|
+
r"""Gets the body of this UpdateTaskRequest.
|
103
103
|
|
104
104
|
:return: The body of this UpdateTaskRequest.
|
105
105
|
:rtype: :class:`huaweicloudsdkvas.v2.UpdateTaskRequestBody`
|
@@ -108,7 +108,7 @@ class UpdateTaskRequest:
|
|
108
108
|
|
109
109
|
@body.setter
|
110
110
|
def body(self, body):
|
111
|
-
"""Sets the body of this UpdateTaskRequest.
|
111
|
+
r"""Sets the body of this UpdateTaskRequest.
|
112
112
|
|
113
113
|
:param body: The body of this UpdateTaskRequest.
|
114
114
|
:type body: :class:`huaweicloudsdkvas.v2.UpdateTaskRequestBody`
|
@@ -35,7 +35,7 @@ class UpdateTaskRequestBody:
|
|
35
35
|
}
|
36
36
|
|
37
37
|
def __init__(self, name=None, description=None, timing=None, input=None, output=None, service_config=None):
|
38
|
-
"""UpdateTaskRequestBody
|
38
|
+
r"""UpdateTaskRequestBody
|
39
39
|
|
40
40
|
The model defined in huaweicloud sdk
|
41
41
|
|
@@ -78,7 +78,7 @@ class UpdateTaskRequestBody:
|
|
78
78
|
|
79
79
|
@property
|
80
80
|
def name(self):
|
81
|
-
"""Gets the name of this UpdateTaskRequestBody.
|
81
|
+
r"""Gets the name of this UpdateTaskRequestBody.
|
82
82
|
|
83
83
|
作业的名称,必填。仅能包含汉字、字母、数字、中划线和下划线,长度介于1~100之间。
|
84
84
|
|
@@ -89,7 +89,7 @@ class UpdateTaskRequestBody:
|
|
89
89
|
|
90
90
|
@name.setter
|
91
91
|
def name(self, name):
|
92
|
-
"""Sets the name of this UpdateTaskRequestBody.
|
92
|
+
r"""Sets the name of this UpdateTaskRequestBody.
|
93
93
|
|
94
94
|
作业的名称,必填。仅能包含汉字、字母、数字、中划线和下划线,长度介于1~100之间。
|
95
95
|
|
@@ -100,7 +100,7 @@ class UpdateTaskRequestBody:
|
|
100
100
|
|
101
101
|
@property
|
102
102
|
def description(self):
|
103
|
-
"""Gets the description of this UpdateTaskRequestBody.
|
103
|
+
r"""Gets the description of this UpdateTaskRequestBody.
|
104
104
|
|
105
105
|
作业的描述,选填。长度不超过500。
|
106
106
|
|
@@ -111,7 +111,7 @@ class UpdateTaskRequestBody:
|
|
111
111
|
|
112
112
|
@description.setter
|
113
113
|
def description(self, description):
|
114
|
-
"""Sets the description of this UpdateTaskRequestBody.
|
114
|
+
r"""Sets the description of this UpdateTaskRequestBody.
|
115
115
|
|
116
116
|
作业的描述,选填。长度不超过500。
|
117
117
|
|
@@ -122,7 +122,7 @@ class UpdateTaskRequestBody:
|
|
122
122
|
|
123
123
|
@property
|
124
124
|
def timing(self):
|
125
|
-
"""Gets the timing of this UpdateTaskRequestBody.
|
125
|
+
r"""Gets the timing of this UpdateTaskRequestBody.
|
126
126
|
|
127
127
|
:return: The timing of this UpdateTaskRequestBody.
|
128
128
|
:rtype: :class:`huaweicloudsdkvas.v2.TaskTiming`
|
@@ -131,7 +131,7 @@ class UpdateTaskRequestBody:
|
|
131
131
|
|
132
132
|
@timing.setter
|
133
133
|
def timing(self, timing):
|
134
|
-
"""Sets the timing of this UpdateTaskRequestBody.
|
134
|
+
r"""Sets the timing of this UpdateTaskRequestBody.
|
135
135
|
|
136
136
|
:param timing: The timing of this UpdateTaskRequestBody.
|
137
137
|
:type timing: :class:`huaweicloudsdkvas.v2.TaskTiming`
|
@@ -140,7 +140,7 @@ class UpdateTaskRequestBody:
|
|
140
140
|
|
141
141
|
@property
|
142
142
|
def input(self):
|
143
|
-
"""Gets the input of this UpdateTaskRequestBody.
|
143
|
+
r"""Gets the input of this UpdateTaskRequestBody.
|
144
144
|
|
145
145
|
:return: The input of this UpdateTaskRequestBody.
|
146
146
|
:rtype: :class:`huaweicloudsdkvas.v2.TaskInput`
|
@@ -149,7 +149,7 @@ class UpdateTaskRequestBody:
|
|
149
149
|
|
150
150
|
@input.setter
|
151
151
|
def input(self, input):
|
152
|
-
"""Sets the input of this UpdateTaskRequestBody.
|
152
|
+
r"""Sets the input of this UpdateTaskRequestBody.
|
153
153
|
|
154
154
|
:param input: The input of this UpdateTaskRequestBody.
|
155
155
|
:type input: :class:`huaweicloudsdkvas.v2.TaskInput`
|
@@ -158,7 +158,7 @@ class UpdateTaskRequestBody:
|
|
158
158
|
|
159
159
|
@property
|
160
160
|
def output(self):
|
161
|
-
"""Gets the output of this UpdateTaskRequestBody.
|
161
|
+
r"""Gets the output of this UpdateTaskRequestBody.
|
162
162
|
|
163
163
|
:return: The output of this UpdateTaskRequestBody.
|
164
164
|
:rtype: :class:`huaweicloudsdkvas.v2.TaskOutput`
|
@@ -167,7 +167,7 @@ class UpdateTaskRequestBody:
|
|
167
167
|
|
168
168
|
@output.setter
|
169
169
|
def output(self, output):
|
170
|
-
"""Sets the output of this UpdateTaskRequestBody.
|
170
|
+
r"""Sets the output of this UpdateTaskRequestBody.
|
171
171
|
|
172
172
|
:param output: The output of this UpdateTaskRequestBody.
|
173
173
|
:type output: :class:`huaweicloudsdkvas.v2.TaskOutput`
|
@@ -176,7 +176,7 @@ class UpdateTaskRequestBody:
|
|
176
176
|
|
177
177
|
@property
|
178
178
|
def service_config(self):
|
179
|
-
"""Gets the service_config of this UpdateTaskRequestBody.
|
179
|
+
r"""Gets the service_config of this UpdateTaskRequestBody.
|
180
180
|
|
181
181
|
:return: The service_config of this UpdateTaskRequestBody.
|
182
182
|
:rtype: :class:`huaweicloudsdkvas.v2.TaskServiceConfig`
|
@@ -185,7 +185,7 @@ class UpdateTaskRequestBody:
|
|
185
185
|
|
186
186
|
@service_config.setter
|
187
187
|
def service_config(self, service_config):
|
188
|
-
"""Sets the service_config of this UpdateTaskRequestBody.
|
188
|
+
r"""Sets the service_config of this UpdateTaskRequestBody.
|
189
189
|
|
190
190
|
:param service_config: The service_config of this UpdateTaskRequestBody.
|
191
191
|
:type service_config: :class:`huaweicloudsdkvas.v2.TaskServiceConfig`
|