Class: OCI::LogAnalytics::Models::ConditionBlock

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/log_analytics/models/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 fieldName, labelConditionOperator and labelConditionValue(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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ConditionBlock

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):



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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/oci/log_analytics/models/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.field_name = attributes[:'fieldName'] if attributes[:'fieldName']

  raise 'You cannot provide both :fieldName and :field_name' if attributes.key?(:'fieldName') && attributes.key?(:'field_name')

  self.field_name = attributes[:'field_name'] if attributes[:'field_name']

  self.label_condition_operator = attributes[:'labelConditionOperator'] if attributes[:'labelConditionOperator']

  raise 'You cannot provide both :labelConditionOperator and :label_condition_operator' if attributes.key?(:'labelConditionOperator') && attributes.key?(:'label_condition_operator')

  self.label_condition_operator = attributes[:'label_condition_operator'] if attributes[:'label_condition_operator']

  self.label_condition_value = attributes[:'labelConditionValue'] if attributes[:'labelConditionValue']

  raise 'You cannot provide both :labelConditionValue and :label_condition_value' if attributes.key?(:'labelConditionValue') && attributes.key?(:'label_condition_value')

  self.label_condition_value = attributes[:'label_condition_value'] if attributes[:'label_condition_value']

  self.label_condition_values = attributes[:'labelConditionValues'] if attributes[:'labelConditionValues']

  raise 'You cannot provide both :labelConditionValues and :label_condition_values' if attributes.key?(:'labelConditionValues') && attributes.key?(:'label_condition_values')

  self.label_condition_values = attributes[:'label_condition_values'] if attributes[:'label_condition_values']

  self.condition_blocks = attributes[:'conditionBlocks'] if attributes[:'conditionBlocks']

  raise 'You cannot provide both :conditionBlocks and :condition_blocks' if attributes.key?(:'conditionBlocks') && attributes.key?(:'condition_blocks')

  self.condition_blocks = attributes[:'condition_blocks'] if attributes[:'condition_blocks']
end

Instance Attribute Details

#condition_blocksArray<OCI::LogAnalytics::Models::ConditionBlock>

Condition blocks to evaluate within this condition block. Specify this for nested conditions.



51
52
53
# File 'lib/oci/log_analytics/models/condition_block.rb', line 51

def condition_blocks
  @condition_blocks
end

#condition_blocks_operatorString

Operator using which the conditionBlocks should be joined. Specify this for nested conditions.

Returns:

  • (String)


26
27
28
# File 'lib/oci/log_analytics/models/condition_block.rb', line 26

def condition_blocks_operator
  @condition_blocks_operator
end

#field_nameString

The name of the field the condition is based on. Specify this if this condition block represents a single condition.

Returns:

  • (String)


31
32
33
# File 'lib/oci/log_analytics/models/condition_block.rb', line 31

def field_name
  @field_name
end

#label_condition_operatorString

The condition operator. Specify this if this condition block represents a single condition.

Returns:

  • (String)


36
37
38
# File 'lib/oci/log_analytics/models/condition_block.rb', line 36

def label_condition_operator
  @label_condition_operator
end

#label_condition_valueString

The condition value. Specify this if this condition block represents a single condition.

Returns:

  • (String)


41
42
43
# File 'lib/oci/log_analytics/models/condition_block.rb', line 41

def label_condition_value
  @label_condition_value
end

#label_condition_valuesArray<String>

A list of condition values. Specify this if this condition block represents a single condition.

Returns:

  • (Array<String>)


46
47
48
# File 'lib/oci/log_analytics/models/condition_block.rb', line 46

def label_condition_values
  @label_condition_values
end

Class Method Details

.attribute_mapObject

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/condition_block.rb', line 54

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'condition_blocks_operator': :'conditionBlocksOperator',
    'field_name': :'fieldName',
    'label_condition_operator': :'labelConditionOperator',
    'label_condition_value': :'labelConditionValue',
    'label_condition_values': :'labelConditionValues',
    'condition_blocks': :'conditionBlocks'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/oci/log_analytics/models/condition_block.rb', line 68

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'condition_blocks_operator': :'String',
    'field_name': :'String',
    'label_condition_operator': :'String',
    'label_condition_value': :'String',
    'label_condition_values': :'Array<String>',
    'condition_blocks': :'Array<OCI::LogAnalytics::Models::ConditionBlock>'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



156
157
158
159
160
161
162
163
164
165
166
# File 'lib/oci/log_analytics/models/condition_block.rb', line 156

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    condition_blocks_operator == other.condition_blocks_operator &&
    field_name == other.field_name &&
    label_condition_operator == other.label_condition_operator &&
    label_condition_value == other.label_condition_value &&
    label_condition_values == other.label_condition_values &&
    condition_blocks == other.condition_blocks
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/oci/log_analytics/models/condition_block.rb', line 191

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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


171
172
173
# File 'lib/oci/log_analytics/models/condition_block.rb', line 171

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



180
181
182
# File 'lib/oci/log_analytics/models/condition_block.rb', line 180

def hash
  [condition_blocks_operator, field_name, label_condition_operator, label_condition_value, label_condition_values, condition_blocks].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



224
225
226
227
228
229
230
231
232
233
# File 'lib/oci/log_analytics/models/condition_block.rb', line 224

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



218
219
220
# File 'lib/oci/log_analytics/models/condition_block.rb', line 218

def to_s
  to_hash.to_s
end