pulp_ansible_client 0.29.9 → 0.30.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 (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleCollectionRemote.md +3 -1
  4. data/docs/AnsibleCollectionRemoteResponse.md +2 -0
  5. data/docs/AnsibleCollectionVersionResponse.md +6 -6
  6. data/docs/AnsibleGitRemote.md +28 -28
  7. data/docs/AnsibleGitRemoteResponse.md +26 -26
  8. data/docs/AnsibleRole.md +4 -4
  9. data/docs/AnsibleRoleResponse.md +6 -6
  10. data/docs/ContentCollectionVersionsApi.md +8 -8
  11. data/docs/PatchedansibleCollectionRemote.md +3 -1
  12. data/docs/PatchedansibleGitRemote.md +28 -28
  13. data/docs/RemotesCollectionApi.md +2 -2
  14. data/docs/RemotesGitApi.md +2 -2
  15. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -12
  16. data/lib/pulp_ansible_client/api/remotes_collection_api.rb +3 -3
  17. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +30 -4
  18. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +27 -1
  19. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +27 -27
  20. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +250 -250
  21. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +176 -176
  22. data/lib/pulp_ansible_client/models/ansible_role.rb +18 -18
  23. data/lib/pulp_ansible_client/models/ansible_role_response.rb +27 -27
  24. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +30 -4
  25. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +239 -239
  26. data/lib/pulp_ansible_client/version.rb +1 -1
  27. data/spec/api/content_collection_versions_api_spec.rb +4 -4
  28. data/spec/api/remotes_collection_api_spec.rb +1 -1
  29. data/spec/models/ansible_collection_remote_response_spec.rb +6 -0
  30. data/spec/models/ansible_collection_remote_spec.rb +6 -0
  31. data/spec/models/ansible_collection_version_response_spec.rb +5 -5
  32. data/spec/models/ansible_git_remote_response_spec.rb +20 -20
  33. data/spec/models/ansible_git_remote_spec.rb +20 -20
  34. data/spec/models/ansible_role_response_spec.rb +5 -5
  35. data/spec/models/ansible_role_spec.rb +3 -3
  36. data/spec/models/patchedansible_collection_remote_spec.rb +6 -0
  37. data/spec/models/patchedansible_git_remote_spec.rb +20 -20
  38. metadata +2 -2
@@ -16,20 +16,32 @@ require 'time'
16
16
  module PulpAnsibleClient
17
17
  # A serializer for Git Collection Remotes.
18
18
  class AnsibleGitRemote
19
- # A PEM encoded private key used for authentication.
20
- attr_accessor :client_key
19
+ # 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.
20
+ attr_accessor :sock_connect_timeout
21
+
22
+ # Limits requests per second for each concurrent downloader
23
+ attr_accessor :rate_limit
24
+
25
+ # Total number of simultaneous connections. If not set then the default value will be used.
26
+ attr_accessor :download_concurrency
27
+
28
+ # A PEM encoded client certificate used for authentication.
29
+ attr_accessor :client_cert
30
+
31
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
32
+ attr_accessor :max_retries
21
33
 
22
34
  # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
23
35
  attr_accessor :proxy_password
24
36
 
37
+ # The URL of an external content source.
38
+ attr_accessor :url
39
+
25
40
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
26
41
  attr_accessor :total_timeout
27
42
 
28
- # The username to be used for authentication when syncing.
29
- attr_accessor :username
30
-
31
- # The proxy URL. Format: scheme://host:port
32
- attr_accessor :proxy_url
43
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
44
+ attr_accessor :ca_cert
33
45
 
34
46
  # The username to authenticte to the proxy.
35
47
  attr_accessor :proxy_username
@@ -37,43 +49,31 @@ module PulpAnsibleClient
37
49
  # Headers for aiohttp.Clientsession
38
50
  attr_accessor :headers
39
51
 
40
- attr_accessor :pulp_labels
41
-
42
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
43
- attr_accessor :connect_timeout
44
-
45
52
  # 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.
46
53
  attr_accessor :sock_read_timeout
47
54
 
48
- # A unique name for this remote.
49
- attr_accessor :name
50
-
51
- # The URL of an external content source.
52
- attr_accessor :url
55
+ # The proxy URL. Format: scheme://host:port
56
+ attr_accessor :proxy_url
53
57
 
54
- # 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.
55
- attr_accessor :sock_connect_timeout
58
+ # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
59
+ attr_accessor :password
56
60
 
57
- # A PEM encoded client certificate used for authentication.
58
- attr_accessor :client_cert
61
+ attr_accessor :pulp_labels
59
62
 
60
63
  # If True, TLS peer validation must be performed.
61
64
  attr_accessor :tls_validation
62
65
 
63
- # Limits requests per second for each concurrent downloader
64
- attr_accessor :rate_limit
65
-
66
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
67
- attr_accessor :max_retries
66
+ # A unique name for this remote.
67
+ attr_accessor :name
68
68
 
69
- # Total number of simultaneous connections. If not set then the default value will be used.
70
- attr_accessor :download_concurrency
69
+ # The username to be used for authentication when syncing.
70
+ attr_accessor :username
71
71
 
72
- # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
73
- attr_accessor :password
72
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
73
+ attr_accessor :connect_timeout
74
74
 
75
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
76
- attr_accessor :ca_cert
75
+ # A PEM encoded private key used for authentication.
76
+ attr_accessor :client_key
77
77
 
78
78
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
79
79
  attr_accessor :metadata_only
@@ -84,26 +84,26 @@ module PulpAnsibleClient
84
84
  # Attribute mapping from ruby-style variable name to JSON key.
85
85
  def self.attribute_map
86
86
  {
87
- :'client_key' => :'client_key',
87
+ :'sock_connect_timeout' => :'sock_connect_timeout',
88
+ :'rate_limit' => :'rate_limit',
89
+ :'download_concurrency' => :'download_concurrency',
90
+ :'client_cert' => :'client_cert',
91
+ :'max_retries' => :'max_retries',
88
92
  :'proxy_password' => :'proxy_password',
93
+ :'url' => :'url',
89
94
  :'total_timeout' => :'total_timeout',
90
- :'username' => :'username',
91
- :'proxy_url' => :'proxy_url',
95
+ :'ca_cert' => :'ca_cert',
92
96
  :'proxy_username' => :'proxy_username',
93
97
  :'headers' => :'headers',
94
- :'pulp_labels' => :'pulp_labels',
95
- :'connect_timeout' => :'connect_timeout',
96
98
  :'sock_read_timeout' => :'sock_read_timeout',
97
- :'name' => :'name',
98
- :'url' => :'url',
99
- :'sock_connect_timeout' => :'sock_connect_timeout',
100
- :'client_cert' => :'client_cert',
101
- :'tls_validation' => :'tls_validation',
102
- :'rate_limit' => :'rate_limit',
103
- :'max_retries' => :'max_retries',
104
- :'download_concurrency' => :'download_concurrency',
99
+ :'proxy_url' => :'proxy_url',
105
100
  :'password' => :'password',
106
- :'ca_cert' => :'ca_cert',
101
+ :'pulp_labels' => :'pulp_labels',
102
+ :'tls_validation' => :'tls_validation',
103
+ :'name' => :'name',
104
+ :'username' => :'username',
105
+ :'connect_timeout' => :'connect_timeout',
106
+ :'client_key' => :'client_key',
107
107
  :'metadata_only' => :'metadata_only',
108
108
  :'git_ref' => :'git_ref'
109
109
  }
@@ -117,26 +117,26 @@ module PulpAnsibleClient
117
117
  # Attribute type mapping.
118
118
  def self.openapi_types
119
119
  {
120
- :'client_key' => :'String',
120
+ :'sock_connect_timeout' => :'Float',
121
+ :'rate_limit' => :'Integer',
122
+ :'download_concurrency' => :'Integer',
123
+ :'client_cert' => :'String',
124
+ :'max_retries' => :'Integer',
121
125
  :'proxy_password' => :'String',
126
+ :'url' => :'String',
122
127
  :'total_timeout' => :'Float',
123
- :'username' => :'String',
124
- :'proxy_url' => :'String',
128
+ :'ca_cert' => :'String',
125
129
  :'proxy_username' => :'String',
126
130
  :'headers' => :'Array<Object>',
127
- :'pulp_labels' => :'Hash<String, String>',
128
- :'connect_timeout' => :'Float',
129
131
  :'sock_read_timeout' => :'Float',
130
- :'name' => :'String',
131
- :'url' => :'String',
132
- :'sock_connect_timeout' => :'Float',
133
- :'client_cert' => :'String',
134
- :'tls_validation' => :'Boolean',
135
- :'rate_limit' => :'Integer',
136
- :'max_retries' => :'Integer',
137
- :'download_concurrency' => :'Integer',
132
+ :'proxy_url' => :'String',
138
133
  :'password' => :'String',
139
- :'ca_cert' => :'String',
134
+ :'pulp_labels' => :'Hash<String, String>',
135
+ :'tls_validation' => :'Boolean',
136
+ :'name' => :'String',
137
+ :'username' => :'String',
138
+ :'connect_timeout' => :'Float',
139
+ :'client_key' => :'String',
140
140
  :'metadata_only' => :'Boolean',
141
141
  :'git_ref' => :'String'
142
142
  }
@@ -145,21 +145,21 @@ module PulpAnsibleClient
145
145
  # List of attributes with nullable: true
146
146
  def self.openapi_nullable
147
147
  Set.new([
148
- :'client_key',
148
+ :'sock_connect_timeout',
149
+ :'rate_limit',
150
+ :'download_concurrency',
151
+ :'client_cert',
152
+ :'max_retries',
149
153
  :'proxy_password',
150
154
  :'total_timeout',
151
- :'username',
152
- :'proxy_url',
155
+ :'ca_cert',
153
156
  :'proxy_username',
154
- :'connect_timeout',
155
157
  :'sock_read_timeout',
156
- :'sock_connect_timeout',
157
- :'client_cert',
158
- :'rate_limit',
159
- :'max_retries',
160
- :'download_concurrency',
158
+ :'proxy_url',
161
159
  :'password',
162
- :'ca_cert',
160
+ :'username',
161
+ :'connect_timeout',
162
+ :'client_key',
163
163
  ])
164
164
  end
165
165
 
@@ -178,24 +178,42 @@ module PulpAnsibleClient
178
178
  h[k.to_sym] = v
179
179
  }
180
180
 
181
- if attributes.key?(:'client_key')
182
- self.client_key = attributes[:'client_key']
181
+ if attributes.key?(:'sock_connect_timeout')
182
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
183
+ end
184
+
185
+ if attributes.key?(:'rate_limit')
186
+ self.rate_limit = attributes[:'rate_limit']
187
+ end
188
+
189
+ if attributes.key?(:'download_concurrency')
190
+ self.download_concurrency = attributes[:'download_concurrency']
191
+ end
192
+
193
+ if attributes.key?(:'client_cert')
194
+ self.client_cert = attributes[:'client_cert']
195
+ end
196
+
197
+ if attributes.key?(:'max_retries')
198
+ self.max_retries = attributes[:'max_retries']
183
199
  end
184
200
 
185
201
  if attributes.key?(:'proxy_password')
186
202
  self.proxy_password = attributes[:'proxy_password']
187
203
  end
188
204
 
189
- if attributes.key?(:'total_timeout')
190
- self.total_timeout = attributes[:'total_timeout']
205
+ if attributes.key?(:'url')
206
+ self.url = attributes[:'url']
207
+ else
208
+ self.url = nil
191
209
  end
192
210
 
193
- if attributes.key?(:'username')
194
- self.username = attributes[:'username']
211
+ if attributes.key?(:'total_timeout')
212
+ self.total_timeout = attributes[:'total_timeout']
195
213
  end
196
214
 
197
- if attributes.key?(:'proxy_url')
198
- self.proxy_url = attributes[:'proxy_url']
215
+ if attributes.key?(:'ca_cert')
216
+ self.ca_cert = attributes[:'ca_cert']
199
217
  end
200
218
 
201
219
  if attributes.key?(:'proxy_username')
@@ -208,62 +226,44 @@ module PulpAnsibleClient
208
226
  end
209
227
  end
210
228
 
211
- if attributes.key?(:'pulp_labels')
212
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
213
- self.pulp_labels = value
214
- end
215
- end
216
-
217
- if attributes.key?(:'connect_timeout')
218
- self.connect_timeout = attributes[:'connect_timeout']
219
- end
220
-
221
229
  if attributes.key?(:'sock_read_timeout')
222
230
  self.sock_read_timeout = attributes[:'sock_read_timeout']
223
231
  end
224
232
 
225
- if attributes.key?(:'name')
226
- self.name = attributes[:'name']
227
- else
228
- self.name = nil
229
- end
230
-
231
- if attributes.key?(:'url')
232
- self.url = attributes[:'url']
233
- else
234
- self.url = nil
233
+ if attributes.key?(:'proxy_url')
234
+ self.proxy_url = attributes[:'proxy_url']
235
235
  end
236
236
 
237
- if attributes.key?(:'sock_connect_timeout')
238
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
237
+ if attributes.key?(:'password')
238
+ self.password = attributes[:'password']
239
239
  end
240
240
 
241
- if attributes.key?(:'client_cert')
242
- self.client_cert = attributes[:'client_cert']
241
+ if attributes.key?(:'pulp_labels')
242
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
243
+ self.pulp_labels = value
244
+ end
243
245
  end
244
246
 
245
247
  if attributes.key?(:'tls_validation')
246
248
  self.tls_validation = attributes[:'tls_validation']
247
249
  end
248
250
 
249
- if attributes.key?(:'rate_limit')
250
- self.rate_limit = attributes[:'rate_limit']
251
- end
252
-
253
- if attributes.key?(:'max_retries')
254
- self.max_retries = attributes[:'max_retries']
251
+ if attributes.key?(:'name')
252
+ self.name = attributes[:'name']
253
+ else
254
+ self.name = nil
255
255
  end
256
256
 
257
- if attributes.key?(:'download_concurrency')
258
- self.download_concurrency = attributes[:'download_concurrency']
257
+ if attributes.key?(:'username')
258
+ self.username = attributes[:'username']
259
259
  end
260
260
 
261
- if attributes.key?(:'password')
262
- self.password = attributes[:'password']
261
+ if attributes.key?(:'connect_timeout')
262
+ self.connect_timeout = attributes[:'connect_timeout']
263
263
  end
264
264
 
265
- if attributes.key?(:'ca_cert')
266
- self.ca_cert = attributes[:'ca_cert']
265
+ if attributes.key?(:'client_key')
266
+ self.client_key = attributes[:'client_key']
267
267
  end
268
268
 
269
269
  if attributes.key?(:'metadata_only')
@@ -280,72 +280,72 @@ module PulpAnsibleClient
280
280
  def list_invalid_properties
281
281
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
282
282
  invalid_properties = Array.new
283
- if !@client_key.nil? && @client_key.to_s.length < 1
284
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
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.')
285
285
  end
286
286
 
287
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
288
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
287
+ if !@download_concurrency.nil? && @download_concurrency < 1
288
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
289
289
  end
290
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.')
291
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
292
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
293
293
  end
294
294
 
295
- if !@username.nil? && @username.to_s.length < 1
296
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
295
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
296
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
297
297
  end
298
298
 
299
- if !@proxy_url.nil? && @proxy_url.to_s.length < 1
300
- invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
299
+ if @url.nil?
300
+ invalid_properties.push('invalid value for "url", url cannot be nil.')
301
301
  end
302
302
 
303
- if !@proxy_username.nil? && @proxy_username.to_s.length < 1
304
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
303
+ if @url.to_s.length < 1
304
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
305
305
  end
306
306
 
307
- if !@connect_timeout.nil? && @connect_timeout < 0.0
308
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
307
+ if !@total_timeout.nil? && @total_timeout < 0.0
308
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
309
309
  end
310
310
 
311
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
312
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
311
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
312
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
313
313
  end
314
314
 
315
- if @name.nil?
316
- invalid_properties.push('invalid value for "name", name cannot be nil.')
315
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
316
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
317
317
  end
318
318
 
319
- if @name.to_s.length < 1
320
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
319
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
320
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
321
321
  end
322
322
 
323
- if @url.nil?
324
- invalid_properties.push('invalid value for "url", url cannot be nil.')
323
+ if !@proxy_url.nil? && @proxy_url.to_s.length < 1
324
+ invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
325
325
  end
326
326
 
327
- if @url.to_s.length < 1
328
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
327
+ if !@password.nil? && @password.to_s.length < 1
328
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
329
329
  end
330
330
 
331
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
332
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
331
+ if @name.nil?
332
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
333
333
  end
334
334
 
335
- if !@client_cert.nil? && @client_cert.to_s.length < 1
336
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
335
+ if @name.to_s.length < 1
336
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
337
337
  end
338
338
 
339
- if !@download_concurrency.nil? && @download_concurrency < 1
340
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
339
+ if !@username.nil? && @username.to_s.length < 1
340
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
341
341
  end
342
342
 
343
- if !@password.nil? && @password.to_s.length < 1
344
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
343
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
344
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
345
345
  end
346
346
 
347
- if !@ca_cert.nil? && @ca_cert.to_s.length < 1
348
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
347
+ if !@client_key.nil? && @client_key.to_s.length < 1
348
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
349
349
  end
350
350
 
351
351
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -359,35 +359,55 @@ module PulpAnsibleClient
359
359
  # @return true if the model is valid
360
360
  def valid?
361
361
  warn '[DEPRECATED] the `valid?` method is obsolete'
362
- return false if !@client_key.nil? && @client_key.to_s.length < 1
362
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
363
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
364
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
363
365
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
366
+ return false if @url.nil?
367
+ return false if @url.to_s.length < 1
364
368
  return false if !@total_timeout.nil? && @total_timeout < 0.0
365
- return false if !@username.nil? && @username.to_s.length < 1
366
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
369
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
367
370
  return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
368
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
369
371
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
372
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
373
+ return false if !@password.nil? && @password.to_s.length < 1
370
374
  return false if @name.nil?
371
375
  return false if @name.to_s.length < 1
372
- return false if @url.nil?
373
- return false if @url.to_s.length < 1
374
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
375
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
376
- return false if !@download_concurrency.nil? && @download_concurrency < 1
377
- return false if !@password.nil? && @password.to_s.length < 1
378
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
376
+ return false if !@username.nil? && @username.to_s.length < 1
377
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
378
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
379
379
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
380
380
  true
381
381
  end
382
382
 
383
383
  # Custom attribute writer method with validation
384
- # @param [Object] client_key Value to be assigned
385
- def client_key=(client_key)
386
- if !client_key.nil? && client_key.to_s.length < 1
387
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
384
+ # @param [Object] sock_connect_timeout Value to be assigned
385
+ def sock_connect_timeout=(sock_connect_timeout)
386
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
387
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
388
388
  end
389
389
 
390
- @client_key = client_key
390
+ @sock_connect_timeout = sock_connect_timeout
391
+ end
392
+
393
+ # Custom attribute writer method with validation
394
+ # @param [Object] download_concurrency Value to be assigned
395
+ def download_concurrency=(download_concurrency)
396
+ if !download_concurrency.nil? && download_concurrency < 1
397
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
398
+ end
399
+
400
+ @download_concurrency = download_concurrency
401
+ end
402
+
403
+ # Custom attribute writer method with validation
404
+ # @param [Object] client_cert Value to be assigned
405
+ def client_cert=(client_cert)
406
+ if !client_cert.nil? && client_cert.to_s.length < 1
407
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
408
+ end
409
+
410
+ @client_cert = client_cert
391
411
  end
392
412
 
393
413
  # Custom attribute writer method with validation
@@ -401,33 +421,37 @@ module PulpAnsibleClient
401
421
  end
402
422
 
403
423
  # Custom attribute writer method with validation
404
- # @param [Object] total_timeout Value to be assigned
405
- def total_timeout=(total_timeout)
406
- if !total_timeout.nil? && total_timeout < 0.0
407
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
424
+ # @param [Object] url Value to be assigned
425
+ def url=(url)
426
+ if url.nil?
427
+ fail ArgumentError, 'url cannot be nil'
408
428
  end
409
429
 
410
- @total_timeout = total_timeout
430
+ if url.to_s.length < 1
431
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
432
+ end
433
+
434
+ @url = url
411
435
  end
412
436
 
413
437
  # Custom attribute writer method with validation
414
- # @param [Object] username Value to be assigned
415
- def username=(username)
416
- if !username.nil? && username.to_s.length < 1
417
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
438
+ # @param [Object] total_timeout Value to be assigned
439
+ def total_timeout=(total_timeout)
440
+ if !total_timeout.nil? && total_timeout < 0.0
441
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
418
442
  end
419
443
 
420
- @username = username
444
+ @total_timeout = total_timeout
421
445
  end
422
446
 
423
447
  # Custom attribute writer method with validation
424
- # @param [Object] proxy_url Value to be assigned
425
- def proxy_url=(proxy_url)
426
- if !proxy_url.nil? && proxy_url.to_s.length < 1
427
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
448
+ # @param [Object] ca_cert Value to be assigned
449
+ def ca_cert=(ca_cert)
450
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
451
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
428
452
  end
429
453
 
430
- @proxy_url = proxy_url
454
+ @ca_cert = ca_cert
431
455
  end
432
456
 
433
457
  # Custom attribute writer method with validation
@@ -440,16 +464,6 @@ module PulpAnsibleClient
440
464
  @proxy_username = proxy_username
441
465
  end
442
466
 
443
- # Custom attribute writer method with validation
444
- # @param [Object] connect_timeout Value to be assigned
445
- def connect_timeout=(connect_timeout)
446
- if !connect_timeout.nil? && connect_timeout < 0.0
447
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
448
- end
449
-
450
- @connect_timeout = connect_timeout
451
- end
452
-
453
467
  # Custom attribute writer method with validation
454
468
  # @param [Object] sock_read_timeout Value to be assigned
455
469
  def sock_read_timeout=(sock_read_timeout)
@@ -461,81 +475,67 @@ module PulpAnsibleClient
461
475
  end
462
476
 
463
477
  # Custom attribute writer method with validation
464
- # @param [Object] name Value to be assigned
465
- def name=(name)
466
- if name.nil?
467
- fail ArgumentError, 'name cannot be nil'
468
- end
469
-
470
- if name.to_s.length < 1
471
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
478
+ # @param [Object] proxy_url Value to be assigned
479
+ def proxy_url=(proxy_url)
480
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
481
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
472
482
  end
473
483
 
474
- @name = name
484
+ @proxy_url = proxy_url
475
485
  end
476
486
 
477
487
  # Custom attribute writer method with validation
478
- # @param [Object] url Value to be assigned
479
- def url=(url)
480
- if url.nil?
481
- fail ArgumentError, 'url cannot be nil'
482
- end
483
-
484
- if url.to_s.length < 1
485
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
488
+ # @param [Object] password Value to be assigned
489
+ def password=(password)
490
+ if !password.nil? && password.to_s.length < 1
491
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
486
492
  end
487
493
 
488
- @url = url
494
+ @password = password
489
495
  end
490
496
 
491
497
  # Custom attribute writer method with validation
492
- # @param [Object] sock_connect_timeout Value to be assigned
493
- def sock_connect_timeout=(sock_connect_timeout)
494
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
495
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
498
+ # @param [Object] name Value to be assigned
499
+ def name=(name)
500
+ if name.nil?
501
+ fail ArgumentError, 'name cannot be nil'
496
502
  end
497
503
 
498
- @sock_connect_timeout = sock_connect_timeout
499
- end
500
-
501
- # Custom attribute writer method with validation
502
- # @param [Object] client_cert Value to be assigned
503
- def client_cert=(client_cert)
504
- if !client_cert.nil? && client_cert.to_s.length < 1
505
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
504
+ if name.to_s.length < 1
505
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
506
506
  end
507
507
 
508
- @client_cert = client_cert
508
+ @name = name
509
509
  end
510
510
 
511
511
  # Custom attribute writer method with validation
512
- # @param [Object] download_concurrency Value to be assigned
513
- def download_concurrency=(download_concurrency)
514
- if !download_concurrency.nil? && download_concurrency < 1
515
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
512
+ # @param [Object] username Value to be assigned
513
+ def username=(username)
514
+ if !username.nil? && username.to_s.length < 1
515
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
516
516
  end
517
517
 
518
- @download_concurrency = download_concurrency
518
+ @username = username
519
519
  end
520
520
 
521
521
  # Custom attribute writer method with validation
522
- # @param [Object] password Value to be assigned
523
- def password=(password)
524
- if !password.nil? && password.to_s.length < 1
525
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
522
+ # @param [Object] connect_timeout Value to be assigned
523
+ def connect_timeout=(connect_timeout)
524
+ if !connect_timeout.nil? && connect_timeout < 0.0
525
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
526
526
  end
527
527
 
528
- @password = password
528
+ @connect_timeout = connect_timeout
529
529
  end
530
530
 
531
531
  # Custom attribute writer method with validation
532
- # @param [Object] ca_cert Value to be assigned
533
- def ca_cert=(ca_cert)
534
- if !ca_cert.nil? && ca_cert.to_s.length < 1
535
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
532
+ # @param [Object] client_key Value to be assigned
533
+ def client_key=(client_key)
534
+ if !client_key.nil? && client_key.to_s.length < 1
535
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
536
536
  end
537
537
 
538
- @ca_cert = ca_cert
538
+ @client_key = client_key
539
539
  end
540
540
 
541
541
  # Custom attribute writer method with validation
@@ -557,26 +557,26 @@ module PulpAnsibleClient
557
557
  def ==(o)
558
558
  return true if self.equal?(o)
559
559
  self.class == o.class &&
560
- client_key == o.client_key &&
560
+ sock_connect_timeout == o.sock_connect_timeout &&
561
+ rate_limit == o.rate_limit &&
562
+ download_concurrency == o.download_concurrency &&
563
+ client_cert == o.client_cert &&
564
+ max_retries == o.max_retries &&
561
565
  proxy_password == o.proxy_password &&
566
+ url == o.url &&
562
567
  total_timeout == o.total_timeout &&
563
- username == o.username &&
564
- proxy_url == o.proxy_url &&
568
+ ca_cert == o.ca_cert &&
565
569
  proxy_username == o.proxy_username &&
566
570
  headers == o.headers &&
567
- pulp_labels == o.pulp_labels &&
568
- connect_timeout == o.connect_timeout &&
569
571
  sock_read_timeout == o.sock_read_timeout &&
570
- name == o.name &&
571
- url == o.url &&
572
- sock_connect_timeout == o.sock_connect_timeout &&
573
- client_cert == o.client_cert &&
574
- tls_validation == o.tls_validation &&
575
- rate_limit == o.rate_limit &&
576
- max_retries == o.max_retries &&
577
- download_concurrency == o.download_concurrency &&
572
+ proxy_url == o.proxy_url &&
578
573
  password == o.password &&
579
- ca_cert == o.ca_cert &&
574
+ pulp_labels == o.pulp_labels &&
575
+ tls_validation == o.tls_validation &&
576
+ name == o.name &&
577
+ username == o.username &&
578
+ connect_timeout == o.connect_timeout &&
579
+ client_key == o.client_key &&
580
580
  metadata_only == o.metadata_only &&
581
581
  git_ref == o.git_ref
582
582
  end
@@ -590,7 +590,7 @@ module PulpAnsibleClient
590
590
  # Calculates hash code according to all attributes.
591
591
  # @return [Integer] Hash code
592
592
  def hash
593
- [client_key, proxy_password, total_timeout, username, proxy_url, proxy_username, headers, pulp_labels, connect_timeout, sock_read_timeout, name, url, sock_connect_timeout, client_cert, tls_validation, rate_limit, max_retries, download_concurrency, password, ca_cert, metadata_only, git_ref].hash
593
+ [sock_connect_timeout, rate_limit, download_concurrency, client_cert, max_retries, proxy_password, url, total_timeout, ca_cert, proxy_username, headers, sock_read_timeout, proxy_url, password, pulp_labels, tls_validation, name, username, connect_timeout, client_key, metadata_only, git_ref].hash
594
594
  end
595
595
 
596
596
  # Builds the object from hash