pulp_ansible_client 0.21.11 → 0.21.12

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.
@@ -15,60 +15,60 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class AnsibleGitRemoteResponse
18
- # Timestamp of creation.
19
- attr_accessor :pulp_created
20
-
21
- # List of hidden (write only) fields
22
- attr_accessor :hidden_fields
18
+ # If True, TLS peer validation must be performed.
19
+ attr_accessor :tls_validation
23
20
 
24
- attr_accessor :pulp_href
21
+ # 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.
22
+ attr_accessor :sock_connect_timeout
25
23
 
26
- # 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.
27
- attr_accessor :sock_read_timeout
24
+ # The URL of an external content source.
25
+ attr_accessor :url
28
26
 
29
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
30
- attr_accessor :total_timeout
27
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
28
+ attr_accessor :ca_cert
31
29
 
32
- # 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.
33
- attr_accessor :sock_connect_timeout
30
+ attr_accessor :pulp_href
34
31
 
35
- # A PEM encoded client certificate used for authentication.
36
- attr_accessor :client_cert
32
+ # A unique name for this remote.
33
+ attr_accessor :name
37
34
 
38
- # Limits requests per second for each concurrent downloader
39
- attr_accessor :rate_limit
35
+ # Headers for aiohttp.Clientsession
36
+ attr_accessor :headers
40
37
 
41
- # The URL of an external content source.
42
- attr_accessor :url
38
+ # 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.
39
+ attr_accessor :sock_read_timeout
43
40
 
44
41
  # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
45
42
  attr_accessor :max_retries
46
43
 
47
- # If True, TLS peer validation must be performed.
48
- attr_accessor :tls_validation
44
+ attr_accessor :pulp_labels
49
45
 
50
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
51
- attr_accessor :ca_cert
46
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
47
+ attr_accessor :connect_timeout
48
+
49
+ # The proxy URL. Format: scheme://host:port
50
+ attr_accessor :proxy_url
51
+
52
+ # A PEM encoded client certificate used for authentication.
53
+ attr_accessor :client_cert
52
54
 
53
55
  # Timestamp of the most recent update of the remote.
54
56
  attr_accessor :pulp_last_updated
55
57
 
56
- # Total number of simultaneous connections. If not set then the default value will be used.
57
- attr_accessor :download_concurrency
58
-
59
- attr_accessor :pulp_labels
58
+ # Limits requests per second for each concurrent downloader
59
+ attr_accessor :rate_limit
60
60
 
61
- # Headers for aiohttp.Clientsession
62
- attr_accessor :headers
61
+ # Timestamp of creation.
62
+ attr_accessor :pulp_created
63
63
 
64
- # A unique name for this remote.
65
- attr_accessor :name
64
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
65
+ attr_accessor :total_timeout
66
66
 
67
- # The proxy URL. Format: scheme://host:port
68
- attr_accessor :proxy_url
67
+ # Total number of simultaneous connections. If not set then the default value will be used.
68
+ attr_accessor :download_concurrency
69
69
 
70
- # aiohttp.ClientTimeout.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 :connect_timeout
70
+ # List of hidden (write only) fields
71
+ attr_accessor :hidden_fields
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_created' => :'pulp_created',
83
- :'hidden_fields' => :'hidden_fields',
84
- :'pulp_href' => :'pulp_href',
85
- :'sock_read_timeout' => :'sock_read_timeout',
86
- :'total_timeout' => :'total_timeout',
82
+ :'tls_validation' => :'tls_validation',
87
83
  :'sock_connect_timeout' => :'sock_connect_timeout',
88
- :'client_cert' => :'client_cert',
89
- :'rate_limit' => :'rate_limit',
90
84
  :'url' => :'url',
91
- :'max_retries' => :'max_retries',
92
- :'tls_validation' => :'tls_validation',
93
85
  :'ca_cert' => :'ca_cert',
94
- :'pulp_last_updated' => :'pulp_last_updated',
95
- :'download_concurrency' => :'download_concurrency',
96
- :'pulp_labels' => :'pulp_labels',
97
- :'headers' => :'headers',
86
+ :'pulp_href' => :'pulp_href',
98
87
  :'name' => :'name',
99
- :'proxy_url' => :'proxy_url',
88
+ :'headers' => :'headers',
89
+ :'sock_read_timeout' => :'sock_read_timeout',
90
+ :'max_retries' => :'max_retries',
91
+ :'pulp_labels' => :'pulp_labels',
100
92
  :'connect_timeout' => :'connect_timeout',
93
+ :'proxy_url' => :'proxy_url',
94
+ :'client_cert' => :'client_cert',
95
+ :'pulp_last_updated' => :'pulp_last_updated',
96
+ :'rate_limit' => :'rate_limit',
97
+ :'pulp_created' => :'pulp_created',
98
+ :'total_timeout' => :'total_timeout',
99
+ :'download_concurrency' => :'download_concurrency',
100
+ :'hidden_fields' => :'hidden_fields',
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_created' => :'DateTime',
110
- :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
111
- :'pulp_href' => :'String',
112
- :'sock_read_timeout' => :'Float',
113
- :'total_timeout' => :'Float',
109
+ :'tls_validation' => :'Boolean',
114
110
  :'sock_connect_timeout' => :'Float',
115
- :'client_cert' => :'String',
116
- :'rate_limit' => :'Integer',
117
111
  :'url' => :'String',
118
- :'max_retries' => :'Integer',
119
- :'tls_validation' => :'Boolean',
120
112
  :'ca_cert' => :'String',
121
- :'pulp_last_updated' => :'DateTime',
122
- :'download_concurrency' => :'Integer',
123
- :'pulp_labels' => :'Hash<String, String>',
124
- :'headers' => :'Array<Object>',
113
+ :'pulp_href' => :'String',
125
114
  :'name' => :'String',
126
- :'proxy_url' => :'String',
115
+ :'headers' => :'Array<Object>',
116
+ :'sock_read_timeout' => :'Float',
117
+ :'max_retries' => :'Integer',
118
+ :'pulp_labels' => :'Hash<String, String>',
127
119
  :'connect_timeout' => :'Float',
120
+ :'proxy_url' => :'String',
121
+ :'client_cert' => :'String',
122
+ :'pulp_last_updated' => :'DateTime',
123
+ :'rate_limit' => :'Integer',
124
+ :'pulp_created' => :'DateTime',
125
+ :'total_timeout' => :'Float',
126
+ :'download_concurrency' => :'Integer',
127
+ :'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
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
- :'sock_read_timeout',
137
- :'total_timeout',
138
136
  :'sock_connect_timeout',
137
+ :'ca_cert',
138
+ :'sock_read_timeout',
139
+ :'max_retries',
140
+ :'connect_timeout',
141
+ :'proxy_url',
139
142
  :'client_cert',
140
143
  :'rate_limit',
141
- :'max_retries',
142
- :'ca_cert',
144
+ :'total_timeout',
143
145
  :'download_concurrency',
144
- :'proxy_url',
145
- :'connect_timeout',
146
146
  ])
147
147
  end
148
148
 
@@ -161,86 +161,86 @@ module PulpAnsibleClient
161
161
  h[k.to_sym] = v
162
162
  }
163
163
 
164
- if attributes.key?(:'pulp_created')
165
- self.pulp_created = attributes[:'pulp_created']
166
- end
167
-
168
- if attributes.key?(:'hidden_fields')
169
- if (value = attributes[:'hidden_fields']).is_a?(Array)
170
- self.hidden_fields = value
171
- end
164
+ if attributes.key?(:'tls_validation')
165
+ self.tls_validation = attributes[:'tls_validation']
172
166
  end
173
167
 
174
- if attributes.key?(:'pulp_href')
175
- self.pulp_href = attributes[:'pulp_href']
168
+ if attributes.key?(:'sock_connect_timeout')
169
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
176
170
  end
177
171
 
178
- if attributes.key?(:'sock_read_timeout')
179
- self.sock_read_timeout = attributes[:'sock_read_timeout']
172
+ if attributes.key?(:'url')
173
+ self.url = attributes[:'url']
180
174
  end
181
175
 
182
- if attributes.key?(:'total_timeout')
183
- self.total_timeout = attributes[:'total_timeout']
176
+ if attributes.key?(:'ca_cert')
177
+ self.ca_cert = attributes[:'ca_cert']
184
178
  end
185
179
 
186
- if attributes.key?(:'sock_connect_timeout')
187
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
180
+ if attributes.key?(:'pulp_href')
181
+ self.pulp_href = attributes[:'pulp_href']
188
182
  end
189
183
 
190
- if attributes.key?(:'client_cert')
191
- self.client_cert = attributes[:'client_cert']
184
+ if attributes.key?(:'name')
185
+ self.name = attributes[:'name']
192
186
  end
193
187
 
194
- if attributes.key?(:'rate_limit')
195
- self.rate_limit = attributes[:'rate_limit']
188
+ if attributes.key?(:'headers')
189
+ if (value = attributes[:'headers']).is_a?(Array)
190
+ self.headers = value
191
+ end
196
192
  end
197
193
 
198
- if attributes.key?(:'url')
199
- self.url = attributes[:'url']
194
+ if attributes.key?(:'sock_read_timeout')
195
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
200
196
  end
201
197
 
202
198
  if attributes.key?(:'max_retries')
203
199
  self.max_retries = attributes[:'max_retries']
204
200
  end
205
201
 
206
- if attributes.key?(:'tls_validation')
207
- self.tls_validation = attributes[:'tls_validation']
202
+ if attributes.key?(:'pulp_labels')
203
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
204
+ self.pulp_labels = value
205
+ end
208
206
  end
209
207
 
210
- if attributes.key?(:'ca_cert')
211
- self.ca_cert = attributes[:'ca_cert']
208
+ if attributes.key?(:'connect_timeout')
209
+ self.connect_timeout = attributes[:'connect_timeout']
212
210
  end
213
211
 
214
- if attributes.key?(:'pulp_last_updated')
215
- self.pulp_last_updated = attributes[:'pulp_last_updated']
212
+ if attributes.key?(:'proxy_url')
213
+ self.proxy_url = attributes[:'proxy_url']
216
214
  end
217
215
 
218
- if attributes.key?(:'download_concurrency')
219
- self.download_concurrency = attributes[:'download_concurrency']
216
+ if attributes.key?(:'client_cert')
217
+ self.client_cert = attributes[:'client_cert']
220
218
  end
221
219
 
222
- if attributes.key?(:'pulp_labels')
223
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
224
- self.pulp_labels = value
225
- end
220
+ if attributes.key?(:'pulp_last_updated')
221
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
226
222
  end
227
223
 
228
- if attributes.key?(:'headers')
229
- if (value = attributes[:'headers']).is_a?(Array)
230
- self.headers = value
231
- end
224
+ if attributes.key?(:'rate_limit')
225
+ self.rate_limit = attributes[:'rate_limit']
232
226
  end
233
227
 
234
- if attributes.key?(:'name')
235
- self.name = attributes[:'name']
228
+ if attributes.key?(:'pulp_created')
229
+ self.pulp_created = attributes[:'pulp_created']
236
230
  end
237
231
 
238
- if attributes.key?(:'proxy_url')
239
- self.proxy_url = attributes[:'proxy_url']
232
+ if attributes.key?(:'total_timeout')
233
+ self.total_timeout = attributes[:'total_timeout']
240
234
  end
241
235
 
242
- if attributes.key?(:'connect_timeout')
243
- self.connect_timeout = attributes[:'connect_timeout']
236
+ if attributes.key?(:'download_concurrency')
237
+ self.download_concurrency = attributes[:'download_concurrency']
238
+ end
239
+
240
+ if attributes.key?(:'hidden_fields')
241
+ if (value = attributes[:'hidden_fields']).is_a?(Array)
242
+ self.hidden_fields = value
243
+ end
244
244
  end
245
245
 
246
246
  if attributes.key?(:'metadata_only')
@@ -256,14 +256,6 @@ 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 !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
260
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
261
- end
262
-
263
- if !@total_timeout.nil? && @total_timeout < 0.0
264
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
265
- end
266
-
267
259
  if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
268
260
  invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
269
261
  end
@@ -272,34 +264,52 @@ module PulpAnsibleClient
272
264
  invalid_properties.push('invalid value for "url", url cannot be nil.')
273
265
  end
274
266
 
275
- if !@download_concurrency.nil? && @download_concurrency < 1
276
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
277
- end
278
-
279
267
  if @name.nil?
280
268
  invalid_properties.push('invalid value for "name", name cannot be nil.')
281
269
  end
282
270
 
271
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
272
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
273
+ end
274
+
283
275
  if !@connect_timeout.nil? && @connect_timeout < 0.0
284
276
  invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
285
277
  end
286
278
 
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
+ end
282
+
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
+ end
286
+
287
287
  invalid_properties
288
288
  end
289
289
 
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 !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
294
- return false if !@total_timeout.nil? && @total_timeout < 0.0
295
293
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
296
294
  return false if @url.nil?
297
- return false if !@download_concurrency.nil? && @download_concurrency < 1
298
295
  return false if @name.nil?
296
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
299
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
+ # Custom attribute writer method with validation
304
+ # @param [Object] sock_connect_timeout Value to be assigned
305
+ def sock_connect_timeout=(sock_connect_timeout)
306
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
307
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
308
+ end
309
+
310
+ @sock_connect_timeout = sock_connect_timeout
311
+ end
312
+
303
313
  # Custom attribute writer method with validation
304
314
  # @param [Object] sock_read_timeout Value to be assigned
305
315
  def sock_read_timeout=(sock_read_timeout)
@@ -311,23 +321,23 @@ module PulpAnsibleClient
311
321
  end
312
322
 
313
323
  # Custom attribute writer method with validation
314
- # @param [Object] total_timeout Value to be assigned
315
- def total_timeout=(total_timeout)
316
- if !total_timeout.nil? && total_timeout < 0.0
317
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
324
+ # @param [Object] connect_timeout Value to be assigned
325
+ def connect_timeout=(connect_timeout)
326
+ if !connect_timeout.nil? && connect_timeout < 0.0
327
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
318
328
  end
319
329
 
320
- @total_timeout = total_timeout
330
+ @connect_timeout = connect_timeout
321
331
  end
322
332
 
323
333
  # Custom attribute writer method with validation
324
- # @param [Object] sock_connect_timeout Value to be assigned
325
- def sock_connect_timeout=(sock_connect_timeout)
326
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
327
- fail ArgumentError, 'invalid value for "sock_connect_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.'
328
338
  end
329
339
 
330
- @sock_connect_timeout = sock_connect_timeout
340
+ @total_timeout = total_timeout
331
341
  end
332
342
 
333
343
  # Custom attribute writer method with validation
@@ -340,40 +350,30 @@ module PulpAnsibleClient
340
350
  @download_concurrency = download_concurrency
341
351
  end
342
352
 
343
- # Custom attribute writer method with validation
344
- # @param [Object] connect_timeout Value to be assigned
345
- def connect_timeout=(connect_timeout)
346
- if !connect_timeout.nil? && connect_timeout < 0.0
347
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
348
- end
349
-
350
- @connect_timeout = connect_timeout
351
- end
352
-
353
353
  # Checks equality by comparing each attribute.
354
354
  # @param [Object] Object to be compared
355
355
  def ==(o)
356
356
  return true if self.equal?(o)
357
357
  self.class == o.class &&
358
- pulp_created == o.pulp_created &&
359
- hidden_fields == o.hidden_fields &&
360
- pulp_href == o.pulp_href &&
361
- sock_read_timeout == o.sock_read_timeout &&
362
- total_timeout == o.total_timeout &&
358
+ tls_validation == o.tls_validation &&
363
359
  sock_connect_timeout == o.sock_connect_timeout &&
364
- client_cert == o.client_cert &&
365
- rate_limit == o.rate_limit &&
366
360
  url == o.url &&
367
- max_retries == o.max_retries &&
368
- tls_validation == o.tls_validation &&
369
361
  ca_cert == o.ca_cert &&
370
- pulp_last_updated == o.pulp_last_updated &&
371
- download_concurrency == o.download_concurrency &&
372
- pulp_labels == o.pulp_labels &&
373
- headers == o.headers &&
362
+ pulp_href == o.pulp_href &&
374
363
  name == o.name &&
375
- proxy_url == o.proxy_url &&
364
+ headers == o.headers &&
365
+ sock_read_timeout == o.sock_read_timeout &&
366
+ max_retries == o.max_retries &&
367
+ pulp_labels == o.pulp_labels &&
376
368
  connect_timeout == o.connect_timeout &&
369
+ proxy_url == o.proxy_url &&
370
+ client_cert == o.client_cert &&
371
+ pulp_last_updated == o.pulp_last_updated &&
372
+ rate_limit == o.rate_limit &&
373
+ pulp_created == o.pulp_created &&
374
+ total_timeout == o.total_timeout &&
375
+ download_concurrency == o.download_concurrency &&
376
+ hidden_fields == o.hidden_fields &&
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_created, hidden_fields, pulp_href, sock_read_timeout, total_timeout, sock_connect_timeout, client_cert, rate_limit, url, max_retries, tls_validation, ca_cert, pulp_last_updated, download_concurrency, pulp_labels, headers, name, proxy_url, connect_timeout, metadata_only, git_ref].hash
390
+ [tls_validation, sock_connect_timeout, url, ca_cert, pulp_href, name, headers, sock_read_timeout, max_retries, pulp_labels, connect_timeout, proxy_url, client_cert, pulp_last_updated, rate_limit, pulp_created, total_timeout, download_concurrency, hidden_fields, metadata_only, git_ref].hash
391
391
  end
392
392
 
393
393
  # Builds the object from hash
@@ -15,6 +15,9 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Role versions.
17
17
  class AnsibleRoleResponse
18
+ # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
19
+ attr_accessor :pulp_last_updated
20
+
18
21
  # Timestamp of creation.
19
22
  attr_accessor :pulp_created
20
23
 
@@ -23,9 +26,6 @@ module PulpAnsibleClient
23
26
 
24
27
  attr_accessor :pulp_href
25
28
 
26
- # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
27
- attr_accessor :pulp_last_updated
28
-
29
29
  attr_accessor :version
30
30
 
31
31
  attr_accessor :name
@@ -35,10 +35,10 @@ module PulpAnsibleClient
35
35
  # Attribute mapping from ruby-style variable name to JSON key.
36
36
  def self.attribute_map
37
37
  {
38
+ :'pulp_last_updated' => :'pulp_last_updated',
38
39
  :'pulp_created' => :'pulp_created',
39
40
  :'artifact' => :'artifact',
40
41
  :'pulp_href' => :'pulp_href',
41
- :'pulp_last_updated' => :'pulp_last_updated',
42
42
  :'version' => :'version',
43
43
  :'name' => :'name',
44
44
  :'namespace' => :'namespace'
@@ -48,10 +48,10 @@ module PulpAnsibleClient
48
48
  # Attribute type mapping.
49
49
  def self.openapi_types
50
50
  {
51
+ :'pulp_last_updated' => :'DateTime',
51
52
  :'pulp_created' => :'DateTime',
52
53
  :'artifact' => :'String',
53
54
  :'pulp_href' => :'String',
54
- :'pulp_last_updated' => :'DateTime',
55
55
  :'version' => :'String',
56
56
  :'name' => :'String',
57
57
  :'namespace' => :'String'
@@ -79,6 +79,10 @@ module PulpAnsibleClient
79
79
  h[k.to_sym] = v
80
80
  }
81
81
 
82
+ if attributes.key?(:'pulp_last_updated')
83
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
84
+ end
85
+
82
86
  if attributes.key?(:'pulp_created')
83
87
  self.pulp_created = attributes[:'pulp_created']
84
88
  end
@@ -91,10 +95,6 @@ module PulpAnsibleClient
91
95
  self.pulp_href = attributes[:'pulp_href']
92
96
  end
93
97
 
94
- if attributes.key?(:'pulp_last_updated')
95
- self.pulp_last_updated = attributes[:'pulp_last_updated']
96
- end
97
-
98
98
  if attributes.key?(:'version')
99
99
  self.version = attributes[:'version']
100
100
  end
@@ -146,10 +146,10 @@ module PulpAnsibleClient
146
146
  def ==(o)
147
147
  return true if self.equal?(o)
148
148
  self.class == o.class &&
149
+ pulp_last_updated == o.pulp_last_updated &&
149
150
  pulp_created == o.pulp_created &&
150
151
  artifact == o.artifact &&
151
152
  pulp_href == o.pulp_href &&
152
- pulp_last_updated == o.pulp_last_updated &&
153
153
  version == o.version &&
154
154
  name == o.name &&
155
155
  namespace == o.namespace
@@ -164,7 +164,7 @@ module PulpAnsibleClient
164
164
  # Calculates hash code according to all attributes.
165
165
  # @return [Integer] Hash code
166
166
  def hash
167
- [pulp_created, artifact, pulp_href, pulp_last_updated, version, name, namespace].hash
167
+ [pulp_last_updated, pulp_created, artifact, pulp_href, version, name, namespace].hash
168
168
  end
169
169
 
170
170
  # Builds the object from hash