Skip to content

Commit 7ed4eed

Browse files
author
BitsAdmin
committed
Merge 'billing-Python-2022-01-01-online-2429-2026_03_26_16_31_47' into 'integration_2026-04-02_1133150144002'
feat: [development task] billing-2429-Python (2246479) See merge request: !1131
2 parents 4925978 + 6d2e42e commit 7ed4eed

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

volcenginesdkbilling/models/instance_list_for_list_available_instances_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class InstanceListForListAvailableInstancesOutput(object):
4141
'instance_name': 'str',
4242
'payment_method': 'str',
4343
'product': 'str',
44+
'product_name': 'str',
4445
'remain_renew_times': 'str',
4546
'renew_type': 'str',
4647
'renewal_duration_unit': 'str',
@@ -58,6 +59,7 @@ class InstanceListForListAvailableInstancesOutput(object):
5859
'instance_name': 'InstanceName',
5960
'payment_method': 'PaymentMethod',
6061
'product': 'Product',
62+
'product_name': 'ProductName',
6163
'remain_renew_times': 'RemainRenewTimes',
6264
'renew_type': 'RenewType',
6365
'renewal_duration_unit': 'RenewalDurationUnit',
@@ -66,7 +68,7 @@ class InstanceListForListAvailableInstancesOutput(object):
6668
'sub_status': 'SubStatus'
6769
}
6870

69-
def __init__(self, account_id=None, begin_time=None, configuration_code=None, expired_time=None, instance_id=None, instance_name=None, payment_method=None, product=None, remain_renew_times=None, renew_type=None, renewal_duration_unit=None, renewal_times=None, status=None, sub_status=None, _configuration=None): # noqa: E501
71+
def __init__(self, account_id=None, begin_time=None, configuration_code=None, expired_time=None, instance_id=None, instance_name=None, payment_method=None, product=None, product_name=None, remain_renew_times=None, renew_type=None, renewal_duration_unit=None, renewal_times=None, status=None, sub_status=None, _configuration=None): # noqa: E501
7072
"""InstanceListForListAvailableInstancesOutput - a model defined in Swagger""" # noqa: E501
7173
if _configuration is None:
7274
_configuration = Configuration()
@@ -80,6 +82,7 @@ def __init__(self, account_id=None, begin_time=None, configuration_code=None, ex
8082
self._instance_name = None
8183
self._payment_method = None
8284
self._product = None
85+
self._product_name = None
8386
self._remain_renew_times = None
8487
self._renew_type = None
8588
self._renewal_duration_unit = None
@@ -104,6 +107,8 @@ def __init__(self, account_id=None, begin_time=None, configuration_code=None, ex
104107
self.payment_method = payment_method
105108
if product is not None:
106109
self.product = product
110+
if product_name is not None:
111+
self.product_name = product_name
107112
if remain_renew_times is not None:
108113
self.remain_renew_times = remain_renew_times
109114
if renew_type is not None:
@@ -285,6 +290,27 @@ def product(self, product):
285290

286291
self._product = product
287292

293+
@property
294+
def product_name(self):
295+
"""Gets the product_name of this InstanceListForListAvailableInstancesOutput. # noqa: E501
296+
297+
298+
:return: The product_name of this InstanceListForListAvailableInstancesOutput. # noqa: E501
299+
:rtype: str
300+
"""
301+
return self._product_name
302+
303+
@product_name.setter
304+
def product_name(self, product_name):
305+
"""Sets the product_name of this InstanceListForListAvailableInstancesOutput.
306+
307+
308+
:param product_name: The product_name of this InstanceListForListAvailableInstancesOutput. # noqa: E501
309+
:type: str
310+
"""
311+
312+
self._product_name = product_name
313+
288314
@property
289315
def remain_renew_times(self):
290316
"""Gets the remain_renew_times of this InstanceListForListAvailableInstancesOutput. # noqa: E501

0 commit comments

Comments
 (0)