Class: OCI::CloudMigrations::Models::CompatibilityMessage
- Inherits:
-
Object
- Object
- OCI::CloudMigrations::Models::CompatibilityMessage
- Defined in:
- lib/oci/cloud_migrations/models/compatibility_message.rb
Overview
Information about shape compatibility with the client's current resource configuration.
Constant Summary collapse
- SEVERITY_ENUM =
[ SEVERITY_ERROR = 'ERROR'.freeze, SEVERITY_WARNING = 'WARNING'.freeze, SEVERITY_INFO = 'INFO'.freeze, SEVERITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- NAME_ENUM =
[ NAME_NOT_ENOUGH_DATA = 'NOT_ENOUGH_DATA'.freeze, NAME_INVALID_DATA = 'INVALID_DATA'.freeze, NAME_CPU_COMPATIBILITY_WARNING = 'CPU_COMPATIBILITY_WARNING'.freeze, NAME_CPU_METRIC_INFO = 'CPU_METRIC_INFO'.freeze, NAME_MEMORY_COMPATIBILITY_WARNING = 'MEMORY_COMPATIBILITY_WARNING'.freeze, NAME_MEMORY_METRIC_INFO = 'MEMORY_METRIC_INFO'.freeze, NAME_VNICS_COMPATIBILITY_WARNING = 'VNICS_COMPATIBILITY_WARNING'.freeze, NAME_BANDWIDTH_COMPATIBILITY_WARNING = 'BANDWIDTH_COMPATIBILITY_WARNING'.freeze, NAME_GPU_COMPATIBILITY_WARNING = 'GPU_COMPATIBILITY_WARNING'.freeze, NAME_OS_WARNING = 'OS_WARNING'.freeze, NAME_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#message ⇒ String
Detailed description of the compatibility issue.
-
#name ⇒ String
Name of the compatibility issue.
-
#severity ⇒ String
Severity level of the compatibility issue.
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 = {}) ⇒ CompatibilityMessage
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 = {}) ⇒ CompatibilityMessage
Initializes the object
76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 76 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.severity = attributes[:'severity'] if attributes[:'severity'] self.name = attributes[:'name'] if attributes[:'name'] self. = attributes[:'message'] if attributes[:'message'] end |
Instance Attribute Details
#message ⇒ String
Detailed description of the compatibility issue.
43 44 45 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 43 def @message end |
#name ⇒ String
Name of the compatibility issue.
39 40 41 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 39 def name @name end |
#severity ⇒ String
Severity level of the compatibility issue.
35 36 37 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 35 def severity @severity end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
46 47 48 49 50 51 52 53 54 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 46 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'severity': :'severity', 'name': :'name', 'message': :'message' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
57 58 59 60 61 62 63 64 65 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 57 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'severity': :'String', 'name': :'String', 'message': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
122 123 124 125 126 127 128 129 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 122 def ==(other) return true if equal?(other) self.class == other.class && severity == other.severity && name == other.name && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 154 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
134 135 136 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 134 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
143 144 145 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 143 def hash [severity, name, ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
187 188 189 190 191 192 193 194 195 196 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 187 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
181 182 183 |
# File 'lib/oci/cloud_migrations/models/compatibility_message.rb', line 181 def to_s to_hash.to_s end |