@@ -37,6 +37,7 @@ class CreateUSC(object):
3737 'azure_kv_name' : 'str' ,
3838 'delete_protection' : 'str' ,
3939 'description' : 'str' ,
40+ 'gcp_project_id' : 'str' ,
4041 'json' : 'bool' ,
4142 'k8s_namespace' : 'str' ,
4243 'name' : 'str' ,
@@ -52,6 +53,7 @@ class CreateUSC(object):
5253 'azure_kv_name' : 'azure-kv-name' ,
5354 'delete_protection' : 'delete_protection' ,
5455 'description' : 'description' ,
56+ 'gcp_project_id' : 'gcp-project-id' ,
5557 'json' : 'json' ,
5658 'k8s_namespace' : 'k8s-namespace' ,
5759 'name' : 'name' ,
@@ -63,7 +65,7 @@ class CreateUSC(object):
6365 'use_prefix_as_filter' : 'use-prefix-as-filter'
6466 }
6567
66- def __init__ (self , azure_kv_name = None , delete_protection = None , description = None , json = False , k8s_namespace = None , name = None , tags = None , target_to_associate = None , token = None , uid_token = None , usc_prefix = None , use_prefix_as_filter = 'false' , local_vars_configuration = None ): # noqa: E501
68+ def __init__ (self , azure_kv_name = None , delete_protection = None , description = None , gcp_project_id = None , json = False , k8s_namespace = None , name = None , tags = None , target_to_associate = None , token = None , uid_token = None , usc_prefix = None , use_prefix_as_filter = 'false' , local_vars_configuration = None ): # noqa: E501
6769 """CreateUSC - a model defined in OpenAPI""" # noqa: E501
6870 if local_vars_configuration is None :
6971 local_vars_configuration = Configuration ()
@@ -72,6 +74,7 @@ def __init__(self, azure_kv_name=None, delete_protection=None, description=None,
7274 self ._azure_kv_name = None
7375 self ._delete_protection = None
7476 self ._description = None
77+ self ._gcp_project_id = None
7578 self ._json = None
7679 self ._k8s_namespace = None
7780 self ._name = None
@@ -89,6 +92,8 @@ def __init__(self, azure_kv_name=None, delete_protection=None, description=None,
8992 self .delete_protection = delete_protection
9093 if description is not None :
9194 self .description = description
95+ if gcp_project_id is not None :
96+ self .gcp_project_id = gcp_project_id
9297 if json is not None :
9398 self .json = json
9499 if k8s_namespace is not None :
@@ -175,6 +180,29 @@ def description(self, description):
175180
176181 self ._description = description
177182
183+ @property
184+ def gcp_project_id (self ):
185+ """Gets the gcp_project_id of this CreateUSC. # noqa: E501
186+
187+ GCP Project ID (Relevant only for GCP targets) # noqa: E501
188+
189+ :return: The gcp_project_id of this CreateUSC. # noqa: E501
190+ :rtype: str
191+ """
192+ return self ._gcp_project_id
193+
194+ @gcp_project_id .setter
195+ def gcp_project_id (self , gcp_project_id ):
196+ """Sets the gcp_project_id of this CreateUSC.
197+
198+ GCP Project ID (Relevant only for GCP targets) # noqa: E501
199+
200+ :param gcp_project_id: The gcp_project_id of this CreateUSC. # noqa: E501
201+ :type: str
202+ """
203+
204+ self ._gcp_project_id = gcp_project_id
205+
178206 @property
179207 def json (self ):
180208 """Gets the json of this CreateUSC. # noqa: E501
0 commit comments