From eeddfe288eff804d0f99061acbb05a24d44d01ac Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 07:07:31 +0000 Subject: [PATCH 1/4] [fern-generated] Update SDK Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.17.0 --- UPGRADING.md | 157 ------------------ reference.md | 58 ++++++- src/auth0/management/__init__.py | 66 ++++++-- .../management/branding/themes/client.py | 17 ++ .../management/branding/themes/raw_client.py | 25 +++ src/auth0/management/clients/client.py | 22 ++- src/auth0/management/clients/raw_client.py | 38 ++++- src/auth0/management/connections/client.py | 18 ++ .../management/connections/raw_client.py | 30 ++++ src/auth0/management/core/client_wrapper.py | 22 +-- .../sso_ticket/client.py | 9 + .../sso_ticket/raw_client.py | 13 ++ src/auth0/management/types/__init__.py | 58 +++++++ .../types/branding_theme_identifiers.py | 27 +++ ...ng_theme_identifiers_login_display_enum.py | 5 + ...randing_theme_identifiers_phone_display.py | 26 +++ ...entifiers_phone_display_formatting_enum.py | 7 + ..._identifiers_phone_display_masking_enum.py | 7 + src/auth0/management/types/client.py | 2 + .../management/types/client_app_type_enum.py | 1 + .../types/client_grant_subject_type_enum.py | 2 +- ...onnection_cross_app_access_resource_app.py | 24 +++ ...oss_app_access_resource_app_status_enum.py | 5 + .../management/types/connection_for_list.py | 2 + .../types/connection_response_content_oidc.py | 2 + .../create_branding_theme_response_content.py | 2 + .../types/create_client_response_content.py | 2 + .../create_connection_request_content_oidc.py | 2 + .../create_connection_response_content.py | 2 + .../create_cross_app_access_resource_app.py | 24 +++ ..._identity_assertion_authorization_grant.py | 26 +++ .../types/cross_app_access_resource_app.py | 24 +++ ...oss_app_access_resource_app_status_enum.py | 5 + ...branding_default_theme_response_content.py | 2 + .../get_branding_theme_response_content.py | 2 + .../types/get_client_response_content.py | 2 + .../types/get_connection_response_content.py | 2 + .../types/get_session_response_content.py | 2 + .../identity_assertion_authorization_grant.py | 26 +++ .../rotate_client_secret_response_content.py | 2 + .../types/session_actor_claim_value.py | 5 + .../types/session_actor_metadata.py | 26 +++ .../types/session_response_content.py | 2 + ...ottling_pre_custom_token_exchange_stage.py | 31 ++++ .../types/suspicious_ip_throttling_stage.py | 6 + .../types/third_party_client_access_config.py | 26 +++ .../update_branding_theme_response_content.py | 2 + .../types/update_client_response_content.py | 2 + .../update_connection_request_content_oidc.py | 2 + .../update_connection_response_content.py | 2 + .../update_cross_app_access_resource_app.py | 24 +++ ..._identity_assertion_authorization_grant.py | 26 +++ .../types/update_session_response_content.py | 2 + wiremock/wiremock-mappings.json | 38 ++--- 54 files changed, 753 insertions(+), 209 deletions(-) delete mode 100644 UPGRADING.md create mode 100644 src/auth0/management/types/branding_theme_identifiers.py create mode 100644 src/auth0/management/types/branding_theme_identifiers_login_display_enum.py create mode 100644 src/auth0/management/types/branding_theme_identifiers_phone_display.py create mode 100644 src/auth0/management/types/branding_theme_identifiers_phone_display_formatting_enum.py create mode 100644 src/auth0/management/types/branding_theme_identifiers_phone_display_masking_enum.py create mode 100644 src/auth0/management/types/connection_cross_app_access_resource_app.py create mode 100644 src/auth0/management/types/connection_cross_app_access_resource_app_status_enum.py create mode 100644 src/auth0/management/types/create_cross_app_access_resource_app.py create mode 100644 src/auth0/management/types/create_identity_assertion_authorization_grant.py create mode 100644 src/auth0/management/types/cross_app_access_resource_app.py create mode 100644 src/auth0/management/types/cross_app_access_resource_app_status_enum.py create mode 100644 src/auth0/management/types/identity_assertion_authorization_grant.py create mode 100644 src/auth0/management/types/session_actor_claim_value.py create mode 100644 src/auth0/management/types/session_actor_metadata.py create mode 100644 src/auth0/management/types/suspicious_ip_throttling_pre_custom_token_exchange_stage.py create mode 100644 src/auth0/management/types/third_party_client_access_config.py create mode 100644 src/auth0/management/types/update_cross_app_access_resource_app.py create mode 100644 src/auth0/management/types/update_identity_assertion_authorization_grant.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 597e623a..4255fd88 100644 --- a/reference.md +++ b/reference.md @@ -1528,7 +1528,7 @@ client.clients.list(
-**external_client_id:** `typing.Optional[str]` — Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. +**external_client_id:** `typing.Optional[str]` — Optional filter by the Client ID Metadata Document URI for CIMD-registered clients.
@@ -2026,6 +2026,14 @@ See https://auth0.com/docs/secure/security-guidance/measures-against-app-imperso
+**identity_assertion_authorization_grant:** `typing.Optional[CreateIdentityAssertionAuthorizationGrant]` + +
+
+ +
+
+ **third_party_security_mode:** `typing.Optional[ClientThirdPartySecurityModeEnum]`
@@ -2726,6 +2734,14 @@ client.clients.update(
+**identity_assertion_authorization_grant:** `typing.Optional[UpdateIdentityAssertionAuthorizationGrant]` + +
+
+ +
+
+ **form_template:** `typing.Optional[str]` — Form template for WS-Federation protocol
@@ -3915,6 +3931,14 @@ client.connections.create(
+**cross_app_access_resource_app:** `typing.Optional[CreateCrossAppAccessResourceApp]` + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -4236,6 +4260,14 @@ client.connections.update(
+**cross_app_access_resource_app:** `typing.Optional[UpdateCrossAppAccessResourceApp]` + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -20137,6 +20169,14 @@ client.branding.themes.create(
+**identifiers:** `typing.Optional[BrandingThemeIdentifiers]` + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -20537,6 +20577,14 @@ client.branding.themes.update(
+**identifiers:** `typing.Optional[BrandingThemeIdentifiers]` + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -35837,6 +35885,14 @@ client.self_service_profiles.sso_ticket.create(
+**third_party_client_access_config:** `typing.Optional[ThirdPartyClientAccessConfig]` + +
+
+ +
+
+ **enabled_features:** `typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures]`
diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index 625c683e..1ffc57d9 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -110,6 +110,11 @@ BrandingThemeFontSubtitle, BrandingThemeFontTitle, BrandingThemeFonts, + BrandingThemeIdentifiers, + BrandingThemeIdentifiersLoginDisplayEnum, + BrandingThemeIdentifiersPhoneDisplay, + BrandingThemeIdentifiersPhoneDisplayFormattingEnum, + BrandingThemeIdentifiersPhoneDisplayMaskingEnum, BrandingThemePageBackground, BrandingThemePageBackgroundPageLayoutEnum, BrandingThemeWidget, @@ -320,6 +325,8 @@ ConnectionConnectedAccountsPurposeXaa, ConnectionConnectionSettings, ConnectionConnectionSettingsPkceEnum, + ConnectionCrossAppAccessResourceApp, + ConnectionCrossAppAccessResourceAppStatusEnum, ConnectionCustomHeadersOAuth2, ConnectionCustomScripts, ConnectionDebugSaml, @@ -883,6 +890,7 @@ CreateConnectionRequestContentYandex, CreateConnectionRequestContentYandexStrategy, CreateConnectionResponseContent, + CreateCrossAppAccessResourceApp, CreateCustomDomainResponseContent, CreateDirectoryProvisioningRequestContent, CreateDirectoryProvisioningResponseContent, @@ -978,6 +986,7 @@ CreateGuardianEnrollmentTicketResponseContent, CreateHookResponseContent, CreateHookSecretRequestContent, + CreateIdentityAssertionAuthorizationGrant, CreateImportUsersResponseContent, CreateLogStreamDatadogRequestBody, CreateLogStreamEventBridgeRequestBody, @@ -1018,6 +1027,8 @@ CredentialDeviceTypeEnum, CredentialId, CrossAppAccessRequestingApp, + CrossAppAccessResourceApp, + CrossAppAccessResourceAppStatusEnum, CspDirectives, CspFlag, CspFlags, @@ -2541,6 +2552,7 @@ HookTriggerIdEnum, HttpCustomHeader, Identity, + IdentityAssertionAuthorizationGrant, IdentityProviderEnum, IdentityProviderOnlyAuth0Enum, ImportEncryptionKeyResponseContent, @@ -2849,6 +2861,8 @@ SelfServiceProfileSsoTicketProvisioningScopeEnum, SelfServiceProfileUserAttribute, SelfServiceProfileUserAttributes, + SessionActorClaimValue, + SessionActorMetadata, SessionAuthenticationSignal, SessionAuthenticationSignals, SessionClientMetadata, @@ -2898,6 +2912,7 @@ SupportedLocales, SuspiciousIpThrottlingAllowlist, SuspiciousIpThrottlingAllowlistItem, + SuspiciousIpThrottlingPreCustomTokenExchangeStage, SuspiciousIpThrottlingPreLoginStage, SuspiciousIpThrottlingPreUserRegistrationStage, SuspiciousIpThrottlingShieldsEnum, @@ -2926,6 +2941,7 @@ TestActionResultPayload, TestCustomDomainResponseContent, TestEventDataContent, + ThirdPartyClientAccessConfig, TokenExchangeProfileResponseContent, TokenExchangeProfileTypeEnum, TokenQuota, @@ -3017,6 +3033,7 @@ UpdateConnectionRequestContentYahoo, UpdateConnectionRequestContentYandex, UpdateConnectionResponseContent, + UpdateCrossAppAccessResourceApp, UpdateCustomDomainResponseContent, UpdateDefaultCanonicalDomainResponseContent, UpdateDefaultCustomDomainResponseContent, @@ -3039,6 +3056,7 @@ UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, UpdateHookResponseContent, UpdateHookSecretRequestContent, + UpdateIdentityAssertionAuthorizationGrant, UpdateLogStreamResponseContent, UpdateNetworkAclResponseContent, UpdateOrganizationAllConnectionResponseContent, @@ -3190,8 +3208,6 @@ 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 _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", @@ -3252,8 +3268,6 @@ "AssociateOrganizationClientGrantResponseContent": ".types", "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", - "AsyncManagementClient": ".management_client", - "AsyncTokenProvider": ".token_provider", "AttackProtectionCaptchaArkoseResponseContent": ".types", "AttackProtectionCaptchaAuthChallengeRequest": ".types", "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", @@ -3302,6 +3316,11 @@ "BrandingThemeFontSubtitle": ".types", "BrandingThemeFontTitle": ".types", "BrandingThemeFonts": ".types", + "BrandingThemeIdentifiers": ".types", + "BrandingThemeIdentifiersLoginDisplayEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplay": ".types", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum": ".types", "BrandingThemePageBackground": ".types", "BrandingThemePageBackgroundPageLayoutEnum": ".types", "BrandingThemeWidget": ".types", @@ -3513,6 +3532,8 @@ "ConnectionConnectedAccountsPurposeXaa": ".types", "ConnectionConnectionSettings": ".types", "ConnectionConnectionSettingsPkceEnum": ".types", + "ConnectionCrossAppAccessResourceApp": ".types", + "ConnectionCrossAppAccessResourceAppStatusEnum": ".types", "ConnectionCustomHeadersOAuth2": ".types", "ConnectionCustomScripts": ".types", "ConnectionDebugSaml": ".types", @@ -4077,6 +4098,7 @@ "CreateConnectionRequestContentYandex": ".types", "CreateConnectionRequestContentYandexStrategy": ".types", "CreateConnectionResponseContent": ".types", + "CreateCrossAppAccessResourceApp": ".types", "CreateCustomDomainResponseContent": ".types", "CreateDirectoryProvisioningRequestContent": ".types", "CreateDirectoryProvisioningResponseContent": ".types", @@ -4172,6 +4194,7 @@ "CreateGuardianEnrollmentTicketResponseContent": ".types", "CreateHookResponseContent": ".types", "CreateHookSecretRequestContent": ".types", + "CreateIdentityAssertionAuthorizationGrant": ".types", "CreateImportUsersResponseContent": ".types", "CreateLogStreamDatadogRequestBody": ".types", "CreateLogStreamEventBridgeRequestBody": ".types", @@ -4212,6 +4235,8 @@ "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CrossAppAccessRequestingApp": ".types", + "CrossAppAccessResourceApp": ".types", + "CrossAppAccessResourceAppStatusEnum": ".types", "CspDirectives": ".types", "CspFlag": ".types", "CspFlags": ".types", @@ -4225,7 +4250,6 @@ "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", - "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", @@ -5741,6 +5765,7 @@ "HookTriggerIdEnum": ".types", "HttpCustomHeader": ".types", "Identity": ".types", + "IdentityAssertionAuthorizationGrant": ".types", "IdentityProviderEnum": ".types", "IdentityProviderOnlyAuth0Enum": ".types", "ImportEncryptionKeyResponseContent": ".types", @@ -5875,7 +5900,6 @@ "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", - "ManagementClient": ".management_client", "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", @@ -6055,6 +6079,8 @@ "SelfServiceProfileUserAttribute": ".types", "SelfServiceProfileUserAttributes": ".types", "ServiceUnavailableError": ".errors", + "SessionActorClaimValue": ".types", + "SessionActorMetadata": ".types", "SessionAuthenticationSignal": ".types", "SessionAuthenticationSignals": ".types", "SessionClientMetadata": ".types", @@ -6104,6 +6130,7 @@ "SupportedLocales": ".types", "SuspiciousIpThrottlingAllowlist": ".types", "SuspiciousIpThrottlingAllowlistItem": ".types", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage": ".types", "SuspiciousIpThrottlingPreLoginStage": ".types", "SuspiciousIpThrottlingPreUserRegistrationStage": ".types", "SuspiciousIpThrottlingShieldsEnum": ".types", @@ -6132,9 +6159,9 @@ "TestActionResultPayload": ".types", "TestCustomDomainResponseContent": ".types", "TestEventDataContent": ".types", + "ThirdPartyClientAccessConfig": ".types", "TokenExchangeProfileResponseContent": ".types", "TokenExchangeProfileTypeEnum": ".types", - "TokenProvider": ".token_provider", "TokenQuota": ".types", "TokenQuotaClientCredentials": ".types", "TokenQuotaConfiguration": ".types", @@ -6226,6 +6253,7 @@ "UpdateConnectionRequestContentYahoo": ".types", "UpdateConnectionRequestContentYandex": ".types", "UpdateConnectionResponseContent": ".types", + "UpdateCrossAppAccessResourceApp": ".types", "UpdateCustomDomainResponseContent": ".types", "UpdateDefaultCanonicalDomainResponseContent": ".types", "UpdateDefaultCustomDomainResponseContent": ".types", @@ -6248,6 +6276,7 @@ "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", "UpdateHookResponseContent": ".types", "UpdateHookSecretRequestContent": ".types", + "UpdateIdentityAssertionAuthorizationGrant": ".types", "UpdateLogStreamResponseContent": ".types", "UpdateNetworkAclResponseContent": ".types", "UpdateOrganizationAllConnectionResponseContent": ".types", @@ -6462,8 +6491,6 @@ def __dir__(): "AssociateOrganizationClientGrantResponseContent", "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", - "AsyncManagementClient", - "AsyncTokenProvider", "AttackProtectionCaptchaArkoseResponseContent", "AttackProtectionCaptchaAuthChallengeRequest", "AttackProtectionCaptchaAuthChallengeResponseContent", @@ -6512,6 +6539,11 @@ def __dir__(): "BrandingThemeFontSubtitle", "BrandingThemeFontTitle", "BrandingThemeFonts", + "BrandingThemeIdentifiers", + "BrandingThemeIdentifiersLoginDisplayEnum", + "BrandingThemeIdentifiersPhoneDisplay", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum", "BrandingThemePageBackground", "BrandingThemePageBackgroundPageLayoutEnum", "BrandingThemeWidget", @@ -6723,6 +6755,8 @@ def __dir__(): "ConnectionConnectedAccountsPurposeXaa", "ConnectionConnectionSettings", "ConnectionConnectionSettingsPkceEnum", + "ConnectionCrossAppAccessResourceApp", + "ConnectionCrossAppAccessResourceAppStatusEnum", "ConnectionCustomHeadersOAuth2", "ConnectionCustomScripts", "ConnectionDebugSaml", @@ -7287,6 +7321,7 @@ def __dir__(): "CreateConnectionRequestContentYandex", "CreateConnectionRequestContentYandexStrategy", "CreateConnectionResponseContent", + "CreateCrossAppAccessResourceApp", "CreateCustomDomainResponseContent", "CreateDirectoryProvisioningRequestContent", "CreateDirectoryProvisioningResponseContent", @@ -7382,6 +7417,7 @@ def __dir__(): "CreateGuardianEnrollmentTicketResponseContent", "CreateHookResponseContent", "CreateHookSecretRequestContent", + "CreateIdentityAssertionAuthorizationGrant", "CreateImportUsersResponseContent", "CreateLogStreamDatadogRequestBody", "CreateLogStreamEventBridgeRequestBody", @@ -7422,6 +7458,8 @@ def __dir__(): "CredentialDeviceTypeEnum", "CredentialId", "CrossAppAccessRequestingApp", + "CrossAppAccessResourceApp", + "CrossAppAccessResourceAppStatusEnum", "CspDirectives", "CspFlag", "CspFlags", @@ -7435,7 +7473,6 @@ def __dir__(): "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", - "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainProvisioningTypeEnum", @@ -8951,6 +8988,7 @@ def __dir__(): "HookTriggerIdEnum", "HttpCustomHeader", "Identity", + "IdentityAssertionAuthorizationGrant", "IdentityProviderEnum", "IdentityProviderOnlyAuth0Enum", "ImportEncryptionKeyResponseContent", @@ -9085,7 +9123,6 @@ def __dir__(): "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", - "ManagementClient", "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", @@ -9265,6 +9302,8 @@ def __dir__(): "SelfServiceProfileUserAttribute", "SelfServiceProfileUserAttributes", "ServiceUnavailableError", + "SessionActorClaimValue", + "SessionActorMetadata", "SessionAuthenticationSignal", "SessionAuthenticationSignals", "SessionClientMetadata", @@ -9314,6 +9353,7 @@ def __dir__(): "SupportedLocales", "SuspiciousIpThrottlingAllowlist", "SuspiciousIpThrottlingAllowlistItem", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage", "SuspiciousIpThrottlingPreLoginStage", "SuspiciousIpThrottlingPreUserRegistrationStage", "SuspiciousIpThrottlingShieldsEnum", @@ -9342,9 +9382,9 @@ def __dir__(): "TestActionResultPayload", "TestCustomDomainResponseContent", "TestEventDataContent", + "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", - "TokenProvider", "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", @@ -9436,6 +9476,7 @@ def __dir__(): "UpdateConnectionRequestContentYahoo", "UpdateConnectionRequestContentYandex", "UpdateConnectionResponseContent", + "UpdateCrossAppAccessResourceApp", "UpdateCustomDomainResponseContent", "UpdateDefaultCanonicalDomainResponseContent", "UpdateDefaultCustomDomainResponseContent", @@ -9458,6 +9499,7 @@ def __dir__(): "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", "UpdateHookResponseContent", "UpdateHookSecretRequestContent", + "UpdateIdentityAssertionAuthorizationGrant", "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", diff --git a/src/auth0/management/branding/themes/client.py b/src/auth0/management/branding/themes/client.py index d062a473..6cac9674 100644 --- a/src/auth0/management/branding/themes/client.py +++ b/src/auth0/management/branding/themes/client.py @@ -7,6 +7,7 @@ from ...types.branding_theme_borders import BrandingThemeBorders from ...types.branding_theme_colors import BrandingThemeColors from ...types.branding_theme_fonts import BrandingThemeFonts +from ...types.branding_theme_identifiers import BrandingThemeIdentifiers from ...types.branding_theme_page_background import BrandingThemePageBackground from ...types.branding_theme_widget import BrandingThemeWidget from ...types.create_branding_theme_response_content import CreateBrandingThemeResponseContent @@ -43,6 +44,7 @@ def create( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateBrandingThemeResponseContent: """ @@ -63,6 +65,8 @@ def create( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -171,6 +175,7 @@ def create( page_background=page_background, widget=widget, display_name=display_name, + identifiers=identifiers, request_options=request_options, ) return _response.data @@ -276,6 +281,7 @@ def update( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> UpdateBrandingThemeResponseContent: """ @@ -299,6 +305,8 @@ def update( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -409,6 +417,7 @@ def update( page_background=page_background, widget=widget, display_name=display_name, + identifiers=identifiers, request_options=request_options, ) return _response.data @@ -438,6 +447,7 @@ async def create( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateBrandingThemeResponseContent: """ @@ -458,6 +468,8 @@ async def create( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -574,6 +586,7 @@ async def main() -> None: page_background=page_background, widget=widget, display_name=display_name, + identifiers=identifiers, request_options=request_options, ) return _response.data @@ -703,6 +716,7 @@ async def update( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> UpdateBrandingThemeResponseContent: """ @@ -726,6 +740,8 @@ async def update( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -844,6 +860,7 @@ async def main() -> None: page_background=page_background, widget=widget, display_name=display_name, + identifiers=identifiers, request_options=request_options, ) return _response.data diff --git a/src/auth0/management/branding/themes/raw_client.py b/src/auth0/management/branding/themes/raw_client.py index 870535ce..7f905bd7 100644 --- a/src/auth0/management/branding/themes/raw_client.py +++ b/src/auth0/management/branding/themes/raw_client.py @@ -20,6 +20,7 @@ from ...types.branding_theme_borders import BrandingThemeBorders from ...types.branding_theme_colors import BrandingThemeColors from ...types.branding_theme_fonts import BrandingThemeFonts +from ...types.branding_theme_identifiers import BrandingThemeIdentifiers from ...types.branding_theme_page_background import BrandingThemePageBackground from ...types.branding_theme_widget import BrandingThemeWidget from ...types.create_branding_theme_response_content import CreateBrandingThemeResponseContent @@ -45,6 +46,7 @@ def create( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[CreateBrandingThemeResponseContent]: """ @@ -65,6 +67,8 @@ def create( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -87,6 +91,9 @@ def create( "fonts": convert_and_respect_annotation_metadata( object_=fonts, annotation=BrandingThemeFonts, direction="write" ), + "identifiers": convert_and_respect_annotation_metadata( + object_=identifiers, annotation=BrandingThemeIdentifiers, direction="write" + ), "page_background": convert_and_respect_annotation_metadata( object_=page_background, annotation=BrandingThemePageBackground, direction="write" ), @@ -432,6 +439,7 @@ def update( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[UpdateBrandingThemeResponseContent]: """ @@ -455,6 +463,8 @@ def update( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -477,6 +487,9 @@ def update( "fonts": convert_and_respect_annotation_metadata( object_=fonts, annotation=BrandingThemeFonts, direction="write" ), + "identifiers": convert_and_respect_annotation_metadata( + object_=identifiers, annotation=BrandingThemeIdentifiers, direction="write" + ), "page_background": convert_and_respect_annotation_metadata( object_=page_background, annotation=BrandingThemePageBackground, direction="write" ), @@ -578,6 +591,7 @@ async def create( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[CreateBrandingThemeResponseContent]: """ @@ -598,6 +612,8 @@ async def create( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -620,6 +636,9 @@ async def create( "fonts": convert_and_respect_annotation_metadata( object_=fonts, annotation=BrandingThemeFonts, direction="write" ), + "identifiers": convert_and_respect_annotation_metadata( + object_=identifiers, annotation=BrandingThemeIdentifiers, direction="write" + ), "page_background": convert_and_respect_annotation_metadata( object_=page_background, annotation=BrandingThemePageBackground, direction="write" ), @@ -967,6 +986,7 @@ async def update( page_background: BrandingThemePageBackground, widget: BrandingThemeWidget, display_name: typing.Optional[str] = OMIT, + identifiers: typing.Optional[BrandingThemeIdentifiers] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[UpdateBrandingThemeResponseContent]: """ @@ -990,6 +1010,8 @@ async def update( display_name : typing.Optional[str] Display Name + identifiers : typing.Optional[BrandingThemeIdentifiers] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -1012,6 +1034,9 @@ async def update( "fonts": convert_and_respect_annotation_metadata( object_=fonts, annotation=BrandingThemeFonts, direction="write" ), + "identifiers": convert_and_respect_annotation_metadata( + object_=identifiers, annotation=BrandingThemeIdentifiers, direction="write" + ), "page_background": convert_and_respect_annotation_metadata( object_=page_background, annotation=BrandingThemePageBackground, direction="write" ), diff --git a/src/auth0/management/clients/client.py b/src/auth0/management/clients/client.py index c5848d9b..516b14ba 100644 --- a/src/auth0/management/clients/client.py +++ b/src/auth0/management/clients/client.py @@ -47,6 +47,7 @@ ) from ..types.client_token_vault_privileged_access_with_public_key import ClientTokenVaultPrivilegedAccessWithPublicKey from ..types.create_client_response_content import CreateClientResponseContent +from ..types.create_identity_assertion_authorization_grant import CreateIdentityAssertionAuthorizationGrant from ..types.create_token_quota import CreateTokenQuota from ..types.express_configuration import ExpressConfiguration from ..types.express_configuration_or_null import ExpressConfigurationOrNull @@ -60,6 +61,7 @@ from ..types.register_cimd_client_response_content import RegisterCimdClientResponseContent from ..types.rotate_client_secret_response_content import RotateClientSecretResponseContent from ..types.update_client_response_content import UpdateClientResponseContent +from ..types.update_identity_assertion_authorization_grant import UpdateIdentityAssertionAuthorizationGrant from ..types.update_token_quota import UpdateTokenQuota from .raw_client import AsyncRawClientsClient, RawClientsClient @@ -157,7 +159,7 @@ def list( Optional filter by a comma-separated list of application types. external_client_id : typing.Optional[str] - Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. + Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. q : typing.Optional[str] Advanced Query in Lucene syntax.
Permitted Queries:
  • client_grant.organization_id:{organization_id}
  • client_grant.allow_any_organization:true
Additional Restrictions:
  • Cannot be used in combination with other filters
  • Requires use of the from and take paging parameters (checkpoint paginatinon)
  • Reduced rate limits apply. See Rate Limit Configurations
Note: Recent updates may not be immediately reflected in query results @@ -262,6 +264,7 @@ def create( par_request_expiry: typing.Optional[int] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, resource_server_identifier: typing.Optional[str] = OMIT, + identity_assertion_authorization_grant: typing.Optional[CreateIdentityAssertionAuthorizationGrant] = OMIT, third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = OMIT, redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = OMIT, express_configuration: typing.Optional[ExpressConfiguration] = OMIT, @@ -420,6 +423,8 @@ def create( resource_server_identifier : typing.Optional[str] The identifier of the resource server that this client is linked to. + identity_assertion_authorization_grant : typing.Optional[CreateIdentityAssertionAuthorizationGrant] + third_party_security_mode : typing.Optional[ClientThirdPartySecurityModeEnum] redirection_policy : typing.Optional[ClientRedirectionPolicyEnum] @@ -500,6 +505,7 @@ def create( par_request_expiry=par_request_expiry, token_quota=token_quota, resource_server_identifier=resource_server_identifier, + identity_assertion_authorization_grant=identity_assertion_authorization_grant, third_party_security_mode=third_party_security_mode, redirection_policy=redirection_policy, express_configuration=express_configuration, @@ -727,6 +733,7 @@ def update( custom_login_page: typing.Optional[str] = OMIT, custom_login_page_preview: typing.Optional[str] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, + identity_assertion_authorization_grant: typing.Optional[UpdateIdentityAssertionAuthorizationGrant] = OMIT, form_template: typing.Optional[str] = OMIT, addons: typing.Optional[ClientAddons] = OMIT, client_metadata: typing.Optional[ClientMetadata] = OMIT, @@ -854,6 +861,8 @@ def update( token_quota : typing.Optional[UpdateTokenQuota] + identity_assertion_authorization_grant : typing.Optional[UpdateIdentityAssertionAuthorizationGrant] + form_template : typing.Optional[str] Form template for WS-Federation protocol @@ -966,6 +975,7 @@ def update( custom_login_page=custom_login_page, custom_login_page_preview=custom_login_page_preview, token_quota=token_quota, + identity_assertion_authorization_grant=identity_assertion_authorization_grant, form_template=form_template, addons=addons, client_metadata=client_metadata, @@ -1137,7 +1147,7 @@ async def list( Optional filter by a comma-separated list of application types. external_client_id : typing.Optional[str] - Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. + Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. q : typing.Optional[str] Advanced Query in Lucene syntax.
Permitted Queries:
  • client_grant.organization_id:{organization_id}
  • client_grant.allow_any_organization:true
Additional Restrictions:
  • Cannot be used in combination with other filters
  • Requires use of the from and take paging parameters (checkpoint paginatinon)
  • Reduced rate limits apply. See Rate Limit Configurations
Note: Recent updates may not be immediately reflected in query results @@ -1251,6 +1261,7 @@ async def create( par_request_expiry: typing.Optional[int] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, resource_server_identifier: typing.Optional[str] = OMIT, + identity_assertion_authorization_grant: typing.Optional[CreateIdentityAssertionAuthorizationGrant] = OMIT, third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = OMIT, redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = OMIT, express_configuration: typing.Optional[ExpressConfiguration] = OMIT, @@ -1409,6 +1420,8 @@ async def create( resource_server_identifier : typing.Optional[str] The identifier of the resource server that this client is linked to. + identity_assertion_authorization_grant : typing.Optional[CreateIdentityAssertionAuthorizationGrant] + third_party_security_mode : typing.Optional[ClientThirdPartySecurityModeEnum] redirection_policy : typing.Optional[ClientRedirectionPolicyEnum] @@ -1497,6 +1510,7 @@ async def main() -> None: par_request_expiry=par_request_expiry, token_quota=token_quota, resource_server_identifier=resource_server_identifier, + identity_assertion_authorization_grant=identity_assertion_authorization_grant, third_party_security_mode=third_party_security_mode, redirection_policy=redirection_policy, express_configuration=express_configuration, @@ -1756,6 +1770,7 @@ async def update( custom_login_page: typing.Optional[str] = OMIT, custom_login_page_preview: typing.Optional[str] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, + identity_assertion_authorization_grant: typing.Optional[UpdateIdentityAssertionAuthorizationGrant] = OMIT, form_template: typing.Optional[str] = OMIT, addons: typing.Optional[ClientAddons] = OMIT, client_metadata: typing.Optional[ClientMetadata] = OMIT, @@ -1883,6 +1898,8 @@ async def update( token_quota : typing.Optional[UpdateTokenQuota] + identity_assertion_authorization_grant : typing.Optional[UpdateIdentityAssertionAuthorizationGrant] + form_template : typing.Optional[str] Form template for WS-Federation protocol @@ -2003,6 +2020,7 @@ async def main() -> None: custom_login_page=custom_login_page, custom_login_page_preview=custom_login_page_preview, token_quota=token_quota, + identity_assertion_authorization_grant=identity_assertion_authorization_grant, form_template=form_template, addons=addons, client_metadata=client_metadata, diff --git a/src/auth0/management/clients/raw_client.py b/src/auth0/management/clients/raw_client.py index 680cd03c..895d1be2 100644 --- a/src/auth0/management/clients/raw_client.py +++ b/src/auth0/management/clients/raw_client.py @@ -59,6 +59,7 @@ ) from ..types.client_token_vault_privileged_access_with_public_key import ClientTokenVaultPrivilegedAccessWithPublicKey from ..types.create_client_response_content import CreateClientResponseContent +from ..types.create_identity_assertion_authorization_grant import CreateIdentityAssertionAuthorizationGrant from ..types.create_token_quota import CreateTokenQuota from ..types.express_configuration import ExpressConfiguration from ..types.express_configuration_or_null import ExpressConfigurationOrNull @@ -72,6 +73,7 @@ from ..types.register_cimd_client_response_content import RegisterCimdClientResponseContent from ..types.rotate_client_secret_response_content import RotateClientSecretResponseContent from ..types.update_client_response_content import UpdateClientResponseContent +from ..types.update_identity_assertion_authorization_grant import UpdateIdentityAssertionAuthorizationGrant from ..types.update_token_quota import UpdateTokenQuota from pydantic import ValidationError @@ -152,7 +154,7 @@ def list( Optional filter by a comma-separated list of application types. external_client_id : typing.Optional[str] - Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. + Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. q : typing.Optional[str] Advanced Query in Lucene syntax.
Permitted Queries:
  • client_grant.organization_id:{organization_id}
  • client_grant.allow_any_organization:true
Additional Restrictions:
  • Cannot be used in combination with other filters
  • Requires use of the from and take paging parameters (checkpoint paginatinon)
  • Reduced rate limits apply. See Rate Limit Configurations
Note: Recent updates may not be immediately reflected in query results @@ -315,6 +317,7 @@ def create( par_request_expiry: typing.Optional[int] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, resource_server_identifier: typing.Optional[str] = OMIT, + identity_assertion_authorization_grant: typing.Optional[CreateIdentityAssertionAuthorizationGrant] = OMIT, third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = OMIT, redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = OMIT, express_configuration: typing.Optional[ExpressConfiguration] = OMIT, @@ -473,6 +476,8 @@ def create( resource_server_identifier : typing.Optional[str] The identifier of the resource server that this client is linked to. + identity_assertion_authorization_grant : typing.Optional[CreateIdentityAssertionAuthorizationGrant] + third_party_security_mode : typing.Optional[ClientThirdPartySecurityModeEnum] redirection_policy : typing.Optional[ClientRedirectionPolicyEnum] @@ -587,6 +592,11 @@ def create( object_=token_quota, annotation=CreateTokenQuota, direction="write" ), "resource_server_identifier": resource_server_identifier, + "identity_assertion_authorization_grant": convert_and_respect_annotation_metadata( + object_=identity_assertion_authorization_grant, + annotation=CreateIdentityAssertionAuthorizationGrant, + direction="write", + ), "third_party_security_mode": third_party_security_mode, "redirection_policy": redirection_policy, "express_configuration": convert_and_respect_annotation_metadata( @@ -1160,6 +1170,7 @@ def update( custom_login_page: typing.Optional[str] = OMIT, custom_login_page_preview: typing.Optional[str] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, + identity_assertion_authorization_grant: typing.Optional[UpdateIdentityAssertionAuthorizationGrant] = OMIT, form_template: typing.Optional[str] = OMIT, addons: typing.Optional[ClientAddons] = OMIT, client_metadata: typing.Optional[ClientMetadata] = OMIT, @@ -1287,6 +1298,8 @@ def update( token_quota : typing.Optional[UpdateTokenQuota] + identity_assertion_authorization_grant : typing.Optional[UpdateIdentityAssertionAuthorizationGrant] + form_template : typing.Optional[str] Form template for WS-Federation protocol @@ -1404,6 +1417,11 @@ def update( "token_quota": convert_and_respect_annotation_metadata( object_=token_quota, annotation=typing.Optional[UpdateTokenQuota], direction="write" ), + "identity_assertion_authorization_grant": convert_and_respect_annotation_metadata( + object_=identity_assertion_authorization_grant, + annotation=typing.Optional[UpdateIdentityAssertionAuthorizationGrant], + direction="write", + ), "form_template": form_template, "addons": convert_and_respect_annotation_metadata( object_=addons, annotation=ClientAddons, direction="write" @@ -1727,7 +1745,7 @@ async def list( Optional filter by a comma-separated list of application types. external_client_id : typing.Optional[str] - Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. + Optional filter by the Client ID Metadata Document URI for CIMD-registered clients. q : typing.Optional[str] Advanced Query in Lucene syntax.
Permitted Queries:
  • client_grant.organization_id:{organization_id}
  • client_grant.allow_any_organization:true
Additional Restrictions:
  • Cannot be used in combination with other filters
  • Requires use of the from and take paging parameters (checkpoint paginatinon)
  • Reduced rate limits apply. See Rate Limit Configurations
Note: Recent updates may not be immediately reflected in query results @@ -1893,6 +1911,7 @@ async def create( par_request_expiry: typing.Optional[int] = OMIT, token_quota: typing.Optional[CreateTokenQuota] = OMIT, resource_server_identifier: typing.Optional[str] = OMIT, + identity_assertion_authorization_grant: typing.Optional[CreateIdentityAssertionAuthorizationGrant] = OMIT, third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = OMIT, redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = OMIT, express_configuration: typing.Optional[ExpressConfiguration] = OMIT, @@ -2051,6 +2070,8 @@ async def create( resource_server_identifier : typing.Optional[str] The identifier of the resource server that this client is linked to. + identity_assertion_authorization_grant : typing.Optional[CreateIdentityAssertionAuthorizationGrant] + third_party_security_mode : typing.Optional[ClientThirdPartySecurityModeEnum] redirection_policy : typing.Optional[ClientRedirectionPolicyEnum] @@ -2165,6 +2186,11 @@ async def create( object_=token_quota, annotation=CreateTokenQuota, direction="write" ), "resource_server_identifier": resource_server_identifier, + "identity_assertion_authorization_grant": convert_and_respect_annotation_metadata( + object_=identity_assertion_authorization_grant, + annotation=CreateIdentityAssertionAuthorizationGrant, + direction="write", + ), "third_party_security_mode": third_party_security_mode, "redirection_policy": redirection_policy, "express_configuration": convert_and_respect_annotation_metadata( @@ -2740,6 +2766,7 @@ async def update( custom_login_page: typing.Optional[str] = OMIT, custom_login_page_preview: typing.Optional[str] = OMIT, token_quota: typing.Optional[UpdateTokenQuota] = OMIT, + identity_assertion_authorization_grant: typing.Optional[UpdateIdentityAssertionAuthorizationGrant] = OMIT, form_template: typing.Optional[str] = OMIT, addons: typing.Optional[ClientAddons] = OMIT, client_metadata: typing.Optional[ClientMetadata] = OMIT, @@ -2867,6 +2894,8 @@ async def update( token_quota : typing.Optional[UpdateTokenQuota] + identity_assertion_authorization_grant : typing.Optional[UpdateIdentityAssertionAuthorizationGrant] + form_template : typing.Optional[str] Form template for WS-Federation protocol @@ -2984,6 +3013,11 @@ async def update( "token_quota": convert_and_respect_annotation_metadata( object_=token_quota, annotation=typing.Optional[UpdateTokenQuota], direction="write" ), + "identity_assertion_authorization_grant": convert_and_respect_annotation_metadata( + object_=identity_assertion_authorization_grant, + annotation=typing.Optional[UpdateIdentityAssertionAuthorizationGrant], + direction="write", + ), "form_template": form_template, "addons": convert_and_respect_annotation_metadata( object_=addons, annotation=ClientAddons, direction="write" diff --git a/src/auth0/management/connections/client.py b/src/auth0/management/connections/client.py index 8a7c2567..2a993e3f 100644 --- a/src/auth0/management/connections/client.py +++ b/src/auth0/management/connections/client.py @@ -15,6 +15,7 @@ from ..types.connection_strategy_enum import ConnectionStrategyEnum from ..types.connections_metadata import ConnectionsMetadata from ..types.create_connection_response_content import CreateConnectionResponseContent +from ..types.create_cross_app_access_resource_app import CreateCrossAppAccessResourceApp from ..types.cross_app_access_requesting_app import CrossAppAccessRequestingApp from ..types.get_connection_response_content import GetConnectionResponseContent from ..types.list_connections_checkpoint_paginated_response_content import ( @@ -22,6 +23,7 @@ ) from ..types.update_connection_options import UpdateConnectionOptions from ..types.update_connection_response_content import UpdateConnectionResponseContent +from ..types.update_cross_app_access_resource_app import UpdateCrossAppAccessResourceApp from .raw_client import AsyncRawConnectionsClient, RawConnectionsClient if typing.TYPE_CHECKING: @@ -159,6 +161,7 @@ def create( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[CreateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateConnectionResponseContent: """ @@ -198,6 +201,8 @@ def create( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[CreateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -231,6 +236,7 @@ def create( authentication=authentication, connected_accounts=connected_accounts, cross_app_access_requesting_app=cross_app_access_requesting_app, + cross_app_access_resource_app=cross_app_access_resource_app, request_options=request_options, ) return _response.data @@ -329,6 +335,7 @@ def update( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[UpdateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> UpdateConnectionResponseContent: """ @@ -366,6 +373,8 @@ def update( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[UpdateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -397,6 +406,7 @@ def update( authentication=authentication, connected_accounts=connected_accounts, cross_app_access_requesting_app=cross_app_access_requesting_app, + cross_app_access_resource_app=cross_app_access_resource_app, request_options=request_options, ) return _response.data @@ -606,6 +616,7 @@ async def create( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[CreateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateConnectionResponseContent: """ @@ -645,6 +656,8 @@ async def create( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[CreateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -686,6 +699,7 @@ async def main() -> None: authentication=authentication, connected_accounts=connected_accounts, cross_app_access_requesting_app=cross_app_access_requesting_app, + cross_app_access_resource_app=cross_app_access_resource_app, request_options=request_options, ) return _response.data @@ -800,6 +814,7 @@ async def update( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[UpdateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> UpdateConnectionResponseContent: """ @@ -837,6 +852,8 @@ async def update( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[UpdateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -876,6 +893,7 @@ async def main() -> None: authentication=authentication, connected_accounts=connected_accounts, cross_app_access_requesting_app=cross_app_access_requesting_app, + cross_app_access_resource_app=cross_app_access_resource_app, request_options=request_options, ) return _response.data diff --git a/src/auth0/management/connections/raw_client.py b/src/auth0/management/connections/raw_client.py index ff6597a3..d4f4caea 100644 --- a/src/auth0/management/connections/raw_client.py +++ b/src/auth0/management/connections/raw_client.py @@ -26,6 +26,7 @@ from ..types.connection_strategy_enum import ConnectionStrategyEnum from ..types.connections_metadata import ConnectionsMetadata from ..types.create_connection_response_content import CreateConnectionResponseContent +from ..types.create_cross_app_access_resource_app import CreateCrossAppAccessResourceApp from ..types.cross_app_access_requesting_app import CrossAppAccessRequestingApp from ..types.get_connection_response_content import GetConnectionResponseContent from ..types.list_connections_checkpoint_paginated_response_content import ( @@ -33,6 +34,7 @@ ) from ..types.update_connection_options import UpdateConnectionOptions from ..types.update_connection_response_content import UpdateConnectionResponseContent +from ..types.update_cross_app_access_resource_app import UpdateCrossAppAccessResourceApp from pydantic import ValidationError # this is used as the default value for optional parameters @@ -204,6 +206,7 @@ def create( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[CreateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[CreateConnectionResponseContent]: """ @@ -243,6 +246,8 @@ def create( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[CreateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -275,6 +280,9 @@ def create( "cross_app_access_requesting_app": convert_and_respect_annotation_metadata( object_=cross_app_access_requesting_app, annotation=CrossAppAccessRequestingApp, direction="write" ), + "cross_app_access_resource_app": convert_and_respect_annotation_metadata( + object_=cross_app_access_resource_app, annotation=CreateCrossAppAccessResourceApp, direction="write" + ), }, headers={ "content-type": "application/json", @@ -562,6 +570,7 @@ def update( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[UpdateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[UpdateConnectionResponseContent]: """ @@ -599,6 +608,8 @@ def update( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[UpdateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -629,6 +640,11 @@ def update( "cross_app_access_requesting_app": convert_and_respect_annotation_metadata( object_=cross_app_access_requesting_app, annotation=CrossAppAccessRequestingApp, direction="write" ), + "cross_app_access_resource_app": convert_and_respect_annotation_metadata( + object_=cross_app_access_resource_app, + annotation=typing.Optional[UpdateCrossAppAccessResourceApp], + direction="write", + ), }, headers={ "content-type": "application/json", @@ -978,6 +994,7 @@ async def create( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[CreateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[CreateConnectionResponseContent]: """ @@ -1017,6 +1034,8 @@ async def create( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[CreateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -1049,6 +1068,9 @@ async def create( "cross_app_access_requesting_app": convert_and_respect_annotation_metadata( object_=cross_app_access_requesting_app, annotation=CrossAppAccessRequestingApp, direction="write" ), + "cross_app_access_resource_app": convert_and_respect_annotation_metadata( + object_=cross_app_access_resource_app, annotation=CreateCrossAppAccessResourceApp, direction="write" + ), }, headers={ "content-type": "application/json", @@ -1338,6 +1360,7 @@ async def update( authentication: typing.Optional[ConnectionAuthenticationPurpose] = OMIT, connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = OMIT, cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = OMIT, + cross_app_access_resource_app: typing.Optional[UpdateCrossAppAccessResourceApp] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[UpdateConnectionResponseContent]: """ @@ -1375,6 +1398,8 @@ async def update( cross_app_access_requesting_app : typing.Optional[CrossAppAccessRequestingApp] + cross_app_access_resource_app : typing.Optional[UpdateCrossAppAccessResourceApp] + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -1405,6 +1430,11 @@ async def update( "cross_app_access_requesting_app": convert_and_respect_annotation_metadata( object_=cross_app_access_requesting_app, annotation=CrossAppAccessRequestingApp, direction="write" ), + "cross_app_access_resource_app": convert_and_respect_annotation_metadata( + object_=cross_app_access_resource_app, + annotation=typing.Optional[UpdateCrossAppAccessResourceApp], + direction="write", + ), }, headers={ "content-type": "application/json", diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py index fd991f52..f3256902 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,15 @@ 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") + import platform headers: typing.Dict[str, str] = { - "User-Agent": f"Python/{py_version}", - "Auth0-Client": base64.b64encode(auth0_client).decode(), + "User-Agent": "auth0-python/6.0.0", + "X-Fern-Language": "Python", + "X-Fern-Runtime": f"python/{platform.python_version()}", + "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", + "X-Fern-SDK-Name": "auth0-python", + "X-Fern-SDK-Version": "6.0.0", **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Bearer {self._get_token()}" diff --git a/src/auth0/management/self_service_profiles/sso_ticket/client.py b/src/auth0/management/self_service_profiles/sso_ticket/client.py index 9d111552..9a8b6f83 100644 --- a/src/auth0/management/self_service_profiles/sso_ticket/client.py +++ b/src/auth0/management/self_service_profiles/sso_ticket/client.py @@ -14,6 +14,7 @@ from ...types.self_service_profile_sso_ticket_enabled_features import SelfServiceProfileSsoTicketEnabledFeatures from ...types.self_service_profile_sso_ticket_enabled_organization import SelfServiceProfileSsoTicketEnabledOrganization from ...types.self_service_profile_sso_ticket_provisioning_config import SelfServiceProfileSsoTicketProvisioningConfig +from ...types.third_party_client_access_config import ThirdPartyClientAccessConfig from .raw_client import AsyncRawSsoTicketClient, RawSsoTicketClient # this is used as the default value for optional parameters @@ -47,6 +48,7 @@ def create( domain_aliases_config: typing.Optional[SelfServiceProfileSsoTicketDomainAliasesConfig] = OMIT, provisioning_config: typing.Optional[SelfServiceProfileSsoTicketProvisioningConfig] = OMIT, use_for_organization_discovery: typing.Optional[bool] = OMIT, + third_party_client_access_config: typing.Optional[ThirdPartyClientAccessConfig] = OMIT, enabled_features: typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateSelfServiceProfileSsoTicketResponseContent: @@ -79,6 +81,8 @@ def create( use_for_organization_discovery : typing.Optional[bool] Indicates whether a verified domain should be used for organization discovery during authentication. + third_party_client_access_config : typing.Optional[ThirdPartyClientAccessConfig] + enabled_features : typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] request_options : typing.Optional[RequestOptions] @@ -110,6 +114,7 @@ def create( domain_aliases_config=domain_aliases_config, provisioning_config=provisioning_config, use_for_organization_discovery=use_for_organization_discovery, + third_party_client_access_config=third_party_client_access_config, enabled_features=enabled_features, request_options=request_options, ) @@ -178,6 +183,7 @@ async def create( domain_aliases_config: typing.Optional[SelfServiceProfileSsoTicketDomainAliasesConfig] = OMIT, provisioning_config: typing.Optional[SelfServiceProfileSsoTicketProvisioningConfig] = OMIT, use_for_organization_discovery: typing.Optional[bool] = OMIT, + third_party_client_access_config: typing.Optional[ThirdPartyClientAccessConfig] = OMIT, enabled_features: typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateSelfServiceProfileSsoTicketResponseContent: @@ -210,6 +216,8 @@ async def create( use_for_organization_discovery : typing.Optional[bool] Indicates whether a verified domain should be used for organization discovery during authentication. + third_party_client_access_config : typing.Optional[ThirdPartyClientAccessConfig] + enabled_features : typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] request_options : typing.Optional[RequestOptions] @@ -249,6 +257,7 @@ async def main() -> None: domain_aliases_config=domain_aliases_config, provisioning_config=provisioning_config, use_for_organization_discovery=use_for_organization_discovery, + third_party_client_access_config=third_party_client_access_config, enabled_features=enabled_features, request_options=request_options, ) diff --git a/src/auth0/management/self_service_profiles/sso_ticket/raw_client.py b/src/auth0/management/self_service_profiles/sso_ticket/raw_client.py index bfa07ab0..e07521db 100644 --- a/src/auth0/management/self_service_profiles/sso_ticket/raw_client.py +++ b/src/auth0/management/self_service_profiles/sso_ticket/raw_client.py @@ -26,6 +26,7 @@ from ...types.self_service_profile_sso_ticket_enabled_features import SelfServiceProfileSsoTicketEnabledFeatures from ...types.self_service_profile_sso_ticket_enabled_organization import SelfServiceProfileSsoTicketEnabledOrganization from ...types.self_service_profile_sso_ticket_provisioning_config import SelfServiceProfileSsoTicketProvisioningConfig +from ...types.third_party_client_access_config import ThirdPartyClientAccessConfig from pydantic import ValidationError # this is used as the default value for optional parameters @@ -48,6 +49,7 @@ def create( domain_aliases_config: typing.Optional[SelfServiceProfileSsoTicketDomainAliasesConfig] = OMIT, provisioning_config: typing.Optional[SelfServiceProfileSsoTicketProvisioningConfig] = OMIT, use_for_organization_discovery: typing.Optional[bool] = OMIT, + third_party_client_access_config: typing.Optional[ThirdPartyClientAccessConfig] = OMIT, enabled_features: typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[CreateSelfServiceProfileSsoTicketResponseContent]: @@ -80,6 +82,8 @@ def create( use_for_organization_discovery : typing.Optional[bool] Indicates whether a verified domain should be used for organization discovery during authentication. + third_party_client_access_config : typing.Optional[ThirdPartyClientAccessConfig] + enabled_features : typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] request_options : typing.Optional[RequestOptions] @@ -116,6 +120,9 @@ def create( direction="write", ), "use_for_organization_discovery": use_for_organization_discovery, + "third_party_client_access_config": convert_and_respect_annotation_metadata( + object_=third_party_client_access_config, annotation=ThirdPartyClientAccessConfig, direction="write" + ), "enabled_features": convert_and_respect_annotation_metadata( object_=enabled_features, annotation=SelfServiceProfileSsoTicketEnabledFeatures, direction="write" ), @@ -289,6 +296,7 @@ async def create( domain_aliases_config: typing.Optional[SelfServiceProfileSsoTicketDomainAliasesConfig] = OMIT, provisioning_config: typing.Optional[SelfServiceProfileSsoTicketProvisioningConfig] = OMIT, use_for_organization_discovery: typing.Optional[bool] = OMIT, + third_party_client_access_config: typing.Optional[ThirdPartyClientAccessConfig] = OMIT, enabled_features: typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[CreateSelfServiceProfileSsoTicketResponseContent]: @@ -321,6 +329,8 @@ async def create( use_for_organization_discovery : typing.Optional[bool] Indicates whether a verified domain should be used for organization discovery during authentication. + third_party_client_access_config : typing.Optional[ThirdPartyClientAccessConfig] + enabled_features : typing.Optional[SelfServiceProfileSsoTicketEnabledFeatures] request_options : typing.Optional[RequestOptions] @@ -357,6 +367,9 @@ async def create( direction="write", ), "use_for_organization_discovery": use_for_organization_discovery, + "third_party_client_access_config": convert_and_respect_annotation_metadata( + object_=third_party_client_access_config, annotation=ThirdPartyClientAccessConfig, direction="write" + ), "enabled_features": convert_and_respect_annotation_metadata( object_=enabled_features, annotation=SelfServiceProfileSsoTicketEnabledFeatures, direction="write" ), diff --git a/src/auth0/management/types/__init__.py b/src/auth0/management/types/__init__.py index 6035b67e..acc6bf7a 100644 --- a/src/auth0/management/types/__init__.py +++ b/src/auth0/management/types/__init__.py @@ -121,6 +121,13 @@ from .branding_theme_font_subtitle import BrandingThemeFontSubtitle from .branding_theme_font_title import BrandingThemeFontTitle from .branding_theme_fonts import BrandingThemeFonts + from .branding_theme_identifiers import BrandingThemeIdentifiers + from .branding_theme_identifiers_login_display_enum import BrandingThemeIdentifiersLoginDisplayEnum + from .branding_theme_identifiers_phone_display import BrandingThemeIdentifiersPhoneDisplay + from .branding_theme_identifiers_phone_display_formatting_enum import ( + BrandingThemeIdentifiersPhoneDisplayFormattingEnum, + ) + from .branding_theme_identifiers_phone_display_masking_enum import BrandingThemeIdentifiersPhoneDisplayMaskingEnum from .branding_theme_page_background import BrandingThemePageBackground from .branding_theme_page_background_page_layout_enum import BrandingThemePageBackgroundPageLayoutEnum from .branding_theme_widget import BrandingThemeWidget @@ -365,6 +372,8 @@ from .connection_connected_accounts_purpose_xaa import ConnectionConnectedAccountsPurposeXaa from .connection_connection_settings import ConnectionConnectionSettings from .connection_connection_settings_pkce_enum import ConnectionConnectionSettingsPkceEnum + from .connection_cross_app_access_resource_app import ConnectionCrossAppAccessResourceApp + from .connection_cross_app_access_resource_app_status_enum import ConnectionCrossAppAccessResourceAppStatusEnum from .connection_custom_headers_o_auth_2 import ConnectionCustomHeadersOAuth2 from .connection_custom_scripts import ConnectionCustomScripts from .connection_debug_saml import ConnectionDebugSaml @@ -972,6 +981,7 @@ from .create_connection_request_content_yandex import CreateConnectionRequestContentYandex from .create_connection_request_content_yandex_strategy import CreateConnectionRequestContentYandexStrategy from .create_connection_response_content import CreateConnectionResponseContent + from .create_cross_app_access_resource_app import CreateCrossAppAccessResourceApp from .create_custom_domain_response_content import CreateCustomDomainResponseContent from .create_directory_provisioning_request_content import CreateDirectoryProvisioningRequestContent from .create_directory_provisioning_response_content import CreateDirectoryProvisioningResponseContent @@ -1075,6 +1085,7 @@ from .create_guardian_enrollment_ticket_response_content import CreateGuardianEnrollmentTicketResponseContent from .create_hook_response_content import CreateHookResponseContent from .create_hook_secret_request_content import CreateHookSecretRequestContent + from .create_identity_assertion_authorization_grant import CreateIdentityAssertionAuthorizationGrant from .create_import_users_response_content import CreateImportUsersResponseContent from .create_log_stream_datadog_request_body import CreateLogStreamDatadogRequestBody from .create_log_stream_event_bridge_request_body import CreateLogStreamEventBridgeRequestBody @@ -1121,6 +1132,8 @@ from .credential_device_type_enum import CredentialDeviceTypeEnum from .credential_id import CredentialId from .cross_app_access_requesting_app import CrossAppAccessRequestingApp + from .cross_app_access_resource_app import CrossAppAccessResourceApp + from .cross_app_access_resource_app_status_enum import CrossAppAccessResourceAppStatusEnum from .csp_directives import CspDirectives from .csp_flag import CspFlag from .csp_flags import CspFlags @@ -3760,6 +3773,7 @@ from .hook_trigger_id_enum import HookTriggerIdEnum from .http_custom_header import HttpCustomHeader from .identity import Identity + from .identity_assertion_authorization_grant import IdentityAssertionAuthorizationGrant from .identity_provider_enum import IdentityProviderEnum from .identity_provider_only_auth_0_enum import IdentityProviderOnlyAuth0Enum from .import_encryption_key_response_content import ImportEncryptionKeyResponseContent @@ -4128,6 +4142,8 @@ ) from .self_service_profile_user_attribute import SelfServiceProfileUserAttribute from .self_service_profile_user_attributes import SelfServiceProfileUserAttributes + from .session_actor_claim_value import SessionActorClaimValue + from .session_actor_metadata import SessionActorMetadata from .session_authentication_signal import SessionAuthenticationSignal from .session_authentication_signals import SessionAuthenticationSignals from .session_client_metadata import SessionClientMetadata @@ -4193,6 +4209,9 @@ from .supported_locales import SupportedLocales from .suspicious_ip_throttling_allowlist import SuspiciousIpThrottlingAllowlist from .suspicious_ip_throttling_allowlist_item import SuspiciousIpThrottlingAllowlistItem + from .suspicious_ip_throttling_pre_custom_token_exchange_stage import ( + SuspiciousIpThrottlingPreCustomTokenExchangeStage, + ) from .suspicious_ip_throttling_pre_login_stage import SuspiciousIpThrottlingPreLoginStage from .suspicious_ip_throttling_pre_user_registration_stage import SuspiciousIpThrottlingPreUserRegistrationStage from .suspicious_ip_throttling_shields_enum import SuspiciousIpThrottlingShieldsEnum @@ -4223,6 +4242,7 @@ from .test_action_result_payload import TestActionResultPayload from .test_custom_domain_response_content import TestCustomDomainResponseContent from .test_event_data_content import TestEventDataContent + from .third_party_client_access_config import ThirdPartyClientAccessConfig from .token_exchange_profile_response_content import TokenExchangeProfileResponseContent from .token_exchange_profile_type_enum import TokenExchangeProfileTypeEnum from .token_quota import TokenQuota @@ -4318,6 +4338,7 @@ from .update_connection_request_content_yahoo import UpdateConnectionRequestContentYahoo from .update_connection_request_content_yandex import UpdateConnectionRequestContentYandex from .update_connection_response_content import UpdateConnectionResponseContent + from .update_cross_app_access_resource_app import UpdateCrossAppAccessResourceApp from .update_custom_domain_response_content import UpdateCustomDomainResponseContent from .update_default_canonical_domain_response_content import UpdateDefaultCanonicalDomainResponseContent from .update_default_custom_domain_response_content import UpdateDefaultCustomDomainResponseContent @@ -4348,6 +4369,7 @@ ) from .update_hook_response_content import UpdateHookResponseContent from .update_hook_secret_request_content import UpdateHookSecretRequestContent + from .update_identity_assertion_authorization_grant import UpdateIdentityAssertionAuthorizationGrant 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 @@ -4550,6 +4572,11 @@ "BrandingThemeFontSubtitle": ".branding_theme_font_subtitle", "BrandingThemeFontTitle": ".branding_theme_font_title", "BrandingThemeFonts": ".branding_theme_fonts", + "BrandingThemeIdentifiers": ".branding_theme_identifiers", + "BrandingThemeIdentifiersLoginDisplayEnum": ".branding_theme_identifiers_login_display_enum", + "BrandingThemeIdentifiersPhoneDisplay": ".branding_theme_identifiers_phone_display", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum": ".branding_theme_identifiers_phone_display_formatting_enum", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum": ".branding_theme_identifiers_phone_display_masking_enum", "BrandingThemePageBackground": ".branding_theme_page_background", "BrandingThemePageBackgroundPageLayoutEnum": ".branding_theme_page_background_page_layout_enum", "BrandingThemeWidget": ".branding_theme_widget", @@ -4760,6 +4787,8 @@ "ConnectionConnectedAccountsPurposeXaa": ".connection_connected_accounts_purpose_xaa", "ConnectionConnectionSettings": ".connection_connection_settings", "ConnectionConnectionSettingsPkceEnum": ".connection_connection_settings_pkce_enum", + "ConnectionCrossAppAccessResourceApp": ".connection_cross_app_access_resource_app", + "ConnectionCrossAppAccessResourceAppStatusEnum": ".connection_cross_app_access_resource_app_status_enum", "ConnectionCustomHeadersOAuth2": ".connection_custom_headers_o_auth_2", "ConnectionCustomScripts": ".connection_custom_scripts", "ConnectionDebugSaml": ".connection_debug_saml", @@ -5323,6 +5352,7 @@ "CreateConnectionRequestContentYandex": ".create_connection_request_content_yandex", "CreateConnectionRequestContentYandexStrategy": ".create_connection_request_content_yandex_strategy", "CreateConnectionResponseContent": ".create_connection_response_content", + "CreateCrossAppAccessResourceApp": ".create_cross_app_access_resource_app", "CreateCustomDomainResponseContent": ".create_custom_domain_response_content", "CreateDirectoryProvisioningRequestContent": ".create_directory_provisioning_request_content", "CreateDirectoryProvisioningResponseContent": ".create_directory_provisioning_response_content", @@ -5418,6 +5448,7 @@ "CreateGuardianEnrollmentTicketResponseContent": ".create_guardian_enrollment_ticket_response_content", "CreateHookResponseContent": ".create_hook_response_content", "CreateHookSecretRequestContent": ".create_hook_secret_request_content", + "CreateIdentityAssertionAuthorizationGrant": ".create_identity_assertion_authorization_grant", "CreateImportUsersResponseContent": ".create_import_users_response_content", "CreateLogStreamDatadogRequestBody": ".create_log_stream_datadog_request_body", "CreateLogStreamEventBridgeRequestBody": ".create_log_stream_event_bridge_request_body", @@ -5458,6 +5489,8 @@ "CredentialDeviceTypeEnum": ".credential_device_type_enum", "CredentialId": ".credential_id", "CrossAppAccessRequestingApp": ".cross_app_access_requesting_app", + "CrossAppAccessResourceApp": ".cross_app_access_resource_app", + "CrossAppAccessResourceAppStatusEnum": ".cross_app_access_resource_app_status_enum", "CspDirectives": ".csp_directives", "CspFlag": ".csp_flag", "CspFlags": ".csp_flags", @@ -6981,6 +7014,7 @@ "HookTriggerIdEnum": ".hook_trigger_id_enum", "HttpCustomHeader": ".http_custom_header", "Identity": ".identity", + "IdentityAssertionAuthorizationGrant": ".identity_assertion_authorization_grant", "IdentityProviderEnum": ".identity_provider_enum", "IdentityProviderOnlyAuth0Enum": ".identity_provider_only_auth_0_enum", "ImportEncryptionKeyResponseContent": ".import_encryption_key_response_content", @@ -7289,6 +7323,8 @@ "SelfServiceProfileSsoTicketProvisioningScopeEnum": ".self_service_profile_sso_ticket_provisioning_scope_enum", "SelfServiceProfileUserAttribute": ".self_service_profile_user_attribute", "SelfServiceProfileUserAttributes": ".self_service_profile_user_attributes", + "SessionActorClaimValue": ".session_actor_claim_value", + "SessionActorMetadata": ".session_actor_metadata", "SessionAuthenticationSignal": ".session_authentication_signal", "SessionAuthenticationSignals": ".session_authentication_signals", "SessionClientMetadata": ".session_client_metadata", @@ -7338,6 +7374,7 @@ "SupportedLocales": ".supported_locales", "SuspiciousIpThrottlingAllowlist": ".suspicious_ip_throttling_allowlist", "SuspiciousIpThrottlingAllowlistItem": ".suspicious_ip_throttling_allowlist_item", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage": ".suspicious_ip_throttling_pre_custom_token_exchange_stage", "SuspiciousIpThrottlingPreLoginStage": ".suspicious_ip_throttling_pre_login_stage", "SuspiciousIpThrottlingPreUserRegistrationStage": ".suspicious_ip_throttling_pre_user_registration_stage", "SuspiciousIpThrottlingShieldsEnum": ".suspicious_ip_throttling_shields_enum", @@ -7366,6 +7403,7 @@ "TestActionResultPayload": ".test_action_result_payload", "TestCustomDomainResponseContent": ".test_custom_domain_response_content", "TestEventDataContent": ".test_event_data_content", + "ThirdPartyClientAccessConfig": ".third_party_client_access_config", "TokenExchangeProfileResponseContent": ".token_exchange_profile_response_content", "TokenExchangeProfileTypeEnum": ".token_exchange_profile_type_enum", "TokenQuota": ".token_quota", @@ -7457,6 +7495,7 @@ "UpdateConnectionRequestContentYahoo": ".update_connection_request_content_yahoo", "UpdateConnectionRequestContentYandex": ".update_connection_request_content_yandex", "UpdateConnectionResponseContent": ".update_connection_response_content", + "UpdateCrossAppAccessResourceApp": ".update_cross_app_access_resource_app", "UpdateCustomDomainResponseContent": ".update_custom_domain_response_content", "UpdateDefaultCanonicalDomainResponseContent": ".update_default_canonical_domain_response_content", "UpdateDefaultCustomDomainResponseContent": ".update_default_custom_domain_response_content", @@ -7479,6 +7518,7 @@ "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".update_guardian_factors_provider_push_notification_sns_response_content", "UpdateHookResponseContent": ".update_hook_response_content", "UpdateHookSecretRequestContent": ".update_hook_secret_request_content", + "UpdateIdentityAssertionAuthorizationGrant": ".update_identity_assertion_authorization_grant", "UpdateLogStreamResponseContent": ".update_log_stream_response_content", "UpdateNetworkAclResponseContent": ".update_network_acl_response_content", "UpdateOrganizationAllConnectionResponseContent": ".update_organization_all_connection_response_content", @@ -7691,6 +7731,11 @@ def __dir__(): "BrandingThemeFontSubtitle", "BrandingThemeFontTitle", "BrandingThemeFonts", + "BrandingThemeIdentifiers", + "BrandingThemeIdentifiersLoginDisplayEnum", + "BrandingThemeIdentifiersPhoneDisplay", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum", "BrandingThemePageBackground", "BrandingThemePageBackgroundPageLayoutEnum", "BrandingThemeWidget", @@ -7901,6 +7946,8 @@ def __dir__(): "ConnectionConnectedAccountsPurposeXaa", "ConnectionConnectionSettings", "ConnectionConnectionSettingsPkceEnum", + "ConnectionCrossAppAccessResourceApp", + "ConnectionCrossAppAccessResourceAppStatusEnum", "ConnectionCustomHeadersOAuth2", "ConnectionCustomScripts", "ConnectionDebugSaml", @@ -8464,6 +8511,7 @@ def __dir__(): "CreateConnectionRequestContentYandex", "CreateConnectionRequestContentYandexStrategy", "CreateConnectionResponseContent", + "CreateCrossAppAccessResourceApp", "CreateCustomDomainResponseContent", "CreateDirectoryProvisioningRequestContent", "CreateDirectoryProvisioningResponseContent", @@ -8559,6 +8607,7 @@ def __dir__(): "CreateGuardianEnrollmentTicketResponseContent", "CreateHookResponseContent", "CreateHookSecretRequestContent", + "CreateIdentityAssertionAuthorizationGrant", "CreateImportUsersResponseContent", "CreateLogStreamDatadogRequestBody", "CreateLogStreamEventBridgeRequestBody", @@ -8599,6 +8648,8 @@ def __dir__(): "CredentialDeviceTypeEnum", "CredentialId", "CrossAppAccessRequestingApp", + "CrossAppAccessResourceApp", + "CrossAppAccessResourceAppStatusEnum", "CspDirectives", "CspFlag", "CspFlags", @@ -10122,6 +10173,7 @@ def __dir__(): "HookTriggerIdEnum", "HttpCustomHeader", "Identity", + "IdentityAssertionAuthorizationGrant", "IdentityProviderEnum", "IdentityProviderOnlyAuth0Enum", "ImportEncryptionKeyResponseContent", @@ -10430,6 +10482,8 @@ def __dir__(): "SelfServiceProfileSsoTicketProvisioningScopeEnum", "SelfServiceProfileUserAttribute", "SelfServiceProfileUserAttributes", + "SessionActorClaimValue", + "SessionActorMetadata", "SessionAuthenticationSignal", "SessionAuthenticationSignals", "SessionClientMetadata", @@ -10479,6 +10533,7 @@ def __dir__(): "SupportedLocales", "SuspiciousIpThrottlingAllowlist", "SuspiciousIpThrottlingAllowlistItem", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage", "SuspiciousIpThrottlingPreLoginStage", "SuspiciousIpThrottlingPreUserRegistrationStage", "SuspiciousIpThrottlingShieldsEnum", @@ -10507,6 +10562,7 @@ def __dir__(): "TestActionResultPayload", "TestCustomDomainResponseContent", "TestEventDataContent", + "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", "TokenQuota", @@ -10598,6 +10654,7 @@ def __dir__(): "UpdateConnectionRequestContentYahoo", "UpdateConnectionRequestContentYandex", "UpdateConnectionResponseContent", + "UpdateCrossAppAccessResourceApp", "UpdateCustomDomainResponseContent", "UpdateDefaultCanonicalDomainResponseContent", "UpdateDefaultCustomDomainResponseContent", @@ -10620,6 +10677,7 @@ def __dir__(): "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", "UpdateHookResponseContent", "UpdateHookSecretRequestContent", + "UpdateIdentityAssertionAuthorizationGrant", "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", diff --git a/src/auth0/management/types/branding_theme_identifiers.py b/src/auth0/management/types/branding_theme_identifiers.py new file mode 100644 index 00000000..3ce57ebf --- /dev/null +++ b/src/auth0/management/types/branding_theme_identifiers.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 +from .branding_theme_identifiers_login_display_enum import BrandingThemeIdentifiersLoginDisplayEnum +from .branding_theme_identifiers_phone_display import BrandingThemeIdentifiersPhoneDisplay + + +class BrandingThemeIdentifiers(UniversalBaseModel): + login_display: BrandingThemeIdentifiersLoginDisplayEnum + otp_autocomplete: bool = pydantic.Field() + """ + OTP autocomplete + """ + + phone_display: BrandingThemeIdentifiersPhoneDisplay + + 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/branding_theme_identifiers_login_display_enum.py b/src/auth0/management/types/branding_theme_identifiers_login_display_enum.py new file mode 100644 index 00000000..39aee76d --- /dev/null +++ b/src/auth0/management/types/branding_theme_identifiers_login_display_enum.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +BrandingThemeIdentifiersLoginDisplayEnum = typing.Union[typing.Literal["separate", "unified"], typing.Any] diff --git a/src/auth0/management/types/branding_theme_identifiers_phone_display.py b/src/auth0/management/types/branding_theme_identifiers_phone_display.py new file mode 100644 index 00000000..93d6d15b --- /dev/null +++ b/src/auth0/management/types/branding_theme_identifiers_phone_display.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 +from .branding_theme_identifiers_phone_display_formatting_enum import BrandingThemeIdentifiersPhoneDisplayFormattingEnum +from .branding_theme_identifiers_phone_display_masking_enum import BrandingThemeIdentifiersPhoneDisplayMaskingEnum + + +class BrandingThemeIdentifiersPhoneDisplay(UniversalBaseModel): + """ + Phone display + """ + + formatting: BrandingThemeIdentifiersPhoneDisplayFormattingEnum + masking: BrandingThemeIdentifiersPhoneDisplayMaskingEnum + + 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/branding_theme_identifiers_phone_display_formatting_enum.py b/src/auth0/management/types/branding_theme_identifiers_phone_display_formatting_enum.py new file mode 100644 index 00000000..24891b86 --- /dev/null +++ b/src/auth0/management/types/branding_theme_identifiers_phone_display_formatting_enum.py @@ -0,0 +1,7 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +BrandingThemeIdentifiersPhoneDisplayFormattingEnum = typing.Union[ + typing.Literal["international", "regional"], typing.Any +] diff --git a/src/auth0/management/types/branding_theme_identifiers_phone_display_masking_enum.py b/src/auth0/management/types/branding_theme_identifiers_phone_display_masking_enum.py new file mode 100644 index 00000000..c6d42263 --- /dev/null +++ b/src/auth0/management/types/branding_theme_identifiers_phone_display_masking_enum.py @@ -0,0 +1,7 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +BrandingThemeIdentifiersPhoneDisplayMaskingEnum = typing.Union[ + typing.Literal["hide_country_code", "mask_digits", "show_all"], typing.Any +] diff --git a/src/auth0/management/types/client.py b/src/auth0/management/types/client.py index 8dac204b..e25ce6b6 100644 --- a/src/auth0/management/types/client.py +++ b/src/auth0/management/types/client.py @@ -36,6 +36,7 @@ from .client_token_vault_privileged_access_with_credential_id import ClientTokenVaultPrivilegedAccessWithCredentialId from .express_configuration import ExpressConfiguration from .fed_cm_login import FedCmLogin +from .identity_assertion_authorization_grant import IdentityAssertionAuthorizationGrant from .native_social_login import NativeSocialLogin from .token_quota import TokenQuota @@ -231,6 +232,7 @@ class Client(UniversalBaseModel): token_quota: typing.Optional[TokenQuota] = None express_configuration: typing.Optional[ExpressConfiguration] = None my_organization_configuration: typing.Optional[ClientMyOrganizationResponseConfiguration] = None + identity_assertion_authorization_grant: typing.Optional[IdentityAssertionAuthorizationGrant] = None third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = None redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = None resource_server_identifier: typing.Optional[str] = pydantic.Field(default=None) diff --git a/src/auth0/management/types/client_app_type_enum.py b/src/auth0/management/types/client_app_type_enum.py index 28094665..2d03027a 100644 --- a/src/auth0/management/types/client_app_type_enum.py +++ b/src/auth0/management/types/client_app_type_enum.py @@ -10,6 +10,7 @@ "non_interactive", "resource_server", "express_configuration", + "b2b_integration", "rms", "box", "cloudbees", diff --git a/src/auth0/management/types/client_grant_subject_type_enum.py b/src/auth0/management/types/client_grant_subject_type_enum.py index f38b5895..9fbf9b77 100644 --- a/src/auth0/management/types/client_grant_subject_type_enum.py +++ b/src/auth0/management/types/client_grant_subject_type_enum.py @@ -2,4 +2,4 @@ import typing -ClientGrantSubjectTypeEnum = typing.Union[typing.Literal["client", "user"], typing.Any] +ClientGrantSubjectTypeEnum = typing.Union[typing.Literal["client", "user", "anonymous_user"], typing.Any] diff --git a/src/auth0/management/types/connection_cross_app_access_resource_app.py b/src/auth0/management/types/connection_cross_app_access_resource_app.py new file mode 100644 index 00000000..0943e8db --- /dev/null +++ b/src/auth0/management/types/connection_cross_app_access_resource_app.py @@ -0,0 +1,24 @@ +# 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 .connection_cross_app_access_resource_app_status_enum import ConnectionCrossAppAccessResourceAppStatusEnum + + +class ConnectionCrossAppAccessResourceApp(UniversalBaseModel): + """ + Cross App Access - Resource App settings that apply to this connection. + """ + + status: ConnectionCrossAppAccessResourceAppStatusEnum + + 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/connection_cross_app_access_resource_app_status_enum.py b/src/auth0/management/types/connection_cross_app_access_resource_app_status_enum.py new file mode 100644 index 00000000..7894b678 --- /dev/null +++ b/src/auth0/management/types/connection_cross_app_access_resource_app_status_enum.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +ConnectionCrossAppAccessResourceAppStatusEnum = typing.Union[typing.Literal["disabled", "enabled"], typing.Any] diff --git a/src/auth0/management/types/connection_for_list.py b/src/auth0/management/types/connection_for_list.py index 83921553..7e924391 100644 --- a/src/auth0/management/types/connection_for_list.py +++ b/src/auth0/management/types/connection_for_list.py @@ -9,6 +9,7 @@ from .connection_options import ConnectionOptions from .connections_metadata import ConnectionsMetadata from .cross_app_access_requesting_app import CrossAppAccessRequestingApp +from .cross_app_access_resource_app import CrossAppAccessResourceApp class ConnectionForList(UniversalBaseModel): @@ -52,6 +53,7 @@ class ConnectionForList(UniversalBaseModel): authentication: typing.Optional[ConnectionAuthenticationPurpose] = None connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = None cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = None + cross_app_access_resource_app: typing.Optional[CrossAppAccessResourceApp] = 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/connection_response_content_oidc.py b/src/auth0/management/types/connection_response_content_oidc.py index fc5a3346..99d46a58 100644 --- a/src/auth0/management/types/connection_response_content_oidc.py +++ b/src/auth0/management/types/connection_response_content_oidc.py @@ -6,6 +6,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2 from .connection_authentication_purpose import ConnectionAuthenticationPurpose from .connection_connected_accounts_purpose_xaa import ConnectionConnectedAccountsPurposeXaa +from .connection_cross_app_access_resource_app import ConnectionCrossAppAccessResourceApp from .connection_options_oidc import ConnectionOptionsOidc from .connection_response_common import ConnectionResponseCommon from .connection_response_content_oidc_strategy import ConnectionResponseContentOidcStrategy @@ -22,6 +23,7 @@ class ConnectionResponseContentOidc(ConnectionResponseCommon): authentication: typing.Optional[ConnectionAuthenticationPurpose] = None connected_accounts: typing.Optional[ConnectionConnectedAccountsPurposeXaa] = None cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = None + cross_app_access_resource_app: typing.Optional[ConnectionCrossAppAccessResourceApp] = None options: typing.Optional[ConnectionOptionsOidc] = None show_as_button: typing.Optional[ConnectionShowAsButton] = None diff --git a/src/auth0/management/types/create_branding_theme_response_content.py b/src/auth0/management/types/create_branding_theme_response_content.py index 171a3314..8ebb6bfb 100644 --- a/src/auth0/management/types/create_branding_theme_response_content.py +++ b/src/auth0/management/types/create_branding_theme_response_content.py @@ -9,6 +9,7 @@ from .branding_theme_borders import BrandingThemeBorders from .branding_theme_colors import BrandingThemeColors from .branding_theme_fonts import BrandingThemeFonts +from .branding_theme_identifiers import BrandingThemeIdentifiers from .branding_theme_page_background import BrandingThemePageBackground from .branding_theme_widget import BrandingThemeWidget @@ -24,6 +25,7 @@ class CreateBrandingThemeResponseContent(UniversalBaseModel): """ fonts: BrandingThemeFonts + identifiers: typing.Optional[BrandingThemeIdentifiers] = None page_background: BrandingThemePageBackground theme_id: typing_extensions.Annotated[ str, FieldMetadata(alias="themeId"), pydantic.Field(alias="themeId", description="Theme Id") diff --git a/src/auth0/management/types/create_client_response_content.py b/src/auth0/management/types/create_client_response_content.py index a0218971..d3594e00 100644 --- a/src/auth0/management/types/create_client_response_content.py +++ b/src/auth0/management/types/create_client_response_content.py @@ -36,6 +36,7 @@ from .client_token_vault_privileged_access_with_credential_id import ClientTokenVaultPrivilegedAccessWithCredentialId from .express_configuration import ExpressConfiguration from .fed_cm_login import FedCmLogin +from .identity_assertion_authorization_grant import IdentityAssertionAuthorizationGrant from .native_social_login import NativeSocialLogin from .token_quota import TokenQuota @@ -231,6 +232,7 @@ class CreateClientResponseContent(UniversalBaseModel): token_quota: typing.Optional[TokenQuota] = None express_configuration: typing.Optional[ExpressConfiguration] = None my_organization_configuration: typing.Optional[ClientMyOrganizationResponseConfiguration] = None + identity_assertion_authorization_grant: typing.Optional[IdentityAssertionAuthorizationGrant] = None third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = None redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = None resource_server_identifier: typing.Optional[str] = pydantic.Field(default=None) diff --git a/src/auth0/management/types/create_connection_request_content_oidc.py b/src/auth0/management/types/create_connection_request_content_oidc.py index 77bc6987..932970ab 100644 --- a/src/auth0/management/types/create_connection_request_content_oidc.py +++ b/src/auth0/management/types/create_connection_request_content_oidc.py @@ -6,6 +6,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2 from .connection_authentication_purpose import ConnectionAuthenticationPurpose from .connection_connected_accounts_purpose_xaa import ConnectionConnectedAccountsPurposeXaa +from .connection_cross_app_access_resource_app import ConnectionCrossAppAccessResourceApp from .connection_options_oidc import ConnectionOptionsOidc from .connection_show_as_button import ConnectionShowAsButton from .create_connection_common import CreateConnectionCommon @@ -22,6 +23,7 @@ class CreateConnectionRequestContentOidc(CreateConnectionCommon): authentication: typing.Optional[ConnectionAuthenticationPurpose] = None connected_accounts: typing.Optional[ConnectionConnectedAccountsPurposeXaa] = None cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = None + cross_app_access_resource_app: typing.Optional[ConnectionCrossAppAccessResourceApp] = None options: typing.Optional[ConnectionOptionsOidc] = None show_as_button: typing.Optional[ConnectionShowAsButton] = None diff --git a/src/auth0/management/types/create_connection_response_content.py b/src/auth0/management/types/create_connection_response_content.py index e63dcaa3..2f9510dd 100644 --- a/src/auth0/management/types/create_connection_response_content.py +++ b/src/auth0/management/types/create_connection_response_content.py @@ -9,6 +9,7 @@ from .connection_options import ConnectionOptions from .connections_metadata import ConnectionsMetadata from .cross_app_access_requesting_app import CrossAppAccessRequestingApp +from .cross_app_access_resource_app import CrossAppAccessResourceApp class CreateConnectionResponseContent(UniversalBaseModel): @@ -57,6 +58,7 @@ class CreateConnectionResponseContent(UniversalBaseModel): authentication: typing.Optional[ConnectionAuthenticationPurpose] = None connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = None cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = None + cross_app_access_resource_app: typing.Optional[CrossAppAccessResourceApp] = 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/create_cross_app_access_resource_app.py b/src/auth0/management/types/create_cross_app_access_resource_app.py new file mode 100644 index 00000000..d80b9081 --- /dev/null +++ b/src/auth0/management/types/create_cross_app_access_resource_app.py @@ -0,0 +1,24 @@ +# 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 .cross_app_access_resource_app_status_enum import CrossAppAccessResourceAppStatusEnum + + +class CreateCrossAppAccessResourceApp(UniversalBaseModel): + """ + Cross App Access - Resource App settings that apply to this connection. + """ + + status: CrossAppAccessResourceAppStatusEnum + + 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_identity_assertion_authorization_grant.py b/src/auth0/management/types/create_identity_assertion_authorization_grant.py new file mode 100644 index 00000000..f4f7e001 --- /dev/null +++ b/src/auth0/management/types/create_identity_assertion_authorization_grant.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 CreateIdentityAssertionAuthorizationGrant(UniversalBaseModel): + """ + Configuration on the use of ID-JAGs for Cross App Access. + """ + + active: bool = pydantic.Field() + """ + If set to true, the client can exchange ID-JAGs for access tokens. + """ + + 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/cross_app_access_resource_app.py b/src/auth0/management/types/cross_app_access_resource_app.py new file mode 100644 index 00000000..332785d6 --- /dev/null +++ b/src/auth0/management/types/cross_app_access_resource_app.py @@ -0,0 +1,24 @@ +# 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 .cross_app_access_resource_app_status_enum import CrossAppAccessResourceAppStatusEnum + + +class CrossAppAccessResourceApp(UniversalBaseModel): + """ + Cross App Access - Resource App settings that apply to this connection. + """ + + status: CrossAppAccessResourceAppStatusEnum + + 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/cross_app_access_resource_app_status_enum.py b/src/auth0/management/types/cross_app_access_resource_app_status_enum.py new file mode 100644 index 00000000..a6faf39a --- /dev/null +++ b/src/auth0/management/types/cross_app_access_resource_app_status_enum.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +CrossAppAccessResourceAppStatusEnum = typing.Union[typing.Literal["enabled", "disabled"], typing.Any] diff --git a/src/auth0/management/types/get_branding_default_theme_response_content.py b/src/auth0/management/types/get_branding_default_theme_response_content.py index de585c4f..26103ac3 100644 --- a/src/auth0/management/types/get_branding_default_theme_response_content.py +++ b/src/auth0/management/types/get_branding_default_theme_response_content.py @@ -9,6 +9,7 @@ from .branding_theme_borders import BrandingThemeBorders from .branding_theme_colors import BrandingThemeColors from .branding_theme_fonts import BrandingThemeFonts +from .branding_theme_identifiers import BrandingThemeIdentifiers from .branding_theme_page_background import BrandingThemePageBackground from .branding_theme_widget import BrandingThemeWidget @@ -24,6 +25,7 @@ class GetBrandingDefaultThemeResponseContent(UniversalBaseModel): """ fonts: BrandingThemeFonts + identifiers: typing.Optional[BrandingThemeIdentifiers] = None page_background: BrandingThemePageBackground theme_id: typing_extensions.Annotated[ str, FieldMetadata(alias="themeId"), pydantic.Field(alias="themeId", description="Theme Id") diff --git a/src/auth0/management/types/get_branding_theme_response_content.py b/src/auth0/management/types/get_branding_theme_response_content.py index f5717e99..8032b082 100644 --- a/src/auth0/management/types/get_branding_theme_response_content.py +++ b/src/auth0/management/types/get_branding_theme_response_content.py @@ -9,6 +9,7 @@ from .branding_theme_borders import BrandingThemeBorders from .branding_theme_colors import BrandingThemeColors from .branding_theme_fonts import BrandingThemeFonts +from .branding_theme_identifiers import BrandingThemeIdentifiers from .branding_theme_page_background import BrandingThemePageBackground from .branding_theme_widget import BrandingThemeWidget @@ -24,6 +25,7 @@ class GetBrandingThemeResponseContent(UniversalBaseModel): """ fonts: BrandingThemeFonts + identifiers: typing.Optional[BrandingThemeIdentifiers] = None page_background: BrandingThemePageBackground theme_id: typing_extensions.Annotated[ str, FieldMetadata(alias="themeId"), pydantic.Field(alias="themeId", description="Theme Id") diff --git a/src/auth0/management/types/get_client_response_content.py b/src/auth0/management/types/get_client_response_content.py index c850c6d7..b3685afd 100644 --- a/src/auth0/management/types/get_client_response_content.py +++ b/src/auth0/management/types/get_client_response_content.py @@ -36,6 +36,7 @@ from .client_token_vault_privileged_access_with_credential_id import ClientTokenVaultPrivilegedAccessWithCredentialId from .express_configuration import ExpressConfiguration from .fed_cm_login import FedCmLogin +from .identity_assertion_authorization_grant import IdentityAssertionAuthorizationGrant from .native_social_login import NativeSocialLogin from .token_quota import TokenQuota @@ -231,6 +232,7 @@ class GetClientResponseContent(UniversalBaseModel): token_quota: typing.Optional[TokenQuota] = None express_configuration: typing.Optional[ExpressConfiguration] = None my_organization_configuration: typing.Optional[ClientMyOrganizationResponseConfiguration] = None + identity_assertion_authorization_grant: typing.Optional[IdentityAssertionAuthorizationGrant] = None third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = None redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = None resource_server_identifier: typing.Optional[str] = pydantic.Field(default=None) diff --git a/src/auth0/management/types/get_connection_response_content.py b/src/auth0/management/types/get_connection_response_content.py index a8913da3..5d3846d6 100644 --- a/src/auth0/management/types/get_connection_response_content.py +++ b/src/auth0/management/types/get_connection_response_content.py @@ -9,6 +9,7 @@ from .connection_options import ConnectionOptions from .connections_metadata import ConnectionsMetadata from .cross_app_access_requesting_app import CrossAppAccessRequestingApp +from .cross_app_access_resource_app import CrossAppAccessResourceApp class GetConnectionResponseContent(UniversalBaseModel): @@ -57,6 +58,7 @@ class GetConnectionResponseContent(UniversalBaseModel): authentication: typing.Optional[ConnectionAuthenticationPurpose] = None connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = None cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = None + cross_app_access_resource_app: typing.Optional[CrossAppAccessResourceApp] = 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_session_response_content.py b/src/auth0/management/types/get_session_response_content.py index b1457826..55ad903e 100644 --- a/src/auth0/management/types/get_session_response_content.py +++ b/src/auth0/management/types/get_session_response_content.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .session_actor_metadata import SessionActorMetadata from .session_authentication_signals import SessionAuthenticationSignals from .session_client_metadata import SessionClientMetadata from .session_cookie_metadata import SessionCookieMetadata @@ -38,6 +39,7 @@ class GetSessionResponseContent(UniversalBaseModel): authentication: typing.Optional[SessionAuthenticationSignals] = None cookie: typing.Optional[SessionCookieMetadata] = None session_metadata: typing.Optional[SessionMetadata] = None + actor: typing.Optional[SessionActorMetadata] = 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/identity_assertion_authorization_grant.py b/src/auth0/management/types/identity_assertion_authorization_grant.py new file mode 100644 index 00000000..1c4ee9c5 --- /dev/null +++ b/src/auth0/management/types/identity_assertion_authorization_grant.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 IdentityAssertionAuthorizationGrant(UniversalBaseModel): + """ + Configuration on the use of ID-JAGs for Cross App Access. + """ + + active: bool = pydantic.Field() + """ + If set to true, the client can exchange ID-JAGs for access tokens. + """ + + 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/rotate_client_secret_response_content.py b/src/auth0/management/types/rotate_client_secret_response_content.py index ca93feab..26618273 100644 --- a/src/auth0/management/types/rotate_client_secret_response_content.py +++ b/src/auth0/management/types/rotate_client_secret_response_content.py @@ -36,6 +36,7 @@ from .client_token_vault_privileged_access_with_credential_id import ClientTokenVaultPrivilegedAccessWithCredentialId from .express_configuration import ExpressConfiguration from .fed_cm_login import FedCmLogin +from .identity_assertion_authorization_grant import IdentityAssertionAuthorizationGrant from .native_social_login import NativeSocialLogin from .token_quota import TokenQuota @@ -231,6 +232,7 @@ class RotateClientSecretResponseContent(UniversalBaseModel): token_quota: typing.Optional[TokenQuota] = None express_configuration: typing.Optional[ExpressConfiguration] = None my_organization_configuration: typing.Optional[ClientMyOrganizationResponseConfiguration] = None + identity_assertion_authorization_grant: typing.Optional[IdentityAssertionAuthorizationGrant] = None third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = None redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = None resource_server_identifier: typing.Optional[str] = pydantic.Field(default=None) diff --git a/src/auth0/management/types/session_actor_claim_value.py b/src/auth0/management/types/session_actor_claim_value.py new file mode 100644 index 00000000..60517fbc --- /dev/null +++ b/src/auth0/management/types/session_actor_claim_value.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +SessionActorClaimValue = typing.Union[str, bool, float] diff --git a/src/auth0/management/types/session_actor_metadata.py b/src/auth0/management/types/session_actor_metadata.py new file mode 100644 index 00000000..63719cfb --- /dev/null +++ b/src/auth0/management/types/session_actor_metadata.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 SessionActorMetadata(UniversalBaseModel): + """ + The identity of the delegating party/session actor for delegated sessions. Present only on delegated sessions. Contains "sub" and up to 5 additional primitive claims. + """ + + sub: str = pydantic.Field() + """ + Subject identifier of the actor + """ + + 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/session_response_content.py b/src/auth0/management/types/session_response_content.py index 7a4f73dd..4b5ae44e 100644 --- a/src/auth0/management/types/session_response_content.py +++ b/src/auth0/management/types/session_response_content.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .session_actor_metadata import SessionActorMetadata from .session_authentication_signals import SessionAuthenticationSignals from .session_client_metadata import SessionClientMetadata from .session_cookie_metadata import SessionCookieMetadata @@ -38,6 +39,7 @@ class SessionResponseContent(UniversalBaseModel): authentication: typing.Optional[SessionAuthenticationSignals] = None cookie: typing.Optional[SessionCookieMetadata] = None session_metadata: typing.Optional[SessionMetadata] = None + actor: typing.Optional[SessionActorMetadata] = 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/suspicious_ip_throttling_pre_custom_token_exchange_stage.py b/src/auth0/management/types/suspicious_ip_throttling_pre_custom_token_exchange_stage.py new file mode 100644 index 00000000..c2b51d0b --- /dev/null +++ b/src/auth0/management/types/suspicious_ip_throttling_pre_custom_token_exchange_stage.py @@ -0,0 +1,31 @@ +# 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 SuspiciousIpThrottlingPreCustomTokenExchangeStage(UniversalBaseModel): + """ + Configuration options that apply before every custom token exchange attempt. + """ + + max_attempts: typing.Optional[int] = pydantic.Field(default=None) + """ + Total number of attempts allowed. + """ + + rate: typing.Optional[int] = pydantic.Field(default=None) + """ + Interval of time, given in milliseconds, at which new attempts are granted. + """ + + 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/suspicious_ip_throttling_stage.py b/src/auth0/management/types/suspicious_ip_throttling_stage.py index 5fe0240c..5876508e 100644 --- a/src/auth0/management/types/suspicious_ip_throttling_stage.py +++ b/src/auth0/management/types/suspicious_ip_throttling_stage.py @@ -6,6 +6,7 @@ import typing_extensions from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel from ..core.serialization import FieldMetadata +from .suspicious_ip_throttling_pre_custom_token_exchange_stage import SuspiciousIpThrottlingPreCustomTokenExchangeStage from .suspicious_ip_throttling_pre_login_stage import SuspiciousIpThrottlingPreLoginStage from .suspicious_ip_throttling_pre_user_registration_stage import SuspiciousIpThrottlingPreUserRegistrationStage @@ -25,6 +26,11 @@ class SuspiciousIpThrottlingStage(UniversalBaseModel): FieldMetadata(alias="pre-user-registration"), pydantic.Field(alias="pre-user-registration"), ] = None + pre_custom_token_exchange: typing_extensions.Annotated[ + typing.Optional[SuspiciousIpThrottlingPreCustomTokenExchangeStage], + FieldMetadata(alias="pre-custom-token-exchange"), + pydantic.Field(alias="pre-custom-token-exchange"), + ] = 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/third_party_client_access_config.py b/src/auth0/management/types/third_party_client_access_config.py new file mode 100644 index 00000000..ff87c8a5 --- /dev/null +++ b/src/auth0/management/types/third_party_client_access_config.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 ThirdPartyClientAccessConfig(UniversalBaseModel): + """ + Configuration for Third Party Client Access during the Self-Service Enterprise Configuration flow. + """ + + allow_configuration: bool = pydantic.Field() + """ + Whether third-party applications can configure the connection as a domain-level connection during the Self-Service Enterprise Configuration flow. + """ + + 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_branding_theme_response_content.py b/src/auth0/management/types/update_branding_theme_response_content.py index c5874b93..ab374b3b 100644 --- a/src/auth0/management/types/update_branding_theme_response_content.py +++ b/src/auth0/management/types/update_branding_theme_response_content.py @@ -9,6 +9,7 @@ from .branding_theme_borders import BrandingThemeBorders from .branding_theme_colors import BrandingThemeColors from .branding_theme_fonts import BrandingThemeFonts +from .branding_theme_identifiers import BrandingThemeIdentifiers from .branding_theme_page_background import BrandingThemePageBackground from .branding_theme_widget import BrandingThemeWidget @@ -24,6 +25,7 @@ class UpdateBrandingThemeResponseContent(UniversalBaseModel): """ fonts: BrandingThemeFonts + identifiers: typing.Optional[BrandingThemeIdentifiers] = None page_background: BrandingThemePageBackground theme_id: typing_extensions.Annotated[ str, FieldMetadata(alias="themeId"), pydantic.Field(alias="themeId", description="Theme Id") diff --git a/src/auth0/management/types/update_client_response_content.py b/src/auth0/management/types/update_client_response_content.py index 569399ea..1a54913d 100644 --- a/src/auth0/management/types/update_client_response_content.py +++ b/src/auth0/management/types/update_client_response_content.py @@ -36,6 +36,7 @@ from .client_token_vault_privileged_access_with_credential_id import ClientTokenVaultPrivilegedAccessWithCredentialId from .express_configuration import ExpressConfiguration from .fed_cm_login import FedCmLogin +from .identity_assertion_authorization_grant import IdentityAssertionAuthorizationGrant from .native_social_login import NativeSocialLogin from .token_quota import TokenQuota @@ -231,6 +232,7 @@ class UpdateClientResponseContent(UniversalBaseModel): token_quota: typing.Optional[TokenQuota] = None express_configuration: typing.Optional[ExpressConfiguration] = None my_organization_configuration: typing.Optional[ClientMyOrganizationResponseConfiguration] = None + identity_assertion_authorization_grant: typing.Optional[IdentityAssertionAuthorizationGrant] = None third_party_security_mode: typing.Optional[ClientThirdPartySecurityModeEnum] = None redirection_policy: typing.Optional[ClientRedirectionPolicyEnum] = None resource_server_identifier: typing.Optional[str] = pydantic.Field(default=None) diff --git a/src/auth0/management/types/update_connection_request_content_oidc.py b/src/auth0/management/types/update_connection_request_content_oidc.py index a7be509b..79658211 100644 --- a/src/auth0/management/types/update_connection_request_content_oidc.py +++ b/src/auth0/management/types/update_connection_request_content_oidc.py @@ -7,6 +7,7 @@ from .connection_authentication_purpose import ConnectionAuthenticationPurpose from .connection_common import ConnectionCommon from .connection_connected_accounts_purpose_xaa import ConnectionConnectedAccountsPurposeXaa +from .connection_cross_app_access_resource_app import ConnectionCrossAppAccessResourceApp from .connection_options_oidc import ConnectionOptionsOidc from .connection_show_as_button import ConnectionShowAsButton from .cross_app_access_requesting_app import CrossAppAccessRequestingApp @@ -21,6 +22,7 @@ class UpdateConnectionRequestContentOidc(ConnectionCommon): authentication: typing.Optional[ConnectionAuthenticationPurpose] = None connected_accounts: typing.Optional[ConnectionConnectedAccountsPurposeXaa] = None cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = None + cross_app_access_resource_app: typing.Optional[ConnectionCrossAppAccessResourceApp] = None show_as_button: typing.Optional[ConnectionShowAsButton] = None if IS_PYDANTIC_V2: diff --git a/src/auth0/management/types/update_connection_response_content.py b/src/auth0/management/types/update_connection_response_content.py index a163d743..34adc274 100644 --- a/src/auth0/management/types/update_connection_response_content.py +++ b/src/auth0/management/types/update_connection_response_content.py @@ -9,6 +9,7 @@ from .connection_options import ConnectionOptions from .connections_metadata import ConnectionsMetadata from .cross_app_access_requesting_app import CrossAppAccessRequestingApp +from .cross_app_access_resource_app import CrossAppAccessResourceApp class UpdateConnectionResponseContent(UniversalBaseModel): @@ -57,6 +58,7 @@ class UpdateConnectionResponseContent(UniversalBaseModel): authentication: typing.Optional[ConnectionAuthenticationPurpose] = None connected_accounts: typing.Optional[ConnectionConnectedAccountsPurpose] = None cross_app_access_requesting_app: typing.Optional[CrossAppAccessRequestingApp] = None + cross_app_access_resource_app: typing.Optional[CrossAppAccessResourceApp] = 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_cross_app_access_resource_app.py b/src/auth0/management/types/update_cross_app_access_resource_app.py new file mode 100644 index 00000000..6613bb85 --- /dev/null +++ b/src/auth0/management/types/update_cross_app_access_resource_app.py @@ -0,0 +1,24 @@ +# 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 .cross_app_access_resource_app_status_enum import CrossAppAccessResourceAppStatusEnum + + +class UpdateCrossAppAccessResourceApp(UniversalBaseModel): + """ + Cross App Access - Resource App settings that apply to this connection. + """ + + status: CrossAppAccessResourceAppStatusEnum + + 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_identity_assertion_authorization_grant.py b/src/auth0/management/types/update_identity_assertion_authorization_grant.py new file mode 100644 index 00000000..9c4a481b --- /dev/null +++ b/src/auth0/management/types/update_identity_assertion_authorization_grant.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 UpdateIdentityAssertionAuthorizationGrant(UniversalBaseModel): + """ + Configuration on the use of ID-JAGs for Cross App Access. + """ + + active: bool = pydantic.Field() + """ + If set to true, the client can exchange ID-JAGs for access tokens. + """ + + 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_session_response_content.py b/src/auth0/management/types/update_session_response_content.py index 5e160a67..11341250 100644 --- a/src/auth0/management/types/update_session_response_content.py +++ b/src/auth0/management/types/update_session_response_content.py @@ -4,6 +4,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .session_actor_metadata import SessionActorMetadata from .session_authentication_signals import SessionAuthenticationSignals from .session_client_metadata import SessionClientMetadata from .session_cookie_metadata import SessionCookieMetadata @@ -38,6 +39,7 @@ class UpdateSessionResponseContent(UniversalBaseModel): authentication: typing.Optional[SessionAuthenticationSignals] = None cookie: typing.Optional[SessionCookieMetadata] = None session_metadata: typing.Optional[SessionMetadata] = None + actor: typing.Optional[SessionActorMetadata] = None if IS_PYDANTIC_V2: model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 diff --git a/wiremock/wiremock-mappings.json b/wiremock/wiremock-mappings.json index c9342b58..e339c10b 100644 --- a/wiremock/wiremock-mappings.json +++ b/wiremock/wiremock-mappings.json @@ -571,7 +571,7 @@ }, "response": { "status": 200, - "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"clients\": [\n {\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"grant_types\": [\n \"grant_types\"\n ],\n \"signing_keys\": [\n {}\n ],\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\"\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\"\n },\n \"my_organization_configuration\": {\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\"\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n }\n ]\n}", + "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"clients\": [\n {\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"grant_types\": [\n \"grant_types\"\n ],\n \"signing_keys\": [\n {}\n ],\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\"\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\"\n },\n \"my_organization_configuration\": {\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\"\n },\n \"identity_assertion_authorization_grant\": {\n \"active\": true\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -603,7 +603,7 @@ }, "response": { "status": 201, - "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", + "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"identity_assertion_authorization_grant\": {\n \"active\": true\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", "headers": { "Content-Type": "application/json" } @@ -709,7 +709,7 @@ }, "response": { "status": 200, - "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", + "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"identity_assertion_authorization_grant\": {\n \"active\": true\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", "headers": { "Content-Type": "application/json" } @@ -781,7 +781,7 @@ }, "response": { "status": 200, - "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", + "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"identity_assertion_authorization_grant\": {\n \"active\": true\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", "headers": { "Content-Type": "application/json" } @@ -817,7 +817,7 @@ }, "response": { "status": 200, - "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", + "body": "{\n \"client_id\": \"client_id\",\n \"tenant\": \"tenant\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"global\": true,\n \"client_secret\": \"client_secret\",\n \"app_type\": \"native\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"oidc_conformant\": true,\n \"callbacks\": [\n \"callbacks\"\n ],\n \"allowed_origins\": [\n \"allowed_origins\"\n ],\n \"web_origins\": [\n \"web_origins\"\n ],\n \"client_aliases\": [\n \"client_aliases\"\n ],\n \"allowed_clients\": [\n \"allowed_clients\"\n ],\n \"allowed_logout_urls\": [\n \"allowed_logout_urls\"\n ],\n \"session_transfer\": {\n \"can_create_session_transfer_token\": true,\n \"enforce_cascade_revocation\": true,\n \"allowed_authentication_methods\": [\n \"cookie\"\n ],\n \"enforce_device_binding\": \"ip\",\n \"allow_refresh_token\": true,\n \"enforce_online_refresh_tokens\": true,\n \"delegation\": {\n \"allow_delegated_access\": true,\n \"enforce_device_binding\": \"ip\"\n }\n },\n \"oidc_logout\": {\n \"backchannel_logout_urls\": [\n \"backchannel_logout_urls\"\n ],\n \"backchannel_logout_initiators\": {\n \"mode\": \"custom\",\n \"selected_initiators\": [\n \"rp-logout\"\n ]\n },\n \"backchannel_logout_session_metadata\": {\n \"include\": true\n }\n },\n \"grant_types\": [\n \"grant_types\"\n ],\n \"jwt_configuration\": {\n \"lifetime_in_seconds\": 1,\n \"secret_encoded\": true,\n \"scopes\": {\n \"key\": \"value\"\n },\n \"alg\": \"HS256\"\n },\n \"signing_keys\": [\n {\n \"pkcs7\": \"pkcs7\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n }\n ],\n \"encryption_key\": {\n \"pub\": \"pub\",\n \"cert\": \"cert\",\n \"subject\": \"subject\"\n },\n \"sso\": true,\n \"sso_disabled\": true,\n \"cross_origin_authentication\": true,\n \"cross_origin_loc\": \"cross_origin_loc\",\n \"custom_login_page_on\": true,\n \"custom_login_page\": \"custom_login_page\",\n \"custom_login_page_preview\": \"custom_login_page_preview\",\n \"form_template\": \"form_template\",\n \"addons\": {\n \"aws\": {\n \"principal\": \"principal\",\n \"role\": \"role\",\n \"lifetime_in_seconds\": 1\n },\n \"azure_blob\": {\n \"accountName\": \"accountName\",\n \"storageAccessKey\": \"storageAccessKey\",\n \"containerName\": \"containerName\",\n \"blobName\": \"blobName\",\n \"expiration\": 1,\n \"signedIdentifier\": \"signedIdentifier\",\n \"blob_read\": true,\n \"blob_write\": true,\n \"blob_delete\": true,\n \"container_read\": true,\n \"container_write\": true,\n \"container_delete\": true,\n \"container_list\": true\n },\n \"azure_sb\": {\n \"namespace\": \"namespace\",\n \"sasKeyName\": \"sasKeyName\",\n \"sasKey\": \"sasKey\",\n \"entityPath\": \"entityPath\",\n \"expiration\": 1\n },\n \"rms\": {\n \"url\": \"url\"\n },\n \"mscrm\": {\n \"url\": \"url\"\n },\n \"slack\": {\n \"team\": \"team\"\n },\n \"sentry\": {\n \"org_slug\": \"org_slug\",\n \"base_url\": \"base_url\"\n },\n \"box\": {\n \"key\": \"value\"\n },\n \"cloudbees\": {\n \"key\": \"value\"\n },\n \"concur\": {\n \"key\": \"value\"\n },\n \"dropbox\": {\n \"key\": \"value\"\n },\n \"echosign\": {\n \"domain\": \"domain\"\n },\n \"egnyte\": {\n \"domain\": \"domain\"\n },\n \"firebase\": {\n \"secret\": \"secret\",\n \"private_key_id\": \"private_key_id\",\n \"private_key\": \"private_key\",\n \"client_email\": \"client_email\",\n \"lifetime_in_seconds\": 1\n },\n \"newrelic\": {\n \"account\": \"account\"\n },\n \"office365\": {\n \"domain\": \"domain\",\n \"connection\": \"connection\"\n },\n \"salesforce\": {\n \"entity_id\": \"entity_id\"\n },\n \"salesforce_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"salesforce_sandbox_api\": {\n \"clientid\": \"clientid\",\n \"principal\": \"principal\",\n \"communityName\": \"communityName\",\n \"community_url_section\": \"community_url_section\"\n },\n \"samlp\": {\n \"mappings\": {\n \"key\": \"value\"\n },\n \"audience\": \"audience\",\n \"recipient\": \"recipient\",\n \"createUpnClaim\": true,\n \"mapUnknownClaimsAsIs\": true,\n \"passthroughClaimsWithNoMapping\": true,\n \"mapIdentities\": true,\n \"signatureAlgorithm\": \"signatureAlgorithm\",\n \"digestAlgorithm\": \"digestAlgorithm\",\n \"issuer\": \"issuer\",\n \"destination\": \"destination\",\n \"lifetimeInSeconds\": 1,\n \"signResponse\": true,\n \"nameIdentifierFormat\": \"nameIdentifierFormat\",\n \"nameIdentifierProbes\": [\n \"nameIdentifierProbes\"\n ],\n \"authnContextClassRef\": \"authnContextClassRef\"\n },\n \"layer\": {\n \"providerId\": \"providerId\",\n \"keyId\": \"keyId\",\n \"privateKey\": \"privateKey\",\n \"principal\": \"principal\",\n \"expiration\": 1\n },\n \"sap_api\": {\n \"clientid\": \"clientid\",\n \"usernameAttribute\": \"usernameAttribute\",\n \"tokenEndpointUrl\": \"tokenEndpointUrl\",\n \"scope\": \"scope\",\n \"servicePassword\": \"servicePassword\",\n \"nameIdentifierFormat\": \"nameIdentifierFormat\"\n },\n \"sharepoint\": {\n \"url\": \"url\",\n \"external_url\": [\n \"external_url\"\n ]\n },\n \"springcm\": {\n \"acsurl\": \"acsurl\"\n },\n \"wams\": {\n \"masterkey\": \"masterkey\"\n },\n \"wsfed\": {\n \"key\": \"value\"\n },\n \"zendesk\": {\n \"accountName\": \"accountName\"\n },\n \"zoom\": {\n \"account\": \"account\"\n },\n \"sso_integration\": {\n \"name\": \"name\",\n \"version\": \"version\"\n }\n },\n \"token_endpoint_auth_method\": \"none\",\n \"is_token_endpoint_ip_header_trusted\": true,\n \"client_metadata\": {\n \"key\": \"value\"\n },\n \"mobile\": {\n \"android\": {\n \"app_package_name\": \"app_package_name\",\n \"sha256_cert_fingerprints\": [\n \"sha256_cert_fingerprints\"\n ]\n },\n \"ios\": {\n \"team_id\": \"team_id\",\n \"app_bundle_identifier\": \"app_bundle_identifier\"\n }\n },\n \"initiate_login_uri\": \"initiate_login_uri\",\n \"native_social_login\": {\n \"apple\": {\n \"enabled\": true\n },\n \"facebook\": {\n \"enabled\": true\n },\n \"google\": {\n \"enabled\": true\n }\n },\n \"fedcm_login\": {\n \"google\": {\n \"is_enabled\": true\n }\n },\n \"refresh_token\": {\n \"rotation_type\": \"rotating\",\n \"expiration_type\": \"expiring\",\n \"leeway\": 1,\n \"token_lifetime\": 1,\n \"infinite_token_lifetime\": true,\n \"idle_token_lifetime\": 1,\n \"infinite_idle_token_lifetime\": true,\n \"policies\": [\n {\n \"audience\": \"audience\",\n \"scope\": [\n \"scope\"\n ]\n }\n ]\n },\n \"default_organization\": {\n \"organization_id\": \"organization_id\",\n \"flows\": [\n \"client_credentials\"\n ]\n },\n \"organization_usage\": \"deny\",\n \"organization_require_behavior\": \"no_prompt\",\n \"organization_discovery_methods\": [\n \"email\"\n ],\n \"client_authentication_methods\": {\n \"private_key_jwt\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"self_signed_tls_client_auth\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n }\n },\n \"require_pushed_authorization_requests\": true,\n \"require_proof_of_possession\": true,\n \"signed_request_object\": {\n \"required\": true,\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ]\n },\n \"token_vault_privileged_access\": {\n \"credentials\": [\n {\n \"id\": \"id\"\n }\n ],\n \"ip_allowlist\": [\n \"ip_allowlist\"\n ],\n \"grants\": [\n {\n \"connection\": \"connection\",\n \"scopes\": [\n \"scopes\"\n ]\n }\n ]\n },\n \"compliance_level\": \"none\",\n \"skip_non_verifiable_callback_uri_confirmation_prompt\": true,\n \"token_exchange\": {\n \"allow_any_profile_of_type\": [\n \"custom_authentication\"\n ]\n },\n \"par_request_expiry\": 1,\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"express_configuration\": {\n \"initiate_login_uri_template\": \"initiate_login_uri_template\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"connection_profile_id\": \"connection_profile_id\",\n \"enable_client\": true,\n \"enable_organization\": true,\n \"linked_clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"okta_oin_client_id\": \"okta_oin_client_id\",\n \"admin_login_domain\": \"admin_login_domain\",\n \"oin_submission_id\": \"oin_submission_id\"\n },\n \"my_organization_configuration\": {\n \"connection_profile_id\": \"connection_profile_id\",\n \"user_attribute_profile_id\": \"user_attribute_profile_id\",\n \"allowed_strategies\": [\n \"pingfederate\"\n ],\n \"connection_deletion_behavior\": \"allow\",\n \"invitation_landing_client_id\": \"invitation_landing_client_id\"\n },\n \"identity_assertion_authorization_grant\": {\n \"active\": true\n },\n \"third_party_security_mode\": \"strict\",\n \"redirection_policy\": \"allow_always\",\n \"resource_server_identifier\": \"resource_server_identifier\",\n \"async_approval_notification_channels\": [\n \"guardian-push\"\n ],\n \"external_metadata_type\": \"cimd\",\n \"external_metadata_created_by\": \"admin\",\n \"external_client_id\": \"external_client_id\",\n \"jwks_uri\": \"jwks_uri\"\n}", "headers": { "Content-Type": "application/json" } @@ -1119,7 +1119,7 @@ }, "response": { "status": 200, - "body": "{\n \"next\": \"next\",\n \"connections\": [\n {\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n }\n }\n ]\n}", + "body": "{\n \"next\": \"next\",\n \"connections\": [\n {\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -1151,7 +1151,7 @@ }, "response": { "status": 201, - "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n }\n}", + "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -1195,7 +1195,7 @@ }, "response": { "status": 200, - "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n }\n}", + "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -1267,7 +1267,7 @@ }, "response": { "status": 200, - "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n }\n}", + "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -5077,7 +5077,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"user_id\": \"user_id\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"authenticated_at\": \"2024-01-15T09:30:00Z\",\n \"idle_expires_at\": \"2024-01-15T09:30:00Z\",\n \"expires_at\": \"2024-01-15T09:30:00Z\",\n \"last_interacted_at\": \"2024-01-15T09:30:00Z\",\n \"device\": {\n \"initial_user_agent\": \"initial_user_agent\",\n \"initial_ip\": \"initial_ip\",\n \"initial_asn\": \"initial_asn\",\n \"last_user_agent\": \"last_user_agent\",\n \"last_ip\": \"last_ip\",\n \"last_asn\": \"last_asn\"\n },\n \"clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"authentication\": {\n \"methods\": [\n {}\n ]\n },\n \"cookie\": {\n \"mode\": \"non-persistent\"\n },\n \"session_metadata\": {\n \"key\": \"value\"\n }\n}", + "body": "{\n \"id\": \"id\",\n \"user_id\": \"user_id\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"authenticated_at\": \"2024-01-15T09:30:00Z\",\n \"idle_expires_at\": \"2024-01-15T09:30:00Z\",\n \"expires_at\": \"2024-01-15T09:30:00Z\",\n \"last_interacted_at\": \"2024-01-15T09:30:00Z\",\n \"device\": {\n \"initial_user_agent\": \"initial_user_agent\",\n \"initial_ip\": \"initial_ip\",\n \"initial_asn\": \"initial_asn\",\n \"last_user_agent\": \"last_user_agent\",\n \"last_ip\": \"last_ip\",\n \"last_asn\": \"last_asn\"\n },\n \"clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"authentication\": {\n \"methods\": [\n {}\n ]\n },\n \"cookie\": {\n \"mode\": \"non-persistent\"\n },\n \"session_metadata\": {\n \"key\": \"value\"\n },\n \"actor\": {\n \"sub\": \"sub\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -5149,7 +5149,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"user_id\": \"user_id\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"authenticated_at\": \"2024-01-15T09:30:00Z\",\n \"idle_expires_at\": \"2024-01-15T09:30:00Z\",\n \"expires_at\": \"2024-01-15T09:30:00Z\",\n \"last_interacted_at\": \"2024-01-15T09:30:00Z\",\n \"device\": {\n \"initial_user_agent\": \"initial_user_agent\",\n \"initial_ip\": \"initial_ip\",\n \"initial_asn\": \"initial_asn\",\n \"last_user_agent\": \"last_user_agent\",\n \"last_ip\": \"last_ip\",\n \"last_asn\": \"last_asn\"\n },\n \"clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"authentication\": {\n \"methods\": [\n {}\n ]\n },\n \"cookie\": {\n \"mode\": \"non-persistent\"\n },\n \"session_metadata\": {\n \"key\": \"value\"\n }\n}", + "body": "{\n \"id\": \"id\",\n \"user_id\": \"user_id\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"authenticated_at\": \"2024-01-15T09:30:00Z\",\n \"idle_expires_at\": \"2024-01-15T09:30:00Z\",\n \"expires_at\": \"2024-01-15T09:30:00Z\",\n \"last_interacted_at\": \"2024-01-15T09:30:00Z\",\n \"device\": {\n \"initial_user_agent\": \"initial_user_agent\",\n \"initial_ip\": \"initial_ip\",\n \"initial_asn\": \"initial_asn\",\n \"last_user_agent\": \"last_user_agent\",\n \"last_ip\": \"last_ip\",\n \"last_asn\": \"last_asn\"\n },\n \"clients\": [\n {\n \"client_id\": \"client_id\"\n }\n ],\n \"authentication\": {\n \"methods\": [\n {}\n ]\n },\n \"cookie\": {\n \"mode\": \"non-persistent\"\n },\n \"session_metadata\": {\n \"key\": \"value\"\n },\n \"actor\": {\n \"sub\": \"sub\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -7353,7 +7353,7 @@ }, "response": { "status": 200, - "body": "{\n \"enabled\": true,\n \"shields\": [\n \"block\"\n ],\n \"allowlist\": [\n \"allowlist\"\n ],\n \"stage\": {\n \"pre-login\": {\n \"max_attempts\": 1,\n \"rate\": 1\n },\n \"pre-user-registration\": {\n \"max_attempts\": 1,\n \"rate\": 1\n }\n }\n}", + "body": "{\n \"enabled\": true,\n \"shields\": [\n \"block\"\n ],\n \"allowlist\": [\n \"allowlist\"\n ],\n \"stage\": {\n \"pre-login\": {\n \"max_attempts\": 1,\n \"rate\": 1\n },\n \"pre-user-registration\": {\n \"max_attempts\": 1,\n \"rate\": 1\n },\n \"pre-custom-token-exchange\": {\n \"max_attempts\": 1,\n \"rate\": 1\n }\n }\n}", "headers": { "Content-Type": "application/json" } @@ -7385,7 +7385,7 @@ }, "response": { "status": 200, - "body": "{\n \"enabled\": true,\n \"shields\": [\n \"block\"\n ],\n \"allowlist\": [\n \"allowlist\"\n ],\n \"stage\": {\n \"pre-login\": {\n \"max_attempts\": 1,\n \"rate\": 1\n },\n \"pre-user-registration\": {\n \"max_attempts\": 1,\n \"rate\": 1\n }\n }\n}", + "body": "{\n \"enabled\": true,\n \"shields\": [\n \"block\"\n ],\n \"allowlist\": [\n \"allowlist\"\n ],\n \"stage\": {\n \"pre-login\": {\n \"max_attempts\": 1,\n \"rate\": 1\n },\n \"pre-user-registration\": {\n \"max_attempts\": 1,\n \"rate\": 1\n },\n \"pre-custom-token-exchange\": {\n \"max_attempts\": 1,\n \"rate\": 1\n }\n }\n}", "headers": { "Content-Type": "application/json" } @@ -7510,7 +7510,7 @@ }, "response": { "status": 200, - "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", + "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"identifiers\": {\n \"login_display\": \"separate\",\n \"otp_autocomplete\": true,\n \"phone_display\": {\n \"formatting\": \"international\",\n \"masking\": \"hide_country_code\"\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -7541,7 +7541,7 @@ }, "response": { "status": 200, - "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", + "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"identifiers\": {\n \"login_display\": \"separate\",\n \"otp_autocomplete\": true,\n \"phone_display\": {\n \"formatting\": \"international\",\n \"masking\": \"hide_country_code\"\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -7578,7 +7578,7 @@ }, "response": { "status": 200, - "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", + "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"identifiers\": {\n \"login_display\": \"separate\",\n \"otp_autocomplete\": true,\n \"phone_display\": {\n \"formatting\": \"international\",\n \"masking\": \"hide_country_code\"\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -7650,7 +7650,7 @@ }, "response": { "status": 200, - "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", + "body": "{\n \"borders\": {\n \"button_border_radius\": 1.1,\n \"button_border_weight\": 1.1,\n \"buttons_style\": \"pill\",\n \"input_border_radius\": 1.1,\n \"input_border_weight\": 1.1,\n \"inputs_style\": \"pill\",\n \"show_widget_shadow\": true,\n \"widget_border_weight\": 1.1,\n \"widget_corner_radius\": 1.1\n },\n \"colors\": {\n \"base_focus_color\": \"base_focus_color\",\n \"base_hover_color\": \"base_hover_color\",\n \"body_text\": \"body_text\",\n \"captcha_widget_theme\": \"auto\",\n \"error\": \"error\",\n \"header\": \"header\",\n \"icons\": \"icons\",\n \"input_background\": \"input_background\",\n \"input_border\": \"input_border\",\n \"input_filled_text\": \"input_filled_text\",\n \"input_labels_placeholders\": \"input_labels_placeholders\",\n \"links_focused_components\": \"links_focused_components\",\n \"primary_button\": \"primary_button\",\n \"primary_button_label\": \"primary_button_label\",\n \"read_only_background\": \"read_only_background\",\n \"secondary_button_border\": \"secondary_button_border\",\n \"secondary_button_label\": \"secondary_button_label\",\n \"success\": \"success\",\n \"widget_background\": \"widget_background\",\n \"widget_border\": \"widget_border\"\n },\n \"displayName\": \"displayName\",\n \"fonts\": {\n \"body_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"buttons_text\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"font_url\": \"font_url\",\n \"input_labels\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"links_style\": \"normal\",\n \"reference_text_size\": 1.1,\n \"subtitle\": {\n \"bold\": true,\n \"size\": 1.1\n },\n \"title\": {\n \"bold\": true,\n \"size\": 1.1\n }\n },\n \"identifiers\": {\n \"login_display\": \"separate\",\n \"otp_autocomplete\": true,\n \"phone_display\": {\n \"formatting\": \"international\",\n \"masking\": \"hide_country_code\"\n }\n },\n \"page_background\": {\n \"background_color\": \"background_color\",\n \"background_image_url\": \"background_image_url\",\n \"page_layout\": \"center\"\n },\n \"themeId\": \"themeId\",\n \"widget\": {\n \"header_text_alignment\": \"center\",\n \"logo_height\": 1.1,\n \"logo_position\": \"center\",\n \"logo_url\": \"logo_url\",\n \"social_buttons_layout\": \"bottom\"\n }\n}", "headers": { "Content-Type": "application/json" } @@ -8400,7 +8400,7 @@ }, "response": { "status": 200, - "body": "{\n \"connections\": [\n {\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n }\n }\n ],\n \"next\": \"next\"\n}", + "body": "{\n \"connections\": [\n {\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n }\n ],\n \"next\": \"next\"\n}", "headers": { "Content-Type": "application/json" } @@ -15659,7 +15659,7 @@ }, "response": { "status": 200, - "body": "{\n \"sessions\": [\n {\n \"id\": \"id\",\n \"user_id\": \"user_id\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"authenticated_at\": \"2024-01-15T09:30:00Z\",\n \"idle_expires_at\": \"2024-01-15T09:30:00Z\",\n \"expires_at\": \"2024-01-15T09:30:00Z\",\n \"last_interacted_at\": \"2024-01-15T09:30:00Z\",\n \"clients\": [\n {}\n ],\n \"session_metadata\": {\n \"key\": \"value\"\n }\n }\n ],\n \"next\": \"next\"\n}", + "body": "{\n \"sessions\": [\n {\n \"id\": \"id\",\n \"user_id\": \"user_id\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"authenticated_at\": \"2024-01-15T09:30:00Z\",\n \"idle_expires_at\": \"2024-01-15T09:30:00Z\",\n \"expires_at\": \"2024-01-15T09:30:00Z\",\n \"last_interacted_at\": \"2024-01-15T09:30:00Z\",\n \"clients\": [\n {}\n ],\n \"session_metadata\": {\n \"key\": \"value\"\n },\n \"actor\": {\n \"sub\": \"sub\"\n }\n }\n ],\n \"next\": \"next\"\n}", "headers": { "Content-Type": "application/json" } From aacbdd5395927bbbed9bb0f22aa1ca1ac8fddc93 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 07:07:32 +0000 Subject: [PATCH 2/4] [fern-replay] Applied customizations Patches applied (5): - patch-c04f0b4d: Fix for incorrect return type and missing __all__ type - patch-95211006: Restore Auth0 telemetry and custom client wiring after regeneration - patch-f7384913: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries - patch-1e44613d: Added migration guide for v5 to v6 - patch-30b1089a: Updated UPGRADING.md doc Patches with unresolved conflicts (2): - patch-4894603d: chore: Restore custom wiring in management/__init__.py - patch-7271f157: Revert wrapper file to preserve Auth0 telemetry customizations Run `fern-replay resolve` to apply these customizations. --- .fern/replay.lock | 11354 +++++++++++++++++- UPGRADING.md | 157 + src/auth0/management/__init__.py | 18 + src/auth0/management/core/client_wrapper.py | 14 +- 4 files changed, 11138 insertions(+), 405 deletions(-) create mode 100644 UPGRADING.md diff --git a/.fern/replay.lock b/.fern/replay.lock index e1dba736..817570b8 100644 --- a/.fern/replay.lock +++ b/.fern/replay.lock @@ -55,7 +55,13 @@ generations: cli_version: unknown generator_versions: fernapi/fern-python-sdk: 5.17.0 -current_generation: f3e76ebf362aac6f76e51d749b7497af72a641ff + - commit_sha: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + tree_hash: f139401b5597f0aece03f1d5a66d7fa695a40a8e + timestamp: 2026-07-21T07:07:16.017Z + cli_version: unknown + generator_versions: + fernapi/fern-python-sdk: 5.17.0 +current_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 patches: - id: patch-4894603d content_hash: sha256:fc35b55720e7e9e354dca29191c5832b7e242ad21ba635310c698ea2c3b70a00 @@ -1861,7 +1867,9133 @@ patches: FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, - FederatedConnectionTokenSet, + FederatedConnectionTokenSet, + 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, + 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, + 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, + ListOrganizationConnectionsOffsetPaginatedResponseContent, + ListOrganizationDiscoveryDomainsResponseContent, + ListOrganizationGroupRolesResponseContent, + ListOrganizationGroupsResponseContent, + ListOrganizationInvitationsOffsetPaginatedResponseContent, + ListOrganizationMemberEffectiveRolesResponseContent, + ListOrganizationMemberRoleSourceGroupsResponseContent, + ListOrganizationMemberRolesOffsetPaginatedResponseContent, + ListOrganizationMembersPaginatedResponseContent, + ListOrganizationsPaginatedResponseContent, + ListPhoneTemplatesResponseContent, + ListRateLimitPoliciesPaginatedResponseContent, + ListRefreshTokensPaginatedResponseContent, + ListResourceServerOffsetPaginatedResponseContent, + ListRoleGroupsResponseContent, + ListRolePermissionsOffsetPaginatedResponseContent, + ListRoleUsersPaginatedResponseContent, + ListRolesOffsetPaginatedResponseContent, + 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, + OauthScope, + Organization, + OrganizationAccessLevelEnum, + OrganizationAccessLevelEnumWithNull, + OrganizationAllConnectionPost, + OrganizationBranding, + OrganizationBrandingColors, + OrganizationClientGrant, + OrganizationConnection, + OrganizationConnectionInformation, + OrganizationDiscoveryDomain, + OrganizationDiscoveryDomainStatus, + OrganizationEnabledConnection, + OrganizationInvitation, + OrganizationInvitationInvitee, + OrganizationInvitationInviter, + OrganizationMember, + OrganizationMemberEffectiveRole, + OrganizationMemberEffectiveRoleSource, + OrganizationMemberRole, + OrganizationMetadata, + OrganizationUsageEnum, + PartialGroupsEnum, + PartialPhoneTemplateContent, + PasswordCharacterTypeEnum, + PasswordCharacterTypeRulePolicyEnum, + PasswordDefaultDictionariesEnum, + PasswordIdenticalCharactersPolicyEnum, + PasswordMaxLengthExceededPolicyEnum, + PasswordSequentialCharactersPolicyEnum, + PatchClientCredentialResponseContent, + PatchPhoneProviderProtectionResponseContent, + PatchRateLimitPolicyConfigurationRequestContent, + PatchRateLimitPolicyConfigurationRequestContentAction, + PatchRateLimitPolicyConfigurationRequestContentActionAction, + PatchRateLimitPolicyConfigurationRequestContentOne, + PatchRateLimitPolicyConfigurationRequestContentOneAction, + PatchRateLimitPolicyConfigurationRequestContentZero, + PatchRateLimitPolicyConfigurationRequestContentZeroAction, + PatchSupplementalSignalsResponseContent, + PermissionRequestPayload, + PermissionsResponsePayload, + PhoneAttribute, + 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, + 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, + 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, + 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, + TokenExchangeProfileResponseContent, + TokenExchangeProfileTypeEnum, + TokenQuota, + TokenQuotaClientCredentials, + TokenQuotaConfiguration, + TokenVaultPrivilegedAccessIpAllowlistEntry, + 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, + UpdateCustomDomainResponseContent, + UpdateDefaultCanonicalDomainResponseContent, + UpdateDefaultCustomDomainResponseContent, + UpdateDefaultDomainResponseContent, + UpdateDirectoryProvisioningRequestContent, + UpdateDirectoryProvisioningResponseContent, + UpdateEmailProviderResponseContent, + UpdateEmailTemplateResponseContent, + UpdateEnabledClientConnectionsRequestContent, + UpdateEnabledClientConnectionsRequestContentItem, + UpdateEventStreamResponseContent, + UpdateFlowResponseContent, + UpdateFlowsVaultConnectionResponseContent, + UpdateFlowsVaultConnectionSetup, + UpdateFormResponseContent, + UpdateGuardianFactorDuoSettingsResponseContent, + UpdateGuardianFactorsProviderPushNotificationApnsResponseContent, + UpdateGuardianFactorsProviderPushNotificationFcmResponseContent, + UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent, + UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, + UpdateHookResponseContent, + UpdateHookSecretRequestContent, + UpdateLogStreamResponseContent, + UpdateNetworkAclResponseContent, + UpdateOrganizationAllConnectionResponseContent, + 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, + 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 .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", + "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", + "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", + "ConnectionAttributeIdentifier": ".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", + "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", + "ConnectionFederatedConnectionsAccessTokens": ".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", + "ConnectionsMetadata": ".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", + "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", + "CreateImportUsersResponseContent": ".types", + "CreateLogStreamDatadogRequestBody": ".types", + "CreateLogStreamEventBridgeRequestBody": ".types", + "CreateLogStreamEventGridRequestBody": ".types", + "CreateLogStreamHttpRequestBody": ".types", + "CreateLogStreamMixpanelRequestBody": ".types", + "CreateLogStreamRequestContent": ".types", + "CreateLogStreamResponseContent": ".types", + "CreateLogStreamSegmentRequestBody": ".types", + "CreateLogStreamSplunkRequestBody": ".types", + "CreateLogStreamSumoRequestBody": ".types", + "CreateOrganizationAllConnectionResponseContent": ".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", + "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", + "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", + "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", + "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", + "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", + "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_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", + "FederatedConnectionTokenSet": ".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", + "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", + "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", + "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".types", + "ListOrganizationDiscoveryDomainsResponseContent": ".types", + "ListOrganizationGroupRolesResponseContent": ".types", + "ListOrganizationGroupsResponseContent": ".types", + "ListOrganizationInvitationsOffsetPaginatedResponseContent": ".types", + "ListOrganizationMemberEffectiveRolesResponseContent": ".types", + "ListOrganizationMemberRoleSourceGroupsResponseContent": ".types", + "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", + "ListOrganizationMembersPaginatedResponseContent": ".types", + "ListOrganizationsPaginatedResponseContent": ".types", + "ListPhoneTemplatesResponseContent": ".types", + "ListRateLimitPoliciesPaginatedResponseContent": ".types", + "ListRefreshTokensPaginatedResponseContent": ".types", + "ListResourceServerOffsetPaginatedResponseContent": ".types", + "ListRoleGroupsResponseContent": ".types", + "ListRolePermissionsOffsetPaginatedResponseContent": ".types", + "ListRoleUsersPaginatedResponseContent": ".types", + "ListRolesOffsetPaginatedResponseContent": ".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", + "OauthScope": ".types", + "Organization": ".types", + "OrganizationAccessLevelEnum": ".types", + "OrganizationAccessLevelEnumWithNull": ".types", + "OrganizationAllConnectionPost": ".types", + "OrganizationBranding": ".types", + "OrganizationBrandingColors": ".types", + "OrganizationClientGrant": ".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", + "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", + "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", + "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", + "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", + "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", + "TokenExchangeProfileResponseContent": ".types", + "TokenExchangeProfileTypeEnum": ".types", + "TokenProvider": ".token_provider", + "TokenQuota": ".types", + "TokenQuotaClientCredentials": ".types", + "TokenQuotaConfiguration": ".types", + "TokenVaultPrivilegedAccessIpAllowlistEntry": ".types", + "TooManyRequestsError": ".errors", + "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", + "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", + "UpdateLogStreamResponseContent": ".types", + "UpdateNetworkAclResponseContent": ".types", + "UpdateOrganizationAllConnectionResponseContent": ".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", + "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", + "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", + "ConnectedAccount", + "ConnectedAccountAccessTypeEnum", + "ConnectionAccessTokenUrloAuth1", + "ConnectionAcrValuesSupported", + "ConnectionAdminAccessTokenExpiresInGoogleApps", + "ConnectionAdminAccessTokenGoogleApps", + "ConnectionAdminRefreshTokenGoogleApps", + "ConnectionAgentIpad", + "ConnectionAgentModeAd", + "ConnectionAgentVersionAd", + "ConnectionAllowedAudiencesGoogleOAuth2", + "ConnectionApiBehaviorEnum", + "ConnectionApiEnableGroups", + "ConnectionApiEnableGroupsGoogleApps", + "ConnectionApiEnableUsers", + "ConnectionApiEnableUsersGoogleApps", + "ConnectionAppDomainAzureAd", + "ConnectionAssertionDecryptionAlgorithmProfileEnum", + "ConnectionAssertionDecryptionSettings", + "ConnectionAttributeIdentifier", + "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", + "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", + "ConnectionFederatedConnectionsAccessTokens", + "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", + "ConnectionsMetadata", + "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", + "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", + "CreateImportUsersResponseContent", + "CreateLogStreamDatadogRequestBody", + "CreateLogStreamEventBridgeRequestBody", + "CreateLogStreamEventGridRequestBody", + "CreateLogStreamHttpRequestBody", + "CreateLogStreamMixpanelRequestBody", + "CreateLogStreamRequestContent", + "CreateLogStreamResponseContent", + "CreateLogStreamSegmentRequestBody", + "CreateLogStreamSplunkRequestBody", + "CreateLogStreamSumoRequestBody", + "CreateOrganizationAllConnectionResponseContent", + "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", + "CspDirectives", + "CspFlag", + "CspFlags", + "CspPolicies", + "CspPolicy", + "CspPolicyMode", + "CspPolicyReporting", + "CspReportTo", + "CspReportToEndpoint", + "CspReportToEndpoints", + "CspReportingEndpoints", + "CspReportingInfrastructure", + "CustomDomain", + "CustomDomainHeader", + "CustomDomainCustomClientIpHeader", + "CustomDomainCustomClientIpHeaderEnum", + "CustomDomainProvisioningTypeEnum", + "CustomDomainStatusFilterEnum", + "CustomDomainTlsPolicyEnum", + "CustomDomainTypeEnum", + "CustomDomainVerificationMethodEnum", + "CustomProviderConfiguration", + "CustomProviderCredentials", + "CustomProviderDeliveryMethodEnum", + "CustomSigningKeyAlgorithmEnum", + "CustomSigningKeyCurveEnum", + "CustomSigningKeyJwk", + "CustomSigningKeyOperationEnum", + "CustomSigningKeyTypeEnum", + "CustomSigningKeyUseEnum", + "DailyStats", + "DefaultAioHttpClient", + "DefaultAsyncHttpxClient", + "DefaultMethodEmailIdentifierEnum", + "DefaultTokenQuota", + "DeleteHookSecretRequestContent", + "DeleteUserIdentityResponseContent", + "DeleteUserIdentityResponseContentItem", + "DeployActionResponseContent", + "DeployActionVersionRequestContent", + "DeployActionVersionResponseContent", + "DeviceCredential", + "DeviceCredentialPublicKeyTypeEnum", + "DeviceCredentialTypeEnum", + "DirectoryProvisioning", + "DirectoryProvisioningMappingItem", + "DomainCertificate", + "DomainCertificateAuthorityEnum", + "DomainCertificateStatusEnum", + "DomainMetadata", + "DomainVerification", + "DomainVerificationMethod", + "DomainVerificationMethodNameEnum", + "DomainVerificationStatusEnum", + "EmailAttribute", + "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", + "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", + "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_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", + "FederatedConnectionTokenSet", + "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", + "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", + "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", + "ListOrganizationConnectionsOffsetPaginatedResponseContent", + "ListOrganizationDiscoveryDomainsResponseContent", + "ListOrganizationGroupRolesResponseContent", + "ListOrganizationGroupsResponseContent", + "ListOrganizationInvitationsOffsetPaginatedResponseContent", + "ListOrganizationMemberEffectiveRolesResponseContent", + "ListOrganizationMemberRoleSourceGroupsResponseContent", + "ListOrganizationMemberRolesOffsetPaginatedResponseContent", + "ListOrganizationMembersPaginatedResponseContent", + "ListOrganizationsPaginatedResponseContent", + "ListPhoneTemplatesResponseContent", + "ListRateLimitPoliciesPaginatedResponseContent", + "ListRefreshTokensPaginatedResponseContent", + "ListResourceServerOffsetPaginatedResponseContent", + "ListRoleGroupsResponseContent", + "ListRolePermissionsOffsetPaginatedResponseContent", + "ListRoleUsersPaginatedResponseContent", + "ListRolesOffsetPaginatedResponseContent", + "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", + "OauthScope", + "Organization", + "OrganizationAccessLevelEnum", + "OrganizationAccessLevelEnumWithNull", + "OrganizationAllConnectionPost", + "OrganizationBranding", + "OrganizationBrandingColors", + "OrganizationClientGrant", + "OrganizationConnection", + "OrganizationConnectionInformation", + "OrganizationDiscoveryDomain", + "OrganizationDiscoveryDomainStatus", + "OrganizationEnabledConnection", + "OrganizationInvitation", + "OrganizationInvitationInvitee", + "OrganizationInvitationInviter", + "OrganizationMember", + "OrganizationMemberEffectiveRole", + "OrganizationMemberEffectiveRoleSource", + "OrganizationMemberRole", + "OrganizationMetadata", + "OrganizationUsageEnum", + "PartialGroupsEnum", + "PartialPhoneTemplateContent", + "PasswordCharacterTypeEnum", + "PasswordCharacterTypeRulePolicyEnum", + "PasswordDefaultDictionariesEnum", + "PasswordIdenticalCharactersPolicyEnum", + "PasswordMaxLengthExceededPolicyEnum", + "PasswordSequentialCharactersPolicyEnum", + "PatchClientCredentialResponseContent", + "PatchPhoneProviderProtectionResponseContent", + "PatchRateLimitPolicyConfigurationRequestContent", + "PatchRateLimitPolicyConfigurationRequestContentAction", + "PatchRateLimitPolicyConfigurationRequestContentActionAction", + "PatchRateLimitPolicyConfigurationRequestContentOne", + "PatchRateLimitPolicyConfigurationRequestContentOneAction", + "PatchRateLimitPolicyConfigurationRequestContentZero", + "PatchRateLimitPolicyConfigurationRequestContentZeroAction", + "PatchSupplementalSignalsResponseContent", + "PaymentRequiredError", + "PermissionRequestPayload", + "PermissionsResponsePayload", + "PhoneAttribute", + "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", + "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", + "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", + "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", + "TokenExchangeProfileResponseContent", + "TokenExchangeProfileTypeEnum", + "TokenProvider", + "TokenQuota", + "TokenQuotaClientCredentials", + "TokenQuotaConfiguration", + "TokenVaultPrivilegedAccessIpAllowlistEntry", + "TooManyRequestsError", + "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", + "UpdateCustomDomainResponseContent", + "UpdateDefaultCanonicalDomainResponseContent", + "UpdateDefaultCustomDomainResponseContent", + "UpdateDefaultDomainResponseContent", + "UpdateDirectoryProvisioningRequestContent", + "UpdateDirectoryProvisioningResponseContent", + "UpdateEmailProviderResponseContent", + "UpdateEmailTemplateResponseContent", + "UpdateEnabledClientConnectionsRequestContent", + "UpdateEnabledClientConnectionsRequestContentItem", + "UpdateEventStreamResponseContent", + "UpdateFlowResponseContent", + "UpdateFlowsVaultConnectionResponseContent", + "UpdateFlowsVaultConnectionSetup", + "UpdateFormResponseContent", + "UpdateGuardianFactorDuoSettingsResponseContent", + "UpdateGuardianFactorsProviderPushNotificationApnsResponseContent", + "UpdateGuardianFactorsProviderPushNotificationFcmResponseContent", + "UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent", + "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", + "UpdateHookResponseContent", + "UpdateHookSecretRequestContent", + "UpdateLogStreamResponseContent", + "UpdateNetworkAclResponseContent", + "UpdateOrganizationAllConnectionResponseContent", + "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", + "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", + ] + user_owned: true + status: unresolved + - id: patch-7271f157 + content_hash: sha256:cd98dd1948587cf3396a2eacf46626176784bd00996eb660374161bfef686e93 + original_commit: 7271f15759cfb545c9ef82b5a4f519ffe0a89db2 + original_message: Revert wrapper file to preserve Auth0 telemetry customizations + original_author: Kunal Dawar + base_generation: bf4df4483c8f8211870c074c6e5725aabf31d339 + files: + - src/auth0/management/core/client_wrapper.py + patch_content: | + diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py + index b1aed4b..60ebc5a 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 + @@ -26,15 +31,18 @@ class BaseClientWrapper: + self._logging = logging + + def get_headers(self) -> typing.Dict[str, str]: + - import platform + + 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": "auth0-python/5.6.0", + - "X-Fern-Language": "Python", + - "X-Fern-Runtime": f"python/{platform.python_version()}", + - "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", + - "X-Fern-SDK-Name": "auth0-python", + - "X-Fern-SDK-Version": "5.6.0", + + "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()}" + theirs_snapshot: + src/auth0/management/core/client_wrapper.py: | + # 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 + from .logging import LogConfig, Logger + + + class BaseClientWrapper: + def __init__( + self, + *, + token: typing.Union[str, typing.Callable[[], str]], + headers: typing.Optional[typing.Dict[str, str]] = None, + base_url: str, + timeout: typing.Optional[float] = None, + max_retries: int = 2, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, + ): + self._token = token + self._headers = headers + self._base_url = base_url + self._timeout = timeout + self._max_retries = max_retries + 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()}" + return headers + + def _get_token(self) -> str: + if isinstance(self._token, str): + return self._token + else: + return self._token() + + def get_custom_headers(self) -> typing.Optional[typing.Dict[str, str]]: + return self._headers + + def get_base_url(self) -> str: + return self._base_url + + def get_timeout(self) -> typing.Optional[float]: + return self._timeout + + def get_max_retries(self) -> int: + return self._max_retries + + + class SyncClientWrapper(BaseClientWrapper): + def __init__( + self, + *, + token: typing.Union[str, typing.Callable[[], str]], + headers: typing.Optional[typing.Dict[str, str]] = None, + base_url: str, + timeout: typing.Optional[float] = None, + max_retries: int = 2, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, + httpx_client: httpx.Client, + ): + super().__init__( + token=token, headers=headers, base_url=base_url, timeout=timeout, max_retries=max_retries, logging=logging + ) + self.httpx_client = HttpClient( + httpx_client=httpx_client, + base_headers=self.get_headers, + base_timeout=self.get_timeout, + base_url=self.get_base_url, + base_max_retries=self.get_max_retries(), + logging_config=self._logging, + ) + + + class AsyncClientWrapper(BaseClientWrapper): + def __init__( + self, + *, + token: typing.Union[str, typing.Callable[[], str]], + headers: typing.Optional[typing.Dict[str, str]] = None, + base_url: str, + timeout: typing.Optional[float] = None, + max_retries: int = 2, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, + async_token: typing.Optional[typing.Callable[[], typing.Awaitable[str]]] = None, + httpx_client: httpx.AsyncClient, + ): + super().__init__( + token=token, headers=headers, base_url=base_url, timeout=timeout, max_retries=max_retries, logging=logging + ) + self._async_token = async_token + self.httpx_client = AsyncHttpClient( + httpx_client=httpx_client, + base_headers=self.get_headers, + base_timeout=self.get_timeout, + base_url=self.get_base_url, + base_max_retries=self.get_max_retries(), + async_base_headers=self.async_get_headers, + logging_config=self._logging, + ) + + async def async_get_headers(self) -> typing.Dict[str, str]: + headers = self.get_headers() + if self._async_token is not None: + token = await self._async_token() + headers["Authorization"] = f"Bearer {token}" + return headers + status: unresolved + - id: patch-c04f0b4d + content_hash: sha256:a3f66d48f9f65d4741bddcee2521e8db6171a88fac1ac7169a3955283a687e6d + original_commit: c04f0b4dbbe8f2300f4f1bf42f62350888a92da5 + original_message: Fix for incorrect return type and missing __all__ type + original_author: Sourav Basu + base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + 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 + --- a/src/auth0/management/__init__.py + +++ b/src/auth0/management/__init__.py + @@ -1871,6 +1871,8 @@ if typing.TYPE_CHECKING: + FedCmLoginGoogle, + FedCmLoginGooglePatch, + FedCmLoginPatch, + + FedCmLoginGooglePatch, + + FedCmLoginPatch, + FlowAction, + FlowActionActivecampaign, + FlowActionActivecampaignListContacts, + @@ -3208,6 +3210,8 @@ if typing.TYPE_CHECKING: + 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 + _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] = { + "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] = { + "FedCmLoginGoogle": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", + + "FedCmLoginGooglePatch": ".types", + + "FedCmLoginPatch": ".types", + "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__ = [ + "CspReportingEndpoints", + "CspReportingInfrastructure", + "CustomDomain", + + "CustomDomainHeader", + "CustomDomainCustomClientIpHeader", + "CustomDomainCustomClientIpHeaderEnum", + "CustomDomainProvisioningTypeEnum", + @@ -8305,6 +8319,8 @@ __all__ = [ + "FedCmLoginGoogle", + "FedCmLoginGooglePatch", + "FedCmLoginPatch", + + "FedCmLoginGooglePatch", + + "FedCmLoginPatch", + "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. + + # 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, + 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, + 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, @@ -2543,6 +11675,7 @@ patches: HookTriggerIdEnum, HttpCustomHeader, Identity, + IdentityAssertionAuthorizationGrant, IdentityProviderEnum, IdentityProviderOnlyAuth0Enum, ImportEncryptionKeyResponseContent, @@ -2596,6 +11729,7 @@ patches: ListOrganizationMemberRoleSourceGroupsResponseContent, ListOrganizationMemberRolesOffsetPaginatedResponseContent, ListOrganizationMembersPaginatedResponseContent, + ListOrganizationRoleMembersResponseContent, ListOrganizationsPaginatedResponseContent, ListPhoneTemplatesResponseContent, ListRateLimitPoliciesPaginatedResponseContent, @@ -2700,6 +11834,8 @@ patches: NetworkAclRule, NetworkAclRuleScopeEnum, NetworkAclsResponseContent, + NotFoundErrorBody, + NotFoundErrorBodyError, OauthScope, Organization, OrganizationAccessLevelEnum, @@ -2721,6 +11857,7 @@ patches: OrganizationMemberEffectiveRoleSource, OrganizationMemberRole, OrganizationMetadata, + OrganizationThirdPartyClientAccessEnum, OrganizationUsageEnum, PartialGroupsEnum, PartialPhoneTemplateContent, @@ -2743,6 +11880,7 @@ patches: PermissionRequestPayload, PermissionsResponsePayload, PhoneAttribute, + PhoneAttributeIdentifier, PhoneProviderChannelEnum, PhoneProviderConfiguration, PhoneProviderCredentials, @@ -2810,6 +11948,7 @@ patches: ResourceServerVerificationKeyPemCertificate, RevokedSigningKeysResponseContent, Role, + RoleMember, RoleUser, RollbackActionModuleResponseContent, RotateClientSecretResponseContent, @@ -2845,6 +11984,8 @@ patches: SelfServiceProfileSsoTicketProvisioningScopeEnum, SelfServiceProfileUserAttribute, SelfServiceProfileUserAttributes, + SessionActorClaimValue, + SessionActorMetadata, SessionAuthenticationSignal, SessionAuthenticationSignals, SessionClientMetadata, @@ -2894,6 +12035,7 @@ patches: SupportedLocales, SuspiciousIpThrottlingAllowlist, SuspiciousIpThrottlingAllowlistItem, + SuspiciousIpThrottlingPreCustomTokenExchangeStage, SuspiciousIpThrottlingPreLoginStage, SuspiciousIpThrottlingPreUserRegistrationStage, SuspiciousIpThrottlingShieldsEnum, @@ -2922,12 +12064,16 @@ patches: TestActionResultPayload, TestCustomDomainResponseContent, TestEventDataContent, + ThirdPartyClientAccessConfig, TokenExchangeProfileResponseContent, TokenExchangeProfileTypeEnum, TokenQuota, TokenQuotaClientCredentials, TokenQuotaConfiguration, + TokenVaultPrivilegedAccessGrant, TokenVaultPrivilegedAccessIpAllowlistEntry, + TooManyRequestsErrorBody, + TooManyRequestsErrorBodyError, TooManyRequestsSchema, TooManyRequestsSchemaError, TwilioProviderConfiguration, @@ -3010,6 +12156,7 @@ patches: UpdateConnectionRequestContentYahoo, UpdateConnectionRequestContentYandex, UpdateConnectionResponseContent, + UpdateCrossAppAccessResourceApp, UpdateCustomDomainResponseContent, UpdateDefaultCanonicalDomainResponseContent, UpdateDefaultCustomDomainResponseContent, @@ -3032,6 +12179,7 @@ patches: UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, UpdateHookResponseContent, UpdateHookSecretRequestContent, + UpdateIdentityAssertionAuthorizationGrant, UpdateLogStreamResponseContent, UpdateNetworkAclResponseContent, UpdateOrganizationAllConnectionResponseContent, @@ -3105,6 +12253,7 @@ patches: UserResponseSchema, UsernameAllowedTypes, UsernameAttribute, + UsernameAttributeIdentifier, UsernameValidation, UsersEnrollment, VerifiableCredentialTemplateResponse, @@ -3294,6 +12443,11 @@ patches: "BrandingThemeFontSubtitle": ".types", "BrandingThemeFontTitle": ".types", "BrandingThemeFonts": ".types", + "BrandingThemeIdentifiers": ".types", + "BrandingThemeIdentifiersLoginDisplayEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplay": ".types", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum": ".types", "BrandingThemePageBackground": ".types", "BrandingThemePageBackgroundPageLayoutEnum": ".types", "BrandingThemeWidget": ".types", @@ -3445,7 +12599,6 @@ patches: "ConnectionAppDomainAzureAd": ".types", "ConnectionAssertionDecryptionAlgorithmProfileEnum": ".types", "ConnectionAssertionDecryptionSettings": ".types", - "ConnectionAttributeIdentifier": ".types", "ConnectionAttributeMapAttributes": ".types", "ConnectionAttributeMapOidc": ".types", "ConnectionAttributeMapOkta": ".types", @@ -3506,6 +12659,8 @@ patches: "ConnectionConnectedAccountsPurposeXaa": ".types", "ConnectionConnectionSettings": ".types", "ConnectionConnectionSettingsPkceEnum": ".types", + "ConnectionCrossAppAccessResourceApp": ".types", + "ConnectionCrossAppAccessResourceAppStatusEnum": ".types", "ConnectionCustomHeadersOAuth2": ".types", "ConnectionCustomScripts": ".types", "ConnectionDebugSaml": ".types", @@ -3552,7 +12707,6 @@ patches: "ConnectionExtIsSuspended": ".types", "ConnectionExtIsSuspendedGoogleApps": ".types", "ConnectionExtProfile": ".types", - "ConnectionFederatedConnectionsAccessTokens": ".types", "ConnectionFieldsMap": ".types", "ConnectionFieldsMapSaml": ".types", "ConnectionFieldsMapSamlValue": ".types", @@ -3944,7 +13098,9 @@ patches: "ConnectionValidationOptions": ".types", "ConnectionWaadProtocol": ".types", "ConnectionWaadProtocolEnumAzureAd": ".types", + "ConnectionsDiscoveryUrl": ".types", "ConnectionsMetadata": ".types", + "ConnectionsOidcMetadata": ".types", "ContentSecurityPolicyConfig": ".types", "ContentTooLargeError": ".errors", "CreateActionModuleResponseContent": ".types", @@ -4069,6 +13225,7 @@ patches: "CreateConnectionRequestContentYandex": ".types", "CreateConnectionRequestContentYandexStrategy": ".types", "CreateConnectionResponseContent": ".types", + "CreateCrossAppAccessResourceApp": ".types", "CreateCustomDomainResponseContent": ".types", "CreateDirectoryProvisioningRequestContent": ".types", "CreateDirectoryProvisioningResponseContent": ".types", @@ -4164,6 +13321,7 @@ patches: "CreateGuardianEnrollmentTicketResponseContent": ".types", "CreateHookResponseContent": ".types", "CreateHookSecretRequestContent": ".types", + "CreateIdentityAssertionAuthorizationGrant": ".types", "CreateImportUsersResponseContent": ".types", "CreateLogStreamDatadogRequestBody": ".types", "CreateLogStreamEventBridgeRequestBody": ".types", @@ -4204,6 +13362,8 @@ patches: "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CrossAppAccessRequestingApp": ".types", + "CrossAppAccessResourceApp": ".types", + "CrossAppAccessResourceAppStatusEnum": ".types", "CspDirectives": ".types", "CspFlag": ".types", "CspFlags": ".types", @@ -4238,6 +13398,7 @@ patches: "DefaultAioHttpClient": "._default_clients", "DefaultAsyncHttpxClient": "._default_clients", "DefaultMethodEmailIdentifierEnum": ".types", + "DefaultMethodPhoneNumberIdentifierEnum": ".types", "DefaultTokenQuota": ".types", "DeleteHookSecretRequestContent": ".types", "DeleteUserIdentityResponseContent": ".types", @@ -4259,6 +13420,7 @@ patches: "DomainVerificationMethodNameEnum": ".types", "DomainVerificationStatusEnum": ".types", "EmailAttribute": ".types", + "EmailAttributeIdentifier": ".types", "EmailMailgunRegionEnum": ".types", "EmailProviderCredentials": ".types", "EmailProviderCredentialsSchema": ".types", @@ -4286,6 +13448,375 @@ patches: "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", @@ -4512,6 +14043,7 @@ patches: "EventStreamCloudEventOrgUpdatedObjectBrandingColors": ".types", "EventStreamCloudEventOrgUpdatedObjectMetadata": ".types", "EventStreamCloudEventOrgUpdatedTypeEnum": ".types", + "EventStreamCloudEventSpecVersionEnum": ".types", "EventStreamCloudEventUserCreated": ".types", "EventStreamCloudEventUserCreatedCloudEvent": ".types", "EventStreamCloudEventUserCreatedCloudEventTypeEnum": ".types", @@ -4630,6 +14162,9 @@ patches: "EventStreamSubscribeEventsEventTypeEnum": ".types", "EventStreamSubscribeEventsEventTypeParam": ".types", "EventStreamSubscribeEventsResponseContent": ".types", + "EventStreamSubscribeEventsResponseContent_ConnectionCreated": ".types", + "EventStreamSubscribeEventsResponseContent_ConnectionDeleted": ".types", + "EventStreamSubscribeEventsResponseContent_ConnectionUpdated": ".types", "EventStreamSubscribeEventsResponseContent_Error": ".types", "EventStreamSubscribeEventsResponseContent_GroupCreated": ".types", "EventStreamSubscribeEventsResponseContent_GroupDeleted": ".types", @@ -4675,7 +14210,8 @@ patches: "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", - "FederatedConnectionTokenSet": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", @@ -5359,6 +14895,7 @@ patches: "HookTriggerIdEnum": ".types", "HttpCustomHeader": ".types", "Identity": ".types", + "IdentityAssertionAuthorizationGrant": ".types", "IdentityProviderEnum": ".types", "IdentityProviderOnlyAuth0Enum": ".types", "ImportEncryptionKeyResponseContent": ".types", @@ -5413,6 +14950,7 @@ patches: "ListOrganizationMemberRoleSourceGroupsResponseContent": ".types", "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", "ListOrganizationMembersPaginatedResponseContent": ".types", + "ListOrganizationRoleMembersResponseContent": ".types", "ListOrganizationsPaginatedResponseContent": ".types", "ListPhoneTemplatesResponseContent": ".types", "ListRateLimitPoliciesPaginatedResponseContent": ".types", @@ -5519,6 +15057,8 @@ patches: "NetworkAclRuleScopeEnum": ".types", "NetworkAclsResponseContent": ".types", "NotFoundError": ".errors", + "NotFoundErrorBody": ".types", + "NotFoundErrorBodyError": ".types", "OauthScope": ".types", "Organization": ".types", "OrganizationAccessLevelEnum": ".types", @@ -5540,6 +15080,7 @@ patches: "OrganizationMemberEffectiveRoleSource": ".types", "OrganizationMemberRole": ".types", "OrganizationMetadata": ".types", + "OrganizationThirdPartyClientAccessEnum": ".types", "OrganizationUsageEnum": ".types", "PartialGroupsEnum": ".types", "PartialPhoneTemplateContent": ".types", @@ -5563,6 +15104,7 @@ patches: "PermissionRequestPayload": ".types", "PermissionsResponsePayload": ".types", "PhoneAttribute": ".types", + "PhoneAttributeIdentifier": ".types", "PhoneProviderChannelEnum": ".types", "PhoneProviderConfiguration": ".types", "PhoneProviderCredentials": ".types", @@ -5631,6 +15173,7 @@ patches: "ResourceServerVerificationKeyPemCertificate": ".types", "RevokedSigningKeysResponseContent": ".types", "Role": ".types", + "RoleMember": ".types", "RoleUser": ".types", "RollbackActionModuleResponseContent": ".types", "RotateClientSecretResponseContent": ".types", @@ -5667,6 +15210,8 @@ patches: "SelfServiceProfileUserAttribute": ".types", "SelfServiceProfileUserAttributes": ".types", "ServiceUnavailableError": ".errors", + "SessionActorClaimValue": ".types", + "SessionActorMetadata": ".types", "SessionAuthenticationSignal": ".types", "SessionAuthenticationSignals": ".types", "SessionClientMetadata": ".types", @@ -5716,6 +15261,7 @@ patches: "SupportedLocales": ".types", "SuspiciousIpThrottlingAllowlist": ".types", "SuspiciousIpThrottlingAllowlistItem": ".types", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage": ".types", "SuspiciousIpThrottlingPreLoginStage": ".types", "SuspiciousIpThrottlingPreUserRegistrationStage": ".types", "SuspiciousIpThrottlingShieldsEnum": ".types", @@ -5744,14 +15290,18 @@ patches: "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", @@ -5835,6 +15385,7 @@ patches: "UpdateConnectionRequestContentYahoo": ".types", "UpdateConnectionRequestContentYandex": ".types", "UpdateConnectionResponseContent": ".types", + "UpdateCrossAppAccessResourceApp": ".types", "UpdateCustomDomainResponseContent": ".types", "UpdateDefaultCanonicalDomainResponseContent": ".types", "UpdateDefaultCustomDomainResponseContent": ".types", @@ -5857,6 +15408,7 @@ patches: "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", "UpdateHookResponseContent": ".types", "UpdateHookSecretRequestContent": ".types", + "UpdateIdentityAssertionAuthorizationGrant": ".types", "UpdateLogStreamResponseContent": ".types", "UpdateNetworkAclResponseContent": ".types", "UpdateOrganizationAllConnectionResponseContent": ".types", @@ -5930,6 +15482,7 @@ patches: "UserResponseSchema": ".types", "UsernameAllowedTypes": ".types", "UsernameAttribute": ".types", + "UsernameAttributeIdentifier": ".types", "UsernameValidation": ".types", "UsersEnrollment": ".types", "VerifiableCredentialTemplateResponse": ".types", @@ -6120,6 +15673,11 @@ patches: "BrandingThemeFontSubtitle", "BrandingThemeFontTitle", "BrandingThemeFonts", + "BrandingThemeIdentifiers", + "BrandingThemeIdentifiersLoginDisplayEnum", + "BrandingThemeIdentifiersPhoneDisplay", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum", "BrandingThemePageBackground", "BrandingThemePageBackgroundPageLayoutEnum", "BrandingThemeWidget", @@ -6271,7 +15829,6 @@ patches: "ConnectionAppDomainAzureAd", "ConnectionAssertionDecryptionAlgorithmProfileEnum", "ConnectionAssertionDecryptionSettings", - "ConnectionAttributeIdentifier", "ConnectionAttributeMapAttributes", "ConnectionAttributeMapOidc", "ConnectionAttributeMapOkta", @@ -6332,6 +15889,8 @@ patches: "ConnectionConnectedAccountsPurposeXaa", "ConnectionConnectionSettings", "ConnectionConnectionSettingsPkceEnum", + "ConnectionCrossAppAccessResourceApp", + "ConnectionCrossAppAccessResourceAppStatusEnum", "ConnectionCustomHeadersOAuth2", "ConnectionCustomScripts", "ConnectionDebugSaml", @@ -6378,7 +15937,6 @@ patches: "ConnectionExtIsSuspended", "ConnectionExtIsSuspendedGoogleApps", "ConnectionExtProfile", - "ConnectionFederatedConnectionsAccessTokens", "ConnectionFieldsMap", "ConnectionFieldsMapSaml", "ConnectionFieldsMapSamlValue", @@ -6770,7 +16328,9 @@ patches: "ConnectionValidationOptions", "ConnectionWaadProtocol", "ConnectionWaadProtocolEnumAzureAd", + "ConnectionsDiscoveryUrl", "ConnectionsMetadata", + "ConnectionsOidcMetadata", "ContentSecurityPolicyConfig", "ContentTooLargeError", "CreateActionModuleResponseContent", @@ -6895,6 +16455,7 @@ patches: "CreateConnectionRequestContentYandex", "CreateConnectionRequestContentYandexStrategy", "CreateConnectionResponseContent", + "CreateCrossAppAccessResourceApp", "CreateCustomDomainResponseContent", "CreateDirectoryProvisioningRequestContent", "CreateDirectoryProvisioningResponseContent", @@ -6990,6 +16551,7 @@ patches: "CreateGuardianEnrollmentTicketResponseContent", "CreateHookResponseContent", "CreateHookSecretRequestContent", + "CreateIdentityAssertionAuthorizationGrant", "CreateImportUsersResponseContent", "CreateLogStreamDatadogRequestBody", "CreateLogStreamEventBridgeRequestBody", @@ -7030,6 +16592,8 @@ patches: "CredentialDeviceTypeEnum", "CredentialId", "CrossAppAccessRequestingApp", + "CrossAppAccessResourceApp", + "CrossAppAccessResourceAppStatusEnum", "CspDirectives", "CspFlag", "CspFlags", @@ -7064,6 +16628,7 @@ patches: "DefaultAioHttpClient", "DefaultAsyncHttpxClient", "DefaultMethodEmailIdentifierEnum", + "DefaultMethodPhoneNumberIdentifierEnum", "DefaultTokenQuota", "DeleteHookSecretRequestContent", "DeleteUserIdentityResponseContent", @@ -7085,6 +16650,7 @@ patches: "DomainVerificationMethodNameEnum", "DomainVerificationStatusEnum", "EmailAttribute", + "EmailAttributeIdentifier", "EmailMailgunRegionEnum", "EmailProviderCredentials", "EmailProviderCredentialsSchema", @@ -7112,6 +16678,375 @@ patches: "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", @@ -7338,6 +17273,7 @@ patches: "EventStreamCloudEventOrgUpdatedObjectBrandingColors", "EventStreamCloudEventOrgUpdatedObjectMetadata", "EventStreamCloudEventOrgUpdatedTypeEnum", + "EventStreamCloudEventSpecVersionEnum", "EventStreamCloudEventUserCreated", "EventStreamCloudEventUserCreatedCloudEvent", "EventStreamCloudEventUserCreatedCloudEventTypeEnum", @@ -7456,6 +17392,9 @@ patches: "EventStreamSubscribeEventsEventTypeEnum", "EventStreamSubscribeEventsEventTypeParam", "EventStreamSubscribeEventsResponseContent", + "EventStreamSubscribeEventsResponseContent_ConnectionCreated", + "EventStreamSubscribeEventsResponseContent_ConnectionDeleted", + "EventStreamSubscribeEventsResponseContent_ConnectionUpdated", "EventStreamSubscribeEventsResponseContent_Error", "EventStreamSubscribeEventsResponseContent_GroupCreated", "EventStreamSubscribeEventsResponseContent_GroupDeleted", @@ -7501,7 +17440,8 @@ patches: "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", - "FederatedConnectionTokenSet", + "FedCmLoginGooglePatch", + "FedCmLoginPatch", "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts", @@ -8185,6 +18125,7 @@ patches: "HookTriggerIdEnum", "HttpCustomHeader", "Identity", + "IdentityAssertionAuthorizationGrant", "IdentityProviderEnum", "IdentityProviderOnlyAuth0Enum", "ImportEncryptionKeyResponseContent", @@ -8239,6 +18180,7 @@ patches: "ListOrganizationMemberRoleSourceGroupsResponseContent", "ListOrganizationMemberRolesOffsetPaginatedResponseContent", "ListOrganizationMembersPaginatedResponseContent", + "ListOrganizationRoleMembersResponseContent", "ListOrganizationsPaginatedResponseContent", "ListPhoneTemplatesResponseContent", "ListRateLimitPoliciesPaginatedResponseContent", @@ -8345,6 +18287,8 @@ patches: "NetworkAclRuleScopeEnum", "NetworkAclsResponseContent", "NotFoundError", + "NotFoundErrorBody", + "NotFoundErrorBodyError", "OauthScope", "Organization", "OrganizationAccessLevelEnum", @@ -8366,6 +18310,7 @@ patches: "OrganizationMemberEffectiveRoleSource", "OrganizationMemberRole", "OrganizationMetadata", + "OrganizationThirdPartyClientAccessEnum", "OrganizationUsageEnum", "PartialGroupsEnum", "PartialPhoneTemplateContent", @@ -8389,6 +18334,7 @@ patches: "PermissionRequestPayload", "PermissionsResponsePayload", "PhoneAttribute", + "PhoneAttributeIdentifier", "PhoneProviderChannelEnum", "PhoneProviderConfiguration", "PhoneProviderCredentials", @@ -8457,6 +18403,7 @@ patches: "ResourceServerVerificationKeyPemCertificate", "RevokedSigningKeysResponseContent", "Role", + "RoleMember", "RoleUser", "RollbackActionModuleResponseContent", "RotateClientSecretResponseContent", @@ -8493,6 +18440,8 @@ patches: "SelfServiceProfileUserAttribute", "SelfServiceProfileUserAttributes", "ServiceUnavailableError", + "SessionActorClaimValue", + "SessionActorMetadata", "SessionAuthenticationSignal", "SessionAuthenticationSignals", "SessionClientMetadata", @@ -8542,6 +18491,7 @@ patches: "SupportedLocales", "SuspiciousIpThrottlingAllowlist", "SuspiciousIpThrottlingAllowlistItem", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage", "SuspiciousIpThrottlingPreLoginStage", "SuspiciousIpThrottlingPreUserRegistrationStage", "SuspiciousIpThrottlingShieldsEnum", @@ -8570,14 +18520,18 @@ patches: "TestActionResultPayload", "TestCustomDomainResponseContent", "TestEventDataContent", + "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", "TokenProvider", "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", + "TokenVaultPrivilegedAccessGrant", "TokenVaultPrivilegedAccessIpAllowlistEntry", "TooManyRequestsError", + "TooManyRequestsErrorBody", + "TooManyRequestsErrorBodyError", "TooManyRequestsSchema", "TooManyRequestsSchemaError", "TwilioProviderConfiguration", @@ -8661,6 +18615,7 @@ patches: "UpdateConnectionRequestContentYahoo", "UpdateConnectionRequestContentYandex", "UpdateConnectionResponseContent", + "UpdateCrossAppAccessResourceApp", "UpdateCustomDomainResponseContent", "UpdateDefaultCanonicalDomainResponseContent", "UpdateDefaultCustomDomainResponseContent", @@ -8683,6 +18638,7 @@ patches: "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", "UpdateHookResponseContent", "UpdateHookSecretRequestContent", + "UpdateIdentityAssertionAuthorizationGrant", "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", @@ -8756,6 +18712,7 @@ patches: "UserResponseSchema", "UsernameAllowedTypes", "UsernameAttribute", + "UsernameAttributeIdentifier", "UsernameValidation", "UsersEnrollment", "VerifiableCredentialTemplateResponse", @@ -8814,202 +18771,21 @@ patches: "verifiable_credentials", ] user_owned: true - status: resolving - - id: patch-7271f157 - content_hash: sha256:cd98dd1948587cf3396a2eacf46626176784bd00996eb660374161bfef686e93 - original_commit: 7271f15759cfb545c9ef82b5a4f519ffe0a89db2 - original_message: Revert wrapper file to preserve Auth0 telemetry customizations + - id: patch-95211006 + content_hash: sha256:14c37fa7fd6124737cd970c0aff5d96eff6dc02a0f26c2bdea08b2e0c93be185 + original_commit: 952110062af1b3eb297b3cb94149b1bb8068a253 + original_message: Restore Auth0 telemetry and custom client wiring after regeneration original_author: Kunal Dawar - base_generation: bf4df4483c8f8211870c074c6e5725aabf31d339 - files: - - src/auth0/management/core/client_wrapper.py - patch_content: | - diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py - index b1aed4b..60ebc5a 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 - @@ -26,15 +31,18 @@ class BaseClientWrapper: - self._logging = logging - - def get_headers(self) -> typing.Dict[str, str]: - - import platform - + 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": "auth0-python/5.6.0", - - "X-Fern-Language": "Python", - - "X-Fern-Runtime": f"python/{platform.python_version()}", - - "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", - - "X-Fern-SDK-Name": "auth0-python", - - "X-Fern-SDK-Version": "5.6.0", - + "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()}" - theirs_snapshot: - src/auth0/management/core/client_wrapper.py: | - # 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 - from .logging import LogConfig, Logger - - - class BaseClientWrapper: - def __init__( - self, - *, - token: typing.Union[str, typing.Callable[[], str]], - headers: typing.Optional[typing.Dict[str, str]] = None, - base_url: str, - timeout: typing.Optional[float] = None, - max_retries: int = 2, - logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, - ): - self._token = token - self._headers = headers - self._base_url = base_url - self._timeout = timeout - self._max_retries = max_retries - 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()}" - return headers - - def _get_token(self) -> str: - if isinstance(self._token, str): - return self._token - else: - return self._token() - - def get_custom_headers(self) -> typing.Optional[typing.Dict[str, str]]: - return self._headers - - def get_base_url(self) -> str: - return self._base_url - - def get_timeout(self) -> typing.Optional[float]: - return self._timeout - - def get_max_retries(self) -> int: - return self._max_retries - - - class SyncClientWrapper(BaseClientWrapper): - def __init__( - self, - *, - token: typing.Union[str, typing.Callable[[], str]], - headers: typing.Optional[typing.Dict[str, str]] = None, - base_url: str, - timeout: typing.Optional[float] = None, - max_retries: int = 2, - logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, - httpx_client: httpx.Client, - ): - super().__init__( - token=token, headers=headers, base_url=base_url, timeout=timeout, max_retries=max_retries, logging=logging - ) - self.httpx_client = HttpClient( - httpx_client=httpx_client, - base_headers=self.get_headers, - base_timeout=self.get_timeout, - base_url=self.get_base_url, - base_max_retries=self.get_max_retries(), - logging_config=self._logging, - ) - - - class AsyncClientWrapper(BaseClientWrapper): - def __init__( - self, - *, - token: typing.Union[str, typing.Callable[[], str]], - headers: typing.Optional[typing.Dict[str, str]] = None, - base_url: str, - timeout: typing.Optional[float] = None, - max_retries: int = 2, - logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, - async_token: typing.Optional[typing.Callable[[], typing.Awaitable[str]]] = None, - httpx_client: httpx.AsyncClient, - ): - super().__init__( - token=token, headers=headers, base_url=base_url, timeout=timeout, max_retries=max_retries, logging=logging - ) - self._async_token = async_token - self.httpx_client = AsyncHttpClient( - httpx_client=httpx_client, - base_headers=self.get_headers, - base_timeout=self.get_timeout, - base_url=self.get_base_url, - base_max_retries=self.get_max_retries(), - async_base_headers=self.async_get_headers, - logging_config=self._logging, - ) - - async def async_get_headers(self) -> typing.Dict[str, str]: - headers = self.get_headers() - if self._async_token is not None: - token = await self._async_token() - headers["Authorization"] = f"Bearer {token}" - return headers - status: resolving - - id: patch-c04f0b4d - content_hash: sha256:83d107f26dbfc31edb435b802c8aed47747628eddee83e0fb85a71ec8d11519c - original_commit: c04f0b4dbbe8f2300f4f1bf42f62350888a92da5 - original_message: Fix for incorrect return type and missing __all__ type - original_author: Sourav Basu - base_generation: f3e76ebf362aac6f76e51d749b7497af72a641ff + base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 files: - src/auth0/management/__init__.py + - src/auth0/management/core/client_wrapper.py patch_content: | diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py - index b2be29eb..ec3d7dfc 100644 + index 1ffc57d9..8df9ea3e 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py - @@ -1860,6 +1860,8 @@ if typing.TYPE_CHECKING: + @@ -1871,6 +1871,8 @@ if typing.TYPE_CHECKING: FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, @@ -9018,7 +18794,7 @@ patches: FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, - @@ -3190,6 +3192,8 @@ if typing.TYPE_CHECKING: + @@ -3208,6 +3210,8 @@ if typing.TYPE_CHECKING: from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest from .version import __version__ @@ -9027,7 +18803,7 @@ patches: _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", - @@ -3250,6 +3254,8 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -3268,6 +3272,8 @@ _dynamic_imports: typing.Dict[str, str] = { "AssociateOrganizationClientGrantResponseContent": ".types", "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", @@ -9036,7 +18812,7 @@ patches: "AttackProtectionCaptchaArkoseResponseContent": ".types", "AttackProtectionCaptchaAuthChallengeRequest": ".types", "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", - @@ -4221,6 +4227,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -4250,6 +4256,7 @@ _dynamic_imports: typing.Dict[str, str] = { "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", @@ -9044,7 +18820,7 @@ patches: "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", - @@ -5053,6 +5060,8 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -5082,6 +5089,8 @@ _dynamic_imports: typing.Dict[str, str] = { "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", @@ -9053,7 +18829,7 @@ patches: "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", - @@ -5870,6 +5879,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -5900,6 +5909,7 @@ _dynamic_imports: typing.Dict[str, str] = { "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", @@ -9061,15 +18837,15 @@ patches: "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", - @@ -6128,6 +6138,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "TestEventDataContent": ".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", - @@ -6455,6 +6466,8 @@ __all__ = [ + @@ -6491,6 +6502,8 @@ __all__ = [ "AssociateOrganizationClientGrantResponseContent", "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", @@ -9078,7 +18854,7 @@ patches: "AttackProtectionCaptchaArkoseResponseContent", "AttackProtectionCaptchaAuthChallengeRequest", "AttackProtectionCaptchaAuthChallengeResponseContent", - @@ -7426,6 +7439,7 @@ __all__ = [ + @@ -7473,6 +7486,7 @@ __all__ = [ "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", @@ -9086,7 +18862,7 @@ patches: "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainProvisioningTypeEnum", - @@ -8258,6 +8272,8 @@ __all__ = [ + @@ -8305,6 +8319,8 @@ __all__ = [ "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", @@ -9095,7 +18871,7 @@ patches: "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts", - @@ -9075,6 +9091,7 @@ __all__ = [ + @@ -9123,6 +9139,7 @@ __all__ = [ "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", @@ -9103,14 +18879,46 @@ patches: "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", - @@ -9333,6 +9350,7 @@ __all__ = [ - "TestEventDataContent", + @@ -9385,6 +9402,7 @@ __all__ = [ + "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", + "TokenProvider", "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", + diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py + index f3256902..95ba6185 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 + @@ -30,7 +35,14 @@ class BaseClientWrapper: + self._logging = logging + + def get_headers(self) -> typing.Dict[str, str]: + - import platform + + 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": "auth0-python/6.0.0", theirs_snapshot: src/auth0/management/__init__.py: | # This file was auto-generated by Fern from our API Definition. @@ -9225,6 +19033,11 @@ patches: BrandingThemeFontSubtitle, BrandingThemeFontTitle, BrandingThemeFonts, + BrandingThemeIdentifiers, + BrandingThemeIdentifiersLoginDisplayEnum, + BrandingThemeIdentifiersPhoneDisplay, + BrandingThemeIdentifiersPhoneDisplayFormattingEnum, + BrandingThemeIdentifiersPhoneDisplayMaskingEnum, BrandingThemePageBackground, BrandingThemePageBackgroundPageLayoutEnum, BrandingThemeWidget, @@ -9435,6 +19248,8 @@ patches: ConnectionConnectedAccountsPurposeXaa, ConnectionConnectionSettings, ConnectionConnectionSettingsPkceEnum, + ConnectionCrossAppAccessResourceApp, + ConnectionCrossAppAccessResourceAppStatusEnum, ConnectionCustomHeadersOAuth2, ConnectionCustomScripts, ConnectionDebugSaml, @@ -9998,6 +19813,7 @@ patches: CreateConnectionRequestContentYandex, CreateConnectionRequestContentYandexStrategy, CreateConnectionResponseContent, + CreateCrossAppAccessResourceApp, CreateCustomDomainResponseContent, CreateDirectoryProvisioningRequestContent, CreateDirectoryProvisioningResponseContent, @@ -10093,6 +19909,7 @@ patches: CreateGuardianEnrollmentTicketResponseContent, CreateHookResponseContent, CreateHookSecretRequestContent, + CreateIdentityAssertionAuthorizationGrant, CreateImportUsersResponseContent, CreateLogStreamDatadogRequestBody, CreateLogStreamEventBridgeRequestBody, @@ -10133,6 +19950,8 @@ patches: CredentialDeviceTypeEnum, CredentialId, CrossAppAccessRequestingApp, + CrossAppAccessResourceApp, + CrossAppAccessResourceAppStatusEnum, CspDirectives, CspFlag, CspFlags, @@ -11658,6 +21477,7 @@ patches: HookTriggerIdEnum, HttpCustomHeader, Identity, + IdentityAssertionAuthorizationGrant, IdentityProviderEnum, IdentityProviderOnlyAuth0Enum, ImportEncryptionKeyResponseContent, @@ -11966,6 +21786,8 @@ patches: SelfServiceProfileSsoTicketProvisioningScopeEnum, SelfServiceProfileUserAttribute, SelfServiceProfileUserAttributes, + SessionActorClaimValue, + SessionActorMetadata, SessionAuthenticationSignal, SessionAuthenticationSignals, SessionClientMetadata, @@ -12015,6 +21837,7 @@ patches: SupportedLocales, SuspiciousIpThrottlingAllowlist, SuspiciousIpThrottlingAllowlistItem, + SuspiciousIpThrottlingPreCustomTokenExchangeStage, SuspiciousIpThrottlingPreLoginStage, SuspiciousIpThrottlingPreUserRegistrationStage, SuspiciousIpThrottlingShieldsEnum, @@ -12043,6 +21866,7 @@ patches: TestActionResultPayload, TestCustomDomainResponseContent, TestEventDataContent, + ThirdPartyClientAccessConfig, TokenExchangeProfileResponseContent, TokenExchangeProfileTypeEnum, TokenQuota, @@ -12134,6 +21958,7 @@ patches: UpdateConnectionRequestContentYahoo, UpdateConnectionRequestContentYandex, UpdateConnectionResponseContent, + UpdateCrossAppAccessResourceApp, UpdateCustomDomainResponseContent, UpdateDefaultCanonicalDomainResponseContent, UpdateDefaultCustomDomainResponseContent, @@ -12156,6 +21981,7 @@ patches: UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, UpdateHookResponseContent, UpdateHookSecretRequestContent, + UpdateIdentityAssertionAuthorizationGrant, UpdateLogStreamResponseContent, UpdateNetworkAclResponseContent, UpdateOrganizationAllConnectionResponseContent, @@ -12419,6 +22245,11 @@ patches: "BrandingThemeFontSubtitle": ".types", "BrandingThemeFontTitle": ".types", "BrandingThemeFonts": ".types", + "BrandingThemeIdentifiers": ".types", + "BrandingThemeIdentifiersLoginDisplayEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplay": ".types", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum": ".types", "BrandingThemePageBackground": ".types", "BrandingThemePageBackgroundPageLayoutEnum": ".types", "BrandingThemeWidget": ".types", @@ -12630,6 +22461,8 @@ patches: "ConnectionConnectedAccountsPurposeXaa": ".types", "ConnectionConnectionSettings": ".types", "ConnectionConnectionSettingsPkceEnum": ".types", + "ConnectionCrossAppAccessResourceApp": ".types", + "ConnectionCrossAppAccessResourceAppStatusEnum": ".types", "ConnectionCustomHeadersOAuth2": ".types", "ConnectionCustomScripts": ".types", "ConnectionDebugSaml": ".types", @@ -13194,6 +23027,7 @@ patches: "CreateConnectionRequestContentYandex": ".types", "CreateConnectionRequestContentYandexStrategy": ".types", "CreateConnectionResponseContent": ".types", + "CreateCrossAppAccessResourceApp": ".types", "CreateCustomDomainResponseContent": ".types", "CreateDirectoryProvisioningRequestContent": ".types", "CreateDirectoryProvisioningResponseContent": ".types", @@ -13289,6 +23123,7 @@ patches: "CreateGuardianEnrollmentTicketResponseContent": ".types", "CreateHookResponseContent": ".types", "CreateHookSecretRequestContent": ".types", + "CreateIdentityAssertionAuthorizationGrant": ".types", "CreateImportUsersResponseContent": ".types", "CreateLogStreamDatadogRequestBody": ".types", "CreateLogStreamEventBridgeRequestBody": ".types", @@ -13329,6 +23164,8 @@ patches: "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CrossAppAccessRequestingApp": ".types", + "CrossAppAccessResourceApp": ".types", + "CrossAppAccessResourceAppStatusEnum": ".types", "CspDirectives": ".types", "CspFlag": ".types", "CspFlags": ".types", @@ -14860,6 +24697,7 @@ patches: "HookTriggerIdEnum": ".types", "HttpCustomHeader": ".types", "Identity": ".types", + "IdentityAssertionAuthorizationGrant": ".types", "IdentityProviderEnum": ".types", "IdentityProviderOnlyAuth0Enum": ".types", "ImportEncryptionKeyResponseContent": ".types", @@ -15174,6 +25012,8 @@ patches: "SelfServiceProfileUserAttribute": ".types", "SelfServiceProfileUserAttributes": ".types", "ServiceUnavailableError": ".errors", + "SessionActorClaimValue": ".types", + "SessionActorMetadata": ".types", "SessionAuthenticationSignal": ".types", "SessionAuthenticationSignals": ".types", "SessionClientMetadata": ".types", @@ -15223,6 +25063,7 @@ patches: "SupportedLocales": ".types", "SuspiciousIpThrottlingAllowlist": ".types", "SuspiciousIpThrottlingAllowlistItem": ".types", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage": ".types", "SuspiciousIpThrottlingPreLoginStage": ".types", "SuspiciousIpThrottlingPreUserRegistrationStage": ".types", "SuspiciousIpThrottlingShieldsEnum": ".types", @@ -15251,6 +25092,7 @@ patches: "TestActionResultPayload": ".types", "TestCustomDomainResponseContent": ".types", "TestEventDataContent": ".types", + "ThirdPartyClientAccessConfig": ".types", "TokenExchangeProfileResponseContent": ".types", "TokenExchangeProfileTypeEnum": ".types", "TokenProvider": ".token_provider", @@ -15345,6 +25187,7 @@ patches: "UpdateConnectionRequestContentYahoo": ".types", "UpdateConnectionRequestContentYandex": ".types", "UpdateConnectionResponseContent": ".types", + "UpdateCrossAppAccessResourceApp": ".types", "UpdateCustomDomainResponseContent": ".types", "UpdateDefaultCanonicalDomainResponseContent": ".types", "UpdateDefaultCustomDomainResponseContent": ".types", @@ -15367,6 +25210,7 @@ patches: "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", "UpdateHookResponseContent": ".types", "UpdateHookSecretRequestContent": ".types", + "UpdateIdentityAssertionAuthorizationGrant": ".types", "UpdateLogStreamResponseContent": ".types", "UpdateNetworkAclResponseContent": ".types", "UpdateOrganizationAllConnectionResponseContent": ".types", @@ -15631,6 +25475,11 @@ patches: "BrandingThemeFontSubtitle", "BrandingThemeFontTitle", "BrandingThemeFonts", + "BrandingThemeIdentifiers", + "BrandingThemeIdentifiersLoginDisplayEnum", + "BrandingThemeIdentifiersPhoneDisplay", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum", "BrandingThemePageBackground", "BrandingThemePageBackgroundPageLayoutEnum", "BrandingThemeWidget", @@ -15842,6 +25691,8 @@ patches: "ConnectionConnectedAccountsPurposeXaa", "ConnectionConnectionSettings", "ConnectionConnectionSettingsPkceEnum", + "ConnectionCrossAppAccessResourceApp", + "ConnectionCrossAppAccessResourceAppStatusEnum", "ConnectionCustomHeadersOAuth2", "ConnectionCustomScripts", "ConnectionDebugSaml", @@ -16406,6 +26257,7 @@ patches: "CreateConnectionRequestContentYandex", "CreateConnectionRequestContentYandexStrategy", "CreateConnectionResponseContent", + "CreateCrossAppAccessResourceApp", "CreateCustomDomainResponseContent", "CreateDirectoryProvisioningRequestContent", "CreateDirectoryProvisioningResponseContent", @@ -16501,6 +26353,7 @@ patches: "CreateGuardianEnrollmentTicketResponseContent", "CreateHookResponseContent", "CreateHookSecretRequestContent", + "CreateIdentityAssertionAuthorizationGrant", "CreateImportUsersResponseContent", "CreateLogStreamDatadogRequestBody", "CreateLogStreamEventBridgeRequestBody", @@ -16541,6 +26394,8 @@ patches: "CredentialDeviceTypeEnum", "CredentialId", "CrossAppAccessRequestingApp", + "CrossAppAccessResourceApp", + "CrossAppAccessResourceAppStatusEnum", "CspDirectives", "CspFlag", "CspFlags", @@ -18072,6 +27927,7 @@ patches: "HookTriggerIdEnum", "HttpCustomHeader", "Identity", + "IdentityAssertionAuthorizationGrant", "IdentityProviderEnum", "IdentityProviderOnlyAuth0Enum", "ImportEncryptionKeyResponseContent", @@ -18386,6 +28242,8 @@ patches: "SelfServiceProfileUserAttribute", "SelfServiceProfileUserAttributes", "ServiceUnavailableError", + "SessionActorClaimValue", + "SessionActorMetadata", "SessionAuthenticationSignal", "SessionAuthenticationSignals", "SessionClientMetadata", @@ -18435,6 +28293,7 @@ patches: "SupportedLocales", "SuspiciousIpThrottlingAllowlist", "SuspiciousIpThrottlingAllowlistItem", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage", "SuspiciousIpThrottlingPreLoginStage", "SuspiciousIpThrottlingPreUserRegistrationStage", "SuspiciousIpThrottlingShieldsEnum", @@ -18463,6 +28322,7 @@ patches: "TestActionResultPayload", "TestCustomDomainResponseContent", "TestEventDataContent", + "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", "TokenProvider", @@ -18557,6 +28417,7 @@ patches: "UpdateConnectionRequestContentYahoo", "UpdateConnectionRequestContentYandex", "UpdateConnectionResponseContent", + "UpdateCrossAppAccessResourceApp", "UpdateCustomDomainResponseContent", "UpdateDefaultCanonicalDomainResponseContent", "UpdateDefaultCustomDomainResponseContent", @@ -18579,6 +28440,7 @@ patches: "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", "UpdateHookResponseContent", "UpdateHookSecretRequestContent", + "UpdateIdentityAssertionAuthorizationGrant", "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", @@ -18710,22 +28572,181 @@ patches: "users", "verifiable_credentials", ] + src/auth0/management/core/client_wrapper.py: | + # 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 + from .logging import LogConfig, Logger + + + class BaseClientWrapper: + def __init__( + self, + *, + token: typing.Union[str, typing.Callable[[], str]], + headers: typing.Optional[typing.Dict[str, str]] = None, + base_url: str, + timeout: typing.Optional[float] = None, + max_retries: int = 2, + stream_reconnection_enabled: typing.Optional[bool] = None, + max_stream_reconnection_attempts: typing.Optional[int] = None, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, + ): + self._token = token + self._headers = headers + self._base_url = base_url + self._timeout = timeout + self._max_retries = max_retries + self._stream_reconnection_enabled = stream_reconnection_enabled + self._max_stream_reconnection_attempts = max_stream_reconnection_attempts + 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": "auth0-python/6.0.0", + "X-Fern-Language": "Python", + "X-Fern-Runtime": f"python/{platform.python_version()}", + "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", + "X-Fern-SDK-Name": "auth0-python", + "X-Fern-SDK-Version": "6.0.0", + **(self.get_custom_headers() or {}), + } + headers["Authorization"] = f"Bearer {self._get_token()}" + return headers + + def _get_token(self) -> str: + if isinstance(self._token, str): + return self._token + else: + return self._token() + + def get_custom_headers(self) -> typing.Optional[typing.Dict[str, str]]: + return self._headers + + def get_base_url(self) -> str: + return self._base_url + + def get_timeout(self) -> typing.Optional[float]: + return self._timeout + + def get_max_retries(self) -> int: + return self._max_retries + + def get_stream_reconnection_enabled(self) -> bool: + return self._stream_reconnection_enabled if self._stream_reconnection_enabled is not None else True + + def get_max_stream_reconnection_attempts(self) -> typing.Optional[int]: + return self._max_stream_reconnection_attempts + + + class SyncClientWrapper(BaseClientWrapper): + def __init__( + self, + *, + token: typing.Union[str, typing.Callable[[], str]], + headers: typing.Optional[typing.Dict[str, str]] = None, + base_url: str, + timeout: typing.Optional[float] = None, + max_retries: int = 2, + stream_reconnection_enabled: typing.Optional[bool] = None, + max_stream_reconnection_attempts: typing.Optional[int] = None, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, + httpx_client: httpx.Client, + ): + super().__init__( + token=token, + headers=headers, + base_url=base_url, + timeout=timeout, + max_retries=max_retries, + stream_reconnection_enabled=stream_reconnection_enabled, + max_stream_reconnection_attempts=max_stream_reconnection_attempts, + logging=logging, + ) + self.httpx_client = HttpClient( + httpx_client=httpx_client, + base_headers=self.get_headers, + base_timeout=self.get_timeout, + base_url=self.get_base_url, + base_max_retries=self.get_max_retries(), + logging_config=self._logging, + ) + + + class AsyncClientWrapper(BaseClientWrapper): + def __init__( + self, + *, + token: typing.Union[str, typing.Callable[[], str]], + headers: typing.Optional[typing.Dict[str, str]] = None, + base_url: str, + timeout: typing.Optional[float] = None, + max_retries: int = 2, + stream_reconnection_enabled: typing.Optional[bool] = None, + max_stream_reconnection_attempts: typing.Optional[int] = None, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, + async_token: typing.Optional[typing.Callable[[], typing.Awaitable[str]]] = None, + httpx_client: httpx.AsyncClient, + ): + super().__init__( + token=token, + headers=headers, + base_url=base_url, + timeout=timeout, + max_retries=max_retries, + stream_reconnection_enabled=stream_reconnection_enabled, + max_stream_reconnection_attempts=max_stream_reconnection_attempts, + logging=logging, + ) + self._async_token = async_token + self.httpx_client = AsyncHttpClient( + httpx_client=httpx_client, + base_headers=self.get_headers, + base_timeout=self.get_timeout, + base_url=self.get_base_url, + base_max_retries=self.get_max_retries(), + async_base_headers=self.async_get_headers, + logging_config=self._logging, + ) + + async def async_get_headers(self) -> typing.Dict[str, str]: + headers = self.get_headers() + if self._async_token is not None: + token = await self._async_token() + headers["Authorization"] = f"Bearer {token}" + return headers user_owned: true - - id: patch-95211006 - content_hash: sha256:1be4415d1692a2bc1fc88fced25a9d80a56fc838787fd3c66b41cae244c29a7d - original_commit: 952110062af1b3eb297b3cb94149b1bb8068a253 - original_message: Restore Auth0 telemetry and custom client wiring after regeneration + - id: patch-f7384913 + content_hash: sha256:a3f66d48f9f65d4741bddcee2521e8db6171a88fac1ac7169a3955283a687e6d + original_commit: f7384913ab0a14df83dbc602d2b694e2cb7b7668 + original_message: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries original_author: Kunal Dawar - base_generation: f3e76ebf362aac6f76e51d749b7497af72a641ff + base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 files: - src/auth0/management/__init__.py - - src/auth0/management/core/client_wrapper.py patch_content: | diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py - index b2be29eb..ec3d7dfc 100644 + index 1ffc57d9..8df9ea3e 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py - @@ -1860,6 +1860,8 @@ if typing.TYPE_CHECKING: + @@ -1871,6 +1871,8 @@ if typing.TYPE_CHECKING: FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, @@ -18734,7 +28755,7 @@ patches: FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, - @@ -3190,6 +3192,8 @@ if typing.TYPE_CHECKING: + @@ -3208,6 +3210,8 @@ if typing.TYPE_CHECKING: from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest from .version import __version__ @@ -18743,7 +28764,7 @@ patches: _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", - @@ -3250,6 +3254,8 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -3268,6 +3272,8 @@ _dynamic_imports: typing.Dict[str, str] = { "AssociateOrganizationClientGrantResponseContent": ".types", "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", @@ -18752,7 +28773,7 @@ patches: "AttackProtectionCaptchaArkoseResponseContent": ".types", "AttackProtectionCaptchaAuthChallengeRequest": ".types", "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", - @@ -4221,6 +4227,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -4250,6 +4256,7 @@ _dynamic_imports: typing.Dict[str, str] = { "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", @@ -18760,7 +28781,7 @@ patches: "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", - @@ -5053,6 +5060,8 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -5082,6 +5089,8 @@ _dynamic_imports: typing.Dict[str, str] = { "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", @@ -18769,7 +28790,7 @@ patches: "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", - @@ -5870,6 +5879,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -5900,6 +5909,7 @@ _dynamic_imports: typing.Dict[str, str] = { "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", @@ -18777,15 +28798,15 @@ patches: "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", - @@ -6128,6 +6138,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "TestEventDataContent": ".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", - @@ -6455,6 +6466,8 @@ __all__ = [ + @@ -6491,6 +6502,8 @@ __all__ = [ "AssociateOrganizationClientGrantResponseContent", "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", @@ -18794,7 +28815,7 @@ patches: "AttackProtectionCaptchaArkoseResponseContent", "AttackProtectionCaptchaAuthChallengeRequest", "AttackProtectionCaptchaAuthChallengeResponseContent", - @@ -7426,6 +7439,7 @@ __all__ = [ + @@ -7473,6 +7486,7 @@ __all__ = [ "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", @@ -18802,7 +28823,7 @@ patches: "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainProvisioningTypeEnum", - @@ -8258,6 +8272,8 @@ __all__ = [ + @@ -8305,6 +8319,8 @@ __all__ = [ "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", @@ -18811,7 +28832,7 @@ patches: "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts", - @@ -9075,6 +9091,7 @@ __all__ = [ + @@ -9123,6 +9139,7 @@ __all__ = [ "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", @@ -18819,46 +28840,14 @@ patches: "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", - @@ -9333,6 +9350,7 @@ __all__ = [ - "TestEventDataContent", + @@ -9385,6 +9402,7 @@ __all__ = [ + "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", + "TokenProvider", "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", - diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py - index 63874659..b4560ca3 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 - @@ -30,7 +35,14 @@ class BaseClientWrapper: - self._logging = logging - - def get_headers(self) -> typing.Dict[str, str]: - - import platform - + 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": "auth0-python/5.8.0", theirs_snapshot: src/auth0/management/__init__.py: | # This file was auto-generated by Fern from our API Definition. @@ -18973,6 +28962,11 @@ patches: BrandingThemeFontSubtitle, BrandingThemeFontTitle, BrandingThemeFonts, + BrandingThemeIdentifiers, + BrandingThemeIdentifiersLoginDisplayEnum, + BrandingThemeIdentifiersPhoneDisplay, + BrandingThemeIdentifiersPhoneDisplayFormattingEnum, + BrandingThemeIdentifiersPhoneDisplayMaskingEnum, BrandingThemePageBackground, BrandingThemePageBackgroundPageLayoutEnum, BrandingThemeWidget, @@ -19183,6 +29177,8 @@ patches: ConnectionConnectedAccountsPurposeXaa, ConnectionConnectionSettings, ConnectionConnectionSettingsPkceEnum, + ConnectionCrossAppAccessResourceApp, + ConnectionCrossAppAccessResourceAppStatusEnum, ConnectionCustomHeadersOAuth2, ConnectionCustomScripts, ConnectionDebugSaml, @@ -19746,6 +29742,7 @@ patches: CreateConnectionRequestContentYandex, CreateConnectionRequestContentYandexStrategy, CreateConnectionResponseContent, + CreateCrossAppAccessResourceApp, CreateCustomDomainResponseContent, CreateDirectoryProvisioningRequestContent, CreateDirectoryProvisioningResponseContent, @@ -19841,6 +29838,7 @@ patches: CreateGuardianEnrollmentTicketResponseContent, CreateHookResponseContent, CreateHookSecretRequestContent, + CreateIdentityAssertionAuthorizationGrant, CreateImportUsersResponseContent, CreateLogStreamDatadogRequestBody, CreateLogStreamEventBridgeRequestBody, @@ -19881,6 +29879,8 @@ patches: CredentialDeviceTypeEnum, CredentialId, CrossAppAccessRequestingApp, + CrossAppAccessResourceApp, + CrossAppAccessResourceAppStatusEnum, CspDirectives, CspFlag, CspFlags, @@ -21406,6 +31406,7 @@ patches: HookTriggerIdEnum, HttpCustomHeader, Identity, + IdentityAssertionAuthorizationGrant, IdentityProviderEnum, IdentityProviderOnlyAuth0Enum, ImportEncryptionKeyResponseContent, @@ -21714,6 +31715,8 @@ patches: SelfServiceProfileSsoTicketProvisioningScopeEnum, SelfServiceProfileUserAttribute, SelfServiceProfileUserAttributes, + SessionActorClaimValue, + SessionActorMetadata, SessionAuthenticationSignal, SessionAuthenticationSignals, SessionClientMetadata, @@ -21763,6 +31766,7 @@ patches: SupportedLocales, SuspiciousIpThrottlingAllowlist, SuspiciousIpThrottlingAllowlistItem, + SuspiciousIpThrottlingPreCustomTokenExchangeStage, SuspiciousIpThrottlingPreLoginStage, SuspiciousIpThrottlingPreUserRegistrationStage, SuspiciousIpThrottlingShieldsEnum, @@ -21791,6 +31795,7 @@ patches: TestActionResultPayload, TestCustomDomainResponseContent, TestEventDataContent, + ThirdPartyClientAccessConfig, TokenExchangeProfileResponseContent, TokenExchangeProfileTypeEnum, TokenQuota, @@ -21882,6 +31887,7 @@ patches: UpdateConnectionRequestContentYahoo, UpdateConnectionRequestContentYandex, UpdateConnectionResponseContent, + UpdateCrossAppAccessResourceApp, UpdateCustomDomainResponseContent, UpdateDefaultCanonicalDomainResponseContent, UpdateDefaultCustomDomainResponseContent, @@ -21904,6 +31910,7 @@ patches: UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, UpdateHookResponseContent, UpdateHookSecretRequestContent, + UpdateIdentityAssertionAuthorizationGrant, UpdateLogStreamResponseContent, UpdateNetworkAclResponseContent, UpdateOrganizationAllConnectionResponseContent, @@ -22167,6 +32174,11 @@ patches: "BrandingThemeFontSubtitle": ".types", "BrandingThemeFontTitle": ".types", "BrandingThemeFonts": ".types", + "BrandingThemeIdentifiers": ".types", + "BrandingThemeIdentifiersLoginDisplayEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplay": ".types", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum": ".types", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum": ".types", "BrandingThemePageBackground": ".types", "BrandingThemePageBackgroundPageLayoutEnum": ".types", "BrandingThemeWidget": ".types", @@ -22378,6 +32390,8 @@ patches: "ConnectionConnectedAccountsPurposeXaa": ".types", "ConnectionConnectionSettings": ".types", "ConnectionConnectionSettingsPkceEnum": ".types", + "ConnectionCrossAppAccessResourceApp": ".types", + "ConnectionCrossAppAccessResourceAppStatusEnum": ".types", "ConnectionCustomHeadersOAuth2": ".types", "ConnectionCustomScripts": ".types", "ConnectionDebugSaml": ".types", @@ -22942,6 +32956,7 @@ patches: "CreateConnectionRequestContentYandex": ".types", "CreateConnectionRequestContentYandexStrategy": ".types", "CreateConnectionResponseContent": ".types", + "CreateCrossAppAccessResourceApp": ".types", "CreateCustomDomainResponseContent": ".types", "CreateDirectoryProvisioningRequestContent": ".types", "CreateDirectoryProvisioningResponseContent": ".types", @@ -23037,6 +33052,7 @@ patches: "CreateGuardianEnrollmentTicketResponseContent": ".types", "CreateHookResponseContent": ".types", "CreateHookSecretRequestContent": ".types", + "CreateIdentityAssertionAuthorizationGrant": ".types", "CreateImportUsersResponseContent": ".types", "CreateLogStreamDatadogRequestBody": ".types", "CreateLogStreamEventBridgeRequestBody": ".types", @@ -23077,6 +33093,8 @@ patches: "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CrossAppAccessRequestingApp": ".types", + "CrossAppAccessResourceApp": ".types", + "CrossAppAccessResourceAppStatusEnum": ".types", "CspDirectives": ".types", "CspFlag": ".types", "CspFlags": ".types", @@ -24608,6 +34626,7 @@ patches: "HookTriggerIdEnum": ".types", "HttpCustomHeader": ".types", "Identity": ".types", + "IdentityAssertionAuthorizationGrant": ".types", "IdentityProviderEnum": ".types", "IdentityProviderOnlyAuth0Enum": ".types", "ImportEncryptionKeyResponseContent": ".types", @@ -24922,6 +34941,8 @@ patches: "SelfServiceProfileUserAttribute": ".types", "SelfServiceProfileUserAttributes": ".types", "ServiceUnavailableError": ".errors", + "SessionActorClaimValue": ".types", + "SessionActorMetadata": ".types", "SessionAuthenticationSignal": ".types", "SessionAuthenticationSignals": ".types", "SessionClientMetadata": ".types", @@ -24971,6 +34992,7 @@ patches: "SupportedLocales": ".types", "SuspiciousIpThrottlingAllowlist": ".types", "SuspiciousIpThrottlingAllowlistItem": ".types", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage": ".types", "SuspiciousIpThrottlingPreLoginStage": ".types", "SuspiciousIpThrottlingPreUserRegistrationStage": ".types", "SuspiciousIpThrottlingShieldsEnum": ".types", @@ -24999,6 +35021,7 @@ patches: "TestActionResultPayload": ".types", "TestCustomDomainResponseContent": ".types", "TestEventDataContent": ".types", + "ThirdPartyClientAccessConfig": ".types", "TokenExchangeProfileResponseContent": ".types", "TokenExchangeProfileTypeEnum": ".types", "TokenProvider": ".token_provider", @@ -25093,6 +35116,7 @@ patches: "UpdateConnectionRequestContentYahoo": ".types", "UpdateConnectionRequestContentYandex": ".types", "UpdateConnectionResponseContent": ".types", + "UpdateCrossAppAccessResourceApp": ".types", "UpdateCustomDomainResponseContent": ".types", "UpdateDefaultCanonicalDomainResponseContent": ".types", "UpdateDefaultCustomDomainResponseContent": ".types", @@ -25115,6 +35139,7 @@ patches: "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", "UpdateHookResponseContent": ".types", "UpdateHookSecretRequestContent": ".types", + "UpdateIdentityAssertionAuthorizationGrant": ".types", "UpdateLogStreamResponseContent": ".types", "UpdateNetworkAclResponseContent": ".types", "UpdateOrganizationAllConnectionResponseContent": ".types", @@ -25379,6 +35404,11 @@ patches: "BrandingThemeFontSubtitle", "BrandingThemeFontTitle", "BrandingThemeFonts", + "BrandingThemeIdentifiers", + "BrandingThemeIdentifiersLoginDisplayEnum", + "BrandingThemeIdentifiersPhoneDisplay", + "BrandingThemeIdentifiersPhoneDisplayFormattingEnum", + "BrandingThemeIdentifiersPhoneDisplayMaskingEnum", "BrandingThemePageBackground", "BrandingThemePageBackgroundPageLayoutEnum", "BrandingThemeWidget", @@ -25590,6 +35620,8 @@ patches: "ConnectionConnectedAccountsPurposeXaa", "ConnectionConnectionSettings", "ConnectionConnectionSettingsPkceEnum", + "ConnectionCrossAppAccessResourceApp", + "ConnectionCrossAppAccessResourceAppStatusEnum", "ConnectionCustomHeadersOAuth2", "ConnectionCustomScripts", "ConnectionDebugSaml", @@ -26154,6 +36186,7 @@ patches: "CreateConnectionRequestContentYandex", "CreateConnectionRequestContentYandexStrategy", "CreateConnectionResponseContent", + "CreateCrossAppAccessResourceApp", "CreateCustomDomainResponseContent", "CreateDirectoryProvisioningRequestContent", "CreateDirectoryProvisioningResponseContent", @@ -26249,6 +36282,7 @@ patches: "CreateGuardianEnrollmentTicketResponseContent", "CreateHookResponseContent", "CreateHookSecretRequestContent", + "CreateIdentityAssertionAuthorizationGrant", "CreateImportUsersResponseContent", "CreateLogStreamDatadogRequestBody", "CreateLogStreamEventBridgeRequestBody", @@ -26289,6 +36323,8 @@ patches: "CredentialDeviceTypeEnum", "CredentialId", "CrossAppAccessRequestingApp", + "CrossAppAccessResourceApp", + "CrossAppAccessResourceAppStatusEnum", "CspDirectives", "CspFlag", "CspFlags", @@ -27820,6 +37856,7 @@ patches: "HookTriggerIdEnum", "HttpCustomHeader", "Identity", + "IdentityAssertionAuthorizationGrant", "IdentityProviderEnum", "IdentityProviderOnlyAuth0Enum", "ImportEncryptionKeyResponseContent", @@ -28134,6 +38171,8 @@ patches: "SelfServiceProfileUserAttribute", "SelfServiceProfileUserAttributes", "ServiceUnavailableError", + "SessionActorClaimValue", + "SessionActorMetadata", "SessionAuthenticationSignal", "SessionAuthenticationSignals", "SessionClientMetadata", @@ -28183,6 +38222,7 @@ patches: "SupportedLocales", "SuspiciousIpThrottlingAllowlist", "SuspiciousIpThrottlingAllowlistItem", + "SuspiciousIpThrottlingPreCustomTokenExchangeStage", "SuspiciousIpThrottlingPreLoginStage", "SuspiciousIpThrottlingPreUserRegistrationStage", "SuspiciousIpThrottlingShieldsEnum", @@ -28211,6 +38251,7 @@ patches: "TestActionResultPayload", "TestCustomDomainResponseContent", "TestEventDataContent", + "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", "TokenProvider", @@ -28305,6 +38346,7 @@ patches: "UpdateConnectionRequestContentYahoo", "UpdateConnectionRequestContentYandex", "UpdateConnectionResponseContent", + "UpdateCrossAppAccessResourceApp", "UpdateCustomDomainResponseContent", "UpdateDefaultCanonicalDomainResponseContent", "UpdateDefaultCustomDomainResponseContent", @@ -28327,6 +38369,7 @@ patches: "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", "UpdateHookResponseContent", "UpdateHookSecretRequestContent", + "UpdateIdentityAssertionAuthorizationGrant", "UpdateLogStreamResponseContent", "UpdateNetworkAclResponseContent", "UpdateOrganizationAllConnectionResponseContent", @@ -28458,164 +38501,667 @@ patches: "users", "verifiable_credentials", ] - src/auth0/management/core/client_wrapper.py: | - # This file was auto-generated by Fern from our API Definition. - # Modified by Auth0 to use Auth0 telemetry format with dynamic versioning + - 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 + files: + - UPGRADING.md + patch_content: | + 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. + theirs_snapshot: + UPGRADING.md: | + # v6 Migration Guide - import base64 - import platform - import sys - import typing - from json import dumps + A guide to migrating the Auth0 Python SDK from v5 to v6. - import httpx - from .http_client import AsyncHttpClient, HttpClient - from .logging import LogConfig, Logger + - [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 - class BaseClientWrapper: - def __init__( - self, - *, - token: typing.Union[str, typing.Callable[[], str]], - headers: typing.Optional[typing.Dict[str, str]] = None, - base_url: str, - timeout: typing.Optional[float] = None, - max_retries: int = 2, - stream_reconnection_enabled: typing.Optional[bool] = None, - max_stream_reconnection_attempts: typing.Optional[int] = None, - logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, - ): - self._token = token - self._headers = headers - self._base_url = base_url - self._timeout = timeout - self._max_retries = max_retries - self._stream_reconnection_enabled = stream_reconnection_enabled - self._max_stream_reconnection_attempts = max_stream_reconnection_attempts - self._logging = logging + 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. - def get_headers(self) -> typing.Dict[str, str]: - py_version = platform.python_version() - version = sys.modules["auth0"].__version__ + The Authentication API is not affected by this release. - auth0_client = dumps({ - "name": "auth0-python", - "version": version, - "env": {"python": py_version} - }).encode("utf-8") + ## Breaking changes - headers: typing.Dict[str, str] = { - "User-Agent": "auth0-python/5.8.0", - "X-Fern-Language": "Python", - "X-Fern-Runtime": f"python/{platform.python_version()}", - "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", - "X-Fern-SDK-Name": "auth0-python", - "X-Fern-SDK-Version": "5.8.0", - **(self.get_custom_headers() or {}), - } - headers["Authorization"] = f"Bearer {self._get_token()}" - return headers + ### Federated connections tokensets removed - def _get_token(self) -> str: - if isinstance(self._token, str): - return self._token - else: - return self._token() + 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. - def get_custom_headers(self) -> typing.Optional[typing.Dict[str, str]]: - return self._headers + ```python + # v5 + client.users.federated_connections_tokensets.list(id="user_id") + client.users.federated_connections_tokensets.delete(id="user_id", tokenset_id="tokenset_id") + ``` - def get_base_url(self) -> str: - return self._base_url + ```python + # v6 + # No replacement — the endpoint has been removed from the Management API. + ``` - def get_timeout(self) -> typing.Optional[float]: - return self._timeout + If you depend on this functionality, do not upgrade until you have confirmed + an alternative with Auth0 support. - def get_max_retries(self) -> int: - return self._max_retries + ### `federated_connections_access_tokens` field removed - def get_stream_reconnection_enabled(self) -> bool: - return self._stream_reconnection_enabled if self._stream_reconnection_enabled is not None else True + The optional `federated_connections_access_tokens` field has been removed + from: - def get_max_stream_reconnection_attempts(self) -> typing.Optional[int]: - return self._max_stream_reconnection_attempts + - `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. - class SyncClientWrapper(BaseClientWrapper): - def __init__( - self, - *, - token: typing.Union[str, typing.Callable[[], str]], - headers: typing.Optional[typing.Dict[str, str]] = None, - base_url: str, - timeout: typing.Optional[float] = None, - max_retries: int = 2, - stream_reconnection_enabled: typing.Optional[bool] = None, - max_stream_reconnection_attempts: typing.Optional[int] = None, - logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, - httpx_client: httpx.Client, - ): - super().__init__( - token=token, - headers=headers, - base_url=base_url, - timeout=timeout, - max_retries=max_retries, - stream_reconnection_enabled=stream_reconnection_enabled, - max_stream_reconnection_attempts=max_stream_reconnection_attempts, - logging=logging, - ) - self.httpx_client = HttpClient( - httpx_client=httpx_client, - base_headers=self.get_headers, - base_timeout=self.get_timeout, - base_url=self.get_base_url, - base_max_retries=self.get_max_retries(), - logging_config=self._logging, - ) + ### `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. - class AsyncClientWrapper(BaseClientWrapper): - def __init__( - self, - *, - token: typing.Union[str, typing.Callable[[], str]], - headers: typing.Optional[typing.Dict[str, str]] = None, - base_url: str, - timeout: typing.Optional[float] = None, - max_retries: int = 2, - stream_reconnection_enabled: typing.Optional[bool] = None, - max_stream_reconnection_attempts: typing.Optional[int] = None, - logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, - async_token: typing.Optional[typing.Callable[[], typing.Awaitable[str]]] = None, - httpx_client: httpx.AsyncClient, - ): - super().__init__( - token=token, - headers=headers, - base_url=base_url, - timeout=timeout, - max_retries=max_retries, - stream_reconnection_enabled=stream_reconnection_enabled, - max_stream_reconnection_attempts=max_stream_reconnection_attempts, - logging=logging, - ) - self._async_token = async_token - self.httpx_client = AsyncHttpClient( - httpx_client=httpx_client, - base_headers=self.get_headers, - base_timeout=self.get_timeout, - base_url=self.get_base_url, - base_max_retries=self.get_max_retries(), - async_base_headers=self.async_get_headers, - logging_config=self._logging, - ) + ### `ClientSessionTransferDelegationDeviceBindingEnum` narrowed - async def async_get_headers(self) -> typing.Dict[str, str]: - headers = self.get_headers() - if self._async_token is not None: - token = await self._async_token() - headers["Authorization"] = f"Bearer {token}" - return headers + 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. + user_owned: true + - id: patch-30b1089a + content_hash: sha256:86dbb83b612c614f6ee7ed8e43020b2333433efcd1b2149ba0489e28e78150c5 + original_commit: 30b1089ae90f33c4b431b9d868edd89a6d4697ce + original_message: Updated UPGRADING.md doc + original_author: Sourav Basu + base_generation: 3221a8745834dec2fd523ce9ce6362a96cb42b64 + files: + - UPGRADING.md + patch_content: | + 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. + theirs_snapshot: + UPGRADING.md: | + # 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. user_owned: true 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 1ffc57d9..8df9ea3e 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -1871,6 +1871,8 @@ FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, + FedCmLoginGooglePatch, + FedCmLoginPatch, FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, @@ -3208,6 +3210,8 @@ 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 _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", @@ -3268,6 +3272,8 @@ "AssociateOrganizationClientGrantResponseContent": ".types", "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", + "AsyncManagementClient": ".management_client", + "AsyncTokenProvider": ".token_provider", "AttackProtectionCaptchaArkoseResponseContent": ".types", "AttackProtectionCaptchaAuthChallengeRequest": ".types", "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", @@ -4250,6 +4256,7 @@ "CspReportingEndpoints": ".types", "CspReportingInfrastructure": ".types", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", @@ -5082,6 +5089,8 @@ "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", @@ -5900,6 +5909,7 @@ "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", + "ManagementClient": ".management_client", "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", @@ -6162,6 +6172,7 @@ "ThirdPartyClientAccessConfig": ".types", "TokenExchangeProfileResponseContent": ".types", "TokenExchangeProfileTypeEnum": ".types", + "TokenProvider": ".token_provider", "TokenQuota": ".types", "TokenQuotaClientCredentials": ".types", "TokenQuotaConfiguration": ".types", @@ -6491,6 +6502,8 @@ def __dir__(): "AssociateOrganizationClientGrantResponseContent", "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", + "AsyncManagementClient", + "AsyncTokenProvider", "AttackProtectionCaptchaArkoseResponseContent", "AttackProtectionCaptchaAuthChallengeRequest", "AttackProtectionCaptchaAuthChallengeResponseContent", @@ -7473,6 +7486,7 @@ def __dir__(): "CspReportingEndpoints", "CspReportingInfrastructure", "CustomDomain", + "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainProvisioningTypeEnum", @@ -8305,6 +8319,8 @@ def __dir__(): "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", + "FedCmLoginGooglePatch", + "FedCmLoginPatch", "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts", @@ -9123,6 +9139,7 @@ def __dir__(): "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", + "ManagementClient", "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", @@ -9385,6 +9402,7 @@ def __dir__(): "ThirdPartyClientAccessConfig", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", + "TokenProvider", "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py index f3256902..95ba6185 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 @@ -30,7 +35,14 @@ def __init__( self._logging = logging def get_headers(self) -> typing.Dict[str, str]: - import platform + 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": "auth0-python/6.0.0", From 3cff3377312f267eb4f083b40bd454a7eb52803d Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Tue, 21 Jul 2026 16:59:25 +0530 Subject: [PATCH 3/4] [fern-replay] Resolved conflicts Patches replayed: - patch-4894603d: chore: Restore custom wiring in management/__init__.py - patch-7271f157: Revert wrapper file to preserve Auth0 telemetry customizations - patch-c04f0b4d: Fix for incorrect return type and missing __all__ type - patch-95211006: Restore Auth0 telemetry and custom client wiring after regeneration - patch-f7384913: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries - patch-1e44613d: Added migration guide for v5 to v6 - patch-30b1089a: Updated UPGRADING.md doc --- .fern/replay.lock | 4 ++-- src/auth0/management/__init__.py | 6 ++++++ src/auth0/management/core/client_wrapper.py | 8 ++------ 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.fern/replay.lock b/.fern/replay.lock index 817570b8..1b79014c 100644 --- a/.fern/replay.lock +++ b/.fern/replay.lock @@ -8820,7 +8820,7 @@ patches: "verifiable_credentials", ] user_owned: true - status: unresolved + status: resolving - id: patch-7271f157 content_hash: sha256:cd98dd1948587cf3396a2eacf46626176784bd00996eb660374161bfef686e93 original_commit: 7271f15759cfb545c9ef82b5a4f519ffe0a89db2 @@ -9001,7 +9001,7 @@ patches: token = await self._async_token() headers["Authorization"] = f"Bearer {token}" return headers - status: unresolved + status: resolving - id: patch-c04f0b4d content_hash: sha256:a3f66d48f9f65d4741bddcee2521e8db6171a88fac1ac7169a3955283a687e6d original_commit: c04f0b4dbbe8f2300f4f1bf42f62350888a92da5 diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index 8df9ea3e..b7eb61ed 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -1873,6 +1873,8 @@ FedCmLoginPatch, FedCmLoginGooglePatch, FedCmLoginPatch, + FedCmLoginGooglePatch, + FedCmLoginPatch, FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, @@ -5091,6 +5093,8 @@ "FedCmLoginPatch": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", + "FedCmLoginGooglePatch": ".types", + "FedCmLoginPatch": ".types", "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", @@ -8321,6 +8325,8 @@ def __dir__(): "FedCmLoginPatch", "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 95ba6185..fd991f52 100644 --- a/src/auth0/management/core/client_wrapper.py +++ b/src/auth0/management/core/client_wrapper.py @@ -45,12 +45,8 @@ def get_headers(self) -> typing.Dict[str, str]: }).encode("utf-8") headers: typing.Dict[str, str] = { - "User-Agent": "auth0-python/6.0.0", - "X-Fern-Language": "Python", - "X-Fern-Runtime": f"python/{platform.python_version()}", - "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", - "X-Fern-SDK-Name": "auth0-python", - "X-Fern-SDK-Version": "6.0.0", + "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()}" From d6d69aeb98af7789afffbc697bc8fd50d7d86baa Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Tue, 21 Jul 2026 17:00:16 +0530 Subject: [PATCH 4/4] Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries --- src/auth0/management/__init__.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index b7eb61ed..9c8f94b3 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -1871,10 +1871,6 @@ FedCmLoginGoogle, FedCmLoginGooglePatch, FedCmLoginPatch, - FedCmLoginGooglePatch, - FedCmLoginPatch, - FedCmLoginGooglePatch, - FedCmLoginPatch, FlowAction, FlowActionActivecampaign, FlowActionActivecampaignListContacts, @@ -5091,10 +5087,6 @@ "FedCmLoginGoogle": ".types", "FedCmLoginGooglePatch": ".types", "FedCmLoginPatch": ".types", - "FedCmLoginGooglePatch": ".types", - "FedCmLoginPatch": ".types", - "FedCmLoginGooglePatch": ".types", - "FedCmLoginPatch": ".types", "FlowAction": ".types", "FlowActionActivecampaign": ".types", "FlowActionActivecampaignListContacts": ".types", @@ -8323,10 +8315,6 @@ def __dir__(): "FedCmLoginGoogle", "FedCmLoginGooglePatch", "FedCmLoginPatch", - "FedCmLoginGooglePatch", - "FedCmLoginPatch", - "FedCmLoginGooglePatch", - "FedCmLoginPatch", "FlowAction", "FlowActionActivecampaign", "FlowActionActivecampaignListContacts",