Class: Harbor2Client::Artifact

Inherits:
Object
  • Object
show all
Defined in:
lib/harbor2_client/models/artifact.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Artifact

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



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.tags = 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

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

#annotationsObject

Returns the value of attribute annotations.



52
53
54
# File 'lib/harbor2_client/models/artifact.rb', line 52

def annotations
  @annotations
end

#digestObject

The digest of the artifact



36
37
38
# File 'lib/harbor2_client/models/artifact.rb', line 36

def digest
  @digest
end

#extra_attrsObject

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

#iconObject

The digest of the icon



42
43
44
# File 'lib/harbor2_client/models/artifact.rb', line 42

def icon
  @icon
end

#idObject

The ID of the artifact



18
19
20
# File 'lib/harbor2_client/models/artifact.rb', line 18

def id
  @id
end

#labelsObject

Returns the value of attribute labels.



60
61
62
# File 'lib/harbor2_client/models/artifact.rb', line 60

def labels
  @labels
end

#manifest_media_typeObject

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_typeObject

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_idObject

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_timeObject

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_timeObject

The push time of the artifact



45
46
47
# File 'lib/harbor2_client/models/artifact.rb', line 45

def push_time
  @push_time
end

#referencesObject

Returns the value of attribute references.



54
55
56
# File 'lib/harbor2_client/models/artifact.rb', line 54

def references
  @references
end

#repository_idObject

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_overviewObject

The overview of the scan result.



63
64
65
# File 'lib/harbor2_client/models/artifact.rb', line 63

def scan_overview
  @scan_overview
end

#sizeObject

The size of the artifact



39
40
41
# File 'lib/harbor2_client/models/artifact.rb', line 39

def size
  @size
end

#tagsObject

Returns the value of attribute tags.



56
57
58
# File 'lib/harbor2_client/models/artifact.rb', line 56

def tags
  @tags
end

#typeObject

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_mapObject

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_typesObject

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.

Parameters:

  • Object (Object)

    to be compared



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 &&
      tags == o.tags &&
      addition_links == o.addition_links &&
      labels == o.labels &&
      scan_overview == o.scan_overview
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



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

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



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

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


240
241
242
# File 'lib/harbor2_client/models/artifact.rb', line 240

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



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, tags, addition_links, labels, scan_overview].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



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_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



320
321
322
# File 'lib/harbor2_client/models/artifact.rb', line 320

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation 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

Returns:

  • (Boolean)

    true if the model is valid



209
210
211
# File 'lib/harbor2_client/models/artifact.rb', line 209

def valid?
  true
end