@@ -37,7 +37,9 @@ class CreateListenerRequest(object):
3737 'acl_status' : 'str' ,
3838 'acl_type' : 'str' ,
3939 'bandwidth' : 'int' ,
40+ 'cert_center_certificate_id' : 'str' ,
4041 'certificate_id' : 'str' ,
42+ 'certificate_source' : 'str' ,
4143 'client_body_timeout' : 'int' ,
4244 'client_header_timeout' : 'int' ,
4345 'connection_drain_enabled' : 'str' ,
@@ -73,7 +75,9 @@ class CreateListenerRequest(object):
7375 'acl_status' : 'AclStatus' ,
7476 'acl_type' : 'AclType' ,
7577 'bandwidth' : 'Bandwidth' ,
78+ 'cert_center_certificate_id' : 'CertCenterCertificateId' ,
7679 'certificate_id' : 'CertificateId' ,
80+ 'certificate_source' : 'CertificateSource' ,
7781 'client_body_timeout' : 'ClientBodyTimeout' ,
7882 'client_header_timeout' : 'ClientHeaderTimeout' ,
7983 'connection_drain_enabled' : 'ConnectionDrainEnabled' ,
@@ -104,7 +108,7 @@ class CreateListenerRequest(object):
104108 'tags' : 'Tags'
105109 }
106110
107- def __init__ (self , acl_ids = None , acl_status = None , acl_type = None , bandwidth = None , certificate_id = None , client_body_timeout = None , client_header_timeout = None , connection_drain_enabled = None , connection_drain_timeout = None , cookie = None , description = None , enabled = None , end_port = None , established_timeout = None , health_check = None , http2_enabled = None , keepalive_timeout = None , listener_name = None , load_balancer_id = None , persistence_timeout = None , persistence_type = None , port = None , protocol = None , proxy_connect_timeout = None , proxy_protocol_type = None , proxy_read_timeout = None , proxy_send_timeout = None , scheduler = None , security_policy_id = None , send_timeout = None , server_group_id = None , start_port = None , tags = None , _configuration = None ): # noqa: E501
111+ def __init__ (self , acl_ids = None , acl_status = None , acl_type = None , bandwidth = None , cert_center_certificate_id = None , certificate_id = None , certificate_source = None , client_body_timeout = None , client_header_timeout = None , connection_drain_enabled = None , connection_drain_timeout = None , cookie = None , description = None , enabled = None , end_port = None , established_timeout = None , health_check = None , http2_enabled = None , keepalive_timeout = None , listener_name = None , load_balancer_id = None , persistence_timeout = None , persistence_type = None , port = None , protocol = None , proxy_connect_timeout = None , proxy_protocol_type = None , proxy_read_timeout = None , proxy_send_timeout = None , scheduler = None , security_policy_id = None , send_timeout = None , server_group_id = None , start_port = None , tags = None , _configuration = None ): # noqa: E501
108112 """CreateListenerRequest - a model defined in Swagger""" # noqa: E501
109113 if _configuration is None :
110114 _configuration = Configuration ()
@@ -114,7 +118,9 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, bandwidth=None,
114118 self ._acl_status = None
115119 self ._acl_type = None
116120 self ._bandwidth = None
121+ self ._cert_center_certificate_id = None
117122 self ._certificate_id = None
123+ self ._certificate_source = None
118124 self ._client_body_timeout = None
119125 self ._client_header_timeout = None
120126 self ._connection_drain_enabled = None
@@ -153,8 +159,12 @@ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, bandwidth=None,
153159 self .acl_type = acl_type
154160 if bandwidth is not None :
155161 self .bandwidth = bandwidth
162+ if cert_center_certificate_id is not None :
163+ self .cert_center_certificate_id = cert_center_certificate_id
156164 if certificate_id is not None :
157165 self .certificate_id = certificate_id
166+ if certificate_source is not None :
167+ self .certificate_source = certificate_source
158168 if client_body_timeout is not None :
159169 self .client_body_timeout = client_body_timeout
160170 if client_header_timeout is not None :
@@ -292,6 +302,27 @@ def bandwidth(self, bandwidth):
292302
293303 self ._bandwidth = bandwidth
294304
305+ @property
306+ def cert_center_certificate_id (self ):
307+ """Gets the cert_center_certificate_id of this CreateListenerRequest. # noqa: E501
308+
309+
310+ :return: The cert_center_certificate_id of this CreateListenerRequest. # noqa: E501
311+ :rtype: str
312+ """
313+ return self ._cert_center_certificate_id
314+
315+ @cert_center_certificate_id .setter
316+ def cert_center_certificate_id (self , cert_center_certificate_id ):
317+ """Sets the cert_center_certificate_id of this CreateListenerRequest.
318+
319+
320+ :param cert_center_certificate_id: The cert_center_certificate_id of this CreateListenerRequest. # noqa: E501
321+ :type: str
322+ """
323+
324+ self ._cert_center_certificate_id = cert_center_certificate_id
325+
295326 @property
296327 def certificate_id (self ):
297328 """Gets the certificate_id of this CreateListenerRequest. # noqa: E501
@@ -313,6 +344,27 @@ def certificate_id(self, certificate_id):
313344
314345 self ._certificate_id = certificate_id
315346
347+ @property
348+ def certificate_source (self ):
349+ """Gets the certificate_source of this CreateListenerRequest. # noqa: E501
350+
351+
352+ :return: The certificate_source of this CreateListenerRequest. # noqa: E501
353+ :rtype: str
354+ """
355+ return self ._certificate_source
356+
357+ @certificate_source .setter
358+ def certificate_source (self , certificate_source ):
359+ """Sets the certificate_source of this CreateListenerRequest.
360+
361+
362+ :param certificate_source: The certificate_source of this CreateListenerRequest. # noqa: E501
363+ :type: str
364+ """
365+
366+ self ._certificate_source = certificate_source
367+
316368 @property
317369 def client_body_timeout (self ):
318370 """Gets the client_body_timeout of this CreateListenerRequest. # noqa: E501
0 commit comments