huaweicloudsdkcodeartsbuild 3.1.150__py2.py3-none-any.whl → 3.1.151__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 (42) hide show
  1. huaweicloudsdkcodeartsbuild/v3/__init__.py +33 -0
  2. huaweicloudsdkcodeartsbuild/v3/codeartsbuild_async_client.py +802 -60
  3. huaweicloudsdkcodeartsbuild/v3/codeartsbuild_client.py +802 -60
  4. huaweicloudsdkcodeartsbuild/v3/model/__init__.py +33 -0
  5. huaweicloudsdkcodeartsbuild/v3/model/add_keystore_permission_response_body.py +347 -0
  6. huaweicloudsdkcodeartsbuild/v3/model/check_job_name_is_exists_request.py +142 -0
  7. huaweicloudsdkcodeartsbuild/v3/model/check_job_name_is_exists_response.py +145 -0
  8. huaweicloudsdkcodeartsbuild/v3/model/download_keystore_by_name_request.py +170 -0
  9. huaweicloudsdkcodeartsbuild/v3/model/download_keystore_by_name_response.py +85 -0
  10. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_request.py +84 -0
  11. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_response.py +145 -0
  12. huaweicloudsdkcodeartsbuild/v3/model/list_keystore_result.py +144 -0
  13. huaweicloudsdkcodeartsbuild/v3/model/list_records_request.py +317 -0
  14. huaweicloudsdkcodeartsbuild/v3/model/list_records_response.py +170 -0
  15. huaweicloudsdkcodeartsbuild/v3/model/list_records_result.py +140 -0
  16. huaweicloudsdkcodeartsbuild/v3/model/list_records_result_pagination.py +173 -0
  17. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_request.py +173 -0
  18. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_response.py +170 -0
  19. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_result.py +144 -0
  20. huaweicloudsdkcodeartsbuild/v3/model/list_related_project_info_result_project_info_list.py +231 -0
  21. huaweicloudsdkcodeartsbuild/v3/model/show_build_info_record_request.py +142 -0
  22. huaweicloudsdkcodeartsbuild/v3/model/show_build_info_record_response.py +170 -0
  23. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_params.py +144 -0
  24. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_request.py +84 -0
  25. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_response.py +145 -0
  26. huaweicloudsdkcodeartsbuild/v3/model/show_default_build_parameters_result.py +144 -0
  27. huaweicloudsdkcodeartsbuild/v3/model/show_dockerfile_template_request.py +114 -0
  28. huaweicloudsdkcodeartsbuild/v3/model/show_dockerfile_template_response.py +85 -0
  29. huaweicloudsdkcodeartsbuild/v3/model/show_job_notice_config_info_request.py +114 -0
  30. huaweicloudsdkcodeartsbuild/v3/model/show_job_notice_config_info_response.py +174 -0
  31. huaweicloudsdkcodeartsbuild/v3/model/show_keystore_permission_request.py +170 -0
  32. huaweicloudsdkcodeartsbuild/v3/model/show_keystore_permission_response.py +170 -0
  33. huaweicloudsdkcodeartsbuild/v3/model/show_keystore_permission_response_body_result.py +144 -0
  34. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_request.py +84 -0
  35. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_response.py +170 -0
  36. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_result.py +144 -0
  37. huaweicloudsdkcodeartsbuild/v3/model/show_related_project_result_project_info_list.py +231 -0
  38. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.151.dist-info}/METADATA +2 -2
  39. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.151.dist-info}/RECORD +42 -9
  40. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.151.dist-info}/LICENSE +0 -0
  41. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.151.dist-info}/WHEEL +0 -0
  42. {huaweicloudsdkcodeartsbuild-3.1.150.dist-info → huaweicloudsdkcodeartsbuild-3.1.151.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,144 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class ListRelatedProjectInfoResult:
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
+ 'total': 'float',
21
+ 'project_info_list': 'list[ListRelatedProjectInfoResultProjectInfoList]'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'total': 'total',
26
+ 'project_info_list': 'project_info_list'
27
+ }
28
+
29
+ def __init__(self, total=None, project_info_list=None):
30
+ r"""ListRelatedProjectInfoResult
31
+
32
+ The model defined in huaweicloud sdk
33
+
34
+ :param total: 总数
35
+ :type total: float
36
+ :param project_info_list: 项目列表
37
+ :type project_info_list: list[:class:`huaweicloudsdkcodeartsbuild.v3.ListRelatedProjectInfoResultProjectInfoList`]
38
+ """
39
+
40
+
41
+
42
+ self._total = None
43
+ self._project_info_list = None
44
+ self.discriminator = None
45
+
46
+ if total is not None:
47
+ self.total = total
48
+ if project_info_list is not None:
49
+ self.project_info_list = project_info_list
50
+
51
+ @property
52
+ def total(self):
53
+ r"""Gets the total of this ListRelatedProjectInfoResult.
54
+
55
+ 总数
56
+
57
+ :return: The total of this ListRelatedProjectInfoResult.
58
+ :rtype: float
59
+ """
60
+ return self._total
61
+
62
+ @total.setter
63
+ def total(self, total):
64
+ r"""Sets the total of this ListRelatedProjectInfoResult.
65
+
66
+ 总数
67
+
68
+ :param total: The total of this ListRelatedProjectInfoResult.
69
+ :type total: float
70
+ """
71
+ self._total = total
72
+
73
+ @property
74
+ def project_info_list(self):
75
+ r"""Gets the project_info_list of this ListRelatedProjectInfoResult.
76
+
77
+ 项目列表
78
+
79
+ :return: The project_info_list of this ListRelatedProjectInfoResult.
80
+ :rtype: list[:class:`huaweicloudsdkcodeartsbuild.v3.ListRelatedProjectInfoResultProjectInfoList`]
81
+ """
82
+ return self._project_info_list
83
+
84
+ @project_info_list.setter
85
+ def project_info_list(self, project_info_list):
86
+ r"""Sets the project_info_list of this ListRelatedProjectInfoResult.
87
+
88
+ 项目列表
89
+
90
+ :param project_info_list: The project_info_list of this ListRelatedProjectInfoResult.
91
+ :type project_info_list: list[:class:`huaweicloudsdkcodeartsbuild.v3.ListRelatedProjectInfoResultProjectInfoList`]
92
+ """
93
+ self._project_info_list = project_info_list
94
+
95
+ def to_dict(self):
96
+ """Returns the model properties as a dict"""
97
+ result = {}
98
+
99
+ for attr, _ in six.iteritems(self.openapi_types):
100
+ value = getattr(self, attr)
101
+ if isinstance(value, list):
102
+ result[attr] = list(map(
103
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
104
+ value
105
+ ))
106
+ elif hasattr(value, "to_dict"):
107
+ result[attr] = value.to_dict()
108
+ elif isinstance(value, dict):
109
+ result[attr] = dict(map(
110
+ lambda item: (item[0], item[1].to_dict())
111
+ if hasattr(item[1], "to_dict") else item,
112
+ value.items()
113
+ ))
114
+ else:
115
+ if attr in self.sensitive_list:
116
+ result[attr] = "****"
117
+ else:
118
+ result[attr] = value
119
+
120
+ return result
121
+
122
+ def to_str(self):
123
+ """Returns the string representation of the model"""
124
+ import simplejson as json
125
+ if six.PY2:
126
+ import sys
127
+ reload(sys)
128
+ sys.setdefaultencoding("utf-8")
129
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
130
+
131
+ def __repr__(self):
132
+ """For `print`"""
133
+ return self.to_str()
134
+
135
+ def __eq__(self, other):
136
+ """Returns true if both objects are equal"""
137
+ if not isinstance(other, ListRelatedProjectInfoResult):
138
+ return False
139
+
140
+ return self.__dict__ == other.__dict__
141
+
142
+ def __ne__(self, other):
143
+ """Returns true if both objects are not equal"""
144
+ return not self == other
@@ -0,0 +1,231 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class ListRelatedProjectInfoResultProjectInfoList:
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
+ 'identifier': 'str',
21
+ 'name': 'str',
22
+ 'author_id': 'str',
23
+ 'status': 'int',
24
+ 'author_domain_id': 'str'
25
+ }
26
+
27
+ attribute_map = {
28
+ 'identifier': 'identifier',
29
+ 'name': 'name',
30
+ 'author_id': 'author_id',
31
+ 'status': 'status',
32
+ 'author_domain_id': 'author_domain_id'
33
+ }
34
+
35
+ def __init__(self, identifier=None, name=None, author_id=None, status=None, author_domain_id=None):
36
+ r"""ListRelatedProjectInfoResultProjectInfoList
37
+
38
+ The model defined in huaweicloud sdk
39
+
40
+ :param identifier: 唯一标识
41
+ :type identifier: str
42
+ :param name: 项目名
43
+ :type name: str
44
+ :param author_id: 用户ID
45
+ :type author_id: str
46
+ :param status: 状态
47
+ :type status: int
48
+ :param author_domain_id: 项目创建者租户ID
49
+ :type author_domain_id: str
50
+ """
51
+
52
+
53
+
54
+ self._identifier = None
55
+ self._name = None
56
+ self._author_id = None
57
+ self._status = None
58
+ self._author_domain_id = None
59
+ self.discriminator = None
60
+
61
+ if identifier is not None:
62
+ self.identifier = identifier
63
+ if name is not None:
64
+ self.name = name
65
+ if author_id is not None:
66
+ self.author_id = author_id
67
+ if status is not None:
68
+ self.status = status
69
+ if author_domain_id is not None:
70
+ self.author_domain_id = author_domain_id
71
+
72
+ @property
73
+ def identifier(self):
74
+ r"""Gets the identifier of this ListRelatedProjectInfoResultProjectInfoList.
75
+
76
+ 唯一标识
77
+
78
+ :return: The identifier of this ListRelatedProjectInfoResultProjectInfoList.
79
+ :rtype: str
80
+ """
81
+ return self._identifier
82
+
83
+ @identifier.setter
84
+ def identifier(self, identifier):
85
+ r"""Sets the identifier of this ListRelatedProjectInfoResultProjectInfoList.
86
+
87
+ 唯一标识
88
+
89
+ :param identifier: The identifier of this ListRelatedProjectInfoResultProjectInfoList.
90
+ :type identifier: str
91
+ """
92
+ self._identifier = identifier
93
+
94
+ @property
95
+ def name(self):
96
+ r"""Gets the name of this ListRelatedProjectInfoResultProjectInfoList.
97
+
98
+ 项目名
99
+
100
+ :return: The name of this ListRelatedProjectInfoResultProjectInfoList.
101
+ :rtype: str
102
+ """
103
+ return self._name
104
+
105
+ @name.setter
106
+ def name(self, name):
107
+ r"""Sets the name of this ListRelatedProjectInfoResultProjectInfoList.
108
+
109
+ 项目名
110
+
111
+ :param name: The name of this ListRelatedProjectInfoResultProjectInfoList.
112
+ :type name: str
113
+ """
114
+ self._name = name
115
+
116
+ @property
117
+ def author_id(self):
118
+ r"""Gets the author_id of this ListRelatedProjectInfoResultProjectInfoList.
119
+
120
+ 用户ID
121
+
122
+ :return: The author_id of this ListRelatedProjectInfoResultProjectInfoList.
123
+ :rtype: str
124
+ """
125
+ return self._author_id
126
+
127
+ @author_id.setter
128
+ def author_id(self, author_id):
129
+ r"""Sets the author_id of this ListRelatedProjectInfoResultProjectInfoList.
130
+
131
+ 用户ID
132
+
133
+ :param author_id: The author_id of this ListRelatedProjectInfoResultProjectInfoList.
134
+ :type author_id: str
135
+ """
136
+ self._author_id = author_id
137
+
138
+ @property
139
+ def status(self):
140
+ r"""Gets the status of this ListRelatedProjectInfoResultProjectInfoList.
141
+
142
+ 状态
143
+
144
+ :return: The status of this ListRelatedProjectInfoResultProjectInfoList.
145
+ :rtype: int
146
+ """
147
+ return self._status
148
+
149
+ @status.setter
150
+ def status(self, status):
151
+ r"""Sets the status of this ListRelatedProjectInfoResultProjectInfoList.
152
+
153
+ 状态
154
+
155
+ :param status: The status of this ListRelatedProjectInfoResultProjectInfoList.
156
+ :type status: int
157
+ """
158
+ self._status = status
159
+
160
+ @property
161
+ def author_domain_id(self):
162
+ r"""Gets the author_domain_id of this ListRelatedProjectInfoResultProjectInfoList.
163
+
164
+ 项目创建者租户ID
165
+
166
+ :return: The author_domain_id of this ListRelatedProjectInfoResultProjectInfoList.
167
+ :rtype: str
168
+ """
169
+ return self._author_domain_id
170
+
171
+ @author_domain_id.setter
172
+ def author_domain_id(self, author_domain_id):
173
+ r"""Sets the author_domain_id of this ListRelatedProjectInfoResultProjectInfoList.
174
+
175
+ 项目创建者租户ID
176
+
177
+ :param author_domain_id: The author_domain_id of this ListRelatedProjectInfoResultProjectInfoList.
178
+ :type author_domain_id: str
179
+ """
180
+ self._author_domain_id = author_domain_id
181
+
182
+ def to_dict(self):
183
+ """Returns the model properties as a dict"""
184
+ result = {}
185
+
186
+ for attr, _ in six.iteritems(self.openapi_types):
187
+ value = getattr(self, attr)
188
+ if isinstance(value, list):
189
+ result[attr] = list(map(
190
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
191
+ value
192
+ ))
193
+ elif hasattr(value, "to_dict"):
194
+ result[attr] = value.to_dict()
195
+ elif isinstance(value, dict):
196
+ result[attr] = dict(map(
197
+ lambda item: (item[0], item[1].to_dict())
198
+ if hasattr(item[1], "to_dict") else item,
199
+ value.items()
200
+ ))
201
+ else:
202
+ if attr in self.sensitive_list:
203
+ result[attr] = "****"
204
+ else:
205
+ result[attr] = value
206
+
207
+ return result
208
+
209
+ def to_str(self):
210
+ """Returns the string representation of the model"""
211
+ import simplejson as json
212
+ if six.PY2:
213
+ import sys
214
+ reload(sys)
215
+ sys.setdefaultencoding("utf-8")
216
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
217
+
218
+ def __repr__(self):
219
+ """For `print`"""
220
+ return self.to_str()
221
+
222
+ def __eq__(self, other):
223
+ """Returns true if both objects are equal"""
224
+ if not isinstance(other, ListRelatedProjectInfoResultProjectInfoList):
225
+ return False
226
+
227
+ return self.__dict__ == other.__dict__
228
+
229
+ def __ne__(self, other):
230
+ """Returns true if both objects are not equal"""
231
+ return not self == other
@@ -0,0 +1,142 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class ShowBuildInfoRecordRequest:
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
+ 'job_id': 'str',
21
+ 'build_no': 'int'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'job_id': 'job_id',
26
+ 'build_no': 'build_no'
27
+ }
28
+
29
+ def __init__(self, job_id=None, build_no=None):
30
+ r"""ShowBuildInfoRecordRequest
31
+
32
+ The model defined in huaweicloud sdk
33
+
34
+ :param job_id: 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
35
+ :type job_id: str
36
+ :param build_no: 构建任务的构建编号,从1开始,每次构建递增1
37
+ :type build_no: int
38
+ """
39
+
40
+
41
+
42
+ self._job_id = None
43
+ self._build_no = None
44
+ self.discriminator = None
45
+
46
+ self.job_id = job_id
47
+ self.build_no = build_no
48
+
49
+ @property
50
+ def job_id(self):
51
+ r"""Gets the job_id of this ShowBuildInfoRecordRequest.
52
+
53
+ 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
54
+
55
+ :return: The job_id of this ShowBuildInfoRecordRequest.
56
+ :rtype: str
57
+ """
58
+ return self._job_id
59
+
60
+ @job_id.setter
61
+ def job_id(self, job_id):
62
+ r"""Sets the job_id of this ShowBuildInfoRecordRequest.
63
+
64
+ 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
65
+
66
+ :param job_id: The job_id of this ShowBuildInfoRecordRequest.
67
+ :type job_id: str
68
+ """
69
+ self._job_id = job_id
70
+
71
+ @property
72
+ def build_no(self):
73
+ r"""Gets the build_no of this ShowBuildInfoRecordRequest.
74
+
75
+ 构建任务的构建编号,从1开始,每次构建递增1
76
+
77
+ :return: The build_no of this ShowBuildInfoRecordRequest.
78
+ :rtype: int
79
+ """
80
+ return self._build_no
81
+
82
+ @build_no.setter
83
+ def build_no(self, build_no):
84
+ r"""Sets the build_no of this ShowBuildInfoRecordRequest.
85
+
86
+ 构建任务的构建编号,从1开始,每次构建递增1
87
+
88
+ :param build_no: The build_no of this ShowBuildInfoRecordRequest.
89
+ :type build_no: int
90
+ """
91
+ self._build_no = build_no
92
+
93
+ def to_dict(self):
94
+ """Returns the model properties as a dict"""
95
+ result = {}
96
+
97
+ for attr, _ in six.iteritems(self.openapi_types):
98
+ value = getattr(self, attr)
99
+ if isinstance(value, list):
100
+ result[attr] = list(map(
101
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
102
+ value
103
+ ))
104
+ elif hasattr(value, "to_dict"):
105
+ result[attr] = value.to_dict()
106
+ elif isinstance(value, dict):
107
+ result[attr] = dict(map(
108
+ lambda item: (item[0], item[1].to_dict())
109
+ if hasattr(item[1], "to_dict") else item,
110
+ value.items()
111
+ ))
112
+ else:
113
+ if attr in self.sensitive_list:
114
+ result[attr] = "****"
115
+ else:
116
+ result[attr] = value
117
+
118
+ return result
119
+
120
+ def to_str(self):
121
+ """Returns the string representation of the model"""
122
+ import simplejson as json
123
+ if six.PY2:
124
+ import sys
125
+ reload(sys)
126
+ sys.setdefaultencoding("utf-8")
127
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
128
+
129
+ def __repr__(self):
130
+ """For `print`"""
131
+ return self.to_str()
132
+
133
+ def __eq__(self, other):
134
+ """Returns true if both objects are equal"""
135
+ if not isinstance(other, ShowBuildInfoRecordRequest):
136
+ return False
137
+
138
+ return self.__dict__ == other.__dict__
139
+
140
+ def __ne__(self, other):
141
+ """Returns true if both objects are not equal"""
142
+ return not self == other
@@ -0,0 +1,170 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.sdk_response import SdkResponse
6
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
7
+
8
+
9
+ class ShowBuildInfoRecordResponse(SdkResponse):
10
+
11
+ """
12
+ Attributes:
13
+ openapi_types (dict): The key is attribute name
14
+ and the value is attribute type.
15
+ attribute_map (dict): The key is attribute name
16
+ and the value is json key in definition.
17
+ """
18
+ sensitive_list = []
19
+
20
+ openapi_types = {
21
+ 'result': 'BuildInfoRecord',
22
+ 'error': 'str',
23
+ 'status': 'str'
24
+ }
25
+
26
+ attribute_map = {
27
+ 'result': 'result',
28
+ 'error': 'error',
29
+ 'status': 'status'
30
+ }
31
+
32
+ def __init__(self, result=None, error=None, status=None):
33
+ r"""ShowBuildInfoRecordResponse
34
+
35
+ The model defined in huaweicloud sdk
36
+
37
+ :param result:
38
+ :type result: :class:`huaweicloudsdkcodeartsbuild.v3.BuildInfoRecord`
39
+ :param error: 返回错误信息
40
+ :type error: str
41
+ :param status: 返回状态信息
42
+ :type status: str
43
+ """
44
+
45
+ super(ShowBuildInfoRecordResponse, self).__init__()
46
+
47
+ self._result = None
48
+ self._error = None
49
+ self._status = None
50
+ self.discriminator = None
51
+
52
+ if result is not None:
53
+ self.result = result
54
+ if error is not None:
55
+ self.error = error
56
+ if status is not None:
57
+ self.status = status
58
+
59
+ @property
60
+ def result(self):
61
+ r"""Gets the result of this ShowBuildInfoRecordResponse.
62
+
63
+ :return: The result of this ShowBuildInfoRecordResponse.
64
+ :rtype: :class:`huaweicloudsdkcodeartsbuild.v3.BuildInfoRecord`
65
+ """
66
+ return self._result
67
+
68
+ @result.setter
69
+ def result(self, result):
70
+ r"""Sets the result of this ShowBuildInfoRecordResponse.
71
+
72
+ :param result: The result of this ShowBuildInfoRecordResponse.
73
+ :type result: :class:`huaweicloudsdkcodeartsbuild.v3.BuildInfoRecord`
74
+ """
75
+ self._result = result
76
+
77
+ @property
78
+ def error(self):
79
+ r"""Gets the error of this ShowBuildInfoRecordResponse.
80
+
81
+ 返回错误信息
82
+
83
+ :return: The error of this ShowBuildInfoRecordResponse.
84
+ :rtype: str
85
+ """
86
+ return self._error
87
+
88
+ @error.setter
89
+ def error(self, error):
90
+ r"""Sets the error of this ShowBuildInfoRecordResponse.
91
+
92
+ 返回错误信息
93
+
94
+ :param error: The error of this ShowBuildInfoRecordResponse.
95
+ :type error: str
96
+ """
97
+ self._error = error
98
+
99
+ @property
100
+ def status(self):
101
+ r"""Gets the status of this ShowBuildInfoRecordResponse.
102
+
103
+ 返回状态信息
104
+
105
+ :return: The status of this ShowBuildInfoRecordResponse.
106
+ :rtype: str
107
+ """
108
+ return self._status
109
+
110
+ @status.setter
111
+ def status(self, status):
112
+ r"""Sets the status of this ShowBuildInfoRecordResponse.
113
+
114
+ 返回状态信息
115
+
116
+ :param status: The status of this ShowBuildInfoRecordResponse.
117
+ :type status: str
118
+ """
119
+ self._status = status
120
+
121
+ def to_dict(self):
122
+ """Returns the model properties as a dict"""
123
+ result = {}
124
+
125
+ for attr, _ in six.iteritems(self.openapi_types):
126
+ value = getattr(self, attr)
127
+ if isinstance(value, list):
128
+ result[attr] = list(map(
129
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
130
+ value
131
+ ))
132
+ elif hasattr(value, "to_dict"):
133
+ result[attr] = value.to_dict()
134
+ elif isinstance(value, dict):
135
+ result[attr] = dict(map(
136
+ lambda item: (item[0], item[1].to_dict())
137
+ if hasattr(item[1], "to_dict") else item,
138
+ value.items()
139
+ ))
140
+ else:
141
+ if attr in self.sensitive_list:
142
+ result[attr] = "****"
143
+ else:
144
+ result[attr] = value
145
+
146
+ return result
147
+
148
+ def to_str(self):
149
+ """Returns the string representation of the model"""
150
+ import simplejson as json
151
+ if six.PY2:
152
+ import sys
153
+ reload(sys)
154
+ sys.setdefaultencoding("utf-8")
155
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
156
+
157
+ def __repr__(self):
158
+ """For `print`"""
159
+ return self.to_str()
160
+
161
+ def __eq__(self, other):
162
+ """Returns true if both objects are equal"""
163
+ if not isinstance(other, ShowBuildInfoRecordResponse):
164
+ return False
165
+
166
+ return self.__dict__ == other.__dict__
167
+
168
+ def __ne__(self, other):
169
+ """Returns true if both objects are not equal"""
170
+ return not self == other