pulp_ansible_client 0.24.9 → 0.24.10

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