Sha256: 7f920421b7c126c5b6ed0096b8ca76e3e056b2ef1222db426d901a4f2218f49a
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::MobileEngagement module Models # # Target devices based on a string tag value. # class StringTagCriterion < Criterion include MsRestAzure def initialize @type = "string-tag" end attr_accessor :type # @return [String] The name of the custom tag. attr_accessor :name # @return [String] A custom string to match for tag value (? and * # characters can be used to perform wildcard matching). attr_accessor :value # # Mapper for StringTagCriterion class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'string-tag', type: { name: 'Composite', class_name: 'StringTagCriterion', model_properties: { type: { required: true, serialized_name: 'type', type: { name: 'String' } }, name: { required: false, serialized_name: 'name', type: { name: 'String' } }, value: { required: false, serialized_name: 'value', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_mobile_engagement-0.10.0 | lib/generated/azure_mgmt_mobile_engagement/models/string_tag_criterion.rb |