Skip to content

Commit

Permalink
Fixing audit log types.
Browse files Browse the repository at this point in the history
  • Loading branch information
chsou committed Feb 8, 2024
1 parent a7f5d5b commit 17520b7
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions c8y_api/model/audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,25 +43,25 @@ class Severity:

class Type:
"""Audit record source types."""
ALARM = "Alarm",
APPLICATION = "Application",
BULKOPERATION = "BulkOperation",
CEPMODULE = "CepModule",
CONNECTOR = "Connector",
EVENT = "Event",
GROUP = "Group",
INVENTORY = "Inventory",
INVENTORYROLE = "InventoryRole",
OPERATION = "Operation",
OPTION = "Option",
REPORT = "Report",
SINGLESIGNON = "SingleSignOn",
SMARTRULE = "SmartRule",
SYSTEM = "SYSTEM",
TENANT = "Tenant",
TENANT_AUTH_CONFIG = "TenantAuthConfig",
TRUSTED_CERTIFICATES = "TrustedCertificates",
USER = "User",
ALARM = "Alarm"
APPLICATION = "Application"
BULKOPERATION = "BulkOperation"
CEPMODULE = "CepModule"
CONNECTOR = "Connector"
EVENT = "Event"
GROUP = "Group"
INVENTORY = "Inventory"
INVENTORYROLE = "InventoryRole"
OPERATION = "Operation"
OPTION = "Option"
REPORT = "Report"
SINGLESIGNON = "SingleSignOn"
SMARTRULE = "SmartRule"
SYSTEM = "SYSTEM"
TENANT = "Tenant"
TENANT_AUTH_CONFIG = "TenantAuthConfig"
TRUSTED_CERTIFICATES = "TrustedCertificates"
USER = "User"
USER_AUTHENTICATION = "UserAuthentication"

_parser = ComplexObjectParser({
Expand Down

0 comments on commit 17520b7

Please sign in to comment.