@@ -56,7 +56,6 @@ def create(
5656 alias : str ,
5757 connection_uri : str ,
5858 bigquery_credential_file_content : Union [object , str ] | NotGiven = NOT_GIVEN ,
59- llm_api_key : str | NotGiven = NOT_GIVEN ,
6059 metadata : object | NotGiven = NOT_GIVEN ,
6160 ssh_settings : database_connection_create_params .SSHSettings | NotGiven = NOT_GIVEN ,
6261 use_ssh : bool | NotGiven = NOT_GIVEN ,
@@ -86,7 +85,6 @@ def create(
8685 "alias" : alias ,
8786 "connection_uri" : connection_uri ,
8887 "bigquery_credential_file_content" : bigquery_credential_file_content ,
89- "llm_api_key" : llm_api_key ,
9088 "metadata" : metadata ,
9189 "ssh_settings" : ssh_settings ,
9290 "use_ssh" : use_ssh ,
@@ -139,7 +137,6 @@ def update(
139137 alias : str ,
140138 connection_uri : str ,
141139 bigquery_credential_file_content : Union [object , str ] | NotGiven = NOT_GIVEN ,
142- llm_api_key : str | NotGiven = NOT_GIVEN ,
143140 metadata : object | NotGiven = NOT_GIVEN ,
144141 ssh_settings : database_connection_update_params .SSHSettings | NotGiven = NOT_GIVEN ,
145142 use_ssh : bool | NotGiven = NOT_GIVEN ,
@@ -171,7 +168,6 @@ def update(
171168 "alias" : alias ,
172169 "connection_uri" : connection_uri ,
173170 "bigquery_credential_file_content" : bigquery_credential_file_content ,
174- "llm_api_key" : llm_api_key ,
175171 "metadata" : metadata ,
176172 "ssh_settings" : ssh_settings ,
177173 "use_ssh" : use_ssh ,
@@ -194,7 +190,7 @@ def list(
194190 extra_body : Body | None = None ,
195191 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
196192 ) -> DatabaseConnectionListResponse :
197- """Api Get Db Connections"""
193+ """Get Db Connections"""
198194 return self ._get (
199195 "/api/database-connections" ,
200196 options = make_request_options (
@@ -223,7 +219,6 @@ async def create(
223219 alias : str ,
224220 connection_uri : str ,
225221 bigquery_credential_file_content : Union [object , str ] | NotGiven = NOT_GIVEN ,
226- llm_api_key : str | NotGiven = NOT_GIVEN ,
227222 metadata : object | NotGiven = NOT_GIVEN ,
228223 ssh_settings : database_connection_create_params .SSHSettings | NotGiven = NOT_GIVEN ,
229224 use_ssh : bool | NotGiven = NOT_GIVEN ,
@@ -253,7 +248,6 @@ async def create(
253248 "alias" : alias ,
254249 "connection_uri" : connection_uri ,
255250 "bigquery_credential_file_content" : bigquery_credential_file_content ,
256- "llm_api_key" : llm_api_key ,
257251 "metadata" : metadata ,
258252 "ssh_settings" : ssh_settings ,
259253 "use_ssh" : use_ssh ,
@@ -306,7 +300,6 @@ async def update(
306300 alias : str ,
307301 connection_uri : str ,
308302 bigquery_credential_file_content : Union [object , str ] | NotGiven = NOT_GIVEN ,
309- llm_api_key : str | NotGiven = NOT_GIVEN ,
310303 metadata : object | NotGiven = NOT_GIVEN ,
311304 ssh_settings : database_connection_update_params .SSHSettings | NotGiven = NOT_GIVEN ,
312305 use_ssh : bool | NotGiven = NOT_GIVEN ,
@@ -338,7 +331,6 @@ async def update(
338331 "alias" : alias ,
339332 "connection_uri" : connection_uri ,
340333 "bigquery_credential_file_content" : bigquery_credential_file_content ,
341- "llm_api_key" : llm_api_key ,
342334 "metadata" : metadata ,
343335 "ssh_settings" : ssh_settings ,
344336 "use_ssh" : use_ssh ,
@@ -361,7 +353,7 @@ async def list(
361353 extra_body : Body | None = None ,
362354 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
363355 ) -> DatabaseConnectionListResponse :
364- """Api Get Db Connections"""
356+ """Get Db Connections"""
365357 return await self ._get (
366358 "/api/database-connections" ,
367359 options = make_request_options (
0 commit comments