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