DefaultTenantProfileConfiguration improvements

This commit is contained in:
YevhenBondarenko 2020-11-13 16:21:14 +02:00
parent 2df72b4ec1
commit 4b4e2b702e

View File

@ -26,6 +26,10 @@ export enum TenantProfileType {
export interface DefaultTenantProfileConfiguration {
maxDevices: number;
maxAssets: number;
maxCustomers: number;
maxUsers: number;
maxDashboards: number;
maxRuleChains: number;
transportTenantMsgRateLimit?: string;
transportTenantTelemetryMsgRateLimit?: string;
@ -56,6 +60,10 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan
const defaultConfiguration: DefaultTenantProfileConfiguration = {
maxDevices: 0,
maxAssets: 0,
maxCustomers: 0,
maxUsers: 0,
maxDashboards: 0,
maxRuleChains: 0,
maxTransportMessages: 0,
maxTransportDataPoints: 0,
maxREExecutions: 0,