Skip to content

Commit 18c3804

Browse files
committed
Merge 'integration_2025-12-11_1093011093762' into 'master'
merge branch integration_2025-12-11_1093011093762 into master See merge request: !970
2 parents b6f9b7a + 254dc8f commit 18c3804

File tree

337 files changed

+53262
-755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

337 files changed

+53262
-755
lines changed

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "4.0.41",
3-
"meta_commit": "17428debe6c6eea83e947874dd4de3c113cb199b"
2+
"lasted": "4.0.42",
3+
"meta_commit": "9e708da9a2b87da4956c10323037b820ec8007d0"
44
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "volcengine-python-sdk"
3-
version = "4.0.41"
3+
version = "4.0.42"
44
authors = [
55
{name = "volc-engine", email = "[email protected]"},
66
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages # noqa: H301
44

55
NAME = "volcengine-python-sdk"
6-
VERSION = "4.0.41"
6+
VERSION = "4.0.42"
77
# To install the library, run the following
88
#
99
# python setup.py install

volcenginesdkbilling/models/list_for_list_coupon_usage_records_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class ListForListCouponUsageRecordsOutput(object):
3434
"""
3535
swagger_types = {
3636
'account_id': 'int',
37+
'billing_cycle': 'str',
3738
'change_amount': 'float',
3839
'change_type': 'int',
3940
'coupon_id': 'str',
@@ -47,6 +48,7 @@ class ListForListCouponUsageRecordsOutput(object):
4748

4849
attribute_map = {
4950
'account_id': 'AccountID',
51+
'billing_cycle': 'BillingCycle',
5052
'change_amount': 'ChangeAmount',
5153
'change_type': 'ChangeType',
5254
'coupon_id': 'CouponID',
@@ -58,13 +60,14 @@ class ListForListCouponUsageRecordsOutput(object):
5860
'user_account_id': 'UserAccountID'
5961
}
6062

61-
def __init__(self, account_id=None, change_amount=None, change_type=None, coupon_id=None, created_time=None, pay_type=None, product_code=None, product_name=None, sub_business_id=None, user_account_id=None, _configuration=None): # noqa: E501
63+
def __init__(self, account_id=None, billing_cycle=None, change_amount=None, change_type=None, coupon_id=None, created_time=None, pay_type=None, product_code=None, product_name=None, sub_business_id=None, user_account_id=None, _configuration=None): # noqa: E501
6264
"""ListForListCouponUsageRecordsOutput - a model defined in Swagger""" # noqa: E501
6365
if _configuration is None:
6466
_configuration = Configuration()
6567
self._configuration = _configuration
6668

6769
self._account_id = None
70+
self._billing_cycle = None
6871
self._change_amount = None
6972
self._change_type = None
7073
self._coupon_id = None
@@ -78,6 +81,8 @@ def __init__(self, account_id=None, change_amount=None, change_type=None, coupon
7881

7982
if account_id is not None:
8083
self.account_id = account_id
84+
if billing_cycle is not None:
85+
self.billing_cycle = billing_cycle
8186
if change_amount is not None:
8287
self.change_amount = change_amount
8388
if change_type is not None:
@@ -118,6 +123,27 @@ def account_id(self, account_id):
118123

119124
self._account_id = account_id
120125

126+
@property
127+
def billing_cycle(self):
128+
"""Gets the billing_cycle of this ListForListCouponUsageRecordsOutput. # noqa: E501
129+
130+
131+
:return: The billing_cycle of this ListForListCouponUsageRecordsOutput. # noqa: E501
132+
:rtype: str
133+
"""
134+
return self._billing_cycle
135+
136+
@billing_cycle.setter
137+
def billing_cycle(self, billing_cycle):
138+
"""Sets the billing_cycle of this ListForListCouponUsageRecordsOutput.
139+
140+
141+
:param billing_cycle: The billing_cycle of this ListForListCouponUsageRecordsOutput. # noqa: E501
142+
:type: str
143+
"""
144+
145+
self._billing_cycle = billing_cycle
146+
121147
@property
122148
def change_amount(self):
123149
"""Gets the change_amount of this ListForListCouponUsageRecordsOutput. # noqa: E501

volcenginesdkcore/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
6464
self.default_headers[header_name] = header_value
6565
self.cookie = cookie
6666
# Set default User-Agent.
67-
self.user_agent = 'volcstack-python-sdk/4.0.41'
67+
self.user_agent = 'volcstack-python-sdk/4.0.42'
6868
self.client_side_validation = configuration.client_side_validation
6969

7070
self.interceptor_chain = InterceptorChain()

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def to_debug_report(self):
272272
"OS: {env}\n" \
273273
"Python Version: {pyversion}\n" \
274274
"Version of the API: 0.1.0\n" \
275-
"SDK Package Version: 4.0.41".\
275+
"SDK Package Version: 4.0.42".\
276276
format(env=sys.platform, pyversion=sys.version)
277277

278278
@property

volcenginesdkid/__init__.py

Lines changed: 133 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)