From 2a996230c77f6d034a8346f15a7d3a7415493742 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 12:03:12 +0000 Subject: [PATCH 1/2] [fern-generated] Update SDK Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.17.0 --- UPGRADING.md | 157 --- reference.md | 755 +++++++++-- src/auth0/management/__init__.py | 63 +- src/auth0/management/core/client_wrapper.py | 16 - .../management/organizations/__init__.py | 3 + src/auth0/management/organizations/client.py | 65 +- .../organizations/clients/__init__.py | 4 + .../organizations/clients/client.py | 532 ++++++++ .../organizations/clients/raw_client.py | 1181 +++++++++++++++++ .../enabled_connections/raw_client.py | 23 + .../management/organizations/raw_client.py | 32 + .../organizations/roles/__init__.py | 6 +- .../management/organizations/roles/client.py | 19 + .../organizations/roles/groups/__init__.py | 4 + .../organizations/roles/groups/client.py | 163 +++ .../organizations/roles/groups/raw_client.py | 287 ++++ src/auth0/management/roles/client.py | 115 +- src/auth0/management/roles/raw_client.py | 129 +- src/auth0/management/types/__init__.py | 57 +- .../management/types/acul_context_enum.py | 1 + src/auth0/management/types/conflict_schema.py | 28 + .../management/types/conflict_schema_error.py | 5 + ...create_organization_client_request_item.py | 27 + ...e_organization_clients_response_content.py | 7 + .../create_organization_response_content.py | 7 + .../types/create_role_response_content.py | 7 + ...t_organization_by_name_response_content.py | 7 + ...et_organization_client_response_content.py | 30 + .../get_organization_response_content.py | 7 + .../types/get_role_response_content.py | 7 + ...t_organization_clients_response_content.py | 28 + ...ganization_role_groups_response_content.py | 28 + ..._checkpoint_paginated_response_content.py} | 6 +- .../types/list_roles_response_content.py | 5 + .../management/types/not_found_schema.py | 28 + .../types/not_found_schema_error.py | 5 + src/auth0/management/types/oauth_scope.py | 4 + src/auth0/management/types/organization.py | 7 + .../management/types/organization_client.py | 30 + .../types/organization_client_association.py | 26 + .../types/organization_client_metadata.py | 49 + ...client_metadata_organization_usage_enum.py | 5 + src/auth0/management/types/role.py | 7 + src/auth0/management/types/role_group.py | 67 + src/auth0/management/types/role_type_enum.py | 5 + ...te_organization_client_response_content.py | 30 + .../update_organization_response_content.py | 7 + .../types/update_role_response_content.py | 7 + ...permission_role_source_response_content.py | 7 + tests/wire/test_organizations.py | 14 +- tests/wire/test_organizations_clients.py | 64 + tests/wire/test_organizations_roles_groups.py | 16 + tests/wire/test_roles.py | 9 +- wiremock/wiremock-mappings.json | 303 ++++- 54 files changed, 4105 insertions(+), 396 deletions(-) delete mode 100644 UPGRADING.md create mode 100644 src/auth0/management/organizations/clients/__init__.py create mode 100644 src/auth0/management/organizations/clients/client.py create mode 100644 src/auth0/management/organizations/clients/raw_client.py create mode 100644 src/auth0/management/organizations/roles/groups/__init__.py create mode 100644 src/auth0/management/organizations/roles/groups/client.py create mode 100644 src/auth0/management/organizations/roles/groups/raw_client.py create mode 100644 src/auth0/management/types/conflict_schema.py create mode 100644 src/auth0/management/types/conflict_schema_error.py create mode 100644 src/auth0/management/types/create_organization_client_request_item.py create mode 100644 src/auth0/management/types/create_organization_clients_response_content.py create mode 100644 src/auth0/management/types/get_organization_client_response_content.py create mode 100644 src/auth0/management/types/list_organization_clients_response_content.py create mode 100644 src/auth0/management/types/list_organization_role_groups_response_content.py rename src/auth0/management/types/{list_roles_offset_paginated_response_content.py => list_roles_checkpoint_paginated_response_content.py} (82%) create mode 100644 src/auth0/management/types/list_roles_response_content.py create mode 100644 src/auth0/management/types/not_found_schema.py create mode 100644 src/auth0/management/types/not_found_schema_error.py create mode 100644 src/auth0/management/types/organization_client.py create mode 100644 src/auth0/management/types/organization_client_association.py create mode 100644 src/auth0/management/types/organization_client_metadata.py create mode 100644 src/auth0/management/types/organization_client_metadata_organization_usage_enum.py create mode 100644 src/auth0/management/types/role_group.py create mode 100644 src/auth0/management/types/role_type_enum.py create mode 100644 src/auth0/management/types/update_organization_client_response_content.py create mode 100644 tests/wire/test_organizations_clients.py create mode 100644 tests/wire/test_organizations_roles_groups.py diff --git a/UPGRADING.md b/UPGRADING.md deleted file mode 100644 index ed653dbf..00000000 --- a/UPGRADING.md +++ /dev/null @@ -1,157 +0,0 @@ -# v6 Migration Guide - -A guide to migrating the Auth0 Python SDK from v5 to v6. - -- [Overall changes](#overall-changes) -- [Breaking changes](#breaking-changes) - - [Federated connections tokensets removed](#federated-connections-tokensets-removed) - - [`federated_connections_access_tokens` field removed](#federated_connections_access_tokens-field-removed) - - [`read:federated_connections_tokens` / `delete:federated_connections_tokens` scopes removed](#readfederated_connections_tokens--deletefederated_connections_tokens-scopes-removed) - - [`ClientSessionTransferDelegationDeviceBindingEnum` narrowed](#clientsessiontransferdelegationdevicebindingenum-narrowed) - - [`ConnectionAttributeIdentifier` split into three types](#connectionattributeidentifier-split-into-three-types) - - [`PhoneProviderProtectionBackoffStrategyEnum` value renamed](#phoneproviderprotectionbackoffstrategyenum-value-renamed) - - [`ListRolesOffsetPaginatedResponseContent` pagination fields now required](#listrolesoffsetpaginatedresponsecontent-pagination-fields-now-required) - -## Overall changes - -v6 removes one deprecated Management API surface (federated connections -tokensets) and tightens a handful of generated types to match the current -Auth0 Management API contract. Most applications will only be affected if -they use the specific types or endpoints listed below. - -The Authentication API is not affected by this release. - -## Breaking changes - -### Federated connections tokensets removed - -The `users.federated_connections_tokensets` sub-client and its `list`/`delete` -methods have been removed, along with the `FederatedConnectionTokenSet` and -`ConnectionFederatedConnectionsAccessTokens` types. This endpoint is no longer -part of the Auth0 Management API. - -```python -# v5 -client.users.federated_connections_tokensets.list(id="user_id") -client.users.federated_connections_tokensets.delete(id="user_id", tokenset_id="tokenset_id") -``` - -```python -# v6 -# No replacement — the endpoint has been removed from the Management API. -``` - -If you depend on this functionality, do not upgrade until you have confirmed -an alternative with Auth0 support. - -### `federated_connections_access_tokens` field removed - -The optional `federated_connections_access_tokens` field has been removed -from: - -- `ConnectionOptionsAzureAd` -- `ConnectionOptionsCommonOidc` -- `ConnectionOptionsGoogleApps` -- `ConnectionPropertiesOptions` -- `UpdateConnectionOptions` - -Any code reading or setting this field on the above types will need to -remove that usage. Note that these models are configured with -`extra="allow"`, so passing `federated_connections_access_tokens` is **not** -silently dropped — it is retained on the model and still serialized into the -outbound request. Remove the field explicitly rather than relying on the SDK -to strip it. - -### `read:federated_connections_tokens` / `delete:federated_connections_tokens` scopes removed - -These two values are no longer valid members of `OauthScope`. Remove any -references to them when requesting or checking scopes. - -### `ClientSessionTransferDelegationDeviceBindingEnum` narrowed - -The `"asn"` literal value has been removed. The enum now only accepts `"ip"`: - -```python -# v5 -ClientSessionTransferDelegationDeviceBindingEnum = typing.Union[typing.Literal["ip", "asn"], typing.Any] -``` - -```python -# v6 -ClientSessionTransferDelegationDeviceBindingEnum = typing.Union[typing.Literal["ip"], typing.Any] -``` - -If you were setting this value to `"asn"`, update it to `"ip"` — this matches -the current Management API's accepted values. - -### `ConnectionAttributeIdentifier` split into three types - -`ConnectionAttributeIdentifier` has been removed with no compatibility alias. -It is replaced by three narrower types, one per attribute: - -| Attribute field | v5 type | v6 type | Shape | -| --- | --- | --- | --- | -| `EmailAttribute.identifier` | `ConnectionAttributeIdentifier` | `EmailAttributeIdentifier` | `{active?, default_method?: DefaultMethodEmailIdentifierEnum}` | -| `PhoneAttribute.identifier` | `ConnectionAttributeIdentifier` | `PhoneAttributeIdentifier` | `{active?, default_method?: DefaultMethodPhoneNumberIdentifierEnum}` | -| `UsernameAttribute.identifier` | `ConnectionAttributeIdentifier` | `UsernameAttributeIdentifier` | `{active?}` (no `default_method`) | - -```python -# v5 -from auth0.management.types import ConnectionAttributeIdentifier - -identifier = ConnectionAttributeIdentifier(active=True, default_method="email_otp") -``` - -```python -# v6 -from auth0.management.types import EmailAttributeIdentifier - -identifier = EmailAttributeIdentifier(active=True, default_method="email_otp") -``` - -`EmailAttributeIdentifier` has the same shape as the old -`ConnectionAttributeIdentifier` and is a drop-in replacement for code that -was only ever used with `EmailAttribute`. Code using -`ConnectionAttributeIdentifier` with `PhoneAttribute` or `UsernameAttribute` -must switch to `PhoneAttributeIdentifier` or `UsernameAttributeIdentifier` -respectively; `UsernameAttributeIdentifier` does not support -`default_method`. - -### `PhoneProviderProtectionBackoffStrategyEnum` value renamed - -The `"none"` literal has been replaced with `"default"`: - -```python -# v5 -PhoneProviderProtectionBackoffStrategyEnum = typing.Union[typing.Literal["exponential", "none"], typing.Any] -``` - -```python -# v6 -PhoneProviderProtectionBackoffStrategyEnum = typing.Union[typing.Literal["exponential", "default"], typing.Any] -``` - -Replace any use of `"none"` with `"default"`. - -### `ListRolesOffsetPaginatedResponseContent` pagination fields now required - -`start`, `limit`, and `total` are no longer optional: - -```python -# v5 -start: typing.Optional[float] = None -limit: typing.Optional[float] = None -total: typing.Optional[float] = None -``` - -```python -# v6 -start: float -limit: float -total: float -``` - -Deserializing a role-list response that is missing any of these fields now -raises `pydantic.ValidationError` instead of silently defaulting to `None`. -This matches the Management API, which always returns these fields for this -endpoint. diff --git a/reference.md b/reference.md index 4255fd88..308cd776 100644 --- a/reference.md +++ b/reference.md @@ -10173,6 +10173,7 @@ client.organizations.list( from_="from", take=1, sort="sort", + include_client_association_for="include_client_association_for", ) ``` @@ -10213,6 +10214,14 @@ client.organizations.list(
+**include_client_association_for:** `typing.Optional[str]` — Client ID. When set, each returned organization that has an association with this client gains a client object describing it; organizations without one omit the field. + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -10334,6 +10343,14 @@ client.organizations.create(
+**is_app_entitlement_active:** `typing.Optional[bool]` — Whether app entitlement is active for this organization. + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -10676,6 +10693,14 @@ client.organizations.update(
+**is_app_entitlement_active:** `typing.Optional[bool]` — Whether app entitlement is active for this organization. + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -12338,7 +12363,7 @@ client.resource_servers.update( ## Roles -
client.roles.list(...) -> ListRolesOffsetPaginatedResponseContent +
client.roles.list(...) -> ListRolesResponseContent
@@ -12376,10 +12401,11 @@ client = Auth0( ) client.roles.list( - per_page=1, - page=1, - include_totals=True, name_filter="name_filter", + type="tenant", + owner_id="owner_id", + from_="from", + take=1, ) ``` @@ -12396,7 +12422,7 @@ client.roles.list(
-**per_page:** `typing.Optional[int]` — Number of results per page. Defaults to 50. +**name_filter:** `typing.Optional[str]` — Optional filter on name (case-insensitive).
@@ -12404,7 +12430,7 @@ client.roles.list(
-**page:** `typing.Optional[int]` — Page index of the results to return. First page is 0. +**type:** `typing.Optional[RoleTypeEnum]` — Optional filter on the type of the role
@@ -12412,7 +12438,7 @@ client.roles.list(
-**include_totals:** `typing.Optional[bool]` — Return results inside an object that contains the total result count (true) or as a direct array of results (false, default). +**owner_id:** `typing.Optional[str]` — Filter organization-level roles by owner ID. Required when type is "organization".
@@ -12420,7 +12446,15 @@ client.roles.list(
-**name_filter:** `typing.Optional[str]` — Optional filter on name (case-insensitive). +**from:** `typing.Optional[str]` — Optional Id from which to start selection. + +
+
+ +
+
+ +**take:** `typing.Optional[int]` — Number of results per page. Defaults to 50.
@@ -12511,6 +12545,22 @@ client.roles.create(
+**type:** `typing.Optional[RoleTypeEnum]` — The type of the role. Defaults to tenant. + +
+
+ +
+
+ +**owner_id:** `typing.Optional[str]` — The ID of the organization that owns this role. Required when type is "organization". + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -30593,11 +30643,30 @@ client.organizations.client_grants.delete(
-## Organizations Connections -
client.organizations.connections.list(...) -> ListOrganizationAllConnectionsOffsetPaginatedResponseContent +## Organizations Clients +
client.organizations.clients.list(...) -> ListOrganizationClientsResponseContent +
+
+ +#### 📝 Description + +
+
+
+List all clients associated with an organization, using checkpoint pagination. +
    +
  • + Note: The first time you call this endpoint, omit the from parameter. If there are more results, a next value is included in the response. You can use this for subsequent API calls. When next is no longer included in the response, no further results are remaining. +
  • +
+
+
+
+
+ #### 🔌 Usage
@@ -30615,12 +30684,10 @@ client = Auth0( environment=Auth0Environment.DEFAULT, ) -client.organizations.connections.list( +client.organizations.clients.list( id="id", - page=1, - per_page=1, - include_totals=True, - is_enabled=True, + from_="from", + take=1, ) ``` @@ -30637,7 +30704,7 @@ client.organizations.connections.list(
-**id:** `str` — Organization identifier. +**id:** `str` — ID of the organization.
@@ -30645,7 +30712,7 @@ client.organizations.connections.list(
-**page:** `typing.Optional[int]` — Page index of the results to return. First page is 0. +**from:** `typing.Optional[str]` — Optional Id from which to start selection.
@@ -30653,7 +30720,7 @@ client.organizations.connections.list(
-**per_page:** `typing.Optional[int]` — Number of results per page. Defaults to 50. +**take:** `typing.Optional[int]` — Number of results per page. Defaults to 50. Values greater than the maximum of 100 are capped at 100.
@@ -30661,38 +30728,36 @@ client.organizations.connections.list(
-**include_totals:** `typing.Optional[bool]` — Return results inside an object that contains the total result count (true) or as a direct array of results (false, default). +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
+
+
-
-
-**is_enabled:** `typing.Optional[bool]` — Filter connections by enabled status. -
+
+
client.organizations.clients.create(...) -> CreateOrganizationClientsResponseContent
-**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. - -
-
- -
- +#### 📝 Description - -
- +
+
-
client.organizations.connections.create(...) -> CreateOrganizationAllConnectionResponseContent
+Associate one or more clients with an organization. +
+
+
+
+ #### 🔌 Usage
@@ -30702,7 +30767,7 @@ client.organizations.connections.list(
```python -from auth0.management import Auth0 +from auth0.management import Auth0, CreateOrganizationClientRequestItem from auth0.management.environment import Auth0Environment client = Auth0( @@ -30710,9 +30775,14 @@ client = Auth0( environment=Auth0Environment.DEFAULT, ) -client.organizations.connections.create( +client.organizations.clients.create( id="id", - connection_id="connection_id", + clients=[ + CreateOrganizationClientRequestItem( + client_id="client_id", + use_for_member_access=True, + ) + ], ) ``` @@ -30729,7 +30799,7 @@ client.organizations.connections.create(
-**id:** `str` — Organization identifier. +**id:** `str` — ID of the organization.
@@ -30737,7 +30807,7 @@ client.organizations.connections.create(
-**connection_id:** `str` — Connection identifier. +**clients:** `typing.List[CreateOrganizationClientRequestItem]` — List of clients to associate with the organization.
@@ -30745,39 +30815,75 @@ client.organizations.connections.create(
-**organization_connection_name:** `typing.Optional[str]` — Name of the connection in the scope of this organization. +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
+
+
-
-
-**assign_membership_on_login:** `typing.Optional[bool]` — When true, all users that log in with this connection will be automatically granted membership in the organization. When false, users must be granted membership in the organization before logging in with this connection. -
+ +
client.organizations.clients.delete(...)
-**show_as_button:** `typing.Optional[bool]` — Determines whether a connection should be displayed on this organization’s login prompt. Only applicable for enterprise connections. Default: true. - +#### 📝 Description + +
+
+ +
+
+ +Remove one or more client associations from an organization. +
+
+#### 🔌 Usage +
-**is_signup_enabled:** `typing.Optional[bool]` — Determines whether organization signup should be enabled for this organization connection. Only applicable for database connections. Default: false. - +
+
+ +```python +from auth0.management import Auth0 +from auth0.management.environment import Auth0Environment + +client = Auth0( + token="", + environment=Auth0Environment.DEFAULT, +) + +client.organizations.clients.delete( + id="id", + clients=[ + "clients" + ], +) + +```
+
+
+ +#### ⚙️ Parameters
-**organization_access_level:** `typing.Optional[OrganizationAccessLevelEnum]` +
+
+ +**id:** `str` — ID of the organization.
@@ -30785,7 +30891,7 @@ client.organizations.connections.create(
-**is_enabled:** `typing.Optional[bool]` — Whether the connection is enabled for the organization. +**clients:** `typing.List[str]` — List of client IDs to disassociate from the organization.
@@ -30805,10 +30911,24 @@ client.organizations.connections.create(
-
client.organizations.connections.get(...) -> GetOrganizationAllConnectionResponseContent +
client.organizations.clients.get(...) -> GetOrganizationClientResponseContent +
+
+ +#### 📝 Description +
+
+
+ +Get a specific client association for an organization. +
+
+
+
+ #### 🔌 Usage
@@ -30826,9 +30946,9 @@ client = Auth0( environment=Auth0Environment.DEFAULT, ) -client.organizations.connections.get( +client.organizations.clients.get( id="id", - connection_id="connection_id", + client_id="client_id", ) ``` @@ -30845,7 +30965,7 @@ client.organizations.connections.get(
-**id:** `str` — Organization identifier. +**id:** `str` — ID of the organization.
@@ -30853,7 +30973,7 @@ client.organizations.connections.get(
-**connection_id:** `str` — Connection identifier. +**client_id:** `str` — ID of the client association to retrieve.
@@ -30873,10 +30993,24 @@ client.organizations.connections.get(
-
client.organizations.connections.delete(...) +
client.organizations.clients.update(...) -> UpdateOrganizationClientResponseContent +
+
+ +#### 📝 Description +
+
+
+ +Update an organization client association. +
+
+
+
+ #### 🔌 Usage
@@ -30894,9 +31028,9 @@ client = Auth0( environment=Auth0Environment.DEFAULT, ) -client.organizations.connections.delete( +client.organizations.clients.update( id="id", - connection_id="connection_id", + client_id="client_id", ) ``` @@ -30913,7 +31047,7 @@ client.organizations.connections.delete(
-**id:** `str` — Organization identifier. +**id:** `str` — ID of the organization.
@@ -30921,7 +31055,15 @@ client.organizations.connections.delete(
-**connection_id:** `str` — Connection identifier. +**client_id:** `str` — ID of the client association to update. + +
+
+ +
+
+ +**use_for_member_access:** `typing.Optional[bool]` — Whether this client is used for member access to the organization.
@@ -30941,7 +31083,8 @@ client.organizations.connections.delete(
-
client.organizations.connections.update(...) -> UpdateOrganizationAllConnectionResponseContent +## Organizations Connections +
client.organizations.connections.list(...) -> ListOrganizationAllConnectionsOffsetPaginatedResponseContent
@@ -30962,9 +31105,12 @@ client = Auth0( environment=Auth0Environment.DEFAULT, ) -client.organizations.connections.update( +client.organizations.connections.list( id="id", - connection_id="connection_id", + page=1, + per_page=1, + include_totals=True, + is_enabled=True, ) ``` @@ -30989,7 +31135,7 @@ client.organizations.connections.update(
-**connection_id:** `str` — Connection identifier. +**page:** `typing.Optional[int]` — Page index of the results to return. First page is 0.
@@ -30997,7 +31143,7 @@ client.organizations.connections.update(
-**organization_connection_name:** `typing.Optional[str]` — Name of the connection in the scope of this organization. +**per_page:** `typing.Optional[int]` — Number of results per page. Defaults to 50.
@@ -31005,7 +31151,7 @@ client.organizations.connections.update(
-**assign_membership_on_login:** `typing.Optional[bool]` — When true, all users that log in with this connection will be automatically granted membership in the organization. When false, users must be granted membership in the organization before logging in with this connection. +**include_totals:** `typing.Optional[bool]` — Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).
@@ -31013,7 +31159,7 @@ client.organizations.connections.update(
-**show_as_button:** `typing.Optional[bool]` — Determines whether a connection should be displayed on this organization’s login prompt. Only applicable for enterprise connections. Default: true. +**is_enabled:** `typing.Optional[bool]` — Filter connections by enabled status.
@@ -31021,36 +31167,380 @@ client.organizations.connections.update(
-**is_signup_enabled:** `typing.Optional[bool]` — Determines whether organization signup should be enabled for this organization connection. Only applicable for database connections. Default: false. +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
+
+
-
-
-**organization_access_level:** `typing.Optional[OrganizationAccessLevelEnumWithNull]` -
+
+
client.organizations.connections.create(...) -> CreateOrganizationAllConnectionResponseContent
-**is_enabled:** `typing.Optional[bool]` — Whether the connection is enabled for the organization. - -
-
+#### 🔌 Usage
-**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. - -
-
- -
+
+
+ +```python +from auth0.management import Auth0 +from auth0.management.environment import Auth0Environment + +client = Auth0( + token="", + environment=Auth0Environment.DEFAULT, +) + +client.organizations.connections.create( + id="id", + connection_id="connection_id", +) + +``` +
+
+ + + +#### ⚙️ Parameters + +
+
+ +
+
+ +**id:** `str` — Organization identifier. + +
+
+ +
+
+ +**connection_id:** `str` — Connection identifier. + +
+
+ +
+
+ +**organization_connection_name:** `typing.Optional[str]` — Name of the connection in the scope of this organization. + +
+
+ +
+
+ +**assign_membership_on_login:** `typing.Optional[bool]` — When true, all users that log in with this connection will be automatically granted membership in the organization. When false, users must be granted membership in the organization before logging in with this connection. + +
+
+ +
+
+ +**show_as_button:** `typing.Optional[bool]` — Determines whether a connection should be displayed on this organization’s login prompt. Only applicable for enterprise connections. Default: true. + +
+
+ +
+
+ +**is_signup_enabled:** `typing.Optional[bool]` — Determines whether organization signup should be enabled for this organization connection. Only applicable for database connections. Default: false. + +
+
+ +
+
+ +**organization_access_level:** `typing.Optional[OrganizationAccessLevelEnum]` + +
+
+ +
+
+ +**is_enabled:** `typing.Optional[bool]` — Whether the connection is enabled for the organization. + +
+
+ +
+
+ +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. + +
+
+
+
+ + + + + + +
client.organizations.connections.get(...) -> GetOrganizationAllConnectionResponseContent +
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```python +from auth0.management import Auth0 +from auth0.management.environment import Auth0Environment + +client = Auth0( + token="", + environment=Auth0Environment.DEFAULT, +) + +client.organizations.connections.get( + id="id", + connection_id="connection_id", +) + +``` +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**id:** `str` — Organization identifier. + +
+
+ +
+
+ +**connection_id:** `str` — Connection identifier. + +
+
+ +
+
+ +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. + +
+
+
+
+ + +
+
+
+ +
client.organizations.connections.delete(...) +
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```python +from auth0.management import Auth0 +from auth0.management.environment import Auth0Environment + +client = Auth0( + token="", + environment=Auth0Environment.DEFAULT, +) + +client.organizations.connections.delete( + id="id", + connection_id="connection_id", +) + +``` +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**id:** `str` — Organization identifier. + +
+
+ +
+
+ +**connection_id:** `str` — Connection identifier. + +
+
+ +
+
+ +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. + +
+
+
+
+ + +
+
+
+ +
client.organizations.connections.update(...) -> UpdateOrganizationAllConnectionResponseContent +
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```python +from auth0.management import Auth0 +from auth0.management.environment import Auth0Environment + +client = Auth0( + token="", + environment=Auth0Environment.DEFAULT, +) + +client.organizations.connections.update( + id="id", + connection_id="connection_id", +) + +``` +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**id:** `str` — Organization identifier. + +
+
+ +
+
+ +**connection_id:** `str` — Connection identifier. + +
+
+ +
+
+ +**organization_connection_name:** `typing.Optional[str]` — Name of the connection in the scope of this organization. + +
+
+ +
+
+ +**assign_membership_on_login:** `typing.Optional[bool]` — When true, all users that log in with this connection will be automatically granted membership in the organization. When false, users must be granted membership in the organization before logging in with this connection. + +
+
+ +
+
+ +**show_as_button:** `typing.Optional[bool]` — Determines whether a connection should be displayed on this organization’s login prompt. Only applicable for enterprise connections. Default: true. + +
+
+ +
+
+ +**is_signup_enabled:** `typing.Optional[bool]` — Determines whether organization signup should be enabled for this organization connection. Only applicable for database connections. Default: false. + +
+
+ +
+
+ +**organization_access_level:** `typing.Optional[OrganizationAccessLevelEnumWithNull]` + +
+
+ +
+
+ +**is_enabled:** `typing.Optional[bool]` — Whether the connection is enabled for the organization. + +
+
+ +
+
+ +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. + +
+
+
+
@@ -33797,6 +34287,107 @@ client.organizations.roles.members.list(
+ + +
+ +## Organizations Roles Groups +
client.organizations.roles.groups.list(...) -> ListOrganizationRoleGroupsResponseContent +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Retrieve the list of groups assigned to a role in the context of an organization. +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```python +from auth0.management import Auth0 +from auth0.management.environment import Auth0Environment + +client = Auth0( + token="", + environment=Auth0Environment.DEFAULT, +) + +client.organizations.roles.groups.list( + organization_id="organization_id", + role_id="role_id", + from_="from", + take=1, +) + +``` +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**organization_id:** `str` — ID of the organization. + +
+
+ +
+
+ +**role_id:** `str` — ID of the role. + +
+
+ +
+
+ +**from:** `typing.Optional[str]` — Optional Id from which to start selection. + +
+
+ +
+
+ +**take:** `typing.Optional[int]` — Number of results per page. Defaults to 50. + +
+
+ +
+
+ +**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. + +
+
+
+
+ +
diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index 9c8f94b3..a592fee1 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -246,6 +246,8 @@ ClientTokenExchangeTypeEnum, ClientTokenVaultPrivilegedAccessWithCredentialId, ClientTokenVaultPrivilegedAccessWithPublicKey, + ConflictSchema, + ConflictSchemaError, ConnectedAccount, ConnectedAccountAccessTypeEnum, ConnectionAccessTokenUrloAuth1, @@ -999,6 +1001,8 @@ CreateLogStreamSplunkRequestBody, CreateLogStreamSumoRequestBody, CreateOrganizationAllConnectionResponseContent, + CreateOrganizationClientRequestItem, + CreateOrganizationClientsResponseContent, CreateOrganizationDiscoveryDomainResponseContent, CreateOrganizationInvitationResponseContent, CreateOrganizationResponseContent, @@ -2500,6 +2504,7 @@ GetNetworkAclsResponseContent, GetOrganizationAllConnectionResponseContent, GetOrganizationByNameResponseContent, + GetOrganizationClientResponseContent, GetOrganizationConnectionResponseContent, GetOrganizationDiscoveryDomainByNameResponseContent, GetOrganizationDiscoveryDomainResponseContent, @@ -2597,6 +2602,7 @@ ListNetworkAclsOffsetPaginatedResponseContent, ListOrganizationAllConnectionsOffsetPaginatedResponseContent, ListOrganizationClientGrantsOffsetPaginatedResponseContent, + ListOrganizationClientsResponseContent, ListOrganizationConnectionsOffsetPaginatedResponseContent, ListOrganizationDiscoveryDomainsResponseContent, ListOrganizationGroupRolesResponseContent, @@ -2606,6 +2612,7 @@ ListOrganizationMemberRoleSourceGroupsResponseContent, ListOrganizationMemberRolesOffsetPaginatedResponseContent, ListOrganizationMembersPaginatedResponseContent, + ListOrganizationRoleGroupsResponseContent, ListOrganizationRoleMembersResponseContent, ListOrganizationsPaginatedResponseContent, ListPhoneTemplatesResponseContent, @@ -2615,7 +2622,8 @@ ListRoleGroupsResponseContent, ListRolePermissionsOffsetPaginatedResponseContent, ListRoleUsersPaginatedResponseContent, - ListRolesOffsetPaginatedResponseContent, + ListRolesCheckpointPaginatedResponseContent, + ListRolesResponseContent, ListRulesOffsetPaginatedResponseContent, ListScimConfigurationsResponseContent, ListSelfServiceProfileCustomTextResponseContent, @@ -2713,6 +2721,8 @@ NetworkAclsResponseContent, NotFoundErrorBody, NotFoundErrorBodyError, + NotFoundSchema, + NotFoundSchemaError, OauthScope, Organization, OrganizationAccessLevelEnum, @@ -2720,7 +2730,11 @@ OrganizationAllConnectionPost, OrganizationBranding, OrganizationBrandingColors, + OrganizationClient, + OrganizationClientAssociation, OrganizationClientGrant, + OrganizationClientMetadata, + OrganizationClientMetadataOrganizationUsageEnum, OrganizationConnection, OrganizationConnectionInformation, OrganizationDiscoveryDomain, @@ -2825,7 +2839,9 @@ ResourceServerVerificationKeyPemCertificate, RevokedSigningKeysResponseContent, Role, + RoleGroup, RoleMember, + RoleTypeEnum, RoleUser, RollbackActionModuleResponseContent, RotateClientSecretResponseContent, @@ -3060,6 +3076,7 @@ UpdateLogStreamResponseContent, UpdateNetworkAclResponseContent, UpdateOrganizationAllConnectionResponseContent, + UpdateOrganizationClientResponseContent, UpdateOrganizationConnectionResponseContent, UpdateOrganizationDiscoveryDomainResponseContent, UpdateOrganizationResponseContent, @@ -3207,9 +3224,9 @@ from .client import AsyncAuth0, Auth0 from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest - from .version import __version__ from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient from .token_provider import AsyncTokenProvider, TokenProvider + from .version import __version__ _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", @@ -3457,6 +3474,8 @@ "ClientTokenVaultPrivilegedAccessWithCredentialId": ".types", "ClientTokenVaultPrivilegedAccessWithPublicKey": ".types", "ConflictError": ".errors", + "ConflictSchema": ".types", + "ConflictSchemaError": ".types", "ConnectedAccount": ".types", "ConnectedAccountAccessTypeEnum": ".types", "ConnectionAccessTokenUrloAuth1": ".types", @@ -4211,6 +4230,8 @@ "CreateLogStreamSplunkRequestBody": ".types", "CreateLogStreamSumoRequestBody": ".types", "CreateOrganizationAllConnectionResponseContent": ".types", + "CreateOrganizationClientRequestItem": ".types", + "CreateOrganizationClientsResponseContent": ".types", "CreateOrganizationDiscoveryDomainResponseContent": ".types", "CreateOrganizationInvitationResponseContent": ".types", "CreateOrganizationResponseContent": ".types", @@ -4254,9 +4275,9 @@ "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", - "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainProvisioningTypeEnum": ".types", "CustomDomainStatusFilterEnum": ".types", "CustomDomainTlsPolicyEnum": ".types", @@ -5717,6 +5738,7 @@ "GetNetworkAclsResponseContent": ".types", "GetOrganizationAllConnectionResponseContent": ".types", "GetOrganizationByNameResponseContent": ".types", + "GetOrganizationClientResponseContent": ".types", "GetOrganizationConnectionResponseContent": ".types", "GetOrganizationDiscoveryDomainByNameResponseContent": ".types", "GetOrganizationDiscoveryDomainResponseContent": ".types", @@ -5816,6 +5838,7 @@ "ListNetworkAclsOffsetPaginatedResponseContent": ".types", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent": ".types", "ListOrganizationClientGrantsOffsetPaginatedResponseContent": ".types", + "ListOrganizationClientsResponseContent": ".types", "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".types", "ListOrganizationDiscoveryDomainsResponseContent": ".types", "ListOrganizationGroupRolesResponseContent": ".types", @@ -5825,6 +5848,7 @@ "ListOrganizationMemberRoleSourceGroupsResponseContent": ".types", "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", "ListOrganizationMembersPaginatedResponseContent": ".types", + "ListOrganizationRoleGroupsResponseContent": ".types", "ListOrganizationRoleMembersResponseContent": ".types", "ListOrganizationsPaginatedResponseContent": ".types", "ListPhoneTemplatesResponseContent": ".types", @@ -5834,7 +5858,8 @@ "ListRoleGroupsResponseContent": ".types", "ListRolePermissionsOffsetPaginatedResponseContent": ".types", "ListRoleUsersPaginatedResponseContent": ".types", - "ListRolesOffsetPaginatedResponseContent": ".types", + "ListRolesCheckpointPaginatedResponseContent": ".types", + "ListRolesResponseContent": ".types", "ListRulesOffsetPaginatedResponseContent": ".types", "ListScimConfigurationsResponseContent": ".types", "ListSelfServiceProfileCustomTextResponseContent": ".types", @@ -5934,6 +5959,8 @@ "NotFoundError": ".errors", "NotFoundErrorBody": ".types", "NotFoundErrorBodyError": ".types", + "NotFoundSchema": ".types", + "NotFoundSchemaError": ".types", "OauthScope": ".types", "Organization": ".types", "OrganizationAccessLevelEnum": ".types", @@ -5941,7 +5968,11 @@ "OrganizationAllConnectionPost": ".types", "OrganizationBranding": ".types", "OrganizationBrandingColors": ".types", + "OrganizationClient": ".types", + "OrganizationClientAssociation": ".types", "OrganizationClientGrant": ".types", + "OrganizationClientMetadata": ".types", + "OrganizationClientMetadataOrganizationUsageEnum": ".types", "OrganizationConnection": ".types", "OrganizationConnectionInformation": ".types", "OrganizationDiscoveryDomain": ".types", @@ -6048,7 +6079,9 @@ "ResourceServerVerificationKeyPemCertificate": ".types", "RevokedSigningKeysResponseContent": ".types", "Role": ".types", + "RoleGroup": ".types", "RoleMember": ".types", + "RoleTypeEnum": ".types", "RoleUser": ".types", "RollbackActionModuleResponseContent": ".types", "RotateClientSecretResponseContent": ".types", @@ -6287,6 +6320,7 @@ "UpdateLogStreamResponseContent": ".types", "UpdateNetworkAclResponseContent": ".types", "UpdateOrganizationAllConnectionResponseContent": ".types", + "UpdateOrganizationClientResponseContent": ".types", "UpdateOrganizationConnectionResponseContent": ".types", "UpdateOrganizationDiscoveryDomainResponseContent": ".types", "UpdateOrganizationResponseContent": ".types", @@ -6685,6 +6719,8 @@ def __dir__(): "ClientTokenVaultPrivilegedAccessWithCredentialId", "ClientTokenVaultPrivilegedAccessWithPublicKey", "ConflictError", + "ConflictSchema", + "ConflictSchemaError", "ConnectedAccount", "ConnectedAccountAccessTypeEnum", "ConnectionAccessTokenUrloAuth1", @@ -7439,6 +7475,8 @@ def __dir__(): "CreateLogStreamSplunkRequestBody", "CreateLogStreamSumoRequestBody", "CreateOrganizationAllConnectionResponseContent", + "CreateOrganizationClientRequestItem", + "CreateOrganizationClientsResponseContent", "CreateOrganizationDiscoveryDomainResponseContent", "CreateOrganizationInvitationResponseContent", "CreateOrganizationResponseContent", @@ -7482,9 +7520,9 @@ def __dir__(): "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", - "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", + "CustomDomainHeader", "CustomDomainProvisioningTypeEnum", "CustomDomainStatusFilterEnum", "CustomDomainTlsPolicyEnum", @@ -8945,6 +8983,7 @@ def __dir__(): "GetNetworkAclsResponseContent", "GetOrganizationAllConnectionResponseContent", "GetOrganizationByNameResponseContent", + "GetOrganizationClientResponseContent", "GetOrganizationConnectionResponseContent", "GetOrganizationDiscoveryDomainByNameResponseContent", "GetOrganizationDiscoveryDomainResponseContent", @@ -9044,6 +9083,7 @@ def __dir__(): "ListNetworkAclsOffsetPaginatedResponseContent", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent", "ListOrganizationClientGrantsOffsetPaginatedResponseContent", + "ListOrganizationClientsResponseContent", "ListOrganizationConnectionsOffsetPaginatedResponseContent", "ListOrganizationDiscoveryDomainsResponseContent", "ListOrganizationGroupRolesResponseContent", @@ -9053,6 +9093,7 @@ def __dir__(): "ListOrganizationMemberRoleSourceGroupsResponseContent", "ListOrganizationMemberRolesOffsetPaginatedResponseContent", "ListOrganizationMembersPaginatedResponseContent", + "ListOrganizationRoleGroupsResponseContent", "ListOrganizationRoleMembersResponseContent", "ListOrganizationsPaginatedResponseContent", "ListPhoneTemplatesResponseContent", @@ -9062,7 +9103,8 @@ def __dir__(): "ListRoleGroupsResponseContent", "ListRolePermissionsOffsetPaginatedResponseContent", "ListRoleUsersPaginatedResponseContent", - "ListRolesOffsetPaginatedResponseContent", + "ListRolesCheckpointPaginatedResponseContent", + "ListRolesResponseContent", "ListRulesOffsetPaginatedResponseContent", "ListScimConfigurationsResponseContent", "ListSelfServiceProfileCustomTextResponseContent", @@ -9162,6 +9204,8 @@ def __dir__(): "NotFoundError", "NotFoundErrorBody", "NotFoundErrorBodyError", + "NotFoundSchema", + "NotFoundSchemaError", "OauthScope", "Organization", "OrganizationAccessLevelEnum", @@ -9169,7 +9213,11 @@ def __dir__(): "OrganizationAllConnectionPost", "OrganizationBranding", "OrganizationBrandingColors", + "OrganizationClient", + "OrganizationClientAssociation", "OrganizationClientGrant", + "OrganizationClientMetadata", + "OrganizationClientMetadataOrganizationUsageEnum", "OrganizationConnection", "OrganizationConnectionInformation", "OrganizationDiscoveryDomain", @@ -9276,7 +9324,9 @@ def __dir__(): "ResourceServerVerificationKeyPemCertificate", "RevokedSigningKeysResponseContent", "Role", + "RoleGroup", "RoleMember", + "RoleTypeEnum", "RoleUser", "RollbackActionModuleResponseContent", "RotateClientSecretResponseContent", @@ -9515,6 +9565,7 @@ def __dir__(): "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", + "UpdateOrganizationClientResponseContent", "UpdateOrganizationConnectionResponseContent", "UpdateOrganizationDiscoveryDomainResponseContent", "UpdateOrganizationResponseContent", diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py index fd991f52..abce2c81 100644 --- a/src/auth0/management/core/client_wrapper.py +++ b/src/auth0/management/core/client_wrapper.py @@ -1,11 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -# Modified by Auth0 to use Auth0 telemetry format with dynamic versioning -import base64 -import platform -import sys import typing -from json import dumps import httpx from .http_client import AsyncHttpClient, HttpClient @@ -35,18 +30,7 @@ def __init__( self._logging = logging def get_headers(self) -> typing.Dict[str, str]: - py_version = platform.python_version() - version = sys.modules["auth0"].__version__ - - auth0_client = dumps({ - "name": "auth0-python", - "version": version, - "env": {"python": py_version} - }).encode("utf-8") - headers: typing.Dict[str, str] = { - "User-Agent": f"Python/{py_version}", - "Auth0-Client": base64.b64encode(auth0_client).decode(), **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Bearer {self._get_token()}" diff --git a/src/auth0/management/organizations/__init__.py b/src/auth0/management/organizations/__init__.py index 8ab68f18..079f5c6d 100644 --- a/src/auth0/management/organizations/__init__.py +++ b/src/auth0/management/organizations/__init__.py @@ -8,6 +8,7 @@ if typing.TYPE_CHECKING: from . import ( client_grants, + clients, connections, discovery_domains, enabled_connections, @@ -18,6 +19,7 @@ ) _dynamic_imports: typing.Dict[str, str] = { "client_grants": ".client_grants", + "clients": ".clients", "connections": ".connections", "discovery_domains": ".discovery_domains", "enabled_connections": ".enabled_connections", @@ -51,6 +53,7 @@ def __dir__(): __all__ = [ "client_grants", + "clients", "connections", "discovery_domains", "enabled_connections", diff --git a/src/auth0/management/organizations/client.py b/src/auth0/management/organizations/client.py index 3565568c..715195bd 100644 --- a/src/auth0/management/organizations/client.py +++ b/src/auth0/management/organizations/client.py @@ -23,6 +23,7 @@ if typing.TYPE_CHECKING: from .client_grants.client import AsyncClientGrantsClient, ClientGrantsClient + from .clients.client import AsyncClientsClient, ClientsClient from .connections.client import AsyncConnectionsClient, ConnectionsClient from .discovery_domains.client import AsyncDiscoveryDomainsClient, DiscoveryDomainsClient from .enabled_connections.client import AsyncEnabledConnectionsClient, EnabledConnectionsClient @@ -39,6 +40,7 @@ def __init__(self, *, client_wrapper: SyncClientWrapper): self._raw_client = RawOrganizationsClient(client_wrapper=client_wrapper) self._client_wrapper = client_wrapper self._client_grants: typing.Optional[ClientGrantsClient] = None + self._clients: typing.Optional[ClientsClient] = None self._connections: typing.Optional[ConnectionsClient] = None self._discovery_domains: typing.Optional[DiscoveryDomainsClient] = None self._enabled_connections: typing.Optional[EnabledConnectionsClient] = None @@ -64,6 +66,7 @@ def list( from_: typing.Optional[str] = None, take: typing.Optional[int] = 50, sort: typing.Optional[str] = None, + include_client_association_for: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None, ) -> SyncPager[Organization, ListOrganizationsPaginatedResponseContent]: """ @@ -96,6 +99,9 @@ def list( sort : typing.Optional[str] Field to sort by. Use field:order where order is 1 for ascending and -1 for descending. e.g. created_at:1. We currently support sorting by the following fields: name, display_name and created_at. + include_client_association_for : typing.Optional[str] + Client ID. When set, each returned organization that has an association with this client gains a client object describing it; organizations without one omit the field. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -115,6 +121,7 @@ def list( from_="from", take=1, sort="sort", + include_client_association_for="include_client_association_for", ) for item in response: yield item @@ -122,7 +129,13 @@ def list( for page in response.iter_pages(): yield page """ - return self._raw_client.list(from_=from_, take=take, sort=sort, request_options=request_options) + return self._raw_client.list( + from_=from_, + take=take, + sort=sort, + include_client_association_for=include_client_association_for, + request_options=request_options, + ) def create( self, @@ -134,6 +147,7 @@ def create( enabled_connections: typing.Optional[typing.Sequence[ConnectionForOrganization]] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateOrganizationResponseContent: """ @@ -158,6 +172,9 @@ def create( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -185,6 +202,7 @@ def create( enabled_connections=enabled_connections, token_quota=token_quota, third_party_client_access=third_party_client_access, + is_app_entitlement_active=is_app_entitlement_active, request_options=request_options, ) return _response.data @@ -297,6 +315,7 @@ def update( metadata: typing.Optional[OrganizationMetadata] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> UpdateOrganizationResponseContent: """ @@ -321,6 +340,9 @@ def update( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -348,6 +370,7 @@ def update( metadata=metadata, token_quota=token_quota, third_party_client_access=third_party_client_access, + is_app_entitlement_active=is_app_entitlement_active, request_options=request_options, ) return _response.data @@ -360,6 +383,14 @@ def client_grants(self): self._client_grants = ClientGrantsClient(client_wrapper=self._client_wrapper) return self._client_grants + @property + def clients(self): + if self._clients is None: + from .clients.client import ClientsClient # noqa: E402 + + self._clients = ClientsClient(client_wrapper=self._client_wrapper) + return self._clients + @property def connections(self): if self._connections is None: @@ -422,6 +453,7 @@ def __init__(self, *, client_wrapper: AsyncClientWrapper): self._raw_client = AsyncRawOrganizationsClient(client_wrapper=client_wrapper) self._client_wrapper = client_wrapper self._client_grants: typing.Optional[AsyncClientGrantsClient] = None + self._clients: typing.Optional[AsyncClientsClient] = None self._connections: typing.Optional[AsyncConnectionsClient] = None self._discovery_domains: typing.Optional[AsyncDiscoveryDomainsClient] = None self._enabled_connections: typing.Optional[AsyncEnabledConnectionsClient] = None @@ -447,6 +479,7 @@ async def list( from_: typing.Optional[str] = None, take: typing.Optional[int] = 50, sort: typing.Optional[str] = None, + include_client_association_for: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncPager[Organization, ListOrganizationsPaginatedResponseContent]: """ @@ -479,6 +512,9 @@ async def list( sort : typing.Optional[str] Field to sort by. Use field:order where order is 1 for ascending and -1 for descending. e.g. created_at:1. We currently support sorting by the following fields: name, display_name and created_at. + include_client_association_for : typing.Optional[str] + Client ID. When set, each returned organization that has an association with this client gains a client object describing it; organizations without one omit the field. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -503,6 +539,7 @@ async def main() -> None: from_="from", take=1, sort="sort", + include_client_association_for="include_client_association_for", ) async for item in response: yield item @@ -514,7 +551,13 @@ async def main() -> None: asyncio.run(main()) """ - return await self._raw_client.list(from_=from_, take=take, sort=sort, request_options=request_options) + return await self._raw_client.list( + from_=from_, + take=take, + sort=sort, + include_client_association_for=include_client_association_for, + request_options=request_options, + ) async def create( self, @@ -526,6 +569,7 @@ async def create( enabled_connections: typing.Optional[typing.Sequence[ConnectionForOrganization]] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateOrganizationResponseContent: """ @@ -550,6 +594,9 @@ async def create( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -585,6 +632,7 @@ async def main() -> None: enabled_connections=enabled_connections, token_quota=token_quota, third_party_client_access=third_party_client_access, + is_app_entitlement_active=is_app_entitlement_active, request_options=request_options, ) return _response.data @@ -721,6 +769,7 @@ async def update( metadata: typing.Optional[OrganizationMetadata] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> UpdateOrganizationResponseContent: """ @@ -745,6 +794,9 @@ async def update( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -780,6 +832,7 @@ async def main() -> None: metadata=metadata, token_quota=token_quota, third_party_client_access=third_party_client_access, + is_app_entitlement_active=is_app_entitlement_active, request_options=request_options, ) return _response.data @@ -792,6 +845,14 @@ def client_grants(self): self._client_grants = AsyncClientGrantsClient(client_wrapper=self._client_wrapper) return self._client_grants + @property + def clients(self): + if self._clients is None: + from .clients.client import AsyncClientsClient # noqa: E402 + + self._clients = AsyncClientsClient(client_wrapper=self._client_wrapper) + return self._clients + @property def connections(self): if self._connections is None: diff --git a/src/auth0/management/organizations/clients/__init__.py b/src/auth0/management/organizations/clients/__init__.py new file mode 100644 index 00000000..5cde0202 --- /dev/null +++ b/src/auth0/management/organizations/clients/__init__.py @@ -0,0 +1,4 @@ +# This file was auto-generated by Fern from our API Definition. + +# isort: skip_file + diff --git a/src/auth0/management/organizations/clients/client.py b/src/auth0/management/organizations/clients/client.py new file mode 100644 index 00000000..c96c79e0 --- /dev/null +++ b/src/auth0/management/organizations/clients/client.py @@ -0,0 +1,532 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper +from ...core.pagination import AsyncPager, SyncPager +from ...core.request_options import RequestOptions +from ...types.create_organization_client_request_item import CreateOrganizationClientRequestItem +from ...types.create_organization_clients_response_content import CreateOrganizationClientsResponseContent +from ...types.get_organization_client_response_content import GetOrganizationClientResponseContent +from ...types.list_organization_clients_response_content import ListOrganizationClientsResponseContent +from ...types.organization_client import OrganizationClient +from ...types.update_organization_client_response_content import UpdateOrganizationClientResponseContent +from .raw_client import AsyncRawClientsClient, RawClientsClient + +# this is used as the default value for optional parameters +OMIT = typing.cast(typing.Any, ...) + + +class ClientsClient: + def __init__(self, *, client_wrapper: SyncClientWrapper): + self._raw_client = RawClientsClient(client_wrapper=client_wrapper) + + @property + def with_raw_response(self) -> RawClientsClient: + """ + Retrieves a raw implementation of this client that returns raw responses. + + Returns + ------- + RawClientsClient + """ + return self._raw_client + + def list( + self, + id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> SyncPager[OrganizationClient, ListOrganizationClientsResponseContent]: + """ + List all clients associated with an organization, using checkpoint pagination. + + + Parameters + ---------- + id : str + ID of the organization. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. Values greater than the maximum of 100 are capped at 100. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + SyncPager[OrganizationClient, ListOrganizationClientsResponseContent] + Organization clients successfully retrieved. + + Examples + -------- + from auth0 import Auth0 + + client = Auth0( + token="YOUR_TOKEN", + ) + response = client.organizations.clients.list( + id="id", + from_="from", + take=1, + ) + for item in response: + yield item + # alternatively, you can paginate page-by-page + for page in response.iter_pages(): + yield page + """ + return self._raw_client.list(id, from_=from_, take=take, request_options=request_options) + + def create( + self, + id: str, + *, + clients: typing.Sequence[CreateOrganizationClientRequestItem], + request_options: typing.Optional[RequestOptions] = None, + ) -> CreateOrganizationClientsResponseContent: + """ + Associate one or more clients with an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[CreateOrganizationClientRequestItem] + List of clients to associate with the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + CreateOrganizationClientsResponseContent + Organization clients successfully associated. + + Examples + -------- + from auth0 import Auth0, CreateOrganizationClientRequestItem + + client = Auth0( + token="YOUR_TOKEN", + ) + client.organizations.clients.create( + id="id", + clients=[ + CreateOrganizationClientRequestItem( + client_id="client_id", + use_for_member_access=True, + ) + ], + ) + """ + _response = self._raw_client.create(id, clients=clients, request_options=request_options) + return _response.data + + def delete( + self, id: str, *, clients: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None + ) -> None: + """ + Remove one or more client associations from an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[str] + List of client IDs to disassociate from the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + None + + Examples + -------- + from auth0 import Auth0 + + client = Auth0( + token="YOUR_TOKEN", + ) + client.organizations.clients.delete( + id="id", + clients=["clients"], + ) + """ + _response = self._raw_client.delete(id, clients=clients, request_options=request_options) + return _response.data + + def get( + self, id: str, client_id: str, *, request_options: typing.Optional[RequestOptions] = None + ) -> GetOrganizationClientResponseContent: + """ + Get a specific client association for an organization. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to retrieve. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + GetOrganizationClientResponseContent + Organization client association successfully retrieved. + + Examples + -------- + from auth0 import Auth0 + + client = Auth0( + token="YOUR_TOKEN", + ) + client.organizations.clients.get( + id="id", + client_id="client_id", + ) + """ + _response = self._raw_client.get(id, client_id, request_options=request_options) + return _response.data + + def update( + self, + id: str, + client_id: str, + *, + use_for_member_access: typing.Optional[bool] = OMIT, + request_options: typing.Optional[RequestOptions] = None, + ) -> UpdateOrganizationClientResponseContent: + """ + Update an organization client association. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to update. + + use_for_member_access : typing.Optional[bool] + Whether this client is used for member access to the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + UpdateOrganizationClientResponseContent + Organization client successfully updated. + + Examples + -------- + from auth0 import Auth0 + + client = Auth0( + token="YOUR_TOKEN", + ) + client.organizations.clients.update( + id="id", + client_id="client_id", + ) + """ + _response = self._raw_client.update( + id, client_id, use_for_member_access=use_for_member_access, request_options=request_options + ) + return _response.data + + +class AsyncClientsClient: + def __init__(self, *, client_wrapper: AsyncClientWrapper): + self._raw_client = AsyncRawClientsClient(client_wrapper=client_wrapper) + + @property + def with_raw_response(self) -> AsyncRawClientsClient: + """ + Retrieves a raw implementation of this client that returns raw responses. + + Returns + ------- + AsyncRawClientsClient + """ + return self._raw_client + + async def list( + self, + id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> AsyncPager[OrganizationClient, ListOrganizationClientsResponseContent]: + """ + List all clients associated with an organization, using checkpoint pagination. + + + Parameters + ---------- + id : str + ID of the organization. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. Values greater than the maximum of 100 are capped at 100. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncPager[OrganizationClient, ListOrganizationClientsResponseContent] + Organization clients successfully retrieved. + + Examples + -------- + import asyncio + + from auth0 import AsyncAuth0 + + client = AsyncAuth0( + token="YOUR_TOKEN", + ) + + + async def main() -> None: + response = await client.organizations.clients.list( + id="id", + from_="from", + take=1, + ) + async for item in response: + yield item + + # alternatively, you can paginate page-by-page + async for page in response.iter_pages(): + yield page + + + asyncio.run(main()) + """ + return await self._raw_client.list(id, from_=from_, take=take, request_options=request_options) + + async def create( + self, + id: str, + *, + clients: typing.Sequence[CreateOrganizationClientRequestItem], + request_options: typing.Optional[RequestOptions] = None, + ) -> CreateOrganizationClientsResponseContent: + """ + Associate one or more clients with an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[CreateOrganizationClientRequestItem] + List of clients to associate with the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + CreateOrganizationClientsResponseContent + Organization clients successfully associated. + + Examples + -------- + import asyncio + + from auth0 import AsyncAuth0, CreateOrganizationClientRequestItem + + client = AsyncAuth0( + token="YOUR_TOKEN", + ) + + + async def main() -> None: + await client.organizations.clients.create( + id="id", + clients=[ + CreateOrganizationClientRequestItem( + client_id="client_id", + use_for_member_access=True, + ) + ], + ) + + + asyncio.run(main()) + """ + _response = await self._raw_client.create(id, clients=clients, request_options=request_options) + return _response.data + + async def delete( + self, id: str, *, clients: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None + ) -> None: + """ + Remove one or more client associations from an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[str] + List of client IDs to disassociate from the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + None + + Examples + -------- + import asyncio + + from auth0 import AsyncAuth0 + + client = AsyncAuth0( + token="YOUR_TOKEN", + ) + + + async def main() -> None: + await client.organizations.clients.delete( + id="id", + clients=["clients"], + ) + + + asyncio.run(main()) + """ + _response = await self._raw_client.delete(id, clients=clients, request_options=request_options) + return _response.data + + async def get( + self, id: str, client_id: str, *, request_options: typing.Optional[RequestOptions] = None + ) -> GetOrganizationClientResponseContent: + """ + Get a specific client association for an organization. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to retrieve. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + GetOrganizationClientResponseContent + Organization client association successfully retrieved. + + Examples + -------- + import asyncio + + from auth0 import AsyncAuth0 + + client = AsyncAuth0( + token="YOUR_TOKEN", + ) + + + async def main() -> None: + await client.organizations.clients.get( + id="id", + client_id="client_id", + ) + + + asyncio.run(main()) + """ + _response = await self._raw_client.get(id, client_id, request_options=request_options) + return _response.data + + async def update( + self, + id: str, + client_id: str, + *, + use_for_member_access: typing.Optional[bool] = OMIT, + request_options: typing.Optional[RequestOptions] = None, + ) -> UpdateOrganizationClientResponseContent: + """ + Update an organization client association. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to update. + + use_for_member_access : typing.Optional[bool] + Whether this client is used for member access to the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + UpdateOrganizationClientResponseContent + Organization client successfully updated. + + Examples + -------- + import asyncio + + from auth0 import AsyncAuth0 + + client = AsyncAuth0( + token="YOUR_TOKEN", + ) + + + async def main() -> None: + await client.organizations.clients.update( + id="id", + client_id="client_id", + ) + + + asyncio.run(main()) + """ + _response = await self._raw_client.update( + id, client_id, use_for_member_access=use_for_member_access, request_options=request_options + ) + return _response.data diff --git a/src/auth0/management/organizations/clients/raw_client.py b/src/auth0/management/organizations/clients/raw_client.py new file mode 100644 index 00000000..e581a9b6 --- /dev/null +++ b/src/auth0/management/organizations/clients/raw_client.py @@ -0,0 +1,1181 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing +from json.decoder import JSONDecodeError + +from ...core.api_error import ApiError +from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper +from ...core.http_response import AsyncHttpResponse, HttpResponse +from ...core.jsonable_encoder import encode_path_param +from ...core.pagination import AsyncPager, SyncPager +from ...core.parse_error import ParsingError +from ...core.pydantic_utilities import parse_obj_as +from ...core.request_options import RequestOptions +from ...core.serialization import convert_and_respect_annotation_metadata +from ...errors.bad_request_error import BadRequestError +from ...errors.conflict_error import ConflictError +from ...errors.forbidden_error import ForbiddenError +from ...errors.not_found_error import NotFoundError +from ...errors.too_many_requests_error import TooManyRequestsError +from ...errors.unauthorized_error import UnauthorizedError +from ...types.create_organization_client_request_item import CreateOrganizationClientRequestItem +from ...types.create_organization_clients_response_content import CreateOrganizationClientsResponseContent +from ...types.get_organization_client_response_content import GetOrganizationClientResponseContent +from ...types.list_organization_clients_response_content import ListOrganizationClientsResponseContent +from ...types.organization_client import OrganizationClient +from ...types.update_organization_client_response_content import UpdateOrganizationClientResponseContent +from pydantic import ValidationError + +# this is used as the default value for optional parameters +OMIT = typing.cast(typing.Any, ...) + + +class RawClientsClient: + def __init__(self, *, client_wrapper: SyncClientWrapper): + self._client_wrapper = client_wrapper + + def list( + self, + id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> SyncPager[OrganizationClient, ListOrganizationClientsResponseContent]: + """ + List all clients associated with an organization, using checkpoint pagination. + + + Parameters + ---------- + id : str + ID of the organization. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. Values greater than the maximum of 100 are capped at 100. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + SyncPager[OrganizationClient, ListOrganizationClientsResponseContent] + Organization clients successfully retrieved. + """ + _response = self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients", + method="GET", + params={ + "from": from_, + "take": take, + }, + request_options=request_options, + ) + try: + if 200 <= _response.status_code < 300: + _parsed_response = typing.cast( + ListOrganizationClientsResponseContent, + parse_obj_as( + type_=ListOrganizationClientsResponseContent, # type: ignore + object_=_response.json(), + ), + ) + _items = _parsed_response.clients + _parsed_next = _parsed_response.next + _has_next = _parsed_next is not None and _parsed_next != "" + _get_next = lambda: self.list( + id, + from_=_parsed_next, + take=take, + request_options=request_options, + ) + return SyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + def create( + self, + id: str, + *, + clients: typing.Sequence[CreateOrganizationClientRequestItem], + request_options: typing.Optional[RequestOptions] = None, + ) -> HttpResponse[CreateOrganizationClientsResponseContent]: + """ + Associate one or more clients with an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[CreateOrganizationClientRequestItem] + List of clients to associate with the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + HttpResponse[CreateOrganizationClientsResponseContent] + Organization clients successfully associated. + """ + _response = self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients", + method="POST", + json={ + "clients": convert_and_respect_annotation_metadata( + object_=clients, annotation=typing.Sequence[CreateOrganizationClientRequestItem], direction="write" + ), + }, + headers={ + "content-type": "application/json", + }, + request_options=request_options, + omit=OMIT, + ) + try: + if 200 <= _response.status_code < 300: + _data = typing.cast( + CreateOrganizationClientsResponseContent, + parse_obj_as( + type_=CreateOrganizationClientsResponseContent, # type: ignore + object_=_response.json(), + ), + ) + return HttpResponse(response=_response, data=_data) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 409: + raise ConflictError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + def delete( + self, id: str, *, clients: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None + ) -> HttpResponse[None]: + """ + Remove one or more client associations from an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[str] + List of client IDs to disassociate from the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + HttpResponse[None] + """ + _response = self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients", + method="DELETE", + json={ + "clients": clients, + }, + headers={ + "content-type": "application/json", + }, + request_options=request_options, + omit=OMIT, + ) + try: + if 200 <= _response.status_code < 300: + return HttpResponse(response=_response, data=None) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + def get( + self, id: str, client_id: str, *, request_options: typing.Optional[RequestOptions] = None + ) -> HttpResponse[GetOrganizationClientResponseContent]: + """ + Get a specific client association for an organization. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to retrieve. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + HttpResponse[GetOrganizationClientResponseContent] + Organization client association successfully retrieved. + """ + _response = self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients/{encode_path_param(client_id)}", + method="GET", + request_options=request_options, + ) + try: + if 200 <= _response.status_code < 300: + _data = typing.cast( + GetOrganizationClientResponseContent, + parse_obj_as( + type_=GetOrganizationClientResponseContent, # type: ignore + object_=_response.json(), + ), + ) + return HttpResponse(response=_response, data=_data) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + def update( + self, + id: str, + client_id: str, + *, + use_for_member_access: typing.Optional[bool] = OMIT, + request_options: typing.Optional[RequestOptions] = None, + ) -> HttpResponse[UpdateOrganizationClientResponseContent]: + """ + Update an organization client association. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to update. + + use_for_member_access : typing.Optional[bool] + Whether this client is used for member access to the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + HttpResponse[UpdateOrganizationClientResponseContent] + Organization client successfully updated. + """ + _response = self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients/{encode_path_param(client_id)}", + method="PATCH", + json={ + "use_for_member_access": use_for_member_access, + }, + headers={ + "content-type": "application/json", + }, + request_options=request_options, + omit=OMIT, + ) + try: + if 200 <= _response.status_code < 300: + _data = typing.cast( + UpdateOrganizationClientResponseContent, + parse_obj_as( + type_=UpdateOrganizationClientResponseContent, # type: ignore + object_=_response.json(), + ), + ) + return HttpResponse(response=_response, data=_data) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + +class AsyncRawClientsClient: + def __init__(self, *, client_wrapper: AsyncClientWrapper): + self._client_wrapper = client_wrapper + + async def list( + self, + id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> AsyncPager[OrganizationClient, ListOrganizationClientsResponseContent]: + """ + List all clients associated with an organization, using checkpoint pagination. + + + Parameters + ---------- + id : str + ID of the organization. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. Values greater than the maximum of 100 are capped at 100. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncPager[OrganizationClient, ListOrganizationClientsResponseContent] + Organization clients successfully retrieved. + """ + _response = await self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients", + method="GET", + params={ + "from": from_, + "take": take, + }, + request_options=request_options, + ) + try: + if 200 <= _response.status_code < 300: + _parsed_response = typing.cast( + ListOrganizationClientsResponseContent, + parse_obj_as( + type_=ListOrganizationClientsResponseContent, # type: ignore + object_=_response.json(), + ), + ) + _items = _parsed_response.clients + _parsed_next = _parsed_response.next + _has_next = _parsed_next is not None and _parsed_next != "" + + async def _get_next(): + return await self.list( + id, + from_=_parsed_next, + take=take, + request_options=request_options, + ) + + return AsyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + async def create( + self, + id: str, + *, + clients: typing.Sequence[CreateOrganizationClientRequestItem], + request_options: typing.Optional[RequestOptions] = None, + ) -> AsyncHttpResponse[CreateOrganizationClientsResponseContent]: + """ + Associate one or more clients with an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[CreateOrganizationClientRequestItem] + List of clients to associate with the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncHttpResponse[CreateOrganizationClientsResponseContent] + Organization clients successfully associated. + """ + _response = await self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients", + method="POST", + json={ + "clients": convert_and_respect_annotation_metadata( + object_=clients, annotation=typing.Sequence[CreateOrganizationClientRequestItem], direction="write" + ), + }, + headers={ + "content-type": "application/json", + }, + request_options=request_options, + omit=OMIT, + ) + try: + if 200 <= _response.status_code < 300: + _data = typing.cast( + CreateOrganizationClientsResponseContent, + parse_obj_as( + type_=CreateOrganizationClientsResponseContent, # type: ignore + object_=_response.json(), + ), + ) + return AsyncHttpResponse(response=_response, data=_data) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 409: + raise ConflictError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + async def delete( + self, id: str, *, clients: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None + ) -> AsyncHttpResponse[None]: + """ + Remove one or more client associations from an organization. + + Parameters + ---------- + id : str + ID of the organization. + + clients : typing.Sequence[str] + List of client IDs to disassociate from the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncHttpResponse[None] + """ + _response = await self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients", + method="DELETE", + json={ + "clients": clients, + }, + headers={ + "content-type": "application/json", + }, + request_options=request_options, + omit=OMIT, + ) + try: + if 200 <= _response.status_code < 300: + return AsyncHttpResponse(response=_response, data=None) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + async def get( + self, id: str, client_id: str, *, request_options: typing.Optional[RequestOptions] = None + ) -> AsyncHttpResponse[GetOrganizationClientResponseContent]: + """ + Get a specific client association for an organization. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to retrieve. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncHttpResponse[GetOrganizationClientResponseContent] + Organization client association successfully retrieved. + """ + _response = await self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients/{encode_path_param(client_id)}", + method="GET", + request_options=request_options, + ) + try: + if 200 <= _response.status_code < 300: + _data = typing.cast( + GetOrganizationClientResponseContent, + parse_obj_as( + type_=GetOrganizationClientResponseContent, # type: ignore + object_=_response.json(), + ), + ) + return AsyncHttpResponse(response=_response, data=_data) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + async def update( + self, + id: str, + client_id: str, + *, + use_for_member_access: typing.Optional[bool] = OMIT, + request_options: typing.Optional[RequestOptions] = None, + ) -> AsyncHttpResponse[UpdateOrganizationClientResponseContent]: + """ + Update an organization client association. + + Parameters + ---------- + id : str + ID of the organization. + + client_id : str + ID of the client association to update. + + use_for_member_access : typing.Optional[bool] + Whether this client is used for member access to the organization. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncHttpResponse[UpdateOrganizationClientResponseContent] + Organization client successfully updated. + """ + _response = await self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(id)}/clients/{encode_path_param(client_id)}", + method="PATCH", + json={ + "use_for_member_access": use_for_member_access, + }, + headers={ + "content-type": "application/json", + }, + request_options=request_options, + omit=OMIT, + ) + try: + if 200 <= _response.status_code < 300: + _data = typing.cast( + UpdateOrganizationClientResponseContent, + parse_obj_as( + type_=UpdateOrganizationClientResponseContent, # type: ignore + object_=_response.json(), + ), + ) + return AsyncHttpResponse(response=_response, data=_data) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) diff --git a/src/auth0/management/organizations/enabled_connections/raw_client.py b/src/auth0/management/organizations/enabled_connections/raw_client.py index da1564d3..01c7a854 100644 --- a/src/auth0/management/organizations/enabled_connections/raw_client.py +++ b/src/auth0/management/organizations/enabled_connections/raw_client.py @@ -12,6 +12,7 @@ from ...core.pydantic_utilities import parse_obj_as from ...core.request_options import RequestOptions from ...errors.bad_request_error import BadRequestError +from ...errors.conflict_error import ConflictError from ...errors.forbidden_error import ForbiddenError from ...errors.not_found_error import NotFoundError from ...errors.too_many_requests_error import TooManyRequestsError @@ -271,6 +272,17 @@ def add( ), ), ) + if _response.status_code == 409: + raise ConflictError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) if _response.status_code == 429: raise TooManyRequestsError( headers=dict(_response.headers), @@ -848,6 +860,17 @@ async def add( ), ), ) + if _response.status_code == 409: + raise ConflictError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) if _response.status_code == 429: raise TooManyRequestsError( headers=dict(_response.headers), diff --git a/src/auth0/management/organizations/raw_client.py b/src/auth0/management/organizations/raw_client.py index 33ff2b7a..0b41544b 100644 --- a/src/auth0/management/organizations/raw_client.py +++ b/src/auth0/management/organizations/raw_client.py @@ -46,6 +46,7 @@ def list( from_: typing.Optional[str] = None, take: typing.Optional[int] = 50, sort: typing.Optional[str] = None, + include_client_association_for: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None, ) -> SyncPager[Organization, ListOrganizationsPaginatedResponseContent]: """ @@ -78,6 +79,9 @@ def list( sort : typing.Optional[str] Field to sort by. Use field:order where order is 1 for ascending and -1 for descending. e.g. created_at:1. We currently support sorting by the following fields: name, display_name and created_at. + include_client_association_for : typing.Optional[str] + Client ID. When set, each returned organization that has an association with this client gains a client object describing it; organizations without one omit the field. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -93,6 +97,7 @@ def list( "from": from_, "take": take, "sort": sort, + "include_client_association_for": include_client_association_for, }, request_options=request_options, ) @@ -112,6 +117,7 @@ def list( from_=_parsed_next, take=take, sort=sort, + include_client_association_for=include_client_association_for, request_options=request_options, ) return SyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) @@ -178,6 +184,7 @@ def create( enabled_connections: typing.Optional[typing.Sequence[ConnectionForOrganization]] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[CreateOrganizationResponseContent]: """ @@ -202,6 +209,9 @@ def create( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -229,6 +239,7 @@ def create( object_=token_quota, annotation=CreateTokenQuota, direction="write" ), "third_party_client_access": third_party_client_access, + "is_app_entitlement_active": is_app_entitlement_active, }, headers={ "content-type": "application/json", @@ -606,6 +617,7 @@ def update( metadata: typing.Optional[OrganizationMetadata] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[UpdateOrganizationResponseContent]: """ @@ -630,6 +642,9 @@ def update( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -652,6 +667,7 @@ def update( object_=token_quota, annotation=typing.Optional[UpdateTokenQuota], direction="write" ), "third_party_client_access": third_party_client_access, + "is_app_entitlement_active": is_app_entitlement_active, }, headers={ "content-type": "application/json", @@ -733,6 +749,7 @@ async def list( from_: typing.Optional[str] = None, take: typing.Optional[int] = 50, sort: typing.Optional[str] = None, + include_client_association_for: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncPager[Organization, ListOrganizationsPaginatedResponseContent]: """ @@ -765,6 +782,9 @@ async def list( sort : typing.Optional[str] Field to sort by. Use field:order where order is 1 for ascending and -1 for descending. e.g. created_at:1. We currently support sorting by the following fields: name, display_name and created_at. + include_client_association_for : typing.Optional[str] + Client ID. When set, each returned organization that has an association with this client gains a client object describing it; organizations without one omit the field. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -780,6 +800,7 @@ async def list( "from": from_, "take": take, "sort": sort, + "include_client_association_for": include_client_association_for, }, request_options=request_options, ) @@ -801,6 +822,7 @@ async def _get_next(): from_=_parsed_next, take=take, sort=sort, + include_client_association_for=include_client_association_for, request_options=request_options, ) @@ -868,6 +890,7 @@ async def create( enabled_connections: typing.Optional[typing.Sequence[ConnectionForOrganization]] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[CreateOrganizationResponseContent]: """ @@ -892,6 +915,9 @@ async def create( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -919,6 +945,7 @@ async def create( object_=token_quota, annotation=CreateTokenQuota, direction="write" ), "third_party_client_access": third_party_client_access, + "is_app_entitlement_active": is_app_entitlement_active, }, headers={ "content-type": "application/json", @@ -1298,6 +1325,7 @@ async def update( metadata: typing.Optional[OrganizationMetadata] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = OMIT, + is_app_entitlement_active: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[UpdateOrganizationResponseContent]: """ @@ -1322,6 +1350,9 @@ async def update( third_party_client_access : typing.Optional[OrganizationThirdPartyClientAccessEnum] + is_app_entitlement_active : typing.Optional[bool] + Whether app entitlement is active for this organization. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -1344,6 +1375,7 @@ async def update( object_=token_quota, annotation=typing.Optional[UpdateTokenQuota], direction="write" ), "third_party_client_access": third_party_client_access, + "is_app_entitlement_active": is_app_entitlement_active, }, headers={ "content-type": "application/json", diff --git a/src/auth0/management/organizations/roles/__init__.py b/src/auth0/management/organizations/roles/__init__.py index 6184be4a..e140c98d 100644 --- a/src/auth0/management/organizations/roles/__init__.py +++ b/src/auth0/management/organizations/roles/__init__.py @@ -6,8 +6,8 @@ from importlib import import_module if typing.TYPE_CHECKING: - from . import members -_dynamic_imports: typing.Dict[str, str] = {"members": ".members"} + from . import groups, members +_dynamic_imports: typing.Dict[str, str] = {"groups": ".groups", "members": ".members"} def __getattr__(attr_name: str) -> typing.Any: @@ -31,4 +31,4 @@ def __dir__(): return sorted(lazy_attrs) -__all__ = ["members"] +__all__ = ["groups", "members"] diff --git a/src/auth0/management/organizations/roles/client.py b/src/auth0/management/organizations/roles/client.py index aea9f771..86b7b33d 100644 --- a/src/auth0/management/organizations/roles/client.py +++ b/src/auth0/management/organizations/roles/client.py @@ -8,6 +8,7 @@ from .raw_client import AsyncRawRolesClient, RawRolesClient if typing.TYPE_CHECKING: + from .groups.client import AsyncGroupsClient, GroupsClient from .members.client import AsyncMembersClient, MembersClient @@ -16,6 +17,7 @@ def __init__(self, *, client_wrapper: SyncClientWrapper): self._raw_client = RawRolesClient(client_wrapper=client_wrapper) self._client_wrapper = client_wrapper self._members: typing.Optional[MembersClient] = None + self._groups: typing.Optional[GroupsClient] = None @property def with_raw_response(self) -> RawRolesClient: @@ -36,12 +38,21 @@ def members(self): self._members = MembersClient(client_wrapper=self._client_wrapper) return self._members + @property + def groups(self): + if self._groups is None: + from .groups.client import GroupsClient # noqa: E402 + + self._groups = GroupsClient(client_wrapper=self._client_wrapper) + return self._groups + class AsyncRolesClient: def __init__(self, *, client_wrapper: AsyncClientWrapper): self._raw_client = AsyncRawRolesClient(client_wrapper=client_wrapper) self._client_wrapper = client_wrapper self._members: typing.Optional[AsyncMembersClient] = None + self._groups: typing.Optional[AsyncGroupsClient] = None @property def with_raw_response(self) -> AsyncRawRolesClient: @@ -61,3 +72,11 @@ def members(self): self._members = AsyncMembersClient(client_wrapper=self._client_wrapper) return self._members + + @property + def groups(self): + if self._groups is None: + from .groups.client import AsyncGroupsClient # noqa: E402 + + self._groups = AsyncGroupsClient(client_wrapper=self._client_wrapper) + return self._groups diff --git a/src/auth0/management/organizations/roles/groups/__init__.py b/src/auth0/management/organizations/roles/groups/__init__.py new file mode 100644 index 00000000..5cde0202 --- /dev/null +++ b/src/auth0/management/organizations/roles/groups/__init__.py @@ -0,0 +1,4 @@ +# This file was auto-generated by Fern from our API Definition. + +# isort: skip_file + diff --git a/src/auth0/management/organizations/roles/groups/client.py b/src/auth0/management/organizations/roles/groups/client.py new file mode 100644 index 00000000..7fbb082a --- /dev/null +++ b/src/auth0/management/organizations/roles/groups/client.py @@ -0,0 +1,163 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +from ....core.client_wrapper import AsyncClientWrapper, SyncClientWrapper +from ....core.pagination import AsyncPager, SyncPager +from ....core.request_options import RequestOptions +from ....types.list_organization_role_groups_response_content import ListOrganizationRoleGroupsResponseContent +from ....types.role_group import RoleGroup +from .raw_client import AsyncRawGroupsClient, RawGroupsClient + + +class GroupsClient: + def __init__(self, *, client_wrapper: SyncClientWrapper): + self._raw_client = RawGroupsClient(client_wrapper=client_wrapper) + + @property + def with_raw_response(self) -> RawGroupsClient: + """ + Retrieves a raw implementation of this client that returns raw responses. + + Returns + ------- + RawGroupsClient + """ + return self._raw_client + + def list( + self, + organization_id: str, + role_id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> SyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent]: + """ + Retrieve the list of groups assigned to a role in the context of an organization. + + Parameters + ---------- + organization_id : str + ID of the organization. + + role_id : str + ID of the role. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + SyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent] + Organization role groups successfully retrieved. + + Examples + -------- + from auth0 import Auth0 + + client = Auth0( + token="YOUR_TOKEN", + ) + response = client.organizations.roles.groups.list( + organization_id="organization_id", + role_id="role_id", + from_="from", + take=1, + ) + for item in response: + yield item + # alternatively, you can paginate page-by-page + for page in response.iter_pages(): + yield page + """ + return self._raw_client.list(organization_id, role_id, from_=from_, take=take, request_options=request_options) + + +class AsyncGroupsClient: + def __init__(self, *, client_wrapper: AsyncClientWrapper): + self._raw_client = AsyncRawGroupsClient(client_wrapper=client_wrapper) + + @property + def with_raw_response(self) -> AsyncRawGroupsClient: + """ + Retrieves a raw implementation of this client that returns raw responses. + + Returns + ------- + AsyncRawGroupsClient + """ + return self._raw_client + + async def list( + self, + organization_id: str, + role_id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> AsyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent]: + """ + Retrieve the list of groups assigned to a role in the context of an organization. + + Parameters + ---------- + organization_id : str + ID of the organization. + + role_id : str + ID of the role. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent] + Organization role groups successfully retrieved. + + Examples + -------- + import asyncio + + from auth0 import AsyncAuth0 + + client = AsyncAuth0( + token="YOUR_TOKEN", + ) + + + async def main() -> None: + response = await client.organizations.roles.groups.list( + organization_id="organization_id", + role_id="role_id", + from_="from", + take=1, + ) + async for item in response: + yield item + + # alternatively, you can paginate page-by-page + async for page in response.iter_pages(): + yield page + + + asyncio.run(main()) + """ + return await self._raw_client.list( + organization_id, role_id, from_=from_, take=take, request_options=request_options + ) diff --git a/src/auth0/management/organizations/roles/groups/raw_client.py b/src/auth0/management/organizations/roles/groups/raw_client.py new file mode 100644 index 00000000..de1a2232 --- /dev/null +++ b/src/auth0/management/organizations/roles/groups/raw_client.py @@ -0,0 +1,287 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing +from json.decoder import JSONDecodeError + +from ....core.api_error import ApiError +from ....core.client_wrapper import AsyncClientWrapper, SyncClientWrapper +from ....core.jsonable_encoder import encode_path_param +from ....core.pagination import AsyncPager, SyncPager +from ....core.parse_error import ParsingError +from ....core.pydantic_utilities import parse_obj_as +from ....core.request_options import RequestOptions +from ....errors.bad_request_error import BadRequestError +from ....errors.forbidden_error import ForbiddenError +from ....errors.not_found_error import NotFoundError +from ....errors.too_many_requests_error import TooManyRequestsError +from ....errors.unauthorized_error import UnauthorizedError +from ....types.list_organization_role_groups_response_content import ListOrganizationRoleGroupsResponseContent +from ....types.role_group import RoleGroup +from pydantic import ValidationError + + +class RawGroupsClient: + def __init__(self, *, client_wrapper: SyncClientWrapper): + self._client_wrapper = client_wrapper + + def list( + self, + organization_id: str, + role_id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> SyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent]: + """ + Retrieve the list of groups assigned to a role in the context of an organization. + + Parameters + ---------- + organization_id : str + ID of the organization. + + role_id : str + ID of the role. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + SyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent] + Organization role groups successfully retrieved. + """ + _response = self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(organization_id)}/roles/{encode_path_param(role_id)}/groups", + method="GET", + params={ + "from": from_, + "take": take, + }, + request_options=request_options, + ) + try: + if 200 <= _response.status_code < 300: + _parsed_response = typing.cast( + ListOrganizationRoleGroupsResponseContent, + parse_obj_as( + type_=ListOrganizationRoleGroupsResponseContent, # type: ignore + object_=_response.json(), + ), + ) + _items = _parsed_response.groups + _parsed_next = _parsed_response.next + _has_next = _parsed_next is not None and _parsed_next != "" + _get_next = lambda: self.list( + organization_id, + role_id, + from_=_parsed_next, + take=take, + request_options=request_options, + ) + return SyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) + + +class AsyncRawGroupsClient: + def __init__(self, *, client_wrapper: AsyncClientWrapper): + self._client_wrapper = client_wrapper + + async def list( + self, + organization_id: str, + role_id: str, + *, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, + request_options: typing.Optional[RequestOptions] = None, + ) -> AsyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent]: + """ + Retrieve the list of groups assigned to a role in the context of an organization. + + Parameters + ---------- + organization_id : str + ID of the organization. + + role_id : str + ID of the role. + + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. + + request_options : typing.Optional[RequestOptions] + Request-specific configuration. + + Returns + ------- + AsyncPager[RoleGroup, ListOrganizationRoleGroupsResponseContent] + Organization role groups successfully retrieved. + """ + _response = await self._client_wrapper.httpx_client.request( + f"organizations/{encode_path_param(organization_id)}/roles/{encode_path_param(role_id)}/groups", + method="GET", + params={ + "from": from_, + "take": take, + }, + request_options=request_options, + ) + try: + if 200 <= _response.status_code < 300: + _parsed_response = typing.cast( + ListOrganizationRoleGroupsResponseContent, + parse_obj_as( + type_=ListOrganizationRoleGroupsResponseContent, # type: ignore + object_=_response.json(), + ), + ) + _items = _parsed_response.groups + _parsed_next = _parsed_response.next + _has_next = _parsed_next is not None and _parsed_next != "" + + async def _get_next(): + return await self.list( + organization_id, + role_id, + from_=_parsed_next, + take=take, + request_options=request_options, + ) + + return AsyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 401: + raise UnauthorizedError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 403: + raise ForbiddenError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + if _response.status_code == 429: + raise TooManyRequestsError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) + _response_json = _response.json() + except JSONDecodeError: + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text) + except ValidationError as e: + raise ParsingError( + status_code=_response.status_code, headers=dict(_response.headers), body=_response.json(), cause=e + ) + raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json) diff --git a/src/auth0/management/roles/client.py b/src/auth0/management/roles/client.py index c24f805b..40431865 100644 --- a/src/auth0/management/roles/client.py +++ b/src/auth0/management/roles/client.py @@ -9,8 +9,9 @@ from ..core.request_options import RequestOptions from ..types.create_role_response_content import CreateRoleResponseContent from ..types.get_role_response_content import GetRoleResponseContent -from ..types.list_roles_offset_paginated_response_content import ListRolesOffsetPaginatedResponseContent +from ..types.list_roles_response_content import ListRolesResponseContent from ..types.role import Role +from ..types.role_type_enum import RoleTypeEnum from ..types.update_role_response_content import UpdateRoleResponseContent from .raw_client import AsyncRawRolesClient, RawRolesClient @@ -44,12 +45,13 @@ def with_raw_response(self) -> RawRolesClient: def list( self, *, - per_page: typing.Optional[int] = 50, - page: typing.Optional[int] = 0, - include_totals: typing.Optional[bool] = True, name_filter: typing.Optional[str] = None, + type: typing.Optional[RoleTypeEnum] = None, + owner_id: typing.Optional[str] = None, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, request_options: typing.Optional[RequestOptions] = None, - ) -> SyncPager[Role, ListRolesOffsetPaginatedResponseContent]: + ) -> SyncPager[Role, ListRolesResponseContent]: """ Retrieve detailed list of user roles created in your tenant. @@ -57,24 +59,27 @@ def list( Parameters ---------- - per_page : typing.Optional[int] - Number of results per page. Defaults to 50. + name_filter : typing.Optional[str] + Optional filter on name (case-insensitive). - page : typing.Optional[int] - Page index of the results to return. First page is 0. + type : typing.Optional[RoleTypeEnum] + Optional filter on the type of the role - include_totals : typing.Optional[bool] - Return results inside an object that contains the total result count (true) or as a direct array of results (false, default). + owner_id : typing.Optional[str] + Filter organization-level roles by owner ID. Required when type is "organization". - name_filter : typing.Optional[str] - Optional filter on name (case-insensitive). + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns ------- - SyncPager[Role, ListRolesOffsetPaginatedResponseContent] + SyncPager[Role, ListRolesResponseContent] Roles successfully retrieved. Examples @@ -85,10 +90,11 @@ def list( token="YOUR_TOKEN", ) response = client.roles.list( - per_page=1, - page=1, - include_totals=True, name_filter="name_filter", + type="tenant", + owner_id="owner_id", + from_="from", + take=1, ) for item in response: yield item @@ -97,10 +103,11 @@ def list( yield page """ return self._raw_client.list( - per_page=per_page, - page=page, - include_totals=include_totals, name_filter=name_filter, + type=type, + owner_id=owner_id, + from_=from_, + take=take, request_options=request_options, ) @@ -109,6 +116,8 @@ def create( *, name: str, description: typing.Optional[str] = OMIT, + type: typing.Optional[RoleTypeEnum] = OMIT, + owner_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateRoleResponseContent: """ @@ -124,6 +133,12 @@ def create( description : typing.Optional[str] Description of the role. + type : typing.Optional[RoleTypeEnum] + The type of the role. Defaults to tenant. + + owner_id : typing.Optional[str] + The ID of the organization that owns this role. Required when type is "organization". + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -143,7 +158,9 @@ def create( name="name", ) """ - _response = self._raw_client.create(name=name, description=description, request_options=request_options) + _response = self._raw_client.create( + name=name, description=description, type=type, owner_id=owner_id, request_options=request_options + ) return _response.data def get(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> GetRoleResponseContent: @@ -298,12 +315,13 @@ def with_raw_response(self) -> AsyncRawRolesClient: async def list( self, *, - per_page: typing.Optional[int] = 50, - page: typing.Optional[int] = 0, - include_totals: typing.Optional[bool] = True, name_filter: typing.Optional[str] = None, + type: typing.Optional[RoleTypeEnum] = None, + owner_id: typing.Optional[str] = None, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, request_options: typing.Optional[RequestOptions] = None, - ) -> AsyncPager[Role, ListRolesOffsetPaginatedResponseContent]: + ) -> AsyncPager[Role, ListRolesResponseContent]: """ Retrieve detailed list of user roles created in your tenant. @@ -311,24 +329,27 @@ async def list( Parameters ---------- - per_page : typing.Optional[int] - Number of results per page. Defaults to 50. + name_filter : typing.Optional[str] + Optional filter on name (case-insensitive). - page : typing.Optional[int] - Page index of the results to return. First page is 0. + type : typing.Optional[RoleTypeEnum] + Optional filter on the type of the role - include_totals : typing.Optional[bool] - Return results inside an object that contains the total result count (true) or as a direct array of results (false, default). + owner_id : typing.Optional[str] + Filter organization-level roles by owner ID. Required when type is "organization". - name_filter : typing.Optional[str] - Optional filter on name (case-insensitive). + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns ------- - AsyncPager[Role, ListRolesOffsetPaginatedResponseContent] + AsyncPager[Role, ListRolesResponseContent] Roles successfully retrieved. Examples @@ -344,10 +365,11 @@ async def list( async def main() -> None: response = await client.roles.list( - per_page=1, - page=1, - include_totals=True, name_filter="name_filter", + type="tenant", + owner_id="owner_id", + from_="from", + take=1, ) async for item in response: yield item @@ -360,10 +382,11 @@ async def main() -> None: asyncio.run(main()) """ return await self._raw_client.list( - per_page=per_page, - page=page, - include_totals=include_totals, name_filter=name_filter, + type=type, + owner_id=owner_id, + from_=from_, + take=take, request_options=request_options, ) @@ -372,6 +395,8 @@ async def create( *, name: str, description: typing.Optional[str] = OMIT, + type: typing.Optional[RoleTypeEnum] = OMIT, + owner_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateRoleResponseContent: """ @@ -387,6 +412,12 @@ async def create( description : typing.Optional[str] Description of the role. + type : typing.Optional[RoleTypeEnum] + The type of the role. Defaults to tenant. + + owner_id : typing.Optional[str] + The ID of the organization that owns this role. Required when type is "organization". + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -414,7 +445,9 @@ async def main() -> None: asyncio.run(main()) """ - _response = await self._raw_client.create(name=name, description=description, request_options=request_options) + _response = await self._raw_client.create( + name=name, description=description, type=type, owner_id=owner_id, request_options=request_options + ) return _response.data async def get(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> GetRoleResponseContent: diff --git a/src/auth0/management/roles/raw_client.py b/src/auth0/management/roles/raw_client.py index 5b7313bf..beed8d77 100644 --- a/src/auth0/management/roles/raw_client.py +++ b/src/auth0/management/roles/raw_client.py @@ -19,8 +19,9 @@ from ..errors.unauthorized_error import UnauthorizedError from ..types.create_role_response_content import CreateRoleResponseContent from ..types.get_role_response_content import GetRoleResponseContent -from ..types.list_roles_offset_paginated_response_content import ListRolesOffsetPaginatedResponseContent +from ..types.list_roles_response_content import ListRolesResponseContent from ..types.role import Role +from ..types.role_type_enum import RoleTypeEnum from ..types.update_role_response_content import UpdateRoleResponseContent from pydantic import ValidationError @@ -35,12 +36,13 @@ def __init__(self, *, client_wrapper: SyncClientWrapper): def list( self, *, - per_page: typing.Optional[int] = 50, - page: typing.Optional[int] = 0, - include_totals: typing.Optional[bool] = True, name_filter: typing.Optional[str] = None, + type: typing.Optional[RoleTypeEnum] = None, + owner_id: typing.Optional[str] = None, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, request_options: typing.Optional[RequestOptions] = None, - ) -> SyncPager[Role, ListRolesOffsetPaginatedResponseContent]: + ) -> SyncPager[Role, ListRolesResponseContent]: """ Retrieve detailed list of user roles created in your tenant. @@ -48,55 +50,59 @@ def list( Parameters ---------- - per_page : typing.Optional[int] - Number of results per page. Defaults to 50. + name_filter : typing.Optional[str] + Optional filter on name (case-insensitive). - page : typing.Optional[int] - Page index of the results to return. First page is 0. + type : typing.Optional[RoleTypeEnum] + Optional filter on the type of the role - include_totals : typing.Optional[bool] - Return results inside an object that contains the total result count (true) or as a direct array of results (false, default). + owner_id : typing.Optional[str] + Filter organization-level roles by owner ID. Required when type is "organization". - name_filter : typing.Optional[str] - Optional filter on name (case-insensitive). + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns ------- - SyncPager[Role, ListRolesOffsetPaginatedResponseContent] + SyncPager[Role, ListRolesResponseContent] Roles successfully retrieved. """ - page = page if page is not None else 0 - _response = self._client_wrapper.httpx_client.request( "roles", method="GET", params={ - "per_page": per_page, - "page": page, - "include_totals": include_totals, "name_filter": name_filter, + "type": type, + "owner_id": owner_id, + "from": from_, + "take": take, }, request_options=request_options, ) try: if 200 <= _response.status_code < 300: _parsed_response = typing.cast( - ListRolesOffsetPaginatedResponseContent, + ListRolesResponseContent, parse_obj_as( - type_=ListRolesOffsetPaginatedResponseContent, # type: ignore + type_=ListRolesResponseContent, # type: ignore object_=_response.json(), ), ) _items = _parsed_response.roles - _has_next = len(_items or []) > 0 + _parsed_next = _parsed_response.next + _has_next = _parsed_next is not None and _parsed_next != "" _get_next = lambda: self.list( - per_page=per_page, - page=page + 1, - include_totals=include_totals, name_filter=name_filter, + type=type, + owner_id=owner_id, + from_=_parsed_next, + take=take, request_options=request_options, ) return SyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) @@ -158,6 +164,8 @@ def create( *, name: str, description: typing.Optional[str] = OMIT, + type: typing.Optional[RoleTypeEnum] = OMIT, + owner_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[CreateRoleResponseContent]: """ @@ -173,6 +181,12 @@ def create( description : typing.Optional[str] Description of the role. + type : typing.Optional[RoleTypeEnum] + The type of the role. Defaults to tenant. + + owner_id : typing.Optional[str] + The ID of the organization that owns this role. Required when type is "organization". + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -187,6 +201,8 @@ def create( json={ "name": name, "description": description, + "type": type, + "owner_id": owner_id, }, headers={ "content-type": "application/json", @@ -568,12 +584,13 @@ def __init__(self, *, client_wrapper: AsyncClientWrapper): async def list( self, *, - per_page: typing.Optional[int] = 50, - page: typing.Optional[int] = 0, - include_totals: typing.Optional[bool] = True, name_filter: typing.Optional[str] = None, + type: typing.Optional[RoleTypeEnum] = None, + owner_id: typing.Optional[str] = None, + from_: typing.Optional[str] = None, + take: typing.Optional[int] = 50, request_options: typing.Optional[RequestOptions] = None, - ) -> AsyncPager[Role, ListRolesOffsetPaginatedResponseContent]: + ) -> AsyncPager[Role, ListRolesResponseContent]: """ Retrieve detailed list of user roles created in your tenant. @@ -581,57 +598,61 @@ async def list( Parameters ---------- - per_page : typing.Optional[int] - Number of results per page. Defaults to 50. + name_filter : typing.Optional[str] + Optional filter on name (case-insensitive). - page : typing.Optional[int] - Page index of the results to return. First page is 0. + type : typing.Optional[RoleTypeEnum] + Optional filter on the type of the role - include_totals : typing.Optional[bool] - Return results inside an object that contains the total result count (true) or as a direct array of results (false, default). + owner_id : typing.Optional[str] + Filter organization-level roles by owner ID. Required when type is "organization". - name_filter : typing.Optional[str] - Optional filter on name (case-insensitive). + from_ : typing.Optional[str] + Optional Id from which to start selection. + + take : typing.Optional[int] + Number of results per page. Defaults to 50. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns ------- - AsyncPager[Role, ListRolesOffsetPaginatedResponseContent] + AsyncPager[Role, ListRolesResponseContent] Roles successfully retrieved. """ - page = page if page is not None else 0 - _response = await self._client_wrapper.httpx_client.request( "roles", method="GET", params={ - "per_page": per_page, - "page": page, - "include_totals": include_totals, "name_filter": name_filter, + "type": type, + "owner_id": owner_id, + "from": from_, + "take": take, }, request_options=request_options, ) try: if 200 <= _response.status_code < 300: _parsed_response = typing.cast( - ListRolesOffsetPaginatedResponseContent, + ListRolesResponseContent, parse_obj_as( - type_=ListRolesOffsetPaginatedResponseContent, # type: ignore + type_=ListRolesResponseContent, # type: ignore object_=_response.json(), ), ) _items = _parsed_response.roles - _has_next = len(_items or []) > 0 + _parsed_next = _parsed_response.next + _has_next = _parsed_next is not None and _parsed_next != "" async def _get_next(): return await self.list( - per_page=per_page, - page=page + 1, - include_totals=include_totals, name_filter=name_filter, + type=type, + owner_id=owner_id, + from_=_parsed_next, + take=take, request_options=request_options, ) @@ -694,6 +715,8 @@ async def create( *, name: str, description: typing.Optional[str] = OMIT, + type: typing.Optional[RoleTypeEnum] = OMIT, + owner_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[CreateRoleResponseContent]: """ @@ -709,6 +732,12 @@ async def create( description : typing.Optional[str] Description of the role. + type : typing.Optional[RoleTypeEnum] + The type of the role. Defaults to tenant. + + owner_id : typing.Optional[str] + The ID of the organization that owns this role. Required when type is "organization". + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -723,6 +752,8 @@ async def create( json={ "name": name, "description": description, + "type": type, + "owner_id": owner_id, }, headers={ "content-type": "application/json", diff --git a/src/auth0/management/types/__init__.py b/src/auth0/management/types/__init__.py index acc6bf7a..85fcd58f 100644 --- a/src/auth0/management/types/__init__.py +++ b/src/auth0/management/types/__init__.py @@ -291,6 +291,8 @@ ClientTokenVaultPrivilegedAccessWithCredentialId, ) from .client_token_vault_privileged_access_with_public_key import ClientTokenVaultPrivilegedAccessWithPublicKey + from .conflict_schema import ConflictSchema + from .conflict_schema_error import ConflictSchemaError from .connected_account import ConnectedAccount from .connected_account_access_type_enum import ConnectedAccountAccessTypeEnum from .connection_access_token_urlo_auth_1 import ConnectionAccessTokenUrloAuth1 @@ -1098,6 +1100,8 @@ from .create_log_stream_splunk_request_body import CreateLogStreamSplunkRequestBody from .create_log_stream_sumo_request_body import CreateLogStreamSumoRequestBody from .create_organization_all_connection_response_content import CreateOrganizationAllConnectionResponseContent + from .create_organization_client_request_item import CreateOrganizationClientRequestItem + from .create_organization_clients_response_content import CreateOrganizationClientsResponseContent from .create_organization_discovery_domain_response_content import CreateOrganizationDiscoveryDomainResponseContent from .create_organization_invitation_response_content import CreateOrganizationInvitationResponseContent from .create_organization_response_content import CreateOrganizationResponseContent @@ -3713,6 +3717,7 @@ from .get_network_acls_response_content import GetNetworkAclsResponseContent from .get_organization_all_connection_response_content import GetOrganizationAllConnectionResponseContent from .get_organization_by_name_response_content import GetOrganizationByNameResponseContent + from .get_organization_client_response_content import GetOrganizationClientResponseContent from .get_organization_connection_response_content import GetOrganizationConnectionResponseContent from .get_organization_discovery_domain_by_name_response_content import ( GetOrganizationDiscoveryDomainByNameResponseContent, @@ -3830,6 +3835,7 @@ from .list_organization_client_grants_offset_paginated_response_content import ( ListOrganizationClientGrantsOffsetPaginatedResponseContent, ) + from .list_organization_clients_response_content import ListOrganizationClientsResponseContent from .list_organization_connections_offset_paginated_response_content import ( ListOrganizationConnectionsOffsetPaginatedResponseContent, ) @@ -3849,6 +3855,7 @@ ListOrganizationMemberRolesOffsetPaginatedResponseContent, ) from .list_organization_members_paginated_response_content import ListOrganizationMembersPaginatedResponseContent + from .list_organization_role_groups_response_content import ListOrganizationRoleGroupsResponseContent from .list_organization_role_members_response_content import ListOrganizationRoleMembersResponseContent from .list_organizations_paginated_response_content import ListOrganizationsPaginatedResponseContent from .list_phone_templates_response_content import ListPhoneTemplatesResponseContent @@ -3860,7 +3867,8 @@ ListRolePermissionsOffsetPaginatedResponseContent, ) from .list_role_users_paginated_response_content import ListRoleUsersPaginatedResponseContent - from .list_roles_offset_paginated_response_content import ListRolesOffsetPaginatedResponseContent + from .list_roles_checkpoint_paginated_response_content import ListRolesCheckpointPaginatedResponseContent + from .list_roles_response_content import ListRolesResponseContent from .list_rules_offset_paginated_response_content import ListRulesOffsetPaginatedResponseContent from .list_scim_configurations_response_content import ListScimConfigurationsResponseContent from .list_self_service_profile_custom_text_response_content import ListSelfServiceProfileCustomTextResponseContent @@ -3970,6 +3978,8 @@ from .network_acls_response_content import NetworkAclsResponseContent from .not_found_error_body import NotFoundErrorBody from .not_found_error_body_error import NotFoundErrorBodyError + from .not_found_schema import NotFoundSchema + from .not_found_schema_error import NotFoundSchemaError from .oauth_scope import OauthScope from .organization import Organization from .organization_access_level_enum import OrganizationAccessLevelEnum @@ -3977,7 +3987,11 @@ from .organization_all_connection_post import OrganizationAllConnectionPost from .organization_branding import OrganizationBranding from .organization_branding_colors import OrganizationBrandingColors + from .organization_client import OrganizationClient + from .organization_client_association import OrganizationClientAssociation from .organization_client_grant import OrganizationClientGrant + from .organization_client_metadata import OrganizationClientMetadata + from .organization_client_metadata_organization_usage_enum import OrganizationClientMetadataOrganizationUsageEnum from .organization_connection import OrganizationConnection from .organization_connection_information import OrganizationConnectionInformation from .organization_discovery_domain import OrganizationDiscoveryDomain @@ -4098,7 +4112,9 @@ from .resource_server_verification_key_pem_certificate import ResourceServerVerificationKeyPemCertificate from .revoked_signing_keys_response_content import RevokedSigningKeysResponseContent from .role import Role + from .role_group import RoleGroup from .role_member import RoleMember + from .role_type_enum import RoleTypeEnum from .role_user import RoleUser from .rollback_action_module_response_content import RollbackActionModuleResponseContent from .rotate_client_secret_response_content import RotateClientSecretResponseContent @@ -4373,6 +4389,7 @@ from .update_log_stream_response_content import UpdateLogStreamResponseContent from .update_network_acl_response_content import UpdateNetworkAclResponseContent from .update_organization_all_connection_response_content import UpdateOrganizationAllConnectionResponseContent + from .update_organization_client_response_content import UpdateOrganizationClientResponseContent from .update_organization_connection_response_content import UpdateOrganizationConnectionResponseContent from .update_organization_discovery_domain_response_content import UpdateOrganizationDiscoveryDomainResponseContent from .update_organization_response_content import UpdateOrganizationResponseContent @@ -4708,6 +4725,8 @@ "ClientTokenExchangeTypeEnum": ".client_token_exchange_type_enum", "ClientTokenVaultPrivilegedAccessWithCredentialId": ".client_token_vault_privileged_access_with_credential_id", "ClientTokenVaultPrivilegedAccessWithPublicKey": ".client_token_vault_privileged_access_with_public_key", + "ConflictSchema": ".conflict_schema", + "ConflictSchemaError": ".conflict_schema_error", "ConnectedAccount": ".connected_account", "ConnectedAccountAccessTypeEnum": ".connected_account_access_type_enum", "ConnectionAccessTokenUrloAuth1": ".connection_access_token_urlo_auth_1", @@ -5461,6 +5480,8 @@ "CreateLogStreamSplunkRequestBody": ".create_log_stream_splunk_request_body", "CreateLogStreamSumoRequestBody": ".create_log_stream_sumo_request_body", "CreateOrganizationAllConnectionResponseContent": ".create_organization_all_connection_response_content", + "CreateOrganizationClientRequestItem": ".create_organization_client_request_item", + "CreateOrganizationClientsResponseContent": ".create_organization_clients_response_content", "CreateOrganizationDiscoveryDomainResponseContent": ".create_organization_discovery_domain_response_content", "CreateOrganizationInvitationResponseContent": ".create_organization_invitation_response_content", "CreateOrganizationResponseContent": ".create_organization_response_content", @@ -6962,6 +6983,7 @@ "GetNetworkAclsResponseContent": ".get_network_acls_response_content", "GetOrganizationAllConnectionResponseContent": ".get_organization_all_connection_response_content", "GetOrganizationByNameResponseContent": ".get_organization_by_name_response_content", + "GetOrganizationClientResponseContent": ".get_organization_client_response_content", "GetOrganizationConnectionResponseContent": ".get_organization_connection_response_content", "GetOrganizationDiscoveryDomainByNameResponseContent": ".get_organization_discovery_domain_by_name_response_content", "GetOrganizationDiscoveryDomainResponseContent": ".get_organization_discovery_domain_response_content", @@ -7059,6 +7081,7 @@ "ListNetworkAclsOffsetPaginatedResponseContent": ".list_network_acls_offset_paginated_response_content", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent": ".list_organization_all_connections_offset_paginated_response_content", "ListOrganizationClientGrantsOffsetPaginatedResponseContent": ".list_organization_client_grants_offset_paginated_response_content", + "ListOrganizationClientsResponseContent": ".list_organization_clients_response_content", "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".list_organization_connections_offset_paginated_response_content", "ListOrganizationDiscoveryDomainsResponseContent": ".list_organization_discovery_domains_response_content", "ListOrganizationGroupRolesResponseContent": ".list_organization_group_roles_response_content", @@ -7068,6 +7091,7 @@ "ListOrganizationMemberRoleSourceGroupsResponseContent": ".list_organization_member_role_source_groups_response_content", "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".list_organization_member_roles_offset_paginated_response_content", "ListOrganizationMembersPaginatedResponseContent": ".list_organization_members_paginated_response_content", + "ListOrganizationRoleGroupsResponseContent": ".list_organization_role_groups_response_content", "ListOrganizationRoleMembersResponseContent": ".list_organization_role_members_response_content", "ListOrganizationsPaginatedResponseContent": ".list_organizations_paginated_response_content", "ListPhoneTemplatesResponseContent": ".list_phone_templates_response_content", @@ -7077,7 +7101,8 @@ "ListRoleGroupsResponseContent": ".list_role_groups_response_content", "ListRolePermissionsOffsetPaginatedResponseContent": ".list_role_permissions_offset_paginated_response_content", "ListRoleUsersPaginatedResponseContent": ".list_role_users_paginated_response_content", - "ListRolesOffsetPaginatedResponseContent": ".list_roles_offset_paginated_response_content", + "ListRolesCheckpointPaginatedResponseContent": ".list_roles_checkpoint_paginated_response_content", + "ListRolesResponseContent": ".list_roles_response_content", "ListRulesOffsetPaginatedResponseContent": ".list_rules_offset_paginated_response_content", "ListScimConfigurationsResponseContent": ".list_scim_configurations_response_content", "ListSelfServiceProfileCustomTextResponseContent": ".list_self_service_profile_custom_text_response_content", @@ -7175,6 +7200,8 @@ "NetworkAclsResponseContent": ".network_acls_response_content", "NotFoundErrorBody": ".not_found_error_body", "NotFoundErrorBodyError": ".not_found_error_body_error", + "NotFoundSchema": ".not_found_schema", + "NotFoundSchemaError": ".not_found_schema_error", "OauthScope": ".oauth_scope", "Organization": ".organization", "OrganizationAccessLevelEnum": ".organization_access_level_enum", @@ -7182,7 +7209,11 @@ "OrganizationAllConnectionPost": ".organization_all_connection_post", "OrganizationBranding": ".organization_branding", "OrganizationBrandingColors": ".organization_branding_colors", + "OrganizationClient": ".organization_client", + "OrganizationClientAssociation": ".organization_client_association", "OrganizationClientGrant": ".organization_client_grant", + "OrganizationClientMetadata": ".organization_client_metadata", + "OrganizationClientMetadataOrganizationUsageEnum": ".organization_client_metadata_organization_usage_enum", "OrganizationConnection": ".organization_connection", "OrganizationConnectionInformation": ".organization_connection_information", "OrganizationDiscoveryDomain": ".organization_discovery_domain", @@ -7287,7 +7318,9 @@ "ResourceServerVerificationKeyPemCertificate": ".resource_server_verification_key_pem_certificate", "RevokedSigningKeysResponseContent": ".revoked_signing_keys_response_content", "Role": ".role", + "RoleGroup": ".role_group", "RoleMember": ".role_member", + "RoleTypeEnum": ".role_type_enum", "RoleUser": ".role_user", "RollbackActionModuleResponseContent": ".rollback_action_module_response_content", "RotateClientSecretResponseContent": ".rotate_client_secret_response_content", @@ -7522,6 +7555,7 @@ "UpdateLogStreamResponseContent": ".update_log_stream_response_content", "UpdateNetworkAclResponseContent": ".update_network_acl_response_content", "UpdateOrganizationAllConnectionResponseContent": ".update_organization_all_connection_response_content", + "UpdateOrganizationClientResponseContent": ".update_organization_client_response_content", "UpdateOrganizationConnectionResponseContent": ".update_organization_connection_response_content", "UpdateOrganizationDiscoveryDomainResponseContent": ".update_organization_discovery_domain_response_content", "UpdateOrganizationResponseContent": ".update_organization_response_content", @@ -7867,6 +7901,8 @@ def __dir__(): "ClientTokenExchangeTypeEnum", "ClientTokenVaultPrivilegedAccessWithCredentialId", "ClientTokenVaultPrivilegedAccessWithPublicKey", + "ConflictSchema", + "ConflictSchemaError", "ConnectedAccount", "ConnectedAccountAccessTypeEnum", "ConnectionAccessTokenUrloAuth1", @@ -8620,6 +8656,8 @@ def __dir__(): "CreateLogStreamSplunkRequestBody", "CreateLogStreamSumoRequestBody", "CreateOrganizationAllConnectionResponseContent", + "CreateOrganizationClientRequestItem", + "CreateOrganizationClientsResponseContent", "CreateOrganizationDiscoveryDomainResponseContent", "CreateOrganizationInvitationResponseContent", "CreateOrganizationResponseContent", @@ -10121,6 +10159,7 @@ def __dir__(): "GetNetworkAclsResponseContent", "GetOrganizationAllConnectionResponseContent", "GetOrganizationByNameResponseContent", + "GetOrganizationClientResponseContent", "GetOrganizationConnectionResponseContent", "GetOrganizationDiscoveryDomainByNameResponseContent", "GetOrganizationDiscoveryDomainResponseContent", @@ -10218,6 +10257,7 @@ def __dir__(): "ListNetworkAclsOffsetPaginatedResponseContent", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent", "ListOrganizationClientGrantsOffsetPaginatedResponseContent", + "ListOrganizationClientsResponseContent", "ListOrganizationConnectionsOffsetPaginatedResponseContent", "ListOrganizationDiscoveryDomainsResponseContent", "ListOrganizationGroupRolesResponseContent", @@ -10227,6 +10267,7 @@ def __dir__(): "ListOrganizationMemberRoleSourceGroupsResponseContent", "ListOrganizationMemberRolesOffsetPaginatedResponseContent", "ListOrganizationMembersPaginatedResponseContent", + "ListOrganizationRoleGroupsResponseContent", "ListOrganizationRoleMembersResponseContent", "ListOrganizationsPaginatedResponseContent", "ListPhoneTemplatesResponseContent", @@ -10236,7 +10277,8 @@ def __dir__(): "ListRoleGroupsResponseContent", "ListRolePermissionsOffsetPaginatedResponseContent", "ListRoleUsersPaginatedResponseContent", - "ListRolesOffsetPaginatedResponseContent", + "ListRolesCheckpointPaginatedResponseContent", + "ListRolesResponseContent", "ListRulesOffsetPaginatedResponseContent", "ListScimConfigurationsResponseContent", "ListSelfServiceProfileCustomTextResponseContent", @@ -10334,6 +10376,8 @@ def __dir__(): "NetworkAclsResponseContent", "NotFoundErrorBody", "NotFoundErrorBodyError", + "NotFoundSchema", + "NotFoundSchemaError", "OauthScope", "Organization", "OrganizationAccessLevelEnum", @@ -10341,7 +10385,11 @@ def __dir__(): "OrganizationAllConnectionPost", "OrganizationBranding", "OrganizationBrandingColors", + "OrganizationClient", + "OrganizationClientAssociation", "OrganizationClientGrant", + "OrganizationClientMetadata", + "OrganizationClientMetadataOrganizationUsageEnum", "OrganizationConnection", "OrganizationConnectionInformation", "OrganizationDiscoveryDomain", @@ -10446,7 +10494,9 @@ def __dir__(): "ResourceServerVerificationKeyPemCertificate", "RevokedSigningKeysResponseContent", "Role", + "RoleGroup", "RoleMember", + "RoleTypeEnum", "RoleUser", "RollbackActionModuleResponseContent", "RotateClientSecretResponseContent", @@ -10681,6 +10731,7 @@ def __dir__(): "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", + "UpdateOrganizationClientResponseContent", "UpdateOrganizationConnectionResponseContent", "UpdateOrganizationDiscoveryDomainResponseContent", "UpdateOrganizationResponseContent", diff --git a/src/auth0/management/types/acul_context_enum.py b/src/auth0/management/types/acul_context_enum.py index ca924aad..8dbf2b7b 100644 --- a/src/auth0/management/types/acul_context_enum.py +++ b/src/auth0/management/types/acul_context_enum.py @@ -6,6 +6,7 @@ typing.Literal[ "branding.settings", "branding.themes.default", + "country_codes", "client.logo_uri", "client.description", "organization.display_name", diff --git a/src/auth0/management/types/conflict_schema.py b/src/auth0/management/types/conflict_schema.py new file mode 100644 index 00000000..18d1430c --- /dev/null +++ b/src/auth0/management/types/conflict_schema.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +import typing_extensions +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from ..core.serialization import FieldMetadata +from .conflict_schema_error import ConflictSchemaError + + +class ConflictSchema(UniversalBaseModel): + """ + Conflict + """ + + message: str + status_code: typing_extensions.Annotated[str, FieldMetadata(alias="statusCode"), pydantic.Field(alias="statusCode")] + error: ConflictSchemaError + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/conflict_schema_error.py b/src/auth0/management/types/conflict_schema_error.py new file mode 100644 index 00000000..8eb87e4d --- /dev/null +++ b/src/auth0/management/types/conflict_schema_error.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +ConflictSchemaError = typing.Union[typing.Literal["Conflict"], typing.Any] diff --git a/src/auth0/management/types/create_organization_client_request_item.py b/src/auth0/management/types/create_organization_client_request_item.py new file mode 100644 index 00000000..338e1f26 --- /dev/null +++ b/src/auth0/management/types/create_organization_client_request_item.py @@ -0,0 +1,27 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel + + +class CreateOrganizationClientRequestItem(UniversalBaseModel): + client_id: str = pydantic.Field() + """ + The identifier of the client to associate. + """ + + use_for_member_access: bool = pydantic.Field() + """ + Whether this client is used for member access to the organization. + """ + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/create_organization_clients_response_content.py b/src/auth0/management/types/create_organization_clients_response_content.py new file mode 100644 index 00000000..63832aa9 --- /dev/null +++ b/src/auth0/management/types/create_organization_clients_response_content.py @@ -0,0 +1,7 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +from .organization_client import OrganizationClient + +CreateOrganizationClientsResponseContent = typing.List[OrganizationClient] diff --git a/src/auth0/management/types/create_organization_response_content.py b/src/auth0/management/types/create_organization_response_content.py index 6a87963a..40f805d8 100644 --- a/src/auth0/management/types/create_organization_response_content.py +++ b/src/auth0/management/types/create_organization_response_content.py @@ -5,6 +5,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel from .organization_branding import OrganizationBranding +from .organization_client_association import OrganizationClientAssociation from .organization_enabled_connection import OrganizationEnabledConnection from .organization_metadata import OrganizationMetadata from .organization_third_party_client_access_enum import OrganizationThirdPartyClientAccessEnum @@ -31,6 +32,12 @@ class CreateOrganizationResponseContent(UniversalBaseModel): metadata: typing.Optional[OrganizationMetadata] = None token_quota: typing.Optional[TokenQuota] = None third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = None + is_app_entitlement_active: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether app entitlement is active for this organization. + """ + + client: typing.Optional[OrganizationClientAssociation] = None enabled_connections: typing.Optional[typing.List[OrganizationEnabledConnection]] = None if IS_PYDANTIC_V2: diff --git a/src/auth0/management/types/create_role_response_content.py b/src/auth0/management/types/create_role_response_content.py index 7dafd79e..8a1ab09f 100644 --- a/src/auth0/management/types/create_role_response_content.py +++ b/src/auth0/management/types/create_role_response_content.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .role_type_enum import RoleTypeEnum class CreateRoleResponseContent(UniversalBaseModel): @@ -22,6 +23,12 @@ class CreateRoleResponseContent(UniversalBaseModel): Description of this role. """ + type: typing.Optional[RoleTypeEnum] = None + owner_id: typing.Optional[str] = pydantic.Field(default=None) + """ + The id of the entity that owns this role, such as an organization id. + """ + if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 else: diff --git a/src/auth0/management/types/get_organization_by_name_response_content.py b/src/auth0/management/types/get_organization_by_name_response_content.py index c82ece0d..c03d2d2b 100644 --- a/src/auth0/management/types/get_organization_by_name_response_content.py +++ b/src/auth0/management/types/get_organization_by_name_response_content.py @@ -5,6 +5,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel from .organization_branding import OrganizationBranding +from .organization_client_association import OrganizationClientAssociation from .organization_metadata import OrganizationMetadata from .organization_third_party_client_access_enum import OrganizationThirdPartyClientAccessEnum from .token_quota import TokenQuota @@ -30,6 +31,12 @@ class GetOrganizationByNameResponseContent(UniversalBaseModel): metadata: typing.Optional[OrganizationMetadata] = None token_quota: typing.Optional[TokenQuota] = None third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = None + is_app_entitlement_active: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether app entitlement is active for this organization. + """ + + client: typing.Optional[OrganizationClientAssociation] = None if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 diff --git a/src/auth0/management/types/get_organization_client_response_content.py b/src/auth0/management/types/get_organization_client_response_content.py new file mode 100644 index 00000000..5c88887f --- /dev/null +++ b/src/auth0/management/types/get_organization_client_response_content.py @@ -0,0 +1,30 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .organization_client_metadata import OrganizationClientMetadata + + +class GetOrganizationClientResponseContent(UniversalBaseModel): + client_id: str = pydantic.Field() + """ + The identifier of the client associated with the organization. + """ + + use_for_member_access: bool = pydantic.Field() + """ + Whether this client is used for member access to the organization. + """ + + client: OrganizationClientMetadata + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/get_organization_response_content.py b/src/auth0/management/types/get_organization_response_content.py index e3396a09..2c0ec21e 100644 --- a/src/auth0/management/types/get_organization_response_content.py +++ b/src/auth0/management/types/get_organization_response_content.py @@ -5,6 +5,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel from .organization_branding import OrganizationBranding +from .organization_client_association import OrganizationClientAssociation from .organization_metadata import OrganizationMetadata from .organization_third_party_client_access_enum import OrganizationThirdPartyClientAccessEnum from .token_quota import TokenQuota @@ -30,6 +31,12 @@ class GetOrganizationResponseContent(UniversalBaseModel): metadata: typing.Optional[OrganizationMetadata] = None token_quota: typing.Optional[TokenQuota] = None third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = None + is_app_entitlement_active: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether app entitlement is active for this organization. + """ + + client: typing.Optional[OrganizationClientAssociation] = None if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 diff --git a/src/auth0/management/types/get_role_response_content.py b/src/auth0/management/types/get_role_response_content.py index c4b392a0..94b97931 100644 --- a/src/auth0/management/types/get_role_response_content.py +++ b/src/auth0/management/types/get_role_response_content.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .role_type_enum import RoleTypeEnum class GetRoleResponseContent(UniversalBaseModel): @@ -22,6 +23,12 @@ class GetRoleResponseContent(UniversalBaseModel): Description of this role. """ + type: typing.Optional[RoleTypeEnum] = None + owner_id: typing.Optional[str] = pydantic.Field(default=None) + """ + The id of the entity that owns this role, such as an organization id. + """ + if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 else: diff --git a/src/auth0/management/types/list_organization_clients_response_content.py b/src/auth0/management/types/list_organization_clients_response_content.py new file mode 100644 index 00000000..ae8c884d --- /dev/null +++ b/src/auth0/management/types/list_organization_clients_response_content.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .organization_client import OrganizationClient + + +class ListOrganizationClientsResponseContent(UniversalBaseModel): + clients: typing.List[OrganizationClient] = pydantic.Field() + """ + The list of clients associated with the organization. + """ + + next: typing.Optional[str] = pydantic.Field(default=None) + """ + An opaque token that, when present, can be passed as the `from` query parameter to retrieve the next page of results. + """ + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/list_organization_role_groups_response_content.py b/src/auth0/management/types/list_organization_role_groups_response_content.py new file mode 100644 index 00000000..06bde444 --- /dev/null +++ b/src/auth0/management/types/list_organization_role_groups_response_content.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .role_group import RoleGroup + + +class ListOrganizationRoleGroupsResponseContent(UniversalBaseModel): + """ + Checkpoint paginated list of groups assigned to a role within an organization. + """ + + groups: typing.List[RoleGroup] + next: typing.Optional[str] = pydantic.Field(default=None) + """ + A cursor to be used as the "from" query parameter for the next page of results. + """ + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/list_roles_offset_paginated_response_content.py b/src/auth0/management/types/list_roles_checkpoint_paginated_response_content.py similarity index 82% rename from src/auth0/management/types/list_roles_offset_paginated_response_content.py rename to src/auth0/management/types/list_roles_checkpoint_paginated_response_content.py index 7e8e8ee7..b54c920c 100644 --- a/src/auth0/management/types/list_roles_offset_paginated_response_content.py +++ b/src/auth0/management/types/list_roles_checkpoint_paginated_response_content.py @@ -7,10 +7,8 @@ from .role import Role -class ListRolesOffsetPaginatedResponseContent(UniversalBaseModel): - start: float - limit: float - total: float +class ListRolesCheckpointPaginatedResponseContent(UniversalBaseModel): + next: typing.Optional[str] = None roles: typing.Optional[typing.List[Role]] = None if IS_PYDANTIC_V2: diff --git a/src/auth0/management/types/list_roles_response_content.py b/src/auth0/management/types/list_roles_response_content.py new file mode 100644 index 00000000..4572ee3f --- /dev/null +++ b/src/auth0/management/types/list_roles_response_content.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +from .list_roles_checkpoint_paginated_response_content import ListRolesCheckpointPaginatedResponseContent + +ListRolesResponseContent = ListRolesCheckpointPaginatedResponseContent diff --git a/src/auth0/management/types/not_found_schema.py b/src/auth0/management/types/not_found_schema.py new file mode 100644 index 00000000..f96985a3 --- /dev/null +++ b/src/auth0/management/types/not_found_schema.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +import typing_extensions +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from ..core.serialization import FieldMetadata +from .not_found_schema_error import NotFoundSchemaError + + +class NotFoundSchema(UniversalBaseModel): + """ + Not Found + """ + + message: str + status_code: typing_extensions.Annotated[str, FieldMetadata(alias="statusCode"), pydantic.Field(alias="statusCode")] + error: NotFoundSchemaError + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/not_found_schema_error.py b/src/auth0/management/types/not_found_schema_error.py new file mode 100644 index 00000000..9c3f4bee --- /dev/null +++ b/src/auth0/management/types/not_found_schema_error.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +NotFoundSchemaError = typing.Union[typing.Literal["Not Found"], typing.Any] diff --git a/src/auth0/management/types/oauth_scope.py b/src/auth0/management/types/oauth_scope.py index 93e2415c..c0f2b9b8 100644 --- a/src/auth0/management/types/oauth_scope.py +++ b/src/auth0/management/types/oauth_scope.py @@ -240,6 +240,10 @@ "read:vdcs_templates", "update:vdcs_templates", "delete:vdcs_templates", + "create:organization_clients", + "read:organization_clients", + "update:organization_clients", + "delete:organization_clients", ], typing.Any, ] diff --git a/src/auth0/management/types/organization.py b/src/auth0/management/types/organization.py index 46149d29..9c88a613 100644 --- a/src/auth0/management/types/organization.py +++ b/src/auth0/management/types/organization.py @@ -5,6 +5,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel from .organization_branding import OrganizationBranding +from .organization_client_association import OrganizationClientAssociation from .organization_metadata import OrganizationMetadata from .organization_third_party_client_access_enum import OrganizationThirdPartyClientAccessEnum from .token_quota import TokenQuota @@ -30,6 +31,12 @@ class Organization(UniversalBaseModel): metadata: typing.Optional[OrganizationMetadata] = None token_quota: typing.Optional[TokenQuota] = None third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = None + is_app_entitlement_active: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether app entitlement is active for this organization. + """ + + client: typing.Optional[OrganizationClientAssociation] = None if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 diff --git a/src/auth0/management/types/organization_client.py b/src/auth0/management/types/organization_client.py new file mode 100644 index 00000000..4307befa --- /dev/null +++ b/src/auth0/management/types/organization_client.py @@ -0,0 +1,30 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .organization_client_metadata import OrganizationClientMetadata + + +class OrganizationClient(UniversalBaseModel): + client_id: str = pydantic.Field() + """ + The identifier of the client associated with the organization. + """ + + use_for_member_access: bool = pydantic.Field() + """ + Whether this client is used for member access to the organization. + """ + + client: OrganizationClientMetadata + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/organization_client_association.py b/src/auth0/management/types/organization_client_association.py new file mode 100644 index 00000000..0ff428ce --- /dev/null +++ b/src/auth0/management/types/organization_client_association.py @@ -0,0 +1,26 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel + + +class OrganizationClientAssociation(UniversalBaseModel): + """ + The organization's association with the client passed in the include_client_association_for query parameter. + """ + + use_for_member_access: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether this client is used for member access to the organization. + """ + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/organization_client_metadata.py b/src/auth0/management/types/organization_client_metadata.py new file mode 100644 index 00000000..12dca5c7 --- /dev/null +++ b/src/auth0/management/types/organization_client_metadata.py @@ -0,0 +1,49 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .organization_client_metadata_organization_usage_enum import OrganizationClientMetadataOrganizationUsageEnum + + +class OrganizationClientMetadata(UniversalBaseModel): + """ + Metadata about the associated client. + """ + + name: typing.Optional[str] = pydantic.Field(default=None) + """ + The name of the client. + """ + + app_type: typing.Optional[str] = pydantic.Field(default=None) + """ + The type of the client application. + """ + + logo_uri: typing.Optional[str] = pydantic.Field(default=None) + """ + The URI of the client logo. + """ + + is_first_party: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether this client is a first-party client (true) or not (false). + """ + + grant_types: typing.Optional[typing.List[str]] = pydantic.Field(default=None) + """ + The grant types enabled for the client. + """ + + organization_usage: typing.Optional[OrganizationClientMetadataOrganizationUsageEnum] = None + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/organization_client_metadata_organization_usage_enum.py b/src/auth0/management/types/organization_client_metadata_organization_usage_enum.py new file mode 100644 index 00000000..205ce00a --- /dev/null +++ b/src/auth0/management/types/organization_client_metadata_organization_usage_enum.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +OrganizationClientMetadataOrganizationUsageEnum = typing.Union[typing.Literal["deny", "allow", "require"], typing.Any] diff --git a/src/auth0/management/types/role.py b/src/auth0/management/types/role.py index 74115b37..d10cac42 100644 --- a/src/auth0/management/types/role.py +++ b/src/auth0/management/types/role.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .role_type_enum import RoleTypeEnum class Role(UniversalBaseModel): @@ -22,6 +23,12 @@ class Role(UniversalBaseModel): Description of this role. """ + type: typing.Optional[RoleTypeEnum] = None + owner_id: typing.Optional[str] = pydantic.Field(default=None) + """ + The id of the entity that owns this role, such as an organization id. + """ + if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 else: diff --git a/src/auth0/management/types/role_group.py b/src/auth0/management/types/role_group.py new file mode 100644 index 00000000..23fd20b9 --- /dev/null +++ b/src/auth0/management/types/role_group.py @@ -0,0 +1,67 @@ +# This file was auto-generated by Fern from our API Definition. + +import datetime as dt +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel + + +class RoleGroup(UniversalBaseModel): + """ + A group assigned to a role in the context of an organization. + """ + + id: str = pydantic.Field() + """ + Unique identifier for the group (service-generated). + """ + + name: str = pydantic.Field() + """ + Name of the group. Must be unique within its connection. Must contain between 1 and 128 printable ASCII characters. + """ + + external_id: typing.Optional[str] = pydantic.Field(default=None) + """ + External identifier for the group, often used for SCIM synchronization. Max length of 256 characters. + """ + + connection_id: typing.Optional[str] = pydantic.Field(default=None) + """ + Identifier for the connection this group belongs to (if a connection group). + """ + + organization_id: typing.Optional[str] = pydantic.Field(default=None) + """ + Identifier for the organization this group belongs to (if an organization group). + """ + + tenant_name: typing.Optional[str] = pydantic.Field(default=None) + """ + Identifier for the tenant this group belongs to. + """ + + description: typing.Optional[str] = pydantic.Field(default=None) + """ + Description of the group. + """ + + created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None) + """ + Timestamp of when the group was created. + """ + + updated_at: typing.Optional[dt.datetime] = pydantic.Field(default=None) + """ + Timestamp of when the group was last updated. + """ + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/role_type_enum.py b/src/auth0/management/types/role_type_enum.py new file mode 100644 index 00000000..73b06d86 --- /dev/null +++ b/src/auth0/management/types/role_type_enum.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +RoleTypeEnum = typing.Union[typing.Literal["tenant", "organization"], typing.Any] diff --git a/src/auth0/management/types/update_organization_client_response_content.py b/src/auth0/management/types/update_organization_client_response_content.py new file mode 100644 index 00000000..487a60f8 --- /dev/null +++ b/src/auth0/management/types/update_organization_client_response_content.py @@ -0,0 +1,30 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .organization_client_metadata import OrganizationClientMetadata + + +class UpdateOrganizationClientResponseContent(UniversalBaseModel): + client_id: str = pydantic.Field() + """ + The identifier of the client associated with the organization. + """ + + use_for_member_access: bool = pydantic.Field() + """ + Whether this client is used for member access to the organization. + """ + + client: typing.Optional[OrganizationClientMetadata] = None + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/update_organization_response_content.py b/src/auth0/management/types/update_organization_response_content.py index a35e3156..76f738ab 100644 --- a/src/auth0/management/types/update_organization_response_content.py +++ b/src/auth0/management/types/update_organization_response_content.py @@ -5,6 +5,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel from .organization_branding import OrganizationBranding +from .organization_client_association import OrganizationClientAssociation from .organization_metadata import OrganizationMetadata from .organization_third_party_client_access_enum import OrganizationThirdPartyClientAccessEnum from .token_quota import TokenQuota @@ -30,6 +31,12 @@ class UpdateOrganizationResponseContent(UniversalBaseModel): metadata: typing.Optional[OrganizationMetadata] = None token_quota: typing.Optional[TokenQuota] = None third_party_client_access: typing.Optional[OrganizationThirdPartyClientAccessEnum] = None + is_app_entitlement_active: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether app entitlement is active for this organization. + """ + + client: typing.Optional[OrganizationClientAssociation] = None if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 diff --git a/src/auth0/management/types/update_role_response_content.py b/src/auth0/management/types/update_role_response_content.py index 98e8b30c..9e606868 100644 --- a/src/auth0/management/types/update_role_response_content.py +++ b/src/auth0/management/types/update_role_response_content.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .role_type_enum import RoleTypeEnum class UpdateRoleResponseContent(UniversalBaseModel): @@ -22,6 +23,12 @@ class UpdateRoleResponseContent(UniversalBaseModel): Description of this role. """ + type: typing.Optional[RoleTypeEnum] = None + owner_id: typing.Optional[str] = pydantic.Field(default=None) + """ + The id of the entity that owns this role, such as an organization id. + """ + if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 else: diff --git a/src/auth0/management/types/user_effective_permission_role_source_response_content.py b/src/auth0/management/types/user_effective_permission_role_source_response_content.py index a24adfb3..58d3a2f6 100644 --- a/src/auth0/management/types/user_effective_permission_role_source_response_content.py +++ b/src/auth0/management/types/user_effective_permission_role_source_response_content.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .role_type_enum import RoleTypeEnum from .user_effective_permission_role_source_enum import UserEffectivePermissionRoleSourceEnum @@ -23,6 +24,12 @@ class UserEffectivePermissionRoleSourceResponseContent(UniversalBaseModel): Description of this role. """ + type: typing.Optional[RoleTypeEnum] = None + owner_id: typing.Optional[str] = pydantic.Field(default=None) + """ + The id of the entity that owns this role, such as an organization id. + """ + sources: typing.Optional[typing.List[UserEffectivePermissionRoleSourceEnum]] = pydantic.Field(default=None) """ List of sources where this role is coming from. diff --git a/tests/wire/test_organizations.py b/tests/wire/test_organizations.py index a263e9f1..669d82e6 100644 --- a/tests/wire/test_organizations.py +++ b/tests/wire/test_organizations.py @@ -9,8 +9,20 @@ def test_organizations_list_() -> None: from_="from", take=1, sort="sort", + include_client_association_for="include_client_association_for", + ) + verify_request_count( + test_id, + "GET", + "/organizations", + { + "from": "from", + "take": "1", + "sort": "sort", + "include_client_association_for": "include_client_association_for", + }, + 1, ) - verify_request_count(test_id, "GET", "/organizations", {"from": "from", "take": "1", "sort": "sort"}, 1) def test_organizations_create() -> None: diff --git a/tests/wire/test_organizations_clients.py b/tests/wire/test_organizations_clients.py new file mode 100644 index 00000000..13ed30cd --- /dev/null +++ b/tests/wire/test_organizations_clients.py @@ -0,0 +1,64 @@ +from .conftest import get_client, verify_request_count + +from auth0.management import CreateOrganizationClientRequestItem + + +def test_organizations_clients_list_() -> None: + """Test list endpoint with WireMock""" + test_id = "organizations.clients.list_.0" + client = get_client(test_id) + client.organizations.clients.list( + id="id", + from_="from", + take=1, + ) + verify_request_count(test_id, "GET", "/organizations/id/clients", {"from": "from", "take": "1"}, 1) + + +def test_organizations_clients_create() -> None: + """Test create endpoint with WireMock""" + test_id = "organizations.clients.create.0" + client = get_client(test_id) + client.organizations.clients.create( + id="id", + clients=[ + CreateOrganizationClientRequestItem( + client_id="client_id", + use_for_member_access=True, + ) + ], + ) + verify_request_count(test_id, "POST", "/organizations/id/clients", None, 1) + + +def test_organizations_clients_delete() -> None: + """Test delete endpoint with WireMock""" + test_id = "organizations.clients.delete.0" + client = get_client(test_id) + client.organizations.clients.delete( + id="id", + clients=["clients"], + ) + verify_request_count(test_id, "DELETE", "/organizations/id/clients", None, 1) + + +def test_organizations_clients_get() -> None: + """Test get endpoint with WireMock""" + test_id = "organizations.clients.get.0" + client = get_client(test_id) + client.organizations.clients.get( + id="id", + client_id="client_id", + ) + verify_request_count(test_id, "GET", "/organizations/id/clients/client_id", None, 1) + + +def test_organizations_clients_update() -> None: + """Test update endpoint with WireMock""" + test_id = "organizations.clients.update.0" + client = get_client(test_id) + client.organizations.clients.update( + id="id", + client_id="client_id", + ) + verify_request_count(test_id, "PATCH", "/organizations/id/clients/client_id", None, 1) diff --git a/tests/wire/test_organizations_roles_groups.py b/tests/wire/test_organizations_roles_groups.py new file mode 100644 index 00000000..b461d7b8 --- /dev/null +++ b/tests/wire/test_organizations_roles_groups.py @@ -0,0 +1,16 @@ +from .conftest import get_client, verify_request_count + + +def test_organizations_roles_groups_list_() -> None: + """Test list endpoint with WireMock""" + test_id = "organizations.roles.groups.list_.0" + client = get_client(test_id) + client.organizations.roles.groups.list( + organization_id="organization_id", + role_id="role_id", + from_="from", + take=1, + ) + verify_request_count( + test_id, "GET", "/organizations/organization_id/roles/role_id/groups", {"from": "from", "take": "1"}, 1 + ) diff --git a/tests/wire/test_roles.py b/tests/wire/test_roles.py index 4dc57659..e8ba16bf 100644 --- a/tests/wire/test_roles.py +++ b/tests/wire/test_roles.py @@ -6,16 +6,17 @@ def test_roles_list_() -> None: test_id = "roles.list_.0" client = get_client(test_id) client.roles.list( - per_page=1, - page=1, - include_totals=True, name_filter="name_filter", + type="tenant", + owner_id="owner_id", + from_="from", + take=1, ) verify_request_count( test_id, "GET", "/roles", - {"per_page": "1", "page": "1", "include_totals": "true", "name_filter": "name_filter"}, + {"name_filter": "name_filter", "type": "tenant", "owner_id": "owner_id", "from": "from", "take": "1"}, 1, ) diff --git a/wiremock/wiremock-mappings.json b/wiremock/wiremock-mappings.json index e339c10b..f6cb43d3 100644 --- a/wiremock/wiremock-mappings.json +++ b/wiremock/wiremock-mappings.json @@ -3551,12 +3551,15 @@ }, "sort": { "equalTo": "sort" + }, + "include_client_association_for": { + "equalTo": "include_client_association_for" } } }, "response": { "status": 200, - "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\"\n }\n ]\n}", + "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -3588,7 +3591,7 @@ }, "response": { "status": 201, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"enabled_connections\": [\n {\n \"connection_id\": \"connection_id\",\n \"assign_membership_on_login\": true,\n \"show_as_button\": true,\n \"is_signup_enabled\": true\n }\n ]\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n },\n \"enabled_connections\": [\n {\n \"connection_id\": \"connection_id\",\n \"assign_membership_on_login\": true,\n \"show_as_button\": true,\n \"is_signup_enabled\": true\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -3624,7 +3627,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n }\n}", "headers": { "Content-Type": "application/json" } @@ -3660,7 +3663,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n }\n}", "headers": { "Content-Type": "application/json" } @@ -3732,7 +3735,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n }\n}", "headers": { "Content-Type": "application/json" } @@ -4400,23 +4403,26 @@ } }, "queryParameters": { - "per_page": { - "equalTo": "1" + "name_filter": { + "equalTo": "name_filter" }, - "page": { - "equalTo": "1" + "type": { + "equalTo": "tenant" }, - "include_totals": { - "equalTo": "true" + "owner_id": { + "equalTo": "owner_id" }, - "name_filter": { - "equalTo": "name_filter" + "from": { + "equalTo": "from" + }, + "take": { + "equalTo": "1" } } }, "response": { "status": 200, - "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ]\n}", + "body": "{\n \"next\": \"next\",\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -4448,7 +4454,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n}", "headers": { "Content-Type": "application/json" } @@ -4484,7 +4490,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n}", "headers": { "Content-Type": "application/json" } @@ -4556,7 +4562,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n}", "headers": { "Content-Type": "application/json" } @@ -8154,7 +8160,7 @@ }, "response": { "status": 200, - "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\"\n }\n ]\n}", + "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -10006,7 +10012,7 @@ }, "response": { "status": 200, - "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ],\n \"next\": \"next\"\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ],\n \"next\": \"next\"\n}", "headers": { "Content-Type": "application/json" } @@ -12125,6 +12131,200 @@ } } }, + { + "id": "a3c9ba95-a693-4d69-a1b3-1aa9120eb072", + "name": "List organization client associations - default", + "request": { + "urlPathTemplate": "/organizations/{id}/clients", + "method": "GET", + "headers": { + "Authorization": { + "matches": "Bearer .+" + } + }, + "pathParameters": { + "id": { + "equalTo": "id" + } + }, + "queryParameters": { + "from": { + "equalTo": "from" + }, + "take": { + "equalTo": "1" + } + } + }, + "response": { + "status": 200, + "body": "{\n \"clients\": [\n {\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {}\n }\n ],\n \"next\": \"next\"\n}", + "headers": { + "Content-Type": "application/json" + } + }, + "uuid": "a3c9ba95-a693-4d69-a1b3-1aa9120eb072", + "persistent": true, + "priority": 3, + "metadata": { + "mocklab": { + "created": { + "at": "2020-01-01T00:00:00.000Z", + "via": "SYSTEM" + } + } + } + }, + { + "id": "2fa25415-ea73-486d-a4db-dc430b35eb0b", + "name": "Associate clients with an organization - default", + "request": { + "urlPathTemplate": "/organizations/{id}/clients", + "method": "POST", + "headers": { + "Authorization": { + "matches": "Bearer .+" + } + }, + "pathParameters": { + "id": { + "equalTo": "id" + } + } + }, + "response": { + "status": 201, + "body": "[\n {\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {\n \"name\": \"name\",\n \"app_type\": \"app_type\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"grant_types\": [\n \"grant_types\"\n ],\n \"organization_usage\": \"deny\"\n }\n }\n]", + "headers": { + "Content-Type": "application/json" + } + }, + "uuid": "2fa25415-ea73-486d-a4db-dc430b35eb0b", + "persistent": true, + "priority": 3, + "metadata": { + "mocklab": { + "created": { + "at": "2020-01-01T00:00:00.000Z", + "via": "SYSTEM" + } + } + } + }, + { + "id": "20855d1e-636b-4663-bac9-875b3eb0d7b3", + "name": "Remove client associations from an organization - default", + "request": { + "urlPathTemplate": "/organizations/{id}/clients", + "method": "DELETE", + "headers": { + "Authorization": { + "matches": "Bearer .+" + } + }, + "pathParameters": { + "id": { + "equalTo": "id" + } + } + }, + "response": { + "status": 200, + "body": "\"\"", + "headers": { + "Content-Type": "application/json" + } + }, + "uuid": "20855d1e-636b-4663-bac9-875b3eb0d7b3", + "persistent": true, + "priority": 3, + "metadata": { + "mocklab": { + "created": { + "at": "2020-01-01T00:00:00.000Z", + "via": "SYSTEM" + } + } + } + }, + { + "id": "87f91e02-b7a6-470d-9913-43e936377815", + "name": "Get an organization client association - default", + "request": { + "urlPathTemplate": "/organizations/{id}/clients/{client_id}", + "method": "GET", + "headers": { + "Authorization": { + "matches": "Bearer .+" + } + }, + "pathParameters": { + "id": { + "equalTo": "id" + }, + "client_id": { + "equalTo": "client_id" + } + } + }, + "response": { + "status": 200, + "body": "{\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {\n \"name\": \"name\",\n \"app_type\": \"app_type\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"grant_types\": [\n \"grant_types\"\n ],\n \"organization_usage\": \"deny\"\n }\n}", + "headers": { + "Content-Type": "application/json" + } + }, + "uuid": "87f91e02-b7a6-470d-9913-43e936377815", + "persistent": true, + "priority": 3, + "metadata": { + "mocklab": { + "created": { + "at": "2020-01-01T00:00:00.000Z", + "via": "SYSTEM" + } + } + } + }, + { + "id": "da35509c-6faa-46b7-b7d9-809febc746b9", + "name": "Update an organization client association - default", + "request": { + "urlPathTemplate": "/organizations/{id}/clients/{client_id}", + "method": "PATCH", + "headers": { + "Authorization": { + "matches": "Bearer .+" + } + }, + "pathParameters": { + "id": { + "equalTo": "id" + }, + "client_id": { + "equalTo": "client_id" + } + } + }, + "response": { + "status": 200, + "body": "{\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {\n \"name\": \"name\",\n \"app_type\": \"app_type\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"grant_types\": [\n \"grant_types\"\n ],\n \"organization_usage\": \"deny\"\n }\n}", + "headers": { + "Content-Type": "application/json" + } + }, + "uuid": "da35509c-6faa-46b7-b7d9-809febc746b9", + "persistent": true, + "priority": 3, + "metadata": { + "mocklab": { + "created": { + "at": "2020-01-01T00:00:00.000Z", + "via": "SYSTEM" + } + } + } + }, { "id": "4c65b7b7-43a0-4437-b96f-7f47fdad6550", "name": "Get connections associated with an organization - default", @@ -13138,7 +13338,7 @@ }, "response": { "status": 200, - "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ],\n \"next\": \"next\"\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ],\n \"next\": \"next\"\n}", "headers": { "Content-Type": "application/json" } @@ -13313,7 +13513,7 @@ }, "response": { "status": 200, - "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ]\n}", + "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -13459,8 +13659,8 @@ } }, { - "id": "ffccd1de-fe6a-40b4-830b-54a8b73f173c", - "name": "Get the members assigned to an organization role - default", + "id": "b184f317-24f3-4e73-9e7b-c6e7decd08e0", + "name": "List the members assigned to a role in the context of an organization - default", "request": { "urlPathTemplate": "/organizations/{id}/roles/{role_id}/members", "method": "GET", @@ -13499,7 +13699,54 @@ "Content-Type": "application/json" } }, - "uuid": "ffccd1de-fe6a-40b4-830b-54a8b73f173c", + "uuid": "b184f317-24f3-4e73-9e7b-c6e7decd08e0", + "persistent": true, + "priority": 3, + "metadata": { + "mocklab": { + "created": { + "at": "2020-01-01T00:00:00.000Z", + "via": "SYSTEM" + } + } + } + }, + { + "id": "c6a72036-f7db-4e59-a8cf-684c7aa65301", + "name": "List the groups assigned to a role in the context of an organization - default", + "request": { + "urlPathTemplate": "/organizations/{organization_id}/roles/{role_id}/groups", + "method": "GET", + "headers": { + "Authorization": { + "matches": "Bearer .+" + } + }, + "pathParameters": { + "organization_id": { + "equalTo": "organization_id" + }, + "role_id": { + "equalTo": "role_id" + } + }, + "queryParameters": { + "from": { + "equalTo": "from" + }, + "take": { + "equalTo": "1" + } + } + }, + "response": { + "status": 200, + "body": "{\n \"groups\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"external_id\": \"external_id\",\n \"connection_id\": \"connection_id\",\n \"organization_id\": \"organization_id\",\n \"tenant_name\": \"tenant_name\",\n \"description\": \"description\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\"\n }\n ],\n \"next\": \"next\"\n}", + "headers": { + "Content-Type": "application/json" + } + }, + "uuid": "c6a72036-f7db-4e59-a8cf-684c7aa65301", "persistent": true, "priority": 3, "metadata": { @@ -15261,7 +15508,7 @@ }, "response": { "status": 200, - "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\"\n }\n ]\n}", + "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -15463,7 +15710,7 @@ }, "response": { "status": 200, - "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ]\n}", + "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -15745,7 +15992,7 @@ }, "response": { "status": 200, - "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"sources\": [\n \"direct\"\n ]\n }\n ],\n \"next\": \"next\"\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\",\n \"sources\": [\n \"direct\"\n ]\n }\n ],\n \"next\": \"next\"\n}", "headers": { "Content-Type": "application/json" } @@ -15990,6 +16237,6 @@ } ], "meta": { - "total": 428 + "total": 434 } } \ No newline at end of file From ac9306776b863a76d7f915f608822b41e76488bf Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 12:03:12 +0000 Subject: [PATCH 2/2] [fern-replay] Applied customizations Patches applied (5): - patch-c04f0b4d: Fix for incorrect return type and missing __all__ type - patch-f7384913: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries - patch-1e44613d: Added migration guide for v5 to v6 - patch-30b1089a: Updated UPGRADING.md doc - patch-d6d69aeb: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries Patches with unresolved conflicts (3): - patch-4894603d: chore: Restore custom wiring in management/__init__.py - patch-7271f157: Revert wrapper file to preserve Auth0 telemetry customizations - patch-95211006: Restore Auth0 telemetry and custom client wiring after regeneration Run `fern-replay resolve` to apply these customizations. --- .fern/replay.lock | 10065 +++++++++++++++++- UPGRADING.md | 157 + src/auth0/management/__init__.py | 10 + src/auth0/management/core/client_wrapper.py | 5 + 4 files changed, 10100 insertions(+), 137 deletions(-) create mode 100644 UPGRADING.md diff --git a/.fern/replay.lock b/.fern/replay.lock index 1b79014c..d8e592a5 100644 --- a/.fern/replay.lock +++ b/.fern/replay.lock @@ -61,7 +61,13 @@ generations: cli_version: unknown generator_versions: fernapi/fern-python-sdk: 5.17.0 -current_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + - commit_sha: d3b5d6d1c0a0441a1980818c648c806cc9ce88dd + tree_hash: ef4f465c0275af59ff009f3bdfbeb3c95ce0303e + timestamp: 2026-07-27T12:03:00.812Z + cli_version: unknown + generator_versions: + fernapi/fern-python-sdk: 5.17.0 +current_generation: d3b5d6d1c0a0441a1980818c648c806cc9ce88dd patches: - id: patch-4894603d content_hash: sha256:fc35b55720e7e9e354dca29191c5832b7e242ad21ba635310c698ea2c3b70a00 @@ -8820,7 +8826,7 @@ patches: "verifiable_credentials", ] user_owned: true - status: resolving + status: unresolved - id: patch-7271f157 content_hash: sha256:cd98dd1948587cf3396a2eacf46626176784bd00996eb660374161bfef686e93 original_commit: 7271f15759cfb545c9ef82b5a4f519ffe0a89db2 @@ -9001,21 +9007,21 @@ patches: token = await self._async_token() headers["Authorization"] = f"Bearer {token}" return headers - status: resolving + status: unresolved - id: patch-c04f0b4d - content_hash: sha256:a3f66d48f9f65d4741bddcee2521e8db6171a88fac1ac7169a3955283a687e6d + content_hash: sha256:1f70d6e9ee88e929303e46191fe9c8ac4fcd7c6be51fec88a30ffd12b80b5743 original_commit: c04f0b4dbbe8f2300f4f1bf42f62350888a92da5 original_message: Fix for incorrect return type and missing __all__ type original_author: Sourav Basu - base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + base_generation: d3b5d6d1c0a0441a1980818c648c806cc9ce88dd files: - src/auth0/management/__init__.py patch_content: | diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py - index 1ffc57d9..8df9ea3e 100644 + index a592fee1..ce199b0a 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py - @@ -1871,6 +1871,8 @@ if typing.TYPE_CHECKING: + @@ -1875,6 +1875,8 @@ if typing.TYPE_CHECKING: FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, @@ -9024,33 +9030,24 @@ patches: FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, - @@ -3208,6 +3210,8 @@ if typing.TYPE_CHECKING: - from .environment import Auth0Environment - from .event_streams import EventStreamsCreateRequest + @@ -3227,6 +3229,8 @@ if typing.TYPE_CHECKING: + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider from .version import __version__ + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", - @@ -3268,6 +3272,8 @@ _dynamic_imports: typing.Dict[str, str] = { - "AssociateOrganizationClientGrantResponseContent": ".types", - "AsyncApprovalNotificationsChannelsEnum": ".types", - "AsyncAuth0": ".client", - + "AsyncManagementClient": ".management_client", - + "AsyncTokenProvider": ".token_provider", - "AttackProtectionCaptchaArkoseResponseContent": ".types", - "AttackProtectionCaptchaAuthChallengeRequest": ".types", - "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", - @@ -4250,6 +4256,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -4275,6 +4279,7 @@ _dynamic_imports: typing.Dict[str, str] = { "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", - "CustomDomainProvisioningTypeEnum": ".types", - @@ -5082,6 +5089,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "CustomDomainHeader": ".management_client", + @@ -5108,6 +5113,8 @@ _dynamic_imports: typing.Dict[str, str] = { "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", @@ -9059,40 +9056,15 @@ patches: "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", - @@ -5900,6 +5909,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "LogStreamSumoEnum": ".types", - "LogStreamSumoResponseSchema": ".types", - "LogStreamSumoSink": ".types", - + "ManagementClient": ".management_client", - "MdlPresentationProperties": ".types", - "MdlPresentationRequest": ".types", - "MdlPresentationRequestProperties": ".types", - @@ -6162,6 +6172,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "ThirdPartyClientAccessConfig": ".types", - "TokenExchangeProfileResponseContent": ".types", - "TokenExchangeProfileTypeEnum": ".types", - + "TokenProvider": ".token_provider", - "TokenQuota": ".types", - "TokenQuotaClientCredentials": ".types", - "TokenQuotaConfiguration": ".types", - @@ -6491,6 +6502,8 @@ __all__ = [ - "AssociateOrganizationClientGrantResponseContent", - "AsyncApprovalNotificationsChannelsEnum", - "AsyncAuth0", - + "AsyncManagementClient", - + "AsyncTokenProvider", - "AttackProtectionCaptchaArkoseResponseContent", - "AttackProtectionCaptchaAuthChallengeRequest", - "AttackProtectionCaptchaAuthChallengeResponseContent", - @@ -7473,6 +7486,7 @@ __all__ = [ + @@ -7520,6 +7527,7 @@ __all__ = [ "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", + "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", - "CustomDomainProvisioningTypeEnum", - @@ -8305,6 +8319,8 @@ __all__ = [ + "CustomDomainHeader", + @@ -8353,6 +8361,8 @@ __all__ = [ "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", @@ -9101,22 +9073,6 @@ patches: "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts", - @@ -9123,6 +9139,7 @@ __all__ = [ - "LogStreamSumoEnum", - "LogStreamSumoResponseSchema", - "LogStreamSumoSink", - + "ManagementClient", - "MdlPresentationProperties", - "MdlPresentationRequest", - "MdlPresentationRequestProperties", - @@ -9385,6 +9402,7 @@ __all__ = [ - "ThirdPartyClientAccessConfig", - "TokenExchangeProfileResponseContent", - "TokenExchangeProfileTypeEnum", - + "TokenProvider", - "TokenQuota", - "TokenQuotaClientCredentials", - "TokenQuotaConfiguration", theirs_snapshot: src/auth0/management/__init__.py: | # This file was auto-generated by Fern from our API Definition. @@ -9367,6 +9323,8 @@ patches: ClientTokenExchangeTypeEnum, ClientTokenVaultPrivilegedAccessWithCredentialId, ClientTokenVaultPrivilegedAccessWithPublicKey, + ConflictSchema, + ConflictSchemaError, ConnectedAccount, ConnectedAccountAccessTypeEnum, ConnectionAccessTokenUrloAuth1, @@ -10120,6 +10078,8 @@ patches: CreateLogStreamSplunkRequestBody, CreateLogStreamSumoRequestBody, CreateOrganizationAllConnectionResponseContent, + CreateOrganizationClientRequestItem, + CreateOrganizationClientsResponseContent, CreateOrganizationDiscoveryDomainResponseContent, CreateOrganizationInvitationResponseContent, CreateOrganizationResponseContent, @@ -11623,6 +11583,7 @@ patches: GetNetworkAclsResponseContent, GetOrganizationAllConnectionResponseContent, GetOrganizationByNameResponseContent, + GetOrganizationClientResponseContent, GetOrganizationConnectionResponseContent, GetOrganizationDiscoveryDomainByNameResponseContent, GetOrganizationDiscoveryDomainResponseContent, @@ -11720,6 +11681,7 @@ patches: ListNetworkAclsOffsetPaginatedResponseContent, ListOrganizationAllConnectionsOffsetPaginatedResponseContent, ListOrganizationClientGrantsOffsetPaginatedResponseContent, + ListOrganizationClientsResponseContent, ListOrganizationConnectionsOffsetPaginatedResponseContent, ListOrganizationDiscoveryDomainsResponseContent, ListOrganizationGroupRolesResponseContent, @@ -11729,6 +11691,7 @@ patches: ListOrganizationMemberRoleSourceGroupsResponseContent, ListOrganizationMemberRolesOffsetPaginatedResponseContent, ListOrganizationMembersPaginatedResponseContent, + ListOrganizationRoleGroupsResponseContent, ListOrganizationRoleMembersResponseContent, ListOrganizationsPaginatedResponseContent, ListPhoneTemplatesResponseContent, @@ -11738,7 +11701,8 @@ patches: ListRoleGroupsResponseContent, ListRolePermissionsOffsetPaginatedResponseContent, ListRoleUsersPaginatedResponseContent, - ListRolesOffsetPaginatedResponseContent, + ListRolesCheckpointPaginatedResponseContent, + ListRolesResponseContent, ListRulesOffsetPaginatedResponseContent, ListScimConfigurationsResponseContent, ListSelfServiceProfileCustomTextResponseContent, @@ -11836,6 +11800,8 @@ patches: NetworkAclsResponseContent, NotFoundErrorBody, NotFoundErrorBodyError, + NotFoundSchema, + NotFoundSchemaError, OauthScope, Organization, OrganizationAccessLevelEnum, @@ -11843,7 +11809,11 @@ patches: OrganizationAllConnectionPost, OrganizationBranding, OrganizationBrandingColors, + OrganizationClient, + OrganizationClientAssociation, OrganizationClientGrant, + OrganizationClientMetadata, + OrganizationClientMetadataOrganizationUsageEnum, OrganizationConnection, OrganizationConnectionInformation, OrganizationDiscoveryDomain, @@ -11948,7 +11918,9 @@ patches: ResourceServerVerificationKeyPemCertificate, RevokedSigningKeysResponseContent, Role, + RoleGroup, RoleMember, + RoleTypeEnum, RoleUser, RollbackActionModuleResponseContent, RotateClientSecretResponseContent, @@ -12183,6 +12155,7 @@ patches: UpdateLogStreamResponseContent, UpdateNetworkAclResponseContent, UpdateOrganizationAllConnectionResponseContent, + UpdateOrganizationClientResponseContent, UpdateOrganizationConnectionResponseContent, UpdateOrganizationDiscoveryDomainResponseContent, UpdateOrganizationResponseContent, @@ -12330,6 +12303,8 @@ patches: from .client import AsyncAuth0, Auth0 from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider from .version import __version__ from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient from .token_provider import AsyncTokenProvider, TokenProvider @@ -12580,6 +12555,8 @@ patches: "ClientTokenVaultPrivilegedAccessWithCredentialId": ".types", "ClientTokenVaultPrivilegedAccessWithPublicKey": ".types", "ConflictError": ".errors", + "ConflictSchema": ".types", + "ConflictSchemaError": ".types", "ConnectedAccount": ".types", "ConnectedAccountAccessTypeEnum": ".types", "ConnectionAccessTokenUrloAuth1": ".types", @@ -13334,6 +13311,8 @@ patches: "CreateLogStreamSplunkRequestBody": ".types", "CreateLogStreamSumoRequestBody": ".types", "CreateOrganizationAllConnectionResponseContent": ".types", + "CreateOrganizationClientRequestItem": ".types", + "CreateOrganizationClientsResponseContent": ".types", "CreateOrganizationDiscoveryDomainResponseContent": ".types", "CreateOrganizationInvitationResponseContent": ".types", "CreateOrganizationResponseContent": ".types", @@ -13380,6 +13359,7 @@ patches: "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainProvisioningTypeEnum": ".types", "CustomDomainStatusFilterEnum": ".types", "CustomDomainTlsPolicyEnum": ".types", @@ -14842,6 +14822,7 @@ patches: "GetNetworkAclsResponseContent": ".types", "GetOrganizationAllConnectionResponseContent": ".types", "GetOrganizationByNameResponseContent": ".types", + "GetOrganizationClientResponseContent": ".types", "GetOrganizationConnectionResponseContent": ".types", "GetOrganizationDiscoveryDomainByNameResponseContent": ".types", "GetOrganizationDiscoveryDomainResponseContent": ".types", @@ -14941,6 +14922,7 @@ patches: "ListNetworkAclsOffsetPaginatedResponseContent": ".types", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent": ".types", "ListOrganizationClientGrantsOffsetPaginatedResponseContent": ".types", + "ListOrganizationClientsResponseContent": ".types", "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".types", "ListOrganizationDiscoveryDomainsResponseContent": ".types", "ListOrganizationGroupRolesResponseContent": ".types", @@ -14950,6 +14932,7 @@ patches: "ListOrganizationMemberRoleSourceGroupsResponseContent": ".types", "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", "ListOrganizationMembersPaginatedResponseContent": ".types", + "ListOrganizationRoleGroupsResponseContent": ".types", "ListOrganizationRoleMembersResponseContent": ".types", "ListOrganizationsPaginatedResponseContent": ".types", "ListPhoneTemplatesResponseContent": ".types", @@ -14959,7 +14942,8 @@ patches: "ListRoleGroupsResponseContent": ".types", "ListRolePermissionsOffsetPaginatedResponseContent": ".types", "ListRoleUsersPaginatedResponseContent": ".types", - "ListRolesOffsetPaginatedResponseContent": ".types", + "ListRolesCheckpointPaginatedResponseContent": ".types", + "ListRolesResponseContent": ".types", "ListRulesOffsetPaginatedResponseContent": ".types", "ListScimConfigurationsResponseContent": ".types", "ListSelfServiceProfileCustomTextResponseContent": ".types", @@ -15059,6 +15043,8 @@ patches: "NotFoundError": ".errors", "NotFoundErrorBody": ".types", "NotFoundErrorBodyError": ".types", + "NotFoundSchema": ".types", + "NotFoundSchemaError": ".types", "OauthScope": ".types", "Organization": ".types", "OrganizationAccessLevelEnum": ".types", @@ -15066,7 +15052,11 @@ patches: "OrganizationAllConnectionPost": ".types", "OrganizationBranding": ".types", "OrganizationBrandingColors": ".types", + "OrganizationClient": ".types", + "OrganizationClientAssociation": ".types", "OrganizationClientGrant": ".types", + "OrganizationClientMetadata": ".types", + "OrganizationClientMetadataOrganizationUsageEnum": ".types", "OrganizationConnection": ".types", "OrganizationConnectionInformation": ".types", "OrganizationDiscoveryDomain": ".types", @@ -15173,7 +15163,9 @@ patches: "ResourceServerVerificationKeyPemCertificate": ".types", "RevokedSigningKeysResponseContent": ".types", "Role": ".types", + "RoleGroup": ".types", "RoleMember": ".types", + "RoleTypeEnum": ".types", "RoleUser": ".types", "RollbackActionModuleResponseContent": ".types", "RotateClientSecretResponseContent": ".types", @@ -15412,6 +15404,7 @@ patches: "UpdateLogStreamResponseContent": ".types", "UpdateNetworkAclResponseContent": ".types", "UpdateOrganizationAllConnectionResponseContent": ".types", + "UpdateOrganizationClientResponseContent": ".types", "UpdateOrganizationConnectionResponseContent": ".types", "UpdateOrganizationDiscoveryDomainResponseContent": ".types", "UpdateOrganizationResponseContent": ".types", @@ -15810,6 +15803,8 @@ patches: "ClientTokenVaultPrivilegedAccessWithCredentialId", "ClientTokenVaultPrivilegedAccessWithPublicKey", "ConflictError", + "ConflictSchema", + "ConflictSchemaError", "ConnectedAccount", "ConnectedAccountAccessTypeEnum", "ConnectionAccessTokenUrloAuth1", @@ -16564,6 +16559,8 @@ patches: "CreateLogStreamSplunkRequestBody", "CreateLogStreamSumoRequestBody", "CreateOrganizationAllConnectionResponseContent", + "CreateOrganizationClientRequestItem", + "CreateOrganizationClientsResponseContent", "CreateOrganizationDiscoveryDomainResponseContent", "CreateOrganizationInvitationResponseContent", "CreateOrganizationResponseContent", @@ -16610,6 +16607,7 @@ patches: "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", + "CustomDomainHeader", "CustomDomainProvisioningTypeEnum", "CustomDomainStatusFilterEnum", "CustomDomainTlsPolicyEnum", @@ -18072,6 +18070,7 @@ patches: "GetNetworkAclsResponseContent", "GetOrganizationAllConnectionResponseContent", "GetOrganizationByNameResponseContent", + "GetOrganizationClientResponseContent", "GetOrganizationConnectionResponseContent", "GetOrganizationDiscoveryDomainByNameResponseContent", "GetOrganizationDiscoveryDomainResponseContent", @@ -18171,6 +18170,7 @@ patches: "ListNetworkAclsOffsetPaginatedResponseContent", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent", "ListOrganizationClientGrantsOffsetPaginatedResponseContent", + "ListOrganizationClientsResponseContent", "ListOrganizationConnectionsOffsetPaginatedResponseContent", "ListOrganizationDiscoveryDomainsResponseContent", "ListOrganizationGroupRolesResponseContent", @@ -18180,6 +18180,7 @@ patches: "ListOrganizationMemberRoleSourceGroupsResponseContent", "ListOrganizationMemberRolesOffsetPaginatedResponseContent", "ListOrganizationMembersPaginatedResponseContent", + "ListOrganizationRoleGroupsResponseContent", "ListOrganizationRoleMembersResponseContent", "ListOrganizationsPaginatedResponseContent", "ListPhoneTemplatesResponseContent", @@ -18189,7 +18190,8 @@ patches: "ListRoleGroupsResponseContent", "ListRolePermissionsOffsetPaginatedResponseContent", "ListRoleUsersPaginatedResponseContent", - "ListRolesOffsetPaginatedResponseContent", + "ListRolesCheckpointPaginatedResponseContent", + "ListRolesResponseContent", "ListRulesOffsetPaginatedResponseContent", "ListScimConfigurationsResponseContent", "ListSelfServiceProfileCustomTextResponseContent", @@ -18289,6 +18291,8 @@ patches: "NotFoundError", "NotFoundErrorBody", "NotFoundErrorBodyError", + "NotFoundSchema", + "NotFoundSchemaError", "OauthScope", "Organization", "OrganizationAccessLevelEnum", @@ -18296,7 +18300,11 @@ patches: "OrganizationAllConnectionPost", "OrganizationBranding", "OrganizationBrandingColors", + "OrganizationClient", + "OrganizationClientAssociation", "OrganizationClientGrant", + "OrganizationClientMetadata", + "OrganizationClientMetadataOrganizationUsageEnum", "OrganizationConnection", "OrganizationConnectionInformation", "OrganizationDiscoveryDomain", @@ -18403,7 +18411,9 @@ patches: "ResourceServerVerificationKeyPemCertificate", "RevokedSigningKeysResponseContent", "Role", + "RoleGroup", "RoleMember", + "RoleTypeEnum", "RoleUser", "RollbackActionModuleResponseContent", "RotateClientSecretResponseContent", @@ -18642,6 +18652,7 @@ patches: "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", + "UpdateOrganizationClientResponseContent", "UpdateOrganizationConnectionResponseContent", "UpdateOrganizationDiscoveryDomainResponseContent", "UpdateOrganizationResponseContent", @@ -28733,20 +28744,21 @@ patches: headers["Authorization"] = f"Bearer {token}" return headers user_owned: true + status: unresolved - id: patch-f7384913 - content_hash: sha256:a3f66d48f9f65d4741bddcee2521e8db6171a88fac1ac7169a3955283a687e6d + content_hash: sha256:1f70d6e9ee88e929303e46191fe9c8ac4fcd7c6be51fec88a30ffd12b80b5743 original_commit: f7384913ab0a14df83dbc602d2b694e2cb7b7668 original_message: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries original_author: Kunal Dawar - base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + base_generation: d3b5d6d1c0a0441a1980818c648c806cc9ce88dd files: - src/auth0/management/__init__.py patch_content: | diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py - index 1ffc57d9..8df9ea3e 100644 + index a592fee1..ce199b0a 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py - @@ -1871,6 +1871,8 @@ if typing.TYPE_CHECKING: + @@ -1875,6 +1875,8 @@ if typing.TYPE_CHECKING: FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, @@ -28755,33 +28767,24 @@ patches: FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, - @@ -3208,6 +3210,8 @@ if typing.TYPE_CHECKING: - from .environment import Auth0Environment - from .event_streams import EventStreamsCreateRequest + @@ -3227,6 +3229,8 @@ if typing.TYPE_CHECKING: + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider from .version import __version__ + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", - @@ -3268,6 +3272,8 @@ _dynamic_imports: typing.Dict[str, str] = { - "AssociateOrganizationClientGrantResponseContent": ".types", - "AsyncApprovalNotificationsChannelsEnum": ".types", - "AsyncAuth0": ".client", - + "AsyncManagementClient": ".management_client", - + "AsyncTokenProvider": ".token_provider", - "AttackProtectionCaptchaArkoseResponseContent": ".types", - "AttackProtectionCaptchaAuthChallengeRequest": ".types", - "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", - @@ -4250,6 +4256,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -4275,6 +4279,7 @@ _dynamic_imports: typing.Dict[str, str] = { "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", - "CustomDomainProvisioningTypeEnum": ".types", - @@ -5082,6 +5089,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "CustomDomainHeader": ".management_client", + @@ -5108,6 +5113,8 @@ _dynamic_imports: typing.Dict[str, str] = { "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", @@ -28790,40 +28793,15 @@ patches: "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", - @@ -5900,6 +5909,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "LogStreamSumoEnum": ".types", - "LogStreamSumoResponseSchema": ".types", - "LogStreamSumoSink": ".types", - + "ManagementClient": ".management_client", - "MdlPresentationProperties": ".types", - "MdlPresentationRequest": ".types", - "MdlPresentationRequestProperties": ".types", - @@ -6162,6 +6172,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "ThirdPartyClientAccessConfig": ".types", - "TokenExchangeProfileResponseContent": ".types", - "TokenExchangeProfileTypeEnum": ".types", - + "TokenProvider": ".token_provider", - "TokenQuota": ".types", - "TokenQuotaClientCredentials": ".types", - "TokenQuotaConfiguration": ".types", - @@ -6491,6 +6502,8 @@ __all__ = [ - "AssociateOrganizationClientGrantResponseContent", - "AsyncApprovalNotificationsChannelsEnum", - "AsyncAuth0", - + "AsyncManagementClient", - + "AsyncTokenProvider", - "AttackProtectionCaptchaArkoseResponseContent", - "AttackProtectionCaptchaAuthChallengeRequest", - "AttackProtectionCaptchaAuthChallengeResponseContent", - @@ -7473,6 +7486,7 @@ __all__ = [ + @@ -7520,6 +7527,7 @@ __all__ = [ "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", + "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", - "CustomDomainProvisioningTypeEnum", - @@ -8305,6 +8319,8 @@ __all__ = [ + "CustomDomainHeader", + @@ -8353,6 +8361,8 @@ __all__ = [ "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", @@ -28832,22 +28810,6 @@ patches: "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts", - @@ -9123,6 +9139,7 @@ __all__ = [ - "LogStreamSumoEnum", - "LogStreamSumoResponseSchema", - "LogStreamSumoSink", - + "ManagementClient", - "MdlPresentationProperties", - "MdlPresentationRequest", - "MdlPresentationRequestProperties", - @@ -9385,6 +9402,7 @@ __all__ = [ - "ThirdPartyClientAccessConfig", - "TokenExchangeProfileResponseContent", - "TokenExchangeProfileTypeEnum", - + "TokenProvider", - "TokenQuota", - "TokenQuotaClientCredentials", - "TokenQuotaConfiguration", theirs_snapshot: src/auth0/management/__init__.py: | # This file was auto-generated by Fern from our API Definition. @@ -29098,6 +29060,8 @@ patches: ClientTokenExchangeTypeEnum, ClientTokenVaultPrivilegedAccessWithCredentialId, ClientTokenVaultPrivilegedAccessWithPublicKey, + ConflictSchema, + ConflictSchemaError, ConnectedAccount, ConnectedAccountAccessTypeEnum, ConnectionAccessTokenUrloAuth1, @@ -29851,6 +29815,8 @@ patches: CreateLogStreamSplunkRequestBody, CreateLogStreamSumoRequestBody, CreateOrganizationAllConnectionResponseContent, + CreateOrganizationClientRequestItem, + CreateOrganizationClientsResponseContent, CreateOrganizationDiscoveryDomainResponseContent, CreateOrganizationInvitationResponseContent, CreateOrganizationResponseContent, @@ -31354,6 +31320,7 @@ patches: GetNetworkAclsResponseContent, GetOrganizationAllConnectionResponseContent, GetOrganizationByNameResponseContent, + GetOrganizationClientResponseContent, GetOrganizationConnectionResponseContent, GetOrganizationDiscoveryDomainByNameResponseContent, GetOrganizationDiscoveryDomainResponseContent, @@ -31451,6 +31418,7 @@ patches: ListNetworkAclsOffsetPaginatedResponseContent, ListOrganizationAllConnectionsOffsetPaginatedResponseContent, ListOrganizationClientGrantsOffsetPaginatedResponseContent, + ListOrganizationClientsResponseContent, ListOrganizationConnectionsOffsetPaginatedResponseContent, ListOrganizationDiscoveryDomainsResponseContent, ListOrganizationGroupRolesResponseContent, @@ -31460,6 +31428,7 @@ patches: ListOrganizationMemberRoleSourceGroupsResponseContent, ListOrganizationMemberRolesOffsetPaginatedResponseContent, ListOrganizationMembersPaginatedResponseContent, + ListOrganizationRoleGroupsResponseContent, ListOrganizationRoleMembersResponseContent, ListOrganizationsPaginatedResponseContent, ListPhoneTemplatesResponseContent, @@ -31469,7 +31438,8 @@ patches: ListRoleGroupsResponseContent, ListRolePermissionsOffsetPaginatedResponseContent, ListRoleUsersPaginatedResponseContent, - ListRolesOffsetPaginatedResponseContent, + ListRolesCheckpointPaginatedResponseContent, + ListRolesResponseContent, ListRulesOffsetPaginatedResponseContent, ListScimConfigurationsResponseContent, ListSelfServiceProfileCustomTextResponseContent, @@ -31567,6 +31537,8 @@ patches: NetworkAclsResponseContent, NotFoundErrorBody, NotFoundErrorBodyError, + NotFoundSchema, + NotFoundSchemaError, OauthScope, Organization, OrganizationAccessLevelEnum, @@ -31574,7 +31546,11 @@ patches: OrganizationAllConnectionPost, OrganizationBranding, OrganizationBrandingColors, + OrganizationClient, + OrganizationClientAssociation, OrganizationClientGrant, + OrganizationClientMetadata, + OrganizationClientMetadataOrganizationUsageEnum, OrganizationConnection, OrganizationConnectionInformation, OrganizationDiscoveryDomain, @@ -31679,7 +31655,9 @@ patches: ResourceServerVerificationKeyPemCertificate, RevokedSigningKeysResponseContent, Role, + RoleGroup, RoleMember, + RoleTypeEnum, RoleUser, RollbackActionModuleResponseContent, RotateClientSecretResponseContent, @@ -31914,6 +31892,7 @@ patches: UpdateLogStreamResponseContent, UpdateNetworkAclResponseContent, UpdateOrganizationAllConnectionResponseContent, + UpdateOrganizationClientResponseContent, UpdateOrganizationConnectionResponseContent, UpdateOrganizationDiscoveryDomainResponseContent, UpdateOrganizationResponseContent, @@ -32061,6 +32040,8 @@ patches: from .client import AsyncAuth0, Auth0 from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider from .version import __version__ from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient from .token_provider import AsyncTokenProvider, TokenProvider @@ -32311,6 +32292,8 @@ patches: "ClientTokenVaultPrivilegedAccessWithCredentialId": ".types", "ClientTokenVaultPrivilegedAccessWithPublicKey": ".types", "ConflictError": ".errors", + "ConflictSchema": ".types", + "ConflictSchemaError": ".types", "ConnectedAccount": ".types", "ConnectedAccountAccessTypeEnum": ".types", "ConnectionAccessTokenUrloAuth1": ".types", @@ -33065,6 +33048,8 @@ patches: "CreateLogStreamSplunkRequestBody": ".types", "CreateLogStreamSumoRequestBody": ".types", "CreateOrganizationAllConnectionResponseContent": ".types", + "CreateOrganizationClientRequestItem": ".types", + "CreateOrganizationClientsResponseContent": ".types", "CreateOrganizationDiscoveryDomainResponseContent": ".types", "CreateOrganizationInvitationResponseContent": ".types", "CreateOrganizationResponseContent": ".types", @@ -33111,6 +33096,7 @@ patches: "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainProvisioningTypeEnum": ".types", "CustomDomainStatusFilterEnum": ".types", "CustomDomainTlsPolicyEnum": ".types", @@ -34573,6 +34559,7 @@ patches: "GetNetworkAclsResponseContent": ".types", "GetOrganizationAllConnectionResponseContent": ".types", "GetOrganizationByNameResponseContent": ".types", + "GetOrganizationClientResponseContent": ".types", "GetOrganizationConnectionResponseContent": ".types", "GetOrganizationDiscoveryDomainByNameResponseContent": ".types", "GetOrganizationDiscoveryDomainResponseContent": ".types", @@ -34672,6 +34659,7 @@ patches: "ListNetworkAclsOffsetPaginatedResponseContent": ".types", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent": ".types", "ListOrganizationClientGrantsOffsetPaginatedResponseContent": ".types", + "ListOrganizationClientsResponseContent": ".types", "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".types", "ListOrganizationDiscoveryDomainsResponseContent": ".types", "ListOrganizationGroupRolesResponseContent": ".types", @@ -34681,6 +34669,7 @@ patches: "ListOrganizationMemberRoleSourceGroupsResponseContent": ".types", "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", "ListOrganizationMembersPaginatedResponseContent": ".types", + "ListOrganizationRoleGroupsResponseContent": ".types", "ListOrganizationRoleMembersResponseContent": ".types", "ListOrganizationsPaginatedResponseContent": ".types", "ListPhoneTemplatesResponseContent": ".types", @@ -34690,7 +34679,8 @@ patches: "ListRoleGroupsResponseContent": ".types", "ListRolePermissionsOffsetPaginatedResponseContent": ".types", "ListRoleUsersPaginatedResponseContent": ".types", - "ListRolesOffsetPaginatedResponseContent": ".types", + "ListRolesCheckpointPaginatedResponseContent": ".types", + "ListRolesResponseContent": ".types", "ListRulesOffsetPaginatedResponseContent": ".types", "ListScimConfigurationsResponseContent": ".types", "ListSelfServiceProfileCustomTextResponseContent": ".types", @@ -34790,6 +34780,8 @@ patches: "NotFoundError": ".errors", "NotFoundErrorBody": ".types", "NotFoundErrorBodyError": ".types", + "NotFoundSchema": ".types", + "NotFoundSchemaError": ".types", "OauthScope": ".types", "Organization": ".types", "OrganizationAccessLevelEnum": ".types", @@ -34797,7 +34789,11 @@ patches: "OrganizationAllConnectionPost": ".types", "OrganizationBranding": ".types", "OrganizationBrandingColors": ".types", + "OrganizationClient": ".types", + "OrganizationClientAssociation": ".types", "OrganizationClientGrant": ".types", + "OrganizationClientMetadata": ".types", + "OrganizationClientMetadataOrganizationUsageEnum": ".types", "OrganizationConnection": ".types", "OrganizationConnectionInformation": ".types", "OrganizationDiscoveryDomain": ".types", @@ -34904,7 +34900,9 @@ patches: "ResourceServerVerificationKeyPemCertificate": ".types", "RevokedSigningKeysResponseContent": ".types", "Role": ".types", + "RoleGroup": ".types", "RoleMember": ".types", + "RoleTypeEnum": ".types", "RoleUser": ".types", "RollbackActionModuleResponseContent": ".types", "RotateClientSecretResponseContent": ".types", @@ -35143,6 +35141,7 @@ patches: "UpdateLogStreamResponseContent": ".types", "UpdateNetworkAclResponseContent": ".types", "UpdateOrganizationAllConnectionResponseContent": ".types", + "UpdateOrganizationClientResponseContent": ".types", "UpdateOrganizationConnectionResponseContent": ".types", "UpdateOrganizationDiscoveryDomainResponseContent": ".types", "UpdateOrganizationResponseContent": ".types", @@ -35541,6 +35540,8 @@ patches: "ClientTokenVaultPrivilegedAccessWithCredentialId", "ClientTokenVaultPrivilegedAccessWithPublicKey", "ConflictError", + "ConflictSchema", + "ConflictSchemaError", "ConnectedAccount", "ConnectedAccountAccessTypeEnum", "ConnectionAccessTokenUrloAuth1", @@ -36295,6 +36296,8 @@ patches: "CreateLogStreamSplunkRequestBody", "CreateLogStreamSumoRequestBody", "CreateOrganizationAllConnectionResponseContent", + "CreateOrganizationClientRequestItem", + "CreateOrganizationClientsResponseContent", "CreateOrganizationDiscoveryDomainResponseContent", "CreateOrganizationInvitationResponseContent", "CreateOrganizationResponseContent", @@ -36341,6 +36344,7 @@ patches: "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", + "CustomDomainHeader", "CustomDomainProvisioningTypeEnum", "CustomDomainStatusFilterEnum", "CustomDomainTlsPolicyEnum", @@ -37803,6 +37807,7 @@ patches: "GetNetworkAclsResponseContent", "GetOrganizationAllConnectionResponseContent", "GetOrganizationByNameResponseContent", + "GetOrganizationClientResponseContent", "GetOrganizationConnectionResponseContent", "GetOrganizationDiscoveryDomainByNameResponseContent", "GetOrganizationDiscoveryDomainResponseContent", @@ -37902,6 +37907,7 @@ patches: "ListNetworkAclsOffsetPaginatedResponseContent", "ListOrganizationAllConnectionsOffsetPaginatedResponseContent", "ListOrganizationClientGrantsOffsetPaginatedResponseContent", + "ListOrganizationClientsResponseContent", "ListOrganizationConnectionsOffsetPaginatedResponseContent", "ListOrganizationDiscoveryDomainsResponseContent", "ListOrganizationGroupRolesResponseContent", @@ -37911,6 +37917,7 @@ patches: "ListOrganizationMemberRoleSourceGroupsResponseContent", "ListOrganizationMemberRolesOffsetPaginatedResponseContent", "ListOrganizationMembersPaginatedResponseContent", + "ListOrganizationRoleGroupsResponseContent", "ListOrganizationRoleMembersResponseContent", "ListOrganizationsPaginatedResponseContent", "ListPhoneTemplatesResponseContent", @@ -37920,7 +37927,8 @@ patches: "ListRoleGroupsResponseContent", "ListRolePermissionsOffsetPaginatedResponseContent", "ListRoleUsersPaginatedResponseContent", - "ListRolesOffsetPaginatedResponseContent", + "ListRolesCheckpointPaginatedResponseContent", + "ListRolesResponseContent", "ListRulesOffsetPaginatedResponseContent", "ListScimConfigurationsResponseContent", "ListSelfServiceProfileCustomTextResponseContent", @@ -38020,6 +38028,8 @@ patches: "NotFoundError", "NotFoundErrorBody", "NotFoundErrorBodyError", + "NotFoundSchema", + "NotFoundSchemaError", "OauthScope", "Organization", "OrganizationAccessLevelEnum", @@ -38027,7 +38037,11 @@ patches: "OrganizationAllConnectionPost", "OrganizationBranding", "OrganizationBrandingColors", + "OrganizationClient", + "OrganizationClientAssociation", "OrganizationClientGrant", + "OrganizationClientMetadata", + "OrganizationClientMetadataOrganizationUsageEnum", "OrganizationConnection", "OrganizationConnectionInformation", "OrganizationDiscoveryDomain", @@ -38134,7 +38148,9 @@ patches: "ResourceServerVerificationKeyPemCertificate", "RevokedSigningKeysResponseContent", "Role", + "RoleGroup", "RoleMember", + "RoleTypeEnum", "RoleUser", "RollbackActionModuleResponseContent", "RotateClientSecretResponseContent", @@ -38373,6 +38389,7 @@ patches: "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", + "UpdateOrganizationClientResponseContent", "UpdateOrganizationConnectionResponseContent", "UpdateOrganizationDiscoveryDomainResponseContent", "UpdateOrganizationResponseContent", @@ -38501,12 +38518,13 @@ patches: "users", "verifiable_credentials", ] + user_owned: true - id: patch-1e44613d content_hash: sha256:86dbb83b612c614f6ee7ed8e43020b2333433efcd1b2149ba0489e28e78150c5 original_commit: 1e44613dc017468608983dfc1363804d02ed8fc4 original_message: Added migration guide for v5 to v6 original_author: Sourav Basu - base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + base_generation: d3b5d6d1c0a0441a1980818c648c806cc9ce88dd files: - UPGRADING.md patch_content: | @@ -38838,7 +38856,7 @@ patches: original_commit: 30b1089ae90f33c4b431b9d868edd89a6d4697ce original_message: Updated UPGRADING.md doc original_author: Sourav Basu - base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + base_generation: d3b5d6d1c0a0441a1980818c648c806cc9ce88dd files: - UPGRADING.md patch_content: | @@ -39165,3 +39183,9776 @@ patches: This matches the Management API, which always returns these fields for this endpoint. user_owned: true + - id: patch-d6d69aeb + content_hash: sha256:1f70d6e9ee88e929303e46191fe9c8ac4fcd7c6be51fec88a30ffd12b80b5743 + original_commit: d6d69aeb98af7789afffbc697bc8fd50d7d86baa + original_message: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries + original_author: Kunal Dawar + base_generation: d3b5d6d1c0a0441a1980818c648c806cc9ce88dd + files: + - src/auth0/management/__init__.py + patch_content: | + diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py + index a592fee1..ce199b0a 100644 + --- a/src/auth0/management/__init__.py + +++ b/src/auth0/management/__init__.py + @@ -1875,6 +1875,8 @@ if typing.TYPE_CHECKING: + FedCmLoginGoogle, + FedCmLoginGooglePatch, + FedCmLoginPatch, + + FedCmLoginGooglePatch, + + FedCmLoginPatch, + FlowAction, + FlowActionActivecampaign, + FlowActionActivecampaignListContacts, + @@ -3227,6 +3229,8 @@ if typing.TYPE_CHECKING: + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider + from .version import __version__ + + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + + from .token_provider import AsyncTokenProvider, TokenProvider + _dynamic_imports: typing.Dict[str, str] = { + "Action": ".types", + "ActionBase": ".types", + @@ -4275,6 +4279,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "CspReportingEndpoints": ".types", + "CspReportingInfrastructure": ".types", + "CustomDomain": ".types", + + "CustomDomainHeader": ".management_client", + "CustomDomainCustomClientIpHeader": ".types", + "CustomDomainCustomClientIpHeaderEnum": ".types", + "CustomDomainHeader": ".management_client", + @@ -5108,6 +5113,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "FedCmLoginGoogle": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", + + "FedCmLoginGooglePatch": ".types", + + "FedCmLoginPatch": ".types", + "FlowAction": ".types", + "FlowActionActivecampaign": ".types", + "FlowActionActivecampaignListContacts": ".types", + @@ -7520,6 +7527,7 @@ __all__ = [ + "CspReportingEndpoints", + "CspReportingInfrastructure", + "CustomDomain", + + "CustomDomainHeader", + "CustomDomainCustomClientIpHeader", + "CustomDomainCustomClientIpHeaderEnum", + "CustomDomainHeader", + @@ -8353,6 +8361,8 @@ __all__ = [ + "FedCmLoginGoogle", + "FedCmLoginGooglePatch", + "FedCmLoginPatch", + + "FedCmLoginGooglePatch", + + "FedCmLoginPatch", + "FlowAction", + "FlowActionActivecampaign", + "FlowActionActivecampaignListContacts", + theirs_snapshot: + src/auth0/management/__init__.py: | + # This file was auto-generated by Fern from our API Definition. + + # isort: skip_file + + import typing + from importlib import import_module + + if typing.TYPE_CHECKING: + from .types import ( + Action, + ActionBase, + ActionBinding, + ActionBindingRef, + ActionBindingRefTypeEnum, + ActionBindingTypeEnum, + ActionBindingWithRef, + ActionBuildStatusEnum, + ActionDeployedVersion, + ActionError, + ActionExecutionResult, + ActionExecutionStatusEnum, + ActionModuleAction, + ActionModuleDependency, + ActionModuleDependencyRequest, + ActionModuleListItem, + ActionModuleReference, + ActionModuleSecret, + ActionModuleSecretRequest, + ActionModuleVersion, + ActionModuleVersionReference, + ActionSecretRequest, + ActionSecretResponse, + ActionTrigger, + ActionTriggerCompatibleTrigger, + ActionTriggerTypeEnum, + ActionVersion, + ActionVersionBuildStatusEnum, + ActionVersionDependency, + AculClientFilter, + AculClientFilterById, + AculClientFilterByMetadata, + AculClientMetadata, + AculConfigs, + AculConfigsItem, + AculContextConfiguration, + AculContextConfigurationItem, + AculContextEnum, + AculDomainFilter, + AculDomainFilterById, + AculDomainFilterByMetadata, + AculDomainMetadata, + AculFilters, + AculHeadTag, + AculHeadTagAttributes, + AculHeadTagContent, + AculMatchTypeEnum, + AculOrganizationFilter, + AculOrganizationFilterById, + AculOrganizationFilterByMetadata, + AculOrganizationMetadata, + AculRenderingModeEnum, + AddOrganizationConnectionResponseContent, + AnomalyIpFormat, + AppMetadata, + AssessorsTypeEnum, + AssociateOrganizationClientGrantResponseContent, + AsyncApprovalNotificationsChannelsEnum, + AttackProtectionCaptchaArkoseResponseContent, + AttackProtectionCaptchaAuthChallengeRequest, + AttackProtectionCaptchaAuthChallengeResponseContent, + AttackProtectionCaptchaFriendlyCaptchaResponseContent, + AttackProtectionCaptchaHcaptchaResponseContent, + AttackProtectionCaptchaProviderId, + AttackProtectionCaptchaRecaptchaEnterpriseResponseContent, + AttackProtectionCaptchaRecaptchaV2ResponseContent, + AttackProtectionCaptchaSimpleCaptchaResponseContent, + AttackProtectionUpdateCaptchaArkose, + AttackProtectionUpdateCaptchaFriendlyCaptcha, + AttackProtectionUpdateCaptchaHcaptcha, + AttackProtectionUpdateCaptchaRecaptchaEnterprise, + AttackProtectionUpdateCaptchaRecaptchaV2, + AuthenticationMethodTypeEnum, + AuthenticationTypeEnum, + BadRequestSchema, + BadRequestSchemaError, + BotDetectionAllowlist, + BotDetectionChallengePolicyPasswordFlowEnum, + BotDetectionChallengePolicyPasswordResetFlowEnum, + BotDetectionChallengePolicyPasswordlessFlowEnum, + BotDetectionCidrBlock, + BotDetectionIPv4, + BotDetectionIPv6, + BotDetectionIPv6CidrBlock, + BotDetectionIpAddressOrCidrBlock, + BotDetectionLevelEnum, + BotDetectionMonitoringModeEnabled, + BrandingColors, + BrandingFont, + BrandingPageBackground, + BrandingThemeBorders, + BrandingThemeBordersButtonsStyleEnum, + BrandingThemeBordersInputsStyleEnum, + BrandingThemeColors, + BrandingThemeColorsCaptchaWidgetThemeEnum, + BrandingThemeFontBodyText, + BrandingThemeFontButtonsText, + BrandingThemeFontInputLabels, + BrandingThemeFontLinks, + BrandingThemeFontLinksStyleEnum, + BrandingThemeFontSubtitle, + BrandingThemeFontTitle, + BrandingThemeFonts, + BrandingThemeIdentifiers, + BrandingThemeIdentifiersLoginDisplayEnum, + BrandingThemeIdentifiersPhoneDisplay, + BrandingThemeIdentifiersPhoneDisplayFormattingEnum, + BrandingThemeIdentifiersPhoneDisplayMaskingEnum, + BrandingThemePageBackground, + BrandingThemePageBackgroundPageLayoutEnum, + BrandingThemeWidget, + BrandingThemeWidgetHeaderTextAlignmentEnum, + BrandingThemeWidgetLogoPositionEnum, + BrandingThemeWidgetSocialButtonsLayoutEnum, + BreachedPasswordDetectionAdminNotificationFrequencyEnum, + BreachedPasswordDetectionMethodEnum, + BreachedPasswordDetectionPreChangePasswordShieldsEnum, + BreachedPasswordDetectionPreChangePasswordStage, + BreachedPasswordDetectionPreUserRegistrationShieldsEnum, + BreachedPasswordDetectionPreUserRegistrationStage, + BreachedPasswordDetectionShieldsEnum, + BreachedPasswordDetectionStage, + BruteForceProtectionModeEnum, + BruteForceProtectionShieldsEnum, + BulkUpdateAculResponseContent, + CertificateSubjectDnCredential, + CertificateSubjectDnCredentialTypeEnum, + ChangePasswordTicketIdentity, + ChangePasswordTicketResponseContent, + CimdMappedClientAuthenticationMethods, + CimdMappedClientAuthenticationMethodsPrivateKeyJwt, + CimdMappedClientFields, + CimdMappedPrivateKeyJwtCredential, + CimdValidationResult, + Client, + ClientAddonAws, + ClientAddonAzureBlob, + ClientAddonAzureSb, + ClientAddonBox, + ClientAddonCloudBees, + ClientAddonConcur, + ClientAddonDropbox, + ClientAddonEchoSign, + ClientAddonEgnyte, + ClientAddonFirebase, + ClientAddonLayer, + ClientAddonMscrm, + ClientAddonNewRelic, + ClientAddonOag, + ClientAddonOffice365, + ClientAddonRms, + ClientAddonSalesforce, + ClientAddonSalesforceApi, + ClientAddonSalesforceSandboxApi, + ClientAddonSaml, + ClientAddonSamlMapping, + ClientAddonSapapi, + ClientAddonSentry, + ClientAddonSharePoint, + ClientAddonSharePointExternalUrl, + ClientAddonSlack, + ClientAddonSpringCm, + ClientAddonSsoIntegration, + ClientAddonWams, + ClientAddonWsFed, + ClientAddonZendesk, + ClientAddonZoom, + ClientAddons, + ClientAppTypeEnum, + ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration, + ClientAsyncApprovalNotificationsChannelsApiPostConfiguration, + ClientAuthenticationMethod, + ClientAuthenticationMethodPrivateKeyJwt, + ClientAuthenticationMethodPrivateKeyJwtCredentials, + ClientAuthenticationMethodSelfSignedTlsClientAuth, + ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials, + ClientAuthenticationMethodTlsClientAuth, + ClientAuthenticationMethodTlsClientAuthCredentials, + ClientComplianceLevelEnum, + ClientCreateAuthenticationMethod, + ClientCreateAuthenticationMethodPrivateKeyJwt, + ClientCreateAuthenticationMethodPrivateKeyJwtCredentials, + ClientCreateAuthenticationMethodTlsClientAuth, + ClientCreateAuthenticationMethodTlsClientAuthCredentials, + ClientCredential, + ClientCredentialAlgorithmEnum, + ClientCredentialTypeEnum, + ClientDefaultOrganization, + ClientDefaultOrganizationFlowsEnum, + ClientEncryptionKey, + ClientExternalMetadataCreatedByEnum, + ClientExternalMetadataTypeEnum, + ClientGrantAllowAnyOrganizationEnum, + ClientGrantDefaultForEnum, + ClientGrantOrganizationNullableUsageEnum, + ClientGrantOrganizationUsageEnum, + ClientGrantResponseContent, + ClientGrantSubjectTypeEnum, + ClientJwtConfiguration, + ClientJwtConfigurationScopes, + ClientMetadata, + ClientMobile, + ClientMobileAndroid, + ClientMobileiOs, + ClientMyOrganizationConfigurationAllowedStrategiesEnum, + ClientMyOrganizationDeletionBehaviorEnum, + ClientMyOrganizationPatchConfiguration, + ClientMyOrganizationPostConfiguration, + ClientMyOrganizationResponseConfiguration, + ClientOidcBackchannelLogoutInitiators, + ClientOidcBackchannelLogoutInitiatorsEnum, + ClientOidcBackchannelLogoutInitiatorsModeEnum, + ClientOidcBackchannelLogoutSessionMetadata, + ClientOidcBackchannelLogoutSettings, + ClientOrganizationDiscoveryEnum, + ClientOrganizationRequireBehaviorEnum, + ClientOrganizationRequireBehaviorPatchEnum, + ClientOrganizationUsageEnum, + ClientOrganizationUsagePatchEnum, + ClientRedirectionPolicyEnum, + ClientRefreshTokenConfiguration, + ClientRefreshTokenPolicy, + ClientSessionTransferAllowedAuthenticationMethodsEnum, + ClientSessionTransferConfiguration, + ClientSessionTransferDelegationConfiguration, + ClientSessionTransferDelegationDeviceBindingEnum, + ClientSessionTransferDeviceBindingEnum, + ClientSignedRequestObjectWithCredentialId, + ClientSignedRequestObjectWithPublicKey, + ClientSigningKey, + ClientSigningKeys, + ClientThirdPartySecurityModeEnum, + ClientTokenEndpointAuthMethodEnum, + ClientTokenEndpointAuthMethodOrNullEnum, + ClientTokenExchangeConfiguration, + ClientTokenExchangeConfigurationOrNull, + ClientTokenExchangeTypeEnum, + ClientTokenVaultPrivilegedAccessWithCredentialId, + ClientTokenVaultPrivilegedAccessWithPublicKey, + ConflictSchema, + ConflictSchemaError, + ConnectedAccount, + ConnectedAccountAccessTypeEnum, + ConnectionAccessTokenUrloAuth1, + ConnectionAcrValuesSupported, + ConnectionAdminAccessTokenExpiresInGoogleApps, + ConnectionAdminAccessTokenGoogleApps, + ConnectionAdminRefreshTokenGoogleApps, + ConnectionAgentIpad, + ConnectionAgentModeAd, + ConnectionAgentVersionAd, + ConnectionAllowedAudiencesGoogleOAuth2, + ConnectionApiBehaviorEnum, + ConnectionApiEnableGroups, + ConnectionApiEnableGroupsGoogleApps, + ConnectionApiEnableUsers, + ConnectionApiEnableUsersGoogleApps, + ConnectionAppDomainAzureAd, + ConnectionAssertionDecryptionAlgorithmProfileEnum, + ConnectionAssertionDecryptionSettings, + ConnectionAttributeMapAttributes, + ConnectionAttributeMapOidc, + ConnectionAttributeMapOkta, + ConnectionAttributeMapUserinfoScope, + ConnectionAttributes, + ConnectionAuthParamsAdditionalPropertiesOAuth2, + ConnectionAuthParamsEmail, + ConnectionAuthParamsMap, + ConnectionAuthParamsOAuth2, + ConnectionAuthenticationMethods, + ConnectionAuthenticationPurpose, + ConnectionAuthorizationEndpoint, + ConnectionBaseUrlExact, + ConnectionBruteForceProtection, + ConnectionCalculatedThumbprintSaml, + ConnectionCertsAd, + ConnectionClaimTypesSupported, + ConnectionClaimsLocalesSupported, + ConnectionClaimsParameterSupported, + ConnectionClaimsSupported, + ConnectionClientId, + ConnectionClientIdAmazon, + ConnectionClientIdAzureAd, + ConnectionClientIdBitbucket, + ConnectionClientIdExact, + ConnectionClientIdFacebook, + ConnectionClientIdGoogleApps, + ConnectionClientIdGoogleOAuth2, + ConnectionClientIdLine, + ConnectionClientIdLinkedin, + ConnectionClientIdOAuth1, + ConnectionClientIdOAuth2, + ConnectionClientIdOidc, + ConnectionClientIdPaypal, + ConnectionClientIdSalesforce, + ConnectionClientIdWindowsLive, + ConnectionClientProtocolSaml, + ConnectionClientSecret, + ConnectionClientSecretAmazon, + ConnectionClientSecretAzureAd, + ConnectionClientSecretBitbucket, + ConnectionClientSecretExact, + ConnectionClientSecretFacebook, + ConnectionClientSecretGoogleApps, + ConnectionClientSecretGoogleOAuth2, + ConnectionClientSecretLine, + ConnectionClientSecretLinkedin, + ConnectionClientSecretOAuth1, + ConnectionClientSecretOAuth2, + ConnectionClientSecretOidc, + ConnectionClientSecretPaypal, + ConnectionClientSecretSalesforce, + ConnectionClientSecretWindowsLive, + ConnectionCommon, + ConnectionCommunityBaseUrlSalesforce, + ConnectionConfiguration, + ConnectionConnectedAccountsPurpose, + ConnectionConnectedAccountsPurposeXaa, + ConnectionConnectionSettings, + ConnectionConnectionSettingsPkceEnum, + ConnectionCrossAppAccessResourceApp, + ConnectionCrossAppAccessResourceAppStatusEnum, + ConnectionCustomHeadersOAuth2, + ConnectionCustomScripts, + ConnectionDebugSaml, + ConnectionDecryptionKeySaml, + ConnectionDecryptionKeySamlCert, + ConnectionDestinationUrlSaml, + ConnectionDigestAlgorithmEnumSaml, + ConnectionDigestAlgorithmSaml, + ConnectionDisableSelfServiceChangePassword, + ConnectionDisableSignup, + ConnectionDisableSignupSms, + ConnectionDiscoveryUrl, + ConnectionDisplayName, + ConnectionDisplayValuesSupported, + ConnectionDomainAliases, + ConnectionDomainAliasesAd, + ConnectionDomainAliasesAzureAd, + ConnectionDomainAliasesItemsOne, + ConnectionDomainAliasesSaml, + ConnectionDomainGoogleApps, + ConnectionDomainOkta, + ConnectionDpopSigningAlgEnum, + ConnectionDpopSigningAlgValuesSupported, + ConnectionEmailBodyEmail, + ConnectionEmailEmail, + ConnectionEmailEmailSyntax, + ConnectionEmailFromEmail, + ConnectionEmailOtpAuthenticationMethod, + ConnectionEmailSubjectEmail, + ConnectionEnableScriptContext, + ConnectionEnabledClient, + ConnectionEnabledClients, + ConnectionEnabledDatabaseCustomization, + ConnectionEndSessionEndpoint, + ConnectionEntityIdSaml, + ConnectionExtAdmin, + ConnectionExtAgreedTerms, + ConnectionExtAgreedTermsGoogleApps, + ConnectionExtAssignedPlans, + ConnectionExtGroups, + ConnectionExtGroupsAzureAd, + ConnectionExtGroupsGoogleApps, + ConnectionExtIsAdminGoogleApps, + ConnectionExtIsSuspended, + ConnectionExtIsSuspendedGoogleApps, + ConnectionExtProfile, + ConnectionFieldsMap, + ConnectionFieldsMapSaml, + ConnectionFieldsMapSamlValue, + ConnectionForList, + ConnectionForOrganization, + ConnectionForwardReqInfoSms, + ConnectionFreeformScopesAmazon, + ConnectionFreeformScopesGoogleOAuth2, + ConnectionFreeformScopesLinkedin, + ConnectionFreeformScopesPaypal, + ConnectionFreeformScopesSalesforce, + ConnectionFreeformScopesWindowsLive, + ConnectionFromSms, + ConnectionGatewayAuthentication, + ConnectionGatewayAuthenticationAudienceSms, + ConnectionGatewayAuthenticationMethodSms, + ConnectionGatewayAuthenticationSms, + ConnectionGatewayAuthenticationSubjectSms, + ConnectionGatewayUrlSms, + ConnectionGlobalTokenRevocationJwtIssSaml, + ConnectionGlobalTokenRevocationJwtSubSaml, + ConnectionGrantTypesSupported, + ConnectionHandleLoginFromSocialGoogleApps, + ConnectionHttpsUrlWithHttpFallback, + ConnectionHttpsUrlWithHttpFallback2048, + ConnectionHttpsUrlWithHttpFallback255, + ConnectionIconUrl, + ConnectionIconUrlAdfs, + ConnectionIconUrlAzureAd, + ConnectionIconUrlGoogleApps, + ConnectionIconUrlGoogleOAuth2, + ConnectionIconUrlSaml, + ConnectionId, + ConnectionIdTokenEncryptionAlgValuesSupported, + ConnectionIdTokenEncryptionEncValuesSupported, + ConnectionIdTokenSessionExpirySupported, + ConnectionIdTokenSignedResponseAlgEnum, + ConnectionIdTokenSignedResponseAlgs, + ConnectionIdTokenSigningAlgValuesSupported, + ConnectionIdentifierPrecedence, + ConnectionIdentifierPrecedenceEnum, + ConnectionIdentityApiAzureAd, + ConnectionIdentityApiEnumAzureAd, + ConnectionIdentityProviderEnum, + ConnectionImportMode, + ConnectionIpsAd, + ConnectionIsDomainConnection, + ConnectionIssuer, + ConnectionJwksUri, + ConnectionKey, + ConnectionKeyUseEnum, + ConnectionMappingModeEnumOidc, + ConnectionMappingModeEnumOkta, + ConnectionMaxGroupsToRetrieve, + ConnectionMessagingServiceSidSms, + ConnectionMetadataUrlSaml, + ConnectionMetadataXml, + ConnectionMetadataXmlAdfs, + ConnectionMetadataXmlSaml, + ConnectionMfa, + ConnectionName, + ConnectionNamePrefixTemplate, + ConnectionNonPersistentAttrs, + ConnectionOpPolicyUri, + ConnectionOpTosUri, + ConnectionOptions, + ConnectionOptionsAd, + ConnectionOptionsAdfs, + ConnectionOptionsAmazon, + ConnectionOptionsApple, + ConnectionOptionsAuth0, + ConnectionOptionsAuth0Oidc, + ConnectionOptionsAzureAd, + ConnectionOptionsBaidu, + ConnectionOptionsBitbucket, + ConnectionOptionsBitly, + ConnectionOptionsBox, + ConnectionOptionsClientIdGithub, + ConnectionOptionsClientIdTwitter, + ConnectionOptionsClientSecretGithub, + ConnectionOptionsClientSecretTwitter, + ConnectionOptionsCommon, + ConnectionOptionsCommonOidc, + ConnectionOptionsCommonSaml, + ConnectionOptionsCustom, + ConnectionOptionsDaccount, + ConnectionOptionsDeflateSaml, + ConnectionOptionsDropbox, + ConnectionOptionsDwolla, + ConnectionOptionsEmail, + ConnectionOptionsEvernote, + ConnectionOptionsExact, + ConnectionOptionsFacebook, + ConnectionOptionsFitbit, + ConnectionOptionsFreeformScopesGithub, + ConnectionOptionsGitHub, + ConnectionOptionsGoogleApps, + ConnectionOptionsGoogleOAuth2, + ConnectionOptionsIdpInitiatedClientProtocolEnumSaml, + ConnectionOptionsIdpinitiatedSaml, + ConnectionOptionsInstagram, + ConnectionOptionsIp, + ConnectionOptionsLine, + ConnectionOptionsLinkedin, + ConnectionOptionsOAuth1, + ConnectionOptionsOAuth1Common, + ConnectionOptionsOAuth2, + ConnectionOptionsOAuth2Common, + ConnectionOptionsOffice365, + ConnectionOptionsOidc, + ConnectionOptionsOidcMetadata, + ConnectionOptionsOkta, + ConnectionOptionsPaypal, + ConnectionOptionsPingFederate, + ConnectionOptionsPlanningCenter, + ConnectionOptionsProtocolEnumTwitter, + ConnectionOptionsSalesforce, + ConnectionOptionsSalesforceCommunity, + ConnectionOptionsSaml, + ConnectionOptionsScopeGithub, + ConnectionOptionsScopeTwitter, + ConnectionOptionsSharepoint, + ConnectionOptionsShop, + ConnectionOptionsShopify, + ConnectionOptionsSms, + ConnectionOptionsSoundcloud, + ConnectionOptionsThirtySevenSignals, + ConnectionOptionsTwitter, + ConnectionOptionsUntappd, + ConnectionOptionsVkontakte, + ConnectionOptionsWeibo, + ConnectionOptionsWindowsLive, + ConnectionOptionsWordpress, + ConnectionOptionsYahoo, + ConnectionOptionsYandex, + ConnectionPasskeyAuthenticationMethod, + ConnectionPasskeyChallengeUiEnum, + ConnectionPasskeyOptions, + ConnectionPasswordAuthenticationMethod, + ConnectionPasswordComplexityOptions, + ConnectionPasswordDictionaryOptions, + ConnectionPasswordHistoryOptions, + ConnectionPasswordNoPersonalInfoOptions, + ConnectionPasswordOptions, + ConnectionPasswordOptionsComplexity, + ConnectionPasswordOptionsDictionary, + ConnectionPasswordOptionsHistory, + ConnectionPasswordOptionsProfileData, + ConnectionPasswordPolicyEnum, + ConnectionPhoneOtpAuthenticationMethod, + ConnectionPingFederateBaseUrl, + ConnectionPingFederateBaseUrlPingFederate, + ConnectionProfile, + ConnectionProfileBitbucket, + ConnectionProfileConfig, + ConnectionProfileEnabledFeatures, + ConnectionProfileId, + ConnectionProfileName, + ConnectionProfileOrganization, + ConnectionProfileOrganizationAssignMembershipOnLoginEnum, + ConnectionProfileOrganizationShowAsButtonEnum, + ConnectionProfileStrategyOverride, + ConnectionProfileStrategyOverrides, + ConnectionProfileStrategyOverridesConnectionConfig, + ConnectionProfileStrategyOverridesEnabledFeatures, + ConnectionProfileTemplate, + ConnectionProfileTemplateItem, + ConnectionPropertiesOptions, + ConnectionProtocolBindingEnumSaml, + ConnectionProtocolBindingSaml, + ConnectionProviderEnumSms, + ConnectionProviderSms, + ConnectionProvisioningTicketUrl, + ConnectionPurposes, + ConnectionRealmFallback, + ConnectionRealms, + ConnectionRecipientUrlSaml, + ConnectionRegistrationEndpoint, + ConnectionRequestObjectEncryptionAlgValuesSupported, + ConnectionRequestObjectEncryptionEncValuesSupported, + ConnectionRequestObjectSigningAlgValuesSupported, + ConnectionRequestParameterSupported, + ConnectionRequestTemplateSaml, + ConnectionRequestTokenUrloAuth1, + ConnectionRequestUriParameterSupported, + ConnectionRequireRequestUriRegistration, + ConnectionRequiresUsername, + ConnectionResponseCommon, + ConnectionResponseContentAd, + ConnectionResponseContentAdStrategy, + ConnectionResponseContentAdfs, + ConnectionResponseContentAdfsStrategy, + ConnectionResponseContentAmazon, + ConnectionResponseContentAmazonStrategy, + ConnectionResponseContentApple, + ConnectionResponseContentAppleStrategy, + ConnectionResponseContentAuth0, + ConnectionResponseContentAuth0Oidc, + ConnectionResponseContentAuth0OidcStrategy, + ConnectionResponseContentAuth0Strategy, + ConnectionResponseContentAzureAd, + ConnectionResponseContentAzureAdStrategy, + ConnectionResponseContentBaidu, + ConnectionResponseContentBaiduStrategy, + ConnectionResponseContentBitbucket, + ConnectionResponseContentBitbucketStrategy, + ConnectionResponseContentBitly, + ConnectionResponseContentBitlyStrategy, + ConnectionResponseContentBox, + ConnectionResponseContentBoxStrategy, + ConnectionResponseContentCustom, + ConnectionResponseContentCustomStrategy, + ConnectionResponseContentDaccount, + ConnectionResponseContentDaccountStrategy, + ConnectionResponseContentDropbox, + ConnectionResponseContentDropboxStrategy, + ConnectionResponseContentDwolla, + ConnectionResponseContentDwollaStrategy, + ConnectionResponseContentEmail, + ConnectionResponseContentEmailStrategy, + ConnectionResponseContentEvernote, + ConnectionResponseContentEvernoteSandbox, + ConnectionResponseContentEvernoteSandboxStrategy, + ConnectionResponseContentEvernoteStrategy, + ConnectionResponseContentExact, + ConnectionResponseContentExactStrategy, + ConnectionResponseContentFacebook, + ConnectionResponseContentFacebookStrategy, + ConnectionResponseContentFitbit, + ConnectionResponseContentFitbitStrategy, + ConnectionResponseContentGitHub, + ConnectionResponseContentGitHubStrategy, + ConnectionResponseContentGoogleApps, + ConnectionResponseContentGoogleAppsStrategy, + ConnectionResponseContentGoogleOAuth2, + ConnectionResponseContentGoogleOAuth2Strategy, + ConnectionResponseContentInstagram, + ConnectionResponseContentInstagramStrategy, + ConnectionResponseContentIp, + ConnectionResponseContentIpStrategy, + ConnectionResponseContentLine, + ConnectionResponseContentLineStrategy, + ConnectionResponseContentLinkedin, + ConnectionResponseContentLinkedinStrategy, + ConnectionResponseContentOAuth1, + ConnectionResponseContentOAuth1Strategy, + ConnectionResponseContentOAuth2, + ConnectionResponseContentOAuth2Strategy, + ConnectionResponseContentOffice365, + ConnectionResponseContentOffice365Strategy, + ConnectionResponseContentOidc, + ConnectionResponseContentOidcStrategy, + ConnectionResponseContentOkta, + ConnectionResponseContentOktaStrategy, + ConnectionResponseContentPaypal, + ConnectionResponseContentPaypalSandbox, + ConnectionResponseContentPaypalSandboxStrategy, + ConnectionResponseContentPaypalStrategy, + ConnectionResponseContentPingFederate, + ConnectionResponseContentPingFederateStrategy, + ConnectionResponseContentPlanningCenter, + ConnectionResponseContentPlanningCenterStrategy, + ConnectionResponseContentSalesforce, + ConnectionResponseContentSalesforceCommunity, + ConnectionResponseContentSalesforceCommunityStrategy, + ConnectionResponseContentSalesforceSandbox, + ConnectionResponseContentSalesforceSandboxStrategy, + ConnectionResponseContentSalesforceStrategy, + ConnectionResponseContentSaml, + ConnectionResponseContentSamlStrategy, + ConnectionResponseContentSharepoint, + ConnectionResponseContentSharepointStrategy, + ConnectionResponseContentShop, + ConnectionResponseContentShopStrategy, + ConnectionResponseContentShopify, + ConnectionResponseContentShopifyStrategy, + ConnectionResponseContentSms, + ConnectionResponseContentSmsStrategy, + ConnectionResponseContentSoundcloud, + ConnectionResponseContentSoundcloudStrategy, + ConnectionResponseContentThirtySevenSignals, + ConnectionResponseContentThirtySevenSignalsStrategy, + ConnectionResponseContentTwitter, + ConnectionResponseContentTwitterStrategy, + ConnectionResponseContentUntappd, + ConnectionResponseContentUntappdStrategy, + ConnectionResponseContentVkontakte, + ConnectionResponseContentVkontakteStrategy, + ConnectionResponseContentWeibo, + ConnectionResponseContentWeiboStrategy, + ConnectionResponseContentWindowsLive, + ConnectionResponseContentWindowsLiveStrategy, + ConnectionResponseContentWordpress, + ConnectionResponseContentWordpressStrategy, + ConnectionResponseContentYahoo, + ConnectionResponseContentYahooStrategy, + ConnectionResponseContentYandex, + ConnectionResponseContentYandexStrategy, + ConnectionResponseModesSupported, + ConnectionResponseTypesSupported, + ConnectionScopeAmazon, + ConnectionScopeArray, + ConnectionScopeArrayFacebook, + ConnectionScopeArrayWindowsLive, + ConnectionScopeAzureAd, + ConnectionScopeFacebook, + ConnectionScopeGoogleApps, + ConnectionScopeGoogleOAuth2, + ConnectionScopeItem, + ConnectionScopeItemGoogleApps, + ConnectionScopeLinkedin, + ConnectionScopeOAuth2, + ConnectionScopeOidc, + ConnectionScopePaypal, + ConnectionScopeSalesforce, + ConnectionScopesSupported, + ConnectionScriptsOAuth1, + ConnectionScriptsOAuth2, + ConnectionSendBackChannelNonce, + ConnectionServiceDocumentation, + ConnectionSetUserRootAttributesEnum, + ConnectionSha1Thumbprint, + ConnectionShouldTrustEmailVerifiedConnectionEnum, + ConnectionShowAsButton, + ConnectionSignInEndpointAd, + ConnectionSignInEndpointAdfs, + ConnectionSignInEndpointSaml, + ConnectionSignOutEndpointSaml, + ConnectionSignSamlRequestSaml, + ConnectionSignatureAlgorithmEnumSaml, + ConnectionSignatureAlgorithmSaml, + ConnectionSignatureMethodOAuth1, + ConnectionSigningCertSaml, + ConnectionSigningCertificateDerSaml, + ConnectionSigningCertificatePemPingFederate, + ConnectionSigningCertificatePemSaml, + ConnectionSigningKeySaml, + ConnectionSignupBehaviorEnum, + ConnectionStrategyEnum, + ConnectionStrategyVersionEnumLinkedin, + ConnectionStrategyVersionEnumWindowsLive, + ConnectionSubjectTypesSupported, + ConnectionTemplateSms, + ConnectionTemplateSyntaxEnumSms, + ConnectionTenantDomain, + ConnectionTenantDomainAd, + ConnectionTenantDomainAzureAdOne, + ConnectionTenantDomainGoogleApps, + ConnectionTenantDomainSaml, + ConnectionTenantIdAzureAd, + ConnectionThumbprints, + ConnectionThumbprintsAd, + ConnectionThumbprintsSaml, + ConnectionTokenEndpoint, + ConnectionTokenEndpointAuthMethodEnum, + ConnectionTokenEndpointAuthMethodsSupported, + ConnectionTokenEndpointAuthSigningAlgEnum, + ConnectionTokenEndpointAuthSigningAlgValuesSupported, + ConnectionTokenEndpointJwtcaAudFormatEnumOidc, + ConnectionTotpEmail, + ConnectionTotpLengthEmail, + ConnectionTotpLengthPasswordless, + ConnectionTotpLengthSms, + ConnectionTotpSms, + ConnectionTotpTimeStepEmail, + ConnectionTotpTimeStepPasswordless, + ConnectionTotpTimeStepSms, + ConnectionTwilioSidSms, + ConnectionTwilioTokenSms, + ConnectionTypeEnumOidc, + ConnectionTypeEnumOkta, + ConnectionUiLocalesSupported, + ConnectionUpstreamAdditionalProperties, + ConnectionUpstreamAlias, + ConnectionUpstreamAliasEnum, + ConnectionUpstreamParams, + ConnectionUpstreamParamsFacebook, + ConnectionUpstreamValue, + ConnectionUseCommonEndpointAzureAd, + ConnectionUserAuthorizationUrloAuth1, + ConnectionUserIdAttributeSaml, + ConnectionUseridAttributeAzureAd, + ConnectionUseridAttributeEnumAzureAd, + ConnectionUserinfoEncryptionAlgValuesSupported, + ConnectionUserinfoEncryptionEncValuesSupported, + ConnectionUserinfoEndpoint, + ConnectionUserinfoSigningAlgValuesSupported, + ConnectionUsernameValidationOptions, + ConnectionValidationOptions, + ConnectionWaadProtocol, + ConnectionWaadProtocolEnumAzureAd, + ConnectionsDiscoveryUrl, + ConnectionsMetadata, + ConnectionsOidcMetadata, + ContentSecurityPolicyConfig, + CreateActionModuleResponseContent, + CreateActionModuleVersionResponseContent, + CreateActionResponseContent, + CreateBrandingPhoneProviderResponseContent, + CreateBrandingThemeResponseContent, + CreateClientAuthenticationMethodSelfSignedTlsClientAuth, + CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials, + CreateClientGrantResponseContent, + CreateClientResponseContent, + CreateConnectionCommon, + CreateConnectionProfileResponseContent, + CreateConnectionRequestContentAd, + CreateConnectionRequestContentAdStrategy, + CreateConnectionRequestContentAdfs, + CreateConnectionRequestContentAdfsStrategy, + CreateConnectionRequestContentAmazon, + CreateConnectionRequestContentAmazonStrategy, + CreateConnectionRequestContentApple, + CreateConnectionRequestContentAppleStrategy, + CreateConnectionRequestContentAuth0, + CreateConnectionRequestContentAuth0Oidc, + CreateConnectionRequestContentAuth0OidcStrategy, + CreateConnectionRequestContentAuth0Strategy, + CreateConnectionRequestContentAzureAd, + CreateConnectionRequestContentAzureAdStrategy, + CreateConnectionRequestContentBaidu, + CreateConnectionRequestContentBaiduStrategy, + CreateConnectionRequestContentBitbucket, + CreateConnectionRequestContentBitbucketStrategy, + CreateConnectionRequestContentBitly, + CreateConnectionRequestContentBitlyStrategy, + CreateConnectionRequestContentBox, + CreateConnectionRequestContentBoxStrategy, + CreateConnectionRequestContentCustom, + CreateConnectionRequestContentCustomStrategy, + CreateConnectionRequestContentDaccount, + CreateConnectionRequestContentDaccountStrategy, + CreateConnectionRequestContentDropbox, + CreateConnectionRequestContentDropboxStrategy, + CreateConnectionRequestContentDwolla, + CreateConnectionRequestContentDwollaStrategy, + CreateConnectionRequestContentEmail, + CreateConnectionRequestContentEmailStrategy, + CreateConnectionRequestContentEvernote, + CreateConnectionRequestContentEvernoteSandbox, + CreateConnectionRequestContentEvernoteSandboxStrategy, + CreateConnectionRequestContentEvernoteStrategy, + CreateConnectionRequestContentExact, + CreateConnectionRequestContentExactStrategy, + CreateConnectionRequestContentFacebook, + CreateConnectionRequestContentFacebookStrategy, + CreateConnectionRequestContentFitbit, + CreateConnectionRequestContentFitbitStrategy, + CreateConnectionRequestContentGitHub, + CreateConnectionRequestContentGitHubStrategy, + CreateConnectionRequestContentGoogleApps, + CreateConnectionRequestContentGoogleAppsStrategy, + CreateConnectionRequestContentGoogleOAuth2, + CreateConnectionRequestContentGoogleOAuth2Strategy, + CreateConnectionRequestContentInstagram, + CreateConnectionRequestContentInstagramStrategy, + CreateConnectionRequestContentIp, + CreateConnectionRequestContentIpStrategy, + CreateConnectionRequestContentLine, + CreateConnectionRequestContentLineStrategy, + CreateConnectionRequestContentLinkedin, + CreateConnectionRequestContentLinkedinStrategy, + CreateConnectionRequestContentOAuth1, + CreateConnectionRequestContentOAuth1Strategy, + CreateConnectionRequestContentOAuth2, + CreateConnectionRequestContentOAuth2Strategy, + CreateConnectionRequestContentOffice365, + CreateConnectionRequestContentOffice365Strategy, + CreateConnectionRequestContentOidc, + CreateConnectionRequestContentOidcStrategy, + CreateConnectionRequestContentOkta, + CreateConnectionRequestContentOktaStrategy, + CreateConnectionRequestContentPaypal, + CreateConnectionRequestContentPaypalSandbox, + CreateConnectionRequestContentPaypalSandboxStrategy, + CreateConnectionRequestContentPaypalStrategy, + CreateConnectionRequestContentPingFederate, + CreateConnectionRequestContentPingFederateStrategy, + CreateConnectionRequestContentPlanningCenter, + CreateConnectionRequestContentPlanningCenterStrategy, + CreateConnectionRequestContentSalesforce, + CreateConnectionRequestContentSalesforceCommunity, + CreateConnectionRequestContentSalesforceCommunityStrategy, + CreateConnectionRequestContentSalesforceSandbox, + CreateConnectionRequestContentSalesforceSandboxStrategy, + CreateConnectionRequestContentSalesforceStrategy, + CreateConnectionRequestContentSaml, + CreateConnectionRequestContentSamlStrategy, + CreateConnectionRequestContentSharepoint, + CreateConnectionRequestContentSharepointStrategy, + CreateConnectionRequestContentShop, + CreateConnectionRequestContentShopStrategy, + CreateConnectionRequestContentShopify, + CreateConnectionRequestContentShopifyStrategy, + CreateConnectionRequestContentSms, + CreateConnectionRequestContentSmsStrategy, + CreateConnectionRequestContentSoundcloud, + CreateConnectionRequestContentSoundcloudStrategy, + CreateConnectionRequestContentThirtySevenSignals, + CreateConnectionRequestContentThirtySevenSignalsStrategy, + CreateConnectionRequestContentTwitter, + CreateConnectionRequestContentTwitterStrategy, + CreateConnectionRequestContentUntappd, + CreateConnectionRequestContentUntappdStrategy, + CreateConnectionRequestContentVkontakte, + CreateConnectionRequestContentVkontakteStrategy, + CreateConnectionRequestContentWeibo, + CreateConnectionRequestContentWeiboStrategy, + CreateConnectionRequestContentWindowsLive, + CreateConnectionRequestContentWindowsLiveStrategy, + CreateConnectionRequestContentWordpress, + CreateConnectionRequestContentWordpressStrategy, + CreateConnectionRequestContentYahoo, + CreateConnectionRequestContentYahooStrategy, + CreateConnectionRequestContentYandex, + CreateConnectionRequestContentYandexStrategy, + CreateConnectionResponseContent, + CreateCrossAppAccessResourceApp, + CreateCustomDomainResponseContent, + CreateDirectoryProvisioningRequestContent, + CreateDirectoryProvisioningResponseContent, + CreateDirectorySynchronizationResponseContent, + CreateEmailProviderResponseContent, + CreateEmailTemplateResponseContent, + CreateEncryptionKeyPublicWrappingResponseContent, + CreateEncryptionKeyResponseContent, + CreateEncryptionKeyType, + CreateEventStreamActionRequestContent, + CreateEventStreamEventBridgeRequestContent, + CreateEventStreamRedeliveryResponseContent, + CreateEventStreamResponseContent, + CreateEventStreamTestEventResponseContent, + CreateEventStreamWebHookRequestContent, + CreateExportUsersFields, + CreateExportUsersResponseContent, + CreateFlowResponseContent, + CreateFlowsVaultConnectionActivecampaign, + CreateFlowsVaultConnectionActivecampaignApiKey, + CreateFlowsVaultConnectionActivecampaignUninitialized, + CreateFlowsVaultConnectionAirtable, + CreateFlowsVaultConnectionAirtableApiKey, + CreateFlowsVaultConnectionAirtableUninitialized, + CreateFlowsVaultConnectionAuth0, + CreateFlowsVaultConnectionAuth0OauthApp, + CreateFlowsVaultConnectionAuth0Uninitialized, + CreateFlowsVaultConnectionBigquery, + CreateFlowsVaultConnectionBigqueryJwt, + CreateFlowsVaultConnectionBigqueryUninitialized, + CreateFlowsVaultConnectionClearbit, + CreateFlowsVaultConnectionClearbitApiKey, + CreateFlowsVaultConnectionClearbitUninitialized, + CreateFlowsVaultConnectionDocusign, + CreateFlowsVaultConnectionDocusignOauthCode, + CreateFlowsVaultConnectionDocusignUninitialized, + CreateFlowsVaultConnectionGoogleSheets, + CreateFlowsVaultConnectionGoogleSheetsOauthCode, + CreateFlowsVaultConnectionGoogleSheetsUninitialized, + CreateFlowsVaultConnectionHttp, + CreateFlowsVaultConnectionHttpApiKey, + CreateFlowsVaultConnectionHttpBasicAuth, + CreateFlowsVaultConnectionHttpBearer, + CreateFlowsVaultConnectionHttpOauthClientCredentials, + CreateFlowsVaultConnectionHttpUninitialized, + CreateFlowsVaultConnectionHubspot, + CreateFlowsVaultConnectionHubspotApiKey, + CreateFlowsVaultConnectionHubspotOauthCode, + CreateFlowsVaultConnectionHubspotUninitialized, + CreateFlowsVaultConnectionJwt, + CreateFlowsVaultConnectionJwtJwt, + CreateFlowsVaultConnectionJwtUninitialized, + CreateFlowsVaultConnectionMailchimp, + CreateFlowsVaultConnectionMailchimpApiKey, + CreateFlowsVaultConnectionMailchimpOauthCode, + CreateFlowsVaultConnectionMailchimpUninitialized, + CreateFlowsVaultConnectionMailjet, + CreateFlowsVaultConnectionMailjetApiKey, + CreateFlowsVaultConnectionMailjetUninitialized, + CreateFlowsVaultConnectionPipedrive, + CreateFlowsVaultConnectionPipedriveOauthCode, + CreateFlowsVaultConnectionPipedriveToken, + CreateFlowsVaultConnectionPipedriveUninitialized, + CreateFlowsVaultConnectionRequestContent, + CreateFlowsVaultConnectionResponseContent, + CreateFlowsVaultConnectionSalesforce, + CreateFlowsVaultConnectionSalesforceOauthCode, + CreateFlowsVaultConnectionSalesforceUninitialized, + CreateFlowsVaultConnectionSendgrid, + CreateFlowsVaultConnectionSendgridApiKey, + CreateFlowsVaultConnectionSendgridUninitialized, + CreateFlowsVaultConnectionSlack, + CreateFlowsVaultConnectionSlackOauthCode, + CreateFlowsVaultConnectionSlackUninitialized, + CreateFlowsVaultConnectionSlackWebhook, + CreateFlowsVaultConnectionStripe, + CreateFlowsVaultConnectionStripeKeyPair, + CreateFlowsVaultConnectionStripeOauthCode, + CreateFlowsVaultConnectionStripeUninitialized, + CreateFlowsVaultConnectionTelegram, + CreateFlowsVaultConnectionTelegramToken, + CreateFlowsVaultConnectionTelegramUninitialized, + CreateFlowsVaultConnectionTwilio, + CreateFlowsVaultConnectionTwilioApiKey, + CreateFlowsVaultConnectionTwilioUninitialized, + CreateFlowsVaultConnectionWhatsapp, + CreateFlowsVaultConnectionWhatsappToken, + CreateFlowsVaultConnectionWhatsappUninitialized, + CreateFlowsVaultConnectionZapier, + CreateFlowsVaultConnectionZapierUninitialized, + CreateFlowsVaultConnectionZapierWebhook, + CreateFormResponseContent, + CreateGuardianEnrollmentTicketResponseContent, + CreateHookResponseContent, + CreateHookSecretRequestContent, + CreateIdentityAssertionAuthorizationGrant, + CreateImportUsersResponseContent, + CreateLogStreamDatadogRequestBody, + CreateLogStreamEventBridgeRequestBody, + CreateLogStreamEventGridRequestBody, + CreateLogStreamHttpRequestBody, + CreateLogStreamMixpanelRequestBody, + CreateLogStreamRequestContent, + CreateLogStreamResponseContent, + CreateLogStreamSegmentRequestBody, + CreateLogStreamSplunkRequestBody, + CreateLogStreamSumoRequestBody, + CreateOrganizationAllConnectionResponseContent, + CreateOrganizationClientRequestItem, + CreateOrganizationClientsResponseContent, + CreateOrganizationDiscoveryDomainResponseContent, + CreateOrganizationInvitationResponseContent, + CreateOrganizationResponseContent, + CreatePhoneProviderSendTestResponseContent, + CreatePhoneTemplateResponseContent, + CreatePhoneTemplateTestNotificationResponseContent, + CreatePublicKeyDeviceCredentialResponseContent, + CreateRateLimitPolicyResponseContent, + CreateResourceServerResponseContent, + CreateRoleResponseContent, + CreateRuleResponseContent, + CreateScimConfigurationRequestContent, + CreateScimConfigurationResponseContent, + CreateScimTokenResponseContent, + CreateSelfServiceProfileResponseContent, + CreateSelfServiceProfileSsoTicketResponseContent, + CreateTokenExchangeProfileResponseContent, + CreateTokenQuota, + CreateUserAttributeProfileResponseContent, + CreateUserAuthenticationMethodResponseContent, + CreateUserResponseContent, + CreateVerifiableCredentialTemplateResponseContent, + CreateVerificationEmailResponseContent, + CreatedAuthenticationMethodTypeEnum, + CreatedUserAuthenticationMethodTypeEnum, + CredentialDeviceTypeEnum, + CredentialId, + CrossAppAccessRequestingApp, + CrossAppAccessResourceApp, + CrossAppAccessResourceAppStatusEnum, + CspDirectives, + CspFlag, + CspFlags, + CspPolicies, + CspPolicy, + CspPolicyMode, + CspPolicyReporting, + CspReportTo, + CspReportToEndpoint, + CspReportToEndpoints, + CspReportingEndpoints, + CspReportingInfrastructure, + CustomDomain, + CustomDomainCustomClientIpHeader, + CustomDomainCustomClientIpHeaderEnum, + CustomDomainProvisioningTypeEnum, + CustomDomainStatusFilterEnum, + CustomDomainTlsPolicyEnum, + CustomDomainTypeEnum, + CustomDomainVerificationMethodEnum, + CustomProviderConfiguration, + CustomProviderCredentials, + CustomProviderDeliveryMethodEnum, + CustomSigningKeyAlgorithmEnum, + CustomSigningKeyCurveEnum, + CustomSigningKeyJwk, + CustomSigningKeyOperationEnum, + CustomSigningKeyTypeEnum, + CustomSigningKeyUseEnum, + DailyStats, + DefaultMethodEmailIdentifierEnum, + DefaultMethodPhoneNumberIdentifierEnum, + DefaultTokenQuota, + DeleteHookSecretRequestContent, + DeleteUserIdentityResponseContent, + DeleteUserIdentityResponseContentItem, + DeployActionResponseContent, + DeployActionVersionRequestContent, + DeployActionVersionResponseContent, + DeviceCredential, + DeviceCredentialPublicKeyTypeEnum, + DeviceCredentialTypeEnum, + DirectoryProvisioning, + DirectoryProvisioningMappingItem, + DomainCertificate, + DomainCertificateAuthorityEnum, + DomainCertificateStatusEnum, + DomainMetadata, + DomainVerification, + DomainVerificationMethod, + DomainVerificationMethodNameEnum, + DomainVerificationStatusEnum, + EmailAttribute, + EmailAttributeIdentifier, + EmailMailgunRegionEnum, + EmailProviderCredentials, + EmailProviderCredentialsSchema, + EmailProviderCredentialsSchemaAccessKeyId, + EmailProviderCredentialsSchemaApiKey, + EmailProviderCredentialsSchemaClientId, + EmailProviderCredentialsSchemaConnectionString, + EmailProviderCredentialsSchemaSmtpHost, + EmailProviderCredentialsSchemaThree, + EmailProviderCredentialsSchemaZero, + EmailProviderNameEnum, + EmailProviderSettings, + EmailSmtpHost, + EmailSparkPostRegionEnum, + EmailSpecificProviderSettingsWithAdditionalProperties, + EmailTemplateNameEnum, + EnabledFeaturesEnum, + EncryptionKey, + EncryptionKeyPublicWrappingAlgorithm, + EncryptionKeyState, + EncryptionKeyType, + EventStreamActionConfiguration, + EventStreamActionDestination, + EventStreamActionDestinationTypeEnum, + EventStreamActionResponseContent, + EventStreamCloudEvent, + EventStreamCloudEventA0PurposeEnum, + EventStreamCloudEventConnectionCreated, + EventStreamCloudEventConnectionCreatedCloudEvent, + EventStreamCloudEventConnectionCreatedCloudEventTypeEnum, + EventStreamCloudEventConnectionCreatedData, + EventStreamCloudEventConnectionCreatedObject, + EventStreamCloudEventConnectionCreatedObject0, + EventStreamCloudEventConnectionCreatedObject0Authentication, + EventStreamCloudEventConnectionCreatedObject0ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject0Metadata, + EventStreamCloudEventConnectionCreatedObject0Options, + EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMap, + EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapAttributes, + EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapMappingModeEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettings, + EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettingsPkceEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsDpopSigningAlgEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionCreatedObject0OptionsIdTokenSignedResponseAlgsItemEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsOidcMetadata, + EventStreamCloudEventConnectionCreatedObject0OptionsSchemaVersionEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthMethodEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthSigningAlgEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointJwtcaAudFormatEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsTypeEnum, + EventStreamCloudEventConnectionCreatedObject0OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject0StrategyEnum, + EventStreamCloudEventConnectionCreatedObject1, + EventStreamCloudEventConnectionCreatedObject1Authentication, + EventStreamCloudEventConnectionCreatedObject1ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject1Metadata, + EventStreamCloudEventConnectionCreatedObject1Options, + EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMap, + EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapAttributes, + EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapMappingModeEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettings, + EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettingsPkceEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsDpopSigningAlgEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionCreatedObject1OptionsIdTokenSignedResponseAlgsItemEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsOidcMetadata, + EventStreamCloudEventConnectionCreatedObject1OptionsSchemaVersionEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthMethodEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthSigningAlgEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointJwtcaAudFormatEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsTypeEnum, + EventStreamCloudEventConnectionCreatedObject1OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject1StrategyEnum, + EventStreamCloudEventConnectionCreatedObject2, + EventStreamCloudEventConnectionCreatedObject2Authentication, + EventStreamCloudEventConnectionCreatedObject2ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject2Metadata, + EventStreamCloudEventConnectionCreatedObject2Options, + EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettings, + EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum, + EventStreamCloudEventConnectionCreatedObject2OptionsDigestAlgorithmEnum, + EventStreamCloudEventConnectionCreatedObject2OptionsFieldsMap, + EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiated, + EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiatedClientProtocolEnum, + EventStreamCloudEventConnectionCreatedObject2OptionsProtocolBindingEnum, + EventStreamCloudEventConnectionCreatedObject2OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject2OptionsSignatureAlgorithmEnum, + EventStreamCloudEventConnectionCreatedObject2OptionsSubject, + EventStreamCloudEventConnectionCreatedObject2OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject2StrategyEnum, + EventStreamCloudEventConnectionCreatedObject3, + EventStreamCloudEventConnectionCreatedObject3Authentication, + EventStreamCloudEventConnectionCreatedObject3ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject3Metadata, + EventStreamCloudEventConnectionCreatedObject3Options, + EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettings, + EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum, + EventStreamCloudEventConnectionCreatedObject3OptionsDigestAlgorithmEnum, + EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiated, + EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiatedClientProtocolEnum, + EventStreamCloudEventConnectionCreatedObject3OptionsProtocolBindingEnum, + EventStreamCloudEventConnectionCreatedObject3OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject3OptionsSignatureAlgorithmEnum, + EventStreamCloudEventConnectionCreatedObject3OptionsSubject, + EventStreamCloudEventConnectionCreatedObject3OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject3StrategyEnum, + EventStreamCloudEventConnectionCreatedObject4, + EventStreamCloudEventConnectionCreatedObject4Authentication, + EventStreamCloudEventConnectionCreatedObject4ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject4Metadata, + EventStreamCloudEventConnectionCreatedObject4Options, + EventStreamCloudEventConnectionCreatedObject4OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum, + EventStreamCloudEventConnectionCreatedObject4OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject4StrategyEnum, + EventStreamCloudEventConnectionCreatedObject5, + EventStreamCloudEventConnectionCreatedObject5Authentication, + EventStreamCloudEventConnectionCreatedObject5ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject5Metadata, + EventStreamCloudEventConnectionCreatedObject5Options, + EventStreamCloudEventConnectionCreatedObject5OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject5OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject5StrategyEnum, + EventStreamCloudEventConnectionCreatedObject6, + EventStreamCloudEventConnectionCreatedObject6Authentication, + EventStreamCloudEventConnectionCreatedObject6ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject6Metadata, + EventStreamCloudEventConnectionCreatedObject6Options, + EventStreamCloudEventConnectionCreatedObject6OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionCreatedObject6OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject6OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject6StrategyEnum, + EventStreamCloudEventConnectionCreatedObject7, + EventStreamCloudEventConnectionCreatedObject7Authentication, + EventStreamCloudEventConnectionCreatedObject7ConnectedAccounts, + EventStreamCloudEventConnectionCreatedObject7Metadata, + EventStreamCloudEventConnectionCreatedObject7Options, + EventStreamCloudEventConnectionCreatedObject7OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionCreatedObject7OptionsIdentityApiEnum, + EventStreamCloudEventConnectionCreatedObject7OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionCreatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum, + EventStreamCloudEventConnectionCreatedObject7OptionsTenantDomainOne, + EventStreamCloudEventConnectionCreatedObject7OptionsUpstreamParams, + EventStreamCloudEventConnectionCreatedObject7OptionsUseridAttributeEnum, + EventStreamCloudEventConnectionCreatedObject7OptionsWaadProtocolEnum, + EventStreamCloudEventConnectionCreatedObject7StrategyEnum, + EventStreamCloudEventConnectionCreatedTypeEnum, + EventStreamCloudEventConnectionDeleted, + EventStreamCloudEventConnectionDeletedCloudEvent, + EventStreamCloudEventConnectionDeletedCloudEventTypeEnum, + EventStreamCloudEventConnectionDeletedData, + EventStreamCloudEventConnectionDeletedObject, + EventStreamCloudEventConnectionDeletedObject0, + EventStreamCloudEventConnectionDeletedObject0Authentication, + EventStreamCloudEventConnectionDeletedObject0ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject0Metadata, + EventStreamCloudEventConnectionDeletedObject0Options, + EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMap, + EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapAttributes, + EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapMappingModeEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettings, + EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettingsPkceEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsDpopSigningAlgEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionDeletedObject0OptionsIdTokenSignedResponseAlgsItemEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsOidcMetadata, + EventStreamCloudEventConnectionDeletedObject0OptionsSchemaVersionEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthMethodEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthSigningAlgEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointJwtcaAudFormatEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsTypeEnum, + EventStreamCloudEventConnectionDeletedObject0OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject0StrategyEnum, + EventStreamCloudEventConnectionDeletedObject1, + EventStreamCloudEventConnectionDeletedObject1Authentication, + EventStreamCloudEventConnectionDeletedObject1ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject1Metadata, + EventStreamCloudEventConnectionDeletedObject1Options, + EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMap, + EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapAttributes, + EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapMappingModeEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettings, + EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettingsPkceEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsDpopSigningAlgEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionDeletedObject1OptionsIdTokenSignedResponseAlgsItemEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsOidcMetadata, + EventStreamCloudEventConnectionDeletedObject1OptionsSchemaVersionEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthMethodEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthSigningAlgEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointJwtcaAudFormatEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsTypeEnum, + EventStreamCloudEventConnectionDeletedObject1OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject1StrategyEnum, + EventStreamCloudEventConnectionDeletedObject2, + EventStreamCloudEventConnectionDeletedObject2Authentication, + EventStreamCloudEventConnectionDeletedObject2ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject2Metadata, + EventStreamCloudEventConnectionDeletedObject2Options, + EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettings, + EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum, + EventStreamCloudEventConnectionDeletedObject2OptionsDigestAlgorithmEnum, + EventStreamCloudEventConnectionDeletedObject2OptionsFieldsMap, + EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiated, + EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiatedClientProtocolEnum, + EventStreamCloudEventConnectionDeletedObject2OptionsProtocolBindingEnum, + EventStreamCloudEventConnectionDeletedObject2OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject2OptionsSignatureAlgorithmEnum, + EventStreamCloudEventConnectionDeletedObject2OptionsSubject, + EventStreamCloudEventConnectionDeletedObject2OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject2StrategyEnum, + EventStreamCloudEventConnectionDeletedObject3, + EventStreamCloudEventConnectionDeletedObject3Authentication, + EventStreamCloudEventConnectionDeletedObject3ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject3Metadata, + EventStreamCloudEventConnectionDeletedObject3Options, + EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettings, + EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum, + EventStreamCloudEventConnectionDeletedObject3OptionsDigestAlgorithmEnum, + EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiated, + EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiatedClientProtocolEnum, + EventStreamCloudEventConnectionDeletedObject3OptionsProtocolBindingEnum, + EventStreamCloudEventConnectionDeletedObject3OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject3OptionsSignatureAlgorithmEnum, + EventStreamCloudEventConnectionDeletedObject3OptionsSubject, + EventStreamCloudEventConnectionDeletedObject3OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject3StrategyEnum, + EventStreamCloudEventConnectionDeletedObject4, + EventStreamCloudEventConnectionDeletedObject4Authentication, + EventStreamCloudEventConnectionDeletedObject4ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject4Metadata, + EventStreamCloudEventConnectionDeletedObject4Options, + EventStreamCloudEventConnectionDeletedObject4OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject4OptionsShouldTrustEmailVerifiedConnectionEnum, + EventStreamCloudEventConnectionDeletedObject4OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject4StrategyEnum, + EventStreamCloudEventConnectionDeletedObject5, + EventStreamCloudEventConnectionDeletedObject5Authentication, + EventStreamCloudEventConnectionDeletedObject5ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject5Metadata, + EventStreamCloudEventConnectionDeletedObject5Options, + EventStreamCloudEventConnectionDeletedObject5OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject5OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject5StrategyEnum, + EventStreamCloudEventConnectionDeletedObject6, + EventStreamCloudEventConnectionDeletedObject6Authentication, + EventStreamCloudEventConnectionDeletedObject6ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject6Metadata, + EventStreamCloudEventConnectionDeletedObject6Options, + EventStreamCloudEventConnectionDeletedObject6OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionDeletedObject6OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject6OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject6StrategyEnum, + EventStreamCloudEventConnectionDeletedObject7, + EventStreamCloudEventConnectionDeletedObject7Authentication, + EventStreamCloudEventConnectionDeletedObject7ConnectedAccounts, + EventStreamCloudEventConnectionDeletedObject7Metadata, + EventStreamCloudEventConnectionDeletedObject7Options, + EventStreamCloudEventConnectionDeletedObject7OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionDeletedObject7OptionsIdentityApiEnum, + EventStreamCloudEventConnectionDeletedObject7OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionDeletedObject7OptionsShouldTrustEmailVerifiedConnectionEnum, + EventStreamCloudEventConnectionDeletedObject7OptionsTenantDomainOne, + EventStreamCloudEventConnectionDeletedObject7OptionsUpstreamParams, + EventStreamCloudEventConnectionDeletedObject7OptionsUseridAttributeEnum, + EventStreamCloudEventConnectionDeletedObject7OptionsWaadProtocolEnum, + EventStreamCloudEventConnectionDeletedObject7StrategyEnum, + EventStreamCloudEventConnectionDeletedTypeEnum, + EventStreamCloudEventConnectionUpdated, + EventStreamCloudEventConnectionUpdatedCloudEvent, + EventStreamCloudEventConnectionUpdatedCloudEventTypeEnum, + EventStreamCloudEventConnectionUpdatedData, + EventStreamCloudEventConnectionUpdatedObject, + EventStreamCloudEventConnectionUpdatedObject0, + EventStreamCloudEventConnectionUpdatedObject0Authentication, + EventStreamCloudEventConnectionUpdatedObject0ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject0Metadata, + EventStreamCloudEventConnectionUpdatedObject0Options, + EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMap, + EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapAttributes, + EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapMappingModeEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettings, + EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettingsPkceEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsDpopSigningAlgEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionUpdatedObject0OptionsIdTokenSignedResponseAlgsItemEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsOidcMetadata, + EventStreamCloudEventConnectionUpdatedObject0OptionsSchemaVersionEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthMethodEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthSigningAlgEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointJwtcaAudFormatEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsTypeEnum, + EventStreamCloudEventConnectionUpdatedObject0OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject0StrategyEnum, + EventStreamCloudEventConnectionUpdatedObject1, + EventStreamCloudEventConnectionUpdatedObject1Authentication, + EventStreamCloudEventConnectionUpdatedObject1ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject1Metadata, + EventStreamCloudEventConnectionUpdatedObject1Options, + EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMap, + EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapAttributes, + EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapMappingModeEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettings, + EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettingsPkceEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsDpopSigningAlgEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionUpdatedObject1OptionsIdTokenSignedResponseAlgsItemEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata, + EventStreamCloudEventConnectionUpdatedObject1OptionsSchemaVersionEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthMethodEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthSigningAlgEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointJwtcaAudFormatEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsTypeEnum, + EventStreamCloudEventConnectionUpdatedObject1OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject1StrategyEnum, + EventStreamCloudEventConnectionUpdatedObject2, + EventStreamCloudEventConnectionUpdatedObject2Authentication, + EventStreamCloudEventConnectionUpdatedObject2ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject2Metadata, + EventStreamCloudEventConnectionUpdatedObject2Options, + EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettings, + EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum, + EventStreamCloudEventConnectionUpdatedObject2OptionsDigestAlgorithmEnum, + EventStreamCloudEventConnectionUpdatedObject2OptionsFieldsMap, + EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiated, + EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiatedClientProtocolEnum, + EventStreamCloudEventConnectionUpdatedObject2OptionsProtocolBindingEnum, + EventStreamCloudEventConnectionUpdatedObject2OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject2OptionsSignatureAlgorithmEnum, + EventStreamCloudEventConnectionUpdatedObject2OptionsSubject, + EventStreamCloudEventConnectionUpdatedObject2OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject2StrategyEnum, + EventStreamCloudEventConnectionUpdatedObject3, + EventStreamCloudEventConnectionUpdatedObject3Authentication, + EventStreamCloudEventConnectionUpdatedObject3ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject3Metadata, + EventStreamCloudEventConnectionUpdatedObject3Options, + EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettings, + EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum, + EventStreamCloudEventConnectionUpdatedObject3OptionsDigestAlgorithmEnum, + EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiated, + EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiatedClientProtocolEnum, + EventStreamCloudEventConnectionUpdatedObject3OptionsProtocolBindingEnum, + EventStreamCloudEventConnectionUpdatedObject3OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject3OptionsSignatureAlgorithmEnum, + EventStreamCloudEventConnectionUpdatedObject3OptionsSubject, + EventStreamCloudEventConnectionUpdatedObject3OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject3StrategyEnum, + EventStreamCloudEventConnectionUpdatedObject4, + EventStreamCloudEventConnectionUpdatedObject4Authentication, + EventStreamCloudEventConnectionUpdatedObject4ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject4Metadata, + EventStreamCloudEventConnectionUpdatedObject4Options, + EventStreamCloudEventConnectionUpdatedObject4OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum, + EventStreamCloudEventConnectionUpdatedObject4OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject4StrategyEnum, + EventStreamCloudEventConnectionUpdatedObject5, + EventStreamCloudEventConnectionUpdatedObject5Authentication, + EventStreamCloudEventConnectionUpdatedObject5ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject5Metadata, + EventStreamCloudEventConnectionUpdatedObject5Options, + EventStreamCloudEventConnectionUpdatedObject5OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject5OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject5StrategyEnum, + EventStreamCloudEventConnectionUpdatedObject6, + EventStreamCloudEventConnectionUpdatedObject6Authentication, + EventStreamCloudEventConnectionUpdatedObject6ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject6Metadata, + EventStreamCloudEventConnectionUpdatedObject6Options, + EventStreamCloudEventConnectionUpdatedObject6OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionUpdatedObject6OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject6OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject6StrategyEnum, + EventStreamCloudEventConnectionUpdatedObject7, + EventStreamCloudEventConnectionUpdatedObject7Authentication, + EventStreamCloudEventConnectionUpdatedObject7ConnectedAccounts, + EventStreamCloudEventConnectionUpdatedObject7Metadata, + EventStreamCloudEventConnectionUpdatedObject7Options, + EventStreamCloudEventConnectionUpdatedObject7OptionsFederatedConnectionsAccessTokens, + EventStreamCloudEventConnectionUpdatedObject7OptionsIdentityApiEnum, + EventStreamCloudEventConnectionUpdatedObject7OptionsSetUserRootAttributesEnum, + EventStreamCloudEventConnectionUpdatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum, + EventStreamCloudEventConnectionUpdatedObject7OptionsTenantDomainOne, + EventStreamCloudEventConnectionUpdatedObject7OptionsUpstreamParams, + EventStreamCloudEventConnectionUpdatedObject7OptionsUseridAttributeEnum, + EventStreamCloudEventConnectionUpdatedObject7OptionsWaadProtocolEnum, + EventStreamCloudEventConnectionUpdatedObject7StrategyEnum, + EventStreamCloudEventConnectionUpdatedTypeEnum, + EventStreamCloudEventContext, + EventStreamCloudEventContextClient, + EventStreamCloudEventContextClientMetadata, + EventStreamCloudEventContextConnection, + EventStreamCloudEventContextRequest, + EventStreamCloudEventContextRequestGeo, + EventStreamCloudEventContextTenant, + EventStreamCloudEventErrorCodeEnum, + EventStreamCloudEventErrorDetail, + EventStreamCloudEventErrorMessage, + EventStreamCloudEventErrorMessageTypeEnum, + EventStreamCloudEventGroupCreated, + EventStreamCloudEventGroupCreatedCloudEvent, + EventStreamCloudEventGroupCreatedCloudEventTypeEnum, + EventStreamCloudEventGroupCreatedData, + EventStreamCloudEventGroupCreatedObject, + EventStreamCloudEventGroupCreatedObject0, + EventStreamCloudEventGroupCreatedObject0TypeEnum, + EventStreamCloudEventGroupCreatedObject1, + EventStreamCloudEventGroupCreatedObject1TypeEnum, + EventStreamCloudEventGroupCreatedObject2, + EventStreamCloudEventGroupCreatedObject2TypeEnum, + EventStreamCloudEventGroupCreatedTypeEnum, + EventStreamCloudEventGroupDeleted, + EventStreamCloudEventGroupDeletedCloudEvent, + EventStreamCloudEventGroupDeletedCloudEventTypeEnum, + EventStreamCloudEventGroupDeletedData, + EventStreamCloudEventGroupDeletedObject, + EventStreamCloudEventGroupDeletedObject0, + EventStreamCloudEventGroupDeletedObject0TypeEnum, + EventStreamCloudEventGroupDeletedObject1, + EventStreamCloudEventGroupDeletedObject1TypeEnum, + EventStreamCloudEventGroupDeletedObject2, + EventStreamCloudEventGroupDeletedObject2TypeEnum, + EventStreamCloudEventGroupDeletedTypeEnum, + EventStreamCloudEventGroupMemberAdded, + EventStreamCloudEventGroupMemberAddedCloudEvent, + EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum, + EventStreamCloudEventGroupMemberAddedData, + EventStreamCloudEventGroupMemberAddedObject, + EventStreamCloudEventGroupMemberAddedObjectGroup, + EventStreamCloudEventGroupMemberAddedObjectGroup0, + EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum, + EventStreamCloudEventGroupMemberAddedObjectGroup1, + EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum, + EventStreamCloudEventGroupMemberAddedObjectGroup2, + EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum, + EventStreamCloudEventGroupMemberAddedObjectMember, + EventStreamCloudEventGroupMemberAddedObjectMember0, + EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum, + EventStreamCloudEventGroupMemberAddedObjectMember1, + EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum, + EventStreamCloudEventGroupMemberAddedTypeEnum, + EventStreamCloudEventGroupMemberDeleted, + EventStreamCloudEventGroupMemberDeletedCloudEvent, + EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum, + EventStreamCloudEventGroupMemberDeletedData, + EventStreamCloudEventGroupMemberDeletedObject, + EventStreamCloudEventGroupMemberDeletedObjectGroup, + EventStreamCloudEventGroupMemberDeletedObjectGroup0, + EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum, + EventStreamCloudEventGroupMemberDeletedObjectGroup1, + EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum, + EventStreamCloudEventGroupMemberDeletedObjectGroup2, + EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum, + EventStreamCloudEventGroupMemberDeletedObjectMember, + EventStreamCloudEventGroupMemberDeletedObjectMember0, + EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum, + EventStreamCloudEventGroupMemberDeletedObjectMember1, + EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum, + EventStreamCloudEventGroupMemberDeletedTypeEnum, + EventStreamCloudEventGroupRoleAssigned, + EventStreamCloudEventGroupRoleAssignedCloudEvent, + EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum, + EventStreamCloudEventGroupRoleAssignedData, + EventStreamCloudEventGroupRoleAssignedObject, + EventStreamCloudEventGroupRoleAssignedObjectGroup, + EventStreamCloudEventGroupRoleAssignedObjectGroup0, + EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum, + EventStreamCloudEventGroupRoleAssignedObjectGroup1, + EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum, + EventStreamCloudEventGroupRoleAssignedObjectGroup2, + EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum, + EventStreamCloudEventGroupRoleAssignedObjectRole, + EventStreamCloudEventGroupRoleAssignedTypeEnum, + EventStreamCloudEventGroupRoleDeleted, + EventStreamCloudEventGroupRoleDeletedCloudEvent, + EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum, + EventStreamCloudEventGroupRoleDeletedData, + EventStreamCloudEventGroupRoleDeletedObject, + EventStreamCloudEventGroupRoleDeletedObjectGroup, + EventStreamCloudEventGroupRoleDeletedObjectGroup0, + EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum, + EventStreamCloudEventGroupRoleDeletedObjectGroup1, + EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum, + EventStreamCloudEventGroupRoleDeletedObjectGroup2, + EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum, + EventStreamCloudEventGroupRoleDeletedObjectRole, + EventStreamCloudEventGroupRoleDeletedTypeEnum, + EventStreamCloudEventGroupUpdated, + EventStreamCloudEventGroupUpdatedCloudEvent, + EventStreamCloudEventGroupUpdatedCloudEventTypeEnum, + EventStreamCloudEventGroupUpdatedData, + EventStreamCloudEventGroupUpdatedObject, + EventStreamCloudEventGroupUpdatedObject0, + EventStreamCloudEventGroupUpdatedObject0TypeEnum, + EventStreamCloudEventGroupUpdatedObject1, + EventStreamCloudEventGroupUpdatedObject1TypeEnum, + EventStreamCloudEventGroupUpdatedObject2, + EventStreamCloudEventGroupUpdatedObject2TypeEnum, + EventStreamCloudEventGroupUpdatedTypeEnum, + EventStreamCloudEventOffsetOnlyMessage, + EventStreamCloudEventOffsetOnlyMessageTypeEnum, + EventStreamCloudEventOrgConnectionAdded, + EventStreamCloudEventOrgConnectionAddedCloudEvent, + EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum, + EventStreamCloudEventOrgConnectionAddedData, + EventStreamCloudEventOrgConnectionAddedObject, + EventStreamCloudEventOrgConnectionAddedObjectConnection, + EventStreamCloudEventOrgConnectionAddedObjectOrganization, + EventStreamCloudEventOrgConnectionAddedTypeEnum, + EventStreamCloudEventOrgConnectionRemoved, + EventStreamCloudEventOrgConnectionRemovedCloudEvent, + EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum, + EventStreamCloudEventOrgConnectionRemovedData, + EventStreamCloudEventOrgConnectionRemovedObject, + EventStreamCloudEventOrgConnectionRemovedObjectConnection, + EventStreamCloudEventOrgConnectionRemovedObjectOrganization, + EventStreamCloudEventOrgConnectionRemovedTypeEnum, + EventStreamCloudEventOrgConnectionUpdated, + EventStreamCloudEventOrgConnectionUpdatedCloudEvent, + EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum, + EventStreamCloudEventOrgConnectionUpdatedData, + EventStreamCloudEventOrgConnectionUpdatedObject, + EventStreamCloudEventOrgConnectionUpdatedObjectConnection, + EventStreamCloudEventOrgConnectionUpdatedObjectOrganization, + EventStreamCloudEventOrgConnectionUpdatedTypeEnum, + EventStreamCloudEventOrgCreated, + EventStreamCloudEventOrgCreatedCloudEvent, + EventStreamCloudEventOrgCreatedCloudEventTypeEnum, + EventStreamCloudEventOrgCreatedData, + EventStreamCloudEventOrgCreatedObject, + EventStreamCloudEventOrgCreatedObjectBranding, + EventStreamCloudEventOrgCreatedObjectBrandingColors, + EventStreamCloudEventOrgCreatedObjectMetadata, + EventStreamCloudEventOrgCreatedTypeEnum, + EventStreamCloudEventOrgDeleted, + EventStreamCloudEventOrgDeletedCloudEvent, + EventStreamCloudEventOrgDeletedCloudEventTypeEnum, + EventStreamCloudEventOrgDeletedData, + EventStreamCloudEventOrgDeletedObject, + EventStreamCloudEventOrgDeletedObjectMetadata, + EventStreamCloudEventOrgDeletedTypeEnum, + EventStreamCloudEventOrgGroupRoleAssigned, + EventStreamCloudEventOrgGroupRoleAssignedCloudEvent, + EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum, + EventStreamCloudEventOrgGroupRoleAssignedData, + EventStreamCloudEventOrgGroupRoleAssignedObject, + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup, + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0, + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum, + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1, + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum, + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2, + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum, + EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization, + EventStreamCloudEventOrgGroupRoleAssignedObjectRole, + EventStreamCloudEventOrgGroupRoleAssignedTypeEnum, + EventStreamCloudEventOrgGroupRoleDeleted, + EventStreamCloudEventOrgGroupRoleDeletedCloudEvent, + EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum, + EventStreamCloudEventOrgGroupRoleDeletedData, + EventStreamCloudEventOrgGroupRoleDeletedObject, + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup, + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0, + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum, + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1, + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum, + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2, + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum, + EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization, + EventStreamCloudEventOrgGroupRoleDeletedObjectRole, + EventStreamCloudEventOrgGroupRoleDeletedTypeEnum, + EventStreamCloudEventOrgMemberAdded, + EventStreamCloudEventOrgMemberAddedCloudEvent, + EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum, + EventStreamCloudEventOrgMemberAddedData, + EventStreamCloudEventOrgMemberAddedObject, + EventStreamCloudEventOrgMemberAddedObjectOrganization, + EventStreamCloudEventOrgMemberAddedObjectUser, + EventStreamCloudEventOrgMemberAddedTypeEnum, + EventStreamCloudEventOrgMemberDeleted, + EventStreamCloudEventOrgMemberDeletedCloudEvent, + EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum, + EventStreamCloudEventOrgMemberDeletedData, + EventStreamCloudEventOrgMemberDeletedObject, + EventStreamCloudEventOrgMemberDeletedObjectOrganization, + EventStreamCloudEventOrgMemberDeletedObjectUser, + EventStreamCloudEventOrgMemberDeletedTypeEnum, + EventStreamCloudEventOrgMemberRoleAssigned, + EventStreamCloudEventOrgMemberRoleAssignedCloudEvent, + EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum, + EventStreamCloudEventOrgMemberRoleAssignedData, + EventStreamCloudEventOrgMemberRoleAssignedObject, + EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization, + EventStreamCloudEventOrgMemberRoleAssignedObjectRole, + EventStreamCloudEventOrgMemberRoleAssignedObjectUser, + EventStreamCloudEventOrgMemberRoleAssignedTypeEnum, + EventStreamCloudEventOrgMemberRoleDeleted, + EventStreamCloudEventOrgMemberRoleDeletedCloudEvent, + EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum, + EventStreamCloudEventOrgMemberRoleDeletedData, + EventStreamCloudEventOrgMemberRoleDeletedObject, + EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization, + EventStreamCloudEventOrgMemberRoleDeletedObjectRole, + EventStreamCloudEventOrgMemberRoleDeletedObjectUser, + EventStreamCloudEventOrgMemberRoleDeletedTypeEnum, + EventStreamCloudEventOrgUpdated, + EventStreamCloudEventOrgUpdatedCloudEvent, + EventStreamCloudEventOrgUpdatedCloudEventTypeEnum, + EventStreamCloudEventOrgUpdatedData, + EventStreamCloudEventOrgUpdatedObject, + EventStreamCloudEventOrgUpdatedObjectBranding, + EventStreamCloudEventOrgUpdatedObjectBrandingColors, + EventStreamCloudEventOrgUpdatedObjectMetadata, + EventStreamCloudEventOrgUpdatedTypeEnum, + EventStreamCloudEventSpecVersionEnum, + EventStreamCloudEventUserCreated, + EventStreamCloudEventUserCreatedCloudEvent, + EventStreamCloudEventUserCreatedCloudEventTypeEnum, + EventStreamCloudEventUserCreatedData, + EventStreamCloudEventUserCreatedObject, + EventStreamCloudEventUserCreatedObjectAppMetadata, + EventStreamCloudEventUserCreatedObjectIdentitiesItem, + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom, + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData, + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId, + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase, + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData, + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId, + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise, + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData, + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId, + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless, + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData, + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId, + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial, + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData, + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum, + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId, + EventStreamCloudEventUserCreatedObjectUserMetadata, + EventStreamCloudEventUserCreatedTypeEnum, + EventStreamCloudEventUserDeleted, + EventStreamCloudEventUserDeletedCloudEvent, + EventStreamCloudEventUserDeletedCloudEventTypeEnum, + EventStreamCloudEventUserDeletedData, + EventStreamCloudEventUserDeletedObject, + EventStreamCloudEventUserDeletedObjectAppMetadata, + EventStreamCloudEventUserDeletedObjectIdentitiesItem, + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom, + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData, + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId, + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase, + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData, + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId, + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise, + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData, + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId, + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless, + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData, + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId, + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial, + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData, + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum, + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId, + EventStreamCloudEventUserDeletedObjectUserMetadata, + EventStreamCloudEventUserDeletedTypeEnum, + EventStreamCloudEventUserUpdated, + EventStreamCloudEventUserUpdatedCloudEvent, + EventStreamCloudEventUserUpdatedCloudEventTypeEnum, + EventStreamCloudEventUserUpdatedData, + EventStreamCloudEventUserUpdatedObject, + EventStreamCloudEventUserUpdatedObjectAppMetadata, + EventStreamCloudEventUserUpdatedObjectIdentitiesItem, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum, + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId, + EventStreamCloudEventUserUpdatedObjectUserMetadata, + EventStreamCloudEventUserUpdatedTypeEnum, + EventStreamDelivery, + EventStreamDeliveryAttempt, + EventStreamDeliveryEventTypeEnum, + EventStreamDeliveryStatusEnum, + EventStreamDestinationPatch, + EventStreamEventBridgeAwsRegionEnum, + EventStreamEventBridgeConfiguration, + EventStreamEventBridgeDestination, + EventStreamEventBridgeDestinationTypeEnum, + EventStreamEventBridgeResponseContent, + EventStreamEventTypeEnum, + EventStreamResponseContent, + EventStreamStatusEnum, + EventStreamSubscribeEventsEventTypeEnum, + EventStreamSubscribeEventsEventTypeParam, + EventStreamSubscribeEventsResponseContent, + EventStreamSubscribeEventsResponseContent_ConnectionCreated, + EventStreamSubscribeEventsResponseContent_ConnectionDeleted, + EventStreamSubscribeEventsResponseContent_ConnectionUpdated, + EventStreamSubscribeEventsResponseContent_Error, + EventStreamSubscribeEventsResponseContent_GroupCreated, + EventStreamSubscribeEventsResponseContent_GroupDeleted, + EventStreamSubscribeEventsResponseContent_GroupMemberAdded, + EventStreamSubscribeEventsResponseContent_GroupMemberDeleted, + EventStreamSubscribeEventsResponseContent_GroupRoleAssigned, + EventStreamSubscribeEventsResponseContent_GroupRoleDeleted, + EventStreamSubscribeEventsResponseContent_GroupUpdated, + EventStreamSubscribeEventsResponseContent_OffsetOnly, + EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded, + EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved, + EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated, + EventStreamSubscribeEventsResponseContent_OrganizationCreated, + EventStreamSubscribeEventsResponseContent_OrganizationDeleted, + EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned, + EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted, + EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded, + EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted, + EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned, + EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted, + EventStreamSubscribeEventsResponseContent_OrganizationUpdated, + EventStreamSubscribeEventsResponseContent_UserCreated, + EventStreamSubscribeEventsResponseContent_UserDeleted, + EventStreamSubscribeEventsResponseContent_UserUpdated, + EventStreamSubscription, + EventStreamTestEventTypeEnum, + EventStreamWebhookAuthorizationResponse, + EventStreamWebhookBasicAuth, + EventStreamWebhookBasicAuthMethodEnum, + EventStreamWebhookBearerAuth, + EventStreamWebhookBearerAuthMethodEnum, + EventStreamWebhookConfiguration, + EventStreamWebhookCustomHeaderAuth, + EventStreamWebhookCustomHeaderAuthMethodEnum, + EventStreamWebhookDestination, + EventStreamWebhookDestinationTypeEnum, + EventStreamWebhookResponseContent, + ExpressConfiguration, + ExpressConfigurationOrNull, + ExtensibilityEmailProviderCredentials, + FedCmLogin, + FedCmLoginGoogle, + FedCmLoginGooglePatch, + FedCmLoginPatch, + FedCmLoginGooglePatch, + FedCmLoginPatch, + FlowAction, + FlowActionActivecampaign, + FlowActionActivecampaignListContacts, + FlowActionActivecampaignListContactsAction, + FlowActionActivecampaignListContactsParams, + FlowActionActivecampaignListContactsType, + FlowActionActivecampaignUpsertContact, + FlowActionActivecampaignUpsertContactAction, + FlowActionActivecampaignUpsertContactParams, + FlowActionActivecampaignUpsertContactParamsCustomFields, + FlowActionActivecampaignUpsertContactType, + FlowActionAirtable, + FlowActionAirtableCreateRecord, + FlowActionAirtableCreateRecordAction, + FlowActionAirtableCreateRecordParams, + FlowActionAirtableCreateRecordParamsFields, + FlowActionAirtableCreateRecordType, + FlowActionAirtableListRecords, + FlowActionAirtableListRecordsAction, + FlowActionAirtableListRecordsParams, + FlowActionAirtableListRecordsType, + FlowActionAirtableUpdateRecord, + FlowActionAirtableUpdateRecordAction, + FlowActionAirtableUpdateRecordParams, + FlowActionAirtableUpdateRecordParamsFields, + FlowActionAirtableUpdateRecordType, + FlowActionAuth0, + FlowActionAuth0CreateUser, + FlowActionAuth0CreateUserAction, + FlowActionAuth0CreateUserParams, + FlowActionAuth0CreateUserParamsPayload, + FlowActionAuth0CreateUserType, + FlowActionAuth0GetUser, + FlowActionAuth0GetUserAction, + FlowActionAuth0GetUserParams, + FlowActionAuth0GetUserType, + FlowActionAuth0MakeCall, + FlowActionAuth0MakeCallAction, + FlowActionAuth0MakeCallParams, + FlowActionAuth0MakeCallParamsCustomVars, + FlowActionAuth0MakeCallType, + FlowActionAuth0SendEmail, + FlowActionAuth0SendEmailAction, + FlowActionAuth0SendEmailParams, + FlowActionAuth0SendEmailParamsFrom, + FlowActionAuth0SendEmailParamsFromEmail, + FlowActionAuth0SendEmailParamsTo, + FlowActionAuth0SendEmailType, + FlowActionAuth0SendRequest, + FlowActionAuth0SendRequestAction, + FlowActionAuth0SendRequestParams, + FlowActionAuth0SendRequestParamsCustomVars, + FlowActionAuth0SendRequestParamsHeaders, + FlowActionAuth0SendRequestParamsMethod, + FlowActionAuth0SendRequestParamsPayload, + FlowActionAuth0SendRequestParamsPayloadObject, + FlowActionAuth0SendRequestParamsQueryParams, + FlowActionAuth0SendRequestParamsQueryParamsValue, + FlowActionAuth0SendRequestType, + FlowActionAuth0SendSms, + FlowActionAuth0SendSmsAction, + FlowActionAuth0SendSmsParams, + FlowActionAuth0SendSmsParamsCustomVars, + FlowActionAuth0SendSmsType, + FlowActionAuth0UpdateUser, + FlowActionAuth0UpdateUserAction, + FlowActionAuth0UpdateUserParams, + FlowActionAuth0UpdateUserParamsChanges, + FlowActionAuth0UpdateUserType, + FlowActionBigquery, + FlowActionBigqueryInsertRows, + FlowActionBigqueryInsertRowsAction, + FlowActionBigqueryInsertRowsParams, + FlowActionBigqueryInsertRowsParamsData, + FlowActionBigqueryInsertRowsType, + FlowActionClearbit, + FlowActionClearbitFindCompany, + FlowActionClearbitFindCompanyAction, + FlowActionClearbitFindCompanyParams, + FlowActionClearbitFindCompanyType, + FlowActionClearbitFindPerson, + FlowActionClearbitFindPersonAction, + FlowActionClearbitFindPersonParams, + FlowActionClearbitFindPersonType, + FlowActionEmail, + FlowActionEmailVerifyEmail, + FlowActionEmailVerifyEmailAction, + FlowActionEmailVerifyEmailParams, + FlowActionEmailVerifyEmailParamsRules, + FlowActionEmailVerifyEmailType, + FlowActionFlow, + FlowActionFlowBooleanCondition, + FlowActionFlowBooleanConditionAction, + FlowActionFlowBooleanConditionParams, + FlowActionFlowBooleanConditionType, + FlowActionFlowDelayFlow, + FlowActionFlowDelayFlowAction, + FlowActionFlowDelayFlowParams, + FlowActionFlowDelayFlowParamsNumber, + FlowActionFlowDelayFlowParamsUnits, + FlowActionFlowDelayFlowType, + FlowActionFlowDoNothing, + FlowActionFlowDoNothingAction, + FlowActionFlowDoNothingParams, + FlowActionFlowDoNothingType, + FlowActionFlowErrorMessage, + FlowActionFlowErrorMessageAction, + FlowActionFlowErrorMessageParams, + FlowActionFlowErrorMessageType, + FlowActionFlowMapValue, + FlowActionFlowMapValueAction, + FlowActionFlowMapValueParams, + FlowActionFlowMapValueParamsCases, + FlowActionFlowMapValueParamsFallback, + FlowActionFlowMapValueParamsFallbackObject, + FlowActionFlowMapValueParamsInput, + FlowActionFlowMapValueType, + FlowActionFlowReturnJson, + FlowActionFlowReturnJsonAction, + FlowActionFlowReturnJsonParams, + FlowActionFlowReturnJsonParamsPayload, + FlowActionFlowReturnJsonParamsPayloadObject, + FlowActionFlowReturnJsonType, + FlowActionFlowStoreVars, + FlowActionFlowStoreVarsAction, + FlowActionFlowStoreVarsParams, + FlowActionFlowStoreVarsParamsVars, + FlowActionFlowStoreVarsType, + FlowActionGoogleSheets, + FlowActionGoogleSheetsAddRow, + FlowActionGoogleSheetsAddRowAction, + FlowActionGoogleSheetsAddRowParams, + FlowActionGoogleSheetsAddRowParamsSheetId, + FlowActionGoogleSheetsAddRowParamsValues, + FlowActionGoogleSheetsAddRowType, + FlowActionHttp, + FlowActionHttpSendRequest, + FlowActionHttpSendRequestAction, + FlowActionHttpSendRequestParams, + FlowActionHttpSendRequestParamsBasicAuth, + FlowActionHttpSendRequestParamsContentType, + FlowActionHttpSendRequestParamsHeaders, + FlowActionHttpSendRequestParamsMethod, + FlowActionHttpSendRequestParamsPayload, + FlowActionHttpSendRequestParamsPayloadObject, + FlowActionHttpSendRequestParamsQueryParams, + FlowActionHttpSendRequestParamsQueryParamsValue, + FlowActionHttpSendRequestType, + FlowActionHubspot, + FlowActionHubspotEnrollContact, + FlowActionHubspotEnrollContactAction, + FlowActionHubspotEnrollContactParams, + FlowActionHubspotEnrollContactParamsWorkflowId, + FlowActionHubspotEnrollContactType, + FlowActionHubspotGetContact, + FlowActionHubspotGetContactAction, + FlowActionHubspotGetContactParams, + FlowActionHubspotGetContactType, + FlowActionHubspotUpsertContact, + FlowActionHubspotUpsertContactAction, + FlowActionHubspotUpsertContactParams, + FlowActionHubspotUpsertContactParamsProperty, + FlowActionHubspotUpsertContactType, + FlowActionJson, + FlowActionJsonCreateJson, + FlowActionJsonCreateJsonAction, + FlowActionJsonCreateJsonParams, + FlowActionJsonCreateJsonParamsObject, + FlowActionJsonCreateJsonType, + FlowActionJsonParseJson, + FlowActionJsonParseJsonAction, + FlowActionJsonParseJsonParams, + FlowActionJsonParseJsonType, + FlowActionJsonSerializeJson, + FlowActionJsonSerializeJsonAction, + FlowActionJsonSerializeJsonParams, + FlowActionJsonSerializeJsonParamsObject, + FlowActionJsonSerializeJsonParamsObjectObject, + FlowActionJsonSerializeJsonType, + FlowActionJwt, + FlowActionJwtDecodeJwt, + FlowActionJwtDecodeJwtAction, + FlowActionJwtDecodeJwtParams, + FlowActionJwtDecodeJwtType, + FlowActionJwtSignJwt, + FlowActionJwtSignJwtAction, + FlowActionJwtSignJwtParams, + FlowActionJwtSignJwtParamsPayload, + FlowActionJwtSignJwtType, + FlowActionJwtVerifyJwt, + FlowActionJwtVerifyJwtAction, + FlowActionJwtVerifyJwtParams, + FlowActionJwtVerifyJwtType, + FlowActionMailchimp, + FlowActionMailchimpUpsertMember, + FlowActionMailchimpUpsertMemberAction, + FlowActionMailchimpUpsertMemberParams, + FlowActionMailchimpUpsertMemberParamsMember, + FlowActionMailchimpUpsertMemberParamsMemberMergeFields, + FlowActionMailchimpUpsertMemberType, + FlowActionMailjet, + FlowActionMailjetSendEmail, + FlowActionMailjetSendEmailAction, + FlowActionMailjetSendEmailParams, + FlowActionMailjetSendEmailParamsContent, + FlowActionMailjetSendEmailParamsTemplateId, + FlowActionMailjetSendEmailType, + FlowActionOtp, + FlowActionOtpGenerateCode, + FlowActionOtpGenerateCodeAction, + FlowActionOtpGenerateCodeParams, + FlowActionOtpGenerateCodeType, + FlowActionOtpVerifyCode, + FlowActionOtpVerifyCodeAction, + FlowActionOtpVerifyCodeParams, + FlowActionOtpVerifyCodeParamsCode, + FlowActionOtpVerifyCodeType, + FlowActionPipedrive, + FlowActionPipedriveAddDeal, + FlowActionPipedriveAddDealAction, + FlowActionPipedriveAddDealParams, + FlowActionPipedriveAddDealParamsFields, + FlowActionPipedriveAddDealParamsOrganizationId, + FlowActionPipedriveAddDealParamsPersonId, + FlowActionPipedriveAddDealParamsStageId, + FlowActionPipedriveAddDealParamsUserId, + FlowActionPipedriveAddDealType, + FlowActionPipedriveAddOrganization, + FlowActionPipedriveAddOrganizationAction, + FlowActionPipedriveAddOrganizationParams, + FlowActionPipedriveAddOrganizationParamsFields, + FlowActionPipedriveAddOrganizationParamsOwnerId, + FlowActionPipedriveAddOrganizationType, + FlowActionPipedriveAddPerson, + FlowActionPipedriveAddPersonAction, + FlowActionPipedriveAddPersonParams, + FlowActionPipedriveAddPersonParamsFields, + FlowActionPipedriveAddPersonParamsOrganizationId, + FlowActionPipedriveAddPersonParamsOwnerId, + FlowActionPipedriveAddPersonType, + FlowActionSalesforce, + FlowActionSalesforceCreateLead, + FlowActionSalesforceCreateLeadAction, + FlowActionSalesforceCreateLeadParams, + FlowActionSalesforceCreateLeadParamsPayload, + FlowActionSalesforceCreateLeadType, + FlowActionSalesforceGetLead, + FlowActionSalesforceGetLeadAction, + FlowActionSalesforceGetLeadParams, + FlowActionSalesforceGetLeadType, + FlowActionSalesforceSearchLeads, + FlowActionSalesforceSearchLeadsAction, + FlowActionSalesforceSearchLeadsParams, + FlowActionSalesforceSearchLeadsParamsSearchField, + FlowActionSalesforceSearchLeadsType, + FlowActionSalesforceUpdateLead, + FlowActionSalesforceUpdateLeadAction, + FlowActionSalesforceUpdateLeadParams, + FlowActionSalesforceUpdateLeadParamsPayload, + FlowActionSalesforceUpdateLeadType, + FlowActionSendgrid, + FlowActionSendgridSendEmail, + FlowActionSendgridSendEmailAction, + FlowActionSendgridSendEmailParams, + FlowActionSendgridSendEmailParamsPerson, + FlowActionSendgridSendEmailType, + FlowActionSlack, + FlowActionSlackPostMessage, + FlowActionSlackPostMessageAction, + FlowActionSlackPostMessageParams, + FlowActionSlackPostMessageParamsAttachment, + FlowActionSlackPostMessageParamsAttachmentColor, + FlowActionSlackPostMessageParamsAttachmentField, + FlowActionSlackPostMessageType, + FlowActionStripe, + FlowActionStripeAddTaxId, + FlowActionStripeAddTaxIdAction, + FlowActionStripeAddTaxIdParams, + FlowActionStripeAddTaxIdType, + FlowActionStripeAddress, + FlowActionStripeCreateCustomer, + FlowActionStripeCreateCustomerAction, + FlowActionStripeCreateCustomerParams, + FlowActionStripeCreateCustomerType, + FlowActionStripeCreatePortalSession, + FlowActionStripeCreatePortalSessionAction, + FlowActionStripeCreatePortalSessionParams, + FlowActionStripeCreatePortalSessionType, + FlowActionStripeDeleteTaxId, + FlowActionStripeDeleteTaxIdAction, + FlowActionStripeDeleteTaxIdParams, + FlowActionStripeDeleteTaxIdType, + FlowActionStripeFindCustomers, + FlowActionStripeFindCustomersAction, + FlowActionStripeFindCustomersParams, + FlowActionStripeFindCustomersType, + FlowActionStripeGetCustomer, + FlowActionStripeGetCustomerAction, + FlowActionStripeGetCustomerParams, + FlowActionStripeGetCustomerType, + FlowActionStripeMetadata, + FlowActionStripeTaxId, + FlowActionStripeUpdateCustomer, + FlowActionStripeUpdateCustomerAction, + FlowActionStripeUpdateCustomerParams, + FlowActionStripeUpdateCustomerType, + FlowActionTelegram, + FlowActionTelegramSendMessage, + FlowActionTelegramSendMessageAction, + FlowActionTelegramSendMessageParams, + FlowActionTelegramSendMessageType, + FlowActionTwilio, + FlowActionTwilioMakeCall, + FlowActionTwilioMakeCallAction, + FlowActionTwilioMakeCallParams, + FlowActionTwilioMakeCallType, + FlowActionTwilioSendSms, + FlowActionTwilioSendSmsAction, + FlowActionTwilioSendSmsParams, + FlowActionTwilioSendSmsType, + FlowActionWhatsapp, + FlowActionWhatsappSendMessage, + FlowActionWhatsappSendMessageAction, + FlowActionWhatsappSendMessageParams, + FlowActionWhatsappSendMessageParamsPayload, + FlowActionWhatsappSendMessageParamsPayloadObject, + FlowActionWhatsappSendMessageParamsType, + FlowActionWhatsappSendMessageType, + FlowActionXml, + FlowActionXmlParseXml, + FlowActionXmlParseXmlAction, + FlowActionXmlParseXmlParams, + FlowActionXmlParseXmlType, + FlowActionXmlSerializeXml, + FlowActionXmlSerializeXmlAction, + FlowActionXmlSerializeXmlParams, + FlowActionXmlSerializeXmlParamsObject, + FlowActionXmlSerializeXmlParamsObjectObject, + FlowActionXmlSerializeXmlType, + FlowActionZapier, + FlowActionZapierTriggerWebhook, + FlowActionZapierTriggerWebhookAction, + FlowActionZapierTriggerWebhookParams, + FlowActionZapierTriggerWebhookParamsMethod, + FlowActionZapierTriggerWebhookType, + FlowExecutionDebug, + FlowExecutionSummary, + FlowSummary, + FlowsVaultConnectioSetupApiKey, + FlowsVaultConnectioSetupApiKeyWithBaseUrl, + FlowsVaultConnectioSetupBigqueryOauthJwt, + FlowsVaultConnectioSetupHttpBearer, + FlowsVaultConnectioSetupJwt, + FlowsVaultConnectioSetupJwtAlgorithmEnum, + FlowsVaultConnectioSetupMailjetApiKey, + FlowsVaultConnectioSetupOauthApp, + FlowsVaultConnectioSetupOauthCode, + FlowsVaultConnectioSetupSecretApiKey, + FlowsVaultConnectioSetupStripeKeyPair, + FlowsVaultConnectioSetupToken, + FlowsVaultConnectioSetupTwilioApiKey, + FlowsVaultConnectioSetupTypeApiKeyEnum, + FlowsVaultConnectioSetupTypeBearerEnum, + FlowsVaultConnectioSetupTypeJwtEnum, + FlowsVaultConnectioSetupTypeKeyPairEnum, + FlowsVaultConnectioSetupTypeOauthAppEnum, + FlowsVaultConnectioSetupTypeOauthCodeEnum, + FlowsVaultConnectioSetupTypeOauthJwtEnum, + FlowsVaultConnectioSetupTypeTokenEnum, + FlowsVaultConnectioSetupTypeWebhookEnum, + FlowsVaultConnectioSetupWebhook, + FlowsVaultConnectionAppIdActivecampaignEnum, + FlowsVaultConnectionAppIdAirtableEnum, + FlowsVaultConnectionAppIdAuth0Enum, + FlowsVaultConnectionAppIdBigqueryEnum, + FlowsVaultConnectionAppIdClearbitEnum, + FlowsVaultConnectionAppIdDocusignEnum, + FlowsVaultConnectionAppIdGoogleSheetsEnum, + FlowsVaultConnectionAppIdHttpEnum, + FlowsVaultConnectionAppIdHubspotEnum, + FlowsVaultConnectionAppIdJwtEnum, + FlowsVaultConnectionAppIdMailchimpEnum, + FlowsVaultConnectionAppIdMailjetEnum, + FlowsVaultConnectionAppIdPipedriveEnum, + FlowsVaultConnectionAppIdSalesforceEnum, + FlowsVaultConnectionAppIdSendgridEnum, + FlowsVaultConnectionAppIdSlackEnum, + FlowsVaultConnectionAppIdStripeEnum, + FlowsVaultConnectionAppIdTelegramEnum, + FlowsVaultConnectionAppIdTwilioEnum, + FlowsVaultConnectionAppIdWhatsappEnum, + FlowsVaultConnectionAppIdZapierEnum, + FlowsVaultConnectionHttpApiKeySetup, + FlowsVaultConnectionHttpApiKeySetupInEnum, + FlowsVaultConnectionHttpBasicAuthSetup, + FlowsVaultConnectionHttpOauthClientCredentialsSetup, + FlowsVaultConnectionSetupTypeApiKeyEnum, + FlowsVaultConnectionSetupTypeBasicAuthEnum, + FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum, + FlowsVaultConnectionSummary, + ForbiddenSchema, + ForbiddenSchemaError, + FormBlock, + FormBlockDivider, + FormBlockDividerConfig, + FormBlockHtml, + FormBlockHtmlConfig, + FormBlockImage, + FormBlockImageConfig, + FormBlockImageConfigPositionEnum, + FormBlockJumpButton, + FormBlockJumpButtonConfig, + FormBlockJumpButtonConfigStyle, + FormBlockNextButton, + FormBlockNextButtonConfig, + FormBlockPreviousButton, + FormBlockPreviousButtonConfig, + FormBlockResendButton, + FormBlockResendButtonConfig, + FormBlockResendButtonConfigTextAlignmentEnum, + FormBlockRichText, + FormBlockRichTextConfig, + FormBlockTypeDividerConst, + FormBlockTypeHtmlConst, + FormBlockTypeImageConst, + FormBlockTypeJumpButtonConst, + FormBlockTypeNextButtonConst, + FormBlockTypePreviousButtonConst, + FormBlockTypeResendButtonConst, + FormBlockTypeRichTextConst, + FormComponent, + FormComponentCategoryBlockConst, + FormComponentCategoryFieldConst, + FormComponentCategoryWidgetConst, + FormEndingNode, + FormEndingNodeAfterSubmit, + FormEndingNodeId, + FormEndingNodeNullable, + FormEndingNodeRedirection, + FormEndingNodeResumeFlowTrueConst, + FormField, + FormFieldBoolean, + FormFieldBooleanConfig, + FormFieldBooleanConfigOptions, + FormFieldCards, + FormFieldCardsConfig, + FormFieldCardsConfigOption, + FormFieldChoice, + FormFieldChoiceConfig, + FormFieldChoiceConfigAllowOther, + FormFieldChoiceConfigAllowOtherEnabledTrueEnum, + FormFieldChoiceConfigOption, + FormFieldCustom, + FormFieldCustomConfig, + FormFieldCustomConfigParams, + FormFieldCustomConfigSchema, + FormFieldDate, + FormFieldDateConfig, + FormFieldDateConfigFormatEnum, + FormFieldDropdown, + FormFieldDropdownConfig, + FormFieldDropdownConfigOption, + FormFieldEmail, + FormFieldEmailConfig, + FormFieldFile, + FormFieldFileConfig, + FormFieldFileConfigCategoryEnum, + FormFieldFileConfigStorage, + FormFieldFileConfigStorageTypeEnum, + FormFieldLegal, + FormFieldLegalConfig, + FormFieldNumber, + FormFieldNumberConfig, + FormFieldPassword, + FormFieldPasswordConfig, + FormFieldPasswordConfigHashEnum, + FormFieldPayment, + FormFieldPaymentConfig, + FormFieldPaymentConfigCharge, + FormFieldPaymentConfigChargeOneOff, + FormFieldPaymentConfigChargeOneOffCurrencyEnum, + FormFieldPaymentConfigChargeOneOffOneOff, + FormFieldPaymentConfigChargeOneOffOneOffAmount, + FormFieldPaymentConfigChargeSubscription, + FormFieldPaymentConfigChargeTypeOneOffConst, + FormFieldPaymentConfigChargeTypeSubscriptionConst, + FormFieldPaymentConfigCredentials, + FormFieldPaymentConfigCustomer, + FormFieldPaymentConfigFieldProperties, + FormFieldPaymentConfigFields, + FormFieldPaymentConfigProviderEnum, + FormFieldPaymentConfigSubscription, + FormFieldSocial, + FormFieldSocialConfig, + FormFieldTel, + FormFieldTelConfig, + FormFieldTelConfigStrings, + FormFieldText, + FormFieldTextConfig, + FormFieldTypeBooleanConst, + FormFieldTypeCardsConst, + FormFieldTypeChoiceConst, + FormFieldTypeCustomConst, + FormFieldTypeDateConst, + FormFieldTypeDropdownConst, + FormFieldTypeEmailConst, + FormFieldTypeFileConst, + FormFieldTypeLegalConst, + FormFieldTypeNumberConst, + FormFieldTypePasswordConst, + FormFieldTypePaymentConst, + FormFieldTypeSocialConst, + FormFieldTypeTelConst, + FormFieldTypeTextConst, + FormFieldTypeUrlConst, + FormFieldUrl, + FormFieldUrlConfig, + FormFlow, + FormFlowConfig, + FormHiddenField, + FormLanguages, + FormLanguagesNullable, + FormMessages, + FormMessagesCustom, + FormMessagesError, + FormMessagesNullable, + FormNode, + FormNodeCoordinates, + FormNodeList, + FormNodeListNullable, + FormNodePointer, + FormNodeTypeFlowConst, + FormNodeTypeRouterConst, + FormNodeTypeStepConst, + FormRouter, + FormRouterConfig, + FormRouterRule, + FormStartNode, + FormStartNodeNullable, + FormStep, + FormStepComponentList, + FormStepConfig, + FormStyle, + FormStyleNullable, + FormSummary, + FormTranslations, + FormTranslationsNullable, + FormWidget, + FormWidgetAuth0VerifiableCredentials, + FormWidgetAuth0VerifiableCredentialsConfig, + FormWidgetGMapsAddress, + FormWidgetGMapsAddressConfig, + FormWidgetRecaptcha, + FormWidgetRecaptchaConfig, + FormWidgetTypeAuth0VerifiableCredentialsConst, + FormWidgetTypeGMapsAddressConst, + FormWidgetTypeRecaptchaConst, + FormsRequestParametersHydrateEnum, + GetActionExecutionResponseContent, + GetActionModuleActionsResponseContent, + GetActionModuleResponseContent, + GetActionModuleVersionResponseContent, + GetActionModuleVersionsResponseContent, + GetActionModulesResponseContent, + GetActionResponseContent, + GetActionVersionResponseContent, + GetActiveUsersCountStatsResponseContent, + GetAculResponseContent, + GetAttackProtectionCaptchaResponseContent, + GetBotDetectionSettingsResponseContent, + GetBrandingDefaultThemeResponseContent, + GetBrandingPhoneProviderResponseContent, + GetBrandingResponseContent, + GetBrandingThemeResponseContent, + GetBreachedPasswordDetectionSettingsResponseContent, + GetBruteForceSettingsResponseContent, + GetClientCredentialResponseContent, + GetClientGrantResponseContent, + GetClientResponseContent, + GetConnectionEnabledClientsResponseContent, + GetConnectionProfileResponseContent, + GetConnectionProfileTemplateResponseContent, + GetConnectionResponseContent, + GetCustomDomainResponseContent, + GetCustomSigningKeysResponseContent, + GetCustomTextsByLanguageResponseContent, + GetDefaultCanonicalDomainResponseContent, + GetDefaultCustomDomainResponseContent, + GetDefaultDomainResponseContent, + GetDirectoryProvisioningDefaultMappingResponseContent, + GetDirectoryProvisioningResponseContent, + GetEmailProviderResponseContent, + GetEmailTemplateResponseContent, + GetEncryptionKeyResponseContent, + GetEventStreamDeliveryHistoryResponseContent, + GetEventStreamResponseContent, + GetFlowExecutionRequestParametersHydrateEnum, + GetFlowExecutionResponseContent, + GetFlowRequestParametersHydrateEnum, + GetFlowResponseContent, + GetFlowsVaultConnectionResponseContent, + GetFormResponseContent, + GetGroupMembersResponseContent, + GetGroupResponseContent, + GetGuardianEnrollmentResponseContent, + GetGuardianFactorDuoSettingsResponseContent, + GetGuardianFactorPhoneMessageTypesResponseContent, + GetGuardianFactorPhoneTemplatesResponseContent, + GetGuardianFactorSmsTemplatesResponseContent, + GetGuardianFactorsProviderApnsResponseContent, + GetGuardianFactorsProviderPhoneResponseContent, + GetGuardianFactorsProviderPhoneTwilioResponseContent, + GetGuardianFactorsProviderPushNotificationResponseContent, + GetGuardianFactorsProviderSmsResponseContent, + GetGuardianFactorsProviderSmsTwilioResponseContent, + GetGuardianFactorsProviderSnsResponseContent, + GetHookResponseContent, + GetHookSecretResponseContent, + GetJobErrorResponseContent, + GetJobGenericErrorResponseContent, + GetJobImportUserError, + GetJobResponseContent, + GetJobSummary, + GetJobUserError, + GetLogResponseContent, + GetLogStreamResponseContent, + GetNetworkAclsResponseContent, + GetOrganizationAllConnectionResponseContent, + GetOrganizationByNameResponseContent, + GetOrganizationClientResponseContent, + GetOrganizationConnectionResponseContent, + GetOrganizationDiscoveryDomainByNameResponseContent, + GetOrganizationDiscoveryDomainResponseContent, + GetOrganizationInvitationResponseContent, + GetOrganizationResponseContent, + GetPartialsResponseContent, + GetPhoneProviderProtectionResponseContent, + GetPhoneTemplateResponseContent, + GetRateLimitPolicyResponseContent, + GetRefreshTokenResponseContent, + GetRefreshTokensPaginatedResponseContent, + GetResourceServerResponseContent, + GetRiskAssessmentsSettingsNewDeviceResponseContent, + GetRiskAssessmentsSettingsResponseContent, + GetRoleResponseContent, + GetRuleResponseContent, + GetScimConfigurationDefaultMappingResponseContent, + GetScimConfigurationResponseContent, + GetScimTokensResponseContent, + GetSelfServiceProfileResponseContent, + GetSessionResponseContent, + GetSettingsResponseContent, + GetSigningKeysResponseContent, + GetSupplementalSignalsResponseContent, + GetSuspiciousIpThrottlingSettingsResponseContent, + GetTenantSettingsResponseContent, + GetTokenExchangeProfileResponseContent, + GetUniversalLoginTemplate, + GetUniversalLoginTemplateResponseContent, + GetUserAttributeProfileResponseContent, + GetUserAttributeProfileTemplateResponseContent, + GetUserAuthenticationMethodResponseContent, + GetUserGroupsPaginatedResponseContent, + GetUserResponseContent, + GetVerifiableCredentialTemplateResponseContent, + Group, + GroupMember, + GroupMemberTypeEnum, + GroupTypeEnum, + GuardianEnrollmentDate, + GuardianEnrollmentFactorEnum, + GuardianEnrollmentStatus, + GuardianFactor, + GuardianFactorNameEnum, + GuardianFactorPhoneFactorMessageTypeEnum, + GuardianFactorsProviderPushNotificationProviderDataEnum, + GuardianFactorsProviderSmsProviderEnum, + Hook, + HookDependencies, + HookTriggerIdEnum, + HttpCustomHeader, + Identity, + IdentityAssertionAuthorizationGrant, + IdentityProviderEnum, + IdentityProviderOnlyAuth0Enum, + ImportEncryptionKeyResponseContent, + Integration, + IntegrationFeatureTypeEnum, + IntegrationRelease, + IntegrationRequiredParam, + IntegrationRequiredParamOption, + IntegrationRequiredParamTypeEnum, + IntegrationSemVer, + JobFileFormatEnum, + LinkedClientConfiguration, + ListActionBindingsPaginatedResponseContent, + ListActionTriggersResponseContent, + ListActionVersionsPaginatedResponseContent, + ListActionsPaginatedResponseContent, + ListAculsOffsetPaginatedResponseContent, + ListAculsResponseContentItem, + ListBrandingPhoneProvidersResponseContent, + ListClientConnectionsResponseContent, + ListClientGrantOrganizationsPaginatedResponseContent, + ListClientGrantPaginatedResponseContent, + ListClientsOffsetPaginatedResponseContent, + ListConnectionProfileTemplateResponseContent, + ListConnectionProfilesPaginatedResponseContent, + ListConnectionsCheckpointPaginatedResponseContent, + ListCustomDomainsResponseContent, + ListDeviceCredentialsOffsetPaginatedResponseContent, + ListDirectoryProvisioningsResponseContent, + ListEncryptionKeyOffsetPaginatedResponseContent, + ListEventStreamsResponseContent, + ListFlowExecutionsPaginatedResponseContent, + ListFlowsOffsetPaginatedResponseContent, + ListFlowsRequestParametersHydrateEnum, + ListFlowsVaultConnectionsOffsetPaginatedResponseContent, + ListFormsOffsetPaginatedResponseContent, + ListGroupRolesResponseContent, + ListGroupsPaginatedResponseContent, + ListGuardianPoliciesResponseContent, + ListHooksOffsetPaginatedResponseContent, + ListLogOffsetPaginatedResponseContent, + ListNetworkAclsOffsetPaginatedResponseContent, + ListOrganizationAllConnectionsOffsetPaginatedResponseContent, + ListOrganizationClientGrantsOffsetPaginatedResponseContent, + ListOrganizationClientsResponseContent, + ListOrganizationConnectionsOffsetPaginatedResponseContent, + ListOrganizationDiscoveryDomainsResponseContent, + ListOrganizationGroupRolesResponseContent, + ListOrganizationGroupsResponseContent, + ListOrganizationInvitationsOffsetPaginatedResponseContent, + ListOrganizationMemberEffectiveRolesResponseContent, + ListOrganizationMemberRoleSourceGroupsResponseContent, + ListOrganizationMemberRolesOffsetPaginatedResponseContent, + ListOrganizationMembersPaginatedResponseContent, + ListOrganizationRoleGroupsResponseContent, + ListOrganizationRoleMembersResponseContent, + ListOrganizationsPaginatedResponseContent, + ListPhoneTemplatesResponseContent, + ListRateLimitPoliciesPaginatedResponseContent, + ListRefreshTokensPaginatedResponseContent, + ListResourceServerOffsetPaginatedResponseContent, + ListRoleGroupsResponseContent, + ListRolePermissionsOffsetPaginatedResponseContent, + ListRoleUsersPaginatedResponseContent, + ListRolesCheckpointPaginatedResponseContent, + ListRolesResponseContent, + ListRulesOffsetPaginatedResponseContent, + ListScimConfigurationsResponseContent, + ListSelfServiceProfileCustomTextResponseContent, + ListSelfServiceProfilesPaginatedResponseContent, + ListSynchronizedGroupsResponseContent, + ListTokenExchangeProfileResponseContent, + ListUserAttributeProfileTemplateResponseContent, + ListUserAttributeProfilesPaginatedResponseContent, + ListUserAuthenticationMethodsOffsetPaginatedResponseContent, + ListUserBlocksByIdentifierResponseContent, + ListUserBlocksResponseContent, + ListUserConnectedAccountsResponseContent, + ListUserEffectivePermissionRoleSourcesResponseContent, + ListUserEffectivePermissionsResponseContent, + ListUserEffectiveRolesResponseContent, + ListUserGrantsOffsetPaginatedResponseContent, + ListUserOrganizationsOffsetPaginatedResponseContent, + ListUserPermissionsOffsetPaginatedResponseContent, + ListUserRoleSourceGroupsResponseContent, + ListUserRolesOffsetPaginatedResponseContent, + ListUserSessionsPaginatedResponseContent, + ListUsersOffsetPaginatedResponseContent, + ListVerifiableCredentialTemplatesPaginatedResponseContent, + Log, + LogDate, + LogDateObject, + LogDetails, + LogLocationInfo, + LogSecurityContext, + LogStreamDatadogEnum, + LogStreamDatadogRegionEnum, + LogStreamDatadogResponseSchema, + LogStreamDatadogSink, + LogStreamEventBridgeEnum, + LogStreamEventBridgeResponseSchema, + LogStreamEventBridgeSink, + LogStreamEventBridgeSinkRegionEnum, + LogStreamEventGridEnum, + LogStreamEventGridRegionEnum, + LogStreamEventGridResponseSchema, + LogStreamEventGridSink, + LogStreamFilter, + LogStreamFilterGroupNameEnum, + LogStreamFilterTypeEnum, + LogStreamHttpContentFormatEnum, + LogStreamHttpEnum, + LogStreamHttpResponseSchema, + LogStreamHttpSink, + LogStreamMixpanelEnum, + LogStreamMixpanelRegionEnum, + LogStreamMixpanelResponseSchema, + LogStreamMixpanelSink, + LogStreamMixpanelSinkPatch, + LogStreamPiiAlgorithmEnum, + LogStreamPiiConfig, + LogStreamPiiLogFieldsEnum, + LogStreamPiiMethodEnum, + LogStreamResponseSchema, + LogStreamSegmentEnum, + LogStreamSegmentResponseSchema, + LogStreamSegmentSink, + LogStreamSegmentSinkWriteKey, + LogStreamSinkPatch, + LogStreamSplunkEnum, + LogStreamSplunkResponseSchema, + LogStreamSplunkSink, + LogStreamStatusEnum, + LogStreamSumoEnum, + LogStreamSumoResponseSchema, + LogStreamSumoSink, + MdlPresentationProperties, + MdlPresentationRequest, + MdlPresentationRequestProperties, + MfaPolicyEnum, + NativeSocialLogin, + NativeSocialLoginApple, + NativeSocialLoginApplePatch, + NativeSocialLoginFacebook, + NativeSocialLoginFacebookPatch, + NativeSocialLoginGoogle, + NativeSocialLoginGooglePatch, + NativeSocialLoginPatch, + NetworkAclAction, + NetworkAclActionAllowEnum, + NetworkAclActionBlockEnum, + NetworkAclActionLogEnum, + NetworkAclActionRedirectEnum, + NetworkAclMatch, + NetworkAclMatchConnectingIpv4Cidr, + NetworkAclMatchConnectingIpv6Cidr, + NetworkAclMatchIpv4Cidr, + NetworkAclMatchIpv6Cidr, + NetworkAclRule, + NetworkAclRuleScopeEnum, + NetworkAclsResponseContent, + NotFoundErrorBody, + NotFoundErrorBodyError, + NotFoundSchema, + NotFoundSchemaError, + OauthScope, + Organization, + OrganizationAccessLevelEnum, + OrganizationAccessLevelEnumWithNull, + OrganizationAllConnectionPost, + OrganizationBranding, + OrganizationBrandingColors, + OrganizationClient, + OrganizationClientAssociation, + OrganizationClientGrant, + OrganizationClientMetadata, + OrganizationClientMetadataOrganizationUsageEnum, + OrganizationConnection, + OrganizationConnectionInformation, + OrganizationDiscoveryDomain, + OrganizationDiscoveryDomainStatus, + OrganizationEnabledConnection, + OrganizationInvitation, + OrganizationInvitationInvitee, + OrganizationInvitationInviter, + OrganizationMember, + OrganizationMemberEffectiveRole, + OrganizationMemberEffectiveRoleSource, + OrganizationMemberRole, + OrganizationMetadata, + OrganizationThirdPartyClientAccessEnum, + OrganizationUsageEnum, + PartialGroupsEnum, + PartialPhoneTemplateContent, + PasswordCharacterTypeEnum, + PasswordCharacterTypeRulePolicyEnum, + PasswordDefaultDictionariesEnum, + PasswordIdenticalCharactersPolicyEnum, + PasswordMaxLengthExceededPolicyEnum, + PasswordSequentialCharactersPolicyEnum, + PatchClientCredentialResponseContent, + PatchPhoneProviderProtectionResponseContent, + PatchRateLimitPolicyConfigurationRequestContent, + PatchRateLimitPolicyConfigurationRequestContentAction, + PatchRateLimitPolicyConfigurationRequestContentActionAction, + PatchRateLimitPolicyConfigurationRequestContentOne, + PatchRateLimitPolicyConfigurationRequestContentOneAction, + PatchRateLimitPolicyConfigurationRequestContentZero, + PatchRateLimitPolicyConfigurationRequestContentZeroAction, + PatchSupplementalSignalsResponseContent, + PermissionRequestPayload, + PermissionsResponsePayload, + PhoneAttribute, + PhoneAttributeIdentifier, + PhoneProviderChannelEnum, + PhoneProviderConfiguration, + PhoneProviderCredentials, + PhoneProviderDeliveryMethodEnum, + PhoneProviderNameEnum, + PhoneProviderProtectionBackoffStrategyEnum, + PhoneProviderSchemaMasked, + PhoneTemplate, + PhoneTemplateBody, + PhoneTemplateContent, + PhoneTemplateNotificationTypeEnum, + PostClientCredentialResponseContent, + PostConnectionKeysAlgEnum, + PostConnectionKeysRequestContent, + PostConnectionsKeysResponseContent, + PostConnectionsKeysResponseContentItem, + PreferredAuthenticationMethodEnum, + PreviewCimdMetadataResponseContent, + PromptGroupNameEnum, + PromptLanguageEnum, + PublicKeyCredential, + PublicKeyCredentialAlgorithmEnum, + PublicKeyCredentialTypeEnum, + RateLimitPolicy, + RateLimitPolicyConfiguration, + RateLimitPolicyConfigurationAction, + RateLimitPolicyConfigurationActionAction, + RateLimitPolicyConfigurationOne, + RateLimitPolicyConfigurationOneAction, + RateLimitPolicyConfigurationZero, + RateLimitPolicyConfigurationZeroAction, + RateLimitPolicyConsumerEnum, + RateLimitPolicyResourceEnum, + RefreshTokenDate, + RefreshTokenDateObject, + RefreshTokenDevice, + RefreshTokenExpirationTypeEnum, + RefreshTokenMetadata, + RefreshTokenResourceServer, + RefreshTokenResponseContent, + RefreshTokenRotationTypeEnum, + RefreshTokenSessionId, + RegenerateUsersRecoveryCodeResponseContent, + RegisterCimdClientResponseContent, + ResetPhoneTemplateRequestContent, + ResetPhoneTemplateResponseContent, + ResourceServer, + ResourceServerAuthorizationPolicy, + ResourceServerConsentPolicyEnum, + ResourceServerProofOfPossession, + ResourceServerProofOfPossessionMechanismEnum, + ResourceServerProofOfPossessionRequiredForEnum, + ResourceServerScope, + ResourceServerSubjectTypeAuthorization, + ResourceServerSubjectTypeAuthorizationClient, + ResourceServerSubjectTypeAuthorizationClientPolicyEnum, + ResourceServerSubjectTypeAuthorizationUser, + ResourceServerSubjectTypeAuthorizationUserPolicyEnum, + ResourceServerTokenDialectResponseEnum, + ResourceServerTokenDialectSchemaEnum, + ResourceServerTokenEncryption, + ResourceServerTokenEncryptionAlgorithmEnum, + ResourceServerTokenEncryptionFormatEnum, + ResourceServerTokenEncryptionKey, + ResourceServerVerificationKeyPemCertificate, + RevokedSigningKeysResponseContent, + Role, + RoleGroup, + RoleMember, + RoleTypeEnum, + RoleUser, + RollbackActionModuleResponseContent, + RotateClientSecretResponseContent, + RotateConnectionKeysRequestContent, + RotateConnectionKeysSigningAlgEnum, + RotateConnectionsKeysResponseContent, + RotateSigningKeysResponseContent, + Rule, + RulesConfig, + ScimConfiguration, + ScimMappingItem, + ScimTokenItem, + ScreenGroupNameEnum, + SearchEngineVersionsEnum, + SelfServiceProfile, + SelfServiceProfileAllowedStrategyEnum, + SelfServiceProfileBranding, + SelfServiceProfileBrandingColors, + SelfServiceProfileBrandingProperties, + SelfServiceProfileCustomTextLanguageEnum, + SelfServiceProfileCustomTextPageEnum, + SelfServiceProfileDescription, + SelfServiceProfileSsoTicketConnectionConfig, + SelfServiceProfileSsoTicketConnectionOptions, + SelfServiceProfileSsoTicketDomainAliasesConfig, + SelfServiceProfileSsoTicketDomainVerificationEnum, + SelfServiceProfileSsoTicketEnabledFeatures, + SelfServiceProfileSsoTicketEnabledOrganization, + SelfServiceProfileSsoTicketGoogleWorkspaceConfig, + SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum, + SelfServiceProfileSsoTicketIdpInitiatedOptions, + SelfServiceProfileSsoTicketProvisioningConfig, + SelfServiceProfileSsoTicketProvisioningScopeEnum, + SelfServiceProfileUserAttribute, + SelfServiceProfileUserAttributes, + SessionActorClaimValue, + SessionActorMetadata, + SessionAuthenticationSignal, + SessionAuthenticationSignals, + SessionClientMetadata, + SessionCookieMetadata, + SessionCookieMetadataModeEnum, + SessionCookieModeEnum, + SessionCookieSchema, + SessionDate, + SessionDeviceMetadata, + SessionIp, + SessionMetadata, + SessionResponseContent, + SetCustomSigningKeysResponseContent, + SetEmailTemplateResponseContent, + SetGuardianFactorDuoSettingsResponseContent, + SetGuardianFactorPhoneMessageTypesResponseContent, + SetGuardianFactorPhoneTemplatesResponseContent, + SetGuardianFactorResponseContent, + SetGuardianFactorSmsTemplatesResponseContent, + SetGuardianFactorsProviderPhoneResponseContent, + SetGuardianFactorsProviderPhoneTwilioResponseContent, + SetGuardianFactorsProviderPushNotificationApnsResponseContent, + SetGuardianFactorsProviderPushNotificationFcmResponseContent, + SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent, + SetGuardianFactorsProviderPushNotificationResponseContent, + SetGuardianFactorsProviderPushNotificationSnsResponseContent, + SetGuardianFactorsProviderSmsResponseContent, + SetGuardianFactorsProviderSmsTwilioResponseContent, + SetGuardianPoliciesRequestContent, + SetGuardianPoliciesResponseContent, + SetNetworkAclsResponseContent, + SetPartialsRequestContent, + SetRulesConfigResponseContent, + SetSelfServiceProfileCustomTextRequestContent, + SetSelfServiceProfileCustomTextResponseContent, + SetUserAuthenticationMethodResponseContent, + SetUserAuthenticationMethods, + SetUserAuthenticationMethodsRequestContent, + SetsCustomTextsByLanguageRequestContent, + SigningAlgorithmEnum, + SigningKeys, + SigningKeysDate, + SignupSchema, + SignupStatusEnum, + SignupVerification, + SignupVerified, + SupportedLocales, + SuspiciousIpThrottlingAllowlist, + SuspiciousIpThrottlingAllowlistItem, + SuspiciousIpThrottlingPreCustomTokenExchangeStage, + SuspiciousIpThrottlingPreLoginStage, + SuspiciousIpThrottlingPreUserRegistrationStage, + SuspiciousIpThrottlingShieldsEnum, + SuspiciousIpThrottlingStage, + SynchronizeGroupsEnum, + SynchronizedGroupPayload, + TenantOidcLogoutSettings, + TenantSettingsCountryCodes, + TenantSettingsCountryCodesMode, + TenantSettingsCountryCodesModeResponse, + TenantSettingsCountryCodesResponse, + TenantSettingsDeviceFlow, + TenantSettingsDeviceFlowCharset, + TenantSettingsDynamicClientRegistrationSecurityMode, + TenantSettingsErrorPage, + TenantSettingsFlags, + TenantSettingsGuardianPage, + TenantSettingsMtls, + TenantSettingsNullableSecurityHeaders, + TenantSettingsPasswordPage, + TenantSettingsResourceParameterProfile, + TenantSettingsSessions, + TenantSettingsSupportedLocalesEnum, + TestActionPayload, + TestActionResponseContent, + TestActionResultPayload, + TestCustomDomainResponseContent, + TestEventDataContent, + ThirdPartyClientAccessConfig, + TokenExchangeProfileResponseContent, + TokenExchangeProfileTypeEnum, + TokenQuota, + TokenQuotaClientCredentials, + TokenQuotaConfiguration, + TokenVaultPrivilegedAccessGrant, + TokenVaultPrivilegedAccessIpAllowlistEntry, + TooManyRequestsErrorBody, + TooManyRequestsErrorBodyError, + TooManyRequestsSchema, + TooManyRequestsSchemaError, + TwilioProviderConfiguration, + TwilioProviderCredentials, + TwilioProviderDeliveryMethodEnum, + UnauthorizedSchema, + UnauthorizedSchemaError, + UniversalLoginExperienceEnum, + UpdateActionBindingsResponseContent, + UpdateActionModuleResponseContent, + UpdateActionResponseContent, + UpdateAculResponseContent, + UpdateAttackProtectionCaptchaResponseContent, + UpdateBotDetectionSettingsResponseContent, + UpdateBrandingColors, + UpdateBrandingFont, + UpdateBrandingPageBackground, + UpdateBrandingPhoneProviderResponseContent, + UpdateBrandingResponseContent, + UpdateBrandingThemeResponseContent, + UpdateBreachedPasswordDetectionSettingsResponseContent, + UpdateBruteForceSettingsResponseContent, + UpdateClientGrantResponseContent, + UpdateClientResponseContent, + UpdateConnectionOptions, + UpdateConnectionProfileResponseContent, + UpdateConnectionRequestContentAd, + UpdateConnectionRequestContentAdfs, + UpdateConnectionRequestContentAmazon, + UpdateConnectionRequestContentApple, + UpdateConnectionRequestContentAuth0, + UpdateConnectionRequestContentAuth0Oidc, + UpdateConnectionRequestContentAzureAd, + UpdateConnectionRequestContentBaidu, + UpdateConnectionRequestContentBitbucket, + UpdateConnectionRequestContentBitly, + UpdateConnectionRequestContentBox, + UpdateConnectionRequestContentCustom, + UpdateConnectionRequestContentDaccount, + UpdateConnectionRequestContentDropbox, + UpdateConnectionRequestContentDwolla, + UpdateConnectionRequestContentEmail, + UpdateConnectionRequestContentEvernote, + UpdateConnectionRequestContentEvernoteSandbox, + UpdateConnectionRequestContentExact, + UpdateConnectionRequestContentFacebook, + UpdateConnectionRequestContentFitbit, + UpdateConnectionRequestContentGitHub, + UpdateConnectionRequestContentGoogleApps, + UpdateConnectionRequestContentGoogleOAuth2, + UpdateConnectionRequestContentInstagram, + UpdateConnectionRequestContentIp, + UpdateConnectionRequestContentLine, + UpdateConnectionRequestContentLinkedin, + UpdateConnectionRequestContentOAuth1, + UpdateConnectionRequestContentOAuth2, + UpdateConnectionRequestContentOffice365, + UpdateConnectionRequestContentOidc, + UpdateConnectionRequestContentOkta, + UpdateConnectionRequestContentPaypal, + UpdateConnectionRequestContentPaypalSandbox, + UpdateConnectionRequestContentPingFederate, + UpdateConnectionRequestContentPlanningCenter, + UpdateConnectionRequestContentSalesforce, + UpdateConnectionRequestContentSalesforceCommunity, + UpdateConnectionRequestContentSalesforceSandbox, + UpdateConnectionRequestContentSaml, + UpdateConnectionRequestContentSharepoint, + UpdateConnectionRequestContentShop, + UpdateConnectionRequestContentShopify, + UpdateConnectionRequestContentSms, + UpdateConnectionRequestContentSoundcloud, + UpdateConnectionRequestContentThirtySevenSignals, + UpdateConnectionRequestContentTwitter, + UpdateConnectionRequestContentUntappd, + UpdateConnectionRequestContentVkontakte, + UpdateConnectionRequestContentWeibo, + UpdateConnectionRequestContentWindowsLive, + UpdateConnectionRequestContentWordpress, + UpdateConnectionRequestContentYahoo, + UpdateConnectionRequestContentYandex, + UpdateConnectionResponseContent, + UpdateCrossAppAccessResourceApp, + UpdateCustomDomainResponseContent, + UpdateDefaultCanonicalDomainResponseContent, + UpdateDefaultCustomDomainResponseContent, + UpdateDefaultDomainResponseContent, + UpdateDirectoryProvisioningRequestContent, + UpdateDirectoryProvisioningResponseContent, + UpdateEmailProviderResponseContent, + UpdateEmailTemplateResponseContent, + UpdateEnabledClientConnectionsRequestContent, + UpdateEnabledClientConnectionsRequestContentItem, + UpdateEventStreamResponseContent, + UpdateFlowResponseContent, + UpdateFlowsVaultConnectionResponseContent, + UpdateFlowsVaultConnectionSetup, + UpdateFormResponseContent, + UpdateGuardianFactorDuoSettingsResponseContent, + UpdateGuardianFactorsProviderPushNotificationApnsResponseContent, + UpdateGuardianFactorsProviderPushNotificationFcmResponseContent, + UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent, + UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, + UpdateHookResponseContent, + UpdateHookSecretRequestContent, + UpdateIdentityAssertionAuthorizationGrant, + UpdateLogStreamResponseContent, + UpdateNetworkAclResponseContent, + UpdateOrganizationAllConnectionResponseContent, + UpdateOrganizationClientResponseContent, + UpdateOrganizationConnectionResponseContent, + UpdateOrganizationDiscoveryDomainResponseContent, + UpdateOrganizationResponseContent, + UpdatePhoneTemplateResponseContent, + UpdateRateLimitPolicyResponseContent, + UpdateRefreshTokenResponseContent, + UpdateResourceServerResponseContent, + UpdateRiskAssessmentsSettingsNewDeviceResponseContent, + UpdateRiskAssessmentsSettingsResponseContent, + UpdateRoleResponseContent, + UpdateRuleResponseContent, + UpdateScimConfigurationResponseContent, + UpdateSelfServiceProfileResponseContent, + UpdateSessionResponseContent, + UpdateSettingsResponseContent, + UpdateSuspiciousIpThrottlingSettingsResponseContent, + UpdateTenantSettingsResponseContent, + UpdateTokenQuota, + UpdateUniversalLoginTemplateRequestContent, + UpdateUniversalLoginTemplateRequestContentTemplate, + UpdateUserAttributeProfileResponseContent, + UpdateUserAuthenticationMethodResponseContent, + UpdateUserResponseContent, + UpdateVerifiableCredentialTemplateResponseContent, + UserAppMetadataSchema, + UserAttributeProfile, + UserAttributeProfileId, + UserAttributeProfileName, + UserAttributeProfileOidcMapping, + UserAttributeProfilePatchUserId, + UserAttributeProfileSamlMapping, + UserAttributeProfileStrategyOverrides, + UserAttributeProfileStrategyOverridesMapping, + UserAttributeProfileStrategyOverridesUserId, + UserAttributeProfileStrategyOverridesUserIdMapping, + UserAttributeProfileTemplate, + UserAttributeProfileTemplateItem, + UserAttributeProfileUserAttributeAdditionalProperties, + UserAttributeProfileUserAttributes, + UserAttributeProfileUserId, + UserAttributeProfileUserIdOidcMappingEnum, + UserAttributeProfileUserIdOidcStrategyOverrideMapping, + UserAttributeProfileUserIdSamlMapping, + UserAuthenticationMethod, + UserAuthenticationMethodProperties, + UserAuthenticationMethodPropertiesEnum, + UserBlockIdentifier, + UserEffectivePermissionResponseContent, + UserEffectivePermissionRoleSourceEnum, + UserEffectivePermissionRoleSourceResponseContent, + UserEffectivePermissionSourceEnum, + UserEffectiveRole, + UserEffectiveRoleSource, + UserEnrollmentAuthMethodEnum, + UserEnrollmentStatusEnum, + UserGrant, + UserGroupsResponseSchema, + UserId, + UserIdentity, + UserIdentityProviderEnum, + UserIdentitySchema, + UserListLogOffsetPaginatedResponseContent, + UserMetadata, + UserMetadataSchema, + UserMultifactorProviderEnum, + UserPermissionSchema, + UserProfileData, + UserResponseSchema, + UsernameAllowedTypes, + UsernameAttribute, + UsernameAttributeIdentifier, + UsernameValidation, + UsersEnrollment, + VerifiableCredentialTemplateResponse, + VerificationMethodEnum, + VerifyCustomDomainResponseContent, + VerifyEmailTicketResponseContent, + X509CertificateCredential, + X509CertificateCredentialTypeEnum, + XssProtectionConfig, + XssProtectionMode, + ) + from .errors import ( + BadRequestError, + ConflictError, + ContentTooLargeError, + ForbiddenError, + GoneError, + InternalServerError, + NotFoundError, + PaymentRequiredError, + PreconditionFailedError, + ServiceUnavailableError, + TooManyRequestsError, + UnauthorizedError, + ) + from . import ( + actions, + anomaly, + attack_protection, + branding, + client_grants, + clients, + connection_profiles, + connections, + custom_domains, + device_credentials, + email_templates, + emails, + event_streams, + events, + flows, + forms, + groups, + guardian, + hooks, + jobs, + keys, + log_streams, + logs, + network_acls, + organizations, + prompts, + rate_limit_policies, + refresh_tokens, + resource_servers, + risk_assessments, + roles, + rules, + rules_configs, + self_service_profiles, + sessions, + stats, + supplemental_signals, + tenants, + tickets, + token_exchange_profiles, + user_attribute_profiles, + user_blocks, + user_grants, + users, + verifiable_credentials, + ) + from ._default_clients import DefaultAioHttpClient, DefaultAsyncHttpxClient + from .client import AsyncAuth0, Auth0 + from .environment import Auth0Environment + from .event_streams import EventStreamsCreateRequest + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider + from .version import __version__ + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider + _dynamic_imports: typing.Dict[str, str] = { + "Action": ".types", + "ActionBase": ".types", + "ActionBinding": ".types", + "ActionBindingRef": ".types", + "ActionBindingRefTypeEnum": ".types", + "ActionBindingTypeEnum": ".types", + "ActionBindingWithRef": ".types", + "ActionBuildStatusEnum": ".types", + "ActionDeployedVersion": ".types", + "ActionError": ".types", + "ActionExecutionResult": ".types", + "ActionExecutionStatusEnum": ".types", + "ActionModuleAction": ".types", + "ActionModuleDependency": ".types", + "ActionModuleDependencyRequest": ".types", + "ActionModuleListItem": ".types", + "ActionModuleReference": ".types", + "ActionModuleSecret": ".types", + "ActionModuleSecretRequest": ".types", + "ActionModuleVersion": ".types", + "ActionModuleVersionReference": ".types", + "ActionSecretRequest": ".types", + "ActionSecretResponse": ".types", + "ActionTrigger": ".types", + "ActionTriggerCompatibleTrigger": ".types", + "ActionTriggerTypeEnum": ".types", + "ActionVersion": ".types", + "ActionVersionBuildStatusEnum": ".types", + "ActionVersionDependency": ".types", + "AculClientFilter": ".types", + "AculClientFilterById": ".types", + "AculClientFilterByMetadata": ".types", + "AculClientMetadata": ".types", + "AculConfigs": ".types", + "AculConfigsItem": ".types", + "AculContextConfiguration": ".types", + "AculContextConfigurationItem": ".types", + "AculContextEnum": ".types", + "AculDomainFilter": ".types", + "AculDomainFilterById": ".types", + "AculDomainFilterByMetadata": ".types", + "AculDomainMetadata": ".types", + "AculFilters": ".types", + "AculHeadTag": ".types", + "AculHeadTagAttributes": ".types", + "AculHeadTagContent": ".types", + "AculMatchTypeEnum": ".types", + "AculOrganizationFilter": ".types", + "AculOrganizationFilterById": ".types", + "AculOrganizationFilterByMetadata": ".types", + "AculOrganizationMetadata": ".types", + "AculRenderingModeEnum": ".types", + "AddOrganizationConnectionResponseContent": ".types", + "AnomalyIpFormat": ".types", + "AppMetadata": ".types", + "AssessorsTypeEnum": ".types", + "AssociateOrganizationClientGrantResponseContent": ".types", + "AsyncApprovalNotificationsChannelsEnum": ".types", + "AsyncAuth0": ".client", + "AsyncManagementClient": ".management_client", + "AsyncTokenProvider": ".token_provider", + "AttackProtectionCaptchaArkoseResponseContent": ".types", + "AttackProtectionCaptchaAuthChallengeRequest": ".types", + "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", + "AttackProtectionCaptchaFriendlyCaptchaResponseContent": ".types", + "AttackProtectionCaptchaHcaptchaResponseContent": ".types", + "AttackProtectionCaptchaProviderId": ".types", + "AttackProtectionCaptchaRecaptchaEnterpriseResponseContent": ".types", + "AttackProtectionCaptchaRecaptchaV2ResponseContent": ".types", + "AttackProtectionCaptchaSimpleCaptchaResponseContent": ".types", + "AttackProtectionUpdateCaptchaArkose": ".types", + "AttackProtectionUpdateCaptchaFriendlyCaptcha": ".types", + "AttackProtectionUpdateCaptchaHcaptcha": ".types", + "AttackProtectionUpdateCaptchaRecaptchaEnterprise": ".types", + "AttackProtectionUpdateCaptchaRecaptchaV2": ".types", + "Auth0": ".client", + "Auth0Environment": ".environment", + "AuthenticationMethodTypeEnum": ".types", + "AuthenticationTypeEnum": ".types", + "BadRequestError": ".errors", + "BadRequestSchema": ".types", + "BadRequestSchemaError": ".types", + "BotDetectionAllowlist": ".types", + "BotDetectionChallengePolicyPasswordFlowEnum": ".types", + "BotDetectionChallengePolicyPasswordResetFlowEnum": ".types", + "BotDetectionChallengePolicyPasswordlessFlowEnum": ".types", + "BotDetectionCidrBlock": ".types", + "BotDetectionIPv4": ".types", + "BotDetectionIPv6": ".types", + "BotDetectionIPv6CidrBlock": ".types", + "BotDetectionIpAddressOrCidrBlock": ".types", + "BotDetectionLevelEnum": ".types", + "BotDetectionMonitoringModeEnabled": ".types", + "BrandingColors": ".types", + "BrandingFont": ".types", + "BrandingPageBackground": ".types", + "BrandingThemeBorders": ".types", + "BrandingThemeBordersButtonsStyleEnum": ".types", + "BrandingThemeBordersInputsStyleEnum": ".types", + "BrandingThemeColors": ".types", + "BrandingThemeColorsCaptchaWidgetThemeEnum": ".types", + "BrandingThemeFontBodyText": ".types", + "BrandingThemeFontButtonsText": ".types", + "BrandingThemeFontInputLabels": ".types", + "BrandingThemeFontLinks": ".types", + "BrandingThemeFontLinksStyleEnum": ".types", + "BrandingThemeFontSubtitle": ".types", + "BrandingThemeFontTitle": ".types", + "BrandingThemeFonts": ".types", + "BrandingThemeIdentifiers": ".types", + "BrandingThemeIdentifiersLoginDisplayEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplay": ".types", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum": ".types", + "BrandingThemePageBackground": ".types", + "BrandingThemePageBackgroundPageLayoutEnum": ".types", + "BrandingThemeWidget": ".types", + "BrandingThemeWidgetHeaderTextAlignmentEnum": ".types", + "BrandingThemeWidgetLogoPositionEnum": ".types", + "BrandingThemeWidgetSocialButtonsLayoutEnum": ".types", + "BreachedPasswordDetectionAdminNotificationFrequencyEnum": ".types", + "BreachedPasswordDetectionMethodEnum": ".types", + "BreachedPasswordDetectionPreChangePasswordShieldsEnum": ".types", + "BreachedPasswordDetectionPreChangePasswordStage": ".types", + "BreachedPasswordDetectionPreUserRegistrationShieldsEnum": ".types", + "BreachedPasswordDetectionPreUserRegistrationStage": ".types", + "BreachedPasswordDetectionShieldsEnum": ".types", + "BreachedPasswordDetectionStage": ".types", + "BruteForceProtectionModeEnum": ".types", + "BruteForceProtectionShieldsEnum": ".types", + "BulkUpdateAculResponseContent": ".types", + "CertificateSubjectDnCredential": ".types", + "CertificateSubjectDnCredentialTypeEnum": ".types", + "ChangePasswordTicketIdentity": ".types", + "ChangePasswordTicketResponseContent": ".types", + "CimdMappedClientAuthenticationMethods": ".types", + "CimdMappedClientAuthenticationMethodsPrivateKeyJwt": ".types", + "CimdMappedClientFields": ".types", + "CimdMappedPrivateKeyJwtCredential": ".types", + "CimdValidationResult": ".types", + "Client": ".types", + "ClientAddonAws": ".types", + "ClientAddonAzureBlob": ".types", + "ClientAddonAzureSb": ".types", + "ClientAddonBox": ".types", + "ClientAddonCloudBees": ".types", + "ClientAddonConcur": ".types", + "ClientAddonDropbox": ".types", + "ClientAddonEchoSign": ".types", + "ClientAddonEgnyte": ".types", + "ClientAddonFirebase": ".types", + "ClientAddonLayer": ".types", + "ClientAddonMscrm": ".types", + "ClientAddonNewRelic": ".types", + "ClientAddonOag": ".types", + "ClientAddonOffice365": ".types", + "ClientAddonRms": ".types", + "ClientAddonSalesforce": ".types", + "ClientAddonSalesforceApi": ".types", + "ClientAddonSalesforceSandboxApi": ".types", + "ClientAddonSaml": ".types", + "ClientAddonSamlMapping": ".types", + "ClientAddonSapapi": ".types", + "ClientAddonSentry": ".types", + "ClientAddonSharePoint": ".types", + "ClientAddonSharePointExternalUrl": ".types", + "ClientAddonSlack": ".types", + "ClientAddonSpringCm": ".types", + "ClientAddonSsoIntegration": ".types", + "ClientAddonWams": ".types", + "ClientAddonWsFed": ".types", + "ClientAddonZendesk": ".types", + "ClientAddonZoom": ".types", + "ClientAddons": ".types", + "ClientAppTypeEnum": ".types", + "ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration": ".types", + "ClientAsyncApprovalNotificationsChannelsApiPostConfiguration": ".types", + "ClientAuthenticationMethod": ".types", + "ClientAuthenticationMethodPrivateKeyJwt": ".types", + "ClientAuthenticationMethodPrivateKeyJwtCredentials": ".types", + "ClientAuthenticationMethodSelfSignedTlsClientAuth": ".types", + "ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials": ".types", + "ClientAuthenticationMethodTlsClientAuth": ".types", + "ClientAuthenticationMethodTlsClientAuthCredentials": ".types", + "ClientComplianceLevelEnum": ".types", + "ClientCreateAuthenticationMethod": ".types", + "ClientCreateAuthenticationMethodPrivateKeyJwt": ".types", + "ClientCreateAuthenticationMethodPrivateKeyJwtCredentials": ".types", + "ClientCreateAuthenticationMethodTlsClientAuth": ".types", + "ClientCreateAuthenticationMethodTlsClientAuthCredentials": ".types", + "ClientCredential": ".types", + "ClientCredentialAlgorithmEnum": ".types", + "ClientCredentialTypeEnum": ".types", + "ClientDefaultOrganization": ".types", + "ClientDefaultOrganizationFlowsEnum": ".types", + "ClientEncryptionKey": ".types", + "ClientExternalMetadataCreatedByEnum": ".types", + "ClientExternalMetadataTypeEnum": ".types", + "ClientGrantAllowAnyOrganizationEnum": ".types", + "ClientGrantDefaultForEnum": ".types", + "ClientGrantOrganizationNullableUsageEnum": ".types", + "ClientGrantOrganizationUsageEnum": ".types", + "ClientGrantResponseContent": ".types", + "ClientGrantSubjectTypeEnum": ".types", + "ClientJwtConfiguration": ".types", + "ClientJwtConfigurationScopes": ".types", + "ClientMetadata": ".types", + "ClientMobile": ".types", + "ClientMobileAndroid": ".types", + "ClientMobileiOs": ".types", + "ClientMyOrganizationConfigurationAllowedStrategiesEnum": ".types", + "ClientMyOrganizationDeletionBehaviorEnum": ".types", + "ClientMyOrganizationPatchConfiguration": ".types", + "ClientMyOrganizationPostConfiguration": ".types", + "ClientMyOrganizationResponseConfiguration": ".types", + "ClientOidcBackchannelLogoutInitiators": ".types", + "ClientOidcBackchannelLogoutInitiatorsEnum": ".types", + "ClientOidcBackchannelLogoutInitiatorsModeEnum": ".types", + "ClientOidcBackchannelLogoutSessionMetadata": ".types", + "ClientOidcBackchannelLogoutSettings": ".types", + "ClientOrganizationDiscoveryEnum": ".types", + "ClientOrganizationRequireBehaviorEnum": ".types", + "ClientOrganizationRequireBehaviorPatchEnum": ".types", + "ClientOrganizationUsageEnum": ".types", + "ClientOrganizationUsagePatchEnum": ".types", + "ClientRedirectionPolicyEnum": ".types", + "ClientRefreshTokenConfiguration": ".types", + "ClientRefreshTokenPolicy": ".types", + "ClientSessionTransferAllowedAuthenticationMethodsEnum": ".types", + "ClientSessionTransferConfiguration": ".types", + "ClientSessionTransferDelegationConfiguration": ".types", + "ClientSessionTransferDelegationDeviceBindingEnum": ".types", + "ClientSessionTransferDeviceBindingEnum": ".types", + "ClientSignedRequestObjectWithCredentialId": ".types", + "ClientSignedRequestObjectWithPublicKey": ".types", + "ClientSigningKey": ".types", + "ClientSigningKeys": ".types", + "ClientThirdPartySecurityModeEnum": ".types", + "ClientTokenEndpointAuthMethodEnum": ".types", + "ClientTokenEndpointAuthMethodOrNullEnum": ".types", + "ClientTokenExchangeConfiguration": ".types", + "ClientTokenExchangeConfigurationOrNull": ".types", + "ClientTokenExchangeTypeEnum": ".types", + "ClientTokenVaultPrivilegedAccessWithCredentialId": ".types", + "ClientTokenVaultPrivilegedAccessWithPublicKey": ".types", + "ConflictError": ".errors", + "ConflictSchema": ".types", + "ConflictSchemaError": ".types", + "ConnectedAccount": ".types", + "ConnectedAccountAccessTypeEnum": ".types", + "ConnectionAccessTokenUrloAuth1": ".types", + "ConnectionAcrValuesSupported": ".types", + "ConnectionAdminAccessTokenExpiresInGoogleApps": ".types", + "ConnectionAdminAccessTokenGoogleApps": ".types", + "ConnectionAdminRefreshTokenGoogleApps": ".types", + "ConnectionAgentIpad": ".types", + "ConnectionAgentModeAd": ".types", + "ConnectionAgentVersionAd": ".types", + "ConnectionAllowedAudiencesGoogleOAuth2": ".types", + "ConnectionApiBehaviorEnum": ".types", + "ConnectionApiEnableGroups": ".types", + "ConnectionApiEnableGroupsGoogleApps": ".types", + "ConnectionApiEnableUsers": ".types", + "ConnectionApiEnableUsersGoogleApps": ".types", + "ConnectionAppDomainAzureAd": ".types", + "ConnectionAssertionDecryptionAlgorithmProfileEnum": ".types", + "ConnectionAssertionDecryptionSettings": ".types", + "ConnectionAttributeMapAttributes": ".types", + "ConnectionAttributeMapOidc": ".types", + "ConnectionAttributeMapOkta": ".types", + "ConnectionAttributeMapUserinfoScope": ".types", + "ConnectionAttributes": ".types", + "ConnectionAuthParamsAdditionalPropertiesOAuth2": ".types", + "ConnectionAuthParamsEmail": ".types", + "ConnectionAuthParamsMap": ".types", + "ConnectionAuthParamsOAuth2": ".types", + "ConnectionAuthenticationMethods": ".types", + "ConnectionAuthenticationPurpose": ".types", + "ConnectionAuthorizationEndpoint": ".types", + "ConnectionBaseUrlExact": ".types", + "ConnectionBruteForceProtection": ".types", + "ConnectionCalculatedThumbprintSaml": ".types", + "ConnectionCertsAd": ".types", + "ConnectionClaimTypesSupported": ".types", + "ConnectionClaimsLocalesSupported": ".types", + "ConnectionClaimsParameterSupported": ".types", + "ConnectionClaimsSupported": ".types", + "ConnectionClientId": ".types", + "ConnectionClientIdAmazon": ".types", + "ConnectionClientIdAzureAd": ".types", + "ConnectionClientIdBitbucket": ".types", + "ConnectionClientIdExact": ".types", + "ConnectionClientIdFacebook": ".types", + "ConnectionClientIdGoogleApps": ".types", + "ConnectionClientIdGoogleOAuth2": ".types", + "ConnectionClientIdLine": ".types", + "ConnectionClientIdLinkedin": ".types", + "ConnectionClientIdOAuth1": ".types", + "ConnectionClientIdOAuth2": ".types", + "ConnectionClientIdOidc": ".types", + "ConnectionClientIdPaypal": ".types", + "ConnectionClientIdSalesforce": ".types", + "ConnectionClientIdWindowsLive": ".types", + "ConnectionClientProtocolSaml": ".types", + "ConnectionClientSecret": ".types", + "ConnectionClientSecretAmazon": ".types", + "ConnectionClientSecretAzureAd": ".types", + "ConnectionClientSecretBitbucket": ".types", + "ConnectionClientSecretExact": ".types", + "ConnectionClientSecretFacebook": ".types", + "ConnectionClientSecretGoogleApps": ".types", + "ConnectionClientSecretGoogleOAuth2": ".types", + "ConnectionClientSecretLine": ".types", + "ConnectionClientSecretLinkedin": ".types", + "ConnectionClientSecretOAuth1": ".types", + "ConnectionClientSecretOAuth2": ".types", + "ConnectionClientSecretOidc": ".types", + "ConnectionClientSecretPaypal": ".types", + "ConnectionClientSecretSalesforce": ".types", + "ConnectionClientSecretWindowsLive": ".types", + "ConnectionCommon": ".types", + "ConnectionCommunityBaseUrlSalesforce": ".types", + "ConnectionConfiguration": ".types", + "ConnectionConnectedAccountsPurpose": ".types", + "ConnectionConnectedAccountsPurposeXaa": ".types", + "ConnectionConnectionSettings": ".types", + "ConnectionConnectionSettingsPkceEnum": ".types", + "ConnectionCrossAppAccessResourceApp": ".types", + "ConnectionCrossAppAccessResourceAppStatusEnum": ".types", + "ConnectionCustomHeadersOAuth2": ".types", + "ConnectionCustomScripts": ".types", + "ConnectionDebugSaml": ".types", + "ConnectionDecryptionKeySaml": ".types", + "ConnectionDecryptionKeySamlCert": ".types", + "ConnectionDestinationUrlSaml": ".types", + "ConnectionDigestAlgorithmEnumSaml": ".types", + "ConnectionDigestAlgorithmSaml": ".types", + "ConnectionDisableSelfServiceChangePassword": ".types", + "ConnectionDisableSignup": ".types", + "ConnectionDisableSignupSms": ".types", + "ConnectionDiscoveryUrl": ".types", + "ConnectionDisplayName": ".types", + "ConnectionDisplayValuesSupported": ".types", + "ConnectionDomainAliases": ".types", + "ConnectionDomainAliasesAd": ".types", + "ConnectionDomainAliasesAzureAd": ".types", + "ConnectionDomainAliasesItemsOne": ".types", + "ConnectionDomainAliasesSaml": ".types", + "ConnectionDomainGoogleApps": ".types", + "ConnectionDomainOkta": ".types", + "ConnectionDpopSigningAlgEnum": ".types", + "ConnectionDpopSigningAlgValuesSupported": ".types", + "ConnectionEmailBodyEmail": ".types", + "ConnectionEmailEmail": ".types", + "ConnectionEmailEmailSyntax": ".types", + "ConnectionEmailFromEmail": ".types", + "ConnectionEmailOtpAuthenticationMethod": ".types", + "ConnectionEmailSubjectEmail": ".types", + "ConnectionEnableScriptContext": ".types", + "ConnectionEnabledClient": ".types", + "ConnectionEnabledClients": ".types", + "ConnectionEnabledDatabaseCustomization": ".types", + "ConnectionEndSessionEndpoint": ".types", + "ConnectionEntityIdSaml": ".types", + "ConnectionExtAdmin": ".types", + "ConnectionExtAgreedTerms": ".types", + "ConnectionExtAgreedTermsGoogleApps": ".types", + "ConnectionExtAssignedPlans": ".types", + "ConnectionExtGroups": ".types", + "ConnectionExtGroupsAzureAd": ".types", + "ConnectionExtGroupsGoogleApps": ".types", + "ConnectionExtIsAdminGoogleApps": ".types", + "ConnectionExtIsSuspended": ".types", + "ConnectionExtIsSuspendedGoogleApps": ".types", + "ConnectionExtProfile": ".types", + "ConnectionFieldsMap": ".types", + "ConnectionFieldsMapSaml": ".types", + "ConnectionFieldsMapSamlValue": ".types", + "ConnectionForList": ".types", + "ConnectionForOrganization": ".types", + "ConnectionForwardReqInfoSms": ".types", + "ConnectionFreeformScopesAmazon": ".types", + "ConnectionFreeformScopesGoogleOAuth2": ".types", + "ConnectionFreeformScopesLinkedin": ".types", + "ConnectionFreeformScopesPaypal": ".types", + "ConnectionFreeformScopesSalesforce": ".types", + "ConnectionFreeformScopesWindowsLive": ".types", + "ConnectionFromSms": ".types", + "ConnectionGatewayAuthentication": ".types", + "ConnectionGatewayAuthenticationAudienceSms": ".types", + "ConnectionGatewayAuthenticationMethodSms": ".types", + "ConnectionGatewayAuthenticationSms": ".types", + "ConnectionGatewayAuthenticationSubjectSms": ".types", + "ConnectionGatewayUrlSms": ".types", + "ConnectionGlobalTokenRevocationJwtIssSaml": ".types", + "ConnectionGlobalTokenRevocationJwtSubSaml": ".types", + "ConnectionGrantTypesSupported": ".types", + "ConnectionHandleLoginFromSocialGoogleApps": ".types", + "ConnectionHttpsUrlWithHttpFallback": ".types", + "ConnectionHttpsUrlWithHttpFallback2048": ".types", + "ConnectionHttpsUrlWithHttpFallback255": ".types", + "ConnectionIconUrl": ".types", + "ConnectionIconUrlAdfs": ".types", + "ConnectionIconUrlAzureAd": ".types", + "ConnectionIconUrlGoogleApps": ".types", + "ConnectionIconUrlGoogleOAuth2": ".types", + "ConnectionIconUrlSaml": ".types", + "ConnectionId": ".types", + "ConnectionIdTokenEncryptionAlgValuesSupported": ".types", + "ConnectionIdTokenEncryptionEncValuesSupported": ".types", + "ConnectionIdTokenSessionExpirySupported": ".types", + "ConnectionIdTokenSignedResponseAlgEnum": ".types", + "ConnectionIdTokenSignedResponseAlgs": ".types", + "ConnectionIdTokenSigningAlgValuesSupported": ".types", + "ConnectionIdentifierPrecedence": ".types", + "ConnectionIdentifierPrecedenceEnum": ".types", + "ConnectionIdentityApiAzureAd": ".types", + "ConnectionIdentityApiEnumAzureAd": ".types", + "ConnectionIdentityProviderEnum": ".types", + "ConnectionImportMode": ".types", + "ConnectionIpsAd": ".types", + "ConnectionIsDomainConnection": ".types", + "ConnectionIssuer": ".types", + "ConnectionJwksUri": ".types", + "ConnectionKey": ".types", + "ConnectionKeyUseEnum": ".types", + "ConnectionMappingModeEnumOidc": ".types", + "ConnectionMappingModeEnumOkta": ".types", + "ConnectionMaxGroupsToRetrieve": ".types", + "ConnectionMessagingServiceSidSms": ".types", + "ConnectionMetadataUrlSaml": ".types", + "ConnectionMetadataXml": ".types", + "ConnectionMetadataXmlAdfs": ".types", + "ConnectionMetadataXmlSaml": ".types", + "ConnectionMfa": ".types", + "ConnectionName": ".types", + "ConnectionNamePrefixTemplate": ".types", + "ConnectionNonPersistentAttrs": ".types", + "ConnectionOpPolicyUri": ".types", + "ConnectionOpTosUri": ".types", + "ConnectionOptions": ".types", + "ConnectionOptionsAd": ".types", + "ConnectionOptionsAdfs": ".types", + "ConnectionOptionsAmazon": ".types", + "ConnectionOptionsApple": ".types", + "ConnectionOptionsAuth0": ".types", + "ConnectionOptionsAuth0Oidc": ".types", + "ConnectionOptionsAzureAd": ".types", + "ConnectionOptionsBaidu": ".types", + "ConnectionOptionsBitbucket": ".types", + "ConnectionOptionsBitly": ".types", + "ConnectionOptionsBox": ".types", + "ConnectionOptionsClientIdGithub": ".types", + "ConnectionOptionsClientIdTwitter": ".types", + "ConnectionOptionsClientSecretGithub": ".types", + "ConnectionOptionsClientSecretTwitter": ".types", + "ConnectionOptionsCommon": ".types", + "ConnectionOptionsCommonOidc": ".types", + "ConnectionOptionsCommonSaml": ".types", + "ConnectionOptionsCustom": ".types", + "ConnectionOptionsDaccount": ".types", + "ConnectionOptionsDeflateSaml": ".types", + "ConnectionOptionsDropbox": ".types", + "ConnectionOptionsDwolla": ".types", + "ConnectionOptionsEmail": ".types", + "ConnectionOptionsEvernote": ".types", + "ConnectionOptionsExact": ".types", + "ConnectionOptionsFacebook": ".types", + "ConnectionOptionsFitbit": ".types", + "ConnectionOptionsFreeformScopesGithub": ".types", + "ConnectionOptionsGitHub": ".types", + "ConnectionOptionsGoogleApps": ".types", + "ConnectionOptionsGoogleOAuth2": ".types", + "ConnectionOptionsIdpInitiatedClientProtocolEnumSaml": ".types", + "ConnectionOptionsIdpinitiatedSaml": ".types", + "ConnectionOptionsInstagram": ".types", + "ConnectionOptionsIp": ".types", + "ConnectionOptionsLine": ".types", + "ConnectionOptionsLinkedin": ".types", + "ConnectionOptionsOAuth1": ".types", + "ConnectionOptionsOAuth1Common": ".types", + "ConnectionOptionsOAuth2": ".types", + "ConnectionOptionsOAuth2Common": ".types", + "ConnectionOptionsOffice365": ".types", + "ConnectionOptionsOidc": ".types", + "ConnectionOptionsOidcMetadata": ".types", + "ConnectionOptionsOkta": ".types", + "ConnectionOptionsPaypal": ".types", + "ConnectionOptionsPingFederate": ".types", + "ConnectionOptionsPlanningCenter": ".types", + "ConnectionOptionsProtocolEnumTwitter": ".types", + "ConnectionOptionsSalesforce": ".types", + "ConnectionOptionsSalesforceCommunity": ".types", + "ConnectionOptionsSaml": ".types", + "ConnectionOptionsScopeGithub": ".types", + "ConnectionOptionsScopeTwitter": ".types", + "ConnectionOptionsSharepoint": ".types", + "ConnectionOptionsShop": ".types", + "ConnectionOptionsShopify": ".types", + "ConnectionOptionsSms": ".types", + "ConnectionOptionsSoundcloud": ".types", + "ConnectionOptionsThirtySevenSignals": ".types", + "ConnectionOptionsTwitter": ".types", + "ConnectionOptionsUntappd": ".types", + "ConnectionOptionsVkontakte": ".types", + "ConnectionOptionsWeibo": ".types", + "ConnectionOptionsWindowsLive": ".types", + "ConnectionOptionsWordpress": ".types", + "ConnectionOptionsYahoo": ".types", + "ConnectionOptionsYandex": ".types", + "ConnectionPasskeyAuthenticationMethod": ".types", + "ConnectionPasskeyChallengeUiEnum": ".types", + "ConnectionPasskeyOptions": ".types", + "ConnectionPasswordAuthenticationMethod": ".types", + "ConnectionPasswordComplexityOptions": ".types", + "ConnectionPasswordDictionaryOptions": ".types", + "ConnectionPasswordHistoryOptions": ".types", + "ConnectionPasswordNoPersonalInfoOptions": ".types", + "ConnectionPasswordOptions": ".types", + "ConnectionPasswordOptionsComplexity": ".types", + "ConnectionPasswordOptionsDictionary": ".types", + "ConnectionPasswordOptionsHistory": ".types", + "ConnectionPasswordOptionsProfileData": ".types", + "ConnectionPasswordPolicyEnum": ".types", + "ConnectionPhoneOtpAuthenticationMethod": ".types", + "ConnectionPingFederateBaseUrl": ".types", + "ConnectionPingFederateBaseUrlPingFederate": ".types", + "ConnectionProfile": ".types", + "ConnectionProfileBitbucket": ".types", + "ConnectionProfileConfig": ".types", + "ConnectionProfileEnabledFeatures": ".types", + "ConnectionProfileId": ".types", + "ConnectionProfileName": ".types", + "ConnectionProfileOrganization": ".types", + "ConnectionProfileOrganizationAssignMembershipOnLoginEnum": ".types", + "ConnectionProfileOrganizationShowAsButtonEnum": ".types", + "ConnectionProfileStrategyOverride": ".types", + "ConnectionProfileStrategyOverrides": ".types", + "ConnectionProfileStrategyOverridesConnectionConfig": ".types", + "ConnectionProfileStrategyOverridesEnabledFeatures": ".types", + "ConnectionProfileTemplate": ".types", + "ConnectionProfileTemplateItem": ".types", + "ConnectionPropertiesOptions": ".types", + "ConnectionProtocolBindingEnumSaml": ".types", + "ConnectionProtocolBindingSaml": ".types", + "ConnectionProviderEnumSms": ".types", + "ConnectionProviderSms": ".types", + "ConnectionProvisioningTicketUrl": ".types", + "ConnectionPurposes": ".types", + "ConnectionRealmFallback": ".types", + "ConnectionRealms": ".types", + "ConnectionRecipientUrlSaml": ".types", + "ConnectionRegistrationEndpoint": ".types", + "ConnectionRequestObjectEncryptionAlgValuesSupported": ".types", + "ConnectionRequestObjectEncryptionEncValuesSupported": ".types", + "ConnectionRequestObjectSigningAlgValuesSupported": ".types", + "ConnectionRequestParameterSupported": ".types", + "ConnectionRequestTemplateSaml": ".types", + "ConnectionRequestTokenUrloAuth1": ".types", + "ConnectionRequestUriParameterSupported": ".types", + "ConnectionRequireRequestUriRegistration": ".types", + "ConnectionRequiresUsername": ".types", + "ConnectionResponseCommon": ".types", + "ConnectionResponseContentAd": ".types", + "ConnectionResponseContentAdStrategy": ".types", + "ConnectionResponseContentAdfs": ".types", + "ConnectionResponseContentAdfsStrategy": ".types", + "ConnectionResponseContentAmazon": ".types", + "ConnectionResponseContentAmazonStrategy": ".types", + "ConnectionResponseContentApple": ".types", + "ConnectionResponseContentAppleStrategy": ".types", + "ConnectionResponseContentAuth0": ".types", + "ConnectionResponseContentAuth0Oidc": ".types", + "ConnectionResponseContentAuth0OidcStrategy": ".types", + "ConnectionResponseContentAuth0Strategy": ".types", + "ConnectionResponseContentAzureAd": ".types", + "ConnectionResponseContentAzureAdStrategy": ".types", + "ConnectionResponseContentBaidu": ".types", + "ConnectionResponseContentBaiduStrategy": ".types", + "ConnectionResponseContentBitbucket": ".types", + "ConnectionResponseContentBitbucketStrategy": ".types", + "ConnectionResponseContentBitly": ".types", + "ConnectionResponseContentBitlyStrategy": ".types", + "ConnectionResponseContentBox": ".types", + "ConnectionResponseContentBoxStrategy": ".types", + "ConnectionResponseContentCustom": ".types", + "ConnectionResponseContentCustomStrategy": ".types", + "ConnectionResponseContentDaccount": ".types", + "ConnectionResponseContentDaccountStrategy": ".types", + "ConnectionResponseContentDropbox": ".types", + "ConnectionResponseContentDropboxStrategy": ".types", + "ConnectionResponseContentDwolla": ".types", + "ConnectionResponseContentDwollaStrategy": ".types", + "ConnectionResponseContentEmail": ".types", + "ConnectionResponseContentEmailStrategy": ".types", + "ConnectionResponseContentEvernote": ".types", + "ConnectionResponseContentEvernoteSandbox": ".types", + "ConnectionResponseContentEvernoteSandboxStrategy": ".types", + "ConnectionResponseContentEvernoteStrategy": ".types", + "ConnectionResponseContentExact": ".types", + "ConnectionResponseContentExactStrategy": ".types", + "ConnectionResponseContentFacebook": ".types", + "ConnectionResponseContentFacebookStrategy": ".types", + "ConnectionResponseContentFitbit": ".types", + "ConnectionResponseContentFitbitStrategy": ".types", + "ConnectionResponseContentGitHub": ".types", + "ConnectionResponseContentGitHubStrategy": ".types", + "ConnectionResponseContentGoogleApps": ".types", + "ConnectionResponseContentGoogleAppsStrategy": ".types", + "ConnectionResponseContentGoogleOAuth2": ".types", + "ConnectionResponseContentGoogleOAuth2Strategy": ".types", + "ConnectionResponseContentInstagram": ".types", + "ConnectionResponseContentInstagramStrategy": ".types", + "ConnectionResponseContentIp": ".types", + "ConnectionResponseContentIpStrategy": ".types", + "ConnectionResponseContentLine": ".types", + "ConnectionResponseContentLineStrategy": ".types", + "ConnectionResponseContentLinkedin": ".types", + "ConnectionResponseContentLinkedinStrategy": ".types", + "ConnectionResponseContentOAuth1": ".types", + "ConnectionResponseContentOAuth1Strategy": ".types", + "ConnectionResponseContentOAuth2": ".types", + "ConnectionResponseContentOAuth2Strategy": ".types", + "ConnectionResponseContentOffice365": ".types", + "ConnectionResponseContentOffice365Strategy": ".types", + "ConnectionResponseContentOidc": ".types", + "ConnectionResponseContentOidcStrategy": ".types", + "ConnectionResponseContentOkta": ".types", + "ConnectionResponseContentOktaStrategy": ".types", + "ConnectionResponseContentPaypal": ".types", + "ConnectionResponseContentPaypalSandbox": ".types", + "ConnectionResponseContentPaypalSandboxStrategy": ".types", + "ConnectionResponseContentPaypalStrategy": ".types", + "ConnectionResponseContentPingFederate": ".types", + "ConnectionResponseContentPingFederateStrategy": ".types", + "ConnectionResponseContentPlanningCenter": ".types", + "ConnectionResponseContentPlanningCenterStrategy": ".types", + "ConnectionResponseContentSalesforce": ".types", + "ConnectionResponseContentSalesforceCommunity": ".types", + "ConnectionResponseContentSalesforceCommunityStrategy": ".types", + "ConnectionResponseContentSalesforceSandbox": ".types", + "ConnectionResponseContentSalesforceSandboxStrategy": ".types", + "ConnectionResponseContentSalesforceStrategy": ".types", + "ConnectionResponseContentSaml": ".types", + "ConnectionResponseContentSamlStrategy": ".types", + "ConnectionResponseContentSharepoint": ".types", + "ConnectionResponseContentSharepointStrategy": ".types", + "ConnectionResponseContentShop": ".types", + "ConnectionResponseContentShopStrategy": ".types", + "ConnectionResponseContentShopify": ".types", + "ConnectionResponseContentShopifyStrategy": ".types", + "ConnectionResponseContentSms": ".types", + "ConnectionResponseContentSmsStrategy": ".types", + "ConnectionResponseContentSoundcloud": ".types", + "ConnectionResponseContentSoundcloudStrategy": ".types", + "ConnectionResponseContentThirtySevenSignals": ".types", + "ConnectionResponseContentThirtySevenSignalsStrategy": ".types", + "ConnectionResponseContentTwitter": ".types", + "ConnectionResponseContentTwitterStrategy": ".types", + "ConnectionResponseContentUntappd": ".types", + "ConnectionResponseContentUntappdStrategy": ".types", + "ConnectionResponseContentVkontakte": ".types", + "ConnectionResponseContentVkontakteStrategy": ".types", + "ConnectionResponseContentWeibo": ".types", + "ConnectionResponseContentWeiboStrategy": ".types", + "ConnectionResponseContentWindowsLive": ".types", + "ConnectionResponseContentWindowsLiveStrategy": ".types", + "ConnectionResponseContentWordpress": ".types", + "ConnectionResponseContentWordpressStrategy": ".types", + "ConnectionResponseContentYahoo": ".types", + "ConnectionResponseContentYahooStrategy": ".types", + "ConnectionResponseContentYandex": ".types", + "ConnectionResponseContentYandexStrategy": ".types", + "ConnectionResponseModesSupported": ".types", + "ConnectionResponseTypesSupported": ".types", + "ConnectionScopeAmazon": ".types", + "ConnectionScopeArray": ".types", + "ConnectionScopeArrayFacebook": ".types", + "ConnectionScopeArrayWindowsLive": ".types", + "ConnectionScopeAzureAd": ".types", + "ConnectionScopeFacebook": ".types", + "ConnectionScopeGoogleApps": ".types", + "ConnectionScopeGoogleOAuth2": ".types", + "ConnectionScopeItem": ".types", + "ConnectionScopeItemGoogleApps": ".types", + "ConnectionScopeLinkedin": ".types", + "ConnectionScopeOAuth2": ".types", + "ConnectionScopeOidc": ".types", + "ConnectionScopePaypal": ".types", + "ConnectionScopeSalesforce": ".types", + "ConnectionScopesSupported": ".types", + "ConnectionScriptsOAuth1": ".types", + "ConnectionScriptsOAuth2": ".types", + "ConnectionSendBackChannelNonce": ".types", + "ConnectionServiceDocumentation": ".types", + "ConnectionSetUserRootAttributesEnum": ".types", + "ConnectionSha1Thumbprint": ".types", + "ConnectionShouldTrustEmailVerifiedConnectionEnum": ".types", + "ConnectionShowAsButton": ".types", + "ConnectionSignInEndpointAd": ".types", + "ConnectionSignInEndpointAdfs": ".types", + "ConnectionSignInEndpointSaml": ".types", + "ConnectionSignOutEndpointSaml": ".types", + "ConnectionSignSamlRequestSaml": ".types", + "ConnectionSignatureAlgorithmEnumSaml": ".types", + "ConnectionSignatureAlgorithmSaml": ".types", + "ConnectionSignatureMethodOAuth1": ".types", + "ConnectionSigningCertSaml": ".types", + "ConnectionSigningCertificateDerSaml": ".types", + "ConnectionSigningCertificatePemPingFederate": ".types", + "ConnectionSigningCertificatePemSaml": ".types", + "ConnectionSigningKeySaml": ".types", + "ConnectionSignupBehaviorEnum": ".types", + "ConnectionStrategyEnum": ".types", + "ConnectionStrategyVersionEnumLinkedin": ".types", + "ConnectionStrategyVersionEnumWindowsLive": ".types", + "ConnectionSubjectTypesSupported": ".types", + "ConnectionTemplateSms": ".types", + "ConnectionTemplateSyntaxEnumSms": ".types", + "ConnectionTenantDomain": ".types", + "ConnectionTenantDomainAd": ".types", + "ConnectionTenantDomainAzureAdOne": ".types", + "ConnectionTenantDomainGoogleApps": ".types", + "ConnectionTenantDomainSaml": ".types", + "ConnectionTenantIdAzureAd": ".types", + "ConnectionThumbprints": ".types", + "ConnectionThumbprintsAd": ".types", + "ConnectionThumbprintsSaml": ".types", + "ConnectionTokenEndpoint": ".types", + "ConnectionTokenEndpointAuthMethodEnum": ".types", + "ConnectionTokenEndpointAuthMethodsSupported": ".types", + "ConnectionTokenEndpointAuthSigningAlgEnum": ".types", + "ConnectionTokenEndpointAuthSigningAlgValuesSupported": ".types", + "ConnectionTokenEndpointJwtcaAudFormatEnumOidc": ".types", + "ConnectionTotpEmail": ".types", + "ConnectionTotpLengthEmail": ".types", + "ConnectionTotpLengthPasswordless": ".types", + "ConnectionTotpLengthSms": ".types", + "ConnectionTotpSms": ".types", + "ConnectionTotpTimeStepEmail": ".types", + "ConnectionTotpTimeStepPasswordless": ".types", + "ConnectionTotpTimeStepSms": ".types", + "ConnectionTwilioSidSms": ".types", + "ConnectionTwilioTokenSms": ".types", + "ConnectionTypeEnumOidc": ".types", + "ConnectionTypeEnumOkta": ".types", + "ConnectionUiLocalesSupported": ".types", + "ConnectionUpstreamAdditionalProperties": ".types", + "ConnectionUpstreamAlias": ".types", + "ConnectionUpstreamAliasEnum": ".types", + "ConnectionUpstreamParams": ".types", + "ConnectionUpstreamParamsFacebook": ".types", + "ConnectionUpstreamValue": ".types", + "ConnectionUseCommonEndpointAzureAd": ".types", + "ConnectionUserAuthorizationUrloAuth1": ".types", + "ConnectionUserIdAttributeSaml": ".types", + "ConnectionUseridAttributeAzureAd": ".types", + "ConnectionUseridAttributeEnumAzureAd": ".types", + "ConnectionUserinfoEncryptionAlgValuesSupported": ".types", + "ConnectionUserinfoEncryptionEncValuesSupported": ".types", + "ConnectionUserinfoEndpoint": ".types", + "ConnectionUserinfoSigningAlgValuesSupported": ".types", + "ConnectionUsernameValidationOptions": ".types", + "ConnectionValidationOptions": ".types", + "ConnectionWaadProtocol": ".types", + "ConnectionWaadProtocolEnumAzureAd": ".types", + "ConnectionsDiscoveryUrl": ".types", + "ConnectionsMetadata": ".types", + "ConnectionsOidcMetadata": ".types", + "ContentSecurityPolicyConfig": ".types", + "ContentTooLargeError": ".errors", + "CreateActionModuleResponseContent": ".types", + "CreateActionModuleVersionResponseContent": ".types", + "CreateActionResponseContent": ".types", + "CreateBrandingPhoneProviderResponseContent": ".types", + "CreateBrandingThemeResponseContent": ".types", + "CreateClientAuthenticationMethodSelfSignedTlsClientAuth": ".types", + "CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials": ".types", + "CreateClientGrantResponseContent": ".types", + "CreateClientResponseContent": ".types", + "CreateConnectionCommon": ".types", + "CreateConnectionProfileResponseContent": ".types", + "CreateConnectionRequestContentAd": ".types", + "CreateConnectionRequestContentAdStrategy": ".types", + "CreateConnectionRequestContentAdfs": ".types", + "CreateConnectionRequestContentAdfsStrategy": ".types", + "CreateConnectionRequestContentAmazon": ".types", + "CreateConnectionRequestContentAmazonStrategy": ".types", + "CreateConnectionRequestContentApple": ".types", + "CreateConnectionRequestContentAppleStrategy": ".types", + "CreateConnectionRequestContentAuth0": ".types", + "CreateConnectionRequestContentAuth0Oidc": ".types", + "CreateConnectionRequestContentAuth0OidcStrategy": ".types", + "CreateConnectionRequestContentAuth0Strategy": ".types", + "CreateConnectionRequestContentAzureAd": ".types", + "CreateConnectionRequestContentAzureAdStrategy": ".types", + "CreateConnectionRequestContentBaidu": ".types", + "CreateConnectionRequestContentBaiduStrategy": ".types", + "CreateConnectionRequestContentBitbucket": ".types", + "CreateConnectionRequestContentBitbucketStrategy": ".types", + "CreateConnectionRequestContentBitly": ".types", + "CreateConnectionRequestContentBitlyStrategy": ".types", + "CreateConnectionRequestContentBox": ".types", + "CreateConnectionRequestContentBoxStrategy": ".types", + "CreateConnectionRequestContentCustom": ".types", + "CreateConnectionRequestContentCustomStrategy": ".types", + "CreateConnectionRequestContentDaccount": ".types", + "CreateConnectionRequestContentDaccountStrategy": ".types", + "CreateConnectionRequestContentDropbox": ".types", + "CreateConnectionRequestContentDropboxStrategy": ".types", + "CreateConnectionRequestContentDwolla": ".types", + "CreateConnectionRequestContentDwollaStrategy": ".types", + "CreateConnectionRequestContentEmail": ".types", + "CreateConnectionRequestContentEmailStrategy": ".types", + "CreateConnectionRequestContentEvernote": ".types", + "CreateConnectionRequestContentEvernoteSandbox": ".types", + "CreateConnectionRequestContentEvernoteSandboxStrategy": ".types", + "CreateConnectionRequestContentEvernoteStrategy": ".types", + "CreateConnectionRequestContentExact": ".types", + "CreateConnectionRequestContentExactStrategy": ".types", + "CreateConnectionRequestContentFacebook": ".types", + "CreateConnectionRequestContentFacebookStrategy": ".types", + "CreateConnectionRequestContentFitbit": ".types", + "CreateConnectionRequestContentFitbitStrategy": ".types", + "CreateConnectionRequestContentGitHub": ".types", + "CreateConnectionRequestContentGitHubStrategy": ".types", + "CreateConnectionRequestContentGoogleApps": ".types", + "CreateConnectionRequestContentGoogleAppsStrategy": ".types", + "CreateConnectionRequestContentGoogleOAuth2": ".types", + "CreateConnectionRequestContentGoogleOAuth2Strategy": ".types", + "CreateConnectionRequestContentInstagram": ".types", + "CreateConnectionRequestContentInstagramStrategy": ".types", + "CreateConnectionRequestContentIp": ".types", + "CreateConnectionRequestContentIpStrategy": ".types", + "CreateConnectionRequestContentLine": ".types", + "CreateConnectionRequestContentLineStrategy": ".types", + "CreateConnectionRequestContentLinkedin": ".types", + "CreateConnectionRequestContentLinkedinStrategy": ".types", + "CreateConnectionRequestContentOAuth1": ".types", + "CreateConnectionRequestContentOAuth1Strategy": ".types", + "CreateConnectionRequestContentOAuth2": ".types", + "CreateConnectionRequestContentOAuth2Strategy": ".types", + "CreateConnectionRequestContentOffice365": ".types", + "CreateConnectionRequestContentOffice365Strategy": ".types", + "CreateConnectionRequestContentOidc": ".types", + "CreateConnectionRequestContentOidcStrategy": ".types", + "CreateConnectionRequestContentOkta": ".types", + "CreateConnectionRequestContentOktaStrategy": ".types", + "CreateConnectionRequestContentPaypal": ".types", + "CreateConnectionRequestContentPaypalSandbox": ".types", + "CreateConnectionRequestContentPaypalSandboxStrategy": ".types", + "CreateConnectionRequestContentPaypalStrategy": ".types", + "CreateConnectionRequestContentPingFederate": ".types", + "CreateConnectionRequestContentPingFederateStrategy": ".types", + "CreateConnectionRequestContentPlanningCenter": ".types", + "CreateConnectionRequestContentPlanningCenterStrategy": ".types", + "CreateConnectionRequestContentSalesforce": ".types", + "CreateConnectionRequestContentSalesforceCommunity": ".types", + "CreateConnectionRequestContentSalesforceCommunityStrategy": ".types", + "CreateConnectionRequestContentSalesforceSandbox": ".types", + "CreateConnectionRequestContentSalesforceSandboxStrategy": ".types", + "CreateConnectionRequestContentSalesforceStrategy": ".types", + "CreateConnectionRequestContentSaml": ".types", + "CreateConnectionRequestContentSamlStrategy": ".types", + "CreateConnectionRequestContentSharepoint": ".types", + "CreateConnectionRequestContentSharepointStrategy": ".types", + "CreateConnectionRequestContentShop": ".types", + "CreateConnectionRequestContentShopStrategy": ".types", + "CreateConnectionRequestContentShopify": ".types", + "CreateConnectionRequestContentShopifyStrategy": ".types", + "CreateConnectionRequestContentSms": ".types", + "CreateConnectionRequestContentSmsStrategy": ".types", + "CreateConnectionRequestContentSoundcloud": ".types", + "CreateConnectionRequestContentSoundcloudStrategy": ".types", + "CreateConnectionRequestContentThirtySevenSignals": ".types", + "CreateConnectionRequestContentThirtySevenSignalsStrategy": ".types", + "CreateConnectionRequestContentTwitter": ".types", + "CreateConnectionRequestContentTwitterStrategy": ".types", + "CreateConnectionRequestContentUntappd": ".types", + "CreateConnectionRequestContentUntappdStrategy": ".types", + "CreateConnectionRequestContentVkontakte": ".types", + "CreateConnectionRequestContentVkontakteStrategy": ".types", + "CreateConnectionRequestContentWeibo": ".types", + "CreateConnectionRequestContentWeiboStrategy": ".types", + "CreateConnectionRequestContentWindowsLive": ".types", + "CreateConnectionRequestContentWindowsLiveStrategy": ".types", + "CreateConnectionRequestContentWordpress": ".types", + "CreateConnectionRequestContentWordpressStrategy": ".types", + "CreateConnectionRequestContentYahoo": ".types", + "CreateConnectionRequestContentYahooStrategy": ".types", + "CreateConnectionRequestContentYandex": ".types", + "CreateConnectionRequestContentYandexStrategy": ".types", + "CreateConnectionResponseContent": ".types", + "CreateCrossAppAccessResourceApp": ".types", + "CreateCustomDomainResponseContent": ".types", + "CreateDirectoryProvisioningRequestContent": ".types", + "CreateDirectoryProvisioningResponseContent": ".types", + "CreateDirectorySynchronizationResponseContent": ".types", + "CreateEmailProviderResponseContent": ".types", + "CreateEmailTemplateResponseContent": ".types", + "CreateEncryptionKeyPublicWrappingResponseContent": ".types", + "CreateEncryptionKeyResponseContent": ".types", + "CreateEncryptionKeyType": ".types", + "CreateEventStreamActionRequestContent": ".types", + "CreateEventStreamEventBridgeRequestContent": ".types", + "CreateEventStreamRedeliveryResponseContent": ".types", + "CreateEventStreamResponseContent": ".types", + "CreateEventStreamTestEventResponseContent": ".types", + "CreateEventStreamWebHookRequestContent": ".types", + "CreateExportUsersFields": ".types", + "CreateExportUsersResponseContent": ".types", + "CreateFlowResponseContent": ".types", + "CreateFlowsVaultConnectionActivecampaign": ".types", + "CreateFlowsVaultConnectionActivecampaignApiKey": ".types", + "CreateFlowsVaultConnectionActivecampaignUninitialized": ".types", + "CreateFlowsVaultConnectionAirtable": ".types", + "CreateFlowsVaultConnectionAirtableApiKey": ".types", + "CreateFlowsVaultConnectionAirtableUninitialized": ".types", + "CreateFlowsVaultConnectionAuth0": ".types", + "CreateFlowsVaultConnectionAuth0OauthApp": ".types", + "CreateFlowsVaultConnectionAuth0Uninitialized": ".types", + "CreateFlowsVaultConnectionBigquery": ".types", + "CreateFlowsVaultConnectionBigqueryJwt": ".types", + "CreateFlowsVaultConnectionBigqueryUninitialized": ".types", + "CreateFlowsVaultConnectionClearbit": ".types", + "CreateFlowsVaultConnectionClearbitApiKey": ".types", + "CreateFlowsVaultConnectionClearbitUninitialized": ".types", + "CreateFlowsVaultConnectionDocusign": ".types", + "CreateFlowsVaultConnectionDocusignOauthCode": ".types", + "CreateFlowsVaultConnectionDocusignUninitialized": ".types", + "CreateFlowsVaultConnectionGoogleSheets": ".types", + "CreateFlowsVaultConnectionGoogleSheetsOauthCode": ".types", + "CreateFlowsVaultConnectionGoogleSheetsUninitialized": ".types", + "CreateFlowsVaultConnectionHttp": ".types", + "CreateFlowsVaultConnectionHttpApiKey": ".types", + "CreateFlowsVaultConnectionHttpBasicAuth": ".types", + "CreateFlowsVaultConnectionHttpBearer": ".types", + "CreateFlowsVaultConnectionHttpOauthClientCredentials": ".types", + "CreateFlowsVaultConnectionHttpUninitialized": ".types", + "CreateFlowsVaultConnectionHubspot": ".types", + "CreateFlowsVaultConnectionHubspotApiKey": ".types", + "CreateFlowsVaultConnectionHubspotOauthCode": ".types", + "CreateFlowsVaultConnectionHubspotUninitialized": ".types", + "CreateFlowsVaultConnectionJwt": ".types", + "CreateFlowsVaultConnectionJwtJwt": ".types", + "CreateFlowsVaultConnectionJwtUninitialized": ".types", + "CreateFlowsVaultConnectionMailchimp": ".types", + "CreateFlowsVaultConnectionMailchimpApiKey": ".types", + "CreateFlowsVaultConnectionMailchimpOauthCode": ".types", + "CreateFlowsVaultConnectionMailchimpUninitialized": ".types", + "CreateFlowsVaultConnectionMailjet": ".types", + "CreateFlowsVaultConnectionMailjetApiKey": ".types", + "CreateFlowsVaultConnectionMailjetUninitialized": ".types", + "CreateFlowsVaultConnectionPipedrive": ".types", + "CreateFlowsVaultConnectionPipedriveOauthCode": ".types", + "CreateFlowsVaultConnectionPipedriveToken": ".types", + "CreateFlowsVaultConnectionPipedriveUninitialized": ".types", + "CreateFlowsVaultConnectionRequestContent": ".types", + "CreateFlowsVaultConnectionResponseContent": ".types", + "CreateFlowsVaultConnectionSalesforce": ".types", + "CreateFlowsVaultConnectionSalesforceOauthCode": ".types", + "CreateFlowsVaultConnectionSalesforceUninitialized": ".types", + "CreateFlowsVaultConnectionSendgrid": ".types", + "CreateFlowsVaultConnectionSendgridApiKey": ".types", + "CreateFlowsVaultConnectionSendgridUninitialized": ".types", + "CreateFlowsVaultConnectionSlack": ".types", + "CreateFlowsVaultConnectionSlackOauthCode": ".types", + "CreateFlowsVaultConnectionSlackUninitialized": ".types", + "CreateFlowsVaultConnectionSlackWebhook": ".types", + "CreateFlowsVaultConnectionStripe": ".types", + "CreateFlowsVaultConnectionStripeKeyPair": ".types", + "CreateFlowsVaultConnectionStripeOauthCode": ".types", + "CreateFlowsVaultConnectionStripeUninitialized": ".types", + "CreateFlowsVaultConnectionTelegram": ".types", + "CreateFlowsVaultConnectionTelegramToken": ".types", + "CreateFlowsVaultConnectionTelegramUninitialized": ".types", + "CreateFlowsVaultConnectionTwilio": ".types", + "CreateFlowsVaultConnectionTwilioApiKey": ".types", + "CreateFlowsVaultConnectionTwilioUninitialized": ".types", + "CreateFlowsVaultConnectionWhatsapp": ".types", + "CreateFlowsVaultConnectionWhatsappToken": ".types", + "CreateFlowsVaultConnectionWhatsappUninitialized": ".types", + "CreateFlowsVaultConnectionZapier": ".types", + "CreateFlowsVaultConnectionZapierUninitialized": ".types", + "CreateFlowsVaultConnectionZapierWebhook": ".types", + "CreateFormResponseContent": ".types", + "CreateGuardianEnrollmentTicketResponseContent": ".types", + "CreateHookResponseContent": ".types", + "CreateHookSecretRequestContent": ".types", + "CreateIdentityAssertionAuthorizationGrant": ".types", + "CreateImportUsersResponseContent": ".types", + "CreateLogStreamDatadogRequestBody": ".types", + "CreateLogStreamEventBridgeRequestBody": ".types", + "CreateLogStreamEventGridRequestBody": ".types", + "CreateLogStreamHttpRequestBody": ".types", + "CreateLogStreamMixpanelRequestBody": ".types", + "CreateLogStreamRequestContent": ".types", + "CreateLogStreamResponseContent": ".types", + "CreateLogStreamSegmentRequestBody": ".types", + "CreateLogStreamSplunkRequestBody": ".types", + "CreateLogStreamSumoRequestBody": ".types", + "CreateOrganizationAllConnectionResponseContent": ".types", + "CreateOrganizationClientRequestItem": ".types", + "CreateOrganizationClientsResponseContent": ".types", + "CreateOrganizationDiscoveryDomainResponseContent": ".types", + "CreateOrganizationInvitationResponseContent": ".types", + "CreateOrganizationResponseContent": ".types", + "CreatePhoneProviderSendTestResponseContent": ".types", + "CreatePhoneTemplateResponseContent": ".types", + "CreatePhoneTemplateTestNotificationResponseContent": ".types", + "CreatePublicKeyDeviceCredentialResponseContent": ".types", + "CreateRateLimitPolicyResponseContent": ".types", + "CreateResourceServerResponseContent": ".types", + "CreateRoleResponseContent": ".types", + "CreateRuleResponseContent": ".types", + "CreateScimConfigurationRequestContent": ".types", + "CreateScimConfigurationResponseContent": ".types", + "CreateScimTokenResponseContent": ".types", + "CreateSelfServiceProfileResponseContent": ".types", + "CreateSelfServiceProfileSsoTicketResponseContent": ".types", + "CreateTokenExchangeProfileResponseContent": ".types", + "CreateTokenQuota": ".types", + "CreateUserAttributeProfileResponseContent": ".types", + "CreateUserAuthenticationMethodResponseContent": ".types", + "CreateUserResponseContent": ".types", + "CreateVerifiableCredentialTemplateResponseContent": ".types", + "CreateVerificationEmailResponseContent": ".types", + "CreatedAuthenticationMethodTypeEnum": ".types", + "CreatedUserAuthenticationMethodTypeEnum": ".types", + "CredentialDeviceTypeEnum": ".types", + "CredentialId": ".types", + "CrossAppAccessRequestingApp": ".types", + "CrossAppAccessResourceApp": ".types", + "CrossAppAccessResourceAppStatusEnum": ".types", + "CspDirectives": ".types", + "CspFlag": ".types", + "CspFlags": ".types", + "CspPolicies": ".types", + "CspPolicy": ".types", + "CspPolicyMode": ".types", + "CspPolicyReporting": ".types", + "CspReportTo": ".types", + "CspReportToEndpoint": ".types", + "CspReportToEndpoints": ".types", + "CspReportingEndpoints": ".types", + "CspReportingInfrastructure": ".types", + "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", + "CustomDomainCustomClientIpHeader": ".types", + "CustomDomainCustomClientIpHeaderEnum": ".types", + "CustomDomainHeader": ".management_client", + "CustomDomainProvisioningTypeEnum": ".types", + "CustomDomainStatusFilterEnum": ".types", + "CustomDomainTlsPolicyEnum": ".types", + "CustomDomainTypeEnum": ".types", + "CustomDomainVerificationMethodEnum": ".types", + "CustomProviderConfiguration": ".types", + "CustomProviderCredentials": ".types", + "CustomProviderDeliveryMethodEnum": ".types", + "CustomSigningKeyAlgorithmEnum": ".types", + "CustomSigningKeyCurveEnum": ".types", + "CustomSigningKeyJwk": ".types", + "CustomSigningKeyOperationEnum": ".types", + "CustomSigningKeyTypeEnum": ".types", + "CustomSigningKeyUseEnum": ".types", + "DailyStats": ".types", + "DefaultAioHttpClient": "._default_clients", + "DefaultAsyncHttpxClient": "._default_clients", + "DefaultMethodEmailIdentifierEnum": ".types", + "DefaultMethodPhoneNumberIdentifierEnum": ".types", + "DefaultTokenQuota": ".types", + "DeleteHookSecretRequestContent": ".types", + "DeleteUserIdentityResponseContent": ".types", + "DeleteUserIdentityResponseContentItem": ".types", + "DeployActionResponseContent": ".types", + "DeployActionVersionRequestContent": ".types", + "DeployActionVersionResponseContent": ".types", + "DeviceCredential": ".types", + "DeviceCredentialPublicKeyTypeEnum": ".types", + "DeviceCredentialTypeEnum": ".types", + "DirectoryProvisioning": ".types", + "DirectoryProvisioningMappingItem": ".types", + "DomainCertificate": ".types", + "DomainCertificateAuthorityEnum": ".types", + "DomainCertificateStatusEnum": ".types", + "DomainMetadata": ".types", + "DomainVerification": ".types", + "DomainVerificationMethod": ".types", + "DomainVerificationMethodNameEnum": ".types", + "DomainVerificationStatusEnum": ".types", + "EmailAttribute": ".types", + "EmailAttributeIdentifier": ".types", + "EmailMailgunRegionEnum": ".types", + "EmailProviderCredentials": ".types", + "EmailProviderCredentialsSchema": ".types", + "EmailProviderCredentialsSchemaAccessKeyId": ".types", + "EmailProviderCredentialsSchemaApiKey": ".types", + "EmailProviderCredentialsSchemaClientId": ".types", + "EmailProviderCredentialsSchemaConnectionString": ".types", + "EmailProviderCredentialsSchemaSmtpHost": ".types", + "EmailProviderCredentialsSchemaThree": ".types", + "EmailProviderCredentialsSchemaZero": ".types", + "EmailProviderNameEnum": ".types", + "EmailProviderSettings": ".types", + "EmailSmtpHost": ".types", + "EmailSparkPostRegionEnum": ".types", + "EmailSpecificProviderSettingsWithAdditionalProperties": ".types", + "EmailTemplateNameEnum": ".types", + "EnabledFeaturesEnum": ".types", + "EncryptionKey": ".types", + "EncryptionKeyPublicWrappingAlgorithm": ".types", + "EncryptionKeyState": ".types", + "EncryptionKeyType": ".types", + "EventStreamActionConfiguration": ".types", + "EventStreamActionDestination": ".types", + "EventStreamActionDestinationTypeEnum": ".types", + "EventStreamActionResponseContent": ".types", + "EventStreamCloudEvent": ".types", + "EventStreamCloudEventA0PurposeEnum": ".types", + "EventStreamCloudEventConnectionCreated": ".types", + "EventStreamCloudEventConnectionCreatedCloudEvent": ".types", + "EventStreamCloudEventConnectionCreatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventConnectionCreatedData": ".types", + "EventStreamCloudEventConnectionCreatedObject": ".types", + "EventStreamCloudEventConnectionCreatedObject0": ".types", + "EventStreamCloudEventConnectionCreatedObject0Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject0ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject0Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject0Options": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMap": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapAttributes": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapMappingModeEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettings": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettingsPkceEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsDpopSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsIdTokenSignedResponseAlgsItemEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsOidcMetadata": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsSchemaVersionEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthMethodEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointJwtcaAudFormatEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsTypeEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject0OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject0StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1": ".types", + "EventStreamCloudEventConnectionCreatedObject1Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject1ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject1Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject1Options": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMap": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapAttributes": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapMappingModeEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettings": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettingsPkceEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsDpopSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsIdTokenSignedResponseAlgsItemEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsOidcMetadata": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsSchemaVersionEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthMethodEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointJwtcaAudFormatEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsTypeEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject1OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject1StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject2": ".types", + "EventStreamCloudEventConnectionCreatedObject2Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject2ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject2Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject2Options": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettings": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsDigestAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsFieldsMap": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiated": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiatedClientProtocolEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsProtocolBindingEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsSignatureAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsSubject": ".types", + "EventStreamCloudEventConnectionCreatedObject2OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject2StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject3": ".types", + "EventStreamCloudEventConnectionCreatedObject3Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject3ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject3Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject3Options": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettings": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsDigestAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiated": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiatedClientProtocolEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsProtocolBindingEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsSignatureAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsSubject": ".types", + "EventStreamCloudEventConnectionCreatedObject3OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject3StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject4": ".types", + "EventStreamCloudEventConnectionCreatedObject4Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject4ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject4Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject4Options": ".types", + "EventStreamCloudEventConnectionCreatedObject4OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject4OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject4StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject5": ".types", + "EventStreamCloudEventConnectionCreatedObject5Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject5ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject5Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject5Options": ".types", + "EventStreamCloudEventConnectionCreatedObject5OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject5OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject5StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject6": ".types", + "EventStreamCloudEventConnectionCreatedObject6Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject6ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject6Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject6Options": ".types", + "EventStreamCloudEventConnectionCreatedObject6OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionCreatedObject6OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject6OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject6StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject7": ".types", + "EventStreamCloudEventConnectionCreatedObject7Authentication": ".types", + "EventStreamCloudEventConnectionCreatedObject7ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionCreatedObject7Metadata": ".types", + "EventStreamCloudEventConnectionCreatedObject7Options": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsIdentityApiEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsTenantDomainOne": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsUseridAttributeEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject7OptionsWaadProtocolEnum": ".types", + "EventStreamCloudEventConnectionCreatedObject7StrategyEnum": ".types", + "EventStreamCloudEventConnectionCreatedTypeEnum": ".types", + "EventStreamCloudEventConnectionDeleted": ".types", + "EventStreamCloudEventConnectionDeletedCloudEvent": ".types", + "EventStreamCloudEventConnectionDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventConnectionDeletedData": ".types", + "EventStreamCloudEventConnectionDeletedObject": ".types", + "EventStreamCloudEventConnectionDeletedObject0": ".types", + "EventStreamCloudEventConnectionDeletedObject0Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject0ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject0Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject0Options": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMap": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapAttributes": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapMappingModeEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettings": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettingsPkceEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsDpopSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsIdTokenSignedResponseAlgsItemEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsOidcMetadata": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsSchemaVersionEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthMethodEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointJwtcaAudFormatEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsTypeEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject0OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject0StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1": ".types", + "EventStreamCloudEventConnectionDeletedObject1Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject1ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject1Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject1Options": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMap": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapAttributes": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapMappingModeEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettings": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettingsPkceEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsDpopSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsIdTokenSignedResponseAlgsItemEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsOidcMetadata": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsSchemaVersionEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthMethodEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointJwtcaAudFormatEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsTypeEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject1OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject1StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject2": ".types", + "EventStreamCloudEventConnectionDeletedObject2Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject2ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject2Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject2Options": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettings": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsDigestAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsFieldsMap": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiated": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiatedClientProtocolEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsProtocolBindingEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsSignatureAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsSubject": ".types", + "EventStreamCloudEventConnectionDeletedObject2OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject2StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject3": ".types", + "EventStreamCloudEventConnectionDeletedObject3Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject3ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject3Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject3Options": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettings": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsDigestAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiated": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiatedClientProtocolEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsProtocolBindingEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsSignatureAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsSubject": ".types", + "EventStreamCloudEventConnectionDeletedObject3OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject3StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject4": ".types", + "EventStreamCloudEventConnectionDeletedObject4Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject4ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject4Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject4Options": ".types", + "EventStreamCloudEventConnectionDeletedObject4OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject4OptionsShouldTrustEmailVerifiedConnectionEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject4OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject4StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject5": ".types", + "EventStreamCloudEventConnectionDeletedObject5Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject5ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject5Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject5Options": ".types", + "EventStreamCloudEventConnectionDeletedObject5OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject5OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject5StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject6": ".types", + "EventStreamCloudEventConnectionDeletedObject6Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject6ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject6Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject6Options": ".types", + "EventStreamCloudEventConnectionDeletedObject6OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionDeletedObject6OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject6OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject6StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject7": ".types", + "EventStreamCloudEventConnectionDeletedObject7Authentication": ".types", + "EventStreamCloudEventConnectionDeletedObject7ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionDeletedObject7Metadata": ".types", + "EventStreamCloudEventConnectionDeletedObject7Options": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsIdentityApiEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsShouldTrustEmailVerifiedConnectionEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsTenantDomainOne": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsUseridAttributeEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject7OptionsWaadProtocolEnum": ".types", + "EventStreamCloudEventConnectionDeletedObject7StrategyEnum": ".types", + "EventStreamCloudEventConnectionDeletedTypeEnum": ".types", + "EventStreamCloudEventConnectionUpdated": ".types", + "EventStreamCloudEventConnectionUpdatedCloudEvent": ".types", + "EventStreamCloudEventConnectionUpdatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventConnectionUpdatedData": ".types", + "EventStreamCloudEventConnectionUpdatedObject": ".types", + "EventStreamCloudEventConnectionUpdatedObject0": ".types", + "EventStreamCloudEventConnectionUpdatedObject0Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject0ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject0Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject0Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMap": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapAttributes": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapMappingModeEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettings": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettingsPkceEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsDpopSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsIdTokenSignedResponseAlgsItemEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsOidcMetadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsSchemaVersionEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthMethodEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointJwtcaAudFormatEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTypeEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject0OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject0StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1": ".types", + "EventStreamCloudEventConnectionUpdatedObject1Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject1ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject1Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject1Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMap": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapAttributes": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapMappingModeEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettings": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettingsPkceEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsDpopSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsIdTokenSignedResponseAlgsItemEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsSchemaVersionEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthMethodEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthSigningAlgEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointJwtcaAudFormatEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTypeEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject1OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject1StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject2": ".types", + "EventStreamCloudEventConnectionUpdatedObject2Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject2ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject2Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject2Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettings": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsDigestAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsFieldsMap": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiated": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiatedClientProtocolEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsProtocolBindingEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsSignatureAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsSubject": ".types", + "EventStreamCloudEventConnectionUpdatedObject2OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject2StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject3": ".types", + "EventStreamCloudEventConnectionUpdatedObject3Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject3ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject3Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject3Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettings": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsDigestAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiated": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiatedClientProtocolEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsProtocolBindingEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsSignatureAlgorithmEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsSubject": ".types", + "EventStreamCloudEventConnectionUpdatedObject3OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject3StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject4": ".types", + "EventStreamCloudEventConnectionUpdatedObject4Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject4ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject4Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject4Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject4OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject4OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject4StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject5": ".types", + "EventStreamCloudEventConnectionUpdatedObject5Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject5ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject5Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject5Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject5OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject5OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject5StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject6": ".types", + "EventStreamCloudEventConnectionUpdatedObject6Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject6ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject6Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject6Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject6OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionUpdatedObject6OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject6OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject6StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject7": ".types", + "EventStreamCloudEventConnectionUpdatedObject7Authentication": ".types", + "EventStreamCloudEventConnectionUpdatedObject7ConnectedAccounts": ".types", + "EventStreamCloudEventConnectionUpdatedObject7Metadata": ".types", + "EventStreamCloudEventConnectionUpdatedObject7Options": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsFederatedConnectionsAccessTokens": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsIdentityApiEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsSetUserRootAttributesEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsTenantDomainOne": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsUpstreamParams": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsUseridAttributeEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject7OptionsWaadProtocolEnum": ".types", + "EventStreamCloudEventConnectionUpdatedObject7StrategyEnum": ".types", + "EventStreamCloudEventConnectionUpdatedTypeEnum": ".types", + "EventStreamCloudEventContext": ".types", + "EventStreamCloudEventContextClient": ".types", + "EventStreamCloudEventContextClientMetadata": ".types", + "EventStreamCloudEventContextConnection": ".types", + "EventStreamCloudEventContextRequest": ".types", + "EventStreamCloudEventContextRequestGeo": ".types", + "EventStreamCloudEventContextTenant": ".types", + "EventStreamCloudEventErrorCodeEnum": ".types", + "EventStreamCloudEventErrorDetail": ".types", + "EventStreamCloudEventErrorMessage": ".types", + "EventStreamCloudEventErrorMessageTypeEnum": ".types", + "EventStreamCloudEventGroupCreated": ".types", + "EventStreamCloudEventGroupCreatedCloudEvent": ".types", + "EventStreamCloudEventGroupCreatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventGroupCreatedData": ".types", + "EventStreamCloudEventGroupCreatedObject": ".types", + "EventStreamCloudEventGroupCreatedObject0": ".types", + "EventStreamCloudEventGroupCreatedObject0TypeEnum": ".types", + "EventStreamCloudEventGroupCreatedObject1": ".types", + "EventStreamCloudEventGroupCreatedObject1TypeEnum": ".types", + "EventStreamCloudEventGroupCreatedObject2": ".types", + "EventStreamCloudEventGroupCreatedObject2TypeEnum": ".types", + "EventStreamCloudEventGroupCreatedTypeEnum": ".types", + "EventStreamCloudEventGroupDeleted": ".types", + "EventStreamCloudEventGroupDeletedCloudEvent": ".types", + "EventStreamCloudEventGroupDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventGroupDeletedData": ".types", + "EventStreamCloudEventGroupDeletedObject": ".types", + "EventStreamCloudEventGroupDeletedObject0": ".types", + "EventStreamCloudEventGroupDeletedObject0TypeEnum": ".types", + "EventStreamCloudEventGroupDeletedObject1": ".types", + "EventStreamCloudEventGroupDeletedObject1TypeEnum": ".types", + "EventStreamCloudEventGroupDeletedObject2": ".types", + "EventStreamCloudEventGroupDeletedObject2TypeEnum": ".types", + "EventStreamCloudEventGroupDeletedTypeEnum": ".types", + "EventStreamCloudEventGroupMemberAdded": ".types", + "EventStreamCloudEventGroupMemberAddedCloudEvent": ".types", + "EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum": ".types", + "EventStreamCloudEventGroupMemberAddedData": ".types", + "EventStreamCloudEventGroupMemberAddedObject": ".types", + "EventStreamCloudEventGroupMemberAddedObjectGroup": ".types", + "EventStreamCloudEventGroupMemberAddedObjectGroup0": ".types", + "EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum": ".types", + "EventStreamCloudEventGroupMemberAddedObjectGroup1": ".types", + "EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum": ".types", + "EventStreamCloudEventGroupMemberAddedObjectGroup2": ".types", + "EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum": ".types", + "EventStreamCloudEventGroupMemberAddedObjectMember": ".types", + "EventStreamCloudEventGroupMemberAddedObjectMember0": ".types", + "EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum": ".types", + "EventStreamCloudEventGroupMemberAddedObjectMember1": ".types", + "EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum": ".types", + "EventStreamCloudEventGroupMemberAddedTypeEnum": ".types", + "EventStreamCloudEventGroupMemberDeleted": ".types", + "EventStreamCloudEventGroupMemberDeletedCloudEvent": ".types", + "EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventGroupMemberDeletedData": ".types", + "EventStreamCloudEventGroupMemberDeletedObject": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectGroup": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectGroup0": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectGroup1": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectGroup2": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectMember": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectMember0": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectMember1": ".types", + "EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum": ".types", + "EventStreamCloudEventGroupMemberDeletedTypeEnum": ".types", + "EventStreamCloudEventGroupRoleAssigned": ".types", + "EventStreamCloudEventGroupRoleAssignedCloudEvent": ".types", + "EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum": ".types", + "EventStreamCloudEventGroupRoleAssignedData": ".types", + "EventStreamCloudEventGroupRoleAssignedObject": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectGroup": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectGroup0": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectGroup1": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectGroup2": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum": ".types", + "EventStreamCloudEventGroupRoleAssignedObjectRole": ".types", + "EventStreamCloudEventGroupRoleAssignedTypeEnum": ".types", + "EventStreamCloudEventGroupRoleDeleted": ".types", + "EventStreamCloudEventGroupRoleDeletedCloudEvent": ".types", + "EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventGroupRoleDeletedData": ".types", + "EventStreamCloudEventGroupRoleDeletedObject": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectGroup": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectGroup0": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectGroup1": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectGroup2": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum": ".types", + "EventStreamCloudEventGroupRoleDeletedObjectRole": ".types", + "EventStreamCloudEventGroupRoleDeletedTypeEnum": ".types", + "EventStreamCloudEventGroupUpdated": ".types", + "EventStreamCloudEventGroupUpdatedCloudEvent": ".types", + "EventStreamCloudEventGroupUpdatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventGroupUpdatedData": ".types", + "EventStreamCloudEventGroupUpdatedObject": ".types", + "EventStreamCloudEventGroupUpdatedObject0": ".types", + "EventStreamCloudEventGroupUpdatedObject0TypeEnum": ".types", + "EventStreamCloudEventGroupUpdatedObject1": ".types", + "EventStreamCloudEventGroupUpdatedObject1TypeEnum": ".types", + "EventStreamCloudEventGroupUpdatedObject2": ".types", + "EventStreamCloudEventGroupUpdatedObject2TypeEnum": ".types", + "EventStreamCloudEventGroupUpdatedTypeEnum": ".types", + "EventStreamCloudEventOffsetOnlyMessage": ".types", + "EventStreamCloudEventOffsetOnlyMessageTypeEnum": ".types", + "EventStreamCloudEventOrgConnectionAdded": ".types", + "EventStreamCloudEventOrgConnectionAddedCloudEvent": ".types", + "EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgConnectionAddedData": ".types", + "EventStreamCloudEventOrgConnectionAddedObject": ".types", + "EventStreamCloudEventOrgConnectionAddedObjectConnection": ".types", + "EventStreamCloudEventOrgConnectionAddedObjectOrganization": ".types", + "EventStreamCloudEventOrgConnectionAddedTypeEnum": ".types", + "EventStreamCloudEventOrgConnectionRemoved": ".types", + "EventStreamCloudEventOrgConnectionRemovedCloudEvent": ".types", + "EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgConnectionRemovedData": ".types", + "EventStreamCloudEventOrgConnectionRemovedObject": ".types", + "EventStreamCloudEventOrgConnectionRemovedObjectConnection": ".types", + "EventStreamCloudEventOrgConnectionRemovedObjectOrganization": ".types", + "EventStreamCloudEventOrgConnectionRemovedTypeEnum": ".types", + "EventStreamCloudEventOrgConnectionUpdated": ".types", + "EventStreamCloudEventOrgConnectionUpdatedCloudEvent": ".types", + "EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgConnectionUpdatedData": ".types", + "EventStreamCloudEventOrgConnectionUpdatedObject": ".types", + "EventStreamCloudEventOrgConnectionUpdatedObjectConnection": ".types", + "EventStreamCloudEventOrgConnectionUpdatedObjectOrganization": ".types", + "EventStreamCloudEventOrgConnectionUpdatedTypeEnum": ".types", + "EventStreamCloudEventOrgCreated": ".types", + "EventStreamCloudEventOrgCreatedCloudEvent": ".types", + "EventStreamCloudEventOrgCreatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgCreatedData": ".types", + "EventStreamCloudEventOrgCreatedObject": ".types", + "EventStreamCloudEventOrgCreatedObjectBranding": ".types", + "EventStreamCloudEventOrgCreatedObjectBrandingColors": ".types", + "EventStreamCloudEventOrgCreatedObjectMetadata": ".types", + "EventStreamCloudEventOrgCreatedTypeEnum": ".types", + "EventStreamCloudEventOrgDeleted": ".types", + "EventStreamCloudEventOrgDeletedCloudEvent": ".types", + "EventStreamCloudEventOrgDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgDeletedData": ".types", + "EventStreamCloudEventOrgDeletedObject": ".types", + "EventStreamCloudEventOrgDeletedObjectMetadata": ".types", + "EventStreamCloudEventOrgDeletedTypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleAssigned": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedCloudEvent": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedData": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObject": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedObjectRole": ".types", + "EventStreamCloudEventOrgGroupRoleAssignedTypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleDeleted": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedCloudEvent": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedData": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObject": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedObjectRole": ".types", + "EventStreamCloudEventOrgGroupRoleDeletedTypeEnum": ".types", + "EventStreamCloudEventOrgMemberAdded": ".types", + "EventStreamCloudEventOrgMemberAddedCloudEvent": ".types", + "EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgMemberAddedData": ".types", + "EventStreamCloudEventOrgMemberAddedObject": ".types", + "EventStreamCloudEventOrgMemberAddedObjectOrganization": ".types", + "EventStreamCloudEventOrgMemberAddedObjectUser": ".types", + "EventStreamCloudEventOrgMemberAddedTypeEnum": ".types", + "EventStreamCloudEventOrgMemberDeleted": ".types", + "EventStreamCloudEventOrgMemberDeletedCloudEvent": ".types", + "EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgMemberDeletedData": ".types", + "EventStreamCloudEventOrgMemberDeletedObject": ".types", + "EventStreamCloudEventOrgMemberDeletedObjectOrganization": ".types", + "EventStreamCloudEventOrgMemberDeletedObjectUser": ".types", + "EventStreamCloudEventOrgMemberDeletedTypeEnum": ".types", + "EventStreamCloudEventOrgMemberRoleAssigned": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedCloudEvent": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedData": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedObject": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedObjectRole": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedObjectUser": ".types", + "EventStreamCloudEventOrgMemberRoleAssignedTypeEnum": ".types", + "EventStreamCloudEventOrgMemberRoleDeleted": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedCloudEvent": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedData": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedObject": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedObjectRole": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedObjectUser": ".types", + "EventStreamCloudEventOrgMemberRoleDeletedTypeEnum": ".types", + "EventStreamCloudEventOrgUpdated": ".types", + "EventStreamCloudEventOrgUpdatedCloudEvent": ".types", + "EventStreamCloudEventOrgUpdatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventOrgUpdatedData": ".types", + "EventStreamCloudEventOrgUpdatedObject": ".types", + "EventStreamCloudEventOrgUpdatedObjectBranding": ".types", + "EventStreamCloudEventOrgUpdatedObjectBrandingColors": ".types", + "EventStreamCloudEventOrgUpdatedObjectMetadata": ".types", + "EventStreamCloudEventOrgUpdatedTypeEnum": ".types", + "EventStreamCloudEventSpecVersionEnum": ".types", + "EventStreamCloudEventUserCreated": ".types", + "EventStreamCloudEventUserCreatedCloudEvent": ".types", + "EventStreamCloudEventUserCreatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventUserCreatedData": ".types", + "EventStreamCloudEventUserCreatedObject": ".types", + "EventStreamCloudEventUserCreatedObjectAppMetadata": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItem": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum": ".types", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId": ".types", + "EventStreamCloudEventUserCreatedObjectUserMetadata": ".types", + "EventStreamCloudEventUserCreatedTypeEnum": ".types", + "EventStreamCloudEventUserDeleted": ".types", + "EventStreamCloudEventUserDeletedCloudEvent": ".types", + "EventStreamCloudEventUserDeletedCloudEventTypeEnum": ".types", + "EventStreamCloudEventUserDeletedData": ".types", + "EventStreamCloudEventUserDeletedObject": ".types", + "EventStreamCloudEventUserDeletedObjectAppMetadata": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItem": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum": ".types", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId": ".types", + "EventStreamCloudEventUserDeletedObjectUserMetadata": ".types", + "EventStreamCloudEventUserDeletedTypeEnum": ".types", + "EventStreamCloudEventUserUpdated": ".types", + "EventStreamCloudEventUserUpdatedCloudEvent": ".types", + "EventStreamCloudEventUserUpdatedCloudEventTypeEnum": ".types", + "EventStreamCloudEventUserUpdatedData": ".types", + "EventStreamCloudEventUserUpdatedObject": ".types", + "EventStreamCloudEventUserUpdatedObjectAppMetadata": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItem": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum": ".types", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId": ".types", + "EventStreamCloudEventUserUpdatedObjectUserMetadata": ".types", + "EventStreamCloudEventUserUpdatedTypeEnum": ".types", + "EventStreamDelivery": ".types", + "EventStreamDeliveryAttempt": ".types", + "EventStreamDeliveryEventTypeEnum": ".types", + "EventStreamDeliveryStatusEnum": ".types", + "EventStreamDestinationPatch": ".types", + "EventStreamEventBridgeAwsRegionEnum": ".types", + "EventStreamEventBridgeConfiguration": ".types", + "EventStreamEventBridgeDestination": ".types", + "EventStreamEventBridgeDestinationTypeEnum": ".types", + "EventStreamEventBridgeResponseContent": ".types", + "EventStreamEventTypeEnum": ".types", + "EventStreamResponseContent": ".types", + "EventStreamStatusEnum": ".types", + "EventStreamSubscribeEventsEventTypeEnum": ".types", + "EventStreamSubscribeEventsEventTypeParam": ".types", + "EventStreamSubscribeEventsResponseContent": ".types", + "EventStreamSubscribeEventsResponseContent_ConnectionCreated": ".types", + "EventStreamSubscribeEventsResponseContent_ConnectionDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_ConnectionUpdated": ".types", + "EventStreamSubscribeEventsResponseContent_Error": ".types", + "EventStreamSubscribeEventsResponseContent_GroupCreated": ".types", + "EventStreamSubscribeEventsResponseContent_GroupDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_GroupMemberAdded": ".types", + "EventStreamSubscribeEventsResponseContent_GroupMemberDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_GroupRoleAssigned": ".types", + "EventStreamSubscribeEventsResponseContent_GroupRoleDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_GroupUpdated": ".types", + "EventStreamSubscribeEventsResponseContent_OffsetOnly": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationCreated": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_OrganizationUpdated": ".types", + "EventStreamSubscribeEventsResponseContent_UserCreated": ".types", + "EventStreamSubscribeEventsResponseContent_UserDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_UserUpdated": ".types", + "EventStreamSubscription": ".types", + "EventStreamTestEventTypeEnum": ".types", + "EventStreamWebhookAuthorizationResponse": ".types", + "EventStreamWebhookBasicAuth": ".types", + "EventStreamWebhookBasicAuthMethodEnum": ".types", + "EventStreamWebhookBearerAuth": ".types", + "EventStreamWebhookBearerAuthMethodEnum": ".types", + "EventStreamWebhookConfiguration": ".types", + "EventStreamWebhookCustomHeaderAuth": ".types", + "EventStreamWebhookCustomHeaderAuthMethodEnum": ".types", + "EventStreamWebhookDestination": ".types", + "EventStreamWebhookDestinationTypeEnum": ".types", + "EventStreamWebhookResponseContent": ".types", + "EventStreamsCreateRequest": ".event_streams", + "ExpressConfiguration": ".types", + "ExpressConfigurationOrNull": ".types", + "ExtensibilityEmailProviderCredentials": ".types", + "FedCmLogin": ".types", + "FedCmLoginGoogle": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", + "FlowAction": ".types", + "FlowActionActivecampaign": ".types", + "FlowActionActivecampaignListContacts": ".types", + "FlowActionActivecampaignListContactsAction": ".types", + "FlowActionActivecampaignListContactsParams": ".types", + "FlowActionActivecampaignListContactsType": ".types", + "FlowActionActivecampaignUpsertContact": ".types", + "FlowActionActivecampaignUpsertContactAction": ".types", + "FlowActionActivecampaignUpsertContactParams": ".types", + "FlowActionActivecampaignUpsertContactParamsCustomFields": ".types", + "FlowActionActivecampaignUpsertContactType": ".types", + "FlowActionAirtable": ".types", + "FlowActionAirtableCreateRecord": ".types", + "FlowActionAirtableCreateRecordAction": ".types", + "FlowActionAirtableCreateRecordParams": ".types", + "FlowActionAirtableCreateRecordParamsFields": ".types", + "FlowActionAirtableCreateRecordType": ".types", + "FlowActionAirtableListRecords": ".types", + "FlowActionAirtableListRecordsAction": ".types", + "FlowActionAirtableListRecordsParams": ".types", + "FlowActionAirtableListRecordsType": ".types", + "FlowActionAirtableUpdateRecord": ".types", + "FlowActionAirtableUpdateRecordAction": ".types", + "FlowActionAirtableUpdateRecordParams": ".types", + "FlowActionAirtableUpdateRecordParamsFields": ".types", + "FlowActionAirtableUpdateRecordType": ".types", + "FlowActionAuth0": ".types", + "FlowActionAuth0CreateUser": ".types", + "FlowActionAuth0CreateUserAction": ".types", + "FlowActionAuth0CreateUserParams": ".types", + "FlowActionAuth0CreateUserParamsPayload": ".types", + "FlowActionAuth0CreateUserType": ".types", + "FlowActionAuth0GetUser": ".types", + "FlowActionAuth0GetUserAction": ".types", + "FlowActionAuth0GetUserParams": ".types", + "FlowActionAuth0GetUserType": ".types", + "FlowActionAuth0MakeCall": ".types", + "FlowActionAuth0MakeCallAction": ".types", + "FlowActionAuth0MakeCallParams": ".types", + "FlowActionAuth0MakeCallParamsCustomVars": ".types", + "FlowActionAuth0MakeCallType": ".types", + "FlowActionAuth0SendEmail": ".types", + "FlowActionAuth0SendEmailAction": ".types", + "FlowActionAuth0SendEmailParams": ".types", + "FlowActionAuth0SendEmailParamsFrom": ".types", + "FlowActionAuth0SendEmailParamsFromEmail": ".types", + "FlowActionAuth0SendEmailParamsTo": ".types", + "FlowActionAuth0SendEmailType": ".types", + "FlowActionAuth0SendRequest": ".types", + "FlowActionAuth0SendRequestAction": ".types", + "FlowActionAuth0SendRequestParams": ".types", + "FlowActionAuth0SendRequestParamsCustomVars": ".types", + "FlowActionAuth0SendRequestParamsHeaders": ".types", + "FlowActionAuth0SendRequestParamsMethod": ".types", + "FlowActionAuth0SendRequestParamsPayload": ".types", + "FlowActionAuth0SendRequestParamsPayloadObject": ".types", + "FlowActionAuth0SendRequestParamsQueryParams": ".types", + "FlowActionAuth0SendRequestParamsQueryParamsValue": ".types", + "FlowActionAuth0SendRequestType": ".types", + "FlowActionAuth0SendSms": ".types", + "FlowActionAuth0SendSmsAction": ".types", + "FlowActionAuth0SendSmsParams": ".types", + "FlowActionAuth0SendSmsParamsCustomVars": ".types", + "FlowActionAuth0SendSmsType": ".types", + "FlowActionAuth0UpdateUser": ".types", + "FlowActionAuth0UpdateUserAction": ".types", + "FlowActionAuth0UpdateUserParams": ".types", + "FlowActionAuth0UpdateUserParamsChanges": ".types", + "FlowActionAuth0UpdateUserType": ".types", + "FlowActionBigquery": ".types", + "FlowActionBigqueryInsertRows": ".types", + "FlowActionBigqueryInsertRowsAction": ".types", + "FlowActionBigqueryInsertRowsParams": ".types", + "FlowActionBigqueryInsertRowsParamsData": ".types", + "FlowActionBigqueryInsertRowsType": ".types", + "FlowActionClearbit": ".types", + "FlowActionClearbitFindCompany": ".types", + "FlowActionClearbitFindCompanyAction": ".types", + "FlowActionClearbitFindCompanyParams": ".types", + "FlowActionClearbitFindCompanyType": ".types", + "FlowActionClearbitFindPerson": ".types", + "FlowActionClearbitFindPersonAction": ".types", + "FlowActionClearbitFindPersonParams": ".types", + "FlowActionClearbitFindPersonType": ".types", + "FlowActionEmail": ".types", + "FlowActionEmailVerifyEmail": ".types", + "FlowActionEmailVerifyEmailAction": ".types", + "FlowActionEmailVerifyEmailParams": ".types", + "FlowActionEmailVerifyEmailParamsRules": ".types", + "FlowActionEmailVerifyEmailType": ".types", + "FlowActionFlow": ".types", + "FlowActionFlowBooleanCondition": ".types", + "FlowActionFlowBooleanConditionAction": ".types", + "FlowActionFlowBooleanConditionParams": ".types", + "FlowActionFlowBooleanConditionType": ".types", + "FlowActionFlowDelayFlow": ".types", + "FlowActionFlowDelayFlowAction": ".types", + "FlowActionFlowDelayFlowParams": ".types", + "FlowActionFlowDelayFlowParamsNumber": ".types", + "FlowActionFlowDelayFlowParamsUnits": ".types", + "FlowActionFlowDelayFlowType": ".types", + "FlowActionFlowDoNothing": ".types", + "FlowActionFlowDoNothingAction": ".types", + "FlowActionFlowDoNothingParams": ".types", + "FlowActionFlowDoNothingType": ".types", + "FlowActionFlowErrorMessage": ".types", + "FlowActionFlowErrorMessageAction": ".types", + "FlowActionFlowErrorMessageParams": ".types", + "FlowActionFlowErrorMessageType": ".types", + "FlowActionFlowMapValue": ".types", + "FlowActionFlowMapValueAction": ".types", + "FlowActionFlowMapValueParams": ".types", + "FlowActionFlowMapValueParamsCases": ".types", + "FlowActionFlowMapValueParamsFallback": ".types", + "FlowActionFlowMapValueParamsFallbackObject": ".types", + "FlowActionFlowMapValueParamsInput": ".types", + "FlowActionFlowMapValueType": ".types", + "FlowActionFlowReturnJson": ".types", + "FlowActionFlowReturnJsonAction": ".types", + "FlowActionFlowReturnJsonParams": ".types", + "FlowActionFlowReturnJsonParamsPayload": ".types", + "FlowActionFlowReturnJsonParamsPayloadObject": ".types", + "FlowActionFlowReturnJsonType": ".types", + "FlowActionFlowStoreVars": ".types", + "FlowActionFlowStoreVarsAction": ".types", + "FlowActionFlowStoreVarsParams": ".types", + "FlowActionFlowStoreVarsParamsVars": ".types", + "FlowActionFlowStoreVarsType": ".types", + "FlowActionGoogleSheets": ".types", + "FlowActionGoogleSheetsAddRow": ".types", + "FlowActionGoogleSheetsAddRowAction": ".types", + "FlowActionGoogleSheetsAddRowParams": ".types", + "FlowActionGoogleSheetsAddRowParamsSheetId": ".types", + "FlowActionGoogleSheetsAddRowParamsValues": ".types", + "FlowActionGoogleSheetsAddRowType": ".types", + "FlowActionHttp": ".types", + "FlowActionHttpSendRequest": ".types", + "FlowActionHttpSendRequestAction": ".types", + "FlowActionHttpSendRequestParams": ".types", + "FlowActionHttpSendRequestParamsBasicAuth": ".types", + "FlowActionHttpSendRequestParamsContentType": ".types", + "FlowActionHttpSendRequestParamsHeaders": ".types", + "FlowActionHttpSendRequestParamsMethod": ".types", + "FlowActionHttpSendRequestParamsPayload": ".types", + "FlowActionHttpSendRequestParamsPayloadObject": ".types", + "FlowActionHttpSendRequestParamsQueryParams": ".types", + "FlowActionHttpSendRequestParamsQueryParamsValue": ".types", + "FlowActionHttpSendRequestType": ".types", + "FlowActionHubspot": ".types", + "FlowActionHubspotEnrollContact": ".types", + "FlowActionHubspotEnrollContactAction": ".types", + "FlowActionHubspotEnrollContactParams": ".types", + "FlowActionHubspotEnrollContactParamsWorkflowId": ".types", + "FlowActionHubspotEnrollContactType": ".types", + "FlowActionHubspotGetContact": ".types", + "FlowActionHubspotGetContactAction": ".types", + "FlowActionHubspotGetContactParams": ".types", + "FlowActionHubspotGetContactType": ".types", + "FlowActionHubspotUpsertContact": ".types", + "FlowActionHubspotUpsertContactAction": ".types", + "FlowActionHubspotUpsertContactParams": ".types", + "FlowActionHubspotUpsertContactParamsProperty": ".types", + "FlowActionHubspotUpsertContactType": ".types", + "FlowActionJson": ".types", + "FlowActionJsonCreateJson": ".types", + "FlowActionJsonCreateJsonAction": ".types", + "FlowActionJsonCreateJsonParams": ".types", + "FlowActionJsonCreateJsonParamsObject": ".types", + "FlowActionJsonCreateJsonType": ".types", + "FlowActionJsonParseJson": ".types", + "FlowActionJsonParseJsonAction": ".types", + "FlowActionJsonParseJsonParams": ".types", + "FlowActionJsonParseJsonType": ".types", + "FlowActionJsonSerializeJson": ".types", + "FlowActionJsonSerializeJsonAction": ".types", + "FlowActionJsonSerializeJsonParams": ".types", + "FlowActionJsonSerializeJsonParamsObject": ".types", + "FlowActionJsonSerializeJsonParamsObjectObject": ".types", + "FlowActionJsonSerializeJsonType": ".types", + "FlowActionJwt": ".types", + "FlowActionJwtDecodeJwt": ".types", + "FlowActionJwtDecodeJwtAction": ".types", + "FlowActionJwtDecodeJwtParams": ".types", + "FlowActionJwtDecodeJwtType": ".types", + "FlowActionJwtSignJwt": ".types", + "FlowActionJwtSignJwtAction": ".types", + "FlowActionJwtSignJwtParams": ".types", + "FlowActionJwtSignJwtParamsPayload": ".types", + "FlowActionJwtSignJwtType": ".types", + "FlowActionJwtVerifyJwt": ".types", + "FlowActionJwtVerifyJwtAction": ".types", + "FlowActionJwtVerifyJwtParams": ".types", + "FlowActionJwtVerifyJwtType": ".types", + "FlowActionMailchimp": ".types", + "FlowActionMailchimpUpsertMember": ".types", + "FlowActionMailchimpUpsertMemberAction": ".types", + "FlowActionMailchimpUpsertMemberParams": ".types", + "FlowActionMailchimpUpsertMemberParamsMember": ".types", + "FlowActionMailchimpUpsertMemberParamsMemberMergeFields": ".types", + "FlowActionMailchimpUpsertMemberType": ".types", + "FlowActionMailjet": ".types", + "FlowActionMailjetSendEmail": ".types", + "FlowActionMailjetSendEmailAction": ".types", + "FlowActionMailjetSendEmailParams": ".types", + "FlowActionMailjetSendEmailParamsContent": ".types", + "FlowActionMailjetSendEmailParamsTemplateId": ".types", + "FlowActionMailjetSendEmailType": ".types", + "FlowActionOtp": ".types", + "FlowActionOtpGenerateCode": ".types", + "FlowActionOtpGenerateCodeAction": ".types", + "FlowActionOtpGenerateCodeParams": ".types", + "FlowActionOtpGenerateCodeType": ".types", + "FlowActionOtpVerifyCode": ".types", + "FlowActionOtpVerifyCodeAction": ".types", + "FlowActionOtpVerifyCodeParams": ".types", + "FlowActionOtpVerifyCodeParamsCode": ".types", + "FlowActionOtpVerifyCodeType": ".types", + "FlowActionPipedrive": ".types", + "FlowActionPipedriveAddDeal": ".types", + "FlowActionPipedriveAddDealAction": ".types", + "FlowActionPipedriveAddDealParams": ".types", + "FlowActionPipedriveAddDealParamsFields": ".types", + "FlowActionPipedriveAddDealParamsOrganizationId": ".types", + "FlowActionPipedriveAddDealParamsPersonId": ".types", + "FlowActionPipedriveAddDealParamsStageId": ".types", + "FlowActionPipedriveAddDealParamsUserId": ".types", + "FlowActionPipedriveAddDealType": ".types", + "FlowActionPipedriveAddOrganization": ".types", + "FlowActionPipedriveAddOrganizationAction": ".types", + "FlowActionPipedriveAddOrganizationParams": ".types", + "FlowActionPipedriveAddOrganizationParamsFields": ".types", + "FlowActionPipedriveAddOrganizationParamsOwnerId": ".types", + "FlowActionPipedriveAddOrganizationType": ".types", + "FlowActionPipedriveAddPerson": ".types", + "FlowActionPipedriveAddPersonAction": ".types", + "FlowActionPipedriveAddPersonParams": ".types", + "FlowActionPipedriveAddPersonParamsFields": ".types", + "FlowActionPipedriveAddPersonParamsOrganizationId": ".types", + "FlowActionPipedriveAddPersonParamsOwnerId": ".types", + "FlowActionPipedriveAddPersonType": ".types", + "FlowActionSalesforce": ".types", + "FlowActionSalesforceCreateLead": ".types", + "FlowActionSalesforceCreateLeadAction": ".types", + "FlowActionSalesforceCreateLeadParams": ".types", + "FlowActionSalesforceCreateLeadParamsPayload": ".types", + "FlowActionSalesforceCreateLeadType": ".types", + "FlowActionSalesforceGetLead": ".types", + "FlowActionSalesforceGetLeadAction": ".types", + "FlowActionSalesforceGetLeadParams": ".types", + "FlowActionSalesforceGetLeadType": ".types", + "FlowActionSalesforceSearchLeads": ".types", + "FlowActionSalesforceSearchLeadsAction": ".types", + "FlowActionSalesforceSearchLeadsParams": ".types", + "FlowActionSalesforceSearchLeadsParamsSearchField": ".types", + "FlowActionSalesforceSearchLeadsType": ".types", + "FlowActionSalesforceUpdateLead": ".types", + "FlowActionSalesforceUpdateLeadAction": ".types", + "FlowActionSalesforceUpdateLeadParams": ".types", + "FlowActionSalesforceUpdateLeadParamsPayload": ".types", + "FlowActionSalesforceUpdateLeadType": ".types", + "FlowActionSendgrid": ".types", + "FlowActionSendgridSendEmail": ".types", + "FlowActionSendgridSendEmailAction": ".types", + "FlowActionSendgridSendEmailParams": ".types", + "FlowActionSendgridSendEmailParamsPerson": ".types", + "FlowActionSendgridSendEmailType": ".types", + "FlowActionSlack": ".types", + "FlowActionSlackPostMessage": ".types", + "FlowActionSlackPostMessageAction": ".types", + "FlowActionSlackPostMessageParams": ".types", + "FlowActionSlackPostMessageParamsAttachment": ".types", + "FlowActionSlackPostMessageParamsAttachmentColor": ".types", + "FlowActionSlackPostMessageParamsAttachmentField": ".types", + "FlowActionSlackPostMessageType": ".types", + "FlowActionStripe": ".types", + "FlowActionStripeAddTaxId": ".types", + "FlowActionStripeAddTaxIdAction": ".types", + "FlowActionStripeAddTaxIdParams": ".types", + "FlowActionStripeAddTaxIdType": ".types", + "FlowActionStripeAddress": ".types", + "FlowActionStripeCreateCustomer": ".types", + "FlowActionStripeCreateCustomerAction": ".types", + "FlowActionStripeCreateCustomerParams": ".types", + "FlowActionStripeCreateCustomerType": ".types", + "FlowActionStripeCreatePortalSession": ".types", + "FlowActionStripeCreatePortalSessionAction": ".types", + "FlowActionStripeCreatePortalSessionParams": ".types", + "FlowActionStripeCreatePortalSessionType": ".types", + "FlowActionStripeDeleteTaxId": ".types", + "FlowActionStripeDeleteTaxIdAction": ".types", + "FlowActionStripeDeleteTaxIdParams": ".types", + "FlowActionStripeDeleteTaxIdType": ".types", + "FlowActionStripeFindCustomers": ".types", + "FlowActionStripeFindCustomersAction": ".types", + "FlowActionStripeFindCustomersParams": ".types", + "FlowActionStripeFindCustomersType": ".types", + "FlowActionStripeGetCustomer": ".types", + "FlowActionStripeGetCustomerAction": ".types", + "FlowActionStripeGetCustomerParams": ".types", + "FlowActionStripeGetCustomerType": ".types", + "FlowActionStripeMetadata": ".types", + "FlowActionStripeTaxId": ".types", + "FlowActionStripeUpdateCustomer": ".types", + "FlowActionStripeUpdateCustomerAction": ".types", + "FlowActionStripeUpdateCustomerParams": ".types", + "FlowActionStripeUpdateCustomerType": ".types", + "FlowActionTelegram": ".types", + "FlowActionTelegramSendMessage": ".types", + "FlowActionTelegramSendMessageAction": ".types", + "FlowActionTelegramSendMessageParams": ".types", + "FlowActionTelegramSendMessageType": ".types", + "FlowActionTwilio": ".types", + "FlowActionTwilioMakeCall": ".types", + "FlowActionTwilioMakeCallAction": ".types", + "FlowActionTwilioMakeCallParams": ".types", + "FlowActionTwilioMakeCallType": ".types", + "FlowActionTwilioSendSms": ".types", + "FlowActionTwilioSendSmsAction": ".types", + "FlowActionTwilioSendSmsParams": ".types", + "FlowActionTwilioSendSmsType": ".types", + "FlowActionWhatsapp": ".types", + "FlowActionWhatsappSendMessage": ".types", + "FlowActionWhatsappSendMessageAction": ".types", + "FlowActionWhatsappSendMessageParams": ".types", + "FlowActionWhatsappSendMessageParamsPayload": ".types", + "FlowActionWhatsappSendMessageParamsPayloadObject": ".types", + "FlowActionWhatsappSendMessageParamsType": ".types", + "FlowActionWhatsappSendMessageType": ".types", + "FlowActionXml": ".types", + "FlowActionXmlParseXml": ".types", + "FlowActionXmlParseXmlAction": ".types", + "FlowActionXmlParseXmlParams": ".types", + "FlowActionXmlParseXmlType": ".types", + "FlowActionXmlSerializeXml": ".types", + "FlowActionXmlSerializeXmlAction": ".types", + "FlowActionXmlSerializeXmlParams": ".types", + "FlowActionXmlSerializeXmlParamsObject": ".types", + "FlowActionXmlSerializeXmlParamsObjectObject": ".types", + "FlowActionXmlSerializeXmlType": ".types", + "FlowActionZapier": ".types", + "FlowActionZapierTriggerWebhook": ".types", + "FlowActionZapierTriggerWebhookAction": ".types", + "FlowActionZapierTriggerWebhookParams": ".types", + "FlowActionZapierTriggerWebhookParamsMethod": ".types", + "FlowActionZapierTriggerWebhookType": ".types", + "FlowExecutionDebug": ".types", + "FlowExecutionSummary": ".types", + "FlowSummary": ".types", + "FlowsVaultConnectioSetupApiKey": ".types", + "FlowsVaultConnectioSetupApiKeyWithBaseUrl": ".types", + "FlowsVaultConnectioSetupBigqueryOauthJwt": ".types", + "FlowsVaultConnectioSetupHttpBearer": ".types", + "FlowsVaultConnectioSetupJwt": ".types", + "FlowsVaultConnectioSetupJwtAlgorithmEnum": ".types", + "FlowsVaultConnectioSetupMailjetApiKey": ".types", + "FlowsVaultConnectioSetupOauthApp": ".types", + "FlowsVaultConnectioSetupOauthCode": ".types", + "FlowsVaultConnectioSetupSecretApiKey": ".types", + "FlowsVaultConnectioSetupStripeKeyPair": ".types", + "FlowsVaultConnectioSetupToken": ".types", + "FlowsVaultConnectioSetupTwilioApiKey": ".types", + "FlowsVaultConnectioSetupTypeApiKeyEnum": ".types", + "FlowsVaultConnectioSetupTypeBearerEnum": ".types", + "FlowsVaultConnectioSetupTypeJwtEnum": ".types", + "FlowsVaultConnectioSetupTypeKeyPairEnum": ".types", + "FlowsVaultConnectioSetupTypeOauthAppEnum": ".types", + "FlowsVaultConnectioSetupTypeOauthCodeEnum": ".types", + "FlowsVaultConnectioSetupTypeOauthJwtEnum": ".types", + "FlowsVaultConnectioSetupTypeTokenEnum": ".types", + "FlowsVaultConnectioSetupTypeWebhookEnum": ".types", + "FlowsVaultConnectioSetupWebhook": ".types", + "FlowsVaultConnectionAppIdActivecampaignEnum": ".types", + "FlowsVaultConnectionAppIdAirtableEnum": ".types", + "FlowsVaultConnectionAppIdAuth0Enum": ".types", + "FlowsVaultConnectionAppIdBigqueryEnum": ".types", + "FlowsVaultConnectionAppIdClearbitEnum": ".types", + "FlowsVaultConnectionAppIdDocusignEnum": ".types", + "FlowsVaultConnectionAppIdGoogleSheetsEnum": ".types", + "FlowsVaultConnectionAppIdHttpEnum": ".types", + "FlowsVaultConnectionAppIdHubspotEnum": ".types", + "FlowsVaultConnectionAppIdJwtEnum": ".types", + "FlowsVaultConnectionAppIdMailchimpEnum": ".types", + "FlowsVaultConnectionAppIdMailjetEnum": ".types", + "FlowsVaultConnectionAppIdPipedriveEnum": ".types", + "FlowsVaultConnectionAppIdSalesforceEnum": ".types", + "FlowsVaultConnectionAppIdSendgridEnum": ".types", + "FlowsVaultConnectionAppIdSlackEnum": ".types", + "FlowsVaultConnectionAppIdStripeEnum": ".types", + "FlowsVaultConnectionAppIdTelegramEnum": ".types", + "FlowsVaultConnectionAppIdTwilioEnum": ".types", + "FlowsVaultConnectionAppIdWhatsappEnum": ".types", + "FlowsVaultConnectionAppIdZapierEnum": ".types", + "FlowsVaultConnectionHttpApiKeySetup": ".types", + "FlowsVaultConnectionHttpApiKeySetupInEnum": ".types", + "FlowsVaultConnectionHttpBasicAuthSetup": ".types", + "FlowsVaultConnectionHttpOauthClientCredentialsSetup": ".types", + "FlowsVaultConnectionSetupTypeApiKeyEnum": ".types", + "FlowsVaultConnectionSetupTypeBasicAuthEnum": ".types", + "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum": ".types", + "FlowsVaultConnectionSummary": ".types", + "ForbiddenError": ".errors", + "ForbiddenSchema": ".types", + "ForbiddenSchemaError": ".types", + "FormBlock": ".types", + "FormBlockDivider": ".types", + "FormBlockDividerConfig": ".types", + "FormBlockHtml": ".types", + "FormBlockHtmlConfig": ".types", + "FormBlockImage": ".types", + "FormBlockImageConfig": ".types", + "FormBlockImageConfigPositionEnum": ".types", + "FormBlockJumpButton": ".types", + "FormBlockJumpButtonConfig": ".types", + "FormBlockJumpButtonConfigStyle": ".types", + "FormBlockNextButton": ".types", + "FormBlockNextButtonConfig": ".types", + "FormBlockPreviousButton": ".types", + "FormBlockPreviousButtonConfig": ".types", + "FormBlockResendButton": ".types", + "FormBlockResendButtonConfig": ".types", + "FormBlockResendButtonConfigTextAlignmentEnum": ".types", + "FormBlockRichText": ".types", + "FormBlockRichTextConfig": ".types", + "FormBlockTypeDividerConst": ".types", + "FormBlockTypeHtmlConst": ".types", + "FormBlockTypeImageConst": ".types", + "FormBlockTypeJumpButtonConst": ".types", + "FormBlockTypeNextButtonConst": ".types", + "FormBlockTypePreviousButtonConst": ".types", + "FormBlockTypeResendButtonConst": ".types", + "FormBlockTypeRichTextConst": ".types", + "FormComponent": ".types", + "FormComponentCategoryBlockConst": ".types", + "FormComponentCategoryFieldConst": ".types", + "FormComponentCategoryWidgetConst": ".types", + "FormEndingNode": ".types", + "FormEndingNodeAfterSubmit": ".types", + "FormEndingNodeId": ".types", + "FormEndingNodeNullable": ".types", + "FormEndingNodeRedirection": ".types", + "FormEndingNodeResumeFlowTrueConst": ".types", + "FormField": ".types", + "FormFieldBoolean": ".types", + "FormFieldBooleanConfig": ".types", + "FormFieldBooleanConfigOptions": ".types", + "FormFieldCards": ".types", + "FormFieldCardsConfig": ".types", + "FormFieldCardsConfigOption": ".types", + "FormFieldChoice": ".types", + "FormFieldChoiceConfig": ".types", + "FormFieldChoiceConfigAllowOther": ".types", + "FormFieldChoiceConfigAllowOtherEnabledTrueEnum": ".types", + "FormFieldChoiceConfigOption": ".types", + "FormFieldCustom": ".types", + "FormFieldCustomConfig": ".types", + "FormFieldCustomConfigParams": ".types", + "FormFieldCustomConfigSchema": ".types", + "FormFieldDate": ".types", + "FormFieldDateConfig": ".types", + "FormFieldDateConfigFormatEnum": ".types", + "FormFieldDropdown": ".types", + "FormFieldDropdownConfig": ".types", + "FormFieldDropdownConfigOption": ".types", + "FormFieldEmail": ".types", + "FormFieldEmailConfig": ".types", + "FormFieldFile": ".types", + "FormFieldFileConfig": ".types", + "FormFieldFileConfigCategoryEnum": ".types", + "FormFieldFileConfigStorage": ".types", + "FormFieldFileConfigStorageTypeEnum": ".types", + "FormFieldLegal": ".types", + "FormFieldLegalConfig": ".types", + "FormFieldNumber": ".types", + "FormFieldNumberConfig": ".types", + "FormFieldPassword": ".types", + "FormFieldPasswordConfig": ".types", + "FormFieldPasswordConfigHashEnum": ".types", + "FormFieldPayment": ".types", + "FormFieldPaymentConfig": ".types", + "FormFieldPaymentConfigCharge": ".types", + "FormFieldPaymentConfigChargeOneOff": ".types", + "FormFieldPaymentConfigChargeOneOffCurrencyEnum": ".types", + "FormFieldPaymentConfigChargeOneOffOneOff": ".types", + "FormFieldPaymentConfigChargeOneOffOneOffAmount": ".types", + "FormFieldPaymentConfigChargeSubscription": ".types", + "FormFieldPaymentConfigChargeTypeOneOffConst": ".types", + "FormFieldPaymentConfigChargeTypeSubscriptionConst": ".types", + "FormFieldPaymentConfigCredentials": ".types", + "FormFieldPaymentConfigCustomer": ".types", + "FormFieldPaymentConfigFieldProperties": ".types", + "FormFieldPaymentConfigFields": ".types", + "FormFieldPaymentConfigProviderEnum": ".types", + "FormFieldPaymentConfigSubscription": ".types", + "FormFieldSocial": ".types", + "FormFieldSocialConfig": ".types", + "FormFieldTel": ".types", + "FormFieldTelConfig": ".types", + "FormFieldTelConfigStrings": ".types", + "FormFieldText": ".types", + "FormFieldTextConfig": ".types", + "FormFieldTypeBooleanConst": ".types", + "FormFieldTypeCardsConst": ".types", + "FormFieldTypeChoiceConst": ".types", + "FormFieldTypeCustomConst": ".types", + "FormFieldTypeDateConst": ".types", + "FormFieldTypeDropdownConst": ".types", + "FormFieldTypeEmailConst": ".types", + "FormFieldTypeFileConst": ".types", + "FormFieldTypeLegalConst": ".types", + "FormFieldTypeNumberConst": ".types", + "FormFieldTypePasswordConst": ".types", + "FormFieldTypePaymentConst": ".types", + "FormFieldTypeSocialConst": ".types", + "FormFieldTypeTelConst": ".types", + "FormFieldTypeTextConst": ".types", + "FormFieldTypeUrlConst": ".types", + "FormFieldUrl": ".types", + "FormFieldUrlConfig": ".types", + "FormFlow": ".types", + "FormFlowConfig": ".types", + "FormHiddenField": ".types", + "FormLanguages": ".types", + "FormLanguagesNullable": ".types", + "FormMessages": ".types", + "FormMessagesCustom": ".types", + "FormMessagesError": ".types", + "FormMessagesNullable": ".types", + "FormNode": ".types", + "FormNodeCoordinates": ".types", + "FormNodeList": ".types", + "FormNodeListNullable": ".types", + "FormNodePointer": ".types", + "FormNodeTypeFlowConst": ".types", + "FormNodeTypeRouterConst": ".types", + "FormNodeTypeStepConst": ".types", + "FormRouter": ".types", + "FormRouterConfig": ".types", + "FormRouterRule": ".types", + "FormStartNode": ".types", + "FormStartNodeNullable": ".types", + "FormStep": ".types", + "FormStepComponentList": ".types", + "FormStepConfig": ".types", + "FormStyle": ".types", + "FormStyleNullable": ".types", + "FormSummary": ".types", + "FormTranslations": ".types", + "FormTranslationsNullable": ".types", + "FormWidget": ".types", + "FormWidgetAuth0VerifiableCredentials": ".types", + "FormWidgetAuth0VerifiableCredentialsConfig": ".types", + "FormWidgetGMapsAddress": ".types", + "FormWidgetGMapsAddressConfig": ".types", + "FormWidgetRecaptcha": ".types", + "FormWidgetRecaptchaConfig": ".types", + "FormWidgetTypeAuth0VerifiableCredentialsConst": ".types", + "FormWidgetTypeGMapsAddressConst": ".types", + "FormWidgetTypeRecaptchaConst": ".types", + "FormsRequestParametersHydrateEnum": ".types", + "GetActionExecutionResponseContent": ".types", + "GetActionModuleActionsResponseContent": ".types", + "GetActionModuleResponseContent": ".types", + "GetActionModuleVersionResponseContent": ".types", + "GetActionModuleVersionsResponseContent": ".types", + "GetActionModulesResponseContent": ".types", + "GetActionResponseContent": ".types", + "GetActionVersionResponseContent": ".types", + "GetActiveUsersCountStatsResponseContent": ".types", + "GetAculResponseContent": ".types", + "GetAttackProtectionCaptchaResponseContent": ".types", + "GetBotDetectionSettingsResponseContent": ".types", + "GetBrandingDefaultThemeResponseContent": ".types", + "GetBrandingPhoneProviderResponseContent": ".types", + "GetBrandingResponseContent": ".types", + "GetBrandingThemeResponseContent": ".types", + "GetBreachedPasswordDetectionSettingsResponseContent": ".types", + "GetBruteForceSettingsResponseContent": ".types", + "GetClientCredentialResponseContent": ".types", + "GetClientGrantResponseContent": ".types", + "GetClientResponseContent": ".types", + "GetConnectionEnabledClientsResponseContent": ".types", + "GetConnectionProfileResponseContent": ".types", + "GetConnectionProfileTemplateResponseContent": ".types", + "GetConnectionResponseContent": ".types", + "GetCustomDomainResponseContent": ".types", + "GetCustomSigningKeysResponseContent": ".types", + "GetCustomTextsByLanguageResponseContent": ".types", + "GetDefaultCanonicalDomainResponseContent": ".types", + "GetDefaultCustomDomainResponseContent": ".types", + "GetDefaultDomainResponseContent": ".types", + "GetDirectoryProvisioningDefaultMappingResponseContent": ".types", + "GetDirectoryProvisioningResponseContent": ".types", + "GetEmailProviderResponseContent": ".types", + "GetEmailTemplateResponseContent": ".types", + "GetEncryptionKeyResponseContent": ".types", + "GetEventStreamDeliveryHistoryResponseContent": ".types", + "GetEventStreamResponseContent": ".types", + "GetFlowExecutionRequestParametersHydrateEnum": ".types", + "GetFlowExecutionResponseContent": ".types", + "GetFlowRequestParametersHydrateEnum": ".types", + "GetFlowResponseContent": ".types", + "GetFlowsVaultConnectionResponseContent": ".types", + "GetFormResponseContent": ".types", + "GetGroupMembersResponseContent": ".types", + "GetGroupResponseContent": ".types", + "GetGuardianEnrollmentResponseContent": ".types", + "GetGuardianFactorDuoSettingsResponseContent": ".types", + "GetGuardianFactorPhoneMessageTypesResponseContent": ".types", + "GetGuardianFactorPhoneTemplatesResponseContent": ".types", + "GetGuardianFactorSmsTemplatesResponseContent": ".types", + "GetGuardianFactorsProviderApnsResponseContent": ".types", + "GetGuardianFactorsProviderPhoneResponseContent": ".types", + "GetGuardianFactorsProviderPhoneTwilioResponseContent": ".types", + "GetGuardianFactorsProviderPushNotificationResponseContent": ".types", + "GetGuardianFactorsProviderSmsResponseContent": ".types", + "GetGuardianFactorsProviderSmsTwilioResponseContent": ".types", + "GetGuardianFactorsProviderSnsResponseContent": ".types", + "GetHookResponseContent": ".types", + "GetHookSecretResponseContent": ".types", + "GetJobErrorResponseContent": ".types", + "GetJobGenericErrorResponseContent": ".types", + "GetJobImportUserError": ".types", + "GetJobResponseContent": ".types", + "GetJobSummary": ".types", + "GetJobUserError": ".types", + "GetLogResponseContent": ".types", + "GetLogStreamResponseContent": ".types", + "GetNetworkAclsResponseContent": ".types", + "GetOrganizationAllConnectionResponseContent": ".types", + "GetOrganizationByNameResponseContent": ".types", + "GetOrganizationClientResponseContent": ".types", + "GetOrganizationConnectionResponseContent": ".types", + "GetOrganizationDiscoveryDomainByNameResponseContent": ".types", + "GetOrganizationDiscoveryDomainResponseContent": ".types", + "GetOrganizationInvitationResponseContent": ".types", + "GetOrganizationResponseContent": ".types", + "GetPartialsResponseContent": ".types", + "GetPhoneProviderProtectionResponseContent": ".types", + "GetPhoneTemplateResponseContent": ".types", + "GetRateLimitPolicyResponseContent": ".types", + "GetRefreshTokenResponseContent": ".types", + "GetRefreshTokensPaginatedResponseContent": ".types", + "GetResourceServerResponseContent": ".types", + "GetRiskAssessmentsSettingsNewDeviceResponseContent": ".types", + "GetRiskAssessmentsSettingsResponseContent": ".types", + "GetRoleResponseContent": ".types", + "GetRuleResponseContent": ".types", + "GetScimConfigurationDefaultMappingResponseContent": ".types", + "GetScimConfigurationResponseContent": ".types", + "GetScimTokensResponseContent": ".types", + "GetSelfServiceProfileResponseContent": ".types", + "GetSessionResponseContent": ".types", + "GetSettingsResponseContent": ".types", + "GetSigningKeysResponseContent": ".types", + "GetSupplementalSignalsResponseContent": ".types", + "GetSuspiciousIpThrottlingSettingsResponseContent": ".types", + "GetTenantSettingsResponseContent": ".types", + "GetTokenExchangeProfileResponseContent": ".types", + "GetUniversalLoginTemplate": ".types", + "GetUniversalLoginTemplateResponseContent": ".types", + "GetUserAttributeProfileResponseContent": ".types", + "GetUserAttributeProfileTemplateResponseContent": ".types", + "GetUserAuthenticationMethodResponseContent": ".types", + "GetUserGroupsPaginatedResponseContent": ".types", + "GetUserResponseContent": ".types", + "GetVerifiableCredentialTemplateResponseContent": ".types", + "GoneError": ".errors", + "Group": ".types", + "GroupMember": ".types", + "GroupMemberTypeEnum": ".types", + "GroupTypeEnum": ".types", + "GuardianEnrollmentDate": ".types", + "GuardianEnrollmentFactorEnum": ".types", + "GuardianEnrollmentStatus": ".types", + "GuardianFactor": ".types", + "GuardianFactorNameEnum": ".types", + "GuardianFactorPhoneFactorMessageTypeEnum": ".types", + "GuardianFactorsProviderPushNotificationProviderDataEnum": ".types", + "GuardianFactorsProviderSmsProviderEnum": ".types", + "Hook": ".types", + "HookDependencies": ".types", + "HookTriggerIdEnum": ".types", + "HttpCustomHeader": ".types", + "Identity": ".types", + "IdentityAssertionAuthorizationGrant": ".types", + "IdentityProviderEnum": ".types", + "IdentityProviderOnlyAuth0Enum": ".types", + "ImportEncryptionKeyResponseContent": ".types", + "Integration": ".types", + "IntegrationFeatureTypeEnum": ".types", + "IntegrationRelease": ".types", + "IntegrationRequiredParam": ".types", + "IntegrationRequiredParamOption": ".types", + "IntegrationRequiredParamTypeEnum": ".types", + "IntegrationSemVer": ".types", + "InternalServerError": ".errors", + "JobFileFormatEnum": ".types", + "LinkedClientConfiguration": ".types", + "ListActionBindingsPaginatedResponseContent": ".types", + "ListActionTriggersResponseContent": ".types", + "ListActionVersionsPaginatedResponseContent": ".types", + "ListActionsPaginatedResponseContent": ".types", + "ListAculsOffsetPaginatedResponseContent": ".types", + "ListAculsResponseContentItem": ".types", + "ListBrandingPhoneProvidersResponseContent": ".types", + "ListClientConnectionsResponseContent": ".types", + "ListClientGrantOrganizationsPaginatedResponseContent": ".types", + "ListClientGrantPaginatedResponseContent": ".types", + "ListClientsOffsetPaginatedResponseContent": ".types", + "ListConnectionProfileTemplateResponseContent": ".types", + "ListConnectionProfilesPaginatedResponseContent": ".types", + "ListConnectionsCheckpointPaginatedResponseContent": ".types", + "ListCustomDomainsResponseContent": ".types", + "ListDeviceCredentialsOffsetPaginatedResponseContent": ".types", + "ListDirectoryProvisioningsResponseContent": ".types", + "ListEncryptionKeyOffsetPaginatedResponseContent": ".types", + "ListEventStreamsResponseContent": ".types", + "ListFlowExecutionsPaginatedResponseContent": ".types", + "ListFlowsOffsetPaginatedResponseContent": ".types", + "ListFlowsRequestParametersHydrateEnum": ".types", + "ListFlowsVaultConnectionsOffsetPaginatedResponseContent": ".types", + "ListFormsOffsetPaginatedResponseContent": ".types", + "ListGroupRolesResponseContent": ".types", + "ListGroupsPaginatedResponseContent": ".types", + "ListGuardianPoliciesResponseContent": ".types", + "ListHooksOffsetPaginatedResponseContent": ".types", + "ListLogOffsetPaginatedResponseContent": ".types", + "ListNetworkAclsOffsetPaginatedResponseContent": ".types", + "ListOrganizationAllConnectionsOffsetPaginatedResponseContent": ".types", + "ListOrganizationClientGrantsOffsetPaginatedResponseContent": ".types", + "ListOrganizationClientsResponseContent": ".types", + "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".types", + "ListOrganizationDiscoveryDomainsResponseContent": ".types", + "ListOrganizationGroupRolesResponseContent": ".types", + "ListOrganizationGroupsResponseContent": ".types", + "ListOrganizationInvitationsOffsetPaginatedResponseContent": ".types", + "ListOrganizationMemberEffectiveRolesResponseContent": ".types", + "ListOrganizationMemberRoleSourceGroupsResponseContent": ".types", + "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", + "ListOrganizationMembersPaginatedResponseContent": ".types", + "ListOrganizationRoleGroupsResponseContent": ".types", + "ListOrganizationRoleMembersResponseContent": ".types", + "ListOrganizationsPaginatedResponseContent": ".types", + "ListPhoneTemplatesResponseContent": ".types", + "ListRateLimitPoliciesPaginatedResponseContent": ".types", + "ListRefreshTokensPaginatedResponseContent": ".types", + "ListResourceServerOffsetPaginatedResponseContent": ".types", + "ListRoleGroupsResponseContent": ".types", + "ListRolePermissionsOffsetPaginatedResponseContent": ".types", + "ListRoleUsersPaginatedResponseContent": ".types", + "ListRolesCheckpointPaginatedResponseContent": ".types", + "ListRolesResponseContent": ".types", + "ListRulesOffsetPaginatedResponseContent": ".types", + "ListScimConfigurationsResponseContent": ".types", + "ListSelfServiceProfileCustomTextResponseContent": ".types", + "ListSelfServiceProfilesPaginatedResponseContent": ".types", + "ListSynchronizedGroupsResponseContent": ".types", + "ListTokenExchangeProfileResponseContent": ".types", + "ListUserAttributeProfileTemplateResponseContent": ".types", + "ListUserAttributeProfilesPaginatedResponseContent": ".types", + "ListUserAuthenticationMethodsOffsetPaginatedResponseContent": ".types", + "ListUserBlocksByIdentifierResponseContent": ".types", + "ListUserBlocksResponseContent": ".types", + "ListUserConnectedAccountsResponseContent": ".types", + "ListUserEffectivePermissionRoleSourcesResponseContent": ".types", + "ListUserEffectivePermissionsResponseContent": ".types", + "ListUserEffectiveRolesResponseContent": ".types", + "ListUserGrantsOffsetPaginatedResponseContent": ".types", + "ListUserOrganizationsOffsetPaginatedResponseContent": ".types", + "ListUserPermissionsOffsetPaginatedResponseContent": ".types", + "ListUserRoleSourceGroupsResponseContent": ".types", + "ListUserRolesOffsetPaginatedResponseContent": ".types", + "ListUserSessionsPaginatedResponseContent": ".types", + "ListUsersOffsetPaginatedResponseContent": ".types", + "ListVerifiableCredentialTemplatesPaginatedResponseContent": ".types", + "Log": ".types", + "LogDate": ".types", + "LogDateObject": ".types", + "LogDetails": ".types", + "LogLocationInfo": ".types", + "LogSecurityContext": ".types", + "LogStreamDatadogEnum": ".types", + "LogStreamDatadogRegionEnum": ".types", + "LogStreamDatadogResponseSchema": ".types", + "LogStreamDatadogSink": ".types", + "LogStreamEventBridgeEnum": ".types", + "LogStreamEventBridgeResponseSchema": ".types", + "LogStreamEventBridgeSink": ".types", + "LogStreamEventBridgeSinkRegionEnum": ".types", + "LogStreamEventGridEnum": ".types", + "LogStreamEventGridRegionEnum": ".types", + "LogStreamEventGridResponseSchema": ".types", + "LogStreamEventGridSink": ".types", + "LogStreamFilter": ".types", + "LogStreamFilterGroupNameEnum": ".types", + "LogStreamFilterTypeEnum": ".types", + "LogStreamHttpContentFormatEnum": ".types", + "LogStreamHttpEnum": ".types", + "LogStreamHttpResponseSchema": ".types", + "LogStreamHttpSink": ".types", + "LogStreamMixpanelEnum": ".types", + "LogStreamMixpanelRegionEnum": ".types", + "LogStreamMixpanelResponseSchema": ".types", + "LogStreamMixpanelSink": ".types", + "LogStreamMixpanelSinkPatch": ".types", + "LogStreamPiiAlgorithmEnum": ".types", + "LogStreamPiiConfig": ".types", + "LogStreamPiiLogFieldsEnum": ".types", + "LogStreamPiiMethodEnum": ".types", + "LogStreamResponseSchema": ".types", + "LogStreamSegmentEnum": ".types", + "LogStreamSegmentResponseSchema": ".types", + "LogStreamSegmentSink": ".types", + "LogStreamSegmentSinkWriteKey": ".types", + "LogStreamSinkPatch": ".types", + "LogStreamSplunkEnum": ".types", + "LogStreamSplunkResponseSchema": ".types", + "LogStreamSplunkSink": ".types", + "LogStreamStatusEnum": ".types", + "LogStreamSumoEnum": ".types", + "LogStreamSumoResponseSchema": ".types", + "LogStreamSumoSink": ".types", + "ManagementClient": ".management_client", + "MdlPresentationProperties": ".types", + "MdlPresentationRequest": ".types", + "MdlPresentationRequestProperties": ".types", + "MfaPolicyEnum": ".types", + "NativeSocialLogin": ".types", + "NativeSocialLoginApple": ".types", + "NativeSocialLoginApplePatch": ".types", + "NativeSocialLoginFacebook": ".types", + "NativeSocialLoginFacebookPatch": ".types", + "NativeSocialLoginGoogle": ".types", + "NativeSocialLoginGooglePatch": ".types", + "NativeSocialLoginPatch": ".types", + "NetworkAclAction": ".types", + "NetworkAclActionAllowEnum": ".types", + "NetworkAclActionBlockEnum": ".types", + "NetworkAclActionLogEnum": ".types", + "NetworkAclActionRedirectEnum": ".types", + "NetworkAclMatch": ".types", + "NetworkAclMatchConnectingIpv4Cidr": ".types", + "NetworkAclMatchConnectingIpv6Cidr": ".types", + "NetworkAclMatchIpv4Cidr": ".types", + "NetworkAclMatchIpv6Cidr": ".types", + "NetworkAclRule": ".types", + "NetworkAclRuleScopeEnum": ".types", + "NetworkAclsResponseContent": ".types", + "NotFoundError": ".errors", + "NotFoundErrorBody": ".types", + "NotFoundErrorBodyError": ".types", + "NotFoundSchema": ".types", + "NotFoundSchemaError": ".types", + "OauthScope": ".types", + "Organization": ".types", + "OrganizationAccessLevelEnum": ".types", + "OrganizationAccessLevelEnumWithNull": ".types", + "OrganizationAllConnectionPost": ".types", + "OrganizationBranding": ".types", + "OrganizationBrandingColors": ".types", + "OrganizationClient": ".types", + "OrganizationClientAssociation": ".types", + "OrganizationClientGrant": ".types", + "OrganizationClientMetadata": ".types", + "OrganizationClientMetadataOrganizationUsageEnum": ".types", + "OrganizationConnection": ".types", + "OrganizationConnectionInformation": ".types", + "OrganizationDiscoveryDomain": ".types", + "OrganizationDiscoveryDomainStatus": ".types", + "OrganizationEnabledConnection": ".types", + "OrganizationInvitation": ".types", + "OrganizationInvitationInvitee": ".types", + "OrganizationInvitationInviter": ".types", + "OrganizationMember": ".types", + "OrganizationMemberEffectiveRole": ".types", + "OrganizationMemberEffectiveRoleSource": ".types", + "OrganizationMemberRole": ".types", + "OrganizationMetadata": ".types", + "OrganizationThirdPartyClientAccessEnum": ".types", + "OrganizationUsageEnum": ".types", + "PartialGroupsEnum": ".types", + "PartialPhoneTemplateContent": ".types", + "PasswordCharacterTypeEnum": ".types", + "PasswordCharacterTypeRulePolicyEnum": ".types", + "PasswordDefaultDictionariesEnum": ".types", + "PasswordIdenticalCharactersPolicyEnum": ".types", + "PasswordMaxLengthExceededPolicyEnum": ".types", + "PasswordSequentialCharactersPolicyEnum": ".types", + "PatchClientCredentialResponseContent": ".types", + "PatchPhoneProviderProtectionResponseContent": ".types", + "PatchRateLimitPolicyConfigurationRequestContent": ".types", + "PatchRateLimitPolicyConfigurationRequestContentAction": ".types", + "PatchRateLimitPolicyConfigurationRequestContentActionAction": ".types", + "PatchRateLimitPolicyConfigurationRequestContentOne": ".types", + "PatchRateLimitPolicyConfigurationRequestContentOneAction": ".types", + "PatchRateLimitPolicyConfigurationRequestContentZero": ".types", + "PatchRateLimitPolicyConfigurationRequestContentZeroAction": ".types", + "PatchSupplementalSignalsResponseContent": ".types", + "PaymentRequiredError": ".errors", + "PermissionRequestPayload": ".types", + "PermissionsResponsePayload": ".types", + "PhoneAttribute": ".types", + "PhoneAttributeIdentifier": ".types", + "PhoneProviderChannelEnum": ".types", + "PhoneProviderConfiguration": ".types", + "PhoneProviderCredentials": ".types", + "PhoneProviderDeliveryMethodEnum": ".types", + "PhoneProviderNameEnum": ".types", + "PhoneProviderProtectionBackoffStrategyEnum": ".types", + "PhoneProviderSchemaMasked": ".types", + "PhoneTemplate": ".types", + "PhoneTemplateBody": ".types", + "PhoneTemplateContent": ".types", + "PhoneTemplateNotificationTypeEnum": ".types", + "PostClientCredentialResponseContent": ".types", + "PostConnectionKeysAlgEnum": ".types", + "PostConnectionKeysRequestContent": ".types", + "PostConnectionsKeysResponseContent": ".types", + "PostConnectionsKeysResponseContentItem": ".types", + "PreconditionFailedError": ".errors", + "PreferredAuthenticationMethodEnum": ".types", + "PreviewCimdMetadataResponseContent": ".types", + "PromptGroupNameEnum": ".types", + "PromptLanguageEnum": ".types", + "PublicKeyCredential": ".types", + "PublicKeyCredentialAlgorithmEnum": ".types", + "PublicKeyCredentialTypeEnum": ".types", + "RateLimitPolicy": ".types", + "RateLimitPolicyConfiguration": ".types", + "RateLimitPolicyConfigurationAction": ".types", + "RateLimitPolicyConfigurationActionAction": ".types", + "RateLimitPolicyConfigurationOne": ".types", + "RateLimitPolicyConfigurationOneAction": ".types", + "RateLimitPolicyConfigurationZero": ".types", + "RateLimitPolicyConfigurationZeroAction": ".types", + "RateLimitPolicyConsumerEnum": ".types", + "RateLimitPolicyResourceEnum": ".types", + "RefreshTokenDate": ".types", + "RefreshTokenDateObject": ".types", + "RefreshTokenDevice": ".types", + "RefreshTokenExpirationTypeEnum": ".types", + "RefreshTokenMetadata": ".types", + "RefreshTokenResourceServer": ".types", + "RefreshTokenResponseContent": ".types", + "RefreshTokenRotationTypeEnum": ".types", + "RefreshTokenSessionId": ".types", + "RegenerateUsersRecoveryCodeResponseContent": ".types", + "RegisterCimdClientResponseContent": ".types", + "ResetPhoneTemplateRequestContent": ".types", + "ResetPhoneTemplateResponseContent": ".types", + "ResourceServer": ".types", + "ResourceServerAuthorizationPolicy": ".types", + "ResourceServerConsentPolicyEnum": ".types", + "ResourceServerProofOfPossession": ".types", + "ResourceServerProofOfPossessionMechanismEnum": ".types", + "ResourceServerProofOfPossessionRequiredForEnum": ".types", + "ResourceServerScope": ".types", + "ResourceServerSubjectTypeAuthorization": ".types", + "ResourceServerSubjectTypeAuthorizationClient": ".types", + "ResourceServerSubjectTypeAuthorizationClientPolicyEnum": ".types", + "ResourceServerSubjectTypeAuthorizationUser": ".types", + "ResourceServerSubjectTypeAuthorizationUserPolicyEnum": ".types", + "ResourceServerTokenDialectResponseEnum": ".types", + "ResourceServerTokenDialectSchemaEnum": ".types", + "ResourceServerTokenEncryption": ".types", + "ResourceServerTokenEncryptionAlgorithmEnum": ".types", + "ResourceServerTokenEncryptionFormatEnum": ".types", + "ResourceServerTokenEncryptionKey": ".types", + "ResourceServerVerificationKeyPemCertificate": ".types", + "RevokedSigningKeysResponseContent": ".types", + "Role": ".types", + "RoleGroup": ".types", + "RoleMember": ".types", + "RoleTypeEnum": ".types", + "RoleUser": ".types", + "RollbackActionModuleResponseContent": ".types", + "RotateClientSecretResponseContent": ".types", + "RotateConnectionKeysRequestContent": ".types", + "RotateConnectionKeysSigningAlgEnum": ".types", + "RotateConnectionsKeysResponseContent": ".types", + "RotateSigningKeysResponseContent": ".types", + "Rule": ".types", + "RulesConfig": ".types", + "ScimConfiguration": ".types", + "ScimMappingItem": ".types", + "ScimTokenItem": ".types", + "ScreenGroupNameEnum": ".types", + "SearchEngineVersionsEnum": ".types", + "SelfServiceProfile": ".types", + "SelfServiceProfileAllowedStrategyEnum": ".types", + "SelfServiceProfileBranding": ".types", + "SelfServiceProfileBrandingColors": ".types", + "SelfServiceProfileBrandingProperties": ".types", + "SelfServiceProfileCustomTextLanguageEnum": ".types", + "SelfServiceProfileCustomTextPageEnum": ".types", + "SelfServiceProfileDescription": ".types", + "SelfServiceProfileSsoTicketConnectionConfig": ".types", + "SelfServiceProfileSsoTicketConnectionOptions": ".types", + "SelfServiceProfileSsoTicketDomainAliasesConfig": ".types", + "SelfServiceProfileSsoTicketDomainVerificationEnum": ".types", + "SelfServiceProfileSsoTicketEnabledFeatures": ".types", + "SelfServiceProfileSsoTicketEnabledOrganization": ".types", + "SelfServiceProfileSsoTicketGoogleWorkspaceConfig": ".types", + "SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum": ".types", + "SelfServiceProfileSsoTicketIdpInitiatedOptions": ".types", + "SelfServiceProfileSsoTicketProvisioningConfig": ".types", + "SelfServiceProfileSsoTicketProvisioningScopeEnum": ".types", + "SelfServiceProfileUserAttribute": ".types", + "SelfServiceProfileUserAttributes": ".types", + "ServiceUnavailableError": ".errors", + "SessionActorClaimValue": ".types", + "SessionActorMetadata": ".types", + "SessionAuthenticationSignal": ".types", + "SessionAuthenticationSignals": ".types", + "SessionClientMetadata": ".types", + "SessionCookieMetadata": ".types", + "SessionCookieMetadataModeEnum": ".types", + "SessionCookieModeEnum": ".types", + "SessionCookieSchema": ".types", + "SessionDate": ".types", + "SessionDeviceMetadata": ".types", + "SessionIp": ".types", + "SessionMetadata": ".types", + "SessionResponseContent": ".types", + "SetCustomSigningKeysResponseContent": ".types", + "SetEmailTemplateResponseContent": ".types", + "SetGuardianFactorDuoSettingsResponseContent": ".types", + "SetGuardianFactorPhoneMessageTypesResponseContent": ".types", + "SetGuardianFactorPhoneTemplatesResponseContent": ".types", + "SetGuardianFactorResponseContent": ".types", + "SetGuardianFactorSmsTemplatesResponseContent": ".types", + "SetGuardianFactorsProviderPhoneResponseContent": ".types", + "SetGuardianFactorsProviderPhoneTwilioResponseContent": ".types", + "SetGuardianFactorsProviderPushNotificationApnsResponseContent": ".types", + "SetGuardianFactorsProviderPushNotificationFcmResponseContent": ".types", + "SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent": ".types", + "SetGuardianFactorsProviderPushNotificationResponseContent": ".types", + "SetGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", + "SetGuardianFactorsProviderSmsResponseContent": ".types", + "SetGuardianFactorsProviderSmsTwilioResponseContent": ".types", + "SetGuardianPoliciesRequestContent": ".types", + "SetGuardianPoliciesResponseContent": ".types", + "SetNetworkAclsResponseContent": ".types", + "SetPartialsRequestContent": ".types", + "SetRulesConfigResponseContent": ".types", + "SetSelfServiceProfileCustomTextRequestContent": ".types", + "SetSelfServiceProfileCustomTextResponseContent": ".types", + "SetUserAuthenticationMethodResponseContent": ".types", + "SetUserAuthenticationMethods": ".types", + "SetUserAuthenticationMethodsRequestContent": ".types", + "SetsCustomTextsByLanguageRequestContent": ".types", + "SigningAlgorithmEnum": ".types", + "SigningKeys": ".types", + "SigningKeysDate": ".types", + "SignupSchema": ".types", + "SignupStatusEnum": ".types", + "SignupVerification": ".types", + "SignupVerified": ".types", + "SupportedLocales": ".types", + "SuspiciousIpThrottlingAllowlist": ".types", + "SuspiciousIpThrottlingAllowlistItem": ".types", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage": ".types", + "SuspiciousIpThrottlingPreLoginStage": ".types", + "SuspiciousIpThrottlingPreUserRegistrationStage": ".types", + "SuspiciousIpThrottlingShieldsEnum": ".types", + "SuspiciousIpThrottlingStage": ".types", + "SynchronizeGroupsEnum": ".types", + "SynchronizedGroupPayload": ".types", + "TenantOidcLogoutSettings": ".types", + "TenantSettingsCountryCodes": ".types", + "TenantSettingsCountryCodesMode": ".types", + "TenantSettingsCountryCodesModeResponse": ".types", + "TenantSettingsCountryCodesResponse": ".types", + "TenantSettingsDeviceFlow": ".types", + "TenantSettingsDeviceFlowCharset": ".types", + "TenantSettingsDynamicClientRegistrationSecurityMode": ".types", + "TenantSettingsErrorPage": ".types", + "TenantSettingsFlags": ".types", + "TenantSettingsGuardianPage": ".types", + "TenantSettingsMtls": ".types", + "TenantSettingsNullableSecurityHeaders": ".types", + "TenantSettingsPasswordPage": ".types", + "TenantSettingsResourceParameterProfile": ".types", + "TenantSettingsSessions": ".types", + "TenantSettingsSupportedLocalesEnum": ".types", + "TestActionPayload": ".types", + "TestActionResponseContent": ".types", + "TestActionResultPayload": ".types", + "TestCustomDomainResponseContent": ".types", + "TestEventDataContent": ".types", + "ThirdPartyClientAccessConfig": ".types", + "TokenExchangeProfileResponseContent": ".types", + "TokenExchangeProfileTypeEnum": ".types", + "TokenProvider": ".token_provider", + "TokenQuota": ".types", + "TokenQuotaClientCredentials": ".types", + "TokenQuotaConfiguration": ".types", + "TokenVaultPrivilegedAccessGrant": ".types", + "TokenVaultPrivilegedAccessIpAllowlistEntry": ".types", + "TooManyRequestsError": ".errors", + "TooManyRequestsErrorBody": ".types", + "TooManyRequestsErrorBodyError": ".types", + "TooManyRequestsSchema": ".types", + "TooManyRequestsSchemaError": ".types", + "TwilioProviderConfiguration": ".types", + "TwilioProviderCredentials": ".types", + "TwilioProviderDeliveryMethodEnum": ".types", + "UnauthorizedError": ".errors", + "UnauthorizedSchema": ".types", + "UnauthorizedSchemaError": ".types", + "UniversalLoginExperienceEnum": ".types", + "UpdateActionBindingsResponseContent": ".types", + "UpdateActionModuleResponseContent": ".types", + "UpdateActionResponseContent": ".types", + "UpdateAculResponseContent": ".types", + "UpdateAttackProtectionCaptchaResponseContent": ".types", + "UpdateBotDetectionSettingsResponseContent": ".types", + "UpdateBrandingColors": ".types", + "UpdateBrandingFont": ".types", + "UpdateBrandingPageBackground": ".types", + "UpdateBrandingPhoneProviderResponseContent": ".types", + "UpdateBrandingResponseContent": ".types", + "UpdateBrandingThemeResponseContent": ".types", + "UpdateBreachedPasswordDetectionSettingsResponseContent": ".types", + "UpdateBruteForceSettingsResponseContent": ".types", + "UpdateClientGrantResponseContent": ".types", + "UpdateClientResponseContent": ".types", + "UpdateConnectionOptions": ".types", + "UpdateConnectionProfileResponseContent": ".types", + "UpdateConnectionRequestContentAd": ".types", + "UpdateConnectionRequestContentAdfs": ".types", + "UpdateConnectionRequestContentAmazon": ".types", + "UpdateConnectionRequestContentApple": ".types", + "UpdateConnectionRequestContentAuth0": ".types", + "UpdateConnectionRequestContentAuth0Oidc": ".types", + "UpdateConnectionRequestContentAzureAd": ".types", + "UpdateConnectionRequestContentBaidu": ".types", + "UpdateConnectionRequestContentBitbucket": ".types", + "UpdateConnectionRequestContentBitly": ".types", + "UpdateConnectionRequestContentBox": ".types", + "UpdateConnectionRequestContentCustom": ".types", + "UpdateConnectionRequestContentDaccount": ".types", + "UpdateConnectionRequestContentDropbox": ".types", + "UpdateConnectionRequestContentDwolla": ".types", + "UpdateConnectionRequestContentEmail": ".types", + "UpdateConnectionRequestContentEvernote": ".types", + "UpdateConnectionRequestContentEvernoteSandbox": ".types", + "UpdateConnectionRequestContentExact": ".types", + "UpdateConnectionRequestContentFacebook": ".types", + "UpdateConnectionRequestContentFitbit": ".types", + "UpdateConnectionRequestContentGitHub": ".types", + "UpdateConnectionRequestContentGoogleApps": ".types", + "UpdateConnectionRequestContentGoogleOAuth2": ".types", + "UpdateConnectionRequestContentInstagram": ".types", + "UpdateConnectionRequestContentIp": ".types", + "UpdateConnectionRequestContentLine": ".types", + "UpdateConnectionRequestContentLinkedin": ".types", + "UpdateConnectionRequestContentOAuth1": ".types", + "UpdateConnectionRequestContentOAuth2": ".types", + "UpdateConnectionRequestContentOffice365": ".types", + "UpdateConnectionRequestContentOidc": ".types", + "UpdateConnectionRequestContentOkta": ".types", + "UpdateConnectionRequestContentPaypal": ".types", + "UpdateConnectionRequestContentPaypalSandbox": ".types", + "UpdateConnectionRequestContentPingFederate": ".types", + "UpdateConnectionRequestContentPlanningCenter": ".types", + "UpdateConnectionRequestContentSalesforce": ".types", + "UpdateConnectionRequestContentSalesforceCommunity": ".types", + "UpdateConnectionRequestContentSalesforceSandbox": ".types", + "UpdateConnectionRequestContentSaml": ".types", + "UpdateConnectionRequestContentSharepoint": ".types", + "UpdateConnectionRequestContentShop": ".types", + "UpdateConnectionRequestContentShopify": ".types", + "UpdateConnectionRequestContentSms": ".types", + "UpdateConnectionRequestContentSoundcloud": ".types", + "UpdateConnectionRequestContentThirtySevenSignals": ".types", + "UpdateConnectionRequestContentTwitter": ".types", + "UpdateConnectionRequestContentUntappd": ".types", + "UpdateConnectionRequestContentVkontakte": ".types", + "UpdateConnectionRequestContentWeibo": ".types", + "UpdateConnectionRequestContentWindowsLive": ".types", + "UpdateConnectionRequestContentWordpress": ".types", + "UpdateConnectionRequestContentYahoo": ".types", + "UpdateConnectionRequestContentYandex": ".types", + "UpdateConnectionResponseContent": ".types", + "UpdateCrossAppAccessResourceApp": ".types", + "UpdateCustomDomainResponseContent": ".types", + "UpdateDefaultCanonicalDomainResponseContent": ".types", + "UpdateDefaultCustomDomainResponseContent": ".types", + "UpdateDefaultDomainResponseContent": ".types", + "UpdateDirectoryProvisioningRequestContent": ".types", + "UpdateDirectoryProvisioningResponseContent": ".types", + "UpdateEmailProviderResponseContent": ".types", + "UpdateEmailTemplateResponseContent": ".types", + "UpdateEnabledClientConnectionsRequestContent": ".types", + "UpdateEnabledClientConnectionsRequestContentItem": ".types", + "UpdateEventStreamResponseContent": ".types", + "UpdateFlowResponseContent": ".types", + "UpdateFlowsVaultConnectionResponseContent": ".types", + "UpdateFlowsVaultConnectionSetup": ".types", + "UpdateFormResponseContent": ".types", + "UpdateGuardianFactorDuoSettingsResponseContent": ".types", + "UpdateGuardianFactorsProviderPushNotificationApnsResponseContent": ".types", + "UpdateGuardianFactorsProviderPushNotificationFcmResponseContent": ".types", + "UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent": ".types", + "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", + "UpdateHookResponseContent": ".types", + "UpdateHookSecretRequestContent": ".types", + "UpdateIdentityAssertionAuthorizationGrant": ".types", + "UpdateLogStreamResponseContent": ".types", + "UpdateNetworkAclResponseContent": ".types", + "UpdateOrganizationAllConnectionResponseContent": ".types", + "UpdateOrganizationClientResponseContent": ".types", + "UpdateOrganizationConnectionResponseContent": ".types", + "UpdateOrganizationDiscoveryDomainResponseContent": ".types", + "UpdateOrganizationResponseContent": ".types", + "UpdatePhoneTemplateResponseContent": ".types", + "UpdateRateLimitPolicyResponseContent": ".types", + "UpdateRefreshTokenResponseContent": ".types", + "UpdateResourceServerResponseContent": ".types", + "UpdateRiskAssessmentsSettingsNewDeviceResponseContent": ".types", + "UpdateRiskAssessmentsSettingsResponseContent": ".types", + "UpdateRoleResponseContent": ".types", + "UpdateRuleResponseContent": ".types", + "UpdateScimConfigurationResponseContent": ".types", + "UpdateSelfServiceProfileResponseContent": ".types", + "UpdateSessionResponseContent": ".types", + "UpdateSettingsResponseContent": ".types", + "UpdateSuspiciousIpThrottlingSettingsResponseContent": ".types", + "UpdateTenantSettingsResponseContent": ".types", + "UpdateTokenQuota": ".types", + "UpdateUniversalLoginTemplateRequestContent": ".types", + "UpdateUniversalLoginTemplateRequestContentTemplate": ".types", + "UpdateUserAttributeProfileResponseContent": ".types", + "UpdateUserAuthenticationMethodResponseContent": ".types", + "UpdateUserResponseContent": ".types", + "UpdateVerifiableCredentialTemplateResponseContent": ".types", + "UserAppMetadataSchema": ".types", + "UserAttributeProfile": ".types", + "UserAttributeProfileId": ".types", + "UserAttributeProfileName": ".types", + "UserAttributeProfileOidcMapping": ".types", + "UserAttributeProfilePatchUserId": ".types", + "UserAttributeProfileSamlMapping": ".types", + "UserAttributeProfileStrategyOverrides": ".types", + "UserAttributeProfileStrategyOverridesMapping": ".types", + "UserAttributeProfileStrategyOverridesUserId": ".types", + "UserAttributeProfileStrategyOverridesUserIdMapping": ".types", + "UserAttributeProfileTemplate": ".types", + "UserAttributeProfileTemplateItem": ".types", + "UserAttributeProfileUserAttributeAdditionalProperties": ".types", + "UserAttributeProfileUserAttributes": ".types", + "UserAttributeProfileUserId": ".types", + "UserAttributeProfileUserIdOidcMappingEnum": ".types", + "UserAttributeProfileUserIdOidcStrategyOverrideMapping": ".types", + "UserAttributeProfileUserIdSamlMapping": ".types", + "UserAuthenticationMethod": ".types", + "UserAuthenticationMethodProperties": ".types", + "UserAuthenticationMethodPropertiesEnum": ".types", + "UserBlockIdentifier": ".types", + "UserEffectivePermissionResponseContent": ".types", + "UserEffectivePermissionRoleSourceEnum": ".types", + "UserEffectivePermissionRoleSourceResponseContent": ".types", + "UserEffectivePermissionSourceEnum": ".types", + "UserEffectiveRole": ".types", + "UserEffectiveRoleSource": ".types", + "UserEnrollmentAuthMethodEnum": ".types", + "UserEnrollmentStatusEnum": ".types", + "UserGrant": ".types", + "UserGroupsResponseSchema": ".types", + "UserId": ".types", + "UserIdentity": ".types", + "UserIdentityProviderEnum": ".types", + "UserIdentitySchema": ".types", + "UserListLogOffsetPaginatedResponseContent": ".types", + "UserMetadata": ".types", + "UserMetadataSchema": ".types", + "UserMultifactorProviderEnum": ".types", + "UserPermissionSchema": ".types", + "UserProfileData": ".types", + "UserResponseSchema": ".types", + "UsernameAllowedTypes": ".types", + "UsernameAttribute": ".types", + "UsernameAttributeIdentifier": ".types", + "UsernameValidation": ".types", + "UsersEnrollment": ".types", + "VerifiableCredentialTemplateResponse": ".types", + "VerificationMethodEnum": ".types", + "VerifyCustomDomainResponseContent": ".types", + "VerifyEmailTicketResponseContent": ".types", + "X509CertificateCredential": ".types", + "X509CertificateCredentialTypeEnum": ".types", + "XssProtectionConfig": ".types", + "XssProtectionMode": ".types", + "__version__": ".version", + "actions": ".actions", + "anomaly": ".anomaly", + "attack_protection": ".attack_protection", + "branding": ".branding", + "client_grants": ".client_grants", + "clients": ".clients", + "connection_profiles": ".connection_profiles", + "connections": ".connections", + "custom_domains": ".custom_domains", + "device_credentials": ".device_credentials", + "email_templates": ".email_templates", + "emails": ".emails", + "event_streams": ".event_streams", + "events": ".events", + "flows": ".flows", + "forms": ".forms", + "groups": ".groups", + "guardian": ".guardian", + "hooks": ".hooks", + "jobs": ".jobs", + "keys": ".keys", + "log_streams": ".log_streams", + "logs": ".logs", + "network_acls": ".network_acls", + "organizations": ".organizations", + "prompts": ".prompts", + "rate_limit_policies": ".rate_limit_policies", + "refresh_tokens": ".refresh_tokens", + "resource_servers": ".resource_servers", + "risk_assessments": ".risk_assessments", + "roles": ".roles", + "rules": ".rules", + "rules_configs": ".rules_configs", + "self_service_profiles": ".self_service_profiles", + "sessions": ".sessions", + "stats": ".stats", + "supplemental_signals": ".supplemental_signals", + "tenants": ".tenants", + "tickets": ".tickets", + "token_exchange_profiles": ".token_exchange_profiles", + "user_attribute_profiles": ".user_attribute_profiles", + "user_blocks": ".user_blocks", + "user_grants": ".user_grants", + "users": ".users", + "verifiable_credentials": ".verifiable_credentials", + } + + + def __getattr__(attr_name: str) -> typing.Any: + module_name = _dynamic_imports.get(attr_name) + if module_name is None: + raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}") + try: + module = import_module(module_name, __package__) + if module_name == f".{attr_name}": + return module + else: + return getattr(module, attr_name) + except ImportError as e: + raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e + except AttributeError as e: + raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e + + + def __dir__(): + lazy_attrs = list(_dynamic_imports.keys()) + return sorted(lazy_attrs) + + + __all__ = [ + "Action", + "ActionBase", + "ActionBinding", + "ActionBindingRef", + "ActionBindingRefTypeEnum", + "ActionBindingTypeEnum", + "ActionBindingWithRef", + "ActionBuildStatusEnum", + "ActionDeployedVersion", + "ActionError", + "ActionExecutionResult", + "ActionExecutionStatusEnum", + "ActionModuleAction", + "ActionModuleDependency", + "ActionModuleDependencyRequest", + "ActionModuleListItem", + "ActionModuleReference", + "ActionModuleSecret", + "ActionModuleSecretRequest", + "ActionModuleVersion", + "ActionModuleVersionReference", + "ActionSecretRequest", + "ActionSecretResponse", + "ActionTrigger", + "ActionTriggerCompatibleTrigger", + "ActionTriggerTypeEnum", + "ActionVersion", + "ActionVersionBuildStatusEnum", + "ActionVersionDependency", + "AculClientFilter", + "AculClientFilterById", + "AculClientFilterByMetadata", + "AculClientMetadata", + "AculConfigs", + "AculConfigsItem", + "AculContextConfiguration", + "AculContextConfigurationItem", + "AculContextEnum", + "AculDomainFilter", + "AculDomainFilterById", + "AculDomainFilterByMetadata", + "AculDomainMetadata", + "AculFilters", + "AculHeadTag", + "AculHeadTagAttributes", + "AculHeadTagContent", + "AculMatchTypeEnum", + "AculOrganizationFilter", + "AculOrganizationFilterById", + "AculOrganizationFilterByMetadata", + "AculOrganizationMetadata", + "AculRenderingModeEnum", + "AddOrganizationConnectionResponseContent", + "AnomalyIpFormat", + "AppMetadata", + "AssessorsTypeEnum", + "AssociateOrganizationClientGrantResponseContent", + "AsyncApprovalNotificationsChannelsEnum", + "AsyncAuth0", + "AsyncManagementClient", + "AsyncTokenProvider", + "AttackProtectionCaptchaArkoseResponseContent", + "AttackProtectionCaptchaAuthChallengeRequest", + "AttackProtectionCaptchaAuthChallengeResponseContent", + "AttackProtectionCaptchaFriendlyCaptchaResponseContent", + "AttackProtectionCaptchaHcaptchaResponseContent", + "AttackProtectionCaptchaProviderId", + "AttackProtectionCaptchaRecaptchaEnterpriseResponseContent", + "AttackProtectionCaptchaRecaptchaV2ResponseContent", + "AttackProtectionCaptchaSimpleCaptchaResponseContent", + "AttackProtectionUpdateCaptchaArkose", + "AttackProtectionUpdateCaptchaFriendlyCaptcha", + "AttackProtectionUpdateCaptchaHcaptcha", + "AttackProtectionUpdateCaptchaRecaptchaEnterprise", + "AttackProtectionUpdateCaptchaRecaptchaV2", + "Auth0", + "Auth0Environment", + "AuthenticationMethodTypeEnum", + "AuthenticationTypeEnum", + "BadRequestError", + "BadRequestSchema", + "BadRequestSchemaError", + "BotDetectionAllowlist", + "BotDetectionChallengePolicyPasswordFlowEnum", + "BotDetectionChallengePolicyPasswordResetFlowEnum", + "BotDetectionChallengePolicyPasswordlessFlowEnum", + "BotDetectionCidrBlock", + "BotDetectionIPv4", + "BotDetectionIPv6", + "BotDetectionIPv6CidrBlock", + "BotDetectionIpAddressOrCidrBlock", + "BotDetectionLevelEnum", + "BotDetectionMonitoringModeEnabled", + "BrandingColors", + "BrandingFont", + "BrandingPageBackground", + "BrandingThemeBorders", + "BrandingThemeBordersButtonsStyleEnum", + "BrandingThemeBordersInputsStyleEnum", + "BrandingThemeColors", + "BrandingThemeColorsCaptchaWidgetThemeEnum", + "BrandingThemeFontBodyText", + "BrandingThemeFontButtonsText", + "BrandingThemeFontInputLabels", + "BrandingThemeFontLinks", + "BrandingThemeFontLinksStyleEnum", + "BrandingThemeFontSubtitle", + "BrandingThemeFontTitle", + "BrandingThemeFonts", + "BrandingThemeIdentifiers", + "BrandingThemeIdentifiersLoginDisplayEnum", + "BrandingThemeIdentifiersPhoneDisplay", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum", + "BrandingThemePageBackground", + "BrandingThemePageBackgroundPageLayoutEnum", + "BrandingThemeWidget", + "BrandingThemeWidgetHeaderTextAlignmentEnum", + "BrandingThemeWidgetLogoPositionEnum", + "BrandingThemeWidgetSocialButtonsLayoutEnum", + "BreachedPasswordDetectionAdminNotificationFrequencyEnum", + "BreachedPasswordDetectionMethodEnum", + "BreachedPasswordDetectionPreChangePasswordShieldsEnum", + "BreachedPasswordDetectionPreChangePasswordStage", + "BreachedPasswordDetectionPreUserRegistrationShieldsEnum", + "BreachedPasswordDetectionPreUserRegistrationStage", + "BreachedPasswordDetectionShieldsEnum", + "BreachedPasswordDetectionStage", + "BruteForceProtectionModeEnum", + "BruteForceProtectionShieldsEnum", + "BulkUpdateAculResponseContent", + "CertificateSubjectDnCredential", + "CertificateSubjectDnCredentialTypeEnum", + "ChangePasswordTicketIdentity", + "ChangePasswordTicketResponseContent", + "CimdMappedClientAuthenticationMethods", + "CimdMappedClientAuthenticationMethodsPrivateKeyJwt", + "CimdMappedClientFields", + "CimdMappedPrivateKeyJwtCredential", + "CimdValidationResult", + "Client", + "ClientAddonAws", + "ClientAddonAzureBlob", + "ClientAddonAzureSb", + "ClientAddonBox", + "ClientAddonCloudBees", + "ClientAddonConcur", + "ClientAddonDropbox", + "ClientAddonEchoSign", + "ClientAddonEgnyte", + "ClientAddonFirebase", + "ClientAddonLayer", + "ClientAddonMscrm", + "ClientAddonNewRelic", + "ClientAddonOag", + "ClientAddonOffice365", + "ClientAddonRms", + "ClientAddonSalesforce", + "ClientAddonSalesforceApi", + "ClientAddonSalesforceSandboxApi", + "ClientAddonSaml", + "ClientAddonSamlMapping", + "ClientAddonSapapi", + "ClientAddonSentry", + "ClientAddonSharePoint", + "ClientAddonSharePointExternalUrl", + "ClientAddonSlack", + "ClientAddonSpringCm", + "ClientAddonSsoIntegration", + "ClientAddonWams", + "ClientAddonWsFed", + "ClientAddonZendesk", + "ClientAddonZoom", + "ClientAddons", + "ClientAppTypeEnum", + "ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration", + "ClientAsyncApprovalNotificationsChannelsApiPostConfiguration", + "ClientAuthenticationMethod", + "ClientAuthenticationMethodPrivateKeyJwt", + "ClientAuthenticationMethodPrivateKeyJwtCredentials", + "ClientAuthenticationMethodSelfSignedTlsClientAuth", + "ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials", + "ClientAuthenticationMethodTlsClientAuth", + "ClientAuthenticationMethodTlsClientAuthCredentials", + "ClientComplianceLevelEnum", + "ClientCreateAuthenticationMethod", + "ClientCreateAuthenticationMethodPrivateKeyJwt", + "ClientCreateAuthenticationMethodPrivateKeyJwtCredentials", + "ClientCreateAuthenticationMethodTlsClientAuth", + "ClientCreateAuthenticationMethodTlsClientAuthCredentials", + "ClientCredential", + "ClientCredentialAlgorithmEnum", + "ClientCredentialTypeEnum", + "ClientDefaultOrganization", + "ClientDefaultOrganizationFlowsEnum", + "ClientEncryptionKey", + "ClientExternalMetadataCreatedByEnum", + "ClientExternalMetadataTypeEnum", + "ClientGrantAllowAnyOrganizationEnum", + "ClientGrantDefaultForEnum", + "ClientGrantOrganizationNullableUsageEnum", + "ClientGrantOrganizationUsageEnum", + "ClientGrantResponseContent", + "ClientGrantSubjectTypeEnum", + "ClientJwtConfiguration", + "ClientJwtConfigurationScopes", + "ClientMetadata", + "ClientMobile", + "ClientMobileAndroid", + "ClientMobileiOs", + "ClientMyOrganizationConfigurationAllowedStrategiesEnum", + "ClientMyOrganizationDeletionBehaviorEnum", + "ClientMyOrganizationPatchConfiguration", + "ClientMyOrganizationPostConfiguration", + "ClientMyOrganizationResponseConfiguration", + "ClientOidcBackchannelLogoutInitiators", + "ClientOidcBackchannelLogoutInitiatorsEnum", + "ClientOidcBackchannelLogoutInitiatorsModeEnum", + "ClientOidcBackchannelLogoutSessionMetadata", + "ClientOidcBackchannelLogoutSettings", + "ClientOrganizationDiscoveryEnum", + "ClientOrganizationRequireBehaviorEnum", + "ClientOrganizationRequireBehaviorPatchEnum", + "ClientOrganizationUsageEnum", + "ClientOrganizationUsagePatchEnum", + "ClientRedirectionPolicyEnum", + "ClientRefreshTokenConfiguration", + "ClientRefreshTokenPolicy", + "ClientSessionTransferAllowedAuthenticationMethodsEnum", + "ClientSessionTransferConfiguration", + "ClientSessionTransferDelegationConfiguration", + "ClientSessionTransferDelegationDeviceBindingEnum", + "ClientSessionTransferDeviceBindingEnum", + "ClientSignedRequestObjectWithCredentialId", + "ClientSignedRequestObjectWithPublicKey", + "ClientSigningKey", + "ClientSigningKeys", + "ClientThirdPartySecurityModeEnum", + "ClientTokenEndpointAuthMethodEnum", + "ClientTokenEndpointAuthMethodOrNullEnum", + "ClientTokenExchangeConfiguration", + "ClientTokenExchangeConfigurationOrNull", + "ClientTokenExchangeTypeEnum", + "ClientTokenVaultPrivilegedAccessWithCredentialId", + "ClientTokenVaultPrivilegedAccessWithPublicKey", + "ConflictError", + "ConflictSchema", + "ConflictSchemaError", + "ConnectedAccount", + "ConnectedAccountAccessTypeEnum", + "ConnectionAccessTokenUrloAuth1", + "ConnectionAcrValuesSupported", + "ConnectionAdminAccessTokenExpiresInGoogleApps", + "ConnectionAdminAccessTokenGoogleApps", + "ConnectionAdminRefreshTokenGoogleApps", + "ConnectionAgentIpad", + "ConnectionAgentModeAd", + "ConnectionAgentVersionAd", + "ConnectionAllowedAudiencesGoogleOAuth2", + "ConnectionApiBehaviorEnum", + "ConnectionApiEnableGroups", + "ConnectionApiEnableGroupsGoogleApps", + "ConnectionApiEnableUsers", + "ConnectionApiEnableUsersGoogleApps", + "ConnectionAppDomainAzureAd", + "ConnectionAssertionDecryptionAlgorithmProfileEnum", + "ConnectionAssertionDecryptionSettings", + "ConnectionAttributeMapAttributes", + "ConnectionAttributeMapOidc", + "ConnectionAttributeMapOkta", + "ConnectionAttributeMapUserinfoScope", + "ConnectionAttributes", + "ConnectionAuthParamsAdditionalPropertiesOAuth2", + "ConnectionAuthParamsEmail", + "ConnectionAuthParamsMap", + "ConnectionAuthParamsOAuth2", + "ConnectionAuthenticationMethods", + "ConnectionAuthenticationPurpose", + "ConnectionAuthorizationEndpoint", + "ConnectionBaseUrlExact", + "ConnectionBruteForceProtection", + "ConnectionCalculatedThumbprintSaml", + "ConnectionCertsAd", + "ConnectionClaimTypesSupported", + "ConnectionClaimsLocalesSupported", + "ConnectionClaimsParameterSupported", + "ConnectionClaimsSupported", + "ConnectionClientId", + "ConnectionClientIdAmazon", + "ConnectionClientIdAzureAd", + "ConnectionClientIdBitbucket", + "ConnectionClientIdExact", + "ConnectionClientIdFacebook", + "ConnectionClientIdGoogleApps", + "ConnectionClientIdGoogleOAuth2", + "ConnectionClientIdLine", + "ConnectionClientIdLinkedin", + "ConnectionClientIdOAuth1", + "ConnectionClientIdOAuth2", + "ConnectionClientIdOidc", + "ConnectionClientIdPaypal", + "ConnectionClientIdSalesforce", + "ConnectionClientIdWindowsLive", + "ConnectionClientProtocolSaml", + "ConnectionClientSecret", + "ConnectionClientSecretAmazon", + "ConnectionClientSecretAzureAd", + "ConnectionClientSecretBitbucket", + "ConnectionClientSecretExact", + "ConnectionClientSecretFacebook", + "ConnectionClientSecretGoogleApps", + "ConnectionClientSecretGoogleOAuth2", + "ConnectionClientSecretLine", + "ConnectionClientSecretLinkedin", + "ConnectionClientSecretOAuth1", + "ConnectionClientSecretOAuth2", + "ConnectionClientSecretOidc", + "ConnectionClientSecretPaypal", + "ConnectionClientSecretSalesforce", + "ConnectionClientSecretWindowsLive", + "ConnectionCommon", + "ConnectionCommunityBaseUrlSalesforce", + "ConnectionConfiguration", + "ConnectionConnectedAccountsPurpose", + "ConnectionConnectedAccountsPurposeXaa", + "ConnectionConnectionSettings", + "ConnectionConnectionSettingsPkceEnum", + "ConnectionCrossAppAccessResourceApp", + "ConnectionCrossAppAccessResourceAppStatusEnum", + "ConnectionCustomHeadersOAuth2", + "ConnectionCustomScripts", + "ConnectionDebugSaml", + "ConnectionDecryptionKeySaml", + "ConnectionDecryptionKeySamlCert", + "ConnectionDestinationUrlSaml", + "ConnectionDigestAlgorithmEnumSaml", + "ConnectionDigestAlgorithmSaml", + "ConnectionDisableSelfServiceChangePassword", + "ConnectionDisableSignup", + "ConnectionDisableSignupSms", + "ConnectionDiscoveryUrl", + "ConnectionDisplayName", + "ConnectionDisplayValuesSupported", + "ConnectionDomainAliases", + "ConnectionDomainAliasesAd", + "ConnectionDomainAliasesAzureAd", + "ConnectionDomainAliasesItemsOne", + "ConnectionDomainAliasesSaml", + "ConnectionDomainGoogleApps", + "ConnectionDomainOkta", + "ConnectionDpopSigningAlgEnum", + "ConnectionDpopSigningAlgValuesSupported", + "ConnectionEmailBodyEmail", + "ConnectionEmailEmail", + "ConnectionEmailEmailSyntax", + "ConnectionEmailFromEmail", + "ConnectionEmailOtpAuthenticationMethod", + "ConnectionEmailSubjectEmail", + "ConnectionEnableScriptContext", + "ConnectionEnabledClient", + "ConnectionEnabledClients", + "ConnectionEnabledDatabaseCustomization", + "ConnectionEndSessionEndpoint", + "ConnectionEntityIdSaml", + "ConnectionExtAdmin", + "ConnectionExtAgreedTerms", + "ConnectionExtAgreedTermsGoogleApps", + "ConnectionExtAssignedPlans", + "ConnectionExtGroups", + "ConnectionExtGroupsAzureAd", + "ConnectionExtGroupsGoogleApps", + "ConnectionExtIsAdminGoogleApps", + "ConnectionExtIsSuspended", + "ConnectionExtIsSuspendedGoogleApps", + "ConnectionExtProfile", + "ConnectionFieldsMap", + "ConnectionFieldsMapSaml", + "ConnectionFieldsMapSamlValue", + "ConnectionForList", + "ConnectionForOrganization", + "ConnectionForwardReqInfoSms", + "ConnectionFreeformScopesAmazon", + "ConnectionFreeformScopesGoogleOAuth2", + "ConnectionFreeformScopesLinkedin", + "ConnectionFreeformScopesPaypal", + "ConnectionFreeformScopesSalesforce", + "ConnectionFreeformScopesWindowsLive", + "ConnectionFromSms", + "ConnectionGatewayAuthentication", + "ConnectionGatewayAuthenticationAudienceSms", + "ConnectionGatewayAuthenticationMethodSms", + "ConnectionGatewayAuthenticationSms", + "ConnectionGatewayAuthenticationSubjectSms", + "ConnectionGatewayUrlSms", + "ConnectionGlobalTokenRevocationJwtIssSaml", + "ConnectionGlobalTokenRevocationJwtSubSaml", + "ConnectionGrantTypesSupported", + "ConnectionHandleLoginFromSocialGoogleApps", + "ConnectionHttpsUrlWithHttpFallback", + "ConnectionHttpsUrlWithHttpFallback2048", + "ConnectionHttpsUrlWithHttpFallback255", + "ConnectionIconUrl", + "ConnectionIconUrlAdfs", + "ConnectionIconUrlAzureAd", + "ConnectionIconUrlGoogleApps", + "ConnectionIconUrlGoogleOAuth2", + "ConnectionIconUrlSaml", + "ConnectionId", + "ConnectionIdTokenEncryptionAlgValuesSupported", + "ConnectionIdTokenEncryptionEncValuesSupported", + "ConnectionIdTokenSessionExpirySupported", + "ConnectionIdTokenSignedResponseAlgEnum", + "ConnectionIdTokenSignedResponseAlgs", + "ConnectionIdTokenSigningAlgValuesSupported", + "ConnectionIdentifierPrecedence", + "ConnectionIdentifierPrecedenceEnum", + "ConnectionIdentityApiAzureAd", + "ConnectionIdentityApiEnumAzureAd", + "ConnectionIdentityProviderEnum", + "ConnectionImportMode", + "ConnectionIpsAd", + "ConnectionIsDomainConnection", + "ConnectionIssuer", + "ConnectionJwksUri", + "ConnectionKey", + "ConnectionKeyUseEnum", + "ConnectionMappingModeEnumOidc", + "ConnectionMappingModeEnumOkta", + "ConnectionMaxGroupsToRetrieve", + "ConnectionMessagingServiceSidSms", + "ConnectionMetadataUrlSaml", + "ConnectionMetadataXml", + "ConnectionMetadataXmlAdfs", + "ConnectionMetadataXmlSaml", + "ConnectionMfa", + "ConnectionName", + "ConnectionNamePrefixTemplate", + "ConnectionNonPersistentAttrs", + "ConnectionOpPolicyUri", + "ConnectionOpTosUri", + "ConnectionOptions", + "ConnectionOptionsAd", + "ConnectionOptionsAdfs", + "ConnectionOptionsAmazon", + "ConnectionOptionsApple", + "ConnectionOptionsAuth0", + "ConnectionOptionsAuth0Oidc", + "ConnectionOptionsAzureAd", + "ConnectionOptionsBaidu", + "ConnectionOptionsBitbucket", + "ConnectionOptionsBitly", + "ConnectionOptionsBox", + "ConnectionOptionsClientIdGithub", + "ConnectionOptionsClientIdTwitter", + "ConnectionOptionsClientSecretGithub", + "ConnectionOptionsClientSecretTwitter", + "ConnectionOptionsCommon", + "ConnectionOptionsCommonOidc", + "ConnectionOptionsCommonSaml", + "ConnectionOptionsCustom", + "ConnectionOptionsDaccount", + "ConnectionOptionsDeflateSaml", + "ConnectionOptionsDropbox", + "ConnectionOptionsDwolla", + "ConnectionOptionsEmail", + "ConnectionOptionsEvernote", + "ConnectionOptionsExact", + "ConnectionOptionsFacebook", + "ConnectionOptionsFitbit", + "ConnectionOptionsFreeformScopesGithub", + "ConnectionOptionsGitHub", + "ConnectionOptionsGoogleApps", + "ConnectionOptionsGoogleOAuth2", + "ConnectionOptionsIdpInitiatedClientProtocolEnumSaml", + "ConnectionOptionsIdpinitiatedSaml", + "ConnectionOptionsInstagram", + "ConnectionOptionsIp", + "ConnectionOptionsLine", + "ConnectionOptionsLinkedin", + "ConnectionOptionsOAuth1", + "ConnectionOptionsOAuth1Common", + "ConnectionOptionsOAuth2", + "ConnectionOptionsOAuth2Common", + "ConnectionOptionsOffice365", + "ConnectionOptionsOidc", + "ConnectionOptionsOidcMetadata", + "ConnectionOptionsOkta", + "ConnectionOptionsPaypal", + "ConnectionOptionsPingFederate", + "ConnectionOptionsPlanningCenter", + "ConnectionOptionsProtocolEnumTwitter", + "ConnectionOptionsSalesforce", + "ConnectionOptionsSalesforceCommunity", + "ConnectionOptionsSaml", + "ConnectionOptionsScopeGithub", + "ConnectionOptionsScopeTwitter", + "ConnectionOptionsSharepoint", + "ConnectionOptionsShop", + "ConnectionOptionsShopify", + "ConnectionOptionsSms", + "ConnectionOptionsSoundcloud", + "ConnectionOptionsThirtySevenSignals", + "ConnectionOptionsTwitter", + "ConnectionOptionsUntappd", + "ConnectionOptionsVkontakte", + "ConnectionOptionsWeibo", + "ConnectionOptionsWindowsLive", + "ConnectionOptionsWordpress", + "ConnectionOptionsYahoo", + "ConnectionOptionsYandex", + "ConnectionPasskeyAuthenticationMethod", + "ConnectionPasskeyChallengeUiEnum", + "ConnectionPasskeyOptions", + "ConnectionPasswordAuthenticationMethod", + "ConnectionPasswordComplexityOptions", + "ConnectionPasswordDictionaryOptions", + "ConnectionPasswordHistoryOptions", + "ConnectionPasswordNoPersonalInfoOptions", + "ConnectionPasswordOptions", + "ConnectionPasswordOptionsComplexity", + "ConnectionPasswordOptionsDictionary", + "ConnectionPasswordOptionsHistory", + "ConnectionPasswordOptionsProfileData", + "ConnectionPasswordPolicyEnum", + "ConnectionPhoneOtpAuthenticationMethod", + "ConnectionPingFederateBaseUrl", + "ConnectionPingFederateBaseUrlPingFederate", + "ConnectionProfile", + "ConnectionProfileBitbucket", + "ConnectionProfileConfig", + "ConnectionProfileEnabledFeatures", + "ConnectionProfileId", + "ConnectionProfileName", + "ConnectionProfileOrganization", + "ConnectionProfileOrganizationAssignMembershipOnLoginEnum", + "ConnectionProfileOrganizationShowAsButtonEnum", + "ConnectionProfileStrategyOverride", + "ConnectionProfileStrategyOverrides", + "ConnectionProfileStrategyOverridesConnectionConfig", + "ConnectionProfileStrategyOverridesEnabledFeatures", + "ConnectionProfileTemplate", + "ConnectionProfileTemplateItem", + "ConnectionPropertiesOptions", + "ConnectionProtocolBindingEnumSaml", + "ConnectionProtocolBindingSaml", + "ConnectionProviderEnumSms", + "ConnectionProviderSms", + "ConnectionProvisioningTicketUrl", + "ConnectionPurposes", + "ConnectionRealmFallback", + "ConnectionRealms", + "ConnectionRecipientUrlSaml", + "ConnectionRegistrationEndpoint", + "ConnectionRequestObjectEncryptionAlgValuesSupported", + "ConnectionRequestObjectEncryptionEncValuesSupported", + "ConnectionRequestObjectSigningAlgValuesSupported", + "ConnectionRequestParameterSupported", + "ConnectionRequestTemplateSaml", + "ConnectionRequestTokenUrloAuth1", + "ConnectionRequestUriParameterSupported", + "ConnectionRequireRequestUriRegistration", + "ConnectionRequiresUsername", + "ConnectionResponseCommon", + "ConnectionResponseContentAd", + "ConnectionResponseContentAdStrategy", + "ConnectionResponseContentAdfs", + "ConnectionResponseContentAdfsStrategy", + "ConnectionResponseContentAmazon", + "ConnectionResponseContentAmazonStrategy", + "ConnectionResponseContentApple", + "ConnectionResponseContentAppleStrategy", + "ConnectionResponseContentAuth0", + "ConnectionResponseContentAuth0Oidc", + "ConnectionResponseContentAuth0OidcStrategy", + "ConnectionResponseContentAuth0Strategy", + "ConnectionResponseContentAzureAd", + "ConnectionResponseContentAzureAdStrategy", + "ConnectionResponseContentBaidu", + "ConnectionResponseContentBaiduStrategy", + "ConnectionResponseContentBitbucket", + "ConnectionResponseContentBitbucketStrategy", + "ConnectionResponseContentBitly", + "ConnectionResponseContentBitlyStrategy", + "ConnectionResponseContentBox", + "ConnectionResponseContentBoxStrategy", + "ConnectionResponseContentCustom", + "ConnectionResponseContentCustomStrategy", + "ConnectionResponseContentDaccount", + "ConnectionResponseContentDaccountStrategy", + "ConnectionResponseContentDropbox", + "ConnectionResponseContentDropboxStrategy", + "ConnectionResponseContentDwolla", + "ConnectionResponseContentDwollaStrategy", + "ConnectionResponseContentEmail", + "ConnectionResponseContentEmailStrategy", + "ConnectionResponseContentEvernote", + "ConnectionResponseContentEvernoteSandbox", + "ConnectionResponseContentEvernoteSandboxStrategy", + "ConnectionResponseContentEvernoteStrategy", + "ConnectionResponseContentExact", + "ConnectionResponseContentExactStrategy", + "ConnectionResponseContentFacebook", + "ConnectionResponseContentFacebookStrategy", + "ConnectionResponseContentFitbit", + "ConnectionResponseContentFitbitStrategy", + "ConnectionResponseContentGitHub", + "ConnectionResponseContentGitHubStrategy", + "ConnectionResponseContentGoogleApps", + "ConnectionResponseContentGoogleAppsStrategy", + "ConnectionResponseContentGoogleOAuth2", + "ConnectionResponseContentGoogleOAuth2Strategy", + "ConnectionResponseContentInstagram", + "ConnectionResponseContentInstagramStrategy", + "ConnectionResponseContentIp", + "ConnectionResponseContentIpStrategy", + "ConnectionResponseContentLine", + "ConnectionResponseContentLineStrategy", + "ConnectionResponseContentLinkedin", + "ConnectionResponseContentLinkedinStrategy", + "ConnectionResponseContentOAuth1", + "ConnectionResponseContentOAuth1Strategy", + "ConnectionResponseContentOAuth2", + "ConnectionResponseContentOAuth2Strategy", + "ConnectionResponseContentOffice365", + "ConnectionResponseContentOffice365Strategy", + "ConnectionResponseContentOidc", + "ConnectionResponseContentOidcStrategy", + "ConnectionResponseContentOkta", + "ConnectionResponseContentOktaStrategy", + "ConnectionResponseContentPaypal", + "ConnectionResponseContentPaypalSandbox", + "ConnectionResponseContentPaypalSandboxStrategy", + "ConnectionResponseContentPaypalStrategy", + "ConnectionResponseContentPingFederate", + "ConnectionResponseContentPingFederateStrategy", + "ConnectionResponseContentPlanningCenter", + "ConnectionResponseContentPlanningCenterStrategy", + "ConnectionResponseContentSalesforce", + "ConnectionResponseContentSalesforceCommunity", + "ConnectionResponseContentSalesforceCommunityStrategy", + "ConnectionResponseContentSalesforceSandbox", + "ConnectionResponseContentSalesforceSandboxStrategy", + "ConnectionResponseContentSalesforceStrategy", + "ConnectionResponseContentSaml", + "ConnectionResponseContentSamlStrategy", + "ConnectionResponseContentSharepoint", + "ConnectionResponseContentSharepointStrategy", + "ConnectionResponseContentShop", + "ConnectionResponseContentShopStrategy", + "ConnectionResponseContentShopify", + "ConnectionResponseContentShopifyStrategy", + "ConnectionResponseContentSms", + "ConnectionResponseContentSmsStrategy", + "ConnectionResponseContentSoundcloud", + "ConnectionResponseContentSoundcloudStrategy", + "ConnectionResponseContentThirtySevenSignals", + "ConnectionResponseContentThirtySevenSignalsStrategy", + "ConnectionResponseContentTwitter", + "ConnectionResponseContentTwitterStrategy", + "ConnectionResponseContentUntappd", + "ConnectionResponseContentUntappdStrategy", + "ConnectionResponseContentVkontakte", + "ConnectionResponseContentVkontakteStrategy", + "ConnectionResponseContentWeibo", + "ConnectionResponseContentWeiboStrategy", + "ConnectionResponseContentWindowsLive", + "ConnectionResponseContentWindowsLiveStrategy", + "ConnectionResponseContentWordpress", + "ConnectionResponseContentWordpressStrategy", + "ConnectionResponseContentYahoo", + "ConnectionResponseContentYahooStrategy", + "ConnectionResponseContentYandex", + "ConnectionResponseContentYandexStrategy", + "ConnectionResponseModesSupported", + "ConnectionResponseTypesSupported", + "ConnectionScopeAmazon", + "ConnectionScopeArray", + "ConnectionScopeArrayFacebook", + "ConnectionScopeArrayWindowsLive", + "ConnectionScopeAzureAd", + "ConnectionScopeFacebook", + "ConnectionScopeGoogleApps", + "ConnectionScopeGoogleOAuth2", + "ConnectionScopeItem", + "ConnectionScopeItemGoogleApps", + "ConnectionScopeLinkedin", + "ConnectionScopeOAuth2", + "ConnectionScopeOidc", + "ConnectionScopePaypal", + "ConnectionScopeSalesforce", + "ConnectionScopesSupported", + "ConnectionScriptsOAuth1", + "ConnectionScriptsOAuth2", + "ConnectionSendBackChannelNonce", + "ConnectionServiceDocumentation", + "ConnectionSetUserRootAttributesEnum", + "ConnectionSha1Thumbprint", + "ConnectionShouldTrustEmailVerifiedConnectionEnum", + "ConnectionShowAsButton", + "ConnectionSignInEndpointAd", + "ConnectionSignInEndpointAdfs", + "ConnectionSignInEndpointSaml", + "ConnectionSignOutEndpointSaml", + "ConnectionSignSamlRequestSaml", + "ConnectionSignatureAlgorithmEnumSaml", + "ConnectionSignatureAlgorithmSaml", + "ConnectionSignatureMethodOAuth1", + "ConnectionSigningCertSaml", + "ConnectionSigningCertificateDerSaml", + "ConnectionSigningCertificatePemPingFederate", + "ConnectionSigningCertificatePemSaml", + "ConnectionSigningKeySaml", + "ConnectionSignupBehaviorEnum", + "ConnectionStrategyEnum", + "ConnectionStrategyVersionEnumLinkedin", + "ConnectionStrategyVersionEnumWindowsLive", + "ConnectionSubjectTypesSupported", + "ConnectionTemplateSms", + "ConnectionTemplateSyntaxEnumSms", + "ConnectionTenantDomain", + "ConnectionTenantDomainAd", + "ConnectionTenantDomainAzureAdOne", + "ConnectionTenantDomainGoogleApps", + "ConnectionTenantDomainSaml", + "ConnectionTenantIdAzureAd", + "ConnectionThumbprints", + "ConnectionThumbprintsAd", + "ConnectionThumbprintsSaml", + "ConnectionTokenEndpoint", + "ConnectionTokenEndpointAuthMethodEnum", + "ConnectionTokenEndpointAuthMethodsSupported", + "ConnectionTokenEndpointAuthSigningAlgEnum", + "ConnectionTokenEndpointAuthSigningAlgValuesSupported", + "ConnectionTokenEndpointJwtcaAudFormatEnumOidc", + "ConnectionTotpEmail", + "ConnectionTotpLengthEmail", + "ConnectionTotpLengthPasswordless", + "ConnectionTotpLengthSms", + "ConnectionTotpSms", + "ConnectionTotpTimeStepEmail", + "ConnectionTotpTimeStepPasswordless", + "ConnectionTotpTimeStepSms", + "ConnectionTwilioSidSms", + "ConnectionTwilioTokenSms", + "ConnectionTypeEnumOidc", + "ConnectionTypeEnumOkta", + "ConnectionUiLocalesSupported", + "ConnectionUpstreamAdditionalProperties", + "ConnectionUpstreamAlias", + "ConnectionUpstreamAliasEnum", + "ConnectionUpstreamParams", + "ConnectionUpstreamParamsFacebook", + "ConnectionUpstreamValue", + "ConnectionUseCommonEndpointAzureAd", + "ConnectionUserAuthorizationUrloAuth1", + "ConnectionUserIdAttributeSaml", + "ConnectionUseridAttributeAzureAd", + "ConnectionUseridAttributeEnumAzureAd", + "ConnectionUserinfoEncryptionAlgValuesSupported", + "ConnectionUserinfoEncryptionEncValuesSupported", + "ConnectionUserinfoEndpoint", + "ConnectionUserinfoSigningAlgValuesSupported", + "ConnectionUsernameValidationOptions", + "ConnectionValidationOptions", + "ConnectionWaadProtocol", + "ConnectionWaadProtocolEnumAzureAd", + "ConnectionsDiscoveryUrl", + "ConnectionsMetadata", + "ConnectionsOidcMetadata", + "ContentSecurityPolicyConfig", + "ContentTooLargeError", + "CreateActionModuleResponseContent", + "CreateActionModuleVersionResponseContent", + "CreateActionResponseContent", + "CreateBrandingPhoneProviderResponseContent", + "CreateBrandingThemeResponseContent", + "CreateClientAuthenticationMethodSelfSignedTlsClientAuth", + "CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials", + "CreateClientGrantResponseContent", + "CreateClientResponseContent", + "CreateConnectionCommon", + "CreateConnectionProfileResponseContent", + "CreateConnectionRequestContentAd", + "CreateConnectionRequestContentAdStrategy", + "CreateConnectionRequestContentAdfs", + "CreateConnectionRequestContentAdfsStrategy", + "CreateConnectionRequestContentAmazon", + "CreateConnectionRequestContentAmazonStrategy", + "CreateConnectionRequestContentApple", + "CreateConnectionRequestContentAppleStrategy", + "CreateConnectionRequestContentAuth0", + "CreateConnectionRequestContentAuth0Oidc", + "CreateConnectionRequestContentAuth0OidcStrategy", + "CreateConnectionRequestContentAuth0Strategy", + "CreateConnectionRequestContentAzureAd", + "CreateConnectionRequestContentAzureAdStrategy", + "CreateConnectionRequestContentBaidu", + "CreateConnectionRequestContentBaiduStrategy", + "CreateConnectionRequestContentBitbucket", + "CreateConnectionRequestContentBitbucketStrategy", + "CreateConnectionRequestContentBitly", + "CreateConnectionRequestContentBitlyStrategy", + "CreateConnectionRequestContentBox", + "CreateConnectionRequestContentBoxStrategy", + "CreateConnectionRequestContentCustom", + "CreateConnectionRequestContentCustomStrategy", + "CreateConnectionRequestContentDaccount", + "CreateConnectionRequestContentDaccountStrategy", + "CreateConnectionRequestContentDropbox", + "CreateConnectionRequestContentDropboxStrategy", + "CreateConnectionRequestContentDwolla", + "CreateConnectionRequestContentDwollaStrategy", + "CreateConnectionRequestContentEmail", + "CreateConnectionRequestContentEmailStrategy", + "CreateConnectionRequestContentEvernote", + "CreateConnectionRequestContentEvernoteSandbox", + "CreateConnectionRequestContentEvernoteSandboxStrategy", + "CreateConnectionRequestContentEvernoteStrategy", + "CreateConnectionRequestContentExact", + "CreateConnectionRequestContentExactStrategy", + "CreateConnectionRequestContentFacebook", + "CreateConnectionRequestContentFacebookStrategy", + "CreateConnectionRequestContentFitbit", + "CreateConnectionRequestContentFitbitStrategy", + "CreateConnectionRequestContentGitHub", + "CreateConnectionRequestContentGitHubStrategy", + "CreateConnectionRequestContentGoogleApps", + "CreateConnectionRequestContentGoogleAppsStrategy", + "CreateConnectionRequestContentGoogleOAuth2", + "CreateConnectionRequestContentGoogleOAuth2Strategy", + "CreateConnectionRequestContentInstagram", + "CreateConnectionRequestContentInstagramStrategy", + "CreateConnectionRequestContentIp", + "CreateConnectionRequestContentIpStrategy", + "CreateConnectionRequestContentLine", + "CreateConnectionRequestContentLineStrategy", + "CreateConnectionRequestContentLinkedin", + "CreateConnectionRequestContentLinkedinStrategy", + "CreateConnectionRequestContentOAuth1", + "CreateConnectionRequestContentOAuth1Strategy", + "CreateConnectionRequestContentOAuth2", + "CreateConnectionRequestContentOAuth2Strategy", + "CreateConnectionRequestContentOffice365", + "CreateConnectionRequestContentOffice365Strategy", + "CreateConnectionRequestContentOidc", + "CreateConnectionRequestContentOidcStrategy", + "CreateConnectionRequestContentOkta", + "CreateConnectionRequestContentOktaStrategy", + "CreateConnectionRequestContentPaypal", + "CreateConnectionRequestContentPaypalSandbox", + "CreateConnectionRequestContentPaypalSandboxStrategy", + "CreateConnectionRequestContentPaypalStrategy", + "CreateConnectionRequestContentPingFederate", + "CreateConnectionRequestContentPingFederateStrategy", + "CreateConnectionRequestContentPlanningCenter", + "CreateConnectionRequestContentPlanningCenterStrategy", + "CreateConnectionRequestContentSalesforce", + "CreateConnectionRequestContentSalesforceCommunity", + "CreateConnectionRequestContentSalesforceCommunityStrategy", + "CreateConnectionRequestContentSalesforceSandbox", + "CreateConnectionRequestContentSalesforceSandboxStrategy", + "CreateConnectionRequestContentSalesforceStrategy", + "CreateConnectionRequestContentSaml", + "CreateConnectionRequestContentSamlStrategy", + "CreateConnectionRequestContentSharepoint", + "CreateConnectionRequestContentSharepointStrategy", + "CreateConnectionRequestContentShop", + "CreateConnectionRequestContentShopStrategy", + "CreateConnectionRequestContentShopify", + "CreateConnectionRequestContentShopifyStrategy", + "CreateConnectionRequestContentSms", + "CreateConnectionRequestContentSmsStrategy", + "CreateConnectionRequestContentSoundcloud", + "CreateConnectionRequestContentSoundcloudStrategy", + "CreateConnectionRequestContentThirtySevenSignals", + "CreateConnectionRequestContentThirtySevenSignalsStrategy", + "CreateConnectionRequestContentTwitter", + "CreateConnectionRequestContentTwitterStrategy", + "CreateConnectionRequestContentUntappd", + "CreateConnectionRequestContentUntappdStrategy", + "CreateConnectionRequestContentVkontakte", + "CreateConnectionRequestContentVkontakteStrategy", + "CreateConnectionRequestContentWeibo", + "CreateConnectionRequestContentWeiboStrategy", + "CreateConnectionRequestContentWindowsLive", + "CreateConnectionRequestContentWindowsLiveStrategy", + "CreateConnectionRequestContentWordpress", + "CreateConnectionRequestContentWordpressStrategy", + "CreateConnectionRequestContentYahoo", + "CreateConnectionRequestContentYahooStrategy", + "CreateConnectionRequestContentYandex", + "CreateConnectionRequestContentYandexStrategy", + "CreateConnectionResponseContent", + "CreateCrossAppAccessResourceApp", + "CreateCustomDomainResponseContent", + "CreateDirectoryProvisioningRequestContent", + "CreateDirectoryProvisioningResponseContent", + "CreateDirectorySynchronizationResponseContent", + "CreateEmailProviderResponseContent", + "CreateEmailTemplateResponseContent", + "CreateEncryptionKeyPublicWrappingResponseContent", + "CreateEncryptionKeyResponseContent", + "CreateEncryptionKeyType", + "CreateEventStreamActionRequestContent", + "CreateEventStreamEventBridgeRequestContent", + "CreateEventStreamRedeliveryResponseContent", + "CreateEventStreamResponseContent", + "CreateEventStreamTestEventResponseContent", + "CreateEventStreamWebHookRequestContent", + "CreateExportUsersFields", + "CreateExportUsersResponseContent", + "CreateFlowResponseContent", + "CreateFlowsVaultConnectionActivecampaign", + "CreateFlowsVaultConnectionActivecampaignApiKey", + "CreateFlowsVaultConnectionActivecampaignUninitialized", + "CreateFlowsVaultConnectionAirtable", + "CreateFlowsVaultConnectionAirtableApiKey", + "CreateFlowsVaultConnectionAirtableUninitialized", + "CreateFlowsVaultConnectionAuth0", + "CreateFlowsVaultConnectionAuth0OauthApp", + "CreateFlowsVaultConnectionAuth0Uninitialized", + "CreateFlowsVaultConnectionBigquery", + "CreateFlowsVaultConnectionBigqueryJwt", + "CreateFlowsVaultConnectionBigqueryUninitialized", + "CreateFlowsVaultConnectionClearbit", + "CreateFlowsVaultConnectionClearbitApiKey", + "CreateFlowsVaultConnectionClearbitUninitialized", + "CreateFlowsVaultConnectionDocusign", + "CreateFlowsVaultConnectionDocusignOauthCode", + "CreateFlowsVaultConnectionDocusignUninitialized", + "CreateFlowsVaultConnectionGoogleSheets", + "CreateFlowsVaultConnectionGoogleSheetsOauthCode", + "CreateFlowsVaultConnectionGoogleSheetsUninitialized", + "CreateFlowsVaultConnectionHttp", + "CreateFlowsVaultConnectionHttpApiKey", + "CreateFlowsVaultConnectionHttpBasicAuth", + "CreateFlowsVaultConnectionHttpBearer", + "CreateFlowsVaultConnectionHttpOauthClientCredentials", + "CreateFlowsVaultConnectionHttpUninitialized", + "CreateFlowsVaultConnectionHubspot", + "CreateFlowsVaultConnectionHubspotApiKey", + "CreateFlowsVaultConnectionHubspotOauthCode", + "CreateFlowsVaultConnectionHubspotUninitialized", + "CreateFlowsVaultConnectionJwt", + "CreateFlowsVaultConnectionJwtJwt", + "CreateFlowsVaultConnectionJwtUninitialized", + "CreateFlowsVaultConnectionMailchimp", + "CreateFlowsVaultConnectionMailchimpApiKey", + "CreateFlowsVaultConnectionMailchimpOauthCode", + "CreateFlowsVaultConnectionMailchimpUninitialized", + "CreateFlowsVaultConnectionMailjet", + "CreateFlowsVaultConnectionMailjetApiKey", + "CreateFlowsVaultConnectionMailjetUninitialized", + "CreateFlowsVaultConnectionPipedrive", + "CreateFlowsVaultConnectionPipedriveOauthCode", + "CreateFlowsVaultConnectionPipedriveToken", + "CreateFlowsVaultConnectionPipedriveUninitialized", + "CreateFlowsVaultConnectionRequestContent", + "CreateFlowsVaultConnectionResponseContent", + "CreateFlowsVaultConnectionSalesforce", + "CreateFlowsVaultConnectionSalesforceOauthCode", + "CreateFlowsVaultConnectionSalesforceUninitialized", + "CreateFlowsVaultConnectionSendgrid", + "CreateFlowsVaultConnectionSendgridApiKey", + "CreateFlowsVaultConnectionSendgridUninitialized", + "CreateFlowsVaultConnectionSlack", + "CreateFlowsVaultConnectionSlackOauthCode", + "CreateFlowsVaultConnectionSlackUninitialized", + "CreateFlowsVaultConnectionSlackWebhook", + "CreateFlowsVaultConnectionStripe", + "CreateFlowsVaultConnectionStripeKeyPair", + "CreateFlowsVaultConnectionStripeOauthCode", + "CreateFlowsVaultConnectionStripeUninitialized", + "CreateFlowsVaultConnectionTelegram", + "CreateFlowsVaultConnectionTelegramToken", + "CreateFlowsVaultConnectionTelegramUninitialized", + "CreateFlowsVaultConnectionTwilio", + "CreateFlowsVaultConnectionTwilioApiKey", + "CreateFlowsVaultConnectionTwilioUninitialized", + "CreateFlowsVaultConnectionWhatsapp", + "CreateFlowsVaultConnectionWhatsappToken", + "CreateFlowsVaultConnectionWhatsappUninitialized", + "CreateFlowsVaultConnectionZapier", + "CreateFlowsVaultConnectionZapierUninitialized", + "CreateFlowsVaultConnectionZapierWebhook", + "CreateFormResponseContent", + "CreateGuardianEnrollmentTicketResponseContent", + "CreateHookResponseContent", + "CreateHookSecretRequestContent", + "CreateIdentityAssertionAuthorizationGrant", + "CreateImportUsersResponseContent", + "CreateLogStreamDatadogRequestBody", + "CreateLogStreamEventBridgeRequestBody", + "CreateLogStreamEventGridRequestBody", + "CreateLogStreamHttpRequestBody", + "CreateLogStreamMixpanelRequestBody", + "CreateLogStreamRequestContent", + "CreateLogStreamResponseContent", + "CreateLogStreamSegmentRequestBody", + "CreateLogStreamSplunkRequestBody", + "CreateLogStreamSumoRequestBody", + "CreateOrganizationAllConnectionResponseContent", + "CreateOrganizationClientRequestItem", + "CreateOrganizationClientsResponseContent", + "CreateOrganizationDiscoveryDomainResponseContent", + "CreateOrganizationInvitationResponseContent", + "CreateOrganizationResponseContent", + "CreatePhoneProviderSendTestResponseContent", + "CreatePhoneTemplateResponseContent", + "CreatePhoneTemplateTestNotificationResponseContent", + "CreatePublicKeyDeviceCredentialResponseContent", + "CreateRateLimitPolicyResponseContent", + "CreateResourceServerResponseContent", + "CreateRoleResponseContent", + "CreateRuleResponseContent", + "CreateScimConfigurationRequestContent", + "CreateScimConfigurationResponseContent", + "CreateScimTokenResponseContent", + "CreateSelfServiceProfileResponseContent", + "CreateSelfServiceProfileSsoTicketResponseContent", + "CreateTokenExchangeProfileResponseContent", + "CreateTokenQuota", + "CreateUserAttributeProfileResponseContent", + "CreateUserAuthenticationMethodResponseContent", + "CreateUserResponseContent", + "CreateVerifiableCredentialTemplateResponseContent", + "CreateVerificationEmailResponseContent", + "CreatedAuthenticationMethodTypeEnum", + "CreatedUserAuthenticationMethodTypeEnum", + "CredentialDeviceTypeEnum", + "CredentialId", + "CrossAppAccessRequestingApp", + "CrossAppAccessResourceApp", + "CrossAppAccessResourceAppStatusEnum", + "CspDirectives", + "CspFlag", + "CspFlags", + "CspPolicies", + "CspPolicy", + "CspPolicyMode", + "CspPolicyReporting", + "CspReportTo", + "CspReportToEndpoint", + "CspReportToEndpoints", + "CspReportingEndpoints", + "CspReportingInfrastructure", + "CustomDomain", + "CustomDomainHeader", + "CustomDomainCustomClientIpHeader", + "CustomDomainCustomClientIpHeaderEnum", + "CustomDomainHeader", + "CustomDomainProvisioningTypeEnum", + "CustomDomainStatusFilterEnum", + "CustomDomainTlsPolicyEnum", + "CustomDomainTypeEnum", + "CustomDomainVerificationMethodEnum", + "CustomProviderConfiguration", + "CustomProviderCredentials", + "CustomProviderDeliveryMethodEnum", + "CustomSigningKeyAlgorithmEnum", + "CustomSigningKeyCurveEnum", + "CustomSigningKeyJwk", + "CustomSigningKeyOperationEnum", + "CustomSigningKeyTypeEnum", + "CustomSigningKeyUseEnum", + "DailyStats", + "DefaultAioHttpClient", + "DefaultAsyncHttpxClient", + "DefaultMethodEmailIdentifierEnum", + "DefaultMethodPhoneNumberIdentifierEnum", + "DefaultTokenQuota", + "DeleteHookSecretRequestContent", + "DeleteUserIdentityResponseContent", + "DeleteUserIdentityResponseContentItem", + "DeployActionResponseContent", + "DeployActionVersionRequestContent", + "DeployActionVersionResponseContent", + "DeviceCredential", + "DeviceCredentialPublicKeyTypeEnum", + "DeviceCredentialTypeEnum", + "DirectoryProvisioning", + "DirectoryProvisioningMappingItem", + "DomainCertificate", + "DomainCertificateAuthorityEnum", + "DomainCertificateStatusEnum", + "DomainMetadata", + "DomainVerification", + "DomainVerificationMethod", + "DomainVerificationMethodNameEnum", + "DomainVerificationStatusEnum", + "EmailAttribute", + "EmailAttributeIdentifier", + "EmailMailgunRegionEnum", + "EmailProviderCredentials", + "EmailProviderCredentialsSchema", + "EmailProviderCredentialsSchemaAccessKeyId", + "EmailProviderCredentialsSchemaApiKey", + "EmailProviderCredentialsSchemaClientId", + "EmailProviderCredentialsSchemaConnectionString", + "EmailProviderCredentialsSchemaSmtpHost", + "EmailProviderCredentialsSchemaThree", + "EmailProviderCredentialsSchemaZero", + "EmailProviderNameEnum", + "EmailProviderSettings", + "EmailSmtpHost", + "EmailSparkPostRegionEnum", + "EmailSpecificProviderSettingsWithAdditionalProperties", + "EmailTemplateNameEnum", + "EnabledFeaturesEnum", + "EncryptionKey", + "EncryptionKeyPublicWrappingAlgorithm", + "EncryptionKeyState", + "EncryptionKeyType", + "EventStreamActionConfiguration", + "EventStreamActionDestination", + "EventStreamActionDestinationTypeEnum", + "EventStreamActionResponseContent", + "EventStreamCloudEvent", + "EventStreamCloudEventA0PurposeEnum", + "EventStreamCloudEventConnectionCreated", + "EventStreamCloudEventConnectionCreatedCloudEvent", + "EventStreamCloudEventConnectionCreatedCloudEventTypeEnum", + "EventStreamCloudEventConnectionCreatedData", + "EventStreamCloudEventConnectionCreatedObject", + "EventStreamCloudEventConnectionCreatedObject0", + "EventStreamCloudEventConnectionCreatedObject0Authentication", + "EventStreamCloudEventConnectionCreatedObject0ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject0Metadata", + "EventStreamCloudEventConnectionCreatedObject0Options", + "EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMap", + "EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapAttributes", + "EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapMappingModeEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettings", + "EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettingsPkceEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsDpopSigningAlgEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionCreatedObject0OptionsIdTokenSignedResponseAlgsItemEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsOidcMetadata", + "EventStreamCloudEventConnectionCreatedObject0OptionsSchemaVersionEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthMethodEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthSigningAlgEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointJwtcaAudFormatEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsTypeEnum", + "EventStreamCloudEventConnectionCreatedObject0OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject0StrategyEnum", + "EventStreamCloudEventConnectionCreatedObject1", + "EventStreamCloudEventConnectionCreatedObject1Authentication", + "EventStreamCloudEventConnectionCreatedObject1ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject1Metadata", + "EventStreamCloudEventConnectionCreatedObject1Options", + "EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMap", + "EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapAttributes", + "EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapMappingModeEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettings", + "EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettingsPkceEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsDpopSigningAlgEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionCreatedObject1OptionsIdTokenSignedResponseAlgsItemEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsOidcMetadata", + "EventStreamCloudEventConnectionCreatedObject1OptionsSchemaVersionEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthMethodEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthSigningAlgEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointJwtcaAudFormatEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsTypeEnum", + "EventStreamCloudEventConnectionCreatedObject1OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject1StrategyEnum", + "EventStreamCloudEventConnectionCreatedObject2", + "EventStreamCloudEventConnectionCreatedObject2Authentication", + "EventStreamCloudEventConnectionCreatedObject2ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject2Metadata", + "EventStreamCloudEventConnectionCreatedObject2Options", + "EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettings", + "EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum", + "EventStreamCloudEventConnectionCreatedObject2OptionsDigestAlgorithmEnum", + "EventStreamCloudEventConnectionCreatedObject2OptionsFieldsMap", + "EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiated", + "EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiatedClientProtocolEnum", + "EventStreamCloudEventConnectionCreatedObject2OptionsProtocolBindingEnum", + "EventStreamCloudEventConnectionCreatedObject2OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject2OptionsSignatureAlgorithmEnum", + "EventStreamCloudEventConnectionCreatedObject2OptionsSubject", + "EventStreamCloudEventConnectionCreatedObject2OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject2StrategyEnum", + "EventStreamCloudEventConnectionCreatedObject3", + "EventStreamCloudEventConnectionCreatedObject3Authentication", + "EventStreamCloudEventConnectionCreatedObject3ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject3Metadata", + "EventStreamCloudEventConnectionCreatedObject3Options", + "EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettings", + "EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum", + "EventStreamCloudEventConnectionCreatedObject3OptionsDigestAlgorithmEnum", + "EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiated", + "EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiatedClientProtocolEnum", + "EventStreamCloudEventConnectionCreatedObject3OptionsProtocolBindingEnum", + "EventStreamCloudEventConnectionCreatedObject3OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject3OptionsSignatureAlgorithmEnum", + "EventStreamCloudEventConnectionCreatedObject3OptionsSubject", + "EventStreamCloudEventConnectionCreatedObject3OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject3StrategyEnum", + "EventStreamCloudEventConnectionCreatedObject4", + "EventStreamCloudEventConnectionCreatedObject4Authentication", + "EventStreamCloudEventConnectionCreatedObject4ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject4Metadata", + "EventStreamCloudEventConnectionCreatedObject4Options", + "EventStreamCloudEventConnectionCreatedObject4OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum", + "EventStreamCloudEventConnectionCreatedObject4OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject4StrategyEnum", + "EventStreamCloudEventConnectionCreatedObject5", + "EventStreamCloudEventConnectionCreatedObject5Authentication", + "EventStreamCloudEventConnectionCreatedObject5ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject5Metadata", + "EventStreamCloudEventConnectionCreatedObject5Options", + "EventStreamCloudEventConnectionCreatedObject5OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject5OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject5StrategyEnum", + "EventStreamCloudEventConnectionCreatedObject6", + "EventStreamCloudEventConnectionCreatedObject6Authentication", + "EventStreamCloudEventConnectionCreatedObject6ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject6Metadata", + "EventStreamCloudEventConnectionCreatedObject6Options", + "EventStreamCloudEventConnectionCreatedObject6OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionCreatedObject6OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject6OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject6StrategyEnum", + "EventStreamCloudEventConnectionCreatedObject7", + "EventStreamCloudEventConnectionCreatedObject7Authentication", + "EventStreamCloudEventConnectionCreatedObject7ConnectedAccounts", + "EventStreamCloudEventConnectionCreatedObject7Metadata", + "EventStreamCloudEventConnectionCreatedObject7Options", + "EventStreamCloudEventConnectionCreatedObject7OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionCreatedObject7OptionsIdentityApiEnum", + "EventStreamCloudEventConnectionCreatedObject7OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionCreatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum", + "EventStreamCloudEventConnectionCreatedObject7OptionsTenantDomainOne", + "EventStreamCloudEventConnectionCreatedObject7OptionsUpstreamParams", + "EventStreamCloudEventConnectionCreatedObject7OptionsUseridAttributeEnum", + "EventStreamCloudEventConnectionCreatedObject7OptionsWaadProtocolEnum", + "EventStreamCloudEventConnectionCreatedObject7StrategyEnum", + "EventStreamCloudEventConnectionCreatedTypeEnum", + "EventStreamCloudEventConnectionDeleted", + "EventStreamCloudEventConnectionDeletedCloudEvent", + "EventStreamCloudEventConnectionDeletedCloudEventTypeEnum", + "EventStreamCloudEventConnectionDeletedData", + "EventStreamCloudEventConnectionDeletedObject", + "EventStreamCloudEventConnectionDeletedObject0", + "EventStreamCloudEventConnectionDeletedObject0Authentication", + "EventStreamCloudEventConnectionDeletedObject0ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject0Metadata", + "EventStreamCloudEventConnectionDeletedObject0Options", + "EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMap", + "EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapAttributes", + "EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapMappingModeEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettings", + "EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettingsPkceEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsDpopSigningAlgEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionDeletedObject0OptionsIdTokenSignedResponseAlgsItemEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsOidcMetadata", + "EventStreamCloudEventConnectionDeletedObject0OptionsSchemaVersionEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthMethodEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthSigningAlgEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointJwtcaAudFormatEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsTypeEnum", + "EventStreamCloudEventConnectionDeletedObject0OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject0StrategyEnum", + "EventStreamCloudEventConnectionDeletedObject1", + "EventStreamCloudEventConnectionDeletedObject1Authentication", + "EventStreamCloudEventConnectionDeletedObject1ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject1Metadata", + "EventStreamCloudEventConnectionDeletedObject1Options", + "EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMap", + "EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapAttributes", + "EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapMappingModeEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettings", + "EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettingsPkceEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsDpopSigningAlgEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionDeletedObject1OptionsIdTokenSignedResponseAlgsItemEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsOidcMetadata", + "EventStreamCloudEventConnectionDeletedObject1OptionsSchemaVersionEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthMethodEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthSigningAlgEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointJwtcaAudFormatEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsTypeEnum", + "EventStreamCloudEventConnectionDeletedObject1OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject1StrategyEnum", + "EventStreamCloudEventConnectionDeletedObject2", + "EventStreamCloudEventConnectionDeletedObject2Authentication", + "EventStreamCloudEventConnectionDeletedObject2ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject2Metadata", + "EventStreamCloudEventConnectionDeletedObject2Options", + "EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettings", + "EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum", + "EventStreamCloudEventConnectionDeletedObject2OptionsDigestAlgorithmEnum", + "EventStreamCloudEventConnectionDeletedObject2OptionsFieldsMap", + "EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiated", + "EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiatedClientProtocolEnum", + "EventStreamCloudEventConnectionDeletedObject2OptionsProtocolBindingEnum", + "EventStreamCloudEventConnectionDeletedObject2OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject2OptionsSignatureAlgorithmEnum", + "EventStreamCloudEventConnectionDeletedObject2OptionsSubject", + "EventStreamCloudEventConnectionDeletedObject2OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject2StrategyEnum", + "EventStreamCloudEventConnectionDeletedObject3", + "EventStreamCloudEventConnectionDeletedObject3Authentication", + "EventStreamCloudEventConnectionDeletedObject3ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject3Metadata", + "EventStreamCloudEventConnectionDeletedObject3Options", + "EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettings", + "EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum", + "EventStreamCloudEventConnectionDeletedObject3OptionsDigestAlgorithmEnum", + "EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiated", + "EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiatedClientProtocolEnum", + "EventStreamCloudEventConnectionDeletedObject3OptionsProtocolBindingEnum", + "EventStreamCloudEventConnectionDeletedObject3OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject3OptionsSignatureAlgorithmEnum", + "EventStreamCloudEventConnectionDeletedObject3OptionsSubject", + "EventStreamCloudEventConnectionDeletedObject3OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject3StrategyEnum", + "EventStreamCloudEventConnectionDeletedObject4", + "EventStreamCloudEventConnectionDeletedObject4Authentication", + "EventStreamCloudEventConnectionDeletedObject4ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject4Metadata", + "EventStreamCloudEventConnectionDeletedObject4Options", + "EventStreamCloudEventConnectionDeletedObject4OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject4OptionsShouldTrustEmailVerifiedConnectionEnum", + "EventStreamCloudEventConnectionDeletedObject4OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject4StrategyEnum", + "EventStreamCloudEventConnectionDeletedObject5", + "EventStreamCloudEventConnectionDeletedObject5Authentication", + "EventStreamCloudEventConnectionDeletedObject5ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject5Metadata", + "EventStreamCloudEventConnectionDeletedObject5Options", + "EventStreamCloudEventConnectionDeletedObject5OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject5OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject5StrategyEnum", + "EventStreamCloudEventConnectionDeletedObject6", + "EventStreamCloudEventConnectionDeletedObject6Authentication", + "EventStreamCloudEventConnectionDeletedObject6ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject6Metadata", + "EventStreamCloudEventConnectionDeletedObject6Options", + "EventStreamCloudEventConnectionDeletedObject6OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionDeletedObject6OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject6OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject6StrategyEnum", + "EventStreamCloudEventConnectionDeletedObject7", + "EventStreamCloudEventConnectionDeletedObject7Authentication", + "EventStreamCloudEventConnectionDeletedObject7ConnectedAccounts", + "EventStreamCloudEventConnectionDeletedObject7Metadata", + "EventStreamCloudEventConnectionDeletedObject7Options", + "EventStreamCloudEventConnectionDeletedObject7OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionDeletedObject7OptionsIdentityApiEnum", + "EventStreamCloudEventConnectionDeletedObject7OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionDeletedObject7OptionsShouldTrustEmailVerifiedConnectionEnum", + "EventStreamCloudEventConnectionDeletedObject7OptionsTenantDomainOne", + "EventStreamCloudEventConnectionDeletedObject7OptionsUpstreamParams", + "EventStreamCloudEventConnectionDeletedObject7OptionsUseridAttributeEnum", + "EventStreamCloudEventConnectionDeletedObject7OptionsWaadProtocolEnum", + "EventStreamCloudEventConnectionDeletedObject7StrategyEnum", + "EventStreamCloudEventConnectionDeletedTypeEnum", + "EventStreamCloudEventConnectionUpdated", + "EventStreamCloudEventConnectionUpdatedCloudEvent", + "EventStreamCloudEventConnectionUpdatedCloudEventTypeEnum", + "EventStreamCloudEventConnectionUpdatedData", + "EventStreamCloudEventConnectionUpdatedObject", + "EventStreamCloudEventConnectionUpdatedObject0", + "EventStreamCloudEventConnectionUpdatedObject0Authentication", + "EventStreamCloudEventConnectionUpdatedObject0ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject0Metadata", + "EventStreamCloudEventConnectionUpdatedObject0Options", + "EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMap", + "EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapAttributes", + "EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapMappingModeEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettings", + "EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettingsPkceEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsDpopSigningAlgEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionUpdatedObject0OptionsIdTokenSignedResponseAlgsItemEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsOidcMetadata", + "EventStreamCloudEventConnectionUpdatedObject0OptionsSchemaVersionEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthMethodEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthSigningAlgEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointJwtcaAudFormatEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsTypeEnum", + "EventStreamCloudEventConnectionUpdatedObject0OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject0StrategyEnum", + "EventStreamCloudEventConnectionUpdatedObject1", + "EventStreamCloudEventConnectionUpdatedObject1Authentication", + "EventStreamCloudEventConnectionUpdatedObject1ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject1Metadata", + "EventStreamCloudEventConnectionUpdatedObject1Options", + "EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMap", + "EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapAttributes", + "EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapMappingModeEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettings", + "EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettingsPkceEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsDpopSigningAlgEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionUpdatedObject1OptionsIdTokenSignedResponseAlgsItemEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata", + "EventStreamCloudEventConnectionUpdatedObject1OptionsSchemaVersionEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthMethodEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthSigningAlgEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointJwtcaAudFormatEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsTypeEnum", + "EventStreamCloudEventConnectionUpdatedObject1OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject1StrategyEnum", + "EventStreamCloudEventConnectionUpdatedObject2", + "EventStreamCloudEventConnectionUpdatedObject2Authentication", + "EventStreamCloudEventConnectionUpdatedObject2ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject2Metadata", + "EventStreamCloudEventConnectionUpdatedObject2Options", + "EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettings", + "EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum", + "EventStreamCloudEventConnectionUpdatedObject2OptionsDigestAlgorithmEnum", + "EventStreamCloudEventConnectionUpdatedObject2OptionsFieldsMap", + "EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiated", + "EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiatedClientProtocolEnum", + "EventStreamCloudEventConnectionUpdatedObject2OptionsProtocolBindingEnum", + "EventStreamCloudEventConnectionUpdatedObject2OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject2OptionsSignatureAlgorithmEnum", + "EventStreamCloudEventConnectionUpdatedObject2OptionsSubject", + "EventStreamCloudEventConnectionUpdatedObject2OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject2StrategyEnum", + "EventStreamCloudEventConnectionUpdatedObject3", + "EventStreamCloudEventConnectionUpdatedObject3Authentication", + "EventStreamCloudEventConnectionUpdatedObject3ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject3Metadata", + "EventStreamCloudEventConnectionUpdatedObject3Options", + "EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettings", + "EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum", + "EventStreamCloudEventConnectionUpdatedObject3OptionsDigestAlgorithmEnum", + "EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiated", + "EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiatedClientProtocolEnum", + "EventStreamCloudEventConnectionUpdatedObject3OptionsProtocolBindingEnum", + "EventStreamCloudEventConnectionUpdatedObject3OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject3OptionsSignatureAlgorithmEnum", + "EventStreamCloudEventConnectionUpdatedObject3OptionsSubject", + "EventStreamCloudEventConnectionUpdatedObject3OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject3StrategyEnum", + "EventStreamCloudEventConnectionUpdatedObject4", + "EventStreamCloudEventConnectionUpdatedObject4Authentication", + "EventStreamCloudEventConnectionUpdatedObject4ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject4Metadata", + "EventStreamCloudEventConnectionUpdatedObject4Options", + "EventStreamCloudEventConnectionUpdatedObject4OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum", + "EventStreamCloudEventConnectionUpdatedObject4OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject4StrategyEnum", + "EventStreamCloudEventConnectionUpdatedObject5", + "EventStreamCloudEventConnectionUpdatedObject5Authentication", + "EventStreamCloudEventConnectionUpdatedObject5ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject5Metadata", + "EventStreamCloudEventConnectionUpdatedObject5Options", + "EventStreamCloudEventConnectionUpdatedObject5OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject5OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject5StrategyEnum", + "EventStreamCloudEventConnectionUpdatedObject6", + "EventStreamCloudEventConnectionUpdatedObject6Authentication", + "EventStreamCloudEventConnectionUpdatedObject6ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject6Metadata", + "EventStreamCloudEventConnectionUpdatedObject6Options", + "EventStreamCloudEventConnectionUpdatedObject6OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionUpdatedObject6OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject6OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject6StrategyEnum", + "EventStreamCloudEventConnectionUpdatedObject7", + "EventStreamCloudEventConnectionUpdatedObject7Authentication", + "EventStreamCloudEventConnectionUpdatedObject7ConnectedAccounts", + "EventStreamCloudEventConnectionUpdatedObject7Metadata", + "EventStreamCloudEventConnectionUpdatedObject7Options", + "EventStreamCloudEventConnectionUpdatedObject7OptionsFederatedConnectionsAccessTokens", + "EventStreamCloudEventConnectionUpdatedObject7OptionsIdentityApiEnum", + "EventStreamCloudEventConnectionUpdatedObject7OptionsSetUserRootAttributesEnum", + "EventStreamCloudEventConnectionUpdatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum", + "EventStreamCloudEventConnectionUpdatedObject7OptionsTenantDomainOne", + "EventStreamCloudEventConnectionUpdatedObject7OptionsUpstreamParams", + "EventStreamCloudEventConnectionUpdatedObject7OptionsUseridAttributeEnum", + "EventStreamCloudEventConnectionUpdatedObject7OptionsWaadProtocolEnum", + "EventStreamCloudEventConnectionUpdatedObject7StrategyEnum", + "EventStreamCloudEventConnectionUpdatedTypeEnum", + "EventStreamCloudEventContext", + "EventStreamCloudEventContextClient", + "EventStreamCloudEventContextClientMetadata", + "EventStreamCloudEventContextConnection", + "EventStreamCloudEventContextRequest", + "EventStreamCloudEventContextRequestGeo", + "EventStreamCloudEventContextTenant", + "EventStreamCloudEventErrorCodeEnum", + "EventStreamCloudEventErrorDetail", + "EventStreamCloudEventErrorMessage", + "EventStreamCloudEventErrorMessageTypeEnum", + "EventStreamCloudEventGroupCreated", + "EventStreamCloudEventGroupCreatedCloudEvent", + "EventStreamCloudEventGroupCreatedCloudEventTypeEnum", + "EventStreamCloudEventGroupCreatedData", + "EventStreamCloudEventGroupCreatedObject", + "EventStreamCloudEventGroupCreatedObject0", + "EventStreamCloudEventGroupCreatedObject0TypeEnum", + "EventStreamCloudEventGroupCreatedObject1", + "EventStreamCloudEventGroupCreatedObject1TypeEnum", + "EventStreamCloudEventGroupCreatedObject2", + "EventStreamCloudEventGroupCreatedObject2TypeEnum", + "EventStreamCloudEventGroupCreatedTypeEnum", + "EventStreamCloudEventGroupDeleted", + "EventStreamCloudEventGroupDeletedCloudEvent", + "EventStreamCloudEventGroupDeletedCloudEventTypeEnum", + "EventStreamCloudEventGroupDeletedData", + "EventStreamCloudEventGroupDeletedObject", + "EventStreamCloudEventGroupDeletedObject0", + "EventStreamCloudEventGroupDeletedObject0TypeEnum", + "EventStreamCloudEventGroupDeletedObject1", + "EventStreamCloudEventGroupDeletedObject1TypeEnum", + "EventStreamCloudEventGroupDeletedObject2", + "EventStreamCloudEventGroupDeletedObject2TypeEnum", + "EventStreamCloudEventGroupDeletedTypeEnum", + "EventStreamCloudEventGroupMemberAdded", + "EventStreamCloudEventGroupMemberAddedCloudEvent", + "EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum", + "EventStreamCloudEventGroupMemberAddedData", + "EventStreamCloudEventGroupMemberAddedObject", + "EventStreamCloudEventGroupMemberAddedObjectGroup", + "EventStreamCloudEventGroupMemberAddedObjectGroup0", + "EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum", + "EventStreamCloudEventGroupMemberAddedObjectGroup1", + "EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum", + "EventStreamCloudEventGroupMemberAddedObjectGroup2", + "EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum", + "EventStreamCloudEventGroupMemberAddedObjectMember", + "EventStreamCloudEventGroupMemberAddedObjectMember0", + "EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum", + "EventStreamCloudEventGroupMemberAddedObjectMember1", + "EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum", + "EventStreamCloudEventGroupMemberAddedTypeEnum", + "EventStreamCloudEventGroupMemberDeleted", + "EventStreamCloudEventGroupMemberDeletedCloudEvent", + "EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum", + "EventStreamCloudEventGroupMemberDeletedData", + "EventStreamCloudEventGroupMemberDeletedObject", + "EventStreamCloudEventGroupMemberDeletedObjectGroup", + "EventStreamCloudEventGroupMemberDeletedObjectGroup0", + "EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum", + "EventStreamCloudEventGroupMemberDeletedObjectGroup1", + "EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum", + "EventStreamCloudEventGroupMemberDeletedObjectGroup2", + "EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum", + "EventStreamCloudEventGroupMemberDeletedObjectMember", + "EventStreamCloudEventGroupMemberDeletedObjectMember0", + "EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum", + "EventStreamCloudEventGroupMemberDeletedObjectMember1", + "EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum", + "EventStreamCloudEventGroupMemberDeletedTypeEnum", + "EventStreamCloudEventGroupRoleAssigned", + "EventStreamCloudEventGroupRoleAssignedCloudEvent", + "EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum", + "EventStreamCloudEventGroupRoleAssignedData", + "EventStreamCloudEventGroupRoleAssignedObject", + "EventStreamCloudEventGroupRoleAssignedObjectGroup", + "EventStreamCloudEventGroupRoleAssignedObjectGroup0", + "EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum", + "EventStreamCloudEventGroupRoleAssignedObjectGroup1", + "EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum", + "EventStreamCloudEventGroupRoleAssignedObjectGroup2", + "EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum", + "EventStreamCloudEventGroupRoleAssignedObjectRole", + "EventStreamCloudEventGroupRoleAssignedTypeEnum", + "EventStreamCloudEventGroupRoleDeleted", + "EventStreamCloudEventGroupRoleDeletedCloudEvent", + "EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum", + "EventStreamCloudEventGroupRoleDeletedData", + "EventStreamCloudEventGroupRoleDeletedObject", + "EventStreamCloudEventGroupRoleDeletedObjectGroup", + "EventStreamCloudEventGroupRoleDeletedObjectGroup0", + "EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum", + "EventStreamCloudEventGroupRoleDeletedObjectGroup1", + "EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum", + "EventStreamCloudEventGroupRoleDeletedObjectGroup2", + "EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum", + "EventStreamCloudEventGroupRoleDeletedObjectRole", + "EventStreamCloudEventGroupRoleDeletedTypeEnum", + "EventStreamCloudEventGroupUpdated", + "EventStreamCloudEventGroupUpdatedCloudEvent", + "EventStreamCloudEventGroupUpdatedCloudEventTypeEnum", + "EventStreamCloudEventGroupUpdatedData", + "EventStreamCloudEventGroupUpdatedObject", + "EventStreamCloudEventGroupUpdatedObject0", + "EventStreamCloudEventGroupUpdatedObject0TypeEnum", + "EventStreamCloudEventGroupUpdatedObject1", + "EventStreamCloudEventGroupUpdatedObject1TypeEnum", + "EventStreamCloudEventGroupUpdatedObject2", + "EventStreamCloudEventGroupUpdatedObject2TypeEnum", + "EventStreamCloudEventGroupUpdatedTypeEnum", + "EventStreamCloudEventOffsetOnlyMessage", + "EventStreamCloudEventOffsetOnlyMessageTypeEnum", + "EventStreamCloudEventOrgConnectionAdded", + "EventStreamCloudEventOrgConnectionAddedCloudEvent", + "EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum", + "EventStreamCloudEventOrgConnectionAddedData", + "EventStreamCloudEventOrgConnectionAddedObject", + "EventStreamCloudEventOrgConnectionAddedObjectConnection", + "EventStreamCloudEventOrgConnectionAddedObjectOrganization", + "EventStreamCloudEventOrgConnectionAddedTypeEnum", + "EventStreamCloudEventOrgConnectionRemoved", + "EventStreamCloudEventOrgConnectionRemovedCloudEvent", + "EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum", + "EventStreamCloudEventOrgConnectionRemovedData", + "EventStreamCloudEventOrgConnectionRemovedObject", + "EventStreamCloudEventOrgConnectionRemovedObjectConnection", + "EventStreamCloudEventOrgConnectionRemovedObjectOrganization", + "EventStreamCloudEventOrgConnectionRemovedTypeEnum", + "EventStreamCloudEventOrgConnectionUpdated", + "EventStreamCloudEventOrgConnectionUpdatedCloudEvent", + "EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum", + "EventStreamCloudEventOrgConnectionUpdatedData", + "EventStreamCloudEventOrgConnectionUpdatedObject", + "EventStreamCloudEventOrgConnectionUpdatedObjectConnection", + "EventStreamCloudEventOrgConnectionUpdatedObjectOrganization", + "EventStreamCloudEventOrgConnectionUpdatedTypeEnum", + "EventStreamCloudEventOrgCreated", + "EventStreamCloudEventOrgCreatedCloudEvent", + "EventStreamCloudEventOrgCreatedCloudEventTypeEnum", + "EventStreamCloudEventOrgCreatedData", + "EventStreamCloudEventOrgCreatedObject", + "EventStreamCloudEventOrgCreatedObjectBranding", + "EventStreamCloudEventOrgCreatedObjectBrandingColors", + "EventStreamCloudEventOrgCreatedObjectMetadata", + "EventStreamCloudEventOrgCreatedTypeEnum", + "EventStreamCloudEventOrgDeleted", + "EventStreamCloudEventOrgDeletedCloudEvent", + "EventStreamCloudEventOrgDeletedCloudEventTypeEnum", + "EventStreamCloudEventOrgDeletedData", + "EventStreamCloudEventOrgDeletedObject", + "EventStreamCloudEventOrgDeletedObjectMetadata", + "EventStreamCloudEventOrgDeletedTypeEnum", + "EventStreamCloudEventOrgGroupRoleAssigned", + "EventStreamCloudEventOrgGroupRoleAssignedCloudEvent", + "EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum", + "EventStreamCloudEventOrgGroupRoleAssignedData", + "EventStreamCloudEventOrgGroupRoleAssignedObject", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2", + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum", + "EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization", + "EventStreamCloudEventOrgGroupRoleAssignedObjectRole", + "EventStreamCloudEventOrgGroupRoleAssignedTypeEnum", + "EventStreamCloudEventOrgGroupRoleDeleted", + "EventStreamCloudEventOrgGroupRoleDeletedCloudEvent", + "EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum", + "EventStreamCloudEventOrgGroupRoleDeletedData", + "EventStreamCloudEventOrgGroupRoleDeletedObject", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2", + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum", + "EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization", + "EventStreamCloudEventOrgGroupRoleDeletedObjectRole", + "EventStreamCloudEventOrgGroupRoleDeletedTypeEnum", + "EventStreamCloudEventOrgMemberAdded", + "EventStreamCloudEventOrgMemberAddedCloudEvent", + "EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum", + "EventStreamCloudEventOrgMemberAddedData", + "EventStreamCloudEventOrgMemberAddedObject", + "EventStreamCloudEventOrgMemberAddedObjectOrganization", + "EventStreamCloudEventOrgMemberAddedObjectUser", + "EventStreamCloudEventOrgMemberAddedTypeEnum", + "EventStreamCloudEventOrgMemberDeleted", + "EventStreamCloudEventOrgMemberDeletedCloudEvent", + "EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum", + "EventStreamCloudEventOrgMemberDeletedData", + "EventStreamCloudEventOrgMemberDeletedObject", + "EventStreamCloudEventOrgMemberDeletedObjectOrganization", + "EventStreamCloudEventOrgMemberDeletedObjectUser", + "EventStreamCloudEventOrgMemberDeletedTypeEnum", + "EventStreamCloudEventOrgMemberRoleAssigned", + "EventStreamCloudEventOrgMemberRoleAssignedCloudEvent", + "EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum", + "EventStreamCloudEventOrgMemberRoleAssignedData", + "EventStreamCloudEventOrgMemberRoleAssignedObject", + "EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization", + "EventStreamCloudEventOrgMemberRoleAssignedObjectRole", + "EventStreamCloudEventOrgMemberRoleAssignedObjectUser", + "EventStreamCloudEventOrgMemberRoleAssignedTypeEnum", + "EventStreamCloudEventOrgMemberRoleDeleted", + "EventStreamCloudEventOrgMemberRoleDeletedCloudEvent", + "EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum", + "EventStreamCloudEventOrgMemberRoleDeletedData", + "EventStreamCloudEventOrgMemberRoleDeletedObject", + "EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization", + "EventStreamCloudEventOrgMemberRoleDeletedObjectRole", + "EventStreamCloudEventOrgMemberRoleDeletedObjectUser", + "EventStreamCloudEventOrgMemberRoleDeletedTypeEnum", + "EventStreamCloudEventOrgUpdated", + "EventStreamCloudEventOrgUpdatedCloudEvent", + "EventStreamCloudEventOrgUpdatedCloudEventTypeEnum", + "EventStreamCloudEventOrgUpdatedData", + "EventStreamCloudEventOrgUpdatedObject", + "EventStreamCloudEventOrgUpdatedObjectBranding", + "EventStreamCloudEventOrgUpdatedObjectBrandingColors", + "EventStreamCloudEventOrgUpdatedObjectMetadata", + "EventStreamCloudEventOrgUpdatedTypeEnum", + "EventStreamCloudEventSpecVersionEnum", + "EventStreamCloudEventUserCreated", + "EventStreamCloudEventUserCreatedCloudEvent", + "EventStreamCloudEventUserCreatedCloudEventTypeEnum", + "EventStreamCloudEventUserCreatedData", + "EventStreamCloudEventUserCreatedObject", + "EventStreamCloudEventUserCreatedObjectAppMetadata", + "EventStreamCloudEventUserCreatedObjectIdentitiesItem", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum", + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId", + "EventStreamCloudEventUserCreatedObjectUserMetadata", + "EventStreamCloudEventUserCreatedTypeEnum", + "EventStreamCloudEventUserDeleted", + "EventStreamCloudEventUserDeletedCloudEvent", + "EventStreamCloudEventUserDeletedCloudEventTypeEnum", + "EventStreamCloudEventUserDeletedData", + "EventStreamCloudEventUserDeletedObject", + "EventStreamCloudEventUserDeletedObjectAppMetadata", + "EventStreamCloudEventUserDeletedObjectIdentitiesItem", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum", + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId", + "EventStreamCloudEventUserDeletedObjectUserMetadata", + "EventStreamCloudEventUserDeletedTypeEnum", + "EventStreamCloudEventUserUpdated", + "EventStreamCloudEventUserUpdatedCloudEvent", + "EventStreamCloudEventUserUpdatedCloudEventTypeEnum", + "EventStreamCloudEventUserUpdatedData", + "EventStreamCloudEventUserUpdatedObject", + "EventStreamCloudEventUserUpdatedObjectAppMetadata", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItem", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum", + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId", + "EventStreamCloudEventUserUpdatedObjectUserMetadata", + "EventStreamCloudEventUserUpdatedTypeEnum", + "EventStreamDelivery", + "EventStreamDeliveryAttempt", + "EventStreamDeliveryEventTypeEnum", + "EventStreamDeliveryStatusEnum", + "EventStreamDestinationPatch", + "EventStreamEventBridgeAwsRegionEnum", + "EventStreamEventBridgeConfiguration", + "EventStreamEventBridgeDestination", + "EventStreamEventBridgeDestinationTypeEnum", + "EventStreamEventBridgeResponseContent", + "EventStreamEventTypeEnum", + "EventStreamResponseContent", + "EventStreamStatusEnum", + "EventStreamSubscribeEventsEventTypeEnum", + "EventStreamSubscribeEventsEventTypeParam", + "EventStreamSubscribeEventsResponseContent", + "EventStreamSubscribeEventsResponseContent_ConnectionCreated", + "EventStreamSubscribeEventsResponseContent_ConnectionDeleted", + "EventStreamSubscribeEventsResponseContent_ConnectionUpdated", + "EventStreamSubscribeEventsResponseContent_Error", + "EventStreamSubscribeEventsResponseContent_GroupCreated", + "EventStreamSubscribeEventsResponseContent_GroupDeleted", + "EventStreamSubscribeEventsResponseContent_GroupMemberAdded", + "EventStreamSubscribeEventsResponseContent_GroupMemberDeleted", + "EventStreamSubscribeEventsResponseContent_GroupRoleAssigned", + "EventStreamSubscribeEventsResponseContent_GroupRoleDeleted", + "EventStreamSubscribeEventsResponseContent_GroupUpdated", + "EventStreamSubscribeEventsResponseContent_OffsetOnly", + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded", + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved", + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated", + "EventStreamSubscribeEventsResponseContent_OrganizationCreated", + "EventStreamSubscribeEventsResponseContent_OrganizationDeleted", + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned", + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned", + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted", + "EventStreamSubscribeEventsResponseContent_OrganizationUpdated", + "EventStreamSubscribeEventsResponseContent_UserCreated", + "EventStreamSubscribeEventsResponseContent_UserDeleted", + "EventStreamSubscribeEventsResponseContent_UserUpdated", + "EventStreamSubscription", + "EventStreamTestEventTypeEnum", + "EventStreamWebhookAuthorizationResponse", + "EventStreamWebhookBasicAuth", + "EventStreamWebhookBasicAuthMethodEnum", + "EventStreamWebhookBearerAuth", + "EventStreamWebhookBearerAuthMethodEnum", + "EventStreamWebhookConfiguration", + "EventStreamWebhookCustomHeaderAuth", + "EventStreamWebhookCustomHeaderAuthMethodEnum", + "EventStreamWebhookDestination", + "EventStreamWebhookDestinationTypeEnum", + "EventStreamWebhookResponseContent", + "EventStreamsCreateRequest", + "ExpressConfiguration", + "ExpressConfigurationOrNull", + "ExtensibilityEmailProviderCredentials", + "FedCmLogin", + "FedCmLoginGoogle", + "FedCmLoginGooglePatch", + "FedCmLoginPatch", + "FedCmLoginGooglePatch", + "FedCmLoginPatch", + "FlowAction", + "FlowActionActivecampaign", + "FlowActionActivecampaignListContacts", + "FlowActionActivecampaignListContactsAction", + "FlowActionActivecampaignListContactsParams", + "FlowActionActivecampaignListContactsType", + "FlowActionActivecampaignUpsertContact", + "FlowActionActivecampaignUpsertContactAction", + "FlowActionActivecampaignUpsertContactParams", + "FlowActionActivecampaignUpsertContactParamsCustomFields", + "FlowActionActivecampaignUpsertContactType", + "FlowActionAirtable", + "FlowActionAirtableCreateRecord", + "FlowActionAirtableCreateRecordAction", + "FlowActionAirtableCreateRecordParams", + "FlowActionAirtableCreateRecordParamsFields", + "FlowActionAirtableCreateRecordType", + "FlowActionAirtableListRecords", + "FlowActionAirtableListRecordsAction", + "FlowActionAirtableListRecordsParams", + "FlowActionAirtableListRecordsType", + "FlowActionAirtableUpdateRecord", + "FlowActionAirtableUpdateRecordAction", + "FlowActionAirtableUpdateRecordParams", + "FlowActionAirtableUpdateRecordParamsFields", + "FlowActionAirtableUpdateRecordType", + "FlowActionAuth0", + "FlowActionAuth0CreateUser", + "FlowActionAuth0CreateUserAction", + "FlowActionAuth0CreateUserParams", + "FlowActionAuth0CreateUserParamsPayload", + "FlowActionAuth0CreateUserType", + "FlowActionAuth0GetUser", + "FlowActionAuth0GetUserAction", + "FlowActionAuth0GetUserParams", + "FlowActionAuth0GetUserType", + "FlowActionAuth0MakeCall", + "FlowActionAuth0MakeCallAction", + "FlowActionAuth0MakeCallParams", + "FlowActionAuth0MakeCallParamsCustomVars", + "FlowActionAuth0MakeCallType", + "FlowActionAuth0SendEmail", + "FlowActionAuth0SendEmailAction", + "FlowActionAuth0SendEmailParams", + "FlowActionAuth0SendEmailParamsFrom", + "FlowActionAuth0SendEmailParamsFromEmail", + "FlowActionAuth0SendEmailParamsTo", + "FlowActionAuth0SendEmailType", + "FlowActionAuth0SendRequest", + "FlowActionAuth0SendRequestAction", + "FlowActionAuth0SendRequestParams", + "FlowActionAuth0SendRequestParamsCustomVars", + "FlowActionAuth0SendRequestParamsHeaders", + "FlowActionAuth0SendRequestParamsMethod", + "FlowActionAuth0SendRequestParamsPayload", + "FlowActionAuth0SendRequestParamsPayloadObject", + "FlowActionAuth0SendRequestParamsQueryParams", + "FlowActionAuth0SendRequestParamsQueryParamsValue", + "FlowActionAuth0SendRequestType", + "FlowActionAuth0SendSms", + "FlowActionAuth0SendSmsAction", + "FlowActionAuth0SendSmsParams", + "FlowActionAuth0SendSmsParamsCustomVars", + "FlowActionAuth0SendSmsType", + "FlowActionAuth0UpdateUser", + "FlowActionAuth0UpdateUserAction", + "FlowActionAuth0UpdateUserParams", + "FlowActionAuth0UpdateUserParamsChanges", + "FlowActionAuth0UpdateUserType", + "FlowActionBigquery", + "FlowActionBigqueryInsertRows", + "FlowActionBigqueryInsertRowsAction", + "FlowActionBigqueryInsertRowsParams", + "FlowActionBigqueryInsertRowsParamsData", + "FlowActionBigqueryInsertRowsType", + "FlowActionClearbit", + "FlowActionClearbitFindCompany", + "FlowActionClearbitFindCompanyAction", + "FlowActionClearbitFindCompanyParams", + "FlowActionClearbitFindCompanyType", + "FlowActionClearbitFindPerson", + "FlowActionClearbitFindPersonAction", + "FlowActionClearbitFindPersonParams", + "FlowActionClearbitFindPersonType", + "FlowActionEmail", + "FlowActionEmailVerifyEmail", + "FlowActionEmailVerifyEmailAction", + "FlowActionEmailVerifyEmailParams", + "FlowActionEmailVerifyEmailParamsRules", + "FlowActionEmailVerifyEmailType", + "FlowActionFlow", + "FlowActionFlowBooleanCondition", + "FlowActionFlowBooleanConditionAction", + "FlowActionFlowBooleanConditionParams", + "FlowActionFlowBooleanConditionType", + "FlowActionFlowDelayFlow", + "FlowActionFlowDelayFlowAction", + "FlowActionFlowDelayFlowParams", + "FlowActionFlowDelayFlowParamsNumber", + "FlowActionFlowDelayFlowParamsUnits", + "FlowActionFlowDelayFlowType", + "FlowActionFlowDoNothing", + "FlowActionFlowDoNothingAction", + "FlowActionFlowDoNothingParams", + "FlowActionFlowDoNothingType", + "FlowActionFlowErrorMessage", + "FlowActionFlowErrorMessageAction", + "FlowActionFlowErrorMessageParams", + "FlowActionFlowErrorMessageType", + "FlowActionFlowMapValue", + "FlowActionFlowMapValueAction", + "FlowActionFlowMapValueParams", + "FlowActionFlowMapValueParamsCases", + "FlowActionFlowMapValueParamsFallback", + "FlowActionFlowMapValueParamsFallbackObject", + "FlowActionFlowMapValueParamsInput", + "FlowActionFlowMapValueType", + "FlowActionFlowReturnJson", + "FlowActionFlowReturnJsonAction", + "FlowActionFlowReturnJsonParams", + "FlowActionFlowReturnJsonParamsPayload", + "FlowActionFlowReturnJsonParamsPayloadObject", + "FlowActionFlowReturnJsonType", + "FlowActionFlowStoreVars", + "FlowActionFlowStoreVarsAction", + "FlowActionFlowStoreVarsParams", + "FlowActionFlowStoreVarsParamsVars", + "FlowActionFlowStoreVarsType", + "FlowActionGoogleSheets", + "FlowActionGoogleSheetsAddRow", + "FlowActionGoogleSheetsAddRowAction", + "FlowActionGoogleSheetsAddRowParams", + "FlowActionGoogleSheetsAddRowParamsSheetId", + "FlowActionGoogleSheetsAddRowParamsValues", + "FlowActionGoogleSheetsAddRowType", + "FlowActionHttp", + "FlowActionHttpSendRequest", + "FlowActionHttpSendRequestAction", + "FlowActionHttpSendRequestParams", + "FlowActionHttpSendRequestParamsBasicAuth", + "FlowActionHttpSendRequestParamsContentType", + "FlowActionHttpSendRequestParamsHeaders", + "FlowActionHttpSendRequestParamsMethod", + "FlowActionHttpSendRequestParamsPayload", + "FlowActionHttpSendRequestParamsPayloadObject", + "FlowActionHttpSendRequestParamsQueryParams", + "FlowActionHttpSendRequestParamsQueryParamsValue", + "FlowActionHttpSendRequestType", + "FlowActionHubspot", + "FlowActionHubspotEnrollContact", + "FlowActionHubspotEnrollContactAction", + "FlowActionHubspotEnrollContactParams", + "FlowActionHubspotEnrollContactParamsWorkflowId", + "FlowActionHubspotEnrollContactType", + "FlowActionHubspotGetContact", + "FlowActionHubspotGetContactAction", + "FlowActionHubspotGetContactParams", + "FlowActionHubspotGetContactType", + "FlowActionHubspotUpsertContact", + "FlowActionHubspotUpsertContactAction", + "FlowActionHubspotUpsertContactParams", + "FlowActionHubspotUpsertContactParamsProperty", + "FlowActionHubspotUpsertContactType", + "FlowActionJson", + "FlowActionJsonCreateJson", + "FlowActionJsonCreateJsonAction", + "FlowActionJsonCreateJsonParams", + "FlowActionJsonCreateJsonParamsObject", + "FlowActionJsonCreateJsonType", + "FlowActionJsonParseJson", + "FlowActionJsonParseJsonAction", + "FlowActionJsonParseJsonParams", + "FlowActionJsonParseJsonType", + "FlowActionJsonSerializeJson", + "FlowActionJsonSerializeJsonAction", + "FlowActionJsonSerializeJsonParams", + "FlowActionJsonSerializeJsonParamsObject", + "FlowActionJsonSerializeJsonParamsObjectObject", + "FlowActionJsonSerializeJsonType", + "FlowActionJwt", + "FlowActionJwtDecodeJwt", + "FlowActionJwtDecodeJwtAction", + "FlowActionJwtDecodeJwtParams", + "FlowActionJwtDecodeJwtType", + "FlowActionJwtSignJwt", + "FlowActionJwtSignJwtAction", + "FlowActionJwtSignJwtParams", + "FlowActionJwtSignJwtParamsPayload", + "FlowActionJwtSignJwtType", + "FlowActionJwtVerifyJwt", + "FlowActionJwtVerifyJwtAction", + "FlowActionJwtVerifyJwtParams", + "FlowActionJwtVerifyJwtType", + "FlowActionMailchimp", + "FlowActionMailchimpUpsertMember", + "FlowActionMailchimpUpsertMemberAction", + "FlowActionMailchimpUpsertMemberParams", + "FlowActionMailchimpUpsertMemberParamsMember", + "FlowActionMailchimpUpsertMemberParamsMemberMergeFields", + "FlowActionMailchimpUpsertMemberType", + "FlowActionMailjet", + "FlowActionMailjetSendEmail", + "FlowActionMailjetSendEmailAction", + "FlowActionMailjetSendEmailParams", + "FlowActionMailjetSendEmailParamsContent", + "FlowActionMailjetSendEmailParamsTemplateId", + "FlowActionMailjetSendEmailType", + "FlowActionOtp", + "FlowActionOtpGenerateCode", + "FlowActionOtpGenerateCodeAction", + "FlowActionOtpGenerateCodeParams", + "FlowActionOtpGenerateCodeType", + "FlowActionOtpVerifyCode", + "FlowActionOtpVerifyCodeAction", + "FlowActionOtpVerifyCodeParams", + "FlowActionOtpVerifyCodeParamsCode", + "FlowActionOtpVerifyCodeType", + "FlowActionPipedrive", + "FlowActionPipedriveAddDeal", + "FlowActionPipedriveAddDealAction", + "FlowActionPipedriveAddDealParams", + "FlowActionPipedriveAddDealParamsFields", + "FlowActionPipedriveAddDealParamsOrganizationId", + "FlowActionPipedriveAddDealParamsPersonId", + "FlowActionPipedriveAddDealParamsStageId", + "FlowActionPipedriveAddDealParamsUserId", + "FlowActionPipedriveAddDealType", + "FlowActionPipedriveAddOrganization", + "FlowActionPipedriveAddOrganizationAction", + "FlowActionPipedriveAddOrganizationParams", + "FlowActionPipedriveAddOrganizationParamsFields", + "FlowActionPipedriveAddOrganizationParamsOwnerId", + "FlowActionPipedriveAddOrganizationType", + "FlowActionPipedriveAddPerson", + "FlowActionPipedriveAddPersonAction", + "FlowActionPipedriveAddPersonParams", + "FlowActionPipedriveAddPersonParamsFields", + "FlowActionPipedriveAddPersonParamsOrganizationId", + "FlowActionPipedriveAddPersonParamsOwnerId", + "FlowActionPipedriveAddPersonType", + "FlowActionSalesforce", + "FlowActionSalesforceCreateLead", + "FlowActionSalesforceCreateLeadAction", + "FlowActionSalesforceCreateLeadParams", + "FlowActionSalesforceCreateLeadParamsPayload", + "FlowActionSalesforceCreateLeadType", + "FlowActionSalesforceGetLead", + "FlowActionSalesforceGetLeadAction", + "FlowActionSalesforceGetLeadParams", + "FlowActionSalesforceGetLeadType", + "FlowActionSalesforceSearchLeads", + "FlowActionSalesforceSearchLeadsAction", + "FlowActionSalesforceSearchLeadsParams", + "FlowActionSalesforceSearchLeadsParamsSearchField", + "FlowActionSalesforceSearchLeadsType", + "FlowActionSalesforceUpdateLead", + "FlowActionSalesforceUpdateLeadAction", + "FlowActionSalesforceUpdateLeadParams", + "FlowActionSalesforceUpdateLeadParamsPayload", + "FlowActionSalesforceUpdateLeadType", + "FlowActionSendgrid", + "FlowActionSendgridSendEmail", + "FlowActionSendgridSendEmailAction", + "FlowActionSendgridSendEmailParams", + "FlowActionSendgridSendEmailParamsPerson", + "FlowActionSendgridSendEmailType", + "FlowActionSlack", + "FlowActionSlackPostMessage", + "FlowActionSlackPostMessageAction", + "FlowActionSlackPostMessageParams", + "FlowActionSlackPostMessageParamsAttachment", + "FlowActionSlackPostMessageParamsAttachmentColor", + "FlowActionSlackPostMessageParamsAttachmentField", + "FlowActionSlackPostMessageType", + "FlowActionStripe", + "FlowActionStripeAddTaxId", + "FlowActionStripeAddTaxIdAction", + "FlowActionStripeAddTaxIdParams", + "FlowActionStripeAddTaxIdType", + "FlowActionStripeAddress", + "FlowActionStripeCreateCustomer", + "FlowActionStripeCreateCustomerAction", + "FlowActionStripeCreateCustomerParams", + "FlowActionStripeCreateCustomerType", + "FlowActionStripeCreatePortalSession", + "FlowActionStripeCreatePortalSessionAction", + "FlowActionStripeCreatePortalSessionParams", + "FlowActionStripeCreatePortalSessionType", + "FlowActionStripeDeleteTaxId", + "FlowActionStripeDeleteTaxIdAction", + "FlowActionStripeDeleteTaxIdParams", + "FlowActionStripeDeleteTaxIdType", + "FlowActionStripeFindCustomers", + "FlowActionStripeFindCustomersAction", + "FlowActionStripeFindCustomersParams", + "FlowActionStripeFindCustomersType", + "FlowActionStripeGetCustomer", + "FlowActionStripeGetCustomerAction", + "FlowActionStripeGetCustomerParams", + "FlowActionStripeGetCustomerType", + "FlowActionStripeMetadata", + "FlowActionStripeTaxId", + "FlowActionStripeUpdateCustomer", + "FlowActionStripeUpdateCustomerAction", + "FlowActionStripeUpdateCustomerParams", + "FlowActionStripeUpdateCustomerType", + "FlowActionTelegram", + "FlowActionTelegramSendMessage", + "FlowActionTelegramSendMessageAction", + "FlowActionTelegramSendMessageParams", + "FlowActionTelegramSendMessageType", + "FlowActionTwilio", + "FlowActionTwilioMakeCall", + "FlowActionTwilioMakeCallAction", + "FlowActionTwilioMakeCallParams", + "FlowActionTwilioMakeCallType", + "FlowActionTwilioSendSms", + "FlowActionTwilioSendSmsAction", + "FlowActionTwilioSendSmsParams", + "FlowActionTwilioSendSmsType", + "FlowActionWhatsapp", + "FlowActionWhatsappSendMessage", + "FlowActionWhatsappSendMessageAction", + "FlowActionWhatsappSendMessageParams", + "FlowActionWhatsappSendMessageParamsPayload", + "FlowActionWhatsappSendMessageParamsPayloadObject", + "FlowActionWhatsappSendMessageParamsType", + "FlowActionWhatsappSendMessageType", + "FlowActionXml", + "FlowActionXmlParseXml", + "FlowActionXmlParseXmlAction", + "FlowActionXmlParseXmlParams", + "FlowActionXmlParseXmlType", + "FlowActionXmlSerializeXml", + "FlowActionXmlSerializeXmlAction", + "FlowActionXmlSerializeXmlParams", + "FlowActionXmlSerializeXmlParamsObject", + "FlowActionXmlSerializeXmlParamsObjectObject", + "FlowActionXmlSerializeXmlType", + "FlowActionZapier", + "FlowActionZapierTriggerWebhook", + "FlowActionZapierTriggerWebhookAction", + "FlowActionZapierTriggerWebhookParams", + "FlowActionZapierTriggerWebhookParamsMethod", + "FlowActionZapierTriggerWebhookType", + "FlowExecutionDebug", + "FlowExecutionSummary", + "FlowSummary", + "FlowsVaultConnectioSetupApiKey", + "FlowsVaultConnectioSetupApiKeyWithBaseUrl", + "FlowsVaultConnectioSetupBigqueryOauthJwt", + "FlowsVaultConnectioSetupHttpBearer", + "FlowsVaultConnectioSetupJwt", + "FlowsVaultConnectioSetupJwtAlgorithmEnum", + "FlowsVaultConnectioSetupMailjetApiKey", + "FlowsVaultConnectioSetupOauthApp", + "FlowsVaultConnectioSetupOauthCode", + "FlowsVaultConnectioSetupSecretApiKey", + "FlowsVaultConnectioSetupStripeKeyPair", + "FlowsVaultConnectioSetupToken", + "FlowsVaultConnectioSetupTwilioApiKey", + "FlowsVaultConnectioSetupTypeApiKeyEnum", + "FlowsVaultConnectioSetupTypeBearerEnum", + "FlowsVaultConnectioSetupTypeJwtEnum", + "FlowsVaultConnectioSetupTypeKeyPairEnum", + "FlowsVaultConnectioSetupTypeOauthAppEnum", + "FlowsVaultConnectioSetupTypeOauthCodeEnum", + "FlowsVaultConnectioSetupTypeOauthJwtEnum", + "FlowsVaultConnectioSetupTypeTokenEnum", + "FlowsVaultConnectioSetupTypeWebhookEnum", + "FlowsVaultConnectioSetupWebhook", + "FlowsVaultConnectionAppIdActivecampaignEnum", + "FlowsVaultConnectionAppIdAirtableEnum", + "FlowsVaultConnectionAppIdAuth0Enum", + "FlowsVaultConnectionAppIdBigqueryEnum", + "FlowsVaultConnectionAppIdClearbitEnum", + "FlowsVaultConnectionAppIdDocusignEnum", + "FlowsVaultConnectionAppIdGoogleSheetsEnum", + "FlowsVaultConnectionAppIdHttpEnum", + "FlowsVaultConnectionAppIdHubspotEnum", + "FlowsVaultConnectionAppIdJwtEnum", + "FlowsVaultConnectionAppIdMailchimpEnum", + "FlowsVaultConnectionAppIdMailjetEnum", + "FlowsVaultConnectionAppIdPipedriveEnum", + "FlowsVaultConnectionAppIdSalesforceEnum", + "FlowsVaultConnectionAppIdSendgridEnum", + "FlowsVaultConnectionAppIdSlackEnum", + "FlowsVaultConnectionAppIdStripeEnum", + "FlowsVaultConnectionAppIdTelegramEnum", + "FlowsVaultConnectionAppIdTwilioEnum", + "FlowsVaultConnectionAppIdWhatsappEnum", + "FlowsVaultConnectionAppIdZapierEnum", + "FlowsVaultConnectionHttpApiKeySetup", + "FlowsVaultConnectionHttpApiKeySetupInEnum", + "FlowsVaultConnectionHttpBasicAuthSetup", + "FlowsVaultConnectionHttpOauthClientCredentialsSetup", + "FlowsVaultConnectionSetupTypeApiKeyEnum", + "FlowsVaultConnectionSetupTypeBasicAuthEnum", + "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum", + "FlowsVaultConnectionSummary", + "ForbiddenError", + "ForbiddenSchema", + "ForbiddenSchemaError", + "FormBlock", + "FormBlockDivider", + "FormBlockDividerConfig", + "FormBlockHtml", + "FormBlockHtmlConfig", + "FormBlockImage", + "FormBlockImageConfig", + "FormBlockImageConfigPositionEnum", + "FormBlockJumpButton", + "FormBlockJumpButtonConfig", + "FormBlockJumpButtonConfigStyle", + "FormBlockNextButton", + "FormBlockNextButtonConfig", + "FormBlockPreviousButton", + "FormBlockPreviousButtonConfig", + "FormBlockResendButton", + "FormBlockResendButtonConfig", + "FormBlockResendButtonConfigTextAlignmentEnum", + "FormBlockRichText", + "FormBlockRichTextConfig", + "FormBlockTypeDividerConst", + "FormBlockTypeHtmlConst", + "FormBlockTypeImageConst", + "FormBlockTypeJumpButtonConst", + "FormBlockTypeNextButtonConst", + "FormBlockTypePreviousButtonConst", + "FormBlockTypeResendButtonConst", + "FormBlockTypeRichTextConst", + "FormComponent", + "FormComponentCategoryBlockConst", + "FormComponentCategoryFieldConst", + "FormComponentCategoryWidgetConst", + "FormEndingNode", + "FormEndingNodeAfterSubmit", + "FormEndingNodeId", + "FormEndingNodeNullable", + "FormEndingNodeRedirection", + "FormEndingNodeResumeFlowTrueConst", + "FormField", + "FormFieldBoolean", + "FormFieldBooleanConfig", + "FormFieldBooleanConfigOptions", + "FormFieldCards", + "FormFieldCardsConfig", + "FormFieldCardsConfigOption", + "FormFieldChoice", + "FormFieldChoiceConfig", + "FormFieldChoiceConfigAllowOther", + "FormFieldChoiceConfigAllowOtherEnabledTrueEnum", + "FormFieldChoiceConfigOption", + "FormFieldCustom", + "FormFieldCustomConfig", + "FormFieldCustomConfigParams", + "FormFieldCustomConfigSchema", + "FormFieldDate", + "FormFieldDateConfig", + "FormFieldDateConfigFormatEnum", + "FormFieldDropdown", + "FormFieldDropdownConfig", + "FormFieldDropdownConfigOption", + "FormFieldEmail", + "FormFieldEmailConfig", + "FormFieldFile", + "FormFieldFileConfig", + "FormFieldFileConfigCategoryEnum", + "FormFieldFileConfigStorage", + "FormFieldFileConfigStorageTypeEnum", + "FormFieldLegal", + "FormFieldLegalConfig", + "FormFieldNumber", + "FormFieldNumberConfig", + "FormFieldPassword", + "FormFieldPasswordConfig", + "FormFieldPasswordConfigHashEnum", + "FormFieldPayment", + "FormFieldPaymentConfig", + "FormFieldPaymentConfigCharge", + "FormFieldPaymentConfigChargeOneOff", + "FormFieldPaymentConfigChargeOneOffCurrencyEnum", + "FormFieldPaymentConfigChargeOneOffOneOff", + "FormFieldPaymentConfigChargeOneOffOneOffAmount", + "FormFieldPaymentConfigChargeSubscription", + "FormFieldPaymentConfigChargeTypeOneOffConst", + "FormFieldPaymentConfigChargeTypeSubscriptionConst", + "FormFieldPaymentConfigCredentials", + "FormFieldPaymentConfigCustomer", + "FormFieldPaymentConfigFieldProperties", + "FormFieldPaymentConfigFields", + "FormFieldPaymentConfigProviderEnum", + "FormFieldPaymentConfigSubscription", + "FormFieldSocial", + "FormFieldSocialConfig", + "FormFieldTel", + "FormFieldTelConfig", + "FormFieldTelConfigStrings", + "FormFieldText", + "FormFieldTextConfig", + "FormFieldTypeBooleanConst", + "FormFieldTypeCardsConst", + "FormFieldTypeChoiceConst", + "FormFieldTypeCustomConst", + "FormFieldTypeDateConst", + "FormFieldTypeDropdownConst", + "FormFieldTypeEmailConst", + "FormFieldTypeFileConst", + "FormFieldTypeLegalConst", + "FormFieldTypeNumberConst", + "FormFieldTypePasswordConst", + "FormFieldTypePaymentConst", + "FormFieldTypeSocialConst", + "FormFieldTypeTelConst", + "FormFieldTypeTextConst", + "FormFieldTypeUrlConst", + "FormFieldUrl", + "FormFieldUrlConfig", + "FormFlow", + "FormFlowConfig", + "FormHiddenField", + "FormLanguages", + "FormLanguagesNullable", + "FormMessages", + "FormMessagesCustom", + "FormMessagesError", + "FormMessagesNullable", + "FormNode", + "FormNodeCoordinates", + "FormNodeList", + "FormNodeListNullable", + "FormNodePointer", + "FormNodeTypeFlowConst", + "FormNodeTypeRouterConst", + "FormNodeTypeStepConst", + "FormRouter", + "FormRouterConfig", + "FormRouterRule", + "FormStartNode", + "FormStartNodeNullable", + "FormStep", + "FormStepComponentList", + "FormStepConfig", + "FormStyle", + "FormStyleNullable", + "FormSummary", + "FormTranslations", + "FormTranslationsNullable", + "FormWidget", + "FormWidgetAuth0VerifiableCredentials", + "FormWidgetAuth0VerifiableCredentialsConfig", + "FormWidgetGMapsAddress", + "FormWidgetGMapsAddressConfig", + "FormWidgetRecaptcha", + "FormWidgetRecaptchaConfig", + "FormWidgetTypeAuth0VerifiableCredentialsConst", + "FormWidgetTypeGMapsAddressConst", + "FormWidgetTypeRecaptchaConst", + "FormsRequestParametersHydrateEnum", + "GetActionExecutionResponseContent", + "GetActionModuleActionsResponseContent", + "GetActionModuleResponseContent", + "GetActionModuleVersionResponseContent", + "GetActionModuleVersionsResponseContent", + "GetActionModulesResponseContent", + "GetActionResponseContent", + "GetActionVersionResponseContent", + "GetActiveUsersCountStatsResponseContent", + "GetAculResponseContent", + "GetAttackProtectionCaptchaResponseContent", + "GetBotDetectionSettingsResponseContent", + "GetBrandingDefaultThemeResponseContent", + "GetBrandingPhoneProviderResponseContent", + "GetBrandingResponseContent", + "GetBrandingThemeResponseContent", + "GetBreachedPasswordDetectionSettingsResponseContent", + "GetBruteForceSettingsResponseContent", + "GetClientCredentialResponseContent", + "GetClientGrantResponseContent", + "GetClientResponseContent", + "GetConnectionEnabledClientsResponseContent", + "GetConnectionProfileResponseContent", + "GetConnectionProfileTemplateResponseContent", + "GetConnectionResponseContent", + "GetCustomDomainResponseContent", + "GetCustomSigningKeysResponseContent", + "GetCustomTextsByLanguageResponseContent", + "GetDefaultCanonicalDomainResponseContent", + "GetDefaultCustomDomainResponseContent", + "GetDefaultDomainResponseContent", + "GetDirectoryProvisioningDefaultMappingResponseContent", + "GetDirectoryProvisioningResponseContent", + "GetEmailProviderResponseContent", + "GetEmailTemplateResponseContent", + "GetEncryptionKeyResponseContent", + "GetEventStreamDeliveryHistoryResponseContent", + "GetEventStreamResponseContent", + "GetFlowExecutionRequestParametersHydrateEnum", + "GetFlowExecutionResponseContent", + "GetFlowRequestParametersHydrateEnum", + "GetFlowResponseContent", + "GetFlowsVaultConnectionResponseContent", + "GetFormResponseContent", + "GetGroupMembersResponseContent", + "GetGroupResponseContent", + "GetGuardianEnrollmentResponseContent", + "GetGuardianFactorDuoSettingsResponseContent", + "GetGuardianFactorPhoneMessageTypesResponseContent", + "GetGuardianFactorPhoneTemplatesResponseContent", + "GetGuardianFactorSmsTemplatesResponseContent", + "GetGuardianFactorsProviderApnsResponseContent", + "GetGuardianFactorsProviderPhoneResponseContent", + "GetGuardianFactorsProviderPhoneTwilioResponseContent", + "GetGuardianFactorsProviderPushNotificationResponseContent", + "GetGuardianFactorsProviderSmsResponseContent", + "GetGuardianFactorsProviderSmsTwilioResponseContent", + "GetGuardianFactorsProviderSnsResponseContent", + "GetHookResponseContent", + "GetHookSecretResponseContent", + "GetJobErrorResponseContent", + "GetJobGenericErrorResponseContent", + "GetJobImportUserError", + "GetJobResponseContent", + "GetJobSummary", + "GetJobUserError", + "GetLogResponseContent", + "GetLogStreamResponseContent", + "GetNetworkAclsResponseContent", + "GetOrganizationAllConnectionResponseContent", + "GetOrganizationByNameResponseContent", + "GetOrganizationClientResponseContent", + "GetOrganizationConnectionResponseContent", + "GetOrganizationDiscoveryDomainByNameResponseContent", + "GetOrganizationDiscoveryDomainResponseContent", + "GetOrganizationInvitationResponseContent", + "GetOrganizationResponseContent", + "GetPartialsResponseContent", + "GetPhoneProviderProtectionResponseContent", + "GetPhoneTemplateResponseContent", + "GetRateLimitPolicyResponseContent", + "GetRefreshTokenResponseContent", + "GetRefreshTokensPaginatedResponseContent", + "GetResourceServerResponseContent", + "GetRiskAssessmentsSettingsNewDeviceResponseContent", + "GetRiskAssessmentsSettingsResponseContent", + "GetRoleResponseContent", + "GetRuleResponseContent", + "GetScimConfigurationDefaultMappingResponseContent", + "GetScimConfigurationResponseContent", + "GetScimTokensResponseContent", + "GetSelfServiceProfileResponseContent", + "GetSessionResponseContent", + "GetSettingsResponseContent", + "GetSigningKeysResponseContent", + "GetSupplementalSignalsResponseContent", + "GetSuspiciousIpThrottlingSettingsResponseContent", + "GetTenantSettingsResponseContent", + "GetTokenExchangeProfileResponseContent", + "GetUniversalLoginTemplate", + "GetUniversalLoginTemplateResponseContent", + "GetUserAttributeProfileResponseContent", + "GetUserAttributeProfileTemplateResponseContent", + "GetUserAuthenticationMethodResponseContent", + "GetUserGroupsPaginatedResponseContent", + "GetUserResponseContent", + "GetVerifiableCredentialTemplateResponseContent", + "GoneError", + "Group", + "GroupMember", + "GroupMemberTypeEnum", + "GroupTypeEnum", + "GuardianEnrollmentDate", + "GuardianEnrollmentFactorEnum", + "GuardianEnrollmentStatus", + "GuardianFactor", + "GuardianFactorNameEnum", + "GuardianFactorPhoneFactorMessageTypeEnum", + "GuardianFactorsProviderPushNotificationProviderDataEnum", + "GuardianFactorsProviderSmsProviderEnum", + "Hook", + "HookDependencies", + "HookTriggerIdEnum", + "HttpCustomHeader", + "Identity", + "IdentityAssertionAuthorizationGrant", + "IdentityProviderEnum", + "IdentityProviderOnlyAuth0Enum", + "ImportEncryptionKeyResponseContent", + "Integration", + "IntegrationFeatureTypeEnum", + "IntegrationRelease", + "IntegrationRequiredParam", + "IntegrationRequiredParamOption", + "IntegrationRequiredParamTypeEnum", + "IntegrationSemVer", + "InternalServerError", + "JobFileFormatEnum", + "LinkedClientConfiguration", + "ListActionBindingsPaginatedResponseContent", + "ListActionTriggersResponseContent", + "ListActionVersionsPaginatedResponseContent", + "ListActionsPaginatedResponseContent", + "ListAculsOffsetPaginatedResponseContent", + "ListAculsResponseContentItem", + "ListBrandingPhoneProvidersResponseContent", + "ListClientConnectionsResponseContent", + "ListClientGrantOrganizationsPaginatedResponseContent", + "ListClientGrantPaginatedResponseContent", + "ListClientsOffsetPaginatedResponseContent", + "ListConnectionProfileTemplateResponseContent", + "ListConnectionProfilesPaginatedResponseContent", + "ListConnectionsCheckpointPaginatedResponseContent", + "ListCustomDomainsResponseContent", + "ListDeviceCredentialsOffsetPaginatedResponseContent", + "ListDirectoryProvisioningsResponseContent", + "ListEncryptionKeyOffsetPaginatedResponseContent", + "ListEventStreamsResponseContent", + "ListFlowExecutionsPaginatedResponseContent", + "ListFlowsOffsetPaginatedResponseContent", + "ListFlowsRequestParametersHydrateEnum", + "ListFlowsVaultConnectionsOffsetPaginatedResponseContent", + "ListFormsOffsetPaginatedResponseContent", + "ListGroupRolesResponseContent", + "ListGroupsPaginatedResponseContent", + "ListGuardianPoliciesResponseContent", + "ListHooksOffsetPaginatedResponseContent", + "ListLogOffsetPaginatedResponseContent", + "ListNetworkAclsOffsetPaginatedResponseContent", + "ListOrganizationAllConnectionsOffsetPaginatedResponseContent", + "ListOrganizationClientGrantsOffsetPaginatedResponseContent", + "ListOrganizationClientsResponseContent", + "ListOrganizationConnectionsOffsetPaginatedResponseContent", + "ListOrganizationDiscoveryDomainsResponseContent", + "ListOrganizationGroupRolesResponseContent", + "ListOrganizationGroupsResponseContent", + "ListOrganizationInvitationsOffsetPaginatedResponseContent", + "ListOrganizationMemberEffectiveRolesResponseContent", + "ListOrganizationMemberRoleSourceGroupsResponseContent", + "ListOrganizationMemberRolesOffsetPaginatedResponseContent", + "ListOrganizationMembersPaginatedResponseContent", + "ListOrganizationRoleGroupsResponseContent", + "ListOrganizationRoleMembersResponseContent", + "ListOrganizationsPaginatedResponseContent", + "ListPhoneTemplatesResponseContent", + "ListRateLimitPoliciesPaginatedResponseContent", + "ListRefreshTokensPaginatedResponseContent", + "ListResourceServerOffsetPaginatedResponseContent", + "ListRoleGroupsResponseContent", + "ListRolePermissionsOffsetPaginatedResponseContent", + "ListRoleUsersPaginatedResponseContent", + "ListRolesCheckpointPaginatedResponseContent", + "ListRolesResponseContent", + "ListRulesOffsetPaginatedResponseContent", + "ListScimConfigurationsResponseContent", + "ListSelfServiceProfileCustomTextResponseContent", + "ListSelfServiceProfilesPaginatedResponseContent", + "ListSynchronizedGroupsResponseContent", + "ListTokenExchangeProfileResponseContent", + "ListUserAttributeProfileTemplateResponseContent", + "ListUserAttributeProfilesPaginatedResponseContent", + "ListUserAuthenticationMethodsOffsetPaginatedResponseContent", + "ListUserBlocksByIdentifierResponseContent", + "ListUserBlocksResponseContent", + "ListUserConnectedAccountsResponseContent", + "ListUserEffectivePermissionRoleSourcesResponseContent", + "ListUserEffectivePermissionsResponseContent", + "ListUserEffectiveRolesResponseContent", + "ListUserGrantsOffsetPaginatedResponseContent", + "ListUserOrganizationsOffsetPaginatedResponseContent", + "ListUserPermissionsOffsetPaginatedResponseContent", + "ListUserRoleSourceGroupsResponseContent", + "ListUserRolesOffsetPaginatedResponseContent", + "ListUserSessionsPaginatedResponseContent", + "ListUsersOffsetPaginatedResponseContent", + "ListVerifiableCredentialTemplatesPaginatedResponseContent", + "Log", + "LogDate", + "LogDateObject", + "LogDetails", + "LogLocationInfo", + "LogSecurityContext", + "LogStreamDatadogEnum", + "LogStreamDatadogRegionEnum", + "LogStreamDatadogResponseSchema", + "LogStreamDatadogSink", + "LogStreamEventBridgeEnum", + "LogStreamEventBridgeResponseSchema", + "LogStreamEventBridgeSink", + "LogStreamEventBridgeSinkRegionEnum", + "LogStreamEventGridEnum", + "LogStreamEventGridRegionEnum", + "LogStreamEventGridResponseSchema", + "LogStreamEventGridSink", + "LogStreamFilter", + "LogStreamFilterGroupNameEnum", + "LogStreamFilterTypeEnum", + "LogStreamHttpContentFormatEnum", + "LogStreamHttpEnum", + "LogStreamHttpResponseSchema", + "LogStreamHttpSink", + "LogStreamMixpanelEnum", + "LogStreamMixpanelRegionEnum", + "LogStreamMixpanelResponseSchema", + "LogStreamMixpanelSink", + "LogStreamMixpanelSinkPatch", + "LogStreamPiiAlgorithmEnum", + "LogStreamPiiConfig", + "LogStreamPiiLogFieldsEnum", + "LogStreamPiiMethodEnum", + "LogStreamResponseSchema", + "LogStreamSegmentEnum", + "LogStreamSegmentResponseSchema", + "LogStreamSegmentSink", + "LogStreamSegmentSinkWriteKey", + "LogStreamSinkPatch", + "LogStreamSplunkEnum", + "LogStreamSplunkResponseSchema", + "LogStreamSplunkSink", + "LogStreamStatusEnum", + "LogStreamSumoEnum", + "LogStreamSumoResponseSchema", + "LogStreamSumoSink", + "ManagementClient", + "MdlPresentationProperties", + "MdlPresentationRequest", + "MdlPresentationRequestProperties", + "MfaPolicyEnum", + "NativeSocialLogin", + "NativeSocialLoginApple", + "NativeSocialLoginApplePatch", + "NativeSocialLoginFacebook", + "NativeSocialLoginFacebookPatch", + "NativeSocialLoginGoogle", + "NativeSocialLoginGooglePatch", + "NativeSocialLoginPatch", + "NetworkAclAction", + "NetworkAclActionAllowEnum", + "NetworkAclActionBlockEnum", + "NetworkAclActionLogEnum", + "NetworkAclActionRedirectEnum", + "NetworkAclMatch", + "NetworkAclMatchConnectingIpv4Cidr", + "NetworkAclMatchConnectingIpv6Cidr", + "NetworkAclMatchIpv4Cidr", + "NetworkAclMatchIpv6Cidr", + "NetworkAclRule", + "NetworkAclRuleScopeEnum", + "NetworkAclsResponseContent", + "NotFoundError", + "NotFoundErrorBody", + "NotFoundErrorBodyError", + "NotFoundSchema", + "NotFoundSchemaError", + "OauthScope", + "Organization", + "OrganizationAccessLevelEnum", + "OrganizationAccessLevelEnumWithNull", + "OrganizationAllConnectionPost", + "OrganizationBranding", + "OrganizationBrandingColors", + "OrganizationClient", + "OrganizationClientAssociation", + "OrganizationClientGrant", + "OrganizationClientMetadata", + "OrganizationClientMetadataOrganizationUsageEnum", + "OrganizationConnection", + "OrganizationConnectionInformation", + "OrganizationDiscoveryDomain", + "OrganizationDiscoveryDomainStatus", + "OrganizationEnabledConnection", + "OrganizationInvitation", + "OrganizationInvitationInvitee", + "OrganizationInvitationInviter", + "OrganizationMember", + "OrganizationMemberEffectiveRole", + "OrganizationMemberEffectiveRoleSource", + "OrganizationMemberRole", + "OrganizationMetadata", + "OrganizationThirdPartyClientAccessEnum", + "OrganizationUsageEnum", + "PartialGroupsEnum", + "PartialPhoneTemplateContent", + "PasswordCharacterTypeEnum", + "PasswordCharacterTypeRulePolicyEnum", + "PasswordDefaultDictionariesEnum", + "PasswordIdenticalCharactersPolicyEnum", + "PasswordMaxLengthExceededPolicyEnum", + "PasswordSequentialCharactersPolicyEnum", + "PatchClientCredentialResponseContent", + "PatchPhoneProviderProtectionResponseContent", + "PatchRateLimitPolicyConfigurationRequestContent", + "PatchRateLimitPolicyConfigurationRequestContentAction", + "PatchRateLimitPolicyConfigurationRequestContentActionAction", + "PatchRateLimitPolicyConfigurationRequestContentOne", + "PatchRateLimitPolicyConfigurationRequestContentOneAction", + "PatchRateLimitPolicyConfigurationRequestContentZero", + "PatchRateLimitPolicyConfigurationRequestContentZeroAction", + "PatchSupplementalSignalsResponseContent", + "PaymentRequiredError", + "PermissionRequestPayload", + "PermissionsResponsePayload", + "PhoneAttribute", + "PhoneAttributeIdentifier", + "PhoneProviderChannelEnum", + "PhoneProviderConfiguration", + "PhoneProviderCredentials", + "PhoneProviderDeliveryMethodEnum", + "PhoneProviderNameEnum", + "PhoneProviderProtectionBackoffStrategyEnum", + "PhoneProviderSchemaMasked", + "PhoneTemplate", + "PhoneTemplateBody", + "PhoneTemplateContent", + "PhoneTemplateNotificationTypeEnum", + "PostClientCredentialResponseContent", + "PostConnectionKeysAlgEnum", + "PostConnectionKeysRequestContent", + "PostConnectionsKeysResponseContent", + "PostConnectionsKeysResponseContentItem", + "PreconditionFailedError", + "PreferredAuthenticationMethodEnum", + "PreviewCimdMetadataResponseContent", + "PromptGroupNameEnum", + "PromptLanguageEnum", + "PublicKeyCredential", + "PublicKeyCredentialAlgorithmEnum", + "PublicKeyCredentialTypeEnum", + "RateLimitPolicy", + "RateLimitPolicyConfiguration", + "RateLimitPolicyConfigurationAction", + "RateLimitPolicyConfigurationActionAction", + "RateLimitPolicyConfigurationOne", + "RateLimitPolicyConfigurationOneAction", + "RateLimitPolicyConfigurationZero", + "RateLimitPolicyConfigurationZeroAction", + "RateLimitPolicyConsumerEnum", + "RateLimitPolicyResourceEnum", + "RefreshTokenDate", + "RefreshTokenDateObject", + "RefreshTokenDevice", + "RefreshTokenExpirationTypeEnum", + "RefreshTokenMetadata", + "RefreshTokenResourceServer", + "RefreshTokenResponseContent", + "RefreshTokenRotationTypeEnum", + "RefreshTokenSessionId", + "RegenerateUsersRecoveryCodeResponseContent", + "RegisterCimdClientResponseContent", + "ResetPhoneTemplateRequestContent", + "ResetPhoneTemplateResponseContent", + "ResourceServer", + "ResourceServerAuthorizationPolicy", + "ResourceServerConsentPolicyEnum", + "ResourceServerProofOfPossession", + "ResourceServerProofOfPossessionMechanismEnum", + "ResourceServerProofOfPossessionRequiredForEnum", + "ResourceServerScope", + "ResourceServerSubjectTypeAuthorization", + "ResourceServerSubjectTypeAuthorizationClient", + "ResourceServerSubjectTypeAuthorizationClientPolicyEnum", + "ResourceServerSubjectTypeAuthorizationUser", + "ResourceServerSubjectTypeAuthorizationUserPolicyEnum", + "ResourceServerTokenDialectResponseEnum", + "ResourceServerTokenDialectSchemaEnum", + "ResourceServerTokenEncryption", + "ResourceServerTokenEncryptionAlgorithmEnum", + "ResourceServerTokenEncryptionFormatEnum", + "ResourceServerTokenEncryptionKey", + "ResourceServerVerificationKeyPemCertificate", + "RevokedSigningKeysResponseContent", + "Role", + "RoleGroup", + "RoleMember", + "RoleTypeEnum", + "RoleUser", + "RollbackActionModuleResponseContent", + "RotateClientSecretResponseContent", + "RotateConnectionKeysRequestContent", + "RotateConnectionKeysSigningAlgEnum", + "RotateConnectionsKeysResponseContent", + "RotateSigningKeysResponseContent", + "Rule", + "RulesConfig", + "ScimConfiguration", + "ScimMappingItem", + "ScimTokenItem", + "ScreenGroupNameEnum", + "SearchEngineVersionsEnum", + "SelfServiceProfile", + "SelfServiceProfileAllowedStrategyEnum", + "SelfServiceProfileBranding", + "SelfServiceProfileBrandingColors", + "SelfServiceProfileBrandingProperties", + "SelfServiceProfileCustomTextLanguageEnum", + "SelfServiceProfileCustomTextPageEnum", + "SelfServiceProfileDescription", + "SelfServiceProfileSsoTicketConnectionConfig", + "SelfServiceProfileSsoTicketConnectionOptions", + "SelfServiceProfileSsoTicketDomainAliasesConfig", + "SelfServiceProfileSsoTicketDomainVerificationEnum", + "SelfServiceProfileSsoTicketEnabledFeatures", + "SelfServiceProfileSsoTicketEnabledOrganization", + "SelfServiceProfileSsoTicketGoogleWorkspaceConfig", + "SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum", + "SelfServiceProfileSsoTicketIdpInitiatedOptions", + "SelfServiceProfileSsoTicketProvisioningConfig", + "SelfServiceProfileSsoTicketProvisioningScopeEnum", + "SelfServiceProfileUserAttribute", + "SelfServiceProfileUserAttributes", + "ServiceUnavailableError", + "SessionActorClaimValue", + "SessionActorMetadata", + "SessionAuthenticationSignal", + "SessionAuthenticationSignals", + "SessionClientMetadata", + "SessionCookieMetadata", + "SessionCookieMetadataModeEnum", + "SessionCookieModeEnum", + "SessionCookieSchema", + "SessionDate", + "SessionDeviceMetadata", + "SessionIp", + "SessionMetadata", + "SessionResponseContent", + "SetCustomSigningKeysResponseContent", + "SetEmailTemplateResponseContent", + "SetGuardianFactorDuoSettingsResponseContent", + "SetGuardianFactorPhoneMessageTypesResponseContent", + "SetGuardianFactorPhoneTemplatesResponseContent", + "SetGuardianFactorResponseContent", + "SetGuardianFactorSmsTemplatesResponseContent", + "SetGuardianFactorsProviderPhoneResponseContent", + "SetGuardianFactorsProviderPhoneTwilioResponseContent", + "SetGuardianFactorsProviderPushNotificationApnsResponseContent", + "SetGuardianFactorsProviderPushNotificationFcmResponseContent", + "SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent", + "SetGuardianFactorsProviderPushNotificationResponseContent", + "SetGuardianFactorsProviderPushNotificationSnsResponseContent", + "SetGuardianFactorsProviderSmsResponseContent", + "SetGuardianFactorsProviderSmsTwilioResponseContent", + "SetGuardianPoliciesRequestContent", + "SetGuardianPoliciesResponseContent", + "SetNetworkAclsResponseContent", + "SetPartialsRequestContent", + "SetRulesConfigResponseContent", + "SetSelfServiceProfileCustomTextRequestContent", + "SetSelfServiceProfileCustomTextResponseContent", + "SetUserAuthenticationMethodResponseContent", + "SetUserAuthenticationMethods", + "SetUserAuthenticationMethodsRequestContent", + "SetsCustomTextsByLanguageRequestContent", + "SigningAlgorithmEnum", + "SigningKeys", + "SigningKeysDate", + "SignupSchema", + "SignupStatusEnum", + "SignupVerification", + "SignupVerified", + "SupportedLocales", + "SuspiciousIpThrottlingAllowlist", + "SuspiciousIpThrottlingAllowlistItem", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage", + "SuspiciousIpThrottlingPreLoginStage", + "SuspiciousIpThrottlingPreUserRegistrationStage", + "SuspiciousIpThrottlingShieldsEnum", + "SuspiciousIpThrottlingStage", + "SynchronizeGroupsEnum", + "SynchronizedGroupPayload", + "TenantOidcLogoutSettings", + "TenantSettingsCountryCodes", + "TenantSettingsCountryCodesMode", + "TenantSettingsCountryCodesModeResponse", + "TenantSettingsCountryCodesResponse", + "TenantSettingsDeviceFlow", + "TenantSettingsDeviceFlowCharset", + "TenantSettingsDynamicClientRegistrationSecurityMode", + "TenantSettingsErrorPage", + "TenantSettingsFlags", + "TenantSettingsGuardianPage", + "TenantSettingsMtls", + "TenantSettingsNullableSecurityHeaders", + "TenantSettingsPasswordPage", + "TenantSettingsResourceParameterProfile", + "TenantSettingsSessions", + "TenantSettingsSupportedLocalesEnum", + "TestActionPayload", + "TestActionResponseContent", + "TestActionResultPayload", + "TestCustomDomainResponseContent", + "TestEventDataContent", + "ThirdPartyClientAccessConfig", + "TokenExchangeProfileResponseContent", + "TokenExchangeProfileTypeEnum", + "TokenProvider", + "TokenQuota", + "TokenQuotaClientCredentials", + "TokenQuotaConfiguration", + "TokenVaultPrivilegedAccessGrant", + "TokenVaultPrivilegedAccessIpAllowlistEntry", + "TooManyRequestsError", + "TooManyRequestsErrorBody", + "TooManyRequestsErrorBodyError", + "TooManyRequestsSchema", + "TooManyRequestsSchemaError", + "TwilioProviderConfiguration", + "TwilioProviderCredentials", + "TwilioProviderDeliveryMethodEnum", + "UnauthorizedError", + "UnauthorizedSchema", + "UnauthorizedSchemaError", + "UniversalLoginExperienceEnum", + "UpdateActionBindingsResponseContent", + "UpdateActionModuleResponseContent", + "UpdateActionResponseContent", + "UpdateAculResponseContent", + "UpdateAttackProtectionCaptchaResponseContent", + "UpdateBotDetectionSettingsResponseContent", + "UpdateBrandingColors", + "UpdateBrandingFont", + "UpdateBrandingPageBackground", + "UpdateBrandingPhoneProviderResponseContent", + "UpdateBrandingResponseContent", + "UpdateBrandingThemeResponseContent", + "UpdateBreachedPasswordDetectionSettingsResponseContent", + "UpdateBruteForceSettingsResponseContent", + "UpdateClientGrantResponseContent", + "UpdateClientResponseContent", + "UpdateConnectionOptions", + "UpdateConnectionProfileResponseContent", + "UpdateConnectionRequestContentAd", + "UpdateConnectionRequestContentAdfs", + "UpdateConnectionRequestContentAmazon", + "UpdateConnectionRequestContentApple", + "UpdateConnectionRequestContentAuth0", + "UpdateConnectionRequestContentAuth0Oidc", + "UpdateConnectionRequestContentAzureAd", + "UpdateConnectionRequestContentBaidu", + "UpdateConnectionRequestContentBitbucket", + "UpdateConnectionRequestContentBitly", + "UpdateConnectionRequestContentBox", + "UpdateConnectionRequestContentCustom", + "UpdateConnectionRequestContentDaccount", + "UpdateConnectionRequestContentDropbox", + "UpdateConnectionRequestContentDwolla", + "UpdateConnectionRequestContentEmail", + "UpdateConnectionRequestContentEvernote", + "UpdateConnectionRequestContentEvernoteSandbox", + "UpdateConnectionRequestContentExact", + "UpdateConnectionRequestContentFacebook", + "UpdateConnectionRequestContentFitbit", + "UpdateConnectionRequestContentGitHub", + "UpdateConnectionRequestContentGoogleApps", + "UpdateConnectionRequestContentGoogleOAuth2", + "UpdateConnectionRequestContentInstagram", + "UpdateConnectionRequestContentIp", + "UpdateConnectionRequestContentLine", + "UpdateConnectionRequestContentLinkedin", + "UpdateConnectionRequestContentOAuth1", + "UpdateConnectionRequestContentOAuth2", + "UpdateConnectionRequestContentOffice365", + "UpdateConnectionRequestContentOidc", + "UpdateConnectionRequestContentOkta", + "UpdateConnectionRequestContentPaypal", + "UpdateConnectionRequestContentPaypalSandbox", + "UpdateConnectionRequestContentPingFederate", + "UpdateConnectionRequestContentPlanningCenter", + "UpdateConnectionRequestContentSalesforce", + "UpdateConnectionRequestContentSalesforceCommunity", + "UpdateConnectionRequestContentSalesforceSandbox", + "UpdateConnectionRequestContentSaml", + "UpdateConnectionRequestContentSharepoint", + "UpdateConnectionRequestContentShop", + "UpdateConnectionRequestContentShopify", + "UpdateConnectionRequestContentSms", + "UpdateConnectionRequestContentSoundcloud", + "UpdateConnectionRequestContentThirtySevenSignals", + "UpdateConnectionRequestContentTwitter", + "UpdateConnectionRequestContentUntappd", + "UpdateConnectionRequestContentVkontakte", + "UpdateConnectionRequestContentWeibo", + "UpdateConnectionRequestContentWindowsLive", + "UpdateConnectionRequestContentWordpress", + "UpdateConnectionRequestContentYahoo", + "UpdateConnectionRequestContentYandex", + "UpdateConnectionResponseContent", + "UpdateCrossAppAccessResourceApp", + "UpdateCustomDomainResponseContent", + "UpdateDefaultCanonicalDomainResponseContent", + "UpdateDefaultCustomDomainResponseContent", + "UpdateDefaultDomainResponseContent", + "UpdateDirectoryProvisioningRequestContent", + "UpdateDirectoryProvisioningResponseContent", + "UpdateEmailProviderResponseContent", + "UpdateEmailTemplateResponseContent", + "UpdateEnabledClientConnectionsRequestContent", + "UpdateEnabledClientConnectionsRequestContentItem", + "UpdateEventStreamResponseContent", + "UpdateFlowResponseContent", + "UpdateFlowsVaultConnectionResponseContent", + "UpdateFlowsVaultConnectionSetup", + "UpdateFormResponseContent", + "UpdateGuardianFactorDuoSettingsResponseContent", + "UpdateGuardianFactorsProviderPushNotificationApnsResponseContent", + "UpdateGuardianFactorsProviderPushNotificationFcmResponseContent", + "UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent", + "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", + "UpdateHookResponseContent", + "UpdateHookSecretRequestContent", + "UpdateIdentityAssertionAuthorizationGrant", + "UpdateLogStreamResponseContent", + "UpdateNetworkAclResponseContent", + "UpdateOrganizationAllConnectionResponseContent", + "UpdateOrganizationClientResponseContent", + "UpdateOrganizationConnectionResponseContent", + "UpdateOrganizationDiscoveryDomainResponseContent", + "UpdateOrganizationResponseContent", + "UpdatePhoneTemplateResponseContent", + "UpdateRateLimitPolicyResponseContent", + "UpdateRefreshTokenResponseContent", + "UpdateResourceServerResponseContent", + "UpdateRiskAssessmentsSettingsNewDeviceResponseContent", + "UpdateRiskAssessmentsSettingsResponseContent", + "UpdateRoleResponseContent", + "UpdateRuleResponseContent", + "UpdateScimConfigurationResponseContent", + "UpdateSelfServiceProfileResponseContent", + "UpdateSessionResponseContent", + "UpdateSettingsResponseContent", + "UpdateSuspiciousIpThrottlingSettingsResponseContent", + "UpdateTenantSettingsResponseContent", + "UpdateTokenQuota", + "UpdateUniversalLoginTemplateRequestContent", + "UpdateUniversalLoginTemplateRequestContentTemplate", + "UpdateUserAttributeProfileResponseContent", + "UpdateUserAuthenticationMethodResponseContent", + "UpdateUserResponseContent", + "UpdateVerifiableCredentialTemplateResponseContent", + "UserAppMetadataSchema", + "UserAttributeProfile", + "UserAttributeProfileId", + "UserAttributeProfileName", + "UserAttributeProfileOidcMapping", + "UserAttributeProfilePatchUserId", + "UserAttributeProfileSamlMapping", + "UserAttributeProfileStrategyOverrides", + "UserAttributeProfileStrategyOverridesMapping", + "UserAttributeProfileStrategyOverridesUserId", + "UserAttributeProfileStrategyOverridesUserIdMapping", + "UserAttributeProfileTemplate", + "UserAttributeProfileTemplateItem", + "UserAttributeProfileUserAttributeAdditionalProperties", + "UserAttributeProfileUserAttributes", + "UserAttributeProfileUserId", + "UserAttributeProfileUserIdOidcMappingEnum", + "UserAttributeProfileUserIdOidcStrategyOverrideMapping", + "UserAttributeProfileUserIdSamlMapping", + "UserAuthenticationMethod", + "UserAuthenticationMethodProperties", + "UserAuthenticationMethodPropertiesEnum", + "UserBlockIdentifier", + "UserEffectivePermissionResponseContent", + "UserEffectivePermissionRoleSourceEnum", + "UserEffectivePermissionRoleSourceResponseContent", + "UserEffectivePermissionSourceEnum", + "UserEffectiveRole", + "UserEffectiveRoleSource", + "UserEnrollmentAuthMethodEnum", + "UserEnrollmentStatusEnum", + "UserGrant", + "UserGroupsResponseSchema", + "UserId", + "UserIdentity", + "UserIdentityProviderEnum", + "UserIdentitySchema", + "UserListLogOffsetPaginatedResponseContent", + "UserMetadata", + "UserMetadataSchema", + "UserMultifactorProviderEnum", + "UserPermissionSchema", + "UserProfileData", + "UserResponseSchema", + "UsernameAllowedTypes", + "UsernameAttribute", + "UsernameAttributeIdentifier", + "UsernameValidation", + "UsersEnrollment", + "VerifiableCredentialTemplateResponse", + "VerificationMethodEnum", + "VerifyCustomDomainResponseContent", + "VerifyEmailTicketResponseContent", + "X509CertificateCredential", + "X509CertificateCredentialTypeEnum", + "XssProtectionConfig", + "XssProtectionMode", + "__version__", + "actions", + "anomaly", + "attack_protection", + "branding", + "client_grants", + "clients", + "connection_profiles", + "connections", + "custom_domains", + "device_credentials", + "email_templates", + "emails", + "event_streams", + "events", + "flows", + "forms", + "groups", + "guardian", + "hooks", + "jobs", + "keys", + "log_streams", + "logs", + "network_acls", + "organizations", + "prompts", + "rate_limit_policies", + "refresh_tokens", + "resource_servers", + "risk_assessments", + "roles", + "rules", + "rules_configs", + "self_service_profiles", + "sessions", + "stats", + "supplemental_signals", + "tenants", + "tickets", + "token_exchange_profiles", + "user_attribute_profiles", + "user_blocks", + "user_grants", + "users", + "verifiable_credentials", + ] diff --git a/UPGRADING.md b/UPGRADING.md new file mode 100644 index 00000000..ed653dbf --- /dev/null +++ b/UPGRADING.md @@ -0,0 +1,157 @@ +# v6 Migration Guide + +A guide to migrating the Auth0 Python SDK from v5 to v6. + +- [Overall changes](#overall-changes) +- [Breaking changes](#breaking-changes) + - [Federated connections tokensets removed](#federated-connections-tokensets-removed) + - [`federated_connections_access_tokens` field removed](#federated_connections_access_tokens-field-removed) + - [`read:federated_connections_tokens` / `delete:federated_connections_tokens` scopes removed](#readfederated_connections_tokens--deletefederated_connections_tokens-scopes-removed) + - [`ClientSessionTransferDelegationDeviceBindingEnum` narrowed](#clientsessiontransferdelegationdevicebindingenum-narrowed) + - [`ConnectionAttributeIdentifier` split into three types](#connectionattributeidentifier-split-into-three-types) + - [`PhoneProviderProtectionBackoffStrategyEnum` value renamed](#phoneproviderprotectionbackoffstrategyenum-value-renamed) + - [`ListRolesOffsetPaginatedResponseContent` pagination fields now required](#listrolesoffsetpaginatedresponsecontent-pagination-fields-now-required) + +## Overall changes + +v6 removes one deprecated Management API surface (federated connections +tokensets) and tightens a handful of generated types to match the current +Auth0 Management API contract. Most applications will only be affected if +they use the specific types or endpoints listed below. + +The Authentication API is not affected by this release. + +## Breaking changes + +### Federated connections tokensets removed + +The `users.federated_connections_tokensets` sub-client and its `list`/`delete` +methods have been removed, along with the `FederatedConnectionTokenSet` and +`ConnectionFederatedConnectionsAccessTokens` types. This endpoint is no longer +part of the Auth0 Management API. + +```python +# v5 +client.users.federated_connections_tokensets.list(id="user_id") +client.users.federated_connections_tokensets.delete(id="user_id", tokenset_id="tokenset_id") +``` + +```python +# v6 +# No replacement — the endpoint has been removed from the Management API. +``` + +If you depend on this functionality, do not upgrade until you have confirmed +an alternative with Auth0 support. + +### `federated_connections_access_tokens` field removed + +The optional `federated_connections_access_tokens` field has been removed +from: + +- `ConnectionOptionsAzureAd` +- `ConnectionOptionsCommonOidc` +- `ConnectionOptionsGoogleApps` +- `ConnectionPropertiesOptions` +- `UpdateConnectionOptions` + +Any code reading or setting this field on the above types will need to +remove that usage. Note that these models are configured with +`extra="allow"`, so passing `federated_connections_access_tokens` is **not** +silently dropped — it is retained on the model and still serialized into the +outbound request. Remove the field explicitly rather than relying on the SDK +to strip it. + +### `read:federated_connections_tokens` / `delete:federated_connections_tokens` scopes removed + +These two values are no longer valid members of `OauthScope`. Remove any +references to them when requesting or checking scopes. + +### `ClientSessionTransferDelegationDeviceBindingEnum` narrowed + +The `"asn"` literal value has been removed. The enum now only accepts `"ip"`: + +```python +# v5 +ClientSessionTransferDelegationDeviceBindingEnum = typing.Union[typing.Literal["ip", "asn"], typing.Any] +``` + +```python +# v6 +ClientSessionTransferDelegationDeviceBindingEnum = typing.Union[typing.Literal["ip"], typing.Any] +``` + +If you were setting this value to `"asn"`, update it to `"ip"` — this matches +the current Management API's accepted values. + +### `ConnectionAttributeIdentifier` split into three types + +`ConnectionAttributeIdentifier` has been removed with no compatibility alias. +It is replaced by three narrower types, one per attribute: + +| Attribute field | v5 type | v6 type | Shape | +| --- | --- | --- | --- | +| `EmailAttribute.identifier` | `ConnectionAttributeIdentifier` | `EmailAttributeIdentifier` | `{active?, default_method?: DefaultMethodEmailIdentifierEnum}` | +| `PhoneAttribute.identifier` | `ConnectionAttributeIdentifier` | `PhoneAttributeIdentifier` | `{active?, default_method?: DefaultMethodPhoneNumberIdentifierEnum}` | +| `UsernameAttribute.identifier` | `ConnectionAttributeIdentifier` | `UsernameAttributeIdentifier` | `{active?}` (no `default_method`) | + +```python +# v5 +from auth0.management.types import ConnectionAttributeIdentifier + +identifier = ConnectionAttributeIdentifier(active=True, default_method="email_otp") +``` + +```python +# v6 +from auth0.management.types import EmailAttributeIdentifier + +identifier = EmailAttributeIdentifier(active=True, default_method="email_otp") +``` + +`EmailAttributeIdentifier` has the same shape as the old +`ConnectionAttributeIdentifier` and is a drop-in replacement for code that +was only ever used with `EmailAttribute`. Code using +`ConnectionAttributeIdentifier` with `PhoneAttribute` or `UsernameAttribute` +must switch to `PhoneAttributeIdentifier` or `UsernameAttributeIdentifier` +respectively; `UsernameAttributeIdentifier` does not support +`default_method`. + +### `PhoneProviderProtectionBackoffStrategyEnum` value renamed + +The `"none"` literal has been replaced with `"default"`: + +```python +# v5 +PhoneProviderProtectionBackoffStrategyEnum = typing.Union[typing.Literal["exponential", "none"], typing.Any] +``` + +```python +# v6 +PhoneProviderProtectionBackoffStrategyEnum = typing.Union[typing.Literal["exponential", "default"], typing.Any] +``` + +Replace any use of `"none"` with `"default"`. + +### `ListRolesOffsetPaginatedResponseContent` pagination fields now required + +`start`, `limit`, and `total` are no longer optional: + +```python +# v5 +start: typing.Optional[float] = None +limit: typing.Optional[float] = None +total: typing.Optional[float] = None +``` + +```python +# v6 +start: float +limit: float +total: float +``` + +Deserializing a role-list response that is missing any of these fields now +raises `pydantic.ValidationError` instead of silently defaulting to `None`. +This matches the Management API, which always returns these fields for this +endpoint. diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index a592fee1..ce199b0a 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -1875,6 +1875,8 @@ FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, + FedCmLoginGooglePatch, + FedCmLoginPatch, FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, @@ -3227,6 +3229,8 @@ from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient from .token_provider import AsyncTokenProvider, TokenProvider from .version import __version__ + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", @@ -4275,6 +4279,7 @@ "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainHeader": ".management_client", @@ -5108,6 +5113,8 @@ "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", @@ -7520,6 +7527,7 @@ def __dir__(): "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", + "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainHeader", @@ -8353,6 +8361,8 @@ def __dir__(): "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", + "FedCmLoginGooglePatch", + "FedCmLoginPatch", "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts", diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py index abce2c81..53265612 100644 --- a/src/auth0/management/core/client_wrapper.py +++ b/src/auth0/management/core/client_wrapper.py @@ -1,6 +1,11 @@ # This file was auto-generated by Fern from our API Definition. +# Modified by Auth0 to use Auth0 telemetry format with dynamic versioning +import base64 +import platform +import sys import typing +from json import dumps import httpx from .http_client import AsyncHttpClient, HttpClient