Commit 4b4e2b702e7edd93b7d7bf3fba1dec47dc5f53a8
1 parent
2df72b4e
DefaultTenantProfileConfiguration improvements
Showing
1 changed file
with
8 additions
and
0 deletions
@@ -26,6 +26,10 @@ export enum TenantProfileType { | @@ -26,6 +26,10 @@ export enum TenantProfileType { | ||
26 | export interface DefaultTenantProfileConfiguration { | 26 | export interface DefaultTenantProfileConfiguration { |
27 | maxDevices: number; | 27 | maxDevices: number; |
28 | maxAssets: number; | 28 | maxAssets: number; |
29 | + maxCustomers: number; | ||
30 | + maxUsers: number; | ||
31 | + maxDashboards: number; | ||
32 | + maxRuleChains: number; | ||
29 | 33 | ||
30 | transportTenantMsgRateLimit?: string; | 34 | transportTenantMsgRateLimit?: string; |
31 | transportTenantTelemetryMsgRateLimit?: string; | 35 | transportTenantTelemetryMsgRateLimit?: string; |
@@ -56,6 +60,10 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan | @@ -56,6 +60,10 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan | ||
56 | const defaultConfiguration: DefaultTenantProfileConfiguration = { | 60 | const defaultConfiguration: DefaultTenantProfileConfiguration = { |
57 | maxDevices: 0, | 61 | maxDevices: 0, |
58 | maxAssets: 0, | 62 | maxAssets: 0, |
63 | + maxCustomers: 0, | ||
64 | + maxUsers: 0, | ||
65 | + maxDashboards: 0, | ||
66 | + maxRuleChains: 0, | ||
59 | maxTransportMessages: 0, | 67 | maxTransportMessages: 0, |
60 | maxTransportDataPoints: 0, | 68 | maxTransportDataPoints: 0, |
61 | maxREExecutions: 0, | 69 | maxREExecutions: 0, |