huaweicloudsdkcodeartsbuild 3.1.148__py2.py3-none-any.whl → 3.1.149__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.
- huaweicloudsdkcodeartsbuild/v3/__init__.py +27 -2
- huaweicloudsdkcodeartsbuild/v3/codeartsbuild_async_client.py +481 -0
- huaweicloudsdkcodeartsbuild/v3/codeartsbuild_client.py +481 -0
- huaweicloudsdkcodeartsbuild/v3/model/__init__.py +27 -2
- huaweicloudsdkcodeartsbuild/v3/model/build_info_record.py +604 -0
- huaweicloudsdkcodeartsbuild/v3/model/build_info_record_commit_info.py +144 -0
- huaweicloudsdkcodeartsbuild/v3/model/build_stage_record.py +608 -0
- huaweicloudsdkcodeartsbuild/v3/model/download_real_time_log_request.py +199 -0
- huaweicloudsdkcodeartsbuild/v3/model/download_real_time_log_response.py +170 -0
- huaweicloudsdkcodeartsbuild/v3/model/{flow_graph_result.py → flow_graph2_result.py} +15 -15
- huaweicloudsdkcodeartsbuild/v3/model/{flow_graph_result_edges.py → flow_graph2_result_edges.py} +11 -11
- huaweicloudsdkcodeartsbuild/v3/model/full_stages_result.py +115 -0
- huaweicloudsdkcodeartsbuild/v3/model/list_build_info_record_body_result.py +231 -0
- huaweicloudsdkcodeartsbuild/v3/model/list_build_info_record_request.py +228 -0
- huaweicloudsdkcodeartsbuild/v3/model/list_build_info_record_response.py +170 -0
- huaweicloudsdkcodeartsbuild/v3/model/real_time_log_response_body_result.py +202 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_build_record_full_stages_request.py +143 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_build_record_full_stages_response.py +170 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_flow_graph_response.py +4 -4
- huaweicloudsdkcodeartsbuild/v3/model/show_job_build_success_ratio_request.py +199 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_job_build_success_ratio_response.py +141 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_job_build_success_ratio_result.py +260 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_job_build_success_ratio_result_every_day_report.py +144 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_report_summary.py +463 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_report_summary_body_result.py +140 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_report_summary_request.py +142 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_report_summary_response.py +170 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_running_status_request.py +114 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_running_status_response.py +170 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_running_status_result.py +202 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_yaml_template_request.py +143 -0
- huaweicloudsdkcodeartsbuild/v3/model/show_yaml_template_response.py +174 -0
- huaweicloudsdkcodeartsbuild/v3/region/codeartsbuild_region.py +6 -0
- {huaweicloudsdkcodeartsbuild-3.1.148.dist-info → huaweicloudsdkcodeartsbuild-3.1.149.dist-info}/METADATA +2 -2
- {huaweicloudsdkcodeartsbuild-3.1.148.dist-info → huaweicloudsdkcodeartsbuild-3.1.149.dist-info}/RECORD +38 -13
- {huaweicloudsdkcodeartsbuild-3.1.148.dist-info → huaweicloudsdkcodeartsbuild-3.1.149.dist-info}/LICENSE +0 -0
- {huaweicloudsdkcodeartsbuild-3.1.148.dist-info → huaweicloudsdkcodeartsbuild-3.1.149.dist-info}/WHEEL +0 -0
- {huaweicloudsdkcodeartsbuild-3.1.148.dist-info → huaweicloudsdkcodeartsbuild-3.1.149.dist-info}/top_level.txt +0 -0
@@ -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 RealTimeLogResponseBodyResult:
|
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
|
+
'has_more_data': 'bool',
|
21
|
+
'offset': 'int',
|
22
|
+
'content': 'str',
|
23
|
+
'current_offset': 'int'
|
24
|
+
}
|
25
|
+
|
26
|
+
attribute_map = {
|
27
|
+
'has_more_data': 'has_more_data',
|
28
|
+
'offset': 'offset',
|
29
|
+
'content': 'content',
|
30
|
+
'current_offset': 'current_offset'
|
31
|
+
}
|
32
|
+
|
33
|
+
def __init__(self, has_more_data=None, offset=None, content=None, current_offset=None):
|
34
|
+
r"""RealTimeLogResponseBodyResult
|
35
|
+
|
36
|
+
The model defined in huaweicloud sdk
|
37
|
+
|
38
|
+
:param has_more_data: 是否还有剩余日志标识
|
39
|
+
:type has_more_data: bool
|
40
|
+
:param offset: 偏移量,可用于下一次请求
|
41
|
+
:type offset: int
|
42
|
+
:param content: 返回日志内容,可能会空,请再次请求
|
43
|
+
:type content: str
|
44
|
+
:param current_offset: 当前请求偏移量
|
45
|
+
:type current_offset: int
|
46
|
+
"""
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
self._has_more_data = None
|
51
|
+
self._offset = None
|
52
|
+
self._content = None
|
53
|
+
self._current_offset = None
|
54
|
+
self.discriminator = None
|
55
|
+
|
56
|
+
if has_more_data is not None:
|
57
|
+
self.has_more_data = has_more_data
|
58
|
+
if offset is not None:
|
59
|
+
self.offset = offset
|
60
|
+
if content is not None:
|
61
|
+
self.content = content
|
62
|
+
if current_offset is not None:
|
63
|
+
self.current_offset = current_offset
|
64
|
+
|
65
|
+
@property
|
66
|
+
def has_more_data(self):
|
67
|
+
r"""Gets the has_more_data of this RealTimeLogResponseBodyResult.
|
68
|
+
|
69
|
+
是否还有剩余日志标识
|
70
|
+
|
71
|
+
:return: The has_more_data of this RealTimeLogResponseBodyResult.
|
72
|
+
:rtype: bool
|
73
|
+
"""
|
74
|
+
return self._has_more_data
|
75
|
+
|
76
|
+
@has_more_data.setter
|
77
|
+
def has_more_data(self, has_more_data):
|
78
|
+
r"""Sets the has_more_data of this RealTimeLogResponseBodyResult.
|
79
|
+
|
80
|
+
是否还有剩余日志标识
|
81
|
+
|
82
|
+
:param has_more_data: The has_more_data of this RealTimeLogResponseBodyResult.
|
83
|
+
:type has_more_data: bool
|
84
|
+
"""
|
85
|
+
self._has_more_data = has_more_data
|
86
|
+
|
87
|
+
@property
|
88
|
+
def offset(self):
|
89
|
+
r"""Gets the offset of this RealTimeLogResponseBodyResult.
|
90
|
+
|
91
|
+
偏移量,可用于下一次请求
|
92
|
+
|
93
|
+
:return: The offset of this RealTimeLogResponseBodyResult.
|
94
|
+
:rtype: int
|
95
|
+
"""
|
96
|
+
return self._offset
|
97
|
+
|
98
|
+
@offset.setter
|
99
|
+
def offset(self, offset):
|
100
|
+
r"""Sets the offset of this RealTimeLogResponseBodyResult.
|
101
|
+
|
102
|
+
偏移量,可用于下一次请求
|
103
|
+
|
104
|
+
:param offset: The offset of this RealTimeLogResponseBodyResult.
|
105
|
+
:type offset: int
|
106
|
+
"""
|
107
|
+
self._offset = offset
|
108
|
+
|
109
|
+
@property
|
110
|
+
def content(self):
|
111
|
+
r"""Gets the content of this RealTimeLogResponseBodyResult.
|
112
|
+
|
113
|
+
返回日志内容,可能会空,请再次请求
|
114
|
+
|
115
|
+
:return: The content of this RealTimeLogResponseBodyResult.
|
116
|
+
:rtype: str
|
117
|
+
"""
|
118
|
+
return self._content
|
119
|
+
|
120
|
+
@content.setter
|
121
|
+
def content(self, content):
|
122
|
+
r"""Sets the content of this RealTimeLogResponseBodyResult.
|
123
|
+
|
124
|
+
返回日志内容,可能会空,请再次请求
|
125
|
+
|
126
|
+
:param content: The content of this RealTimeLogResponseBodyResult.
|
127
|
+
:type content: str
|
128
|
+
"""
|
129
|
+
self._content = content
|
130
|
+
|
131
|
+
@property
|
132
|
+
def current_offset(self):
|
133
|
+
r"""Gets the current_offset of this RealTimeLogResponseBodyResult.
|
134
|
+
|
135
|
+
当前请求偏移量
|
136
|
+
|
137
|
+
:return: The current_offset of this RealTimeLogResponseBodyResult.
|
138
|
+
:rtype: int
|
139
|
+
"""
|
140
|
+
return self._current_offset
|
141
|
+
|
142
|
+
@current_offset.setter
|
143
|
+
def current_offset(self, current_offset):
|
144
|
+
r"""Sets the current_offset of this RealTimeLogResponseBodyResult.
|
145
|
+
|
146
|
+
当前请求偏移量
|
147
|
+
|
148
|
+
:param current_offset: The current_offset of this RealTimeLogResponseBodyResult.
|
149
|
+
:type current_offset: int
|
150
|
+
"""
|
151
|
+
self._current_offset = current_offset
|
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, RealTimeLogResponseBodyResult):
|
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
|
@@ -0,0 +1,143 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class ShowBuildRecordFullStagesRequest:
|
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
|
+
'record_id': 'str',
|
21
|
+
'cascade': 'bool'
|
22
|
+
}
|
23
|
+
|
24
|
+
attribute_map = {
|
25
|
+
'record_id': 'record_id',
|
26
|
+
'cascade': 'cascade'
|
27
|
+
}
|
28
|
+
|
29
|
+
def __init__(self, record_id=None, cascade=None):
|
30
|
+
r"""ShowBuildRecordFullStagesRequest
|
31
|
+
|
32
|
+
The model defined in huaweicloud sdk
|
33
|
+
|
34
|
+
:param record_id: 记录ID,36位数字、小写字母、'-'组组合。
|
35
|
+
:type record_id: str
|
36
|
+
:param cascade: 是否联级获取steps
|
37
|
+
:type cascade: bool
|
38
|
+
"""
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
self._record_id = None
|
43
|
+
self._cascade = None
|
44
|
+
self.discriminator = None
|
45
|
+
|
46
|
+
self.record_id = record_id
|
47
|
+
if cascade is not None:
|
48
|
+
self.cascade = cascade
|
49
|
+
|
50
|
+
@property
|
51
|
+
def record_id(self):
|
52
|
+
r"""Gets the record_id of this ShowBuildRecordFullStagesRequest.
|
53
|
+
|
54
|
+
记录ID,36位数字、小写字母、'-'组组合。
|
55
|
+
|
56
|
+
:return: The record_id of this ShowBuildRecordFullStagesRequest.
|
57
|
+
:rtype: str
|
58
|
+
"""
|
59
|
+
return self._record_id
|
60
|
+
|
61
|
+
@record_id.setter
|
62
|
+
def record_id(self, record_id):
|
63
|
+
r"""Sets the record_id of this ShowBuildRecordFullStagesRequest.
|
64
|
+
|
65
|
+
记录ID,36位数字、小写字母、'-'组组合。
|
66
|
+
|
67
|
+
:param record_id: The record_id of this ShowBuildRecordFullStagesRequest.
|
68
|
+
:type record_id: str
|
69
|
+
"""
|
70
|
+
self._record_id = record_id
|
71
|
+
|
72
|
+
@property
|
73
|
+
def cascade(self):
|
74
|
+
r"""Gets the cascade of this ShowBuildRecordFullStagesRequest.
|
75
|
+
|
76
|
+
是否联级获取steps
|
77
|
+
|
78
|
+
:return: The cascade of this ShowBuildRecordFullStagesRequest.
|
79
|
+
:rtype: bool
|
80
|
+
"""
|
81
|
+
return self._cascade
|
82
|
+
|
83
|
+
@cascade.setter
|
84
|
+
def cascade(self, cascade):
|
85
|
+
r"""Sets the cascade of this ShowBuildRecordFullStagesRequest.
|
86
|
+
|
87
|
+
是否联级获取steps
|
88
|
+
|
89
|
+
:param cascade: The cascade of this ShowBuildRecordFullStagesRequest.
|
90
|
+
:type cascade: bool
|
91
|
+
"""
|
92
|
+
self._cascade = cascade
|
93
|
+
|
94
|
+
def to_dict(self):
|
95
|
+
"""Returns the model properties as a dict"""
|
96
|
+
result = {}
|
97
|
+
|
98
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
99
|
+
value = getattr(self, attr)
|
100
|
+
if isinstance(value, list):
|
101
|
+
result[attr] = list(map(
|
102
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
103
|
+
value
|
104
|
+
))
|
105
|
+
elif hasattr(value, "to_dict"):
|
106
|
+
result[attr] = value.to_dict()
|
107
|
+
elif isinstance(value, dict):
|
108
|
+
result[attr] = dict(map(
|
109
|
+
lambda item: (item[0], item[1].to_dict())
|
110
|
+
if hasattr(item[1], "to_dict") else item,
|
111
|
+
value.items()
|
112
|
+
))
|
113
|
+
else:
|
114
|
+
if attr in self.sensitive_list:
|
115
|
+
result[attr] = "****"
|
116
|
+
else:
|
117
|
+
result[attr] = value
|
118
|
+
|
119
|
+
return result
|
120
|
+
|
121
|
+
def to_str(self):
|
122
|
+
"""Returns the string representation of the model"""
|
123
|
+
import simplejson as json
|
124
|
+
if six.PY2:
|
125
|
+
import sys
|
126
|
+
reload(sys)
|
127
|
+
sys.setdefaultencoding("utf-8")
|
128
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
129
|
+
|
130
|
+
def __repr__(self):
|
131
|
+
"""For `print`"""
|
132
|
+
return self.to_str()
|
133
|
+
|
134
|
+
def __eq__(self, other):
|
135
|
+
"""Returns true if both objects are equal"""
|
136
|
+
if not isinstance(other, ShowBuildRecordFullStagesRequest):
|
137
|
+
return False
|
138
|
+
|
139
|
+
return self.__dict__ == other.__dict__
|
140
|
+
|
141
|
+
def __ne__(self, other):
|
142
|
+
"""Returns true if both objects are not equal"""
|
143
|
+
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 ShowBuildRecordFullStagesResponse(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
|
+
'status': 'str',
|
22
|
+
'error': 'object',
|
23
|
+
'result': 'FullStagesResult'
|
24
|
+
}
|
25
|
+
|
26
|
+
attribute_map = {
|
27
|
+
'status': 'status',
|
28
|
+
'error': 'error',
|
29
|
+
'result': 'result'
|
30
|
+
}
|
31
|
+
|
32
|
+
def __init__(self, status=None, error=None, result=None):
|
33
|
+
r"""ShowBuildRecordFullStagesResponse
|
34
|
+
|
35
|
+
The model defined in huaweicloud sdk
|
36
|
+
|
37
|
+
:param status: 状态
|
38
|
+
:type status: str
|
39
|
+
:param error: 错误
|
40
|
+
:type error: object
|
41
|
+
:param result:
|
42
|
+
:type result: :class:`huaweicloudsdkcodeartsbuild.v3.FullStagesResult`
|
43
|
+
"""
|
44
|
+
|
45
|
+
super(ShowBuildRecordFullStagesResponse, self).__init__()
|
46
|
+
|
47
|
+
self._status = None
|
48
|
+
self._error = None
|
49
|
+
self._result = None
|
50
|
+
self.discriminator = None
|
51
|
+
|
52
|
+
if status is not None:
|
53
|
+
self.status = status
|
54
|
+
if error is not None:
|
55
|
+
self.error = error
|
56
|
+
if result is not None:
|
57
|
+
self.result = result
|
58
|
+
|
59
|
+
@property
|
60
|
+
def status(self):
|
61
|
+
r"""Gets the status of this ShowBuildRecordFullStagesResponse.
|
62
|
+
|
63
|
+
状态
|
64
|
+
|
65
|
+
:return: The status of this ShowBuildRecordFullStagesResponse.
|
66
|
+
:rtype: str
|
67
|
+
"""
|
68
|
+
return self._status
|
69
|
+
|
70
|
+
@status.setter
|
71
|
+
def status(self, status):
|
72
|
+
r"""Sets the status of this ShowBuildRecordFullStagesResponse.
|
73
|
+
|
74
|
+
状态
|
75
|
+
|
76
|
+
:param status: The status of this ShowBuildRecordFullStagesResponse.
|
77
|
+
:type status: str
|
78
|
+
"""
|
79
|
+
self._status = status
|
80
|
+
|
81
|
+
@property
|
82
|
+
def error(self):
|
83
|
+
r"""Gets the error of this ShowBuildRecordFullStagesResponse.
|
84
|
+
|
85
|
+
错误
|
86
|
+
|
87
|
+
:return: The error of this ShowBuildRecordFullStagesResponse.
|
88
|
+
:rtype: object
|
89
|
+
"""
|
90
|
+
return self._error
|
91
|
+
|
92
|
+
@error.setter
|
93
|
+
def error(self, error):
|
94
|
+
r"""Sets the error of this ShowBuildRecordFullStagesResponse.
|
95
|
+
|
96
|
+
错误
|
97
|
+
|
98
|
+
:param error: The error of this ShowBuildRecordFullStagesResponse.
|
99
|
+
:type error: object
|
100
|
+
"""
|
101
|
+
self._error = error
|
102
|
+
|
103
|
+
@property
|
104
|
+
def result(self):
|
105
|
+
r"""Gets the result of this ShowBuildRecordFullStagesResponse.
|
106
|
+
|
107
|
+
:return: The result of this ShowBuildRecordFullStagesResponse.
|
108
|
+
:rtype: :class:`huaweicloudsdkcodeartsbuild.v3.FullStagesResult`
|
109
|
+
"""
|
110
|
+
return self._result
|
111
|
+
|
112
|
+
@result.setter
|
113
|
+
def result(self, result):
|
114
|
+
r"""Sets the result of this ShowBuildRecordFullStagesResponse.
|
115
|
+
|
116
|
+
:param result: The result of this ShowBuildRecordFullStagesResponse.
|
117
|
+
:type result: :class:`huaweicloudsdkcodeartsbuild.v3.FullStagesResult`
|
118
|
+
"""
|
119
|
+
self._result = result
|
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, ShowBuildRecordFullStagesResponse):
|
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
|
@@ -21,7 +21,7 @@ class ShowFlowGraphResponse(SdkResponse):
|
|
21
21
|
'success': 'bool',
|
22
22
|
'message': 'str',
|
23
23
|
'err_code': 'str',
|
24
|
-
'result': '
|
24
|
+
'result': 'FlowGraph2Result'
|
25
25
|
}
|
26
26
|
|
27
27
|
attribute_map = {
|
@@ -43,7 +43,7 @@ class ShowFlowGraphResponse(SdkResponse):
|
|
43
43
|
:param err_code: 错误码
|
44
44
|
:type err_code: str
|
45
45
|
:param result:
|
46
|
-
:type result: :class:`huaweicloudsdkcodeartsbuild.v3.
|
46
|
+
:type result: :class:`huaweicloudsdkcodeartsbuild.v3.FlowGraph2Result`
|
47
47
|
"""
|
48
48
|
|
49
49
|
super(ShowFlowGraphResponse, self).__init__()
|
@@ -134,7 +134,7 @@ class ShowFlowGraphResponse(SdkResponse):
|
|
134
134
|
r"""Gets the result of this ShowFlowGraphResponse.
|
135
135
|
|
136
136
|
:return: The result of this ShowFlowGraphResponse.
|
137
|
-
:rtype: :class:`huaweicloudsdkcodeartsbuild.v3.
|
137
|
+
:rtype: :class:`huaweicloudsdkcodeartsbuild.v3.FlowGraph2Result`
|
138
138
|
"""
|
139
139
|
return self._result
|
140
140
|
|
@@ -143,7 +143,7 @@ class ShowFlowGraphResponse(SdkResponse):
|
|
143
143
|
r"""Sets the result of this ShowFlowGraphResponse.
|
144
144
|
|
145
145
|
:param result: The result of this ShowFlowGraphResponse.
|
146
|
-
:type result: :class:`huaweicloudsdkcodeartsbuild.v3.
|
146
|
+
:type result: :class:`huaweicloudsdkcodeartsbuild.v3.FlowGraph2Result`
|
147
147
|
"""
|
148
148
|
self._result = result
|
149
149
|
|