Sha256: 65214e0d47bffb381366322727debfab93b98c45776270d853d5a68e2be297a5
Contents?: true
Size: 1.93 KB
Versions: 2
Compression:
Stored size: 1.93 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceBus::Mgmt::V2017_04_01 module Models # # Represents the filter actions which are allowed for the transformation of # a message that have been matched by a filter expression. # class Action include MsRestAzure # @return [String] SQL expression. e.g. MyProperty='ABC' attr_accessor :sql_expression # @return [Integer] This property is reserved for future use. An integer # value showing the compatibility level, currently hard-coded to 20. attr_accessor :compatibility_level # @return [Boolean] Value that indicates whether the rule action requires # preprocessing. Default value: true . attr_accessor :requires_preprocessing # # Mapper for Action class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'Action', type: { name: 'Composite', class_name: 'Action', model_properties: { sql_expression: { required: false, serialized_name: 'sqlExpression', type: { name: 'String' } }, compatibility_level: { required: false, serialized_name: 'compatibilityLevel', type: { name: 'Number' } }, requires_preprocessing: { required: false, serialized_name: 'requiresPreprocessing', default_value: true, type: { name: 'Boolean' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems