class Azure::Security::Mgmt::V2019_08_01::Models::Tags

A list of key value pairs that describe the resource.

Attributes

tags[RW]

@return [Hash{String => String}] A list of key value pairs that describe the resource.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01/generated/azure_mgmt_security/models/tags.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Tags',
    type: {
      name: 'Composite',
      class_name: 'Tags',
      model_properties: {
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end