@@ -41,6 +41,7 @@ class CreateClusterRequest(object):
4141 'logging_config' : 'LoggingConfigForCreateClusterInput' ,
4242 'name' : 'str' ,
4343 'pods_config' : 'PodsConfigForCreateClusterInput' ,
44+ 'project_name' : 'str' ,
4445 'services_config' : 'ServicesConfigForCreateClusterInput' ,
4546 'tags' : 'list[TagForCreateClusterInput]'
4647 }
@@ -54,11 +55,12 @@ class CreateClusterRequest(object):
5455 'logging_config' : 'LoggingConfig' ,
5556 'name' : 'Name' ,
5657 'pods_config' : 'PodsConfig' ,
58+ 'project_name' : 'ProjectName' ,
5759 'services_config' : 'ServicesConfig' ,
5860 'tags' : 'Tags'
5961 }
6062
61- def __init__ (self , client_token = None , cluster_config = None , delete_protection_enabled = None , description = None , kubernetes_version = None , logging_config = None , name = None , pods_config = None , services_config = None , tags = None , _configuration = None ): # noqa: E501
63+ def __init__ (self , client_token = None , cluster_config = None , delete_protection_enabled = None , description = None , kubernetes_version = None , logging_config = None , name = None , pods_config = None , project_name = None , services_config = None , tags = None , _configuration = None ): # noqa: E501
6264 """CreateClusterRequest - a model defined in Swagger""" # noqa: E501
6365 if _configuration is None :
6466 _configuration = Configuration ()
@@ -72,6 +74,7 @@ def __init__(self, client_token=None, cluster_config=None, delete_protection_ena
7274 self ._logging_config = None
7375 self ._name = None
7476 self ._pods_config = None
77+ self ._project_name = None
7578 self ._services_config = None
7679 self ._tags = None
7780 self .discriminator = None
@@ -91,6 +94,8 @@ def __init__(self, client_token=None, cluster_config=None, delete_protection_ena
9194 self .name = name
9295 if pods_config is not None :
9396 self .pods_config = pods_config
97+ if project_name is not None :
98+ self .project_name = project_name
9499 if services_config is not None :
95100 self .services_config = services_config
96101 if tags is not None :
@@ -266,6 +271,27 @@ def pods_config(self, pods_config):
266271
267272 self ._pods_config = pods_config
268273
274+ @property
275+ def project_name (self ):
276+ """Gets the project_name of this CreateClusterRequest. # noqa: E501
277+
278+
279+ :return: The project_name of this CreateClusterRequest. # noqa: E501
280+ :rtype: str
281+ """
282+ return self ._project_name
283+
284+ @project_name .setter
285+ def project_name (self , project_name ):
286+ """Sets the project_name of this CreateClusterRequest.
287+
288+
289+ :param project_name: The project_name of this CreateClusterRequest. # noqa: E501
290+ :type: str
291+ """
292+
293+ self ._project_name = project_name
294+
269295 @property
270296 def services_config (self ):
271297 """Gets the services_config of this CreateClusterRequest. # noqa: E501
0 commit comments