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 PatchedansibleGitRemote
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,88 +178,88 @@ 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')
214
208
  self.url = attributes[:'url']
215
209
  end
216
210
 
211
+ if attributes.key?(:'sock_connect_timeout')
212
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
213
+ end
214
+
215
+ if attributes.key?(:'max_retries')
216
+ self.max_retries = attributes[:'max_retries']
217
+ end
218
+
217
219
  if attributes.key?(:'proxy_url')
218
220
  self.proxy_url = attributes[:'proxy_url']
219
221
  end
220
222
 
221
- if attributes.key?(:'pulp_labels')
222
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
223
- self.pulp_labels = value
223
+ if attributes.key?(:'headers')
224
+ if (value = attributes[:'headers']).is_a?(Array)
225
+ self.headers = value
224
226
  end
225
227
  end
226
228
 
227
- if attributes.key?(:'ca_cert')
228
- self.ca_cert = attributes[:'ca_cert']
229
+ if attributes.key?(:'client_cert')
230
+ self.client_cert = attributes[:'client_cert']
229
231
  end
230
232
 
231
- if attributes.key?(:'name')
232
- self.name = attributes[:'name']
233
+ if attributes.key?(:'sock_read_timeout')
234
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
233
235
  end
234
236
 
235
237
  if attributes.key?(:'username')
236
238
  self.username = attributes[:'username']
237
239
  end
238
240
 
239
- if attributes.key?(:'tls_validation')
240
- self.tls_validation = attributes[:'tls_validation']
241
+ if attributes.key?(:'connect_timeout')
242
+ self.connect_timeout = attributes[:'connect_timeout']
241
243
  end
242
244
 
243
245
  if attributes.key?(:'rate_limit')
244
246
  self.rate_limit = attributes[:'rate_limit']
245
247
  end
246
248
 
247
- if attributes.key?(:'client_cert')
248
- self.client_cert = attributes[:'client_cert']
249
+ if attributes.key?(:'client_key')
250
+ self.client_key = attributes[:'client_key']
249
251
  end
250
252
 
251
- if attributes.key?(:'headers')
252
- if (value = attributes[:'headers']).is_a?(Array)
253
- self.headers = value
254
- end
253
+ if attributes.key?(:'total_timeout')
254
+ self.total_timeout = attributes[:'total_timeout']
255
255
  end
256
256
 
257
- if attributes.key?(:'client_key')
258
- self.client_key = attributes[:'client_key']
257
+ if attributes.key?(:'download_concurrency')
258
+ self.download_concurrency = attributes[:'download_concurrency']
259
259
  end
260
260
 
261
- if attributes.key?(:'proxy_username')
262
- self.proxy_username = attributes[:'proxy_username']
261
+ if attributes.key?(:'name')
262
+ self.name = attributes[:'name']
263
263
  end
264
264
 
265
265
  if attributes.key?(:'metadata_only')
@@ -276,60 +276,60 @@ module PulpAnsibleClient
276
276
  def list_invalid_properties
277
277
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
278
278
  invalid_properties = Array.new
279
- if !@password.nil? && @password.to_s.length < 1
280
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
281
- end
282
-
283
- if !@connect_timeout.nil? && @connect_timeout < 0.0
284
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
279
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
280
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
285
281
  end
286
282
 
287
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
288
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
283
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
284
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
289
285
  end
290
286
 
291
287
  if !@proxy_password.nil? && @proxy_password.to_s.length < 1
292
288
  invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
293
289
  end
294
290
 
295
- if !@total_timeout.nil? && @total_timeout < 0.0
296
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
297
- end
298
-
299
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
300
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
291
+ if !@password.nil? && @password.to_s.length < 1
292
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
301
293
  end
302
294
 
303
295
  if !@url.nil? && @url.to_s.length < 1
304
296
  invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
305
297
  end
306
298
 
299
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
300
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
301
+ end
302
+
307
303
  if !@proxy_url.nil? && @proxy_url.to_s.length < 1
308
304
  invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
309
305
  end
310
306
 
311
- if !@ca_cert.nil? && @ca_cert.to_s.length < 1
312
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
307
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
308
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
313
309
  end
314
310
 
315
- if !@name.nil? && @name.to_s.length < 1
316
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
311
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
312
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
317
313
  end
318
314
 
319
315
  if !@username.nil? && @username.to_s.length < 1
320
316
  invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
321
317
  end
322
318
 
323
- if !@client_cert.nil? && @client_cert.to_s.length < 1
324
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
319
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
320
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
325
321
  end
326
322
 
327
323
  if !@client_key.nil? && @client_key.to_s.length < 1
328
324
  invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
329
325
  end
330
326
 
331
- if !@proxy_username.nil? && @proxy_username.to_s.length < 1
332
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
327
+ if !@total_timeout.nil? && @total_timeout < 0.0
328
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
329
+ end
330
+
331
+ if !@name.nil? && @name.to_s.length < 1
332
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
333
333
  end
334
334
 
335
335
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -343,52 +343,42 @@ module PulpAnsibleClient
343
343
  # @return true if the model is valid
344
344
  def valid?
345
345
  warn '[DEPRECATED] the `valid?` method is obsolete'
346
- return false if !@password.nil? && @password.to_s.length < 1
347
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
348
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
346
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
347
+ return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
349
348
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
350
- return false if !@total_timeout.nil? && @total_timeout < 0.0
351
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
349
+ return false if !@password.nil? && @password.to_s.length < 1
352
350
  return false if !@url.nil? && @url.to_s.length < 1
351
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
353
352
  return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
354
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
355
- return false if !@name.nil? && @name.to_s.length < 1
356
- return false if !@username.nil? && @username.to_s.length < 1
357
353
  return false if !@client_cert.nil? && @client_cert.to_s.length < 1
354
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
355
+ return false if !@username.nil? && @username.to_s.length < 1
356
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
358
357
  return false if !@client_key.nil? && @client_key.to_s.length < 1
359
- return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
358
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
359
+ return false if !@name.nil? && @name.to_s.length < 1
360
360
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
361
361
  true
362
362
  end
363
363
 
364
364
  # Custom attribute writer method with validation
365
- # @param [Object] password Value to be assigned
366
- def password=(password)
367
- if !password.nil? && password.to_s.length < 1
368
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
369
- end
370
-
371
- @password = password
372
- end
373
-
374
- # Custom attribute writer method with validation
375
- # @param [Object] connect_timeout Value to be assigned
376
- def connect_timeout=(connect_timeout)
377
- if !connect_timeout.nil? && connect_timeout < 0.0
378
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
365
+ # @param [Object] ca_cert Value to be assigned
366
+ def ca_cert=(ca_cert)
367
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
368
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
379
369
  end
380
370
 
381
- @connect_timeout = connect_timeout
371
+ @ca_cert = ca_cert
382
372
  end
383
373
 
384
374
  # Custom attribute writer method with validation
385
- # @param [Object] sock_connect_timeout Value to be assigned
386
- def sock_connect_timeout=(sock_connect_timeout)
387
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
388
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
375
+ # @param [Object] proxy_username Value to be assigned
376
+ def proxy_username=(proxy_username)
377
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
378
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
389
379
  end
390
380
 
391
- @sock_connect_timeout = sock_connect_timeout
381
+ @proxy_username = proxy_username
392
382
  end
393
383
 
394
384
  # Custom attribute writer method with validation
@@ -402,23 +392,13 @@ module PulpAnsibleClient
402
392
  end
403
393
 
404
394
  # Custom attribute writer method with validation
405
- # @param [Object] total_timeout Value to be assigned
406
- def total_timeout=(total_timeout)
407
- if !total_timeout.nil? && total_timeout < 0.0
408
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
409
- end
410
-
411
- @total_timeout = total_timeout
412
- end
413
-
414
- # Custom attribute writer method with validation
415
- # @param [Object] sock_read_timeout Value to be assigned
416
- def sock_read_timeout=(sock_read_timeout)
417
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
418
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
395
+ # @param [Object] password Value to be assigned
396
+ def password=(password)
397
+ if !password.nil? && password.to_s.length < 1
398
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
419
399
  end
420
400
 
421
- @sock_read_timeout = sock_read_timeout
401
+ @password = password
422
402
  end
423
403
 
424
404
  # Custom attribute writer method with validation
@@ -435,6 +415,16 @@ module PulpAnsibleClient
435
415
  @url = url
436
416
  end
437
417
 
418
+ # Custom attribute writer method with validation
419
+ # @param [Object] sock_connect_timeout Value to be assigned
420
+ def sock_connect_timeout=(sock_connect_timeout)
421
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
422
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
423
+ end
424
+
425
+ @sock_connect_timeout = sock_connect_timeout
426
+ end
427
+
438
428
  # Custom attribute writer method with validation
439
429
  # @param [Object] proxy_url Value to be assigned
440
430
  def proxy_url=(proxy_url)
@@ -446,27 +436,23 @@ module PulpAnsibleClient
446
436
  end
447
437
 
448
438
  # Custom attribute writer method with validation
449
- # @param [Object] ca_cert Value to be assigned
450
- def ca_cert=(ca_cert)
451
- if !ca_cert.nil? && ca_cert.to_s.length < 1
452
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
439
+ # @param [Object] client_cert Value to be assigned
440
+ def client_cert=(client_cert)
441
+ if !client_cert.nil? && client_cert.to_s.length < 1
442
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
453
443
  end
454
444
 
455
- @ca_cert = ca_cert
445
+ @client_cert = client_cert
456
446
  end
457
447
 
458
448
  # Custom attribute writer method with validation
459
- # @param [Object] name Value to be assigned
460
- def name=(name)
461
- if name.nil?
462
- fail ArgumentError, 'name cannot be nil'
463
- end
464
-
465
- if name.to_s.length < 1
466
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
449
+ # @param [Object] sock_read_timeout Value to be assigned
450
+ def sock_read_timeout=(sock_read_timeout)
451
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
452
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
467
453
  end
468
454
 
469
- @name = name
455
+ @sock_read_timeout = sock_read_timeout
470
456
  end
471
457
 
472
458
  # Custom attribute writer method with validation
@@ -480,13 +466,13 @@ module PulpAnsibleClient
480
466
  end
481
467
 
482
468
  # Custom attribute writer method with validation
483
- # @param [Object] client_cert Value to be assigned
484
- def client_cert=(client_cert)
485
- if !client_cert.nil? && client_cert.to_s.length < 1
486
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
469
+ # @param [Object] connect_timeout Value to be assigned
470
+ def connect_timeout=(connect_timeout)
471
+ if !connect_timeout.nil? && connect_timeout < 0.0
472
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
487
473
  end
488
474
 
489
- @client_cert = client_cert
475
+ @connect_timeout = connect_timeout
490
476
  end
491
477
 
492
478
  # Custom attribute writer method with validation
@@ -500,13 +486,27 @@ module PulpAnsibleClient
500
486
  end
501
487
 
502
488
  # Custom attribute writer method with validation
503
- # @param [Object] proxy_username Value to be assigned
504
- def proxy_username=(proxy_username)
505
- if !proxy_username.nil? && proxy_username.to_s.length < 1
506
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
489
+ # @param [Object] total_timeout Value to be assigned
490
+ def total_timeout=(total_timeout)
491
+ if !total_timeout.nil? && total_timeout < 0.0
492
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
507
493
  end
508
494
 
509
- @proxy_username = proxy_username
495
+ @total_timeout = total_timeout
496
+ end
497
+
498
+ # Custom attribute writer method with validation
499
+ # @param [Object] name Value to be assigned
500
+ def name=(name)
501
+ if name.nil?
502
+ fail ArgumentError, 'name cannot be nil'
503
+ end
504
+
505
+ if name.to_s.length < 1
506
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
507
+ end
508
+
509
+ @name = name
510
510
  end
511
511
 
512
512
  # Custom attribute writer method with validation
@@ -528,26 +528,26 @@ module PulpAnsibleClient
528
528
  def ==(o)
529
529
  return true if self.equal?(o)
530
530
  self.class == o.class &&
531
- password == o.password &&
532
- max_retries == o.max_retries &&
533
- connect_timeout == o.connect_timeout &&
534
- sock_connect_timeout == o.sock_connect_timeout &&
531
+ ca_cert == o.ca_cert &&
532
+ proxy_username == o.proxy_username &&
535
533
  proxy_password == o.proxy_password &&
536
- total_timeout == o.total_timeout &&
537
- download_concurrency == o.download_concurrency &&
538
- sock_read_timeout == o.sock_read_timeout &&
534
+ password == o.password &&
535
+ tls_validation == o.tls_validation &&
536
+ pulp_labels == o.pulp_labels &&
539
537
  url == o.url &&
538
+ sock_connect_timeout == o.sock_connect_timeout &&
539
+ max_retries == o.max_retries &&
540
540
  proxy_url == o.proxy_url &&
541
- pulp_labels == o.pulp_labels &&
542
- ca_cert == o.ca_cert &&
543
- name == o.name &&
541
+ headers == o.headers &&
542
+ client_cert == o.client_cert &&
543
+ sock_read_timeout == o.sock_read_timeout &&
544
544
  username == o.username &&
545
- tls_validation == o.tls_validation &&
545
+ connect_timeout == o.connect_timeout &&
546
546
  rate_limit == o.rate_limit &&
547
- client_cert == o.client_cert &&
548
- headers == o.headers &&
549
547
  client_key == o.client_key &&
550
- proxy_username == o.proxy_username &&
548
+ total_timeout == o.total_timeout &&
549
+ download_concurrency == o.download_concurrency &&
550
+ name == o.name &&
551
551
  metadata_only == o.metadata_only &&
552
552
  git_ref == o.git_ref
553
553
  end
@@ -561,7 +561,7 @@ module PulpAnsibleClient
561
561
  # Calculates hash code according to all attributes.
562
562
  # @return [Integer] Hash code
563
563
  def hash
564
- [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
564
+ [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
565
565
  end
566
566
 
567
567
  # Builds the object from hash