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,111 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class JobSummaryBodyResult:
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
+ 'summary': 'JobSummary'
21
+ }
22
+
23
+ attribute_map = {
24
+ 'summary': 'summary'
25
+ }
26
+
27
+ def __init__(self, summary=None):
28
+ r"""JobSummaryBodyResult
29
+
30
+ The model defined in huaweicloud sdk
31
+
32
+ :param summary:
33
+ :type summary: :class:`huaweicloudsdkcodeartsbuild.v3.JobSummary`
34
+ """
35
+
36
+
37
+
38
+ self._summary = None
39
+ self.discriminator = None
40
+
41
+ if summary is not None:
42
+ self.summary = summary
43
+
44
+ @property
45
+ def summary(self):
46
+ r"""Gets the summary of this JobSummaryBodyResult.
47
+
48
+ :return: The summary of this JobSummaryBodyResult.
49
+ :rtype: :class:`huaweicloudsdkcodeartsbuild.v3.JobSummary`
50
+ """
51
+ return self._summary
52
+
53
+ @summary.setter
54
+ def summary(self, summary):
55
+ r"""Sets the summary of this JobSummaryBodyResult.
56
+
57
+ :param summary: The summary of this JobSummaryBodyResult.
58
+ :type summary: :class:`huaweicloudsdkcodeartsbuild.v3.JobSummary`
59
+ """
60
+ self._summary = summary
61
+
62
+ def to_dict(self):
63
+ """Returns the model properties as a dict"""
64
+ result = {}
65
+
66
+ for attr, _ in six.iteritems(self.openapi_types):
67
+ value = getattr(self, attr)
68
+ if isinstance(value, list):
69
+ result[attr] = list(map(
70
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
71
+ value
72
+ ))
73
+ elif hasattr(value, "to_dict"):
74
+ result[attr] = value.to_dict()
75
+ elif isinstance(value, dict):
76
+ result[attr] = dict(map(
77
+ lambda item: (item[0], item[1].to_dict())
78
+ if hasattr(item[1], "to_dict") else item,
79
+ value.items()
80
+ ))
81
+ else:
82
+ if attr in self.sensitive_list:
83
+ result[attr] = "****"
84
+ else:
85
+ result[attr] = value
86
+
87
+ return result
88
+
89
+ def to_str(self):
90
+ """Returns the string representation of the model"""
91
+ import simplejson as json
92
+ if six.PY2:
93
+ import sys
94
+ reload(sys)
95
+ sys.setdefaultencoding("utf-8")
96
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
97
+
98
+ def __repr__(self):
99
+ """For `print`"""
100
+ return self.to_str()
101
+
102
+ def __eq__(self, other):
103
+ """Returns true if both objects are equal"""
104
+ if not isinstance(other, JobSummaryBodyResult):
105
+ return False
106
+
107
+ return self.__dict__ == other.__dict__
108
+
109
+ def __ne__(self, other):
110
+ """Returns true if both objects are not equal"""
111
+ return not self == other
@@ -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 JobUpdateRecordListVoResult:
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_update_records': 'list[JobUpdateRecordListVoResultJobUpdateRecords]',
21
+ 'total': 'int'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'job_update_records': 'job_update_records',
26
+ 'total': 'total'
27
+ }
28
+
29
+ def __init__(self, job_update_records=None, total=None):
30
+ r"""JobUpdateRecordListVoResult
31
+
32
+ The model defined in huaweicloud sdk
33
+
34
+ :param job_update_records: job_update_records
35
+ :type job_update_records: list[:class:`huaweicloudsdkcodeartsbuild.v3.JobUpdateRecordListVoResultJobUpdateRecords`]
36
+ :param total: 总数
37
+ :type total: int
38
+ """
39
+
40
+
41
+
42
+ self._job_update_records = None
43
+ self._total = None
44
+ self.discriminator = None
45
+
46
+ if job_update_records is not None:
47
+ self.job_update_records = job_update_records
48
+ if total is not None:
49
+ self.total = total
50
+
51
+ @property
52
+ def job_update_records(self):
53
+ r"""Gets the job_update_records of this JobUpdateRecordListVoResult.
54
+
55
+ job_update_records
56
+
57
+ :return: The job_update_records of this JobUpdateRecordListVoResult.
58
+ :rtype: list[:class:`huaweicloudsdkcodeartsbuild.v3.JobUpdateRecordListVoResultJobUpdateRecords`]
59
+ """
60
+ return self._job_update_records
61
+
62
+ @job_update_records.setter
63
+ def job_update_records(self, job_update_records):
64
+ r"""Sets the job_update_records of this JobUpdateRecordListVoResult.
65
+
66
+ job_update_records
67
+
68
+ :param job_update_records: The job_update_records of this JobUpdateRecordListVoResult.
69
+ :type job_update_records: list[:class:`huaweicloudsdkcodeartsbuild.v3.JobUpdateRecordListVoResultJobUpdateRecords`]
70
+ """
71
+ self._job_update_records = job_update_records
72
+
73
+ @property
74
+ def total(self):
75
+ r"""Gets the total of this JobUpdateRecordListVoResult.
76
+
77
+ 总数
78
+
79
+ :return: The total of this JobUpdateRecordListVoResult.
80
+ :rtype: int
81
+ """
82
+ return self._total
83
+
84
+ @total.setter
85
+ def total(self, total):
86
+ r"""Sets the total of this JobUpdateRecordListVoResult.
87
+
88
+ 总数
89
+
90
+ :param total: The total of this JobUpdateRecordListVoResult.
91
+ :type total: int
92
+ """
93
+ self._total = total
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, JobUpdateRecordListVoResult):
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,289 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class JobUpdateRecordListVoResultJobUpdateRecords:
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
+ 'id': 'str',
21
+ 'update_number': 'int',
22
+ 'update_type': 'str',
23
+ 'user_id': 'str',
24
+ 'user_name': 'str',
25
+ 'nick_name': 'str',
26
+ 'update_at': 'int'
27
+ }
28
+
29
+ attribute_map = {
30
+ 'id': 'id',
31
+ 'update_number': 'update_number',
32
+ 'update_type': 'update_type',
33
+ 'user_id': 'user_id',
34
+ 'user_name': 'user_name',
35
+ 'nick_name': 'nick_name',
36
+ 'update_at': 'update_at'
37
+ }
38
+
39
+ def __init__(self, id=None, update_number=None, update_type=None, user_id=None, user_name=None, nick_name=None, update_at=None):
40
+ r"""JobUpdateRecordListVoResultJobUpdateRecords
41
+
42
+ The model defined in huaweicloud sdk
43
+
44
+ :param id: 修改编号
45
+ :type id: str
46
+ :param update_number: 更新编号
47
+ :type update_number: int
48
+ :param update_type: 类型
49
+ :type update_type: str
50
+ :param user_id: 用户id
51
+ :type user_id: str
52
+ :param user_name: 用户名
53
+ :type user_name: str
54
+ :param nick_name: 昵称
55
+ :type nick_name: str
56
+ :param update_at: 更新时间
57
+ :type update_at: int
58
+ """
59
+
60
+
61
+
62
+ self._id = None
63
+ self._update_number = None
64
+ self._update_type = None
65
+ self._user_id = None
66
+ self._user_name = None
67
+ self._nick_name = None
68
+ self._update_at = None
69
+ self.discriminator = None
70
+
71
+ if id is not None:
72
+ self.id = id
73
+ if update_number is not None:
74
+ self.update_number = update_number
75
+ if update_type is not None:
76
+ self.update_type = update_type
77
+ if user_id is not None:
78
+ self.user_id = user_id
79
+ if user_name is not None:
80
+ self.user_name = user_name
81
+ if nick_name is not None:
82
+ self.nick_name = nick_name
83
+ if update_at is not None:
84
+ self.update_at = update_at
85
+
86
+ @property
87
+ def id(self):
88
+ r"""Gets the id of this JobUpdateRecordListVoResultJobUpdateRecords.
89
+
90
+ 修改编号
91
+
92
+ :return: The id of this JobUpdateRecordListVoResultJobUpdateRecords.
93
+ :rtype: str
94
+ """
95
+ return self._id
96
+
97
+ @id.setter
98
+ def id(self, id):
99
+ r"""Sets the id of this JobUpdateRecordListVoResultJobUpdateRecords.
100
+
101
+ 修改编号
102
+
103
+ :param id: The id of this JobUpdateRecordListVoResultJobUpdateRecords.
104
+ :type id: str
105
+ """
106
+ self._id = id
107
+
108
+ @property
109
+ def update_number(self):
110
+ r"""Gets the update_number of this JobUpdateRecordListVoResultJobUpdateRecords.
111
+
112
+ 更新编号
113
+
114
+ :return: The update_number of this JobUpdateRecordListVoResultJobUpdateRecords.
115
+ :rtype: int
116
+ """
117
+ return self._update_number
118
+
119
+ @update_number.setter
120
+ def update_number(self, update_number):
121
+ r"""Sets the update_number of this JobUpdateRecordListVoResultJobUpdateRecords.
122
+
123
+ 更新编号
124
+
125
+ :param update_number: The update_number of this JobUpdateRecordListVoResultJobUpdateRecords.
126
+ :type update_number: int
127
+ """
128
+ self._update_number = update_number
129
+
130
+ @property
131
+ def update_type(self):
132
+ r"""Gets the update_type of this JobUpdateRecordListVoResultJobUpdateRecords.
133
+
134
+ 类型
135
+
136
+ :return: The update_type of this JobUpdateRecordListVoResultJobUpdateRecords.
137
+ :rtype: str
138
+ """
139
+ return self._update_type
140
+
141
+ @update_type.setter
142
+ def update_type(self, update_type):
143
+ r"""Sets the update_type of this JobUpdateRecordListVoResultJobUpdateRecords.
144
+
145
+ 类型
146
+
147
+ :param update_type: The update_type of this JobUpdateRecordListVoResultJobUpdateRecords.
148
+ :type update_type: str
149
+ """
150
+ self._update_type = update_type
151
+
152
+ @property
153
+ def user_id(self):
154
+ r"""Gets the user_id of this JobUpdateRecordListVoResultJobUpdateRecords.
155
+
156
+ 用户id
157
+
158
+ :return: The user_id of this JobUpdateRecordListVoResultJobUpdateRecords.
159
+ :rtype: str
160
+ """
161
+ return self._user_id
162
+
163
+ @user_id.setter
164
+ def user_id(self, user_id):
165
+ r"""Sets the user_id of this JobUpdateRecordListVoResultJobUpdateRecords.
166
+
167
+ 用户id
168
+
169
+ :param user_id: The user_id of this JobUpdateRecordListVoResultJobUpdateRecords.
170
+ :type user_id: str
171
+ """
172
+ self._user_id = user_id
173
+
174
+ @property
175
+ def user_name(self):
176
+ r"""Gets the user_name of this JobUpdateRecordListVoResultJobUpdateRecords.
177
+
178
+ 用户名
179
+
180
+ :return: The user_name of this JobUpdateRecordListVoResultJobUpdateRecords.
181
+ :rtype: str
182
+ """
183
+ return self._user_name
184
+
185
+ @user_name.setter
186
+ def user_name(self, user_name):
187
+ r"""Sets the user_name of this JobUpdateRecordListVoResultJobUpdateRecords.
188
+
189
+ 用户名
190
+
191
+ :param user_name: The user_name of this JobUpdateRecordListVoResultJobUpdateRecords.
192
+ :type user_name: str
193
+ """
194
+ self._user_name = user_name
195
+
196
+ @property
197
+ def nick_name(self):
198
+ r"""Gets the nick_name of this JobUpdateRecordListVoResultJobUpdateRecords.
199
+
200
+ 昵称
201
+
202
+ :return: The nick_name of this JobUpdateRecordListVoResultJobUpdateRecords.
203
+ :rtype: str
204
+ """
205
+ return self._nick_name
206
+
207
+ @nick_name.setter
208
+ def nick_name(self, nick_name):
209
+ r"""Sets the nick_name of this JobUpdateRecordListVoResultJobUpdateRecords.
210
+
211
+ 昵称
212
+
213
+ :param nick_name: The nick_name of this JobUpdateRecordListVoResultJobUpdateRecords.
214
+ :type nick_name: str
215
+ """
216
+ self._nick_name = nick_name
217
+
218
+ @property
219
+ def update_at(self):
220
+ r"""Gets the update_at of this JobUpdateRecordListVoResultJobUpdateRecords.
221
+
222
+ 更新时间
223
+
224
+ :return: The update_at of this JobUpdateRecordListVoResultJobUpdateRecords.
225
+ :rtype: int
226
+ """
227
+ return self._update_at
228
+
229
+ @update_at.setter
230
+ def update_at(self, update_at):
231
+ r"""Sets the update_at of this JobUpdateRecordListVoResultJobUpdateRecords.
232
+
233
+ 更新时间
234
+
235
+ :param update_at: The update_at of this JobUpdateRecordListVoResultJobUpdateRecords.
236
+ :type update_at: int
237
+ """
238
+ self._update_at = update_at
239
+
240
+ def to_dict(self):
241
+ """Returns the model properties as a dict"""
242
+ result = {}
243
+
244
+ for attr, _ in six.iteritems(self.openapi_types):
245
+ value = getattr(self, attr)
246
+ if isinstance(value, list):
247
+ result[attr] = list(map(
248
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
249
+ value
250
+ ))
251
+ elif hasattr(value, "to_dict"):
252
+ result[attr] = value.to_dict()
253
+ elif isinstance(value, dict):
254
+ result[attr] = dict(map(
255
+ lambda item: (item[0], item[1].to_dict())
256
+ if hasattr(item[1], "to_dict") else item,
257
+ value.items()
258
+ ))
259
+ else:
260
+ if attr in self.sensitive_list:
261
+ result[attr] = "****"
262
+ else:
263
+ result[attr] = value
264
+
265
+ return result
266
+
267
+ def to_str(self):
268
+ """Returns the string representation of the model"""
269
+ import simplejson as json
270
+ if six.PY2:
271
+ import sys
272
+ reload(sys)
273
+ sys.setdefaultencoding("utf-8")
274
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
275
+
276
+ def __repr__(self):
277
+ """For `print`"""
278
+ return self.to_str()
279
+
280
+ def __eq__(self, other):
281
+ """Returns true if both objects are equal"""
282
+ if not isinstance(other, JobUpdateRecordListVoResultJobUpdateRecords):
283
+ return False
284
+
285
+ return self.__dict__ == other.__dict__
286
+
287
+ def __ne__(self, other):
288
+ """Returns true if both objects are not equal"""
289
+ 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 ListBuildParameterRequest:
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"""ListBuildParameterRequest
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 ListBuildParameterRequest.
52
+
53
+ 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
54
+
55
+ :return: The job_id of this ListBuildParameterRequest.
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 ListBuildParameterRequest.
63
+
64
+ 构建的任务ID; 编辑构建任务时,浏览器URL末尾的32位数字、字母组合的字符串。
65
+
66
+ :param job_id: The job_id of this ListBuildParameterRequest.
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 ListBuildParameterRequest.
74
+
75
+ 构建任务的构建编号,从1开始,每次构建递增1
76
+
77
+ :return: The build_no of this ListBuildParameterRequest.
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 ListBuildParameterRequest.
85
+
86
+ 构建任务的构建编号,从1开始,每次构建递增1
87
+
88
+ :param build_no: The build_no of this ListBuildParameterRequest.
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, ListBuildParameterRequest):
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