Class: OCI::LogAnalytics::Models::GenericConditionBlock
- Inherits:
-
Object
- Object
- OCI::LogAnalytics::Models::GenericConditionBlock
- Defined in:
- lib/oci/log_analytics/models/generic_condition_block.rb
Overview
A condition block. This could represent a single condition, or have nested condition blocks under it. To form a single condition, specify the name, operator and value(s). To form nested conditions, specify the conditions in conditionBlocks, and how to join them in conditionBlocksOperator.
Constant Summary collapse
- CONDITION_BLOCKS_OPERATOR_ENUM =
[ CONDITION_BLOCKS_OPERATOR_AND = 'AND'.freeze, CONDITION_BLOCKS_OPERATOR_OR = 'OR'.freeze, CONDITION_BLOCKS_OPERATOR_NOT_AND = 'NOT_AND'.freeze, CONDITION_BLOCKS_OPERATOR_NOT_OR = 'NOT_OR'.freeze, CONDITION_BLOCKS_OPERATOR_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#condition_blocks_operator ⇒ String
Operator using which the conditionBlocks should be joined.
-
#generic_condition_blocks ⇒ Array<OCI::LogAnalytics::Models::GenericConditionBlock>
Condition blocks to evaluate within this condition block.
-
#name ⇒ String
The name of the field the condition is based on.
-
#operator ⇒ String
The condition operator.
-
#value ⇒ String
The condition value.
-
#values ⇒ Array<String>
A list of condition values.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ GenericConditionBlock
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ GenericConditionBlock
Initializes the object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 93 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.condition_blocks_operator = attributes[:'conditionBlocksOperator'] if attributes[:'conditionBlocksOperator'] raise 'You cannot provide both :conditionBlocksOperator and :condition_blocks_operator' if attributes.key?(:'conditionBlocksOperator') && attributes.key?(:'condition_blocks_operator') self.condition_blocks_operator = attributes[:'condition_blocks_operator'] if attributes[:'condition_blocks_operator'] self.name = attributes[:'name'] if attributes[:'name'] self.operator = attributes[:'operator'] if attributes[:'operator'] self.value = attributes[:'value'] if attributes[:'value'] self.values = attributes[:'values'] if attributes[:'values'] self.generic_condition_blocks = attributes[:'genericConditionBlocks'] if attributes[:'genericConditionBlocks'] raise 'You cannot provide both :genericConditionBlocks and :generic_condition_blocks' if attributes.key?(:'genericConditionBlocks') && attributes.key?(:'generic_condition_blocks') self.generic_condition_blocks = attributes[:'generic_condition_blocks'] if attributes[:'generic_condition_blocks'] end |
Instance Attribute Details
#condition_blocks_operator ⇒ String
Operator using which the conditionBlocks should be joined. Specify this for nested conditions.
26 27 28 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 26 def condition_blocks_operator @condition_blocks_operator end |
#generic_condition_blocks ⇒ Array<OCI::LogAnalytics::Models::GenericConditionBlock>
Condition blocks to evaluate within this condition block. Specify this for nested conditions.
51 52 53 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 51 def generic_condition_blocks @generic_condition_blocks end |
#name ⇒ String
The name of the field the condition is based on. Specify this if this condition block represents a single condition.
31 32 33 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 31 def name @name end |
#operator ⇒ String
The condition operator. Specify this if this condition block represents a single condition.
36 37 38 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 36 def operator @operator end |
#value ⇒ String
The condition value. Specify this if this condition block represents a single condition.
41 42 43 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 41 def value @value end |
#values ⇒ Array<String>
A list of condition values. Specify this if this condition block represents a single condition.
46 47 48 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 46 def values @values end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 54 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'condition_blocks_operator': :'conditionBlocksOperator', 'name': :'name', 'operator': :'operator', 'value': :'value', 'values': :'values', 'generic_condition_blocks': :'genericConditionBlocks' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 68 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'condition_blocks_operator': :'String', 'name': :'String', 'operator': :'String', 'value': :'String', 'values': :'Array<String>', 'generic_condition_blocks': :'Array<OCI::LogAnalytics::Models::GenericConditionBlock>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 140 def ==(other) return true if equal?(other) self.class == other.class && condition_blocks_operator == other.condition_blocks_operator && name == other.name && operator == other.operator && value == other.value && values == other.values && generic_condition_blocks == other.generic_condition_blocks end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 175 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
155 156 157 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 155 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
164 165 166 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 164 def hash [condition_blocks_operator, name, operator, value, values, generic_condition_blocks].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
208 209 210 211 212 213 214 215 216 217 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 208 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
202 203 204 |
# File 'lib/oci/log_analytics/models/generic_condition_block.rb', line 202 def to_s to_hash.to_s end |