Class: Harbor2Client::Artifact
- Inherits:
-
Object
- Object
- Harbor2Client::Artifact
- Defined in:
- lib/harbor2_client/models/artifact.rb
Instance Attribute Summary collapse
-
#addition_links ⇒ Object
Returns the value of attribute addition_links.
-
#annotations ⇒ Object
Returns the value of attribute annotations.
-
#digest ⇒ Object
The digest of the artifact.
-
#extra_attrs ⇒ Object
Returns the value of attribute extra_attrs.
-
#icon ⇒ Object
The digest of the icon.
-
#id ⇒ Object
The ID of the artifact.
-
#labels ⇒ Object
Returns the value of attribute labels.
-
#manifest_media_type ⇒ Object
The manifest media type of the artifact.
-
#media_type ⇒ Object
The media type of the artifact.
-
#project_id ⇒ Object
The ID of the project that the artifact belongs to.
-
#pull_time ⇒ Object
The latest pull time of the artifact.
-
#push_time ⇒ Object
The push time of the artifact.
-
#references ⇒ Object
Returns the value of attribute references.
-
#repository_id ⇒ Object
The ID of the repository that the artifact belongs to.
-
#scan_overview ⇒ Object
The overview of the scan result.
-
#size ⇒ Object
The size of the artifact.
-
#tags ⇒ Object
Returns the value of attribute tags.
-
#type ⇒ Object
The type of the artifact, e.g.
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
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Artifact
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ Artifact
Initializes the object
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/harbor2_client/models/artifact.rb', line 115 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 } if attributes.has_key?(:'id') self.id = attributes[:'id'] end if attributes.has_key?(:'type') self.type = attributes[:'type'] end if attributes.has_key?(:'media_type') self.media_type = attributes[:'media_type'] end if attributes.has_key?(:'manifest_media_type') self.manifest_media_type = attributes[:'manifest_media_type'] end if attributes.has_key?(:'project_id') self.project_id = attributes[:'project_id'] end if attributes.has_key?(:'repository_id') self.repository_id = attributes[:'repository_id'] end if attributes.has_key?(:'digest') self.digest = attributes[:'digest'] end if attributes.has_key?(:'size') self.size = attributes[:'size'] end if attributes.has_key?(:'icon') self.icon = attributes[:'icon'] end if attributes.has_key?(:'push_time') self.push_time = attributes[:'push_time'] end if attributes.has_key?(:'pull_time') self.pull_time = attributes[:'pull_time'] end if attributes.has_key?(:'extra_attrs') self.extra_attrs = attributes[:'extra_attrs'] end if attributes.has_key?(:'annotations') self.annotations = attributes[:'annotations'] end if attributes.has_key?(:'references') if (value = attributes[:'references']).is_a?(Array) self.references = value end end if attributes.has_key?(:'tags') if (value = attributes[:'tags']).is_a?(Array) self. = value end end if attributes.has_key?(:'addition_links') self.addition_links = attributes[:'addition_links'] end if attributes.has_key?(:'labels') if (value = attributes[:'labels']).is_a?(Array) self.labels = value end end if attributes.has_key?(:'scan_overview') self.scan_overview = attributes[:'scan_overview'] end end |
Instance Attribute Details
#addition_links ⇒ Object
Returns the value of attribute addition_links.
58 59 60 |
# File 'lib/harbor2_client/models/artifact.rb', line 58 def addition_links @addition_links end |
#annotations ⇒ Object
Returns the value of attribute annotations.
52 53 54 |
# File 'lib/harbor2_client/models/artifact.rb', line 52 def annotations @annotations end |
#digest ⇒ Object
The digest of the artifact
36 37 38 |
# File 'lib/harbor2_client/models/artifact.rb', line 36 def digest @digest end |
#extra_attrs ⇒ Object
Returns the value of attribute extra_attrs.
50 51 52 |
# File 'lib/harbor2_client/models/artifact.rb', line 50 def extra_attrs @extra_attrs end |
#icon ⇒ Object
The digest of the icon
42 43 44 |
# File 'lib/harbor2_client/models/artifact.rb', line 42 def icon @icon end |
#id ⇒ Object
The ID of the artifact
18 19 20 |
# File 'lib/harbor2_client/models/artifact.rb', line 18 def id @id end |
#labels ⇒ Object
Returns the value of attribute labels.
60 61 62 |
# File 'lib/harbor2_client/models/artifact.rb', line 60 def labels @labels end |
#manifest_media_type ⇒ Object
The manifest media type of the artifact
27 28 29 |
# File 'lib/harbor2_client/models/artifact.rb', line 27 def manifest_media_type @manifest_media_type end |
#media_type ⇒ Object
The media type of the artifact
24 25 26 |
# File 'lib/harbor2_client/models/artifact.rb', line 24 def media_type @media_type end |
#project_id ⇒ Object
The ID of the project that the artifact belongs to
30 31 32 |
# File 'lib/harbor2_client/models/artifact.rb', line 30 def project_id @project_id end |
#pull_time ⇒ Object
The latest pull time of the artifact
48 49 50 |
# File 'lib/harbor2_client/models/artifact.rb', line 48 def pull_time @pull_time end |
#push_time ⇒ Object
The push time of the artifact
45 46 47 |
# File 'lib/harbor2_client/models/artifact.rb', line 45 def push_time @push_time end |
#references ⇒ Object
Returns the value of attribute references.
54 55 56 |
# File 'lib/harbor2_client/models/artifact.rb', line 54 def references @references end |
#repository_id ⇒ Object
The ID of the repository that the artifact belongs to
33 34 35 |
# File 'lib/harbor2_client/models/artifact.rb', line 33 def repository_id @repository_id end |
#scan_overview ⇒ Object
The overview of the scan result.
63 64 65 |
# File 'lib/harbor2_client/models/artifact.rb', line 63 def scan_overview @scan_overview end |
#size ⇒ Object
The size of the artifact
39 40 41 |
# File 'lib/harbor2_client/models/artifact.rb', line 39 def size @size end |
#tags ⇒ Object
Returns the value of attribute tags.
56 57 58 |
# File 'lib/harbor2_client/models/artifact.rb', line 56 def end |
#type ⇒ Object
The type of the artifact, e.g. image, chart, etc
21 22 23 |
# File 'lib/harbor2_client/models/artifact.rb', line 21 def type @type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/harbor2_client/models/artifact.rb', line 66 def self.attribute_map { :'id' => :'id', :'type' => :'type', :'media_type' => :'media_type', :'manifest_media_type' => :'manifest_media_type', :'project_id' => :'project_id', :'repository_id' => :'repository_id', :'digest' => :'digest', :'size' => :'size', :'icon' => :'icon', :'push_time' => :'push_time', :'pull_time' => :'pull_time', :'extra_attrs' => :'extra_attrs', :'annotations' => :'annotations', :'references' => :'references', :'tags' => :'tags', :'addition_links' => :'addition_links', :'labels' => :'labels', :'scan_overview' => :'scan_overview' } end |
.swagger_types ⇒ Object
Attribute type mapping.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/harbor2_client/models/artifact.rb', line 90 def self.swagger_types { :'id' => :'Integer', :'type' => :'String', :'media_type' => :'String', :'manifest_media_type' => :'String', :'project_id' => :'Integer', :'repository_id' => :'Integer', :'digest' => :'String', :'size' => :'Integer', :'icon' => :'String', :'push_time' => :'DateTime', :'pull_time' => :'DateTime', :'extra_attrs' => :'ExtraAttrs', :'annotations' => :'Annotations', :'references' => :'Array<Reference>', :'tags' => :'Array<Tag>', :'addition_links' => :'AdditionLinks', :'labels' => :'Array<Label>', :'scan_overview' => :'ScanOverview' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/harbor2_client/models/artifact.rb', line 215 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && type == o.type && media_type == o.media_type && manifest_media_type == o.manifest_media_type && project_id == o.project_id && repository_id == o.repository_id && digest == o.digest && size == o.size && icon == o.icon && push_time == o.push_time && pull_time == o.pull_time && extra_attrs == o.extra_attrs && annotations == o.annotations && references == o.references && == o. && addition_links == o.addition_links && labels == o.labels && scan_overview == o.scan_overview end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
# File 'lib/harbor2_client/models/artifact.rb', line 274 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 temp_model = Harbor2Client.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
340 341 342 343 344 345 346 347 348 349 350 351 352 |
# File 'lib/harbor2_client/models/artifact.rb', line 340 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 |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/harbor2_client/models/artifact.rb', line 253 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_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 |
#eql?(o) ⇒ Boolean
240 241 242 |
# File 'lib/harbor2_client/models/artifact.rb', line 240 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
246 247 248 |
# File 'lib/harbor2_client/models/artifact.rb', line 246 def hash [id, type, media_type, manifest_media_type, project_id, repository_id, digest, size, icon, push_time, pull_time, extra_attrs, annotations, references, , addition_links, labels, scan_overview].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
202 203 204 205 |
# File 'lib/harbor2_client/models/artifact.rb', line 202 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
320 321 322 |
# File 'lib/harbor2_client/models/artifact.rb', line 320 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
326 327 328 329 330 331 332 333 334 |
# File 'lib/harbor2_client/models/artifact.rb', line 326 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
314 315 316 |
# File 'lib/harbor2_client/models/artifact.rb', line 314 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
209 210 211 |
# File 'lib/harbor2_client/models/artifact.rb', line 209 def valid? true end |