pulp_ansible_client 0.24.9 → 0.24.10

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