pulp_ansible_client 0.21.0 → 0.21.1

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