@@ -93,6 +93,7 @@ def create(
9393 name : str ,
9494 app_name : typing .Optional [str ] = OMIT ,
9595 support_email : typing .Optional [str ] = OMIT ,
96+ connect_require_key_auth_test : typing .Optional [bool ] = OMIT ,
9697 request_options : typing .Optional [RequestOptions ] = None ,
9798 ) -> Project :
9899 """
@@ -109,6 +110,9 @@ def create(
109110 support_email : typing.Optional[str]
110111 Support email displayed to end users
111112
113+ connect_require_key_auth_test : typing.Optional[bool]
114+ Send a test request to the upstream API when adding Connect accounts for key-based apps
115+
112116 request_options : typing.Optional[RequestOptions]
113117 Request-specific configuration.
114118
@@ -132,7 +136,11 @@ def create(
132136 )
133137 """
134138 _response = self ._raw_client .create (
135- name = name , app_name = app_name , support_email = support_email , request_options = request_options
139+ name = name ,
140+ app_name = app_name ,
141+ support_email = support_email ,
142+ connect_require_key_auth_test = connect_require_key_auth_test ,
143+ request_options = request_options ,
136144 )
137145 return _response .data
138146
@@ -210,6 +218,7 @@ def update(
210218 name : typing .Optional [str ] = OMIT ,
211219 app_name : typing .Optional [str ] = OMIT ,
212220 support_email : typing .Optional [str ] = OMIT ,
221+ connect_require_key_auth_test : typing .Optional [bool ] = OMIT ,
213222 request_options : typing .Optional [RequestOptions ] = None ,
214223 ) -> Project :
215224 """
@@ -229,6 +238,9 @@ def update(
229238 support_email : typing.Optional[str]
230239 Support email displayed to end users
231240
241+ connect_require_key_auth_test : typing.Optional[bool]
242+ Send a test request to the upstream API when adding Connect accounts for key-based apps
243+
232244 request_options : typing.Optional[RequestOptions]
233245 Request-specific configuration.
234246
@@ -252,7 +264,12 @@ def update(
252264 )
253265 """
254266 _response = self ._raw_client .update (
255- project_id , name = name , app_name = app_name , support_email = support_email , request_options = request_options
267+ project_id ,
268+ name = name ,
269+ app_name = app_name ,
270+ support_email = support_email ,
271+ connect_require_key_auth_test = connect_require_key_auth_test ,
272+ request_options = request_options ,
256273 )
257274 return _response .data
258275
@@ -415,6 +432,7 @@ async def create(
415432 name : str ,
416433 app_name : typing .Optional [str ] = OMIT ,
417434 support_email : typing .Optional [str ] = OMIT ,
435+ connect_require_key_auth_test : typing .Optional [bool ] = OMIT ,
418436 request_options : typing .Optional [RequestOptions ] = None ,
419437 ) -> Project :
420438 """
@@ -431,6 +449,9 @@ async def create(
431449 support_email : typing.Optional[str]
432450 Support email displayed to end users
433451
452+ connect_require_key_auth_test : typing.Optional[bool]
453+ Send a test request to the upstream API when adding Connect accounts for key-based apps
454+
434455 request_options : typing.Optional[RequestOptions]
435456 Request-specific configuration.
436457
@@ -462,7 +483,11 @@ async def main() -> None:
462483 asyncio.run(main())
463484 """
464485 _response = await self ._raw_client .create (
465- name = name , app_name = app_name , support_email = support_email , request_options = request_options
486+ name = name ,
487+ app_name = app_name ,
488+ support_email = support_email ,
489+ connect_require_key_auth_test = connect_require_key_auth_test ,
490+ request_options = request_options ,
466491 )
467492 return _response .data
468493
@@ -556,6 +581,7 @@ async def update(
556581 name : typing .Optional [str ] = OMIT ,
557582 app_name : typing .Optional [str ] = OMIT ,
558583 support_email : typing .Optional [str ] = OMIT ,
584+ connect_require_key_auth_test : typing .Optional [bool ] = OMIT ,
559585 request_options : typing .Optional [RequestOptions ] = None ,
560586 ) -> Project :
561587 """
@@ -575,6 +601,9 @@ async def update(
575601 support_email : typing.Optional[str]
576602 Support email displayed to end users
577603
604+ connect_require_key_auth_test : typing.Optional[bool]
605+ Send a test request to the upstream API when adding Connect accounts for key-based apps
606+
578607 request_options : typing.Optional[RequestOptions]
579608 Request-specific configuration.
580609
@@ -606,7 +635,12 @@ async def main() -> None:
606635 asyncio.run(main())
607636 """
608637 _response = await self ._raw_client .update (
609- project_id , name = name , app_name = app_name , support_email = support_email , request_options = request_options
638+ project_id ,
639+ name = name ,
640+ app_name = app_name ,
641+ support_email = support_email ,
642+ connect_require_key_auth_test = connect_require_key_auth_test ,
643+ request_options = request_options ,
610644 )
611645 return _response .data
612646
0 commit comments