DefaultTenantProfileConfiguration improvements
This commit is contained in:
parent
2df72b4ec1
commit
4b4e2b702e
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user