@shieldiot/ngx-pulseiot-lib 2.18.1195 → 2.18.1198
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/model/NetworkTopologyRecord.mjs +8 -2
- package/esm2022/lib/model/NetworkTopologyReportParams.mjs +5 -2
- package/esm2022/lib/services/UsrNetworkService.mjs +5 -2
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +15 -3
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/model/NetworkTopologyRecord.d.ts +3 -1
- package/lib/model/NetworkTopologyReportParams.d.ts +2 -1
- package/lib/services/UsrNetworkService.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export declare class NetworkTopologyRecord {
|
|
2
2
|
streamId: string;
|
|
3
|
+
hashValue: number;
|
|
4
|
+
observedAtMicros: number;
|
|
3
5
|
dstIP: string;
|
|
4
6
|
dstDNS: string;
|
|
5
7
|
dstPort: number;
|
|
@@ -14,5 +16,5 @@ export declare class NetworkTopologyRecord {
|
|
|
14
16
|
tags: string[];
|
|
15
17
|
country: string;
|
|
16
18
|
blocked: boolean;
|
|
17
|
-
constructor(streamId?: string, dstIP?: string, dstDNS?: string, dstPort?: number, protocol?: string, appProtocol?: string, appName?: string, devices?: number, geo?: string, name?: string, address?: string, malicious?: boolean, tags?: string[], country?: string, blocked?: boolean);
|
|
19
|
+
constructor(streamId?: string, hashValue?: number, observedAtMicros?: number, dstIP?: string, dstDNS?: string, dstPort?: number, protocol?: string, appProtocol?: string, appName?: string, devices?: number, geo?: string, name?: string, address?: string, malicious?: boolean, tags?: string[], country?: string, blocked?: boolean);
|
|
18
20
|
}
|
|
@@ -8,10 +8,11 @@ export declare class NetworkTopologyReportParams {
|
|
|
8
8
|
appProtocol: string[];
|
|
9
9
|
name: string[];
|
|
10
10
|
country: string[];
|
|
11
|
+
geo: string;
|
|
11
12
|
malicious: BoolTypeCode;
|
|
12
13
|
blocked: BoolTypeCode;
|
|
13
14
|
sort: string;
|
|
14
15
|
page: number;
|
|
15
16
|
size: number;
|
|
16
|
-
constructor(streamId?: string, dstIP?: string[], dstDNS?: string[], dstPort?: number[], protocol?: string[], appProtocol?: string[], name?: string[], country?: string[], malicious?: BoolTypeCode, blocked?: BoolTypeCode, sort?: string, page?: number, size?: number);
|
|
17
|
+
constructor(streamId?: string, dstIP?: string[], dstDNS?: string[], dstPort?: number[], protocol?: string[], appProtocol?: string[], name?: string[], country?: string[], geo?: string, malicious?: BoolTypeCode, blocked?: BoolTypeCode, sort?: string, page?: number, size?: number);
|
|
17
18
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { SessionRecord } from '../model';
|
|
3
4
|
import { Distribution } from '../model';
|
|
4
5
|
import { BoolTypeCode } from '../model';
|
|
6
|
+
import { NetworkTopologyReport } from '../model';
|
|
5
7
|
import { NetworkTopologyRecord } from '../model';
|
|
8
|
+
import { EntitiesResponse } from '../model';
|
|
6
9
|
import { UsageRecord } from '../model';
|
|
7
10
|
import { EntityResponse } from '../model';
|
|
8
11
|
import { FlowRecord } from '../model';
|
|
9
|
-
import { NetworkTopologyReport } from '../model';
|
|
10
|
-
import { EntitiesResponse } from '../model';
|
|
11
|
-
import { SessionRecord } from '../model';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
export declare class UsrNetworkService {
|
|
14
14
|
private config;
|
|
@@ -39,7 +39,7 @@ export declare class UsrNetworkService {
|
|
|
39
39
|
* Get network topology report with KPIs and distributions for stream (without endpoint records)
|
|
40
40
|
* Use /topology-records endpoint for paginated endpoint records
|
|
41
41
|
*/
|
|
42
|
-
getTopologyReport(streamId?: string, dstIp?: string[], dstDns?: string[], dstPort?: number[], protocol?: string[], appProtocol?: string[], name?: string[], country?: string[], malicious?: BoolTypeCode, blocked?: BoolTypeCode): import("rxjs").Observable<EntityResponse<NetworkTopologyReport>>;
|
|
42
|
+
getTopologyReport(streamId?: string, dstIp?: string[], dstDns?: string[], dstPort?: number[], protocol?: string[], appProtocol?: string[], name?: string[], country?: string[], geo?: string, malicious?: BoolTypeCode, blocked?: BoolTypeCode): import("rxjs").Observable<EntityResponse<NetworkTopologyReport>>;
|
|
43
43
|
/**
|
|
44
44
|
* Get network topology records for stream
|
|
45
45
|
*/
|