1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# 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
class InformationProtectionKeyword(Model):
"""The information type keyword.
:param pattern: The keyword pattern.
:type pattern: str
:param custom: Indicates whether the keyword is custom or not.
:type custom: bool
:param can_be_numeric: Indicates whether the keyword can be applied on
numeric types or not.
:type can_be_numeric: bool
:param excluded: Indicates whether the keyword is excluded or not.
:type excluded: bool
"""
_attribute_map = {
'pattern': {'key': 'pattern', 'type': 'str'},
'custom': {'key': 'custom', 'type': 'bool'},
'can_be_numeric': {'key': 'canBeNumeric', 'type': 'bool'},
'excluded': {'key': 'excluded', 'type': 'bool'},
}
def __init__(self, **kwargs):
super(InformationProtectionKeyword, self).__init__(**kwargs)
self.pattern = kwargs.get('pattern', None)
self.custom = kwargs.get('custom', None)
self.can_be_numeric = kwargs.get('can_be_numeric', None)
self.excluded = kwargs.get('excluded', None)
|