|
2806 | 2806 | from .environment import Auth0Environment |
2807 | 2807 | from .event_streams import EventStreamsCreateRequest |
2808 | 2808 | from .version import __version__ |
| 2809 | + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient |
| 2810 | + from .token_provider import AsyncTokenProvider, TokenProvider |
2809 | 2811 | _dynamic_imports: typing.Dict[str, str] = { |
2810 | 2812 | "Action": ".types", |
2811 | 2813 | "ActionBase": ".types", |
|
2866 | 2868 | "AssociateOrganizationClientGrantResponseContent": ".types", |
2867 | 2869 | "AsyncApprovalNotificationsChannelsEnum": ".types", |
2868 | 2870 | "AsyncAuth0": ".client", |
| 2871 | + "AsyncManagementClient": ".management_client", |
| 2872 | + "AsyncTokenProvider": ".token_provider", |
2869 | 2873 | "AttackProtectionCaptchaArkoseResponseContent": ".types", |
2870 | 2874 | "AttackProtectionCaptchaAuthChallengeRequest": ".types", |
2871 | 2875 | "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", |
|
3837 | 3841 | "CspReportingEndpoints": ".types", |
3838 | 3842 | "CspReportingInfrastructure": ".types", |
3839 | 3843 | "CustomDomain": ".types", |
| 3844 | + "CustomDomainHeader": ".management_client", |
3840 | 3845 | "CustomDomainCustomClientIpHeader": ".types", |
3841 | 3846 | "CustomDomainCustomClientIpHeaderEnum": ".types", |
3842 | 3847 | "CustomDomainProvisioningTypeEnum": ".types", |
|
5111 | 5116 | "LogStreamSumoEnum": ".types", |
5112 | 5117 | "LogStreamSumoResponseSchema": ".types", |
5113 | 5118 | "LogStreamSumoSink": ".types", |
| 5119 | + "ManagementClient": ".management_client", |
5114 | 5120 | "MdlPresentationProperties": ".types", |
5115 | 5121 | "MdlPresentationRequest": ".types", |
5116 | 5122 | "MdlPresentationRequestProperties": ".types", |
|
5364 | 5370 | "TestEventDataContent": ".types", |
5365 | 5371 | "TokenExchangeProfileResponseContent": ".types", |
5366 | 5372 | "TokenExchangeProfileTypeEnum": ".types", |
| 5373 | + "TokenProvider": ".token_provider", |
5367 | 5374 | "TokenQuota": ".types", |
5368 | 5375 | "TokenQuotaClientCredentials": ".types", |
5369 | 5376 | "TokenQuotaConfiguration": ".types", |
@@ -5687,6 +5694,8 @@ def __dir__(): |
5687 | 5694 | "AssociateOrganizationClientGrantResponseContent", |
5688 | 5695 | "AsyncApprovalNotificationsChannelsEnum", |
5689 | 5696 | "AsyncAuth0", |
| 5697 | + "AsyncManagementClient", |
| 5698 | + "AsyncTokenProvider", |
5690 | 5699 | "AttackProtectionCaptchaArkoseResponseContent", |
5691 | 5700 | "AttackProtectionCaptchaAuthChallengeRequest", |
5692 | 5701 | "AttackProtectionCaptchaAuthChallengeResponseContent", |
@@ -7932,6 +7941,7 @@ def __dir__(): |
7932 | 7941 | "LogStreamSumoEnum", |
7933 | 7942 | "LogStreamSumoResponseSchema", |
7934 | 7943 | "LogStreamSumoSink", |
| 7944 | + "ManagementClient", |
7935 | 7945 | "MdlPresentationProperties", |
7936 | 7946 | "MdlPresentationRequest", |
7937 | 7947 | "MdlPresentationRequestProperties", |
@@ -8185,6 +8195,7 @@ def __dir__(): |
8185 | 8195 | "TestEventDataContent", |
8186 | 8196 | "TokenExchangeProfileResponseContent", |
8187 | 8197 | "TokenExchangeProfileTypeEnum", |
| 8198 | + "TokenProvider", |
8188 | 8199 | "TokenQuota", |
8189 | 8200 | "TokenQuotaClientCredentials", |
8190 | 8201 | "TokenQuotaConfiguration", |
|
0 commit comments