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,170 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class DownloadJunitCoverageZipRequest:
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
+ 'root_id': 'str'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'job_id': 'job_id',
27
+ 'build_no': 'build_no',
28
+ 'root_id': 'root_id'
29
+ }
30
+
31
+ def __init__(self, job_id=None, build_no=None, root_id=None):
32
+ r"""DownloadJunitCoverageZipRequest
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param job_id: 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
37
+ :type job_id: str
38
+ :param build_no: 构建任务的构建编号,从1开始,每次构建递增1
39
+ :type build_no: int
40
+ :param root_id: 资源ID,下载覆盖率报告时使用
41
+ :type root_id: str
42
+ """
43
+
44
+
45
+
46
+ self._job_id = None
47
+ self._build_no = None
48
+ self._root_id = None
49
+ self.discriminator = None
50
+
51
+ self.job_id = job_id
52
+ self.build_no = build_no
53
+ self.root_id = root_id
54
+
55
+ @property
56
+ def job_id(self):
57
+ r"""Gets the job_id of this DownloadJunitCoverageZipRequest.
58
+
59
+ 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
60
+
61
+ :return: The job_id of this DownloadJunitCoverageZipRequest.
62
+ :rtype: str
63
+ """
64
+ return self._job_id
65
+
66
+ @job_id.setter
67
+ def job_id(self, job_id):
68
+ r"""Sets the job_id of this DownloadJunitCoverageZipRequest.
69
+
70
+ 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
71
+
72
+ :param job_id: The job_id of this DownloadJunitCoverageZipRequest.
73
+ :type job_id: str
74
+ """
75
+ self._job_id = job_id
76
+
77
+ @property
78
+ def build_no(self):
79
+ r"""Gets the build_no of this DownloadJunitCoverageZipRequest.
80
+
81
+ 构建任务的构建编号,从1开始,每次构建递增1
82
+
83
+ :return: The build_no of this DownloadJunitCoverageZipRequest.
84
+ :rtype: int
85
+ """
86
+ return self._build_no
87
+
88
+ @build_no.setter
89
+ def build_no(self, build_no):
90
+ r"""Sets the build_no of this DownloadJunitCoverageZipRequest.
91
+
92
+ 构建任务的构建编号,从1开始,每次构建递增1
93
+
94
+ :param build_no: The build_no of this DownloadJunitCoverageZipRequest.
95
+ :type build_no: int
96
+ """
97
+ self._build_no = build_no
98
+
99
+ @property
100
+ def root_id(self):
101
+ r"""Gets the root_id of this DownloadJunitCoverageZipRequest.
102
+
103
+ 资源ID,下载覆盖率报告时使用
104
+
105
+ :return: The root_id of this DownloadJunitCoverageZipRequest.
106
+ :rtype: str
107
+ """
108
+ return self._root_id
109
+
110
+ @root_id.setter
111
+ def root_id(self, root_id):
112
+ r"""Sets the root_id of this DownloadJunitCoverageZipRequest.
113
+
114
+ 资源ID,下载覆盖率报告时使用
115
+
116
+ :param root_id: The root_id of this DownloadJunitCoverageZipRequest.
117
+ :type root_id: str
118
+ """
119
+ self._root_id = root_id
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, DownloadJunitCoverageZipRequest):
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
@@ -0,0 +1,85 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.sdk_stream_response import SdkStreamResponse
6
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
7
+
8
+
9
+ class DownloadJunitCoverageZipResponse(SdkStreamResponse):
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
+ }
22
+
23
+ attribute_map = {
24
+ }
25
+
26
+ def __init__(self, response):
27
+ r"""DownloadJunitCoverageZipResponse
28
+
29
+ The model defined in huaweicloud sdk
30
+
31
+ """
32
+
33
+ super(DownloadJunitCoverageZipResponse, self).__init__(response)
34
+ self.discriminator = None
35
+
36
+ def to_dict(self):
37
+ """Returns the model properties as a dict"""
38
+ result = {}
39
+
40
+ for attr, _ in six.iteritems(self.openapi_types):
41
+ value = getattr(self, attr)
42
+ if isinstance(value, list):
43
+ result[attr] = list(map(
44
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
45
+ value
46
+ ))
47
+ elif hasattr(value, "to_dict"):
48
+ result[attr] = value.to_dict()
49
+ elif isinstance(value, dict):
50
+ result[attr] = dict(map(
51
+ lambda item: (item[0], item[1].to_dict())
52
+ if hasattr(item[1], "to_dict") else item,
53
+ value.items()
54
+ ))
55
+ else:
56
+ if attr in self.sensitive_list:
57
+ result[attr] = "****"
58
+ else:
59
+ result[attr] = value
60
+
61
+ return result
62
+
63
+ def to_str(self):
64
+ """Returns the string representation of the model"""
65
+ import simplejson as json
66
+ if six.PY2:
67
+ import sys
68
+ reload(sys)
69
+ sys.setdefaultencoding("utf-8")
70
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
71
+
72
+ def __repr__(self):
73
+ """For `print`"""
74
+ return self.to_str()
75
+
76
+ def __eq__(self, other):
77
+ """Returns true if both objects are equal"""
78
+ if not isinstance(other, DownloadJunitCoverageZipResponse):
79
+ return False
80
+
81
+ return self.__dict__ == other.__dict__
82
+
83
+ def __ne__(self, other):
84
+ """Returns true if both objects are not equal"""
85
+ return not self == other
@@ -0,0 +1,170 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class DownloadKeystoreByNameRequest:
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
+ 'name': 'str',
21
+ 'domain_id': 'str',
22
+ 'id': 'str'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'name': 'name',
27
+ 'domain_id': 'domain_id',
28
+ 'id': 'id'
29
+ }
30
+
31
+ def __init__(self, name=None, domain_id=None, id=None):
32
+ r"""DownloadKeystoreByNameRequest
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param name: 文件名
37
+ :type name: str
38
+ :param domain_id: 租户ID
39
+ :type domain_id: str
40
+ :param id: 文件ID
41
+ :type id: str
42
+ """
43
+
44
+
45
+
46
+ self._name = None
47
+ self._domain_id = None
48
+ self._id = None
49
+ self.discriminator = None
50
+
51
+ self.name = name
52
+ self.domain_id = domain_id
53
+ self.id = id
54
+
55
+ @property
56
+ def name(self):
57
+ r"""Gets the name of this DownloadKeystoreByNameRequest.
58
+
59
+ 文件名
60
+
61
+ :return: The name of this DownloadKeystoreByNameRequest.
62
+ :rtype: str
63
+ """
64
+ return self._name
65
+
66
+ @name.setter
67
+ def name(self, name):
68
+ r"""Sets the name of this DownloadKeystoreByNameRequest.
69
+
70
+ 文件名
71
+
72
+ :param name: The name of this DownloadKeystoreByNameRequest.
73
+ :type name: str
74
+ """
75
+ self._name = name
76
+
77
+ @property
78
+ def domain_id(self):
79
+ r"""Gets the domain_id of this DownloadKeystoreByNameRequest.
80
+
81
+ 租户ID
82
+
83
+ :return: The domain_id of this DownloadKeystoreByNameRequest.
84
+ :rtype: str
85
+ """
86
+ return self._domain_id
87
+
88
+ @domain_id.setter
89
+ def domain_id(self, domain_id):
90
+ r"""Sets the domain_id of this DownloadKeystoreByNameRequest.
91
+
92
+ 租户ID
93
+
94
+ :param domain_id: The domain_id of this DownloadKeystoreByNameRequest.
95
+ :type domain_id: str
96
+ """
97
+ self._domain_id = domain_id
98
+
99
+ @property
100
+ def id(self):
101
+ r"""Gets the id of this DownloadKeystoreByNameRequest.
102
+
103
+ 文件ID
104
+
105
+ :return: The id of this DownloadKeystoreByNameRequest.
106
+ :rtype: str
107
+ """
108
+ return self._id
109
+
110
+ @id.setter
111
+ def id(self, id):
112
+ r"""Sets the id of this DownloadKeystoreByNameRequest.
113
+
114
+ 文件ID
115
+
116
+ :param id: The id of this DownloadKeystoreByNameRequest.
117
+ :type id: str
118
+ """
119
+ self._id = id
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, DownloadKeystoreByNameRequest):
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
@@ -0,0 +1,85 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.sdk_stream_response import SdkStreamResponse
6
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
7
+
8
+
9
+ class DownloadKeystoreByNameResponse(SdkStreamResponse):
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
+ }
22
+
23
+ attribute_map = {
24
+ }
25
+
26
+ def __init__(self, response):
27
+ r"""DownloadKeystoreByNameResponse
28
+
29
+ The model defined in huaweicloud sdk
30
+
31
+ """
32
+
33
+ super(DownloadKeystoreByNameResponse, self).__init__(response)
34
+ self.discriminator = None
35
+
36
+ def to_dict(self):
37
+ """Returns the model properties as a dict"""
38
+ result = {}
39
+
40
+ for attr, _ in six.iteritems(self.openapi_types):
41
+ value = getattr(self, attr)
42
+ if isinstance(value, list):
43
+ result[attr] = list(map(
44
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
45
+ value
46
+ ))
47
+ elif hasattr(value, "to_dict"):
48
+ result[attr] = value.to_dict()
49
+ elif isinstance(value, dict):
50
+ result[attr] = dict(map(
51
+ lambda item: (item[0], item[1].to_dict())
52
+ if hasattr(item[1], "to_dict") else item,
53
+ value.items()
54
+ ))
55
+ else:
56
+ if attr in self.sensitive_list:
57
+ result[attr] = "****"
58
+ else:
59
+ result[attr] = value
60
+
61
+ return result
62
+
63
+ def to_str(self):
64
+ """Returns the string representation of the model"""
65
+ import simplejson as json
66
+ if six.PY2:
67
+ import sys
68
+ reload(sys)
69
+ sys.setdefaultencoding("utf-8")
70
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
71
+
72
+ def __repr__(self):
73
+ """For `print`"""
74
+ return self.to_str()
75
+
76
+ def __eq__(self, other):
77
+ """Returns true if both objects are equal"""
78
+ if not isinstance(other, DownloadKeystoreByNameResponse):
79
+ return False
80
+
81
+ return self.__dict__ == other.__dict__
82
+
83
+ def __ne__(self, other):
84
+ """Returns true if both objects are not equal"""
85
+ return not self == other