Source code for models.cluster_audit_log_configuration

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.


[docs]class ClusterAuditLogConfiguration(object): """Implementation of the 'ClusterAuditLogConfiguration' model. Specifies the settings of the Cluster audit log configuration. Attributes: enabled (bool): Specifies if the Cluster audit logging is enabled on the Cohesity Cluster. If 'true', Cluster audit logging is enabled. Otherwise, it is disabled. retention_period_days (int): Specifies the number of days to keep (retain) the Cluster audit logs. Audit logs generated before the period of time specified by retentionPeriodDays are removed from the Cohesity Cluster. verbose_audit (bool): Specifies if the Cluster audit logging includes prev value and new value. """ # Create a mapping from Model property names to API property names _names = { "enabled":'enabled', "retention_period_days":'retentionPeriodDays', "verbose_audit":'verboseAudit' } def __init__(self, enabled=None, retention_period_days=None, verbose_audit=None): """Constructor for the ClusterAuditLogConfiguration class""" # Initialize members of the class self.enabled = enabled self.retention_period_days = retention_period_days self.verbose_audit = verbose_audit
[docs] @classmethod def from_dictionary(cls, dictionary): """Creates an instance of this model from a dictionary Args: dictionary (dictionary): A dictionary representation of the object as obtained from the deserialization of the server's response. The keys MUST match property names in the API description. Returns: object: An instance of this structure class. """ if dictionary is None: return None # Extract variables from the dictionary enabled = dictionary.get('enabled') retention_period_days = dictionary.get('retentionPeriodDays') verbose_audit = dictionary.get('verboseAudit') # Return an object of this model return cls(enabled, retention_period_days, verbose_audit)