pulp_ansible_client 0.25.6 → 0.25.7

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