pulp_ansible_client 0.28.6 → 0.28.8

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