class Azure::Security::Mgmt::V2017_08_01_preview::Models::InformationProtectionKeyword

The information type keyword.

Attributes

can_be_numeric[RW]

@return [Boolean] Indicates whether the keyword can be applied on numeric types or not.

custom[RW]

@return [Boolean] Indicates whether the keyword is custom or not.

excluded[RW]

@return [Boolean] Indicates whether the keyword is excluded or not.

pattern[RW]

@return [String] The keyword pattern.

Private Class Methods

mapper() click to toggle source

Mapper for InformationProtectionKeyword class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2017-08-01-preview/generated/azure_mgmt_security/models/information_protection_keyword.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'InformationProtectionKeyword',
    type: {
      name: 'Composite',
      class_name: 'InformationProtectionKeyword',
      model_properties: {
        pattern: {
          client_side_validation: true,
          required: false,
          serialized_name: 'pattern',
          type: {
            name: 'String'
          }
        },
        custom: {
          client_side_validation: true,
          required: false,
          serialized_name: 'custom',
          type: {
            name: 'Boolean'
          }
        },
        can_be_numeric: {
          client_side_validation: true,
          required: false,
          serialized_name: 'canBeNumeric',
          type: {
            name: 'Boolean'
          }
        },
        excluded: {
          client_side_validation: true,
          required: false,
          serialized_name: 'excluded',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end