Class: OCI::LogAnalytics::Models::LogAnalyticsLookupFields
- Inherits:
-
Object
- Object
- OCI::LogAnalytics::Models::LogAnalyticsLookupFields
- Defined in:
- lib/oci/log_analytics/models/log_analytics_lookup_fields.rb
Overview
LogAnalyticsLookupFields
Instance Attribute Summary collapse
-
#common_field_name ⇒ String
The common field name.
-
#default_match_value ⇒ String
The default match value.
-
#display_name ⇒ String
The display name.
-
#is_common_field ⇒ BOOLEAN
A flag indicating whether or not the field is a common field.
-
#match_operator ⇒ String
The match operator.
-
#name ⇒ String
The field name.
-
#position ⇒ Integer
The position.
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 = {}) ⇒ LogAnalyticsLookupFields
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 = {}) ⇒ LogAnalyticsLookupFields
Initializes the object
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/log_analytics_lookup_fields.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_name ⇒ String
The common field name.
13 14 15 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 13 def common_field_name @common_field_name end |
#default_match_value ⇒ String
The default match value.
17 18 19 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 17 def default_match_value @default_match_value end |
#display_name ⇒ String
The display name.
21 22 23 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 21 def display_name @display_name end |
#is_common_field ⇒ BOOLEAN
A flag indicating whether or not the field is a common field.
26 27 28 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 26 def is_common_field @is_common_field end |
#match_operator ⇒ String
The match operator.
30 31 32 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 30 def match_operator @match_operator end |
#name ⇒ String
The field name.
34 35 36 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 34 def name @name end |
#position ⇒ Integer
The position.
38 39 40 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 38 def position @position end |
Class Method Details
.attribute_map ⇒ Object
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/log_analytics_lookup_fields.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_types ⇒ Object
Attribute type mapping.
56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.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.
131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.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
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/log_analytics_lookup_fields.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
147 148 149 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 147 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
156 157 158 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 156 def hash [common_field_name, default_match_value, display_name, is_common_field, match_operator, name, position].hash end |
#to_hash ⇒ 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/log_analytics_lookup_fields.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_s ⇒ String
Returns the string representation of the object
194 195 196 |
# File 'lib/oci/log_analytics/models/log_analytics_lookup_fields.rb', line 194 def to_s to_hash.to_s end |