Skip to content

Commit ece2c21

Browse files
author
BitsAdmin
committed
Merge branch 'rocketmq-Python-2023-01-01-online-1056-2025_03_26_20_45_05' into 'integration_2025-03-27_808630449922'
feat: [development task] RocketMQ-1056-Python (1112287) See merge request iaasng/volcengine-python-sdk!551
2 parents 9ea8759 + 1e87d0c commit ece2c21

File tree

2 files changed

+44
-44
lines changed

2 files changed

+44
-44
lines changed

volcenginesdkrocketmq/models/region_for_describe_regions_output.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,33 +33,33 @@ class RegionForDescribeRegionsOutput(object):
3333
and the value is json key in definition.
3434
"""
3535
swagger_types = {
36-
'description': 'str',
36+
'describeption': 'str',
3737
'region_id': 'str',
3838
'region_name': 'str',
3939
'region_status': 'str'
4040
}
4141

4242
attribute_map = {
43-
'description': 'Description',
43+
'describeption': 'Describeption',
4444
'region_id': 'RegionId',
4545
'region_name': 'RegionName',
4646
'region_status': 'RegionStatus'
4747
}
4848

49-
def __init__(self, description=None, region_id=None, region_name=None, region_status=None, _configuration=None): # noqa: E501
49+
def __init__(self, describeption=None, region_id=None, region_name=None, region_status=None, _configuration=None): # noqa: E501
5050
"""RegionForDescribeRegionsOutput - a model defined in Swagger""" # noqa: E501
5151
if _configuration is None:
5252
_configuration = Configuration()
5353
self._configuration = _configuration
5454

55-
self._description = None
55+
self._describeption = None
5656
self._region_id = None
5757
self._region_name = None
5858
self._region_status = None
5959
self.discriminator = None
6060

61-
if description is not None:
62-
self.description = description
61+
if describeption is not None:
62+
self.describeption = describeption
6363
if region_id is not None:
6464
self.region_id = region_id
6565
if region_name is not None:
@@ -68,25 +68,25 @@ def __init__(self, description=None, region_id=None, region_name=None, region_st
6868
self.region_status = region_status
6969

7070
@property
71-
def description(self):
72-
"""Gets the description of this RegionForDescribeRegionsOutput. # noqa: E501
71+
def describeption(self):
72+
"""Gets the describeption of this RegionForDescribeRegionsOutput. # noqa: E501
7373
7474
75-
:return: The description of this RegionForDescribeRegionsOutput. # noqa: E501
75+
:return: The describeption of this RegionForDescribeRegionsOutput. # noqa: E501
7676
:rtype: str
7777
"""
78-
return self._description
78+
return self._describeption
7979

80-
@description.setter
81-
def description(self, description):
82-
"""Sets the description of this RegionForDescribeRegionsOutput.
80+
@describeption.setter
81+
def describeption(self, describeption):
82+
"""Sets the describeption of this RegionForDescribeRegionsOutput.
8383
8484
85-
:param description: The description of this RegionForDescribeRegionsOutput. # noqa: E501
85+
:param describeption: The describeption of this RegionForDescribeRegionsOutput. # noqa: E501
8686
:type: str
8787
"""
8888

89-
self._description = description
89+
self._describeption = describeption
9090

9191
@property
9292
def region_id(self):

volcenginesdkrocketmq/models/zone_for_describe_availability_zones_output.py

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -34,38 +34,38 @@ class ZoneForDescribeAvailabilityZonesOutput(object):
3434
"""
3535
swagger_types = {
3636
'description': 'str',
37-
'status': 'str',
3837
'zone_id': 'str',
39-
'zone_name': 'str'
38+
'zone_name': 'str',
39+
'zone_status': 'str'
4040
}
4141

4242
attribute_map = {
4343
'description': 'Description',
44-
'status': 'Status',
4544
'zone_id': 'ZoneId',
46-
'zone_name': 'ZoneName'
45+
'zone_name': 'ZoneName',
46+
'zone_status': 'ZoneStatus'
4747
}
4848

49-
def __init__(self, description=None, status=None, zone_id=None, zone_name=None, _configuration=None): # noqa: E501
49+
def __init__(self, description=None, zone_id=None, zone_name=None, zone_status=None, _configuration=None): # noqa: E501
5050
"""ZoneForDescribeAvailabilityZonesOutput - a model defined in Swagger""" # noqa: E501
5151
if _configuration is None:
5252
_configuration = Configuration()
5353
self._configuration = _configuration
5454

5555
self._description = None
56-
self._status = None
5756
self._zone_id = None
5857
self._zone_name = None
58+
self._zone_status = None
5959
self.discriminator = None
6060

6161
if description is not None:
6262
self.description = description
63-
if status is not None:
64-
self.status = status
6563
if zone_id is not None:
6664
self.zone_id = zone_id
6765
if zone_name is not None:
6866
self.zone_name = zone_name
67+
if zone_status is not None:
68+
self.zone_status = zone_status
6969

7070
@property
7171
def description(self):
@@ -88,27 +88,6 @@ def description(self, description):
8888

8989
self._description = description
9090

91-
@property
92-
def status(self):
93-
"""Gets the status of this ZoneForDescribeAvailabilityZonesOutput. # noqa: E501
94-
95-
96-
:return: The status of this ZoneForDescribeAvailabilityZonesOutput. # noqa: E501
97-
:rtype: str
98-
"""
99-
return self._status
100-
101-
@status.setter
102-
def status(self, status):
103-
"""Sets the status of this ZoneForDescribeAvailabilityZonesOutput.
104-
105-
106-
:param status: The status of this ZoneForDescribeAvailabilityZonesOutput. # noqa: E501
107-
:type: str
108-
"""
109-
110-
self._status = status
111-
11291
@property
11392
def zone_id(self):
11493
"""Gets the zone_id of this ZoneForDescribeAvailabilityZonesOutput. # noqa: E501
@@ -151,6 +130,27 @@ def zone_name(self, zone_name):
151130

152131
self._zone_name = zone_name
153132

133+
@property
134+
def zone_status(self):
135+
"""Gets the zone_status of this ZoneForDescribeAvailabilityZonesOutput. # noqa: E501
136+
137+
138+
:return: The zone_status of this ZoneForDescribeAvailabilityZonesOutput. # noqa: E501
139+
:rtype: str
140+
"""
141+
return self._zone_status
142+
143+
@zone_status.setter
144+
def zone_status(self, zone_status):
145+
"""Sets the zone_status of this ZoneForDescribeAvailabilityZonesOutput.
146+
147+
148+
:param zone_status: The zone_status of this ZoneForDescribeAvailabilityZonesOutput. # noqa: E501
149+
:type: str
150+
"""
151+
152+
self._zone_status = zone_status
153+
154154
def to_dict(self):
155155
"""Returns the model properties as a dict"""
156156
result = {}

0 commit comments

Comments
 (0)