class Azure::ServiceBus::FalseFilter

Public Class Methods

new(hash=nil) click to toggle source

Public: Initialize the SQL false Filter.

Attributes

  • hash - The resource options Hash

Options

Accepted key/value pairs in options parameter are:

  • :sql_expression - The SQL expression.

Calls superclass method
# File lib/azure/service_bus/false_filter.rb, line 31
def initialize(hash=nil)
  hash = {} unless hash
  hash[:sql_expression] = "1 = 0" unless hash[:sql_expression]
  super(hash)
end