huaweicloudsdkcodeartsbuild 3.1.150__py2.py3-none-any.whl → 3.1.152__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.
Files changed (99) hide show
  1. huaweicloudsdkcodeartsbuild/v3/__init__.py +90 -0
  2. huaweicloudsdkcodeartsbuild/v3/codeartsbuild_async_client.py +2659 -652
  3. huaweicloudsdkcodeartsbuild/v3/codeartsbuild_client.py +2659 -652
  4. huaweicloudsdkcodeartsbuild/v3/model/__init__.py +90 -0
  5. huaweicloudsdkcodeartsbuild/v3/model/add_keystore_permission_response_body.py +347 -0
  6. huaweicloudsdkcodeartsbuild/v3/model/build_parameter.py +144 -0
  7. huaweicloudsdkcodeartsbuild/v3/model/check_job_count_is_top_limit_request.py +84 -0
  8. huaweicloudsdkcodeartsbuild/v3/model/check_job_count_is_top_limit_response.py +174 -0
  9. huaweicloudsdkcodeartsbuild/v3/model/check_job_name_is_exists_request.py +142 -0
  10. huaweicloudsdkcodeartsbuild/v3/model/check_job_name_is_exists_response.py +145 -0
  11. huaweicloudsdkcodeartsbuild/v3/model/download_junit_coverage_zip_request.py +170 -0
  12. huaweicloudsdkcodeartsbuild/v3/model/download_junit_coverage_zip_response.py +85 -0
  13. huaweicloudsdkcodeartsbuild/v3/model/download_keystore_by_name_request.py +170 -0
  14. huaweicloudsdkcodeartsbuild/v3/model/download_keystore_by_name_response.py +85 -0
  15. huaweicloudsdkcodeartsbuild/v3/model/is_disable_result.py +260 -0
  16. huaweicloudsdkcodeartsbuild/v3/model/job_status_body.py +173 -0
  17. huaweicloudsdkcodeartsbuild/v3/model/job_summary.py +202 -0
  18. huaweicloudsdkcodeartsbuild/v3/model/job_summary_body_result.py +111 -0
  19. huaweicloudsdkcodeartsbuild/v3/model/job_update_record_list_vo_result.py +144 -0
  20. huaweicloudsdkcodeartsbuild/v3/model/job_update_record_list_vo_result_job_update_records.py +289 -0
  21. huaweicloudsdkcodeartsbuild/v3/model/list_build_parameter_request.py +142 -0
  22. huaweicloudsdkcodeartsbuild/v3/model/list_build_parameter_response.py +174 -0
  23. huaweicloudsdkcodeartsbuild/v3/model/list_custom_template_request.py +231 -0
  24. huaweicloudsdkcodeartsbuild/v3/model/list_custom_template_response.py +170 -0
  25. huaweicloudsdkcodeartsbuild/v3/model/list_job_request.py +84 -0
  26. huaweicloudsdkcodeartsbuild/v3/model/list_job_response.py +141 -0
  27. huaweicloudsdkcodeartsbuild/v3/model/list_job_result.py +144 -0
  28. huaweicloudsdkcodeartsbuild/v3/model/list_job_result_job_list.py +1217 -0
  29. huaweicloudsdkcodeartsbuild/v3/model/list_junit_coverage_summary_request.py +142 -0
  30. huaweicloudsdkcodeartsbuild/v3/model/list_junit_coverage_summary_response.py +170 -0
  31. huaweicloudsdkcodeartsbuild/v3/model/list_junit_coverage_summary_result.py +115 -0
  32. huaweicloudsdkcodeartsbuild/v3/model/list_junit_coverage_summary_result_unit_summary_list.py +231 -0
  33. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_request.py +84 -0
  34. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_response.py +145 -0
  35. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_result.py +144 -0
  36. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_search_request.py +173 -0
  37. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_search_response.py +170 -0
  38. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_search_response_body_result.py +144 -0
  39. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_search_response_body_result_keystore_list.py +517 -0
  40. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_search_response_body_result_permission.py +231 -0
  41. huaweicloudsdkcodeartsbuild/v3/model/list_records_request.py +317 -0
  42. huaweicloudsdkcodeartsbuild/v3/model/list_records_response.py +170 -0
  43. huaweicloudsdkcodeartsbuild/v3/model/list_records_result.py +140 -0
  44. huaweicloudsdkcodeartsbuild/v3/model/list_records_result_pagination.py +173 -0
  45. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_request.py +173 -0
  46. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_response.py +170 -0
  47. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_result.py +144 -0
  48. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_result_project_info_list.py +231 -0
  49. huaweicloudsdkcodeartsbuild/v3/model/list_repo_branch_request.py +142 -0
  50. huaweicloudsdkcodeartsbuild/v3/model/list_repo_branch_response.py +145 -0
  51. huaweicloudsdkcodeartsbuild/v3/model/list_repository_request.py +114 -0
  52. huaweicloudsdkcodeartsbuild/v3/model/list_repository_response.py +170 -0
  53. huaweicloudsdkcodeartsbuild/v3/model/list_update_job_history_request.py +172 -0
  54. huaweicloudsdkcodeartsbuild/v3/model/list_update_job_history_response.py +170 -0
  55. huaweicloudsdkcodeartsbuild/v3/model/query_custom_templates_result.py +144 -0
  56. huaweicloudsdkcodeartsbuild/v3/model/repositories_result.py +144 -0
  57. huaweicloudsdkcodeartsbuild/v3/model/show_build_info_record_request.py +142 -0
  58. huaweicloudsdkcodeartsbuild/v3/model/show_build_info_record_response.py +170 -0
  59. huaweicloudsdkcodeartsbuild/v3/model/show_build_record_flow_graph_request.py +114 -0
  60. huaweicloudsdkcodeartsbuild/v3/model/show_build_record_flow_graph_response.py +170 -0
  61. huaweicloudsdkcodeartsbuild/v3/model/show_copy_name_request.py +114 -0
  62. huaweicloudsdkcodeartsbuild/v3/model/show_copy_name_response.py +174 -0
  63. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_params.py +144 -0
  64. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_request.py +84 -0
  65. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_response.py +145 -0
  66. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_result.py +144 -0
  67. huaweicloudsdkcodeartsbuild/v3/model/show_default_project_permission_request.py +142 -0
  68. huaweicloudsdkcodeartsbuild/v3/model/show_default_project_permission_response.py +174 -0
  69. huaweicloudsdkcodeartsbuild/v3/model/show_default_project_permission_response_body_result.py +347 -0
  70. huaweicloudsdkcodeartsbuild/v3/model/show_disable_request.py +114 -0
  71. huaweicloudsdkcodeartsbuild/v3/model/show_disable_response.py +170 -0
  72. huaweicloudsdkcodeartsbuild/v3/model/show_dockerfile_template_request.py +114 -0
  73. huaweicloudsdkcodeartsbuild/v3/model/show_dockerfile_template_response.py +85 -0
  74. huaweicloudsdkcodeartsbuild/v3/model/show_job_build_record_detail_request.py +142 -0
  75. huaweicloudsdkcodeartsbuild/v3/model/show_job_build_record_detail_response.py +170 -0
  76. huaweicloudsdkcodeartsbuild/v3/model/show_job_notice_config_info_request.py +114 -0
  77. huaweicloudsdkcodeartsbuild/v3/model/show_job_notice_config_info_response.py +174 -0
  78. huaweicloudsdkcodeartsbuild/v3/model/show_job_step_status_request.py +143 -0
  79. huaweicloudsdkcodeartsbuild/v3/model/show_job_step_status_response.py +170 -0
  80. huaweicloudsdkcodeartsbuild/v3/model/show_job_total_request.py +172 -0
  81. huaweicloudsdkcodeartsbuild/v3/model/show_job_total_response.py +170 -0
  82. huaweicloudsdkcodeartsbuild/v3/model/show_keystore_permission_request.py +170 -0
  83. huaweicloudsdkcodeartsbuild/v3/model/show_keystore_permission_response.py +170 -0
  84. huaweicloudsdkcodeartsbuild/v3/model/show_keystore_permission_response_body_result.py +144 -0
  85. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_request.py +84 -0
  86. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_response.py +170 -0
  87. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_result.py +144 -0
  88. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_result_project_info_list.py +231 -0
  89. huaweicloudsdkcodeartsbuild/v3/model/show_summary_build_job_info_request.py +84 -0
  90. huaweicloudsdkcodeartsbuild/v3/model/show_summary_build_job_info_response.py +170 -0
  91. huaweicloudsdkcodeartsbuild/v3/model/show_user_over_package_quota_request.py +114 -0
  92. huaweicloudsdkcodeartsbuild/v3/model/show_user_over_package_quota_response.py +170 -0
  93. huaweicloudsdkcodeartsbuild/v3/model/show_user_over_package_quota_result.py +173 -0
  94. huaweicloudsdkcodeartsbuild/v3/model/total_response_body_result.py +115 -0
  95. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.152.dist-info}/METADATA +2 -2
  96. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.152.dist-info}/RECORD +99 -9
  97. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.152.dist-info}/LICENSE +0 -0
  98. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.152.dist-info}/WHEEL +0 -0
  99. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.152.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,260 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class IsDisableResult:
9
+
10
+ """
11
+ Attributes:
12
+ openapi_types (dict): The key is attribute name
13
+ and the value is attribute type.
14
+ attribute_map (dict): The key is attribute name
15
+ and the value is json key in definition.
16
+ """
17
+ sensitive_list = []
18
+
19
+ openapi_types = {
20
+ 'forbiddener': 'str',
21
+ 'reson': 'str',
22
+ 'disabled': 'int',
23
+ 'job_id': 'str',
24
+ 'job_name': 'str',
25
+ 'forbidden_time': 'float'
26
+ }
27
+
28
+ attribute_map = {
29
+ 'forbiddener': 'forbiddener',
30
+ 'reson': 'reson',
31
+ 'disabled': 'disabled',
32
+ 'job_id': 'job_id',
33
+ 'job_name': 'job_name',
34
+ 'forbidden_time': 'forbidden_time'
35
+ }
36
+
37
+ def __init__(self, forbiddener=None, reson=None, disabled=None, job_id=None, job_name=None, forbidden_time=None):
38
+ r"""IsDisableResult
39
+
40
+ The model defined in huaweicloud sdk
41
+
42
+ :param forbiddener: 禁用者
43
+ :type forbiddener: str
44
+ :param reson: 禁用描述
45
+ :type reson: str
46
+ :param disabled: 禁用标识
47
+ :type disabled: int
48
+ :param job_id: 任务ID
49
+ :type job_id: str
50
+ :param job_name: 明文名称
51
+ :type job_name: str
52
+ :param forbidden_time: 禁用时间
53
+ :type forbidden_time: float
54
+ """
55
+
56
+
57
+
58
+ self._forbiddener = None
59
+ self._reson = None
60
+ self._disabled = None
61
+ self._job_id = None
62
+ self._job_name = None
63
+ self._forbidden_time = None
64
+ self.discriminator = None
65
+
66
+ if forbiddener is not None:
67
+ self.forbiddener = forbiddener
68
+ if reson is not None:
69
+ self.reson = reson
70
+ if disabled is not None:
71
+ self.disabled = disabled
72
+ if job_id is not None:
73
+ self.job_id = job_id
74
+ if job_name is not None:
75
+ self.job_name = job_name
76
+ if forbidden_time is not None:
77
+ self.forbidden_time = forbidden_time
78
+
79
+ @property
80
+ def forbiddener(self):
81
+ r"""Gets the forbiddener of this IsDisableResult.
82
+
83
+ 禁用者
84
+
85
+ :return: The forbiddener of this IsDisableResult.
86
+ :rtype: str
87
+ """
88
+ return self._forbiddener
89
+
90
+ @forbiddener.setter
91
+ def forbiddener(self, forbiddener):
92
+ r"""Sets the forbiddener of this IsDisableResult.
93
+
94
+ 禁用者
95
+
96
+ :param forbiddener: The forbiddener of this IsDisableResult.
97
+ :type forbiddener: str
98
+ """
99
+ self._forbiddener = forbiddener
100
+
101
+ @property
102
+ def reson(self):
103
+ r"""Gets the reson of this IsDisableResult.
104
+
105
+ 禁用描述
106
+
107
+ :return: The reson of this IsDisableResult.
108
+ :rtype: str
109
+ """
110
+ return self._reson
111
+
112
+ @reson.setter
113
+ def reson(self, reson):
114
+ r"""Sets the reson of this IsDisableResult.
115
+
116
+ 禁用描述
117
+
118
+ :param reson: The reson of this IsDisableResult.
119
+ :type reson: str
120
+ """
121
+ self._reson = reson
122
+
123
+ @property
124
+ def disabled(self):
125
+ r"""Gets the disabled of this IsDisableResult.
126
+
127
+ 禁用标识
128
+
129
+ :return: The disabled of this IsDisableResult.
130
+ :rtype: int
131
+ """
132
+ return self._disabled
133
+
134
+ @disabled.setter
135
+ def disabled(self, disabled):
136
+ r"""Sets the disabled of this IsDisableResult.
137
+
138
+ 禁用标识
139
+
140
+ :param disabled: The disabled of this IsDisableResult.
141
+ :type disabled: int
142
+ """
143
+ self._disabled = disabled
144
+
145
+ @property
146
+ def job_id(self):
147
+ r"""Gets the job_id of this IsDisableResult.
148
+
149
+ 任务ID
150
+
151
+ :return: The job_id of this IsDisableResult.
152
+ :rtype: str
153
+ """
154
+ return self._job_id
155
+
156
+ @job_id.setter
157
+ def job_id(self, job_id):
158
+ r"""Sets the job_id of this IsDisableResult.
159
+
160
+ 任务ID
161
+
162
+ :param job_id: The job_id of this IsDisableResult.
163
+ :type job_id: str
164
+ """
165
+ self._job_id = job_id
166
+
167
+ @property
168
+ def job_name(self):
169
+ r"""Gets the job_name of this IsDisableResult.
170
+
171
+ 明文名称
172
+
173
+ :return: The job_name of this IsDisableResult.
174
+ :rtype: str
175
+ """
176
+ return self._job_name
177
+
178
+ @job_name.setter
179
+ def job_name(self, job_name):
180
+ r"""Sets the job_name of this IsDisableResult.
181
+
182
+ 明文名称
183
+
184
+ :param job_name: The job_name of this IsDisableResult.
185
+ :type job_name: str
186
+ """
187
+ self._job_name = job_name
188
+
189
+ @property
190
+ def forbidden_time(self):
191
+ r"""Gets the forbidden_time of this IsDisableResult.
192
+
193
+ 禁用时间
194
+
195
+ :return: The forbidden_time of this IsDisableResult.
196
+ :rtype: float
197
+ """
198
+ return self._forbidden_time
199
+
200
+ @forbidden_time.setter
201
+ def forbidden_time(self, forbidden_time):
202
+ r"""Sets the forbidden_time of this IsDisableResult.
203
+
204
+ 禁用时间
205
+
206
+ :param forbidden_time: The forbidden_time of this IsDisableResult.
207
+ :type forbidden_time: float
208
+ """
209
+ self._forbidden_time = forbidden_time
210
+
211
+ def to_dict(self):
212
+ """Returns the model properties as a dict"""
213
+ result = {}
214
+
215
+ for attr, _ in six.iteritems(self.openapi_types):
216
+ value = getattr(self, attr)
217
+ if isinstance(value, list):
218
+ result[attr] = list(map(
219
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
220
+ value
221
+ ))
222
+ elif hasattr(value, "to_dict"):
223
+ result[attr] = value.to_dict()
224
+ elif isinstance(value, dict):
225
+ result[attr] = dict(map(
226
+ lambda item: (item[0], item[1].to_dict())
227
+ if hasattr(item[1], "to_dict") else item,
228
+ value.items()
229
+ ))
230
+ else:
231
+ if attr in self.sensitive_list:
232
+ result[attr] = "****"
233
+ else:
234
+ result[attr] = value
235
+
236
+ return result
237
+
238
+ def to_str(self):
239
+ """Returns the string representation of the model"""
240
+ import simplejson as json
241
+ if six.PY2:
242
+ import sys
243
+ reload(sys)
244
+ sys.setdefaultencoding("utf-8")
245
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
246
+
247
+ def __repr__(self):
248
+ """For `print`"""
249
+ return self.to_str()
250
+
251
+ def __eq__(self, other):
252
+ """Returns true if both objects are equal"""
253
+ if not isinstance(other, IsDisableResult):
254
+ return False
255
+
256
+ return self.__dict__ == other.__dict__
257
+
258
+ def __ne__(self, other):
259
+ """Returns true if both objects are not equal"""
260
+ return not self == other
@@ -0,0 +1,173 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class JobStatusBody:
9
+
10
+ """
11
+ Attributes:
12
+ openapi_types (dict): The key is attribute name
13
+ and the value is attribute type.
14
+ attribute_map (dict): The key is attribute name
15
+ and the value is json key in definition.
16
+ """
17
+ sensitive_list = []
18
+
19
+ openapi_types = {
20
+ 'status': 'str',
21
+ 'abort_status': 'str',
22
+ 'label': 'str'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'status': 'status',
27
+ 'abort_status': 'abort_status',
28
+ 'label': 'label'
29
+ }
30
+
31
+ def __init__(self, status=None, abort_status=None, label=None):
32
+ r"""JobStatusBody
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param status: 任务状态
37
+ :type status: str
38
+ :param abort_status: 任务终止状态
39
+ :type abort_status: str
40
+ :param label: 标签
41
+ :type label: str
42
+ """
43
+
44
+
45
+
46
+ self._status = None
47
+ self._abort_status = None
48
+ self._label = None
49
+ self.discriminator = None
50
+
51
+ if status is not None:
52
+ self.status = status
53
+ if abort_status is not None:
54
+ self.abort_status = abort_status
55
+ if label is not None:
56
+ self.label = label
57
+
58
+ @property
59
+ def status(self):
60
+ r"""Gets the status of this JobStatusBody.
61
+
62
+ 任务状态
63
+
64
+ :return: The status of this JobStatusBody.
65
+ :rtype: str
66
+ """
67
+ return self._status
68
+
69
+ @status.setter
70
+ def status(self, status):
71
+ r"""Sets the status of this JobStatusBody.
72
+
73
+ 任务状态
74
+
75
+ :param status: The status of this JobStatusBody.
76
+ :type status: str
77
+ """
78
+ self._status = status
79
+
80
+ @property
81
+ def abort_status(self):
82
+ r"""Gets the abort_status of this JobStatusBody.
83
+
84
+ 任务终止状态
85
+
86
+ :return: The abort_status of this JobStatusBody.
87
+ :rtype: str
88
+ """
89
+ return self._abort_status
90
+
91
+ @abort_status.setter
92
+ def abort_status(self, abort_status):
93
+ r"""Sets the abort_status of this JobStatusBody.
94
+
95
+ 任务终止状态
96
+
97
+ :param abort_status: The abort_status of this JobStatusBody.
98
+ :type abort_status: str
99
+ """
100
+ self._abort_status = abort_status
101
+
102
+ @property
103
+ def label(self):
104
+ r"""Gets the label of this JobStatusBody.
105
+
106
+ 标签
107
+
108
+ :return: The label of this JobStatusBody.
109
+ :rtype: str
110
+ """
111
+ return self._label
112
+
113
+ @label.setter
114
+ def label(self, label):
115
+ r"""Sets the label of this JobStatusBody.
116
+
117
+ 标签
118
+
119
+ :param label: The label of this JobStatusBody.
120
+ :type label: str
121
+ """
122
+ self._label = label
123
+
124
+ def to_dict(self):
125
+ """Returns the model properties as a dict"""
126
+ result = {}
127
+
128
+ for attr, _ in six.iteritems(self.openapi_types):
129
+ value = getattr(self, attr)
130
+ if isinstance(value, list):
131
+ result[attr] = list(map(
132
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
133
+ value
134
+ ))
135
+ elif hasattr(value, "to_dict"):
136
+ result[attr] = value.to_dict()
137
+ elif isinstance(value, dict):
138
+ result[attr] = dict(map(
139
+ lambda item: (item[0], item[1].to_dict())
140
+ if hasattr(item[1], "to_dict") else item,
141
+ value.items()
142
+ ))
143
+ else:
144
+ if attr in self.sensitive_list:
145
+ result[attr] = "****"
146
+ else:
147
+ result[attr] = value
148
+
149
+ return result
150
+
151
+ def to_str(self):
152
+ """Returns the string representation of the model"""
153
+ import simplejson as json
154
+ if six.PY2:
155
+ import sys
156
+ reload(sys)
157
+ sys.setdefaultencoding("utf-8")
158
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
159
+
160
+ def __repr__(self):
161
+ """For `print`"""
162
+ return self.to_str()
163
+
164
+ def __eq__(self, other):
165
+ """Returns true if both objects are equal"""
166
+ if not isinstance(other, JobStatusBody):
167
+ return False
168
+
169
+ return self.__dict__ == other.__dict__
170
+
171
+ def __ne__(self, other):
172
+ """Returns true if both objects are not equal"""
173
+ return not self == other
@@ -0,0 +1,202 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class JobSummary:
9
+
10
+ """
11
+ Attributes:
12
+ openapi_types (dict): The key is attribute name
13
+ and the value is attribute type.
14
+ attribute_map (dict): The key is attribute name
15
+ and the value is json key in definition.
16
+ """
17
+ sensitive_list = []
18
+
19
+ openapi_types = {
20
+ 'avg_success_ratio': 'int',
21
+ 'build_no': 'int',
22
+ 'job_total': 'int',
23
+ 'version_total': 'str'
24
+ }
25
+
26
+ attribute_map = {
27
+ 'avg_success_ratio': 'avg_success_ratio',
28
+ 'build_no': 'build_no',
29
+ 'job_total': 'job_total',
30
+ 'version_total': 'version_total'
31
+ }
32
+
33
+ def __init__(self, avg_success_ratio=None, build_no=None, job_total=None, version_total=None):
34
+ r"""JobSummary
35
+
36
+ The model defined in huaweicloud sdk
37
+
38
+ :param avg_success_ratio: 构建成功率
39
+ :type avg_success_ratio: int
40
+ :param build_no: 构建总时长
41
+ :type build_no: int
42
+ :param job_total: 任务总数
43
+ :type job_total: int
44
+ :param version_total: 版本
45
+ :type version_total: str
46
+ """
47
+
48
+
49
+
50
+ self._avg_success_ratio = None
51
+ self._build_no = None
52
+ self._job_total = None
53
+ self._version_total = None
54
+ self.discriminator = None
55
+
56
+ if avg_success_ratio is not None:
57
+ self.avg_success_ratio = avg_success_ratio
58
+ if build_no is not None:
59
+ self.build_no = build_no
60
+ if job_total is not None:
61
+ self.job_total = job_total
62
+ if version_total is not None:
63
+ self.version_total = version_total
64
+
65
+ @property
66
+ def avg_success_ratio(self):
67
+ r"""Gets the avg_success_ratio of this JobSummary.
68
+
69
+ 构建成功率
70
+
71
+ :return: The avg_success_ratio of this JobSummary.
72
+ :rtype: int
73
+ """
74
+ return self._avg_success_ratio
75
+
76
+ @avg_success_ratio.setter
77
+ def avg_success_ratio(self, avg_success_ratio):
78
+ r"""Sets the avg_success_ratio of this JobSummary.
79
+
80
+ 构建成功率
81
+
82
+ :param avg_success_ratio: The avg_success_ratio of this JobSummary.
83
+ :type avg_success_ratio: int
84
+ """
85
+ self._avg_success_ratio = avg_success_ratio
86
+
87
+ @property
88
+ def build_no(self):
89
+ r"""Gets the build_no of this JobSummary.
90
+
91
+ 构建总时长
92
+
93
+ :return: The build_no of this JobSummary.
94
+ :rtype: int
95
+ """
96
+ return self._build_no
97
+
98
+ @build_no.setter
99
+ def build_no(self, build_no):
100
+ r"""Sets the build_no of this JobSummary.
101
+
102
+ 构建总时长
103
+
104
+ :param build_no: The build_no of this JobSummary.
105
+ :type build_no: int
106
+ """
107
+ self._build_no = build_no
108
+
109
+ @property
110
+ def job_total(self):
111
+ r"""Gets the job_total of this JobSummary.
112
+
113
+ 任务总数
114
+
115
+ :return: The job_total of this JobSummary.
116
+ :rtype: int
117
+ """
118
+ return self._job_total
119
+
120
+ @job_total.setter
121
+ def job_total(self, job_total):
122
+ r"""Sets the job_total of this JobSummary.
123
+
124
+ 任务总数
125
+
126
+ :param job_total: The job_total of this JobSummary.
127
+ :type job_total: int
128
+ """
129
+ self._job_total = job_total
130
+
131
+ @property
132
+ def version_total(self):
133
+ r"""Gets the version_total of this JobSummary.
134
+
135
+ 版本
136
+
137
+ :return: The version_total of this JobSummary.
138
+ :rtype: str
139
+ """
140
+ return self._version_total
141
+
142
+ @version_total.setter
143
+ def version_total(self, version_total):
144
+ r"""Sets the version_total of this JobSummary.
145
+
146
+ 版本
147
+
148
+ :param version_total: The version_total of this JobSummary.
149
+ :type version_total: str
150
+ """
151
+ self._version_total = version_total
152
+
153
+ def to_dict(self):
154
+ """Returns the model properties as a dict"""
155
+ result = {}
156
+
157
+ for attr, _ in six.iteritems(self.openapi_types):
158
+ value = getattr(self, attr)
159
+ if isinstance(value, list):
160
+ result[attr] = list(map(
161
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
162
+ value
163
+ ))
164
+ elif hasattr(value, "to_dict"):
165
+ result[attr] = value.to_dict()
166
+ elif isinstance(value, dict):
167
+ result[attr] = dict(map(
168
+ lambda item: (item[0], item[1].to_dict())
169
+ if hasattr(item[1], "to_dict") else item,
170
+ value.items()
171
+ ))
172
+ else:
173
+ if attr in self.sensitive_list:
174
+ result[attr] = "****"
175
+ else:
176
+ result[attr] = value
177
+
178
+ return result
179
+
180
+ def to_str(self):
181
+ """Returns the string representation of the model"""
182
+ import simplejson as json
183
+ if six.PY2:
184
+ import sys
185
+ reload(sys)
186
+ sys.setdefaultencoding("utf-8")
187
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
188
+
189
+ def __repr__(self):
190
+ """For `print`"""
191
+ return self.to_str()
192
+
193
+ def __eq__(self, other):
194
+ """Returns true if both objects are equal"""
195
+ if not isinstance(other, JobSummary):
196
+ return False
197
+
198
+ return self.__dict__ == other.__dict__
199
+
200
+ def __ne__(self, other):
201
+ """Returns true if both objects are not equal"""
202
+ return not self == other