@shieldiot/ngx-pulseiot-lib 2.18.1123 → 2.18.1124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/services/SupportStreamAnalyticsConfigService.mjs +77 -0
- package/esm2022/lib/services/index.mjs +22 -21
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +2353 -2281
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/services/SupportStreamAnalyticsConfigService.d.ts +39 -0
- package/lib/services/index.d.ts +21 -20
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { RestUtils } from '../../rest-utils';
|
|
2
|
+
import { AppConfig } from '../../config';
|
|
3
|
+
import { StreamAnalyticsConfig } from '../model';
|
|
4
|
+
import { EntityResponse } from '../model';
|
|
5
|
+
import { ActionResponse } from '../model';
|
|
6
|
+
import { EntitiesResponse } from '../model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SupportStreamAnalyticsConfigService {
|
|
9
|
+
private config;
|
|
10
|
+
private rest;
|
|
11
|
+
private baseUrl;
|
|
12
|
+
constructor(config: AppConfig, rest: RestUtils);
|
|
13
|
+
/**
|
|
14
|
+
* Create new stream analytics configuration
|
|
15
|
+
*/
|
|
16
|
+
create(body?: StreamAnalyticsConfig): import("rxjs").Observable<EntityResponse<StreamAnalyticsConfig>>;
|
|
17
|
+
/**
|
|
18
|
+
* Update existing stream analytics configuration
|
|
19
|
+
*/
|
|
20
|
+
update(body?: StreamAnalyticsConfig): import("rxjs").Observable<EntityResponse<StreamAnalyticsConfig>>;
|
|
21
|
+
/**
|
|
22
|
+
* Delete stream analytics configuration
|
|
23
|
+
*/
|
|
24
|
+
delete(id?: string): import("rxjs").Observable<ActionResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Get a single stream analytics configuration
|
|
27
|
+
*/
|
|
28
|
+
get(id?: string): import("rxjs").Observable<EntityResponse<StreamAnalyticsConfig>>;
|
|
29
|
+
/**
|
|
30
|
+
* Get an Optimized stream analytics configuration
|
|
31
|
+
*/
|
|
32
|
+
getOptimizedStreamAnalytics(id?: string): import("rxjs").Observable<EntityResponse<StreamAnalyticsConfig>>;
|
|
33
|
+
/**
|
|
34
|
+
* Find stream analytics configurations by query
|
|
35
|
+
*/
|
|
36
|
+
find(search?: string, sort?: string, page?: number, size?: number): import("rxjs").Observable<EntitiesResponse<StreamAnalyticsConfig>>;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupportStreamAnalyticsConfigService, never>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SupportStreamAnalyticsConfigService>;
|
|
39
|
+
}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './SupportStreamAnalyticsConfigService';
|
|
2
|
+
export * from './SysInsightsService';
|
|
3
|
+
export * from './SysRulesService';
|
|
4
|
+
export * from './SysCheckpointsService';
|
|
5
|
+
export * from './SysIdsRulesService';
|
|
6
|
+
export * from './SysKeysService';
|
|
7
|
+
export * from './UsrInsightsService';
|
|
8
|
+
export * from './UsrNotificationMessagesService';
|
|
2
9
|
export * from './UsrRulesService';
|
|
3
|
-
export * from './UsrUserService';
|
|
4
10
|
export * from './SysConfigService';
|
|
5
|
-
export * from './SysFeaturesService';
|
|
6
|
-
export * from './SysIdsRulesService';
|
|
7
|
-
export * from './SysStatisticsService';
|
|
8
|
-
export * from './SysUsersService';
|
|
9
|
-
export * from './UsrDevicesService';
|
|
10
11
|
export * from './UsrIntegrationsService';
|
|
11
|
-
export * from './UsrReportsService';
|
|
12
12
|
export * from './SysAccountsService';
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './SysGroupsService';
|
|
15
|
-
export * from './SysInsightsService';
|
|
13
|
+
export * from './SysFeaturesService';
|
|
16
14
|
export * from './SysRuleTemplatesService';
|
|
17
|
-
export * from './
|
|
15
|
+
export * from './UsrAlertsService';
|
|
18
16
|
export * from './UsrEventsService';
|
|
19
|
-
export * from './
|
|
17
|
+
export * from './SysGroupsService';
|
|
18
|
+
export * from './UsrNetworkService';
|
|
19
|
+
export * from './UsrReportsService';
|
|
20
|
+
export * from './SysStreamsService';
|
|
21
|
+
export * from './SysUsersService';
|
|
22
|
+
export * from './UsrDevicesService';
|
|
23
|
+
export * from './UsrMembersService';
|
|
20
24
|
export * from './McpToolsService';
|
|
25
|
+
export * from './UsrReportsInstanceService';
|
|
26
|
+
export * from './UsrUserService';
|
|
27
|
+
export * from './SysAuditLogService';
|
|
21
28
|
export * from './SysMembersService';
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './UsrAlertsService';
|
|
24
|
-
export * from './UsrNetworkService';
|
|
25
|
-
export * from './UsrNotificationMessagesService';
|
|
26
|
-
export * from './SysCheckpointsService';
|
|
27
|
-
export * from './SysKeysService';
|
|
28
|
-
export * from './UsrInsightsService';
|
|
29
|
+
export * from './SysStatisticsService';
|