ITenantsProviderUpdateSpecialGroupIds Method |
Sets the IDs of the special groups associated with the tenant.
Namespace:
Dundas.BI.AccountServices.Extensibility
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax void UpdateSpecialGroupIds(
Guid tenantId,
Guid adminsGroupId,
Guid membersGroupId
)
Sub UpdateSpecialGroupIds (
tenantId As Guid,
adminsGroupId As Guid,
membersGroupId As Guid
)
void UpdateSpecialGroupIds(
Guid tenantId,
Guid adminsGroupId,
Guid membersGroupId
)
abstract UpdateSpecialGroupIds :
tenantId : Guid *
adminsGroupId : Guid *
membersGroupId : Guid -> unit
Parameters
- tenantId
- Type: SystemGuid
The ID of the tenant. - adminsGroupId
- Type: SystemGuid
The ID of the "Tenant Administrators" group. - membersGroupId
- Type: SystemGuid
The ID of the "Tenant Members" group.
Remarks Notes to Implementers |
---|
If the provider did not populate AdministratorsGroupId and MembersGroupId
when a new tenant was created using the DBI API, this method will be called notifying the provider of the IDs of those two groups
which were created. The provider should save this information and use it to populate the corresponding properties the next time the
tenant is requested. If this information is not saved, the provider may continue to leave those properties with empty
GUIDs, but this option will incur a small performance penalty whenever a tenant is retrieved.
|
See Also