@@ -101,7 +101,7 @@ def create(
101101 extra_query = extra_query ,
102102 extra_body = extra_body ,
103103 timeout = timeout ,
104- security = {},
104+ security = {"api_key" : True },
105105 ),
106106 cast_to = AccountCreateResponse ,
107107 )
@@ -138,7 +138,7 @@ def retrieve(
138138 extra_query = extra_query ,
139139 extra_body = extra_body ,
140140 timeout = timeout ,
141- security = {},
141+ security = {"api_key" : True },
142142 ),
143143 cast_to = AccountRetrieveResponse ,
144144 )
@@ -161,7 +161,7 @@ def list(
161161 extra_query = extra_query ,
162162 extra_body = extra_body ,
163163 timeout = timeout ,
164- security = {},
164+ security = {"api_key" : True },
165165 ),
166166 cast_to = AccountListResponse ,
167167 )
@@ -198,7 +198,7 @@ def delete(
198198 extra_query = extra_query ,
199199 extra_body = extra_body ,
200200 timeout = timeout ,
201- security = {},
201+ security = {"api_key" : True },
202202 ),
203203 cast_to = AccountDeleteResponse ,
204204 )
@@ -248,7 +248,7 @@ def reauth(
248248 extra_query = extra_query ,
249249 extra_body = extra_body ,
250250 timeout = timeout ,
251- security = {},
251+ security = {"api_key" : True },
252252 ),
253253 cast_to = AccountReauthResponse ,
254254 )
@@ -330,7 +330,7 @@ async def create(
330330 extra_query = extra_query ,
331331 extra_body = extra_body ,
332332 timeout = timeout ,
333- security = {},
333+ security = {"api_key" : True },
334334 ),
335335 cast_to = AccountCreateResponse ,
336336 )
@@ -367,7 +367,7 @@ async def retrieve(
367367 extra_query = extra_query ,
368368 extra_body = extra_body ,
369369 timeout = timeout ,
370- security = {},
370+ security = {"api_key" : True },
371371 ),
372372 cast_to = AccountRetrieveResponse ,
373373 )
@@ -390,7 +390,7 @@ async def list(
390390 extra_query = extra_query ,
391391 extra_body = extra_body ,
392392 timeout = timeout ,
393- security = {},
393+ security = {"api_key" : True },
394394 ),
395395 cast_to = AccountListResponse ,
396396 )
@@ -427,7 +427,7 @@ async def delete(
427427 extra_query = extra_query ,
428428 extra_body = extra_body ,
429429 timeout = timeout ,
430- security = {},
430+ security = {"api_key" : True },
431431 ),
432432 cast_to = AccountDeleteResponse ,
433433 )
@@ -477,7 +477,7 @@ async def reauth(
477477 extra_query = extra_query ,
478478 extra_body = extra_body ,
479479 timeout = timeout ,
480- security = {},
480+ security = {"api_key" : True },
481481 ),
482482 cast_to = AccountReauthResponse ,
483483 )
0 commit comments