@@ -377,7 +377,7 @@ def get_entity_group_permissions(self, entity_group_id: EntityGroupId):
377
377
def get_group_permission_info_by_id (self , group_permission_id : GroupPermissionId , is_user_group : bool ):
378
378
group_permission_id = self .get_id (group_permission_id )
379
379
return self .group_permission_controller .get_group_permission_info_by_id_using_get (
380
- group_permission_id = group_permission_id , is_user_group = str ( is_user_group ). lower () )
380
+ group_permission_id = group_permission_id , is_user_group = is_user_group )
381
381
382
382
""" Integration endpoints. """
383
383
@@ -766,7 +766,7 @@ def get_tenant_profile_data(self):
766
766
return self .subscription_controller .get_tenant_profile_data_using_get ()
767
767
768
768
def get_tenant_subscription_usage (self ):
769
- return self .solution_controller .get_tenant_subscription_usage_using_get ()
769
+ return self .subscription_controller .get_tenant_subscription_usage_using_get ()
770
770
771
771
def get_tenant_profile_data_by_id (self , tenant_profile_id : TenantProfileId ):
772
772
tenant_profile_id = self .get_id (tenant_profile_id )
@@ -905,7 +905,11 @@ def __load_controllers(self):
905
905
self .alarm_controller = AlarmControllerApi (self .api_client )
906
906
self .asset_controller = AssetControllerApi (self .api_client )
907
907
self .audit_log_controller = AuditLogControllerApi (self .api_client )
908
+ self .blob_entity_controller = BlobEntityControllerApi (self .api_client )
908
909
self .component_descriptor_controller = ComponentDescriptorControllerApi (self .api_client )
910
+ self .converter_controller = ConverterControllerApi (self .api_client )
911
+ self .custom_menu_controller = CustomMenuControllerApi (self .api_client )
912
+ self .custom_translation_controller = CustomTranslationControllerApi (self .api_client )
909
913
self .customer_controller = CustomerControllerApi (self .api_client )
910
914
self .chirp_stack_integration_controller = ChirpStackIntegrationControllerApi (self .api_client )
911
915
self .cloud_endpoint_controller = CloudEndpointControllerApi (self .api_client )
@@ -914,26 +918,43 @@ def __load_controllers(self):
914
918
self .device_profile_controller = DeviceProfileControllerApi (self .api_client )
915
919
self .edge_controller = EdgeControllerApi (self .api_client )
916
920
self .edge_event_controller = EdgeEventControllerApi (self .api_client )
921
+ self .entity_group_controller = EntityGroupControllerApi (self .api_client )
917
922
self .entity_relation_controller = EntityRelationControllerApi (self .api_client )
918
923
self .entity_view_controller = EntityViewControllerApi (self .api_client )
919
924
self .entity_query_controller = EntityQueryControllerApi (self .api_client )
920
925
self .event_controller = EventControllerApi (self .api_client )
926
+ self .group_permission_controller = GroupPermissionControllerApi (self .api_client )
921
927
self .queue_controller = QueueControllerApi (self .api_client )
928
+ self .integration_controller = IntegrationControllerApi (self .api_client )
929
+ self .role_controller = RoleControllerApi (self .api_client )
922
930
self .rpc_controller = RpcControllerApi (self .api_client )
931
+ self .scheduler_event_controller = SchedulerEventControllerApi (self .api_client )
932
+ self .self_registration_controller = SelfRegistrationControllerApi (self .api_client )
933
+ self .sigfox_integration_controller = SigFoxIntegrationControllerApi (self .api_client )
934
+ self .sign_up_controller = SignUpControllerApi (self .api_client )
935
+ self .http_integration_controller = HttpIntegrationControllerApi (self .api_client )
923
936
self .lwm_2m_controller = Lwm2mControllerApi (self .api_client )
924
937
self .loriot_integration_controller = LoriotIntegrationControllerApi (self .api_client )
938
+ self .owner_controller = OwnerControllerApi (self .api_client )
939
+ self .ocean_connect_integration_controller = OceanConnectIntegrationControllerApi (self .api_client )
940
+ self .report_controller = ReportControllerApi (self .api_client )
941
+ self .rule_engine_controller = RuleEngineControllerApi (self .api_client )
925
942
self .ota_package_controller = OtaPackageControllerApi (self .api_client )
926
943
self .tb_resource_controller = TbResourceControllerApi (self .api_client )
927
944
self .rule_chain_controller = RuleChainControllerApi (self .api_client )
928
945
self .telemetry_controller = TelemetryControllerApi (self .api_client )
929
946
self .tenant_controller = TenantControllerApi (self .api_client )
930
947
self .tenant_profile_controller = TenantProfileControllerApi (self .api_client )
948
+ self .tmobile_iot_cdp_integration_controller = TMobileIotCdpIntegrationControllerApi (self .api_client )
949
+ self .thingpark_integration_controller = ThingParkIntegrationControllerApi (self .api_client )
950
+ self .user_permissions_controller = UserPermissionsControllerApi (self .api_client )
931
951
self .user_controller = UserControllerApi (self .api_client )
932
952
self .solution_controller = SolutionControllerApi (self .api_client )
933
953
self .subscription_controller = SubscriptionControllerApi (self .api_client )
934
954
self .billing_endpoint_controller = BillingEndpointControllerApi (self .api_client )
935
955
self .widget_type_controller = WidgetTypeControllerApi (self .api_client )
936
956
self .widgets_bundle_controller = WidgetsBundleControllerApi (self .api_client )
957
+ self .white_labeling_controller = WhiteLabelingControllerApi (self .api_client )
937
958
938
959
@staticmethod
939
960
def get_type (type ):
0 commit comments