@@ -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