@@ -377,7 +377,7 @@ def get_entity_group_permissions(self, entity_group_id: EntityGroupId):
377377 def get_group_permission_info_by_id (self , group_permission_id : GroupPermissionId , is_user_group : bool ):
378378 group_permission_id = self .get_id (group_permission_id )
379379 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 )
381381
382382 """ Integration endpoints. """
383383
@@ -766,7 +766,7 @@ def get_tenant_profile_data(self):
766766 return self .subscription_controller .get_tenant_profile_data_using_get ()
767767
768768 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 ()
770770
771771 def get_tenant_profile_data_by_id (self , tenant_profile_id : TenantProfileId ):
772772 tenant_profile_id = self .get_id (tenant_profile_id )
@@ -905,7 +905,11 @@ def __load_controllers(self):
905905 self .alarm_controller = AlarmControllerApi (self .api_client )
906906 self .asset_controller = AssetControllerApi (self .api_client )
907907 self .audit_log_controller = AuditLogControllerApi (self .api_client )
908+ self .blob_entity_controller = BlobEntityControllerApi (self .api_client )
908909 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 )
909913 self .customer_controller = CustomerControllerApi (self .api_client )
910914 self .chirp_stack_integration_controller = ChirpStackIntegrationControllerApi (self .api_client )
911915 self .cloud_endpoint_controller = CloudEndpointControllerApi (self .api_client )
@@ -914,26 +918,43 @@ def __load_controllers(self):
914918 self .device_profile_controller = DeviceProfileControllerApi (self .api_client )
915919 self .edge_controller = EdgeControllerApi (self .api_client )
916920 self .edge_event_controller = EdgeEventControllerApi (self .api_client )
921+ self .entity_group_controller = EntityGroupControllerApi (self .api_client )
917922 self .entity_relation_controller = EntityRelationControllerApi (self .api_client )
918923 self .entity_view_controller = EntityViewControllerApi (self .api_client )
919924 self .entity_query_controller = EntityQueryControllerApi (self .api_client )
920925 self .event_controller = EventControllerApi (self .api_client )
926+ self .group_permission_controller = GroupPermissionControllerApi (self .api_client )
921927 self .queue_controller = QueueControllerApi (self .api_client )
928+ self .integration_controller = IntegrationControllerApi (self .api_client )
929+ self .role_controller = RoleControllerApi (self .api_client )
922930 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 )
923936 self .lwm_2m_controller = Lwm2mControllerApi (self .api_client )
924937 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 )
925942 self .ota_package_controller = OtaPackageControllerApi (self .api_client )
926943 self .tb_resource_controller = TbResourceControllerApi (self .api_client )
927944 self .rule_chain_controller = RuleChainControllerApi (self .api_client )
928945 self .telemetry_controller = TelemetryControllerApi (self .api_client )
929946 self .tenant_controller = TenantControllerApi (self .api_client )
930947 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 )
931951 self .user_controller = UserControllerApi (self .api_client )
932952 self .solution_controller = SolutionControllerApi (self .api_client )
933953 self .subscription_controller = SubscriptionControllerApi (self .api_client )
934954 self .billing_endpoint_controller = BillingEndpointControllerApi (self .api_client )
935955 self .widget_type_controller = WidgetTypeControllerApi (self .api_client )
936956 self .widgets_bundle_controller = WidgetsBundleControllerApi (self .api_client )
957+ self .white_labeling_controller = WhiteLabelingControllerApi (self .api_client )
937958
938959 @staticmethod
939960 def get_type (type ):
0 commit comments