pulp_ansible_client 0.28.0 → 0.28.1

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