Class: OCI::LogAnalytics::Models::LookupField

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/log_analytics/models/lookup_field.rb

Overview

LookupField

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ LookupField

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :common_field_name (String)

    The value to assign to the #common_field_name property

  • :default_match_value (String)

    The value to assign to the #default_match_value property

  • :display_name (String)

    The value to assign to the #display_name property

  • :is_common_field (BOOLEAN)

    The value to assign to the #is_common_field property

  • :match_operator (String)

    The value to assign to the #match_operator property

  • :name (String)

    The value to assign to the #name property

  • :position (Integer)

    The value to assign to the #position property



83
84
85
86
87
88
89
90
91
92
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
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 83

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.common_field_name = attributes[:'commonFieldName'] if attributes[:'commonFieldName']

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

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

  self.default_match_value = attributes[:'defaultMatchValue'] if attributes[:'defaultMatchValue']

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

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

  self.display_name = attributes[:'displayName'] if attributes[:'displayName']

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

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

  self.is_common_field = attributes[:'isCommonField'] unless attributes[:'isCommonField'].nil?

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

  self.is_common_field = attributes[:'is_common_field'] unless attributes[:'is_common_field'].nil?

  self.match_operator = attributes[:'matchOperator'] if attributes[:'matchOperator']

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

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

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

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

Instance Attribute Details

#common_field_nameString

The common field name.

Returns:

  • (String)


13
14
15
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 13

def common_field_name
  @common_field_name
end

#default_match_valueString

The default match value.

Returns:

  • (String)


17
18
19
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 17

def default_match_value
  @default_match_value
end

#display_nameString

The field display name.

Returns:

  • (String)


21
22
23
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 21

def display_name
  @display_name
end

#is_common_fieldBOOLEAN

A flag indicating whether or not the lookup field is a common field.

Returns:

  • (BOOLEAN)


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

def is_common_field
  @is_common_field
end

#match_operatorString

The match operator.

Returns:

  • (String)


30
31
32
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 30

def match_operator
  @match_operator
end

#nameString

The field name.

Returns:

  • (String)


34
35
36
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 34

def name
  @name
end

#positionInteger

THe field position.

Returns:

  • (Integer)


38
39
40
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 38

def position
  @position
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 41

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'common_field_name': :'commonFieldName',
    'default_match_value': :'defaultMatchValue',
    'display_name': :'displayName',
    'is_common_field': :'isCommonField',
    'match_operator': :'matchOperator',
    'name': :'name',
    'position': :'position'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 56

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'common_field_name': :'String',
    'default_match_value': :'String',
    'display_name': :'String',
    'is_common_field': :'BOOLEAN',
    'match_operator': :'String',
    'name': :'String',
    'position': :'Integer'
    # 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



131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 131

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

  self.class == other.class &&
    common_field_name == other.common_field_name &&
    default_match_value == other.default_match_value &&
    display_name == other.display_name &&
    is_common_field == other.is_common_field &&
    match_operator == other.match_operator &&
    name == other.name &&
    position == other.position
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



167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 167

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


147
148
149
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 147

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



156
157
158
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 156

def hash
  [common_field_name, default_match_value, display_name, is_common_field, match_operator, name, position].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



200
201
202
203
204
205
206
207
208
209
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 200

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



194
195
196
# File 'lib/oci/log_analytics/models/lookup_field.rb', line 194

def to_s
  to_hash.to_s
end