@@ -40,7 +40,9 @@ class CertificateForDescribeCertificatesOutput(object):
4040 'domain_name' : 'str' ,
4141 'expired_at' : 'str' ,
4242 'listeners' : 'list[str]' ,
43- 'project_name' : 'str'
43+ 'project_name' : 'str' ,
44+ 'service_managed' : 'bool' ,
45+ 'tags' : 'list[TagForDescribeCertificatesOutput]'
4446 }
4547
4648 attribute_map = {
@@ -51,10 +53,12 @@ class CertificateForDescribeCertificatesOutput(object):
5153 'domain_name' : 'DomainName' ,
5254 'expired_at' : 'ExpiredAt' ,
5355 'listeners' : 'Listeners' ,
54- 'project_name' : 'ProjectName'
56+ 'project_name' : 'ProjectName' ,
57+ 'service_managed' : 'ServiceManaged' ,
58+ 'tags' : 'Tags'
5559 }
5660
57- def __init__ (self , certificate_id = None , certificate_name = None , create_time = None , description = None , domain_name = None , expired_at = None , listeners = None , project_name = None , _configuration = None ): # noqa: E501
61+ def __init__ (self , certificate_id = None , certificate_name = None , create_time = None , description = None , domain_name = None , expired_at = None , listeners = None , project_name = None , service_managed = None , tags = None , _configuration = None ): # noqa: E501
5862 """CertificateForDescribeCertificatesOutput - a model defined in Swagger""" # noqa: E501
5963 if _configuration is None :
6064 _configuration = Configuration ()
@@ -68,6 +72,8 @@ def __init__(self, certificate_id=None, certificate_name=None, create_time=None,
6872 self ._expired_at = None
6973 self ._listeners = None
7074 self ._project_name = None
75+ self ._service_managed = None
76+ self ._tags = None
7177 self .discriminator = None
7278
7379 if certificate_id is not None :
@@ -86,6 +92,10 @@ def __init__(self, certificate_id=None, certificate_name=None, create_time=None,
8692 self .listeners = listeners
8793 if project_name is not None :
8894 self .project_name = project_name
95+ if service_managed is not None :
96+ self .service_managed = service_managed
97+ if tags is not None :
98+ self .tags = tags
8999
90100 @property
91101 def certificate_id (self ):
@@ -255,6 +265,48 @@ def project_name(self, project_name):
255265
256266 self ._project_name = project_name
257267
268+ @property
269+ def service_managed (self ):
270+ """Gets the service_managed of this CertificateForDescribeCertificatesOutput. # noqa: E501
271+
272+
273+ :return: The service_managed of this CertificateForDescribeCertificatesOutput. # noqa: E501
274+ :rtype: bool
275+ """
276+ return self ._service_managed
277+
278+ @service_managed .setter
279+ def service_managed (self , service_managed ):
280+ """Sets the service_managed of this CertificateForDescribeCertificatesOutput.
281+
282+
283+ :param service_managed: The service_managed of this CertificateForDescribeCertificatesOutput. # noqa: E501
284+ :type: bool
285+ """
286+
287+ self ._service_managed = service_managed
288+
289+ @property
290+ def tags (self ):
291+ """Gets the tags of this CertificateForDescribeCertificatesOutput. # noqa: E501
292+
293+
294+ :return: The tags of this CertificateForDescribeCertificatesOutput. # noqa: E501
295+ :rtype: list[TagForDescribeCertificatesOutput]
296+ """
297+ return self ._tags
298+
299+ @tags .setter
300+ def tags (self , tags ):
301+ """Sets the tags of this CertificateForDescribeCertificatesOutput.
302+
303+
304+ :param tags: The tags of this CertificateForDescribeCertificatesOutput. # noqa: E501
305+ :type: list[TagForDescribeCertificatesOutput]
306+ """
307+
308+ self ._tags = tags
309+
258310 def to_dict (self ):
259311 """Returns the model properties as a dict"""
260312 result = {}
0 commit comments