Source code for azure.mgmt.loganalytics.models.workspace_purge_body_filters_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class WorkspacePurgeBodyFilters(Model): """User-defined filters to return data which will be purged from the table. :param column: The column of the table over which the given query should run :type column: str :param operator: A query operator to evaluate over the provided column and value(s). :type operator: str :param value: the value for the operator to function over. This can be a number (e.g., > 100), a string (timestamp >= '2017-09-01') or array of values. :type value: object """ _attribute_map = { 'column': {'key': 'column', 'type': 'str'}, 'operator': {'key': 'operator', 'type': 'str'}, 'value': {'key': 'value', 'type': 'object'}, } def __init__(self, *, column: str=None, operator: str=None, value=None, **kwargs) -> None: super(WorkspacePurgeBodyFilters, self).__init__(**kwargs) self.column = column self.operator = operator self.value = value