pulp_ansible_client 0.20.1 → 0.21.0

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 (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleCollectionVersion.md +6 -6
  4. data/docs/AnsibleCollectionVersionResponse.md +3 -3
  5. data/docs/AnsibleCollectionVersionSignature.md +3 -1
  6. data/docs/AnsibleGitRemote.md +31 -31
  7. data/docs/AnsibleGitRemoteResponse.md +27 -27
  8. data/docs/AnsibleRoleResponse.md +2 -2
  9. data/docs/ContentCollectionSignaturesApi.md +7 -5
  10. data/docs/ContentCollectionVersionsApi.md +6 -6
  11. data/docs/PatchedansibleGitRemote.md +31 -31
  12. data/docs/TagResponse.md +3 -1
  13. data/lib/pulp_ansible_client/api/content_collection_signatures_api.rb +9 -10
  14. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +9 -9
  15. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +25 -25
  16. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +10 -10
  17. data/lib/pulp_ansible_client/models/ansible_collection_version_signature.rb +12 -7
  18. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +247 -247
  19. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +146 -146
  20. data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
  21. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +233 -233
  22. data/lib/pulp_ansible_client/models/tag_response.rb +13 -4
  23. data/lib/pulp_ansible_client/version.rb +1 -1
  24. data/spec/api/content_collection_signatures_api_spec.rb +2 -1
  25. data/spec/api/content_collection_versions_api_spec.rb +3 -3
  26. data/spec/models/ansible_collection_version_response_spec.rb +3 -3
  27. data/spec/models/ansible_collection_version_signature_spec.rb +6 -0
  28. data/spec/models/ansible_collection_version_spec.rb +4 -4
  29. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  30. data/spec/models/ansible_git_remote_spec.rb +20 -20
  31. data/spec/models/ansible_role_response_spec.rb +2 -2
  32. data/spec/models/patchedansible_git_remote_spec.rb +20 -20
  33. data/spec/models/tag_response_spec.rb +6 -0
  34. metadata +133 -133
@@ -15,60 +15,60 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class AnsibleGitRemoteResponse
18
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
19
+ attr_accessor :ca_cert
20
+
18
21
  # Timestamp of the most recent update of the remote.
19
22
  attr_accessor :pulp_last_updated
20
23
 
21
- # A PEM encoded client certificate used for authentication.
22
- attr_accessor :client_cert
24
+ # The URL of an external content source.
25
+ attr_accessor :url
23
26
 
24
- # Limits requests per second for each concurrent downloader
25
- attr_accessor :rate_limit
27
+ # If True, TLS peer validation must be performed.
28
+ attr_accessor :tls_validation
26
29
 
27
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
28
- attr_accessor :ca_cert
30
+ attr_accessor :pulp_href
29
31
 
30
- attr_accessor :pulp_labels
32
+ # 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.
33
+ attr_accessor :sock_read_timeout
31
34
 
32
- # The proxy URL. Format: scheme://host:port
33
- attr_accessor :proxy_url
35
+ # Timestamp of creation.
36
+ attr_accessor :pulp_created
34
37
 
35
38
  # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
36
39
  attr_accessor :max_retries
37
40
 
38
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
39
- attr_accessor :total_timeout
41
+ # A unique name for this remote.
42
+ attr_accessor :name
40
43
 
41
44
  # Headers for aiohttp.Clientsession
42
45
  attr_accessor :headers
43
46
 
44
- # Total number of simultaneous connections. If not set then the default value will be used.
45
- attr_accessor :download_concurrency
47
+ # Limits requests per second for each concurrent downloader
48
+ attr_accessor :rate_limit
46
49
 
47
- # The URL of an external content source.
48
- attr_accessor :url
50
+ # A PEM encoded client certificate used for authentication.
51
+ attr_accessor :client_cert
49
52
 
50
- # A unique name for this remote.
51
- attr_accessor :name
53
+ # 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.
54
+ attr_accessor :sock_connect_timeout
52
55
 
53
- # If True, TLS peer validation must be performed.
54
- attr_accessor :tls_validation
56
+ # List of hidden (write only) fields
57
+ attr_accessor :hidden_fields
55
58
 
56
59
  # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
57
60
  attr_accessor :connect_timeout
58
61
 
59
- # Timestamp of creation.
60
- attr_accessor :pulp_created
61
-
62
- # List of hidden (write only) fields
63
- attr_accessor :hidden_fields
62
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
63
+ attr_accessor :total_timeout
64
64
 
65
- attr_accessor :pulp_href
65
+ attr_accessor :pulp_labels
66
66
 
67
- # 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.
68
- attr_accessor :sock_read_timeout
67
+ # The proxy URL. Format: scheme://host:port
68
+ attr_accessor :proxy_url
69
69
 
70
- # 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.
71
- attr_accessor :sock_connect_timeout
70
+ # Total number of simultaneous connections. If not set then the default value will be used.
71
+ attr_accessor :download_concurrency
72
72
 
73
73
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
74
74
  attr_accessor :metadata_only
@@ -79,25 +79,25 @@ module PulpAnsibleClient
79
79
  # Attribute mapping from ruby-style variable name to JSON key.
80
80
  def self.attribute_map
81
81
  {
82
- :'pulp_last_updated' => :'pulp_last_updated',
83
- :'client_cert' => :'client_cert',
84
- :'rate_limit' => :'rate_limit',
85
82
  :'ca_cert' => :'ca_cert',
86
- :'pulp_labels' => :'pulp_labels',
87
- :'proxy_url' => :'proxy_url',
88
- :'max_retries' => :'max_retries',
89
- :'total_timeout' => :'total_timeout',
90
- :'headers' => :'headers',
91
- :'download_concurrency' => :'download_concurrency',
83
+ :'pulp_last_updated' => :'pulp_last_updated',
92
84
  :'url' => :'url',
93
- :'name' => :'name',
94
85
  :'tls_validation' => :'tls_validation',
95
- :'connect_timeout' => :'connect_timeout',
96
- :'pulp_created' => :'pulp_created',
97
- :'hidden_fields' => :'hidden_fields',
98
86
  :'pulp_href' => :'pulp_href',
99
87
  :'sock_read_timeout' => :'sock_read_timeout',
88
+ :'pulp_created' => :'pulp_created',
89
+ :'max_retries' => :'max_retries',
90
+ :'name' => :'name',
91
+ :'headers' => :'headers',
92
+ :'rate_limit' => :'rate_limit',
93
+ :'client_cert' => :'client_cert',
100
94
  :'sock_connect_timeout' => :'sock_connect_timeout',
95
+ :'hidden_fields' => :'hidden_fields',
96
+ :'connect_timeout' => :'connect_timeout',
97
+ :'total_timeout' => :'total_timeout',
98
+ :'pulp_labels' => :'pulp_labels',
99
+ :'proxy_url' => :'proxy_url',
100
+ :'download_concurrency' => :'download_concurrency',
101
101
  :'metadata_only' => :'metadata_only',
102
102
  :'git_ref' => :'git_ref'
103
103
  }
@@ -106,25 +106,25 @@ module PulpAnsibleClient
106
106
  # Attribute type mapping.
107
107
  def self.openapi_types
108
108
  {
109
- :'pulp_last_updated' => :'DateTime',
110
- :'client_cert' => :'String',
111
- :'rate_limit' => :'Integer',
112
109
  :'ca_cert' => :'String',
113
- :'pulp_labels' => :'Hash<String, String>',
114
- :'proxy_url' => :'String',
115
- :'max_retries' => :'Integer',
116
- :'total_timeout' => :'Float',
117
- :'headers' => :'Array<Object>',
118
- :'download_concurrency' => :'Integer',
110
+ :'pulp_last_updated' => :'DateTime',
119
111
  :'url' => :'String',
120
- :'name' => :'String',
121
112
  :'tls_validation' => :'Boolean',
122
- :'connect_timeout' => :'Float',
123
- :'pulp_created' => :'DateTime',
124
- :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
125
113
  :'pulp_href' => :'String',
126
114
  :'sock_read_timeout' => :'Float',
115
+ :'pulp_created' => :'DateTime',
116
+ :'max_retries' => :'Integer',
117
+ :'name' => :'String',
118
+ :'headers' => :'Array<Object>',
119
+ :'rate_limit' => :'Integer',
120
+ :'client_cert' => :'String',
127
121
  :'sock_connect_timeout' => :'Float',
122
+ :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
123
+ :'connect_timeout' => :'Float',
124
+ :'total_timeout' => :'Float',
125
+ :'pulp_labels' => :'Hash<String, String>',
126
+ :'proxy_url' => :'String',
127
+ :'download_concurrency' => :'Integer',
128
128
  :'metadata_only' => :'Boolean',
129
129
  :'git_ref' => :'String'
130
130
  }
@@ -133,16 +133,16 @@ module PulpAnsibleClient
133
133
  # List of attributes with nullable: true
134
134
  def self.openapi_nullable
135
135
  Set.new([
136
- :'client_cert',
137
- :'rate_limit',
138
136
  :'ca_cert',
139
- :'proxy_url',
137
+ :'sock_read_timeout',
140
138
  :'max_retries',
139
+ :'rate_limit',
140
+ :'client_cert',
141
+ :'sock_connect_timeout',
142
+ :'connect_timeout',
141
143
  :'total_timeout',
144
+ :'proxy_url',
142
145
  :'download_concurrency',
143
- :'connect_timeout',
144
- :'sock_read_timeout',
145
- :'sock_connect_timeout',
146
146
  ])
147
147
  end
148
148
 
@@ -161,38 +161,40 @@ module PulpAnsibleClient
161
161
  h[k.to_sym] = v
162
162
  }
163
163
 
164
+ if attributes.key?(:'ca_cert')
165
+ self.ca_cert = attributes[:'ca_cert']
166
+ end
167
+
164
168
  if attributes.key?(:'pulp_last_updated')
165
169
  self.pulp_last_updated = attributes[:'pulp_last_updated']
166
170
  end
167
171
 
168
- if attributes.key?(:'client_cert')
169
- self.client_cert = attributes[:'client_cert']
172
+ if attributes.key?(:'url')
173
+ self.url = attributes[:'url']
170
174
  end
171
175
 
172
- if attributes.key?(:'rate_limit')
173
- self.rate_limit = attributes[:'rate_limit']
176
+ if attributes.key?(:'tls_validation')
177
+ self.tls_validation = attributes[:'tls_validation']
174
178
  end
175
179
 
176
- if attributes.key?(:'ca_cert')
177
- self.ca_cert = attributes[:'ca_cert']
180
+ if attributes.key?(:'pulp_href')
181
+ self.pulp_href = attributes[:'pulp_href']
178
182
  end
179
183
 
180
- if attributes.key?(:'pulp_labels')
181
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
182
- self.pulp_labels = value
183
- end
184
+ if attributes.key?(:'sock_read_timeout')
185
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
184
186
  end
185
187
 
186
- if attributes.key?(:'proxy_url')
187
- self.proxy_url = attributes[:'proxy_url']
188
+ if attributes.key?(:'pulp_created')
189
+ self.pulp_created = attributes[:'pulp_created']
188
190
  end
189
191
 
190
192
  if attributes.key?(:'max_retries')
191
193
  self.max_retries = attributes[:'max_retries']
192
194
  end
193
195
 
194
- if attributes.key?(:'total_timeout')
195
- self.total_timeout = attributes[:'total_timeout']
196
+ if attributes.key?(:'name')
197
+ self.name = attributes[:'name']
196
198
  end
197
199
 
198
200
  if attributes.key?(:'headers')
@@ -201,46 +203,44 @@ module PulpAnsibleClient
201
203
  end
202
204
  end
203
205
 
204
- if attributes.key?(:'download_concurrency')
205
- self.download_concurrency = attributes[:'download_concurrency']
206
+ if attributes.key?(:'rate_limit')
207
+ self.rate_limit = attributes[:'rate_limit']
206
208
  end
207
209
 
208
- if attributes.key?(:'url')
209
- self.url = attributes[:'url']
210
+ if attributes.key?(:'client_cert')
211
+ self.client_cert = attributes[:'client_cert']
210
212
  end
211
213
 
212
- if attributes.key?(:'name')
213
- self.name = attributes[:'name']
214
+ if attributes.key?(:'sock_connect_timeout')
215
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
214
216
  end
215
217
 
216
- if attributes.key?(:'tls_validation')
217
- self.tls_validation = attributes[:'tls_validation']
218
+ if attributes.key?(:'hidden_fields')
219
+ if (value = attributes[:'hidden_fields']).is_a?(Array)
220
+ self.hidden_fields = value
221
+ end
218
222
  end
219
223
 
220
224
  if attributes.key?(:'connect_timeout')
221
225
  self.connect_timeout = attributes[:'connect_timeout']
222
226
  end
223
227
 
224
- if attributes.key?(:'pulp_created')
225
- self.pulp_created = attributes[:'pulp_created']
228
+ if attributes.key?(:'total_timeout')
229
+ self.total_timeout = attributes[:'total_timeout']
226
230
  end
227
231
 
228
- if attributes.key?(:'hidden_fields')
229
- if (value = attributes[:'hidden_fields']).is_a?(Array)
230
- self.hidden_fields = value
232
+ if attributes.key?(:'pulp_labels')
233
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
234
+ self.pulp_labels = value
231
235
  end
232
236
  end
233
237
 
234
- if attributes.key?(:'pulp_href')
235
- self.pulp_href = attributes[:'pulp_href']
236
- end
237
-
238
- if attributes.key?(:'sock_read_timeout')
239
- self.sock_read_timeout = attributes[:'sock_read_timeout']
238
+ if attributes.key?(:'proxy_url')
239
+ self.proxy_url = attributes[:'proxy_url']
240
240
  end
241
241
 
242
- if attributes.key?(:'sock_connect_timeout')
243
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
242
+ if attributes.key?(:'download_concurrency')
243
+ self.download_concurrency = attributes[:'download_concurrency']
244
244
  end
245
245
 
246
246
  if attributes.key?(:'metadata_only')
@@ -256,32 +256,32 @@ module PulpAnsibleClient
256
256
  # @return Array for valid properties with the reasons
257
257
  def list_invalid_properties
258
258
  invalid_properties = Array.new
259
- if !@total_timeout.nil? && @total_timeout < 0.0
260
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
261
- end
262
-
263
- if !@download_concurrency.nil? && @download_concurrency < 1
264
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
265
- end
266
-
267
259
  if @url.nil?
268
260
  invalid_properties.push('invalid value for "url", url cannot be nil.')
269
261
  end
270
262
 
263
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
264
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
265
+ end
266
+
271
267
  if @name.nil?
272
268
  invalid_properties.push('invalid value for "name", name cannot be nil.')
273
269
  end
274
270
 
271
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
272
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
273
+ end
274
+
275
275
  if !@connect_timeout.nil? && @connect_timeout < 0.0
276
276
  invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
277
277
  end
278
278
 
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.')
279
+ if !@total_timeout.nil? && @total_timeout < 0.0
280
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
281
281
  end
282
282
 
283
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
284
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
283
+ if !@download_concurrency.nil? && @download_concurrency < 1
284
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
285
285
  end
286
286
 
287
287
  invalid_properties
@@ -290,34 +290,34 @@ module PulpAnsibleClient
290
290
  # Check to see if the all the properties in the model are valid
291
291
  # @return true if the model is valid
292
292
  def valid?
293
- return false if !@total_timeout.nil? && @total_timeout < 0.0
294
- return false if !@download_concurrency.nil? && @download_concurrency < 1
295
293
  return false if @url.nil?
296
- return false if @name.nil?
297
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
298
294
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
295
+ return false if @name.nil?
299
296
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
297
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
298
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
299
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
300
300
  true
301
301
  end
302
302
 
303
303
  # Custom attribute writer method with validation
304
- # @param [Object] total_timeout Value to be assigned
305
- def total_timeout=(total_timeout)
306
- if !total_timeout.nil? && total_timeout < 0.0
307
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
304
+ # @param [Object] sock_read_timeout Value to be assigned
305
+ def sock_read_timeout=(sock_read_timeout)
306
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
307
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
308
308
  end
309
309
 
310
- @total_timeout = total_timeout
310
+ @sock_read_timeout = sock_read_timeout
311
311
  end
312
312
 
313
313
  # Custom attribute writer method with validation
314
- # @param [Object] download_concurrency Value to be assigned
315
- def download_concurrency=(download_concurrency)
316
- if !download_concurrency.nil? && download_concurrency < 1
317
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
314
+ # @param [Object] sock_connect_timeout Value to be assigned
315
+ def sock_connect_timeout=(sock_connect_timeout)
316
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
317
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
318
318
  end
319
319
 
320
- @download_concurrency = download_concurrency
320
+ @sock_connect_timeout = sock_connect_timeout
321
321
  end
322
322
 
323
323
  # Custom attribute writer method with validation
@@ -331,23 +331,23 @@ module PulpAnsibleClient
331
331
  end
332
332
 
333
333
  # Custom attribute writer method with validation
334
- # @param [Object] sock_read_timeout Value to be assigned
335
- def sock_read_timeout=(sock_read_timeout)
336
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
337
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
334
+ # @param [Object] total_timeout Value to be assigned
335
+ def total_timeout=(total_timeout)
336
+ if !total_timeout.nil? && total_timeout < 0.0
337
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
338
338
  end
339
339
 
340
- @sock_read_timeout = sock_read_timeout
340
+ @total_timeout = total_timeout
341
341
  end
342
342
 
343
343
  # Custom attribute writer method with validation
344
- # @param [Object] sock_connect_timeout Value to be assigned
345
- def sock_connect_timeout=(sock_connect_timeout)
346
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
347
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
344
+ # @param [Object] download_concurrency Value to be assigned
345
+ def download_concurrency=(download_concurrency)
346
+ if !download_concurrency.nil? && download_concurrency < 1
347
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
348
348
  end
349
349
 
350
- @sock_connect_timeout = sock_connect_timeout
350
+ @download_concurrency = download_concurrency
351
351
  end
352
352
 
353
353
  # Checks equality by comparing each attribute.
@@ -355,25 +355,25 @@ module PulpAnsibleClient
355
355
  def ==(o)
356
356
  return true if self.equal?(o)
357
357
  self.class == o.class &&
358
- pulp_last_updated == o.pulp_last_updated &&
359
- client_cert == o.client_cert &&
360
- rate_limit == o.rate_limit &&
361
358
  ca_cert == o.ca_cert &&
362
- pulp_labels == o.pulp_labels &&
363
- proxy_url == o.proxy_url &&
364
- max_retries == o.max_retries &&
365
- total_timeout == o.total_timeout &&
366
- headers == o.headers &&
367
- download_concurrency == o.download_concurrency &&
359
+ pulp_last_updated == o.pulp_last_updated &&
368
360
  url == o.url &&
369
- name == o.name &&
370
361
  tls_validation == o.tls_validation &&
371
- connect_timeout == o.connect_timeout &&
372
- pulp_created == o.pulp_created &&
373
- hidden_fields == o.hidden_fields &&
374
362
  pulp_href == o.pulp_href &&
375
363
  sock_read_timeout == o.sock_read_timeout &&
364
+ pulp_created == o.pulp_created &&
365
+ max_retries == o.max_retries &&
366
+ name == o.name &&
367
+ headers == o.headers &&
368
+ rate_limit == o.rate_limit &&
369
+ client_cert == o.client_cert &&
376
370
  sock_connect_timeout == o.sock_connect_timeout &&
371
+ hidden_fields == o.hidden_fields &&
372
+ connect_timeout == o.connect_timeout &&
373
+ total_timeout == o.total_timeout &&
374
+ pulp_labels == o.pulp_labels &&
375
+ proxy_url == o.proxy_url &&
376
+ download_concurrency == o.download_concurrency &&
377
377
  metadata_only == o.metadata_only &&
378
378
  git_ref == o.git_ref
379
379
  end
@@ -387,7 +387,7 @@ module PulpAnsibleClient
387
387
  # Calculates hash code according to all attributes.
388
388
  # @return [Integer] Hash code
389
389
  def hash
390
- [pulp_last_updated, client_cert, rate_limit, ca_cert, pulp_labels, proxy_url, max_retries, total_timeout, headers, download_concurrency, url, name, tls_validation, connect_timeout, pulp_created, hidden_fields, pulp_href, sock_read_timeout, sock_connect_timeout, metadata_only, git_ref].hash
390
+ [ca_cert, pulp_last_updated, url, tls_validation, pulp_href, sock_read_timeout, pulp_created, max_retries, name, headers, rate_limit, client_cert, sock_connect_timeout, hidden_fields, connect_timeout, total_timeout, pulp_labels, proxy_url, download_concurrency, metadata_only, git_ref].hash
391
391
  end
392
392
 
393
393
  # Builds the object from hash
@@ -18,11 +18,11 @@ module PulpAnsibleClient
18
18
  # Artifact file representing the physical content
19
19
  attr_accessor :artifact
20
20
 
21
+ attr_accessor :pulp_href
22
+
21
23
  # Timestamp of creation.
22
24
  attr_accessor :pulp_created
23
25
 
24
- attr_accessor :pulp_href
25
-
26
26
  attr_accessor :version
27
27
 
28
28
  attr_accessor :name
@@ -33,8 +33,8 @@ module PulpAnsibleClient
33
33
  def self.attribute_map
34
34
  {
35
35
  :'artifact' => :'artifact',
36
- :'pulp_created' => :'pulp_created',
37
36
  :'pulp_href' => :'pulp_href',
37
+ :'pulp_created' => :'pulp_created',
38
38
  :'version' => :'version',
39
39
  :'name' => :'name',
40
40
  :'namespace' => :'namespace'
@@ -45,8 +45,8 @@ module PulpAnsibleClient
45
45
  def self.openapi_types
46
46
  {
47
47
  :'artifact' => :'String',
48
- :'pulp_created' => :'DateTime',
49
48
  :'pulp_href' => :'String',
49
+ :'pulp_created' => :'DateTime',
50
50
  :'version' => :'String',
51
51
  :'name' => :'String',
52
52
  :'namespace' => :'String'
@@ -78,14 +78,14 @@ module PulpAnsibleClient
78
78
  self.artifact = attributes[:'artifact']
79
79
  end
80
80
 
81
- if attributes.key?(:'pulp_created')
82
- self.pulp_created = attributes[:'pulp_created']
83
- end
84
-
85
81
  if attributes.key?(:'pulp_href')
86
82
  self.pulp_href = attributes[:'pulp_href']
87
83
  end
88
84
 
85
+ if attributes.key?(:'pulp_created')
86
+ self.pulp_created = attributes[:'pulp_created']
87
+ end
88
+
89
89
  if attributes.key?(:'version')
90
90
  self.version = attributes[:'version']
91
91
  end
@@ -138,8 +138,8 @@ module PulpAnsibleClient
138
138
  return true if self.equal?(o)
139
139
  self.class == o.class &&
140
140
  artifact == o.artifact &&
141
- pulp_created == o.pulp_created &&
142
141
  pulp_href == o.pulp_href &&
142
+ pulp_created == o.pulp_created &&
143
143
  version == o.version &&
144
144
  name == o.name &&
145
145
  namespace == o.namespace
@@ -154,7 +154,7 @@ module PulpAnsibleClient
154
154
  # Calculates hash code according to all attributes.
155
155
  # @return [Integer] Hash code
156
156
  def hash
157
- [artifact, pulp_created, pulp_href, version, name, namespace].hash
157
+ [artifact, pulp_href, pulp_created, version, name, namespace].hash
158
158
  end
159
159
 
160
160
  # Builds the object from hash