Method: OCI::LogAnalytics::Models::LogAnalyticsSourcePattern#==

Defined in:
lib/oci/log_analytics/models/log_analytics_source_pattern.rb

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# File 'lib/oci/log_analytics/models/log_analytics_source_pattern.rb', line 291

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

  self.class == other.class &&
    converted_text == other.converted_text &&
    db_parser_id == other.db_parser_id &&
    db_pattern_date_time_columns == other.db_pattern_date_time_columns &&
    db_pattern_date_time_field == other.db_pattern_date_time_field &&
    db_pattern_sequence_column == other.db_pattern_sequence_column &&
    fields == other.fields &&
    is_include == other.is_include &&
    is_default == other.is_default &&
    pattern_filter == other.pattern_filter &&
    _alias == other._alias &&
    description == other.description &&
    is_enabled == other.is_enabled &&
    pattern_id == other.pattern_id &&
    is_system == other.is_system &&
    source_id == other.source_id &&
    is_agent_warning_suppressed == other.is_agent_warning_suppressed &&
    pattern_text == other.pattern_text &&
    pattern_type == other.pattern_type &&
    entity_type == other.entity_type
end