Skip to content

Commit 15ebe4f

Browse files
committed
add patchTenantManagerIdentityProviderTypeConfiguration client method. fix missing operations check
ENG-3779
1 parent 5e108a9 commit 15ebe4f

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

src/main/python/fusionauth/fusionauth_client.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2422,6 +2422,20 @@ def patch_tenant(self, tenant_id, request):
24222422
.patch() \
24232423
.go()
24242424

2425+
def patch_tenant_manager_identity_provider_type_configuration(self, _type, request):
2426+
"""
2427+
Patches the tenant manager identity provider type configuration for the given identity provider type.
2428+
2429+
Attributes:
2430+
_type: The type of the identity provider.
2431+
request: The request object that contains the new tenant manager identity provider type configuration information.
2432+
"""
2433+
return self.start().uri('/api/tenant-manager/identity-provider') \
2434+
.url_segment(_type) \
2435+
.body_handler(JSONBodyHandler(request)) \
2436+
.patch() \
2437+
.go()
2438+
24252439
def patch_theme(self, theme_id, request):
24262440
"""
24272441
Updates, via PATCH, the theme with the given Id.

0 commit comments

Comments
 (0)