pulp_ansible_client 0.24.7 → 0.24.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,63 +16,63 @@ require 'time'
16
16
  module PulpAnsibleClient
17
17
  # A serializer for Git Collection Remotes.
18
18
  class AnsibleGitRemoteResponse
19
- # Timestamp of the most recent update of the remote.
20
- attr_accessor :pulp_last_updated
21
-
22
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
23
- attr_accessor :max_retries
24
-
25
- attr_accessor :pulp_href
26
-
27
- # Total number of simultaneous connections. If not set then the default value will be used.
28
- attr_accessor :download_concurrency
19
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
20
+ attr_accessor :ca_cert
29
21
 
30
- # The URL of an external content source.
31
- attr_accessor :url
22
+ # A PEM encoded client certificate used for authentication.
23
+ attr_accessor :client_cert
32
24
 
33
25
  # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
34
26
  attr_accessor :sock_read_timeout
35
27
 
36
- # The proxy URL. Format: scheme://host:port
37
- attr_accessor :proxy_url
28
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
29
+ attr_accessor :total_timeout
38
30
 
39
- # The Pulp Resource Name (PRN).
40
- attr_accessor :prn
31
+ # If True, TLS peer validation must be performed.
32
+ attr_accessor :tls_validation
41
33
 
42
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
43
- attr_accessor :connect_timeout
34
+ # List of hidden (write only) fields
35
+ attr_accessor :hidden_fields
44
36
 
45
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
46
- attr_accessor :ca_cert
37
+ # Headers for aiohttp.Clientsession
38
+ attr_accessor :headers
47
39
 
48
- # aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
49
- attr_accessor :sock_connect_timeout
40
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
41
+ attr_accessor :connect_timeout
50
42
 
51
- # A unique name for this remote.
52
- attr_accessor :name
43
+ attr_accessor :pulp_href
53
44
 
54
- # A PEM encoded client certificate used for authentication.
55
- attr_accessor :client_cert
45
+ # The proxy URL. Format: scheme://host:port
46
+ attr_accessor :proxy_url
56
47
 
57
- attr_accessor :pulp_labels
48
+ # Timestamp of the most recent update of the remote.
49
+ attr_accessor :pulp_last_updated
58
50
 
59
51
  # Timestamp of creation.
60
52
  attr_accessor :pulp_created
61
53
 
54
+ # Total number of simultaneous connections. If not set then the default value will be used.
55
+ attr_accessor :download_concurrency
56
+
62
57
  # Limits requests per second for each concurrent downloader
63
58
  attr_accessor :rate_limit
64
59
 
65
- # List of hidden (write only) fields
66
- attr_accessor :hidden_fields
60
+ # A unique name for this remote.
61
+ attr_accessor :name
67
62
 
68
- # Headers for aiohttp.Clientsession
69
- attr_accessor :headers
63
+ # The URL of an external content source.
64
+ attr_accessor :url
70
65
 
71
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
72
- attr_accessor :total_timeout
66
+ # aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
67
+ attr_accessor :sock_connect_timeout
73
68
 
74
- # If True, TLS peer validation must be performed.
75
- attr_accessor :tls_validation
69
+ # The Pulp Resource Name (PRN).
70
+ attr_accessor :prn
71
+
72
+ attr_accessor :pulp_labels
73
+
74
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
75
+ attr_accessor :max_retries
76
76
 
77
77
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
78
78
  attr_accessor :metadata_only
@@ -83,26 +83,26 @@ module PulpAnsibleClient
83
83
  # Attribute mapping from ruby-style variable name to JSON key.
84
84
  def self.attribute_map
85
85
  {
86
- :'pulp_last_updated' => :'pulp_last_updated',
87
- :'max_retries' => :'max_retries',
86
+ :'ca_cert' => :'ca_cert',
87
+ :'client_cert' => :'client_cert',
88
+ :'sock_read_timeout' => :'sock_read_timeout',
89
+ :'total_timeout' => :'total_timeout',
90
+ :'tls_validation' => :'tls_validation',
91
+ :'hidden_fields' => :'hidden_fields',
92
+ :'headers' => :'headers',
93
+ :'connect_timeout' => :'connect_timeout',
88
94
  :'pulp_href' => :'pulp_href',
95
+ :'proxy_url' => :'proxy_url',
96
+ :'pulp_last_updated' => :'pulp_last_updated',
97
+ :'pulp_created' => :'pulp_created',
89
98
  :'download_concurrency' => :'download_concurrency',
99
+ :'rate_limit' => :'rate_limit',
100
+ :'name' => :'name',
90
101
  :'url' => :'url',
91
- :'sock_read_timeout' => :'sock_read_timeout',
92
- :'proxy_url' => :'proxy_url',
93
- :'prn' => :'prn',
94
- :'connect_timeout' => :'connect_timeout',
95
- :'ca_cert' => :'ca_cert',
96
102
  :'sock_connect_timeout' => :'sock_connect_timeout',
97
- :'name' => :'name',
98
- :'client_cert' => :'client_cert',
103
+ :'prn' => :'prn',
99
104
  :'pulp_labels' => :'pulp_labels',
100
- :'pulp_created' => :'pulp_created',
101
- :'rate_limit' => :'rate_limit',
102
- :'hidden_fields' => :'hidden_fields',
103
- :'headers' => :'headers',
104
- :'total_timeout' => :'total_timeout',
105
- :'tls_validation' => :'tls_validation',
105
+ :'max_retries' => :'max_retries',
106
106
  :'metadata_only' => :'metadata_only',
107
107
  :'git_ref' => :'git_ref'
108
108
  }
@@ -116,26 +116,26 @@ module PulpAnsibleClient
116
116
  # Attribute type mapping.
117
117
  def self.openapi_types
118
118
  {
119
- :'pulp_last_updated' => :'Time',
120
- :'max_retries' => :'Integer',
119
+ :'ca_cert' => :'String',
120
+ :'client_cert' => :'String',
121
+ :'sock_read_timeout' => :'Float',
122
+ :'total_timeout' => :'Float',
123
+ :'tls_validation' => :'Boolean',
124
+ :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>',
125
+ :'headers' => :'Array<Object>',
126
+ :'connect_timeout' => :'Float',
121
127
  :'pulp_href' => :'String',
128
+ :'proxy_url' => :'String',
129
+ :'pulp_last_updated' => :'Time',
130
+ :'pulp_created' => :'Time',
122
131
  :'download_concurrency' => :'Integer',
132
+ :'rate_limit' => :'Integer',
133
+ :'name' => :'String',
123
134
  :'url' => :'String',
124
- :'sock_read_timeout' => :'Float',
125
- :'proxy_url' => :'String',
126
- :'prn' => :'String',
127
- :'connect_timeout' => :'Float',
128
- :'ca_cert' => :'String',
129
135
  :'sock_connect_timeout' => :'Float',
130
- :'name' => :'String',
131
- :'client_cert' => :'String',
136
+ :'prn' => :'String',
132
137
  :'pulp_labels' => :'Hash<String, String>',
133
- :'pulp_created' => :'Time',
134
- :'rate_limit' => :'Integer',
135
- :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>',
136
- :'headers' => :'Array<Object>',
137
- :'total_timeout' => :'Float',
138
- :'tls_validation' => :'Boolean',
138
+ :'max_retries' => :'Integer',
139
139
  :'metadata_only' => :'Boolean',
140
140
  :'git_ref' => :'String'
141
141
  }
@@ -144,16 +144,16 @@ module PulpAnsibleClient
144
144
  # List of attributes with nullable: true
145
145
  def self.openapi_nullable
146
146
  Set.new([
147
- :'max_retries',
148
- :'download_concurrency',
149
- :'sock_read_timeout',
150
- :'proxy_url',
151
- :'connect_timeout',
152
147
  :'ca_cert',
153
- :'sock_connect_timeout',
154
148
  :'client_cert',
155
- :'rate_limit',
149
+ :'sock_read_timeout',
156
150
  :'total_timeout',
151
+ :'connect_timeout',
152
+ :'proxy_url',
153
+ :'download_concurrency',
154
+ :'rate_limit',
155
+ :'sock_connect_timeout',
156
+ :'max_retries',
157
157
  ])
158
158
  end
159
159
 
@@ -172,50 +172,64 @@ module PulpAnsibleClient
172
172
  h[k.to_sym] = v
173
173
  }
174
174
 
175
- if attributes.key?(:'pulp_last_updated')
176
- self.pulp_last_updated = attributes[:'pulp_last_updated']
175
+ if attributes.key?(:'ca_cert')
176
+ self.ca_cert = attributes[:'ca_cert']
177
177
  end
178
178
 
179
- if attributes.key?(:'max_retries')
180
- self.max_retries = attributes[:'max_retries']
179
+ if attributes.key?(:'client_cert')
180
+ self.client_cert = attributes[:'client_cert']
181
181
  end
182
182
 
183
- if attributes.key?(:'pulp_href')
184
- self.pulp_href = attributes[:'pulp_href']
183
+ if attributes.key?(:'sock_read_timeout')
184
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
185
185
  end
186
186
 
187
- if attributes.key?(:'download_concurrency')
188
- self.download_concurrency = attributes[:'download_concurrency']
187
+ if attributes.key?(:'total_timeout')
188
+ self.total_timeout = attributes[:'total_timeout']
189
189
  end
190
190
 
191
- if attributes.key?(:'url')
192
- self.url = attributes[:'url']
193
- else
194
- self.url = nil
191
+ if attributes.key?(:'tls_validation')
192
+ self.tls_validation = attributes[:'tls_validation']
195
193
  end
196
194
 
197
- if attributes.key?(:'sock_read_timeout')
198
- self.sock_read_timeout = attributes[:'sock_read_timeout']
195
+ if attributes.key?(:'hidden_fields')
196
+ if (value = attributes[:'hidden_fields']).is_a?(Array)
197
+ self.hidden_fields = value
198
+ end
199
+ end
200
+
201
+ if attributes.key?(:'headers')
202
+ if (value = attributes[:'headers']).is_a?(Array)
203
+ self.headers = value
204
+ end
205
+ end
206
+
207
+ if attributes.key?(:'connect_timeout')
208
+ self.connect_timeout = attributes[:'connect_timeout']
209
+ end
210
+
211
+ if attributes.key?(:'pulp_href')
212
+ self.pulp_href = attributes[:'pulp_href']
199
213
  end
200
214
 
201
215
  if attributes.key?(:'proxy_url')
202
216
  self.proxy_url = attributes[:'proxy_url']
203
217
  end
204
218
 
205
- if attributes.key?(:'prn')
206
- self.prn = attributes[:'prn']
219
+ if attributes.key?(:'pulp_last_updated')
220
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
207
221
  end
208
222
 
209
- if attributes.key?(:'connect_timeout')
210
- self.connect_timeout = attributes[:'connect_timeout']
223
+ if attributes.key?(:'pulp_created')
224
+ self.pulp_created = attributes[:'pulp_created']
211
225
  end
212
226
 
213
- if attributes.key?(:'ca_cert')
214
- self.ca_cert = attributes[:'ca_cert']
227
+ if attributes.key?(:'download_concurrency')
228
+ self.download_concurrency = attributes[:'download_concurrency']
215
229
  end
216
230
 
217
- if attributes.key?(:'sock_connect_timeout')
218
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
231
+ if attributes.key?(:'rate_limit')
232
+ self.rate_limit = attributes[:'rate_limit']
219
233
  end
220
234
 
221
235
  if attributes.key?(:'name')
@@ -224,42 +238,28 @@ module PulpAnsibleClient
224
238
  self.name = nil
225
239
  end
226
240
 
227
- if attributes.key?(:'client_cert')
228
- self.client_cert = attributes[:'client_cert']
229
- end
230
-
231
- if attributes.key?(:'pulp_labels')
232
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
233
- self.pulp_labels = value
234
- end
235
- end
236
-
237
- if attributes.key?(:'pulp_created')
238
- self.pulp_created = attributes[:'pulp_created']
241
+ if attributes.key?(:'url')
242
+ self.url = attributes[:'url']
243
+ else
244
+ self.url = nil
239
245
  end
240
246
 
241
- if attributes.key?(:'rate_limit')
242
- self.rate_limit = attributes[:'rate_limit']
247
+ if attributes.key?(:'sock_connect_timeout')
248
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
243
249
  end
244
250
 
245
- if attributes.key?(:'hidden_fields')
246
- if (value = attributes[:'hidden_fields']).is_a?(Array)
247
- self.hidden_fields = value
248
- end
251
+ if attributes.key?(:'prn')
252
+ self.prn = attributes[:'prn']
249
253
  end
250
254
 
251
- if attributes.key?(:'headers')
252
- if (value = attributes[:'headers']).is_a?(Array)
253
- self.headers = value
255
+ if attributes.key?(:'pulp_labels')
256
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
257
+ self.pulp_labels = value
254
258
  end
255
259
  end
256
260
 
257
- if attributes.key?(:'total_timeout')
258
- self.total_timeout = attributes[:'total_timeout']
259
- end
260
-
261
- if attributes.key?(:'tls_validation')
262
- self.tls_validation = attributes[:'tls_validation']
261
+ if attributes.key?(:'max_retries')
262
+ self.max_retries = attributes[:'max_retries']
263
263
  end
264
264
 
265
265
  if attributes.key?(:'metadata_only')
@@ -276,32 +276,32 @@ module PulpAnsibleClient
276
276
  def list_invalid_properties
277
277
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
278
278
  invalid_properties = Array.new
279
- if !@download_concurrency.nil? && @download_concurrency < 1
280
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
281
- end
282
-
283
- if @url.nil?
284
- invalid_properties.push('invalid value for "url", url cannot be nil.')
285
- end
286
-
287
279
  if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
288
280
  invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
289
281
  end
290
282
 
283
+ if !@total_timeout.nil? && @total_timeout < 0.0
284
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
285
+ end
286
+
291
287
  if !@connect_timeout.nil? && @connect_timeout < 0.0
292
288
  invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
293
289
  end
294
290
 
295
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
296
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
291
+ if !@download_concurrency.nil? && @download_concurrency < 1
292
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
297
293
  end
298
294
 
299
295
  if @name.nil?
300
296
  invalid_properties.push('invalid value for "name", name cannot be nil.')
301
297
  end
302
298
 
303
- if !@total_timeout.nil? && @total_timeout < 0.0
304
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
299
+ if @url.nil?
300
+ invalid_properties.push('invalid value for "url", url cannot be nil.')
301
+ end
302
+
303
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
304
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
305
305
  end
306
306
 
307
307
  invalid_properties
@@ -311,26 +311,16 @@ module PulpAnsibleClient
311
311
  # @return true if the model is valid
312
312
  def valid?
313
313
  warn '[DEPRECATED] the `valid?` method is obsolete'
314
- return false if !@download_concurrency.nil? && @download_concurrency < 1
315
- return false if @url.nil?
316
314
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
315
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
317
316
  return false if !@connect_timeout.nil? && @connect_timeout < 0.0
318
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
317
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
319
318
  return false if @name.nil?
320
- return false if !@total_timeout.nil? && @total_timeout < 0.0
319
+ return false if @url.nil?
320
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
321
321
  true
322
322
  end
323
323
 
324
- # Custom attribute writer method with validation
325
- # @param [Object] download_concurrency Value to be assigned
326
- def download_concurrency=(download_concurrency)
327
- if !download_concurrency.nil? && download_concurrency < 1
328
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
329
- end
330
-
331
- @download_concurrency = download_concurrency
332
- end
333
-
334
324
  # Custom attribute writer method with validation
335
325
  # @param [Object] sock_read_timeout Value to be assigned
336
326
  def sock_read_timeout=(sock_read_timeout)
@@ -341,6 +331,16 @@ module PulpAnsibleClient
341
331
  @sock_read_timeout = sock_read_timeout
342
332
  end
343
333
 
334
+ # Custom attribute writer method with validation
335
+ # @param [Object] total_timeout Value to be assigned
336
+ def total_timeout=(total_timeout)
337
+ if !total_timeout.nil? && total_timeout < 0.0
338
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
339
+ end
340
+
341
+ @total_timeout = total_timeout
342
+ end
343
+
344
344
  # Custom attribute writer method with validation
345
345
  # @param [Object] connect_timeout Value to be assigned
346
346
  def connect_timeout=(connect_timeout)
@@ -352,23 +352,23 @@ module PulpAnsibleClient
352
352
  end
353
353
 
354
354
  # Custom attribute writer method with validation
355
- # @param [Object] sock_connect_timeout Value to be assigned
356
- def sock_connect_timeout=(sock_connect_timeout)
357
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
358
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
355
+ # @param [Object] download_concurrency Value to be assigned
356
+ def download_concurrency=(download_concurrency)
357
+ if !download_concurrency.nil? && download_concurrency < 1
358
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
359
359
  end
360
360
 
361
- @sock_connect_timeout = sock_connect_timeout
361
+ @download_concurrency = download_concurrency
362
362
  end
363
363
 
364
364
  # Custom attribute writer method with validation
365
- # @param [Object] total_timeout Value to be assigned
366
- def total_timeout=(total_timeout)
367
- if !total_timeout.nil? && total_timeout < 0.0
368
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
365
+ # @param [Object] sock_connect_timeout Value to be assigned
366
+ def sock_connect_timeout=(sock_connect_timeout)
367
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
368
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
369
369
  end
370
370
 
371
- @total_timeout = total_timeout
371
+ @sock_connect_timeout = sock_connect_timeout
372
372
  end
373
373
 
374
374
  # Checks equality by comparing each attribute.
@@ -376,26 +376,26 @@ module PulpAnsibleClient
376
376
  def ==(o)
377
377
  return true if self.equal?(o)
378
378
  self.class == o.class &&
379
- pulp_last_updated == o.pulp_last_updated &&
380
- max_retries == o.max_retries &&
379
+ ca_cert == o.ca_cert &&
380
+ client_cert == o.client_cert &&
381
+ sock_read_timeout == o.sock_read_timeout &&
382
+ total_timeout == o.total_timeout &&
383
+ tls_validation == o.tls_validation &&
384
+ hidden_fields == o.hidden_fields &&
385
+ headers == o.headers &&
386
+ connect_timeout == o.connect_timeout &&
381
387
  pulp_href == o.pulp_href &&
388
+ proxy_url == o.proxy_url &&
389
+ pulp_last_updated == o.pulp_last_updated &&
390
+ pulp_created == o.pulp_created &&
382
391
  download_concurrency == o.download_concurrency &&
392
+ rate_limit == o.rate_limit &&
393
+ name == o.name &&
383
394
  url == o.url &&
384
- sock_read_timeout == o.sock_read_timeout &&
385
- proxy_url == o.proxy_url &&
386
- prn == o.prn &&
387
- connect_timeout == o.connect_timeout &&
388
- ca_cert == o.ca_cert &&
389
395
  sock_connect_timeout == o.sock_connect_timeout &&
390
- name == o.name &&
391
- client_cert == o.client_cert &&
396
+ prn == o.prn &&
392
397
  pulp_labels == o.pulp_labels &&
393
- pulp_created == o.pulp_created &&
394
- rate_limit == o.rate_limit &&
395
- hidden_fields == o.hidden_fields &&
396
- headers == o.headers &&
397
- total_timeout == o.total_timeout &&
398
- tls_validation == o.tls_validation &&
398
+ max_retries == o.max_retries &&
399
399
  metadata_only == o.metadata_only &&
400
400
  git_ref == o.git_ref
401
401
  end
@@ -409,7 +409,7 @@ module PulpAnsibleClient
409
409
  # Calculates hash code according to all attributes.
410
410
  # @return [Integer] Hash code
411
411
  def hash
412
- [pulp_last_updated, max_retries, pulp_href, download_concurrency, url, sock_read_timeout, proxy_url, prn, connect_timeout, ca_cert, sock_connect_timeout, name, client_cert, pulp_labels, pulp_created, rate_limit, hidden_fields, headers, total_timeout, tls_validation, metadata_only, git_ref].hash
412
+ [ca_cert, client_cert, sock_read_timeout, total_timeout, tls_validation, hidden_fields, headers, connect_timeout, pulp_href, proxy_url, pulp_last_updated, pulp_created, download_concurrency, rate_limit, name, url, sock_connect_timeout, prn, pulp_labels, max_retries, metadata_only, git_ref].hash
413
413
  end
414
414
 
415
415
  # Builds the object from hash
@@ -16,15 +16,15 @@ require 'time'
16
16
  module PulpAnsibleClient
17
17
  # A serializer for Role versions.
18
18
  class AnsibleRole
19
+ # Artifact file representing the physical content
20
+ attr_accessor :artifact
21
+
19
22
  # A URI of a repository the new content unit should be associated with.
20
23
  attr_accessor :repository
21
24
 
22
25
  # A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
23
26
  attr_accessor :pulp_labels
24
27
 
25
- # Artifact file representing the physical content
26
- attr_accessor :artifact
27
-
28
28
  attr_accessor :version
29
29
 
30
30
  attr_accessor :name
@@ -34,9 +34,9 @@ module PulpAnsibleClient
34
34
  # Attribute mapping from ruby-style variable name to JSON key.
35
35
  def self.attribute_map
36
36
  {
37
+ :'artifact' => :'artifact',
37
38
  :'repository' => :'repository',
38
39
  :'pulp_labels' => :'pulp_labels',
39
- :'artifact' => :'artifact',
40
40
  :'version' => :'version',
41
41
  :'name' => :'name',
42
42
  :'namespace' => :'namespace'
@@ -51,9 +51,9 @@ module PulpAnsibleClient
51
51
  # Attribute type mapping.
52
52
  def self.openapi_types
53
53
  {
54
+ :'artifact' => :'String',
54
55
  :'repository' => :'String',
55
56
  :'pulp_labels' => :'Hash<String, String>',
56
- :'artifact' => :'String',
57
57
  :'version' => :'String',
58
58
  :'name' => :'String',
59
59
  :'namespace' => :'String'
@@ -81,6 +81,12 @@ module PulpAnsibleClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
+ if attributes.key?(:'artifact')
85
+ self.artifact = attributes[:'artifact']
86
+ else
87
+ self.artifact = nil
88
+ end
89
+
84
90
  if attributes.key?(:'repository')
85
91
  self.repository = attributes[:'repository']
86
92
  end
@@ -91,12 +97,6 @@ module PulpAnsibleClient
91
97
  end
92
98
  end
93
99
 
94
- if attributes.key?(:'artifact')
95
- self.artifact = attributes[:'artifact']
96
- else
97
- self.artifact = nil
98
- end
99
-
100
100
  if attributes.key?(:'version')
101
101
  self.version = attributes[:'version']
102
102
  else
@@ -213,9 +213,9 @@ module PulpAnsibleClient
213
213
  def ==(o)
214
214
  return true if self.equal?(o)
215
215
  self.class == o.class &&
216
+ artifact == o.artifact &&
216
217
  repository == o.repository &&
217
218
  pulp_labels == o.pulp_labels &&
218
- artifact == o.artifact &&
219
219
  version == o.version &&
220
220
  name == o.name &&
221
221
  namespace == o.namespace
@@ -230,7 +230,7 @@ module PulpAnsibleClient
230
230
  # Calculates hash code according to all attributes.
231
231
  # @return [Integer] Hash code
232
232
  def hash
233
- [repository, pulp_labels, artifact, version, name, namespace].hash
233
+ [artifact, repository, pulp_labels, version, name, namespace].hash
234
234
  end
235
235
 
236
236
  # Builds the object from hash