class Azure::Storage::Mgmt::V2019_06_01::Models::TagFilter

Blob index tag based filtering for blob objects

Attributes

name[RW]

@return [String] This is the filter tag name, it can have 1 - 128 characters

op[RW]

@return [String] This is the comparison operator which is used for object comparison and filtering. Only == (equality operator) is currently supported

value[RW]

@return [String] This is the filter tag value field used for tag based filtering, it can have 0 - 256 characters

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01/generated/azure_mgmt_storage/models/tag_filter.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'TagFilter',
    type: {
      name: 'Composite',
      class_name: 'TagFilter',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          constraints: {
            MaxLength: 128,
            MinLength: 1
          },
          type: {
            name: 'String'
          }
        },
        op: {
          client_side_validation: true,
          required: true,
          serialized_name: 'op',
          type: {
            name: 'String'
          }
        },
        value: {
          client_side_validation: true,
          required: true,
          serialized_name: 'value',
          constraints: {
            MaxLength: 256,
            MinLength: 0
          },
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end