Class: OCI::Opsi::Models::BasicConfigurationItemMetadata
- Inherits:
-
ConfigurationItemMetadata
- Object
- ConfigurationItemMetadata
- OCI::Opsi::Models::BasicConfigurationItemMetadata
- Defined in:
- lib/oci/opsi/models/basic_configuration_item_metadata.rb
Overview
Basic configuration item metadata.
Constant Summary
Constants inherited from ConfigurationItemMetadata
ConfigurationItemMetadata::CONFIG_ITEM_TYPE_ENUM
Instance Attribute Summary collapse
-
#data_type ⇒ String
Data type of configuration item.
-
#description ⇒ String
Description of configuration item .
-
#display_name ⇒ String
User-friendly display name for the configuration item.
- #unit_details ⇒ OCI::Opsi::Models::ConfigurationItemUnitDetails
- #value_input_details ⇒ OCI::Opsi::Models::ConfigurationItemAllowedValueDetails
Attributes inherited from ConfigurationItemMetadata
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 = {}) ⇒ BasicConfigurationItemMetadata
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.
Methods inherited from ConfigurationItemMetadata
Constructor Details
#initialize(attributes = {}) ⇒ BasicConfigurationItemMetadata
Initializes the object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 71 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['configItemType'] = 'BASIC' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } 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.description = attributes[:'description'] if attributes[:'description'] self.data_type = attributes[:'dataType'] if attributes[:'dataType'] raise 'You cannot provide both :dataType and :data_type' if attributes.key?(:'dataType') && attributes.key?(:'data_type') self.data_type = attributes[:'data_type'] if attributes[:'data_type'] self.unit_details = attributes[:'unitDetails'] if attributes[:'unitDetails'] raise 'You cannot provide both :unitDetails and :unit_details' if attributes.key?(:'unitDetails') && attributes.key?(:'unit_details') self.unit_details = attributes[:'unit_details'] if attributes[:'unit_details'] self.value_input_details = attributes[:'valueInputDetails'] if attributes[:'valueInputDetails'] raise 'You cannot provide both :valueInputDetails and :value_input_details' if attributes.key?(:'valueInputDetails') && attributes.key?(:'value_input_details') self.value_input_details = attributes[:'value_input_details'] if attributes[:'value_input_details'] end |
Instance Attribute Details
#data_type ⇒ String
Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER
24 25 26 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 24 def data_type @data_type end |
#description ⇒ String
Description of configuration item .
18 19 20 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 18 def description @description end |
#display_name ⇒ String
User-friendly display name for the configuration item.
14 15 16 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 14 def display_name @display_name end |
#unit_details ⇒ OCI::Opsi::Models::ConfigurationItemUnitDetails
27 28 29 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 27 def unit_details @unit_details end |
#value_input_details ⇒ OCI::Opsi::Models::ConfigurationItemAllowedValueDetails
30 31 32 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 30 def value_input_details @value_input_details end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 33 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'config_item_type': :'configItemType', 'display_name': :'displayName', 'description': :'description', 'data_type': :'dataType', 'unit_details': :'unitDetails', 'value_input_details': :'valueInputDetails' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 47 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'config_item_type': :'String', 'display_name': :'String', 'description': :'String', 'data_type': :'String', 'unit_details': :'OCI::Opsi::Models::ConfigurationItemUnitDetails', 'value_input_details': :'OCI::Opsi::Models::ConfigurationItemAllowedValueDetails' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 115 def ==(other) return true if equal?(other) self.class == other.class && config_item_type == other.config_item_type && display_name == other.display_name && description == other.description && data_type == other.data_type && unit_details == other.unit_details && value_input_details == other.value_input_details end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 150 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
130 131 132 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 130 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
139 140 141 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 139 def hash [config_item_type, display_name, description, data_type, unit_details, value_input_details].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
183 184 185 186 187 188 189 190 191 192 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 183 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
177 178 179 |
# File 'lib/oci/opsi/models/basic_configuration_item_metadata.rb', line 177 def to_s to_hash.to_s end |