|
2732 | 2732 | from .environment import Auth0Environment |
2733 | 2733 | from .event_streams import EventStreamsCreateRequest |
2734 | 2734 | from .version import __version__ |
| 2735 | + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient |
| 2736 | + from .token_provider import AsyncTokenProvider, TokenProvider |
2735 | 2737 | _dynamic_imports: typing.Dict[str, str] = { |
2736 | 2738 | "Action": ".types", |
2737 | 2739 | "ActionBase": ".types", |
|
2792 | 2794 | "AssociateOrganizationClientGrantResponseContent": ".types", |
2793 | 2795 | "AsyncApprovalNotificationsChannelsEnum": ".types", |
2794 | 2796 | "AsyncAuth0": ".client", |
| 2797 | + "AsyncManagementClient": ".management_client", |
| 2798 | + "AsyncTokenProvider": ".token_provider", |
2795 | 2799 | "AttackProtectionCaptchaArkoseResponseContent": ".types", |
2796 | 2800 | "AttackProtectionCaptchaAuthChallengeRequest": ".types", |
2797 | 2801 | "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", |
|
3747 | 3751 | "CreatedUserAuthenticationMethodTypeEnum": ".types", |
3748 | 3752 | "CredentialId": ".types", |
3749 | 3753 | "CustomDomain": ".types", |
| 3754 | + "CustomDomainHeader": ".management_client", |
3750 | 3755 | "CustomDomainCustomClientIpHeader": ".types", |
3751 | 3756 | "CustomDomainCustomClientIpHeaderEnum": ".types", |
3752 | 3757 | "CustomDomainProvisioningTypeEnum": ".types", |
|
5002 | 5007 | "LogStreamSumoEnum": ".types", |
5003 | 5008 | "LogStreamSumoResponseSchema": ".types", |
5004 | 5009 | "LogStreamSumoSink": ".types", |
| 5010 | + "ManagementClient": ".management_client", |
5005 | 5011 | "MdlPresentationProperties": ".types", |
5006 | 5012 | "MdlPresentationRequest": ".types", |
5007 | 5013 | "MdlPresentationRequestProperties": ".types", |
|
5228 | 5234 | "TokenQuota": ".types", |
5229 | 5235 | "TokenQuotaClientCredentials": ".types", |
5230 | 5236 | "TokenQuotaConfiguration": ".types", |
| 5237 | + "TokenProvider": ".token_provider", |
5231 | 5238 | "TooManyRequestsError": ".errors", |
5232 | 5239 | "TwilioProviderConfiguration": ".types", |
5233 | 5240 | "TwilioProviderCredentials": ".types", |
@@ -5539,6 +5546,7 @@ def __dir__(): |
5539 | 5546 | "AssociateOrganizationClientGrantResponseContent", |
5540 | 5547 | "AsyncApprovalNotificationsChannelsEnum", |
5541 | 5548 | "AsyncAuth0", |
| 5549 | + "AsyncManagementClient", |
5542 | 5550 | "AttackProtectionCaptchaArkoseResponseContent", |
5543 | 5551 | "AttackProtectionCaptchaAuthChallengeRequest", |
5544 | 5552 | "AttackProtectionCaptchaAuthChallengeResponseContent", |
@@ -6494,6 +6502,7 @@ def __dir__(): |
6494 | 6502 | "CreatedUserAuthenticationMethodTypeEnum", |
6495 | 6503 | "CredentialId", |
6496 | 6504 | "CustomDomain", |
| 6505 | + "CustomDomainHeader", |
6497 | 6506 | "CustomDomainCustomClientIpHeader", |
6498 | 6507 | "CustomDomainCustomClientIpHeaderEnum", |
6499 | 6508 | "CustomDomainProvisioningTypeEnum", |
@@ -7749,6 +7758,7 @@ def __dir__(): |
7749 | 7758 | "LogStreamSumoEnum", |
7750 | 7759 | "LogStreamSumoResponseSchema", |
7751 | 7760 | "LogStreamSumoSink", |
| 7761 | + "ManagementClient", |
7752 | 7762 | "MdlPresentationProperties", |
7753 | 7763 | "MdlPresentationRequest", |
7754 | 7764 | "MdlPresentationRequestProperties", |
|
0 commit comments