volcengine-python-sdk 4.0.25__py2.py3-none-any.whl → 4.0.26__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.

Potentially problematic release.


This version of volcengine-python-sdk might be problematic. Click here for more details.

Files changed (76) hide show
  1. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/METADATA +1 -1
  2. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/RECORD +76 -11
  3. volcenginesdkbilling/__init__.py +65 -0
  4. volcenginesdkbilling/api/billing_api.py +1662 -13
  5. volcenginesdkbilling/models/__init__.py +65 -0
  6. volcenginesdkbilling/models/billing_mode_info_list_for_list_budget_filter_billing_mode_output.py +149 -0
  7. volcenginesdkbilling/models/budget_alert_message_detail_list_for_query_budget_detail_output.py +279 -0
  8. volcenginesdkbilling/models/budget_alert_message_for_create_budget_input.py +201 -0
  9. volcenginesdkbilling/models/budget_alert_message_for_update_budget_input.py +201 -0
  10. volcenginesdkbilling/models/budget_alert_rule_for_create_budget_input.py +215 -0
  11. volcenginesdkbilling/models/budget_alert_rule_for_update_budget_input.py +215 -0
  12. volcenginesdkbilling/models/budget_alert_rule_list_for_query_budget_detail_output.py +201 -0
  13. volcenginesdkbilling/models/budget_amount_for_create_budget_input.py +175 -0
  14. volcenginesdkbilling/models/budget_amount_for_update_budget_input.py +175 -0
  15. volcenginesdkbilling/models/budget_amount_list_for_list_budget_amount_by_budget_id_output.py +253 -0
  16. volcenginesdkbilling/models/budget_for_create_budget_input.py +274 -0
  17. volcenginesdkbilling/models/budget_for_query_budget_detail_output.py +253 -0
  18. volcenginesdkbilling/models/budget_for_update_budget_input.py +274 -0
  19. volcenginesdkbilling/models/budget_list_for_list_budget_output.py +357 -0
  20. volcenginesdkbilling/models/budget_range_billing_mode_for_query_budget_detail_output.py +149 -0
  21. volcenginesdkbilling/models/budget_range_for_create_budget_input.py +331 -0
  22. volcenginesdkbilling/models/budget_range_for_update_budget_input.py +331 -0
  23. volcenginesdkbilling/models/budget_range_info_for_query_budget_detail_output.py +331 -0
  24. volcenginesdkbilling/models/budget_range_owner_for_query_budget_detail_output.py +149 -0
  25. volcenginesdkbilling/models/budget_range_payer_for_query_budget_detail_output.py +149 -0
  26. volcenginesdkbilling/models/budget_range_product_for_query_budget_detail_output.py +149 -0
  27. volcenginesdkbilling/models/budget_range_region_for_query_budget_detail_output.py +149 -0
  28. volcenginesdkbilling/models/budget_range_subject_for_query_budget_detail_output.py +149 -0
  29. volcenginesdkbilling/models/budget_range_zone_for_query_budget_detail_output.py +149 -0
  30. volcenginesdkbilling/models/create_budget_request.py +227 -0
  31. volcenginesdkbilling/models/create_budget_response.py +123 -0
  32. volcenginesdkbilling/models/delete_budget_request.py +124 -0
  33. volcenginesdkbilling/models/delete_budget_response.py +95 -0
  34. volcenginesdkbilling/models/list_budget_amount_by_budget_id_request.py +124 -0
  35. volcenginesdkbilling/models/list_budget_amount_by_budget_id_response.py +123 -0
  36. volcenginesdkbilling/models/list_budget_filter_billing_mode_request.py +151 -0
  37. volcenginesdkbilling/models/list_budget_filter_billing_mode_response.py +201 -0
  38. volcenginesdkbilling/models/list_budget_filter_owner_id_request.py +95 -0
  39. volcenginesdkbilling/models/list_budget_filter_owner_id_response.py +123 -0
  40. volcenginesdkbilling/models/list_budget_filter_payer_id_request.py +95 -0
  41. volcenginesdkbilling/models/list_budget_filter_payer_id_response.py +123 -0
  42. volcenginesdkbilling/models/list_budget_filter_product_request.py +151 -0
  43. volcenginesdkbilling/models/list_budget_filter_product_response.py +201 -0
  44. volcenginesdkbilling/models/list_budget_filter_project_request.py +151 -0
  45. volcenginesdkbilling/models/list_budget_filter_project_response.py +201 -0
  46. volcenginesdkbilling/models/list_budget_filter_region_code_request.py +151 -0
  47. volcenginesdkbilling/models/list_budget_filter_region_code_response.py +201 -0
  48. volcenginesdkbilling/models/list_budget_filter_subject_info_request.py +151 -0
  49. volcenginesdkbilling/models/list_budget_filter_subject_info_response.py +201 -0
  50. volcenginesdkbilling/models/list_budget_filter_tag_key_request.py +151 -0
  51. volcenginesdkbilling/models/list_budget_filter_tag_key_response.py +201 -0
  52. volcenginesdkbilling/models/list_budget_filter_tag_value_request.py +178 -0
  53. volcenginesdkbilling/models/list_budget_filter_tag_value_response.py +201 -0
  54. volcenginesdkbilling/models/list_budget_filter_zone_code_request.py +151 -0
  55. volcenginesdkbilling/models/list_budget_filter_zone_code_response.py +201 -0
  56. volcenginesdkbilling/models/list_budget_request.py +302 -0
  57. volcenginesdkbilling/models/list_budget_response.py +201 -0
  58. volcenginesdkbilling/models/list_for_list_budget_filter_owner_id_output.py +149 -0
  59. volcenginesdkbilling/models/list_for_list_budget_filter_payer_id_output.py +149 -0
  60. volcenginesdkbilling/models/list_for_list_budget_filter_product_output.py +149 -0
  61. volcenginesdkbilling/models/list_recipient_information_request.py +151 -0
  62. volcenginesdkbilling/models/list_recipient_information_response.py +201 -0
  63. volcenginesdkbilling/models/query_budget_detail_request.py +124 -0
  64. volcenginesdkbilling/models/query_budget_detail_response.py +201 -0
  65. volcenginesdkbilling/models/recipient_information_list_for_list_recipient_information_output.py +201 -0
  66. volcenginesdkbilling/models/region_info_list_for_list_budget_filter_region_code_output.py +149 -0
  67. volcenginesdkbilling/models/subject_info_list_for_list_budget_filter_subject_info_output.py +149 -0
  68. volcenginesdkbilling/models/update_budget_request.py +254 -0
  69. volcenginesdkbilling/models/update_budget_response.py +95 -0
  70. volcenginesdkbilling/models/zone_info_list_for_list_budget_filter_zone_code_output.py +149 -0
  71. volcenginesdkcore/api_client.py +1 -1
  72. volcenginesdkcore/configuration.py +1 -1
  73. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/WHEEL +0 -0
  74. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/licenses/LICENSE.txt +0 -0
  75. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/licenses/NOTICE.md +0 -0
  76. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,227 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ billing
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class CreateBudgetRequest(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'budget': 'BudgetForCreateBudgetInput',
37
+ 'budget_alert_message': 'list[BudgetAlertMessageForCreateBudgetInput]',
38
+ 'budget_alert_rule': 'list[BudgetAlertRuleForCreateBudgetInput]',
39
+ 'budget_amount': 'list[BudgetAmountForCreateBudgetInput]',
40
+ 'budget_range': 'BudgetRangeForCreateBudgetInput'
41
+ }
42
+
43
+ attribute_map = {
44
+ 'budget': 'Budget',
45
+ 'budget_alert_message': 'BudgetAlertMessage',
46
+ 'budget_alert_rule': 'BudgetAlertRule',
47
+ 'budget_amount': 'BudgetAmount',
48
+ 'budget_range': 'BudgetRange'
49
+ }
50
+
51
+ def __init__(self, budget=None, budget_alert_message=None, budget_alert_rule=None, budget_amount=None, budget_range=None, _configuration=None): # noqa: E501
52
+ """CreateBudgetRequest - a model defined in Swagger""" # noqa: E501
53
+ if _configuration is None:
54
+ _configuration = Configuration()
55
+ self._configuration = _configuration
56
+
57
+ self._budget = None
58
+ self._budget_alert_message = None
59
+ self._budget_alert_rule = None
60
+ self._budget_amount = None
61
+ self._budget_range = None
62
+ self.discriminator = None
63
+
64
+ if budget is not None:
65
+ self.budget = budget
66
+ if budget_alert_message is not None:
67
+ self.budget_alert_message = budget_alert_message
68
+ if budget_alert_rule is not None:
69
+ self.budget_alert_rule = budget_alert_rule
70
+ if budget_amount is not None:
71
+ self.budget_amount = budget_amount
72
+ if budget_range is not None:
73
+ self.budget_range = budget_range
74
+
75
+ @property
76
+ def budget(self):
77
+ """Gets the budget of this CreateBudgetRequest. # noqa: E501
78
+
79
+
80
+ :return: The budget of this CreateBudgetRequest. # noqa: E501
81
+ :rtype: BudgetForCreateBudgetInput
82
+ """
83
+ return self._budget
84
+
85
+ @budget.setter
86
+ def budget(self, budget):
87
+ """Sets the budget of this CreateBudgetRequest.
88
+
89
+
90
+ :param budget: The budget of this CreateBudgetRequest. # noqa: E501
91
+ :type: BudgetForCreateBudgetInput
92
+ """
93
+
94
+ self._budget = budget
95
+
96
+ @property
97
+ def budget_alert_message(self):
98
+ """Gets the budget_alert_message of this CreateBudgetRequest. # noqa: E501
99
+
100
+
101
+ :return: The budget_alert_message of this CreateBudgetRequest. # noqa: E501
102
+ :rtype: list[BudgetAlertMessageForCreateBudgetInput]
103
+ """
104
+ return self._budget_alert_message
105
+
106
+ @budget_alert_message.setter
107
+ def budget_alert_message(self, budget_alert_message):
108
+ """Sets the budget_alert_message of this CreateBudgetRequest.
109
+
110
+
111
+ :param budget_alert_message: The budget_alert_message of this CreateBudgetRequest. # noqa: E501
112
+ :type: list[BudgetAlertMessageForCreateBudgetInput]
113
+ """
114
+
115
+ self._budget_alert_message = budget_alert_message
116
+
117
+ @property
118
+ def budget_alert_rule(self):
119
+ """Gets the budget_alert_rule of this CreateBudgetRequest. # noqa: E501
120
+
121
+
122
+ :return: The budget_alert_rule of this CreateBudgetRequest. # noqa: E501
123
+ :rtype: list[BudgetAlertRuleForCreateBudgetInput]
124
+ """
125
+ return self._budget_alert_rule
126
+
127
+ @budget_alert_rule.setter
128
+ def budget_alert_rule(self, budget_alert_rule):
129
+ """Sets the budget_alert_rule of this CreateBudgetRequest.
130
+
131
+
132
+ :param budget_alert_rule: The budget_alert_rule of this CreateBudgetRequest. # noqa: E501
133
+ :type: list[BudgetAlertRuleForCreateBudgetInput]
134
+ """
135
+
136
+ self._budget_alert_rule = budget_alert_rule
137
+
138
+ @property
139
+ def budget_amount(self):
140
+ """Gets the budget_amount of this CreateBudgetRequest. # noqa: E501
141
+
142
+
143
+ :return: The budget_amount of this CreateBudgetRequest. # noqa: E501
144
+ :rtype: list[BudgetAmountForCreateBudgetInput]
145
+ """
146
+ return self._budget_amount
147
+
148
+ @budget_amount.setter
149
+ def budget_amount(self, budget_amount):
150
+ """Sets the budget_amount of this CreateBudgetRequest.
151
+
152
+
153
+ :param budget_amount: The budget_amount of this CreateBudgetRequest. # noqa: E501
154
+ :type: list[BudgetAmountForCreateBudgetInput]
155
+ """
156
+
157
+ self._budget_amount = budget_amount
158
+
159
+ @property
160
+ def budget_range(self):
161
+ """Gets the budget_range of this CreateBudgetRequest. # noqa: E501
162
+
163
+
164
+ :return: The budget_range of this CreateBudgetRequest. # noqa: E501
165
+ :rtype: BudgetRangeForCreateBudgetInput
166
+ """
167
+ return self._budget_range
168
+
169
+ @budget_range.setter
170
+ def budget_range(self, budget_range):
171
+ """Sets the budget_range of this CreateBudgetRequest.
172
+
173
+
174
+ :param budget_range: The budget_range of this CreateBudgetRequest. # noqa: E501
175
+ :type: BudgetRangeForCreateBudgetInput
176
+ """
177
+
178
+ self._budget_range = budget_range
179
+
180
+ def to_dict(self):
181
+ """Returns the model properties as a dict"""
182
+ result = {}
183
+
184
+ for attr, _ in six.iteritems(self.swagger_types):
185
+ value = getattr(self, attr)
186
+ if isinstance(value, list):
187
+ result[attr] = list(map(
188
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
189
+ value
190
+ ))
191
+ elif hasattr(value, "to_dict"):
192
+ result[attr] = value.to_dict()
193
+ elif isinstance(value, dict):
194
+ result[attr] = dict(map(
195
+ lambda item: (item[0], item[1].to_dict())
196
+ if hasattr(item[1], "to_dict") else item,
197
+ value.items()
198
+ ))
199
+ else:
200
+ result[attr] = value
201
+ if issubclass(CreateBudgetRequest, dict):
202
+ for key, value in self.items():
203
+ result[key] = value
204
+
205
+ return result
206
+
207
+ def to_str(self):
208
+ """Returns the string representation of the model"""
209
+ return pprint.pformat(self.to_dict())
210
+
211
+ def __repr__(self):
212
+ """For `print` and `pprint`"""
213
+ return self.to_str()
214
+
215
+ def __eq__(self, other):
216
+ """Returns true if both objects are equal"""
217
+ if not isinstance(other, CreateBudgetRequest):
218
+ return False
219
+
220
+ return self.to_dict() == other.to_dict()
221
+
222
+ def __ne__(self, other):
223
+ """Returns true if both objects are not equal"""
224
+ if not isinstance(other, CreateBudgetRequest):
225
+ return True
226
+
227
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,123 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ billing
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class CreateBudgetResponse(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'budget_id': 'str'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'budget_id': 'BudgetID'
41
+ }
42
+
43
+ def __init__(self, budget_id=None, _configuration=None): # noqa: E501
44
+ """CreateBudgetResponse - a model defined in Swagger""" # noqa: E501
45
+ if _configuration is None:
46
+ _configuration = Configuration()
47
+ self._configuration = _configuration
48
+
49
+ self._budget_id = None
50
+ self.discriminator = None
51
+
52
+ if budget_id is not None:
53
+ self.budget_id = budget_id
54
+
55
+ @property
56
+ def budget_id(self):
57
+ """Gets the budget_id of this CreateBudgetResponse. # noqa: E501
58
+
59
+
60
+ :return: The budget_id of this CreateBudgetResponse. # noqa: E501
61
+ :rtype: str
62
+ """
63
+ return self._budget_id
64
+
65
+ @budget_id.setter
66
+ def budget_id(self, budget_id):
67
+ """Sets the budget_id of this CreateBudgetResponse.
68
+
69
+
70
+ :param budget_id: The budget_id of this CreateBudgetResponse. # noqa: E501
71
+ :type: str
72
+ """
73
+
74
+ self._budget_id = budget_id
75
+
76
+ def to_dict(self):
77
+ """Returns the model properties as a dict"""
78
+ result = {}
79
+
80
+ for attr, _ in six.iteritems(self.swagger_types):
81
+ value = getattr(self, attr)
82
+ if isinstance(value, list):
83
+ result[attr] = list(map(
84
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
85
+ value
86
+ ))
87
+ elif hasattr(value, "to_dict"):
88
+ result[attr] = value.to_dict()
89
+ elif isinstance(value, dict):
90
+ result[attr] = dict(map(
91
+ lambda item: (item[0], item[1].to_dict())
92
+ if hasattr(item[1], "to_dict") else item,
93
+ value.items()
94
+ ))
95
+ else:
96
+ result[attr] = value
97
+ if issubclass(CreateBudgetResponse, dict):
98
+ for key, value in self.items():
99
+ result[key] = value
100
+
101
+ return result
102
+
103
+ def to_str(self):
104
+ """Returns the string representation of the model"""
105
+ return pprint.pformat(self.to_dict())
106
+
107
+ def __repr__(self):
108
+ """For `print` and `pprint`"""
109
+ return self.to_str()
110
+
111
+ def __eq__(self, other):
112
+ """Returns true if both objects are equal"""
113
+ if not isinstance(other, CreateBudgetResponse):
114
+ return False
115
+
116
+ return self.to_dict() == other.to_dict()
117
+
118
+ def __ne__(self, other):
119
+ """Returns true if both objects are not equal"""
120
+ if not isinstance(other, CreateBudgetResponse):
121
+ return True
122
+
123
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,124 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ billing
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class DeleteBudgetRequest(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'budget_id': 'str'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'budget_id': 'BudgetID'
41
+ }
42
+
43
+ def __init__(self, budget_id=None, _configuration=None): # noqa: E501
44
+ """DeleteBudgetRequest - a model defined in Swagger""" # noqa: E501
45
+ if _configuration is None:
46
+ _configuration = Configuration()
47
+ self._configuration = _configuration
48
+
49
+ self._budget_id = None
50
+ self.discriminator = None
51
+
52
+ self.budget_id = budget_id
53
+
54
+ @property
55
+ def budget_id(self):
56
+ """Gets the budget_id of this DeleteBudgetRequest. # noqa: E501
57
+
58
+
59
+ :return: The budget_id of this DeleteBudgetRequest. # noqa: E501
60
+ :rtype: str
61
+ """
62
+ return self._budget_id
63
+
64
+ @budget_id.setter
65
+ def budget_id(self, budget_id):
66
+ """Sets the budget_id of this DeleteBudgetRequest.
67
+
68
+
69
+ :param budget_id: The budget_id of this DeleteBudgetRequest. # noqa: E501
70
+ :type: str
71
+ """
72
+ if self._configuration.client_side_validation and budget_id is None:
73
+ raise ValueError("Invalid value for `budget_id`, must not be `None`") # noqa: E501
74
+
75
+ self._budget_id = budget_id
76
+
77
+ def to_dict(self):
78
+ """Returns the model properties as a dict"""
79
+ result = {}
80
+
81
+ for attr, _ in six.iteritems(self.swagger_types):
82
+ value = getattr(self, attr)
83
+ if isinstance(value, list):
84
+ result[attr] = list(map(
85
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
86
+ value
87
+ ))
88
+ elif hasattr(value, "to_dict"):
89
+ result[attr] = value.to_dict()
90
+ elif isinstance(value, dict):
91
+ result[attr] = dict(map(
92
+ lambda item: (item[0], item[1].to_dict())
93
+ if hasattr(item[1], "to_dict") else item,
94
+ value.items()
95
+ ))
96
+ else:
97
+ result[attr] = value
98
+ if issubclass(DeleteBudgetRequest, dict):
99
+ for key, value in self.items():
100
+ result[key] = value
101
+
102
+ return result
103
+
104
+ def to_str(self):
105
+ """Returns the string representation of the model"""
106
+ return pprint.pformat(self.to_dict())
107
+
108
+ def __repr__(self):
109
+ """For `print` and `pprint`"""
110
+ return self.to_str()
111
+
112
+ def __eq__(self, other):
113
+ """Returns true if both objects are equal"""
114
+ if not isinstance(other, DeleteBudgetRequest):
115
+ return False
116
+
117
+ return self.to_dict() == other.to_dict()
118
+
119
+ def __ne__(self, other):
120
+ """Returns true if both objects are not equal"""
121
+ if not isinstance(other, DeleteBudgetRequest):
122
+ return True
123
+
124
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,95 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ billing
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class DeleteBudgetResponse(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ }
37
+
38
+ attribute_map = {
39
+ }
40
+
41
+ def __init__(self, _configuration=None): # noqa: E501
42
+ """DeleteBudgetResponse - a model defined in Swagger""" # noqa: E501
43
+ if _configuration is None:
44
+ _configuration = Configuration()
45
+ self._configuration = _configuration
46
+ self.discriminator = None
47
+
48
+ def to_dict(self):
49
+ """Returns the model properties as a dict"""
50
+ result = {}
51
+
52
+ for attr, _ in six.iteritems(self.swagger_types):
53
+ value = getattr(self, attr)
54
+ if isinstance(value, list):
55
+ result[attr] = list(map(
56
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
57
+ value
58
+ ))
59
+ elif hasattr(value, "to_dict"):
60
+ result[attr] = value.to_dict()
61
+ elif isinstance(value, dict):
62
+ result[attr] = dict(map(
63
+ lambda item: (item[0], item[1].to_dict())
64
+ if hasattr(item[1], "to_dict") else item,
65
+ value.items()
66
+ ))
67
+ else:
68
+ result[attr] = value
69
+ if issubclass(DeleteBudgetResponse, dict):
70
+ for key, value in self.items():
71
+ result[key] = value
72
+
73
+ return result
74
+
75
+ def to_str(self):
76
+ """Returns the string representation of the model"""
77
+ return pprint.pformat(self.to_dict())
78
+
79
+ def __repr__(self):
80
+ """For `print` and `pprint`"""
81
+ return self.to_str()
82
+
83
+ def __eq__(self, other):
84
+ """Returns true if both objects are equal"""
85
+ if not isinstance(other, DeleteBudgetResponse):
86
+ return False
87
+
88
+ return self.to_dict() == other.to_dict()
89
+
90
+ def __ne__(self, other):
91
+ """Returns true if both objects are not equal"""
92
+ if not isinstance(other, DeleteBudgetResponse):
93
+ return True
94
+
95
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,124 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ billing
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class ListBudgetAmountByBudgetIDRequest(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'budget_id': 'str'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'budget_id': 'BudgetID'
41
+ }
42
+
43
+ def __init__(self, budget_id=None, _configuration=None): # noqa: E501
44
+ """ListBudgetAmountByBudgetIDRequest - a model defined in Swagger""" # noqa: E501
45
+ if _configuration is None:
46
+ _configuration = Configuration()
47
+ self._configuration = _configuration
48
+
49
+ self._budget_id = None
50
+ self.discriminator = None
51
+
52
+ self.budget_id = budget_id
53
+
54
+ @property
55
+ def budget_id(self):
56
+ """Gets the budget_id of this ListBudgetAmountByBudgetIDRequest. # noqa: E501
57
+
58
+
59
+ :return: The budget_id of this ListBudgetAmountByBudgetIDRequest. # noqa: E501
60
+ :rtype: str
61
+ """
62
+ return self._budget_id
63
+
64
+ @budget_id.setter
65
+ def budget_id(self, budget_id):
66
+ """Sets the budget_id of this ListBudgetAmountByBudgetIDRequest.
67
+
68
+
69
+ :param budget_id: The budget_id of this ListBudgetAmountByBudgetIDRequest. # noqa: E501
70
+ :type: str
71
+ """
72
+ if self._configuration.client_side_validation and budget_id is None:
73
+ raise ValueError("Invalid value for `budget_id`, must not be `None`") # noqa: E501
74
+
75
+ self._budget_id = budget_id
76
+
77
+ def to_dict(self):
78
+ """Returns the model properties as a dict"""
79
+ result = {}
80
+
81
+ for attr, _ in six.iteritems(self.swagger_types):
82
+ value = getattr(self, attr)
83
+ if isinstance(value, list):
84
+ result[attr] = list(map(
85
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
86
+ value
87
+ ))
88
+ elif hasattr(value, "to_dict"):
89
+ result[attr] = value.to_dict()
90
+ elif isinstance(value, dict):
91
+ result[attr] = dict(map(
92
+ lambda item: (item[0], item[1].to_dict())
93
+ if hasattr(item[1], "to_dict") else item,
94
+ value.items()
95
+ ))
96
+ else:
97
+ result[attr] = value
98
+ if issubclass(ListBudgetAmountByBudgetIDRequest, dict):
99
+ for key, value in self.items():
100
+ result[key] = value
101
+
102
+ return result
103
+
104
+ def to_str(self):
105
+ """Returns the string representation of the model"""
106
+ return pprint.pformat(self.to_dict())
107
+
108
+ def __repr__(self):
109
+ """For `print` and `pprint`"""
110
+ return self.to_str()
111
+
112
+ def __eq__(self, other):
113
+ """Returns true if both objects are equal"""
114
+ if not isinstance(other, ListBudgetAmountByBudgetIDRequest):
115
+ return False
116
+
117
+ return self.to_dict() == other.to_dict()
118
+
119
+ def __ne__(self, other):
120
+ """Returns true if both objects are not equal"""
121
+ if not isinstance(other, ListBudgetAmountByBudgetIDRequest):
122
+ return True
123
+
124
+ return self.to_dict() != other.to_dict()