Skip to content

Commit 58efbe9

Browse files
committed
Merge branch 'mainrelease' into 'master'
Mainrelease See merge request iaasng/volcengine-python-sdk!277
2 parents 7406462 + 49d143e commit 58efbe9

File tree

78 files changed

+12602
-293
lines changed

Some content is hidden

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

78 files changed

+12602
-293
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": "1.0.73",
3-
"meta_commit": "8ff49b704a7c10574720fbd5b8e4724682a152b6"
2+
"lasted": "1.0.74",
3+
"meta_commit": "8f86397ab7fcd8bc8b8558b00adb516aac0cc89f"
44
}

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

volcenginesdkalb/models/create_listener_request.py

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ class CreateListenerRequest(object):
3737
'acl_status': 'str',
3838
'acl_type': 'str',
3939
'ca_certificate_id': 'str',
40+
'cert_center_certificate_id': 'str',
4041
'certificate_id': 'str',
42+
'certificate_source': 'str',
4143
'description': 'str',
4244
'domain_extensions': 'list[DomainExtensionForCreateListenerInput]',
4345
'enable_http2': 'str',
@@ -47,6 +49,7 @@ class CreateListenerRequest(object):
4749
'load_balancer_id': 'str',
4850
'port': 'int',
4951
'protocol': 'str',
52+
'proxy_protocol_disabled': 'str',
5053
'server_group_id': 'str'
5154
}
5255

@@ -55,7 +58,9 @@ class CreateListenerRequest(object):
5558
'acl_status': 'AclStatus',
5659
'acl_type': 'AclType',
5760
'ca_certificate_id': 'CACertificateId',
61+
'cert_center_certificate_id': 'CertCenterCertificateId',
5862
'certificate_id': 'CertificateId',
63+
'certificate_source': 'CertificateSource',
5964
'description': 'Description',
6065
'domain_extensions': 'DomainExtensions',
6166
'enable_http2': 'EnableHttp2',
@@ -65,10 +70,11 @@ class CreateListenerRequest(object):
6570
'load_balancer_id': 'LoadBalancerId',
6671
'port': 'Port',
6772
'protocol': 'Protocol',
73+
'proxy_protocol_disabled': 'ProxyProtocolDisabled',
6874
'server_group_id': 'ServerGroupId'
6975
}
7076

71-
def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_id=None, certificate_id=None, description=None, domain_extensions=None, enable_http2=None, enable_quic=None, enabled=None, listener_name=None, load_balancer_id=None, port=None, protocol=None, server_group_id=None, _configuration=None): # noqa: E501
77+
def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_id=None, cert_center_certificate_id=None, certificate_id=None, certificate_source=None, description=None, domain_extensions=None, enable_http2=None, enable_quic=None, enabled=None, listener_name=None, load_balancer_id=None, port=None, protocol=None, proxy_protocol_disabled=None, server_group_id=None, _configuration=None): # noqa: E501
7278
"""CreateListenerRequest - a model defined in Swagger""" # noqa: E501
7379
if _configuration is None:
7480
_configuration = Configuration()
@@ -78,7 +84,9 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
7884
self._acl_status = None
7985
self._acl_type = None
8086
self._ca_certificate_id = None
87+
self._cert_center_certificate_id = None
8188
self._certificate_id = None
89+
self._certificate_source = None
8290
self._description = None
8391
self._domain_extensions = None
8492
self._enable_http2 = None
@@ -88,6 +96,7 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
8896
self._load_balancer_id = None
8997
self._port = None
9098
self._protocol = None
99+
self._proxy_protocol_disabled = None
91100
self._server_group_id = None
92101
self.discriminator = None
93102

@@ -99,8 +108,12 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
99108
self.acl_type = acl_type
100109
if ca_certificate_id is not None:
101110
self.ca_certificate_id = ca_certificate_id
111+
if cert_center_certificate_id is not None:
112+
self.cert_center_certificate_id = cert_center_certificate_id
102113
if certificate_id is not None:
103114
self.certificate_id = certificate_id
115+
if certificate_source is not None:
116+
self.certificate_source = certificate_source
104117
if description is not None:
105118
self.description = description
106119
if domain_extensions is not None:
@@ -116,6 +129,8 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
116129
self.load_balancer_id = load_balancer_id
117130
self.port = port
118131
self.protocol = protocol
132+
if proxy_protocol_disabled is not None:
133+
self.proxy_protocol_disabled = proxy_protocol_disabled
119134
self.server_group_id = server_group_id
120135

121136
@property
@@ -202,6 +217,27 @@ def ca_certificate_id(self, ca_certificate_id):
202217

203218
self._ca_certificate_id = ca_certificate_id
204219

220+
@property
221+
def cert_center_certificate_id(self):
222+
"""Gets the cert_center_certificate_id of this CreateListenerRequest. # noqa: E501
223+
224+
225+
:return: The cert_center_certificate_id of this CreateListenerRequest. # noqa: E501
226+
:rtype: str
227+
"""
228+
return self._cert_center_certificate_id
229+
230+
@cert_center_certificate_id.setter
231+
def cert_center_certificate_id(self, cert_center_certificate_id):
232+
"""Sets the cert_center_certificate_id of this CreateListenerRequest.
233+
234+
235+
:param cert_center_certificate_id: The cert_center_certificate_id of this CreateListenerRequest. # noqa: E501
236+
:type: str
237+
"""
238+
239+
self._cert_center_certificate_id = cert_center_certificate_id
240+
205241
@property
206242
def certificate_id(self):
207243
"""Gets the certificate_id of this CreateListenerRequest. # noqa: E501
@@ -223,6 +259,27 @@ def certificate_id(self, certificate_id):
223259

224260
self._certificate_id = certificate_id
225261

262+
@property
263+
def certificate_source(self):
264+
"""Gets the certificate_source of this CreateListenerRequest. # noqa: E501
265+
266+
267+
:return: The certificate_source of this CreateListenerRequest. # noqa: E501
268+
:rtype: str
269+
"""
270+
return self._certificate_source
271+
272+
@certificate_source.setter
273+
def certificate_source(self, certificate_source):
274+
"""Sets the certificate_source of this CreateListenerRequest.
275+
276+
277+
:param certificate_source: The certificate_source of this CreateListenerRequest. # noqa: E501
278+
:type: str
279+
"""
280+
281+
self._certificate_source = certificate_source
282+
226283
@property
227284
def description(self):
228285
"""Gets the description of this CreateListenerRequest. # noqa: E501
@@ -424,6 +481,27 @@ def protocol(self, protocol):
424481

425482
self._protocol = protocol
426483

484+
@property
485+
def proxy_protocol_disabled(self):
486+
"""Gets the proxy_protocol_disabled of this CreateListenerRequest. # noqa: E501
487+
488+
489+
:return: The proxy_protocol_disabled of this CreateListenerRequest. # noqa: E501
490+
:rtype: str
491+
"""
492+
return self._proxy_protocol_disabled
493+
494+
@proxy_protocol_disabled.setter
495+
def proxy_protocol_disabled(self, proxy_protocol_disabled):
496+
"""Sets the proxy_protocol_disabled of this CreateListenerRequest.
497+
498+
499+
:param proxy_protocol_disabled: The proxy_protocol_disabled of this CreateListenerRequest. # noqa: E501
500+
:type: str
501+
"""
502+
503+
self._proxy_protocol_disabled = proxy_protocol_disabled
504+
427505
@property
428506
def server_group_id(self):
429507
"""Gets the server_group_id of this CreateListenerRequest. # noqa: E501

volcenginesdkalb/models/describe_listener_attributes_response.py

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ class DescribeListenerAttributesResponse(object):
3737
'acl_status': 'str',
3838
'acl_type': 'str',
3939
'ca_certificate_id': 'str',
40+
'cert_center_certificate_id': 'str',
4041
'certificate_id': 'str',
42+
'certificate_source': 'str',
4143
'create_time': 'str',
4244
'customized_cfg_id': 'str',
4345
'description': 'str',
@@ -51,6 +53,7 @@ class DescribeListenerAttributesResponse(object):
5153
'port': 'int',
5254
'project_name': 'str',
5355
'protocol': 'str',
56+
'proxy_protocol_disabled': 'str',
5457
'request_id': 'str',
5558
'server_group_id': 'str',
5659
'server_groups': 'list[ServerGroupForDescribeListenerAttributesOutput]',
@@ -63,7 +66,9 @@ class DescribeListenerAttributesResponse(object):
6366
'acl_status': 'AclStatus',
6467
'acl_type': 'AclType',
6568
'ca_certificate_id': 'CACertificateId',
69+
'cert_center_certificate_id': 'CertCenterCertificateId',
6670
'certificate_id': 'CertificateId',
71+
'certificate_source': 'CertificateSource',
6772
'create_time': 'CreateTime',
6873
'customized_cfg_id': 'CustomizedCfgId',
6974
'description': 'Description',
@@ -77,14 +82,15 @@ class DescribeListenerAttributesResponse(object):
7782
'port': 'Port',
7883
'project_name': 'ProjectName',
7984
'protocol': 'Protocol',
85+
'proxy_protocol_disabled': 'ProxyProtocolDisabled',
8086
'request_id': 'RequestId',
8187
'server_group_id': 'ServerGroupId',
8288
'server_groups': 'ServerGroups',
8389
'status': 'Status',
8490
'update_time': 'UpdateTime'
8591
}
8692

87-
def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_id=None, certificate_id=None, create_time=None, customized_cfg_id=None, description=None, domain_extensions=None, enable_http2=None, enable_quic=None, enabled=None, listener_id=None, listener_name=None, load_balancer_id=None, port=None, project_name=None, protocol=None, request_id=None, server_group_id=None, server_groups=None, status=None, update_time=None, _configuration=None): # noqa: E501
93+
def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_id=None, cert_center_certificate_id=None, certificate_id=None, certificate_source=None, create_time=None, customized_cfg_id=None, description=None, domain_extensions=None, enable_http2=None, enable_quic=None, enabled=None, listener_id=None, listener_name=None, load_balancer_id=None, port=None, project_name=None, protocol=None, proxy_protocol_disabled=None, request_id=None, server_group_id=None, server_groups=None, status=None, update_time=None, _configuration=None): # noqa: E501
8894
"""DescribeListenerAttributesResponse - a model defined in Swagger""" # noqa: E501
8995
if _configuration is None:
9096
_configuration = Configuration()
@@ -94,7 +100,9 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
94100
self._acl_status = None
95101
self._acl_type = None
96102
self._ca_certificate_id = None
103+
self._cert_center_certificate_id = None
97104
self._certificate_id = None
105+
self._certificate_source = None
98106
self._create_time = None
99107
self._customized_cfg_id = None
100108
self._description = None
@@ -108,6 +116,7 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
108116
self._port = None
109117
self._project_name = None
110118
self._protocol = None
119+
self._proxy_protocol_disabled = None
111120
self._request_id = None
112121
self._server_group_id = None
113122
self._server_groups = None
@@ -123,8 +132,12 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
123132
self.acl_type = acl_type
124133
if ca_certificate_id is not None:
125134
self.ca_certificate_id = ca_certificate_id
135+
if cert_center_certificate_id is not None:
136+
self.cert_center_certificate_id = cert_center_certificate_id
126137
if certificate_id is not None:
127138
self.certificate_id = certificate_id
139+
if certificate_source is not None:
140+
self.certificate_source = certificate_source
128141
if create_time is not None:
129142
self.create_time = create_time
130143
if customized_cfg_id is not None:
@@ -151,6 +164,8 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, ca_certificate_
151164
self.project_name = project_name
152165
if protocol is not None:
153166
self.protocol = protocol
167+
if proxy_protocol_disabled is not None:
168+
self.proxy_protocol_disabled = proxy_protocol_disabled
154169
if request_id is not None:
155170
self.request_id = request_id
156171
if server_group_id is not None:
@@ -246,6 +261,27 @@ def ca_certificate_id(self, ca_certificate_id):
246261

247262
self._ca_certificate_id = ca_certificate_id
248263

264+
@property
265+
def cert_center_certificate_id(self):
266+
"""Gets the cert_center_certificate_id of this DescribeListenerAttributesResponse. # noqa: E501
267+
268+
269+
:return: The cert_center_certificate_id of this DescribeListenerAttributesResponse. # noqa: E501
270+
:rtype: str
271+
"""
272+
return self._cert_center_certificate_id
273+
274+
@cert_center_certificate_id.setter
275+
def cert_center_certificate_id(self, cert_center_certificate_id):
276+
"""Sets the cert_center_certificate_id of this DescribeListenerAttributesResponse.
277+
278+
279+
:param cert_center_certificate_id: The cert_center_certificate_id of this DescribeListenerAttributesResponse. # noqa: E501
280+
:type: str
281+
"""
282+
283+
self._cert_center_certificate_id = cert_center_certificate_id
284+
249285
@property
250286
def certificate_id(self):
251287
"""Gets the certificate_id of this DescribeListenerAttributesResponse. # noqa: E501
@@ -267,6 +303,27 @@ def certificate_id(self, certificate_id):
267303

268304
self._certificate_id = certificate_id
269305

306+
@property
307+
def certificate_source(self):
308+
"""Gets the certificate_source of this DescribeListenerAttributesResponse. # noqa: E501
309+
310+
311+
:return: The certificate_source of this DescribeListenerAttributesResponse. # noqa: E501
312+
:rtype: str
313+
"""
314+
return self._certificate_source
315+
316+
@certificate_source.setter
317+
def certificate_source(self, certificate_source):
318+
"""Sets the certificate_source of this DescribeListenerAttributesResponse.
319+
320+
321+
:param certificate_source: The certificate_source of this DescribeListenerAttributesResponse. # noqa: E501
322+
:type: str
323+
"""
324+
325+
self._certificate_source = certificate_source
326+
270327
@property
271328
def create_time(self):
272329
"""Gets the create_time of this DescribeListenerAttributesResponse. # noqa: E501
@@ -540,6 +597,27 @@ def protocol(self, protocol):
540597

541598
self._protocol = protocol
542599

600+
@property
601+
def proxy_protocol_disabled(self):
602+
"""Gets the proxy_protocol_disabled of this DescribeListenerAttributesResponse. # noqa: E501
603+
604+
605+
:return: The proxy_protocol_disabled of this DescribeListenerAttributesResponse. # noqa: E501
606+
:rtype: str
607+
"""
608+
return self._proxy_protocol_disabled
609+
610+
@proxy_protocol_disabled.setter
611+
def proxy_protocol_disabled(self, proxy_protocol_disabled):
612+
"""Sets the proxy_protocol_disabled of this DescribeListenerAttributesResponse.
613+
614+
615+
:param proxy_protocol_disabled: The proxy_protocol_disabled of this DescribeListenerAttributesResponse. # noqa: E501
616+
:type: str
617+
"""
618+
619+
self._proxy_protocol_disabled = proxy_protocol_disabled
620+
543621
@property
544622
def request_id(self):
545623
"""Gets the request_id of this DescribeListenerAttributesResponse. # noqa: E501

0 commit comments

Comments
 (0)