class PulpRpmClient::RpmModulemdObsolete
ModulemdObsolete serializer.
Attributes
End of Life date.
Obsolete description.
Obsolete modified time.
Modulemd's context.
Modulemd name.
Modulemd's stream.
Obsolete by module name.
Obsolete by module stream.
Reset previous obsoletes.
Module Obsolete snippet.
Public Class Methods
Attribute mapping from ruby-style variable name to JSON key.
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 49 def self.attribute_map { :'modified' => :'modified', :'module_name' => :'module_name', :'module_stream' => :'module_stream', :'message' => :'message', :'override_previous' => :'override_previous', :'module_context' => :'module_context', :'eol_date' => :'eol_date', :'obsoleted_by_module_name' => :'obsoleted_by_module_name', :'obsoleted_by_module_stream' => :'obsoleted_by_module_stream', :'snippet' => :'snippet' } end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 353 def self.build_from_hash(attributes) new.build_from_hash(attributes) end
Initializes the object @param [Hash] attributes Model attributes in the form of hash
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 93 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `PulpRpmClient::RpmModulemdObsolete` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `PulpRpmClient::RpmModulemdObsolete`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'modified') self.modified = attributes[:'modified'] end if attributes.key?(:'module_name') self.module_name = attributes[:'module_name'] end if attributes.key?(:'module_stream') self.module_stream = attributes[:'module_stream'] end if attributes.key?(:'message') self.message = attributes[:'message'] end if attributes.key?(:'override_previous') self.override_previous = attributes[:'override_previous'] end if attributes.key?(:'module_context') self.module_context = attributes[:'module_context'] end if attributes.key?(:'eol_date') self.eol_date = attributes[:'eol_date'] end if attributes.key?(:'obsoleted_by_module_name') self.obsoleted_by_module_name = attributes[:'obsoleted_by_module_name'] end if attributes.key?(:'obsoleted_by_module_stream') self.obsoleted_by_module_stream = attributes[:'obsoleted_by_module_stream'] end if attributes.key?(:'snippet') self.snippet = attributes[:'snippet'] end end
List of attributes with nullable: true
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 81 def self.openapi_nullable Set.new([ :'override_previous', :'module_context', :'eol_date', :'obsoleted_by_module_name', :'obsoleted_by_module_stream', ]) end
Attribute type mapping.
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 65 def self.openapi_types { :'modified' => :'DateTime', :'module_name' => :'String', :'module_stream' => :'String', :'message' => :'String', :'override_previous' => :'String', :'module_context' => :'String', :'eol_date' => :'DateTime', :'obsoleted_by_module_name' => :'String', :'obsoleted_by_module_stream' => :'String', :'snippet' => :'String' } end
Public Instance Methods
Checks equality by comparing each attribute. @param [Object] Object to be compared
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 323 def ==(o) return true if self.equal?(o) self.class == o.class && modified == o.modified && module_name == o.module_name && module_stream == o.module_stream && message == o.message && override_previous == o.override_previous && module_context == o.module_context && eol_date == o.eol_date && obsoleted_by_module_name == o.obsoleted_by_module_name && obsoleted_by_module_stream == o.obsoleted_by_module_stream && snippet == o.snippet end
Deserializes the data based on type @param string type Data type @param string value Value to be deserialized @return [Object] Deserialized data
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 381 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model PulpRpmClient.const_get(type).build_from_hash(value) end end
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 450 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 360 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.openapi_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(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
@see the `==` method @param [Object] Object to be compared
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 340 def eql?(o) self == o end
Calculates hash code according to all attributes. @return [Integer] Hash code
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 346 def hash [modified, module_name, module_stream, message, override_previous, module_context, eol_date, obsoleted_by_module_name, obsoleted_by_module_stream, snippet].hash end
Show invalid properties with the reasons. Usually used together with valid? @return Array for valid properties with the reasons
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 149 def list_invalid_properties invalid_properties = Array.new if @modified.nil? invalid_properties.push('invalid value for "modified", modified cannot be nil.') end if @module_name.nil? invalid_properties.push('invalid value for "module_name", module_name cannot be nil.') end if @module_name.to_s.length < 1 invalid_properties.push('invalid value for "module_name", the character length must be great than or equal to 1.') end if @module_stream.nil? invalid_properties.push('invalid value for "module_stream", module_stream cannot be nil.') end if @module_stream.to_s.length < 1 invalid_properties.push('invalid value for "module_stream", the character length must be great than or equal to 1.') end if @message.nil? invalid_properties.push('invalid value for "message", message cannot be nil.') end if @message.to_s.length < 1 invalid_properties.push('invalid value for "message", the character length must be great than or equal to 1.') end if @override_previous.to_s.length < 1 invalid_properties.push('invalid value for "override_previous", the character length must be great than or equal to 1.') end if @module_context.to_s.length < 1 invalid_properties.push('invalid value for "module_context", the character length must be great than or equal to 1.') end if @obsoleted_by_module_name.to_s.length < 1 invalid_properties.push('invalid value for "obsoleted_by_module_name", the character length must be great than or equal to 1.') end if @obsoleted_by_module_stream.to_s.length < 1 invalid_properties.push('invalid value for "obsoleted_by_module_stream", the character length must be great than or equal to 1.') end if @snippet.nil? invalid_properties.push('invalid value for "snippet", snippet cannot be nil.') end if @snippet.to_s.length < 1 invalid_properties.push('invalid value for "snippet", the character length must be great than or equal to 1.') end invalid_properties end
Custom attribute writer method with validation @param [Object] message Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 255 def message=(message) if message.nil? fail ArgumentError, 'message cannot be nil' end if message.to_s.length < 1 fail ArgumentError, 'invalid value for "message", the character length must be great than or equal to 1.' end @message = message end
Custom attribute writer method with validation @param [Object] module_context Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 279 def module_context=(module_context) if module_context.to_s.length < 1 fail ArgumentError, 'invalid value for "module_context", the character length must be great than or equal to 1.' end @module_context = module_context end
Custom attribute writer method with validation @param [Object] module_name Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 227 def module_name=(module_name) if module_name.nil? fail ArgumentError, 'module_name cannot be nil' end if module_name.to_s.length < 1 fail ArgumentError, 'invalid value for "module_name", the character length must be great than or equal to 1.' end @module_name = module_name end
Custom attribute writer method with validation @param [Object] module_stream Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 241 def module_stream=(module_stream) if module_stream.nil? fail ArgumentError, 'module_stream cannot be nil' end if module_stream.to_s.length < 1 fail ArgumentError, 'invalid value for "module_stream", the character length must be great than or equal to 1.' end @module_stream = module_stream end
Custom attribute writer method with validation @param [Object] obsoleted_by_module_name Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 289 def obsoleted_by_module_name=(obsoleted_by_module_name) if obsoleted_by_module_name.to_s.length < 1 fail ArgumentError, 'invalid value for "obsoleted_by_module_name", the character length must be great than or equal to 1.' end @obsoleted_by_module_name = obsoleted_by_module_name end
Custom attribute writer method with validation @param [Object] obsoleted_by_module_stream Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 299 def obsoleted_by_module_stream=(obsoleted_by_module_stream) if obsoleted_by_module_stream.to_s.length < 1 fail ArgumentError, 'invalid value for "obsoleted_by_module_stream", the character length must be great than or equal to 1.' end @obsoleted_by_module_stream = obsoleted_by_module_stream end
Custom attribute writer method with validation @param [Object] override_previous Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 269 def override_previous=(override_previous) if override_previous.to_s.length < 1 fail ArgumentError, 'invalid value for "override_previous", the character length must be great than or equal to 1.' end @override_previous = override_previous end
Custom attribute writer method with validation @param [Object] snippet Value to be assigned
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 309 def snippet=(snippet) if snippet.nil? fail ArgumentError, 'snippet cannot be nil' end if snippet.to_s.length < 1 fail ArgumentError, 'invalid value for "snippet", the character length must be great than or equal to 1.' end @snippet = snippet end
Returns the object in the form of hash @return [Hash] Returns the object in the form of hash
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 432 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end
Returns the string representation of the object @return [String] String presentation of the object
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 420 def to_s to_hash.to_s end
Check to see if the all the properties in the model are valid @return true if the model is valid
# File lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb, line 208 def valid? return false if @modified.nil? return false if @module_name.nil? return false if @module_name.to_s.length < 1 return false if @module_stream.nil? return false if @module_stream.to_s.length < 1 return false if @message.nil? return false if @message.to_s.length < 1 return false if @override_previous.to_s.length < 1 return false if @module_context.to_s.length < 1 return false if @obsoleted_by_module_name.to_s.length < 1 return false if @obsoleted_by_module_stream.to_s.length < 1 return false if @snippet.nil? return false if @snippet.to_s.length < 1 true end