pulp_ansible_client 0.25.5 → 0.25.7

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