Skip to content

Commit f9897e1

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for billing-Python-2022-01-01-online-253-2023_12_21_15_28_56
1 parent 5a05963 commit f9897e1

File tree

5 files changed

+33
-8
lines changed

5 files changed

+33
-8
lines changed

meta.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"lasted": "1.0.59",
3-
"meta_commit": "f919e637325f175b946e2e5860dabe4863c53d0a"
4-
}
5-
2+
"lasted": "1.0.60",
3+
"meta_commit": "c289473c02de84c55d2b913ea03e9885c2ef9339"
4+
}

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 = "1.0.59"
6+
VERSION = "1.0.60"
77
# To install the library, run the following
88
#
99
# python setup.py install

volcenginesdkbilling/models/list_bill_detail_request.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class ListBillDetailRequest(object):
3636
'bill_category': 'list[str]',
3737
'bill_period': 'str',
3838
'billing_mode': 'list[str]',
39+
'expense_date': 'str',
3940
'group_period': 'int',
4041
'group_term': 'int',
4142
'ignore_zero': 'int',
@@ -50,6 +51,7 @@ class ListBillDetailRequest(object):
5051
'bill_category': 'BillCategory',
5152
'bill_period': 'BillPeriod',
5253
'billing_mode': 'BillingMode',
54+
'expense_date': 'ExpenseDate',
5355
'group_period': 'GroupPeriod',
5456
'group_term': 'GroupTerm',
5557
'ignore_zero': 'IgnoreZero',
@@ -60,7 +62,7 @@ class ListBillDetailRequest(object):
6062
'product': 'Product'
6163
}
6264

63-
def __init__(self, bill_category=None, bill_period=None, billing_mode=None, group_period=None, group_term=None, ignore_zero=None, instance_no=None, limit=None, need_record_num=None, offset=None, product=None, _configuration=None): # noqa: E501
65+
def __init__(self, bill_category=None, bill_period=None, billing_mode=None, expense_date=None, group_period=None, group_term=None, ignore_zero=None, instance_no=None, limit=None, need_record_num=None, offset=None, product=None, _configuration=None): # noqa: E501
6466
"""ListBillDetailRequest - a model defined in Swagger""" # noqa: E501
6567
if _configuration is None:
6668
_configuration = Configuration()
@@ -69,6 +71,7 @@ def __init__(self, bill_category=None, bill_period=None, billing_mode=None, grou
6971
self._bill_category = None
7072
self._bill_period = None
7173
self._billing_mode = None
74+
self._expense_date = None
7275
self._group_period = None
7376
self._group_term = None
7477
self._ignore_zero = None
@@ -84,6 +87,8 @@ def __init__(self, bill_category=None, bill_period=None, billing_mode=None, grou
8487
self.bill_period = bill_period
8588
if billing_mode is not None:
8689
self.billing_mode = billing_mode
90+
if expense_date is not None:
91+
self.expense_date = expense_date
8792
if group_period is not None:
8893
self.group_period = group_period
8994
if group_term is not None:
@@ -165,6 +170,27 @@ def billing_mode(self, billing_mode):
165170

166171
self._billing_mode = billing_mode
167172

173+
@property
174+
def expense_date(self):
175+
"""Gets the expense_date of this ListBillDetailRequest. # noqa: E501
176+
177+
178+
:return: The expense_date of this ListBillDetailRequest. # noqa: E501
179+
:rtype: str
180+
"""
181+
return self._expense_date
182+
183+
@expense_date.setter
184+
def expense_date(self, expense_date):
185+
"""Sets the expense_date of this ListBillDetailRequest.
186+
187+
188+
:param expense_date: The expense_date of this ListBillDetailRequest. # noqa: E501
189+
:type: str
190+
"""
191+
192+
self._expense_date = expense_date
193+
168194
@property
169195
def group_period(self):
170196
"""Gets the group_period of this ListBillDetailRequest. # noqa: E501

volcenginesdkcore/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
6767
self.default_headers[header_name] = header_value
6868
self.cookie = cookie
6969
# Set default User-Agent.
70-
self.user_agent = 'volcstack-python-sdk/1.0.59'
70+
self.user_agent = 'volcstack-python-sdk/1.0.60'
7171
self.client_side_validation = configuration.client_side_validation
7272

7373
def __del__(self):

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,5 +221,5 @@ def to_debug_report(self):
221221
"OS: {env}\n"\
222222
"Python Version: {pyversion}\n"\
223223
"Version of the API: 0.1.0\n"\
224-
"SDK Package Version: 1.0.59".\
224+
"SDK Package Version: 1.0.60".\
225225
format(env=sys.platform, pyversion=sys.version)

0 commit comments

Comments
 (0)