Skip to content

Commit 20d9a53

Browse files
committed
Update API DescribeEais: update response param.
1 parent 92e30b9 commit 20d9a53

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

eais-20190624/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-03-06 Version: 3.0.4
2+
- Update API DescribeEais: update response param.
3+
4+
15
2025-02-06 Version: 3.0.3
26
- Generated python 2019-06-24 for eais.
37

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.0.3'
1+
__version__ = '3.0.4'

eais-20190624/alibabacloud_eais20190624/models.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2455,6 +2455,7 @@ def __init__(
24552455
instance_name: str = None,
24562456
instance_type: str = None,
24572457
jupyter_url: str = None,
2458+
payment_type: str = None,
24582459
region_id: str = None,
24592460
resource_group_id: str = None,
24602461
security_group_id: str = None,
@@ -2474,6 +2475,7 @@ def __init__(
24742475
self.instance_name = instance_name
24752476
self.instance_type = instance_type
24762477
self.jupyter_url = jupyter_url
2478+
self.payment_type = payment_type
24772479
self.region_id = region_id
24782480
self.resource_group_id = resource_group_id
24792481
self.security_group_id = security_group_id
@@ -2513,6 +2515,8 @@ def to_map(self):
25132515
result['InstanceType'] = self.instance_type
25142516
if self.jupyter_url is not None:
25152517
result['JupyterUrl'] = self.jupyter_url
2518+
if self.payment_type is not None:
2519+
result['PaymentType'] = self.payment_type
25162520
if self.region_id is not None:
25172521
result['RegionId'] = self.region_id
25182522
if self.resource_group_id is not None:
@@ -2553,6 +2557,8 @@ def from_map(self, m: dict = None):
25532557
self.instance_type = m.get('InstanceType')
25542558
if m.get('JupyterUrl') is not None:
25552559
self.jupyter_url = m.get('JupyterUrl')
2560+
if m.get('PaymentType') is not None:
2561+
self.payment_type = m.get('PaymentType')
25562562
if m.get('RegionId') is not None:
25572563
self.region_id = m.get('RegionId')
25582564
if m.get('ResourceGroupId') is not None:

eais-20190624/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525
setup module for alibabacloud_eais20190624.
2626
27-
Created on 06/02/2025
27+
Created on 06/03/2025
2828
2929
@author: Alibaba Cloud SDK
3030
"""

0 commit comments

Comments
 (0)