1818from ....types .set_guardian_factors_provider_push_notification_fcm_response_content import (
1919 SetGuardianFactorsProviderPushNotificationFcmResponseContent ,
2020)
21- from ....types .set_guardian_factors_provider_push_notification_fcmv1response_content import (
21+ from ....types .set_guardian_factors_provider_push_notification_fcmv_1_response_content import (
2222 SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent ,
2323)
2424from ....types .set_guardian_factors_provider_push_notification_response_content import (
3333from ....types .update_guardian_factors_provider_push_notification_fcm_response_content import (
3434 UpdateGuardianFactorsProviderPushNotificationFcmResponseContent ,
3535)
36- from ....types .update_guardian_factors_provider_push_notification_fcmv1response_content import (
36+ from ....types .update_guardian_factors_provider_push_notification_fcmv_1_response_content import (
3737 UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent ,
3838)
3939from ....types .update_guardian_factors_provider_push_notification_sns_response_content import (
@@ -93,7 +93,7 @@ def set_apns_provider(
9393 * ,
9494 sandbox : typing .Optional [bool ] = OMIT ,
9595 bundle_id : typing .Optional [str ] = OMIT ,
96- p12 : typing .Optional [str ] = OMIT ,
96+ p_12 : typing .Optional [str ] = OMIT ,
9797 request_options : typing .Optional [RequestOptions ] = None ,
9898 ) -> SetGuardianFactorsProviderPushNotificationApnsResponseContent :
9999 """
@@ -105,7 +105,7 @@ def set_apns_provider(
105105
106106 bundle_id : typing.Optional[str]
107107
108- p12 : typing.Optional[str]
108+ p_12 : typing.Optional[str]
109109
110110 request_options : typing.Optional[RequestOptions]
111111 Request-specific configuration.
@@ -125,7 +125,7 @@ def set_apns_provider(
125125 client.guardian.factors.push_notification.set_apns_provider()
126126 """
127127 _response = self ._raw_client .set_apns_provider (
128- sandbox = sandbox , bundle_id = bundle_id , p12 = p12 , request_options = request_options
128+ sandbox = sandbox , bundle_id = bundle_id , p_12 = p_12 , request_options = request_options
129129 )
130130 return _response .data
131131
@@ -134,7 +134,7 @@ def update_apns_provider(
134134 * ,
135135 sandbox : typing .Optional [bool ] = OMIT ,
136136 bundle_id : typing .Optional [str ] = OMIT ,
137- p12 : typing .Optional [str ] = OMIT ,
137+ p_12 : typing .Optional [str ] = OMIT ,
138138 request_options : typing .Optional [RequestOptions ] = None ,
139139 ) -> UpdateGuardianFactorsProviderPushNotificationApnsResponseContent :
140140 """
@@ -146,7 +146,7 @@ def update_apns_provider(
146146
147147 bundle_id : typing.Optional[str]
148148
149- p12 : typing.Optional[str]
149+ p_12 : typing.Optional[str]
150150
151151 request_options : typing.Optional[RequestOptions]
152152 Request-specific configuration.
@@ -166,7 +166,7 @@ def update_apns_provider(
166166 client.guardian.factors.push_notification.update_apns_provider()
167167 """
168168 _response = self ._raw_client .update_apns_provider (
169- sandbox = sandbox , bundle_id = bundle_id , p12 = p12 , request_options = request_options
169+ sandbox = sandbox , bundle_id = bundle_id , p_12 = p_12 , request_options = request_options
170170 )
171171 return _response .data
172172
@@ -230,7 +230,7 @@ def update_fcm_provider(
230230 _response = self ._raw_client .update_fcm_provider (server_key = server_key , request_options = request_options )
231231 return _response .data
232232
233- def set_fcmv1provider (
233+ def set_fcmv_1_provider (
234234 self ,
235235 * ,
236236 server_credentials : typing .Optional [str ] = OMIT ,
@@ -258,14 +258,14 @@ def set_fcmv1provider(
258258 client = Auth0(
259259 token="YOUR_TOKEN",
260260 )
261- client.guardian.factors.push_notification.set_fcmv1provider ()
261+ client.guardian.factors.push_notification.set_fcmv_1_provider ()
262262 """
263- _response = self ._raw_client .set_fcmv1provider (
263+ _response = self ._raw_client .set_fcmv_1_provider (
264264 server_credentials = server_credentials , request_options = request_options
265265 )
266266 return _response .data
267267
268- def update_fcmv1provider (
268+ def update_fcmv_1_provider (
269269 self ,
270270 * ,
271271 server_credentials : typing .Optional [str ] = OMIT ,
@@ -293,9 +293,9 @@ def update_fcmv1provider(
293293 client = Auth0(
294294 token="YOUR_TOKEN",
295295 )
296- client.guardian.factors.push_notification.update_fcmv1provider ()
296+ client.guardian.factors.push_notification.update_fcmv_1_provider ()
297297 """
298- _response = self ._raw_client .update_fcmv1provider (
298+ _response = self ._raw_client .update_fcmv_1_provider (
299299 server_credentials = server_credentials , request_options = request_options
300300 )
301301 return _response .data
@@ -552,7 +552,7 @@ async def set_apns_provider(
552552 * ,
553553 sandbox : typing .Optional [bool ] = OMIT ,
554554 bundle_id : typing .Optional [str ] = OMIT ,
555- p12 : typing .Optional [str ] = OMIT ,
555+ p_12 : typing .Optional [str ] = OMIT ,
556556 request_options : typing .Optional [RequestOptions ] = None ,
557557 ) -> SetGuardianFactorsProviderPushNotificationApnsResponseContent :
558558 """
@@ -564,7 +564,7 @@ async def set_apns_provider(
564564
565565 bundle_id : typing.Optional[str]
566566
567- p12 : typing.Optional[str]
567+ p_12 : typing.Optional[str]
568568
569569 request_options : typing.Optional[RequestOptions]
570570 Request-specific configuration.
@@ -592,7 +592,7 @@ async def main() -> None:
592592 asyncio.run(main())
593593 """
594594 _response = await self ._raw_client .set_apns_provider (
595- sandbox = sandbox , bundle_id = bundle_id , p12 = p12 , request_options = request_options
595+ sandbox = sandbox , bundle_id = bundle_id , p_12 = p_12 , request_options = request_options
596596 )
597597 return _response .data
598598
@@ -601,7 +601,7 @@ async def update_apns_provider(
601601 * ,
602602 sandbox : typing .Optional [bool ] = OMIT ,
603603 bundle_id : typing .Optional [str ] = OMIT ,
604- p12 : typing .Optional [str ] = OMIT ,
604+ p_12 : typing .Optional [str ] = OMIT ,
605605 request_options : typing .Optional [RequestOptions ] = None ,
606606 ) -> UpdateGuardianFactorsProviderPushNotificationApnsResponseContent :
607607 """
@@ -613,7 +613,7 @@ async def update_apns_provider(
613613
614614 bundle_id : typing.Optional[str]
615615
616- p12 : typing.Optional[str]
616+ p_12 : typing.Optional[str]
617617
618618 request_options : typing.Optional[RequestOptions]
619619 Request-specific configuration.
@@ -641,7 +641,7 @@ async def main() -> None:
641641 asyncio.run(main())
642642 """
643643 _response = await self ._raw_client .update_apns_provider (
644- sandbox = sandbox , bundle_id = bundle_id , p12 = p12 , request_options = request_options
644+ sandbox = sandbox , bundle_id = bundle_id , p_12 = p_12 , request_options = request_options
645645 )
646646 return _response .data
647647
@@ -721,7 +721,7 @@ async def main() -> None:
721721 _response = await self ._raw_client .update_fcm_provider (server_key = server_key , request_options = request_options )
722722 return _response .data
723723
724- async def set_fcmv1provider (
724+ async def set_fcmv_1_provider (
725725 self ,
726726 * ,
727727 server_credentials : typing .Optional [str ] = OMIT ,
@@ -754,17 +754,17 @@ async def set_fcmv1provider(
754754
755755
756756 async def main() -> None:
757- await client.guardian.factors.push_notification.set_fcmv1provider ()
757+ await client.guardian.factors.push_notification.set_fcmv_1_provider ()
758758
759759
760760 asyncio.run(main())
761761 """
762- _response = await self ._raw_client .set_fcmv1provider (
762+ _response = await self ._raw_client .set_fcmv_1_provider (
763763 server_credentials = server_credentials , request_options = request_options
764764 )
765765 return _response .data
766766
767- async def update_fcmv1provider (
767+ async def update_fcmv_1_provider (
768768 self ,
769769 * ,
770770 server_credentials : typing .Optional [str ] = OMIT ,
@@ -797,12 +797,12 @@ async def update_fcmv1provider(
797797
798798
799799 async def main() -> None:
800- await client.guardian.factors.push_notification.update_fcmv1provider ()
800+ await client.guardian.factors.push_notification.update_fcmv_1_provider ()
801801
802802
803803 asyncio.run(main())
804804 """
805- _response = await self ._raw_client .update_fcmv1provider (
805+ _response = await self ._raw_client .update_fcmv_1_provider (
806806 server_credentials = server_credentials , request_options = request_options
807807 )
808808 return _response .data
0 commit comments