-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f079761
commit 5aaf56a
Showing
32 changed files
with
2,991 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,69 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from .types import ( | ||
CreateOrganizationResponse, | ||
CreateSamlConnectionResponse, | ||
CreateScimDirectoryResponse, | ||
CreateSetupUrlResponse, | ||
GetOrganizationResponse, | ||
GetSamlConnectionResponse, | ||
GetSamlRedirectUrlResponse, | ||
GetScimDirectoryResponse, | ||
GetScimGroupResponse, | ||
GetScimUserResponse, | ||
GoogleProtobufAny, | ||
ListOrganizationsResponse, | ||
ListSamlConnectionsResponse, | ||
ListScimDirectoriesResponse, | ||
ListScimGroupsResponse, | ||
ListScimUsersResponse, | ||
Organization, | ||
RedeemSamlAccessCodeResponse, | ||
RotateScimDirectoryBearerTokenResponse, | ||
SamlConnection, | ||
ScimDirectory, | ||
ScimGroup, | ||
ScimUser, | ||
Status, | ||
UpdateOrganizationResponse, | ||
UpdateSamlConnectionResponse, | ||
UpdateScimDirectoryResponse, | ||
) | ||
from . import saml, scim | ||
from . import management, saml, scim | ||
from .environment import SSOReadyEnvironment | ||
from .version import __version__ | ||
|
||
__all__ = [ | ||
"CreateOrganizationResponse", | ||
"CreateSamlConnectionResponse", | ||
"CreateScimDirectoryResponse", | ||
"CreateSetupUrlResponse", | ||
"GetOrganizationResponse", | ||
"GetSamlConnectionResponse", | ||
"GetSamlRedirectUrlResponse", | ||
"GetScimDirectoryResponse", | ||
"GetScimGroupResponse", | ||
"GetScimUserResponse", | ||
"GoogleProtobufAny", | ||
"ListOrganizationsResponse", | ||
"ListSamlConnectionsResponse", | ||
"ListScimDirectoriesResponse", | ||
"ListScimGroupsResponse", | ||
"ListScimUsersResponse", | ||
"Organization", | ||
"RedeemSamlAccessCodeResponse", | ||
"RotateScimDirectoryBearerTokenResponse", | ||
"SSOReadyEnvironment", | ||
"SamlConnection", | ||
"ScimDirectory", | ||
"ScimGroup", | ||
"ScimUser", | ||
"Status", | ||
"UpdateOrganizationResponse", | ||
"UpdateSamlConnectionResponse", | ||
"UpdateScimDirectoryResponse", | ||
"__version__", | ||
"management", | ||
"saml", | ||
"scim", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from . import organizations, saml_connections, scim_directories, setup_urls | ||
|
||
__all__ = ["organizations", "saml_connections", "scim_directories", "setup_urls"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper | ||
from .organizations.client import AsyncOrganizationsClient, OrganizationsClient | ||
from .saml_connections.client import AsyncSamlConnectionsClient, SamlConnectionsClient | ||
from .scim_directories.client import AsyncScimDirectoriesClient, ScimDirectoriesClient | ||
from .setup_urls.client import AsyncSetupUrlsClient, SetupUrlsClient | ||
|
||
|
||
class ManagementClient: | ||
def __init__(self, *, client_wrapper: SyncClientWrapper): | ||
self._client_wrapper = client_wrapper | ||
self.organizations = OrganizationsClient(client_wrapper=self._client_wrapper) | ||
self.saml_connections = SamlConnectionsClient(client_wrapper=self._client_wrapper) | ||
self.scim_directories = ScimDirectoriesClient(client_wrapper=self._client_wrapper) | ||
self.setup_urls = SetupUrlsClient(client_wrapper=self._client_wrapper) | ||
|
||
|
||
class AsyncManagementClient: | ||
def __init__(self, *, client_wrapper: AsyncClientWrapper): | ||
self._client_wrapper = client_wrapper | ||
self.organizations = AsyncOrganizationsClient(client_wrapper=self._client_wrapper) | ||
self.saml_connections = AsyncSamlConnectionsClient(client_wrapper=self._client_wrapper) | ||
self.scim_directories = AsyncScimDirectoriesClient(client_wrapper=self._client_wrapper) | ||
self.setup_urls = AsyncSetupUrlsClient(client_wrapper=self._client_wrapper) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
Oops, something went wrong.