pulp_ansible_client 0.12.0.dev1640920642 → 0.12.0.dev1641266221
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.
Potentially problematic release.
This version of pulp_ansible_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/AnsibleCollectionVersion.md +3 -3
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +20 -20
- data/docs/AnsibleGitRemoteResponse.md +18 -18
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/ContentCollectionVersionsApi.md +3 -3
- data/docs/PatchedansibleGitRemote.md +20 -20
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +3 -3
- data/lib/pulp_ansible_client/models/ansible_collection_version.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +10 -10
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +177 -177
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +105 -105
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +162 -162
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/api/content_collection_versions_api_spec.rb +1 -1
- data/spec/models/ansible_collection_version_response_spec.rb +2 -2
- data/spec/models/ansible_collection_version_spec.rb +2 -2
- data/spec/models/ansible_git_remote_response_spec.rb +16 -16
- data/spec/models/ansible_git_remote_spec.rb +17 -17
- data/spec/models/ansible_role_response_spec.rb +2 -2
- data/spec/models/patchedansible_git_remote_spec.rb +17 -17
- metadata +2 -2
@@ -15,37 +15,31 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for Git Collection Remotes.
|
17
17
|
class AnsibleGitRemote
|
18
|
-
#
|
19
|
-
attr_accessor :
|
18
|
+
# Total number of simultaneous connections. If not set then the default value will be used.
|
19
|
+
attr_accessor :download_concurrency
|
20
20
|
|
21
21
|
# A PEM encoded client certificate used for authentication.
|
22
22
|
attr_accessor :client_cert
|
23
23
|
|
24
|
-
#
|
25
|
-
attr_accessor :
|
24
|
+
# 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.
|
25
|
+
attr_accessor :sock_connect_timeout
|
26
26
|
|
27
27
|
# A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
|
28
28
|
attr_accessor :ca_cert
|
29
29
|
|
30
|
-
# The URL of an external content source.
|
31
|
-
attr_accessor :url
|
32
|
-
|
33
30
|
# The password to authenticte to the proxy.
|
34
31
|
attr_accessor :proxy_password
|
35
32
|
|
36
|
-
|
37
|
-
|
38
|
-
# 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.
|
39
|
-
attr_accessor :sock_connect_timeout
|
33
|
+
# The username to be used for authentication when syncing.
|
34
|
+
attr_accessor :username
|
40
35
|
|
41
|
-
|
42
|
-
attr_accessor :rate_limit
|
36
|
+
attr_accessor :pulp_labels
|
43
37
|
|
44
|
-
#
|
45
|
-
attr_accessor :
|
38
|
+
# The URL of an external content source.
|
39
|
+
attr_accessor :url
|
46
40
|
|
47
|
-
#
|
48
|
-
attr_accessor :
|
41
|
+
# A PEM encoded private key used for authentication.
|
42
|
+
attr_accessor :client_key
|
49
43
|
|
50
44
|
# The username to authenticte to the proxy.
|
51
45
|
attr_accessor :proxy_username
|
@@ -53,14 +47,17 @@ module PulpAnsibleClient
|
|
53
47
|
# 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.
|
54
48
|
attr_accessor :sock_read_timeout
|
55
49
|
|
56
|
-
# A
|
57
|
-
attr_accessor :
|
50
|
+
# A unique name for this remote.
|
51
|
+
attr_accessor :name
|
58
52
|
|
59
53
|
# If True, TLS peer validation must be performed.
|
60
54
|
attr_accessor :tls_validation
|
61
55
|
|
62
|
-
#
|
63
|
-
attr_accessor :
|
56
|
+
# Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
|
57
|
+
attr_accessor :max_retries
|
58
|
+
|
59
|
+
# The password to be used for authentication when syncing.
|
60
|
+
attr_accessor :password
|
64
61
|
|
65
62
|
# aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
66
63
|
attr_accessor :connect_timeout
|
@@ -68,12 +65,15 @@ module PulpAnsibleClient
|
|
68
65
|
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
69
66
|
attr_accessor :total_timeout
|
70
67
|
|
68
|
+
# Headers for aiohttp.Clientsession
|
69
|
+
attr_accessor :headers
|
70
|
+
|
71
|
+
# Limits requests per second for each concurrent downloader
|
72
|
+
attr_accessor :rate_limit
|
73
|
+
|
71
74
|
# The proxy URL. Format: scheme://host:port
|
72
75
|
attr_accessor :proxy_url
|
73
76
|
|
74
|
-
# The username to be used for authentication when syncing.
|
75
|
-
attr_accessor :username
|
76
|
-
|
77
77
|
# If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
|
78
78
|
attr_accessor :metadata_only
|
79
79
|
|
@@ -83,26 +83,26 @@ module PulpAnsibleClient
|
|
83
83
|
# Attribute mapping from ruby-style variable name to JSON key.
|
84
84
|
def self.attribute_map
|
85
85
|
{
|
86
|
-
:'
|
86
|
+
:'download_concurrency' => :'download_concurrency',
|
87
87
|
:'client_cert' => :'client_cert',
|
88
|
-
:'
|
88
|
+
:'sock_connect_timeout' => :'sock_connect_timeout',
|
89
89
|
:'ca_cert' => :'ca_cert',
|
90
|
-
:'url' => :'url',
|
91
90
|
:'proxy_password' => :'proxy_password',
|
91
|
+
:'username' => :'username',
|
92
92
|
:'pulp_labels' => :'pulp_labels',
|
93
|
-
:'
|
94
|
-
:'
|
95
|
-
:'headers' => :'headers',
|
96
|
-
:'password' => :'password',
|
93
|
+
:'url' => :'url',
|
94
|
+
:'client_key' => :'client_key',
|
97
95
|
:'proxy_username' => :'proxy_username',
|
98
96
|
:'sock_read_timeout' => :'sock_read_timeout',
|
99
|
-
:'
|
97
|
+
:'name' => :'name',
|
100
98
|
:'tls_validation' => :'tls_validation',
|
101
|
-
:'
|
99
|
+
:'max_retries' => :'max_retries',
|
100
|
+
:'password' => :'password',
|
102
101
|
:'connect_timeout' => :'connect_timeout',
|
103
102
|
:'total_timeout' => :'total_timeout',
|
103
|
+
:'headers' => :'headers',
|
104
|
+
:'rate_limit' => :'rate_limit',
|
104
105
|
:'proxy_url' => :'proxy_url',
|
105
|
-
:'username' => :'username',
|
106
106
|
:'metadata_only' => :'metadata_only',
|
107
107
|
:'git_ref' => :'git_ref'
|
108
108
|
}
|
@@ -111,26 +111,26 @@ module PulpAnsibleClient
|
|
111
111
|
# Attribute type mapping.
|
112
112
|
def self.openapi_types
|
113
113
|
{
|
114
|
-
:'
|
114
|
+
:'download_concurrency' => :'Integer',
|
115
115
|
:'client_cert' => :'String',
|
116
|
-
:'
|
116
|
+
:'sock_connect_timeout' => :'Float',
|
117
117
|
:'ca_cert' => :'String',
|
118
|
-
:'url' => :'String',
|
119
118
|
:'proxy_password' => :'String',
|
119
|
+
:'username' => :'String',
|
120
120
|
:'pulp_labels' => :'Object',
|
121
|
-
:'
|
122
|
-
:'
|
123
|
-
:'headers' => :'Array<Object>',
|
124
|
-
:'password' => :'String',
|
121
|
+
:'url' => :'String',
|
122
|
+
:'client_key' => :'String',
|
125
123
|
:'proxy_username' => :'String',
|
126
124
|
:'sock_read_timeout' => :'Float',
|
127
|
-
:'
|
125
|
+
:'name' => :'String',
|
128
126
|
:'tls_validation' => :'Boolean',
|
129
|
-
:'
|
127
|
+
:'max_retries' => :'Integer',
|
128
|
+
:'password' => :'String',
|
130
129
|
:'connect_timeout' => :'Float',
|
131
130
|
:'total_timeout' => :'Float',
|
131
|
+
:'headers' => :'Array<Object>',
|
132
|
+
:'rate_limit' => :'Integer',
|
132
133
|
:'proxy_url' => :'String',
|
133
|
-
:'username' => :'String',
|
134
134
|
:'metadata_only' => :'Boolean',
|
135
135
|
:'git_ref' => :'String'
|
136
136
|
}
|
@@ -139,21 +139,21 @@ module PulpAnsibleClient
|
|
139
139
|
# List of attributes with nullable: true
|
140
140
|
def self.openapi_nullable
|
141
141
|
Set.new([
|
142
|
+
:'download_concurrency',
|
142
143
|
:'client_cert',
|
143
|
-
:'
|
144
|
+
:'sock_connect_timeout',
|
144
145
|
:'ca_cert',
|
145
146
|
:'proxy_password',
|
146
|
-
:'
|
147
|
-
:'
|
148
|
-
:'password',
|
147
|
+
:'username',
|
148
|
+
:'client_key',
|
149
149
|
:'proxy_username',
|
150
150
|
:'sock_read_timeout',
|
151
|
-
:'
|
152
|
-
:'
|
151
|
+
:'max_retries',
|
152
|
+
:'password',
|
153
153
|
:'connect_timeout',
|
154
154
|
:'total_timeout',
|
155
|
+
:'rate_limit',
|
155
156
|
:'proxy_url',
|
156
|
-
:'username',
|
157
157
|
])
|
158
158
|
end
|
159
159
|
|
@@ -172,50 +172,40 @@ module PulpAnsibleClient
|
|
172
172
|
h[k.to_sym] = v
|
173
173
|
}
|
174
174
|
|
175
|
-
if attributes.key?(:'
|
176
|
-
self.
|
175
|
+
if attributes.key?(:'download_concurrency')
|
176
|
+
self.download_concurrency = attributes[:'download_concurrency']
|
177
177
|
end
|
178
178
|
|
179
179
|
if attributes.key?(:'client_cert')
|
180
180
|
self.client_cert = attributes[:'client_cert']
|
181
181
|
end
|
182
182
|
|
183
|
-
if attributes.key?(:'
|
184
|
-
self.
|
183
|
+
if attributes.key?(:'sock_connect_timeout')
|
184
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
185
185
|
end
|
186
186
|
|
187
187
|
if attributes.key?(:'ca_cert')
|
188
188
|
self.ca_cert = attributes[:'ca_cert']
|
189
189
|
end
|
190
190
|
|
191
|
-
if attributes.key?(:'url')
|
192
|
-
self.url = attributes[:'url']
|
193
|
-
end
|
194
|
-
|
195
191
|
if attributes.key?(:'proxy_password')
|
196
192
|
self.proxy_password = attributes[:'proxy_password']
|
197
193
|
end
|
198
194
|
|
199
|
-
if attributes.key?(:'
|
200
|
-
self.
|
201
|
-
end
|
202
|
-
|
203
|
-
if attributes.key?(:'sock_connect_timeout')
|
204
|
-
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
195
|
+
if attributes.key?(:'username')
|
196
|
+
self.username = attributes[:'username']
|
205
197
|
end
|
206
198
|
|
207
|
-
if attributes.key?(:'
|
208
|
-
self.
|
199
|
+
if attributes.key?(:'pulp_labels')
|
200
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
209
201
|
end
|
210
202
|
|
211
|
-
if attributes.key?(:'
|
212
|
-
|
213
|
-
self.headers = value
|
214
|
-
end
|
203
|
+
if attributes.key?(:'url')
|
204
|
+
self.url = attributes[:'url']
|
215
205
|
end
|
216
206
|
|
217
|
-
if attributes.key?(:'
|
218
|
-
self.
|
207
|
+
if attributes.key?(:'client_key')
|
208
|
+
self.client_key = attributes[:'client_key']
|
219
209
|
end
|
220
210
|
|
221
211
|
if attributes.key?(:'proxy_username')
|
@@ -226,16 +216,20 @@ module PulpAnsibleClient
|
|
226
216
|
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
227
217
|
end
|
228
218
|
|
229
|
-
if attributes.key?(:'
|
230
|
-
self.
|
219
|
+
if attributes.key?(:'name')
|
220
|
+
self.name = attributes[:'name']
|
231
221
|
end
|
232
222
|
|
233
223
|
if attributes.key?(:'tls_validation')
|
234
224
|
self.tls_validation = attributes[:'tls_validation']
|
235
225
|
end
|
236
226
|
|
237
|
-
if attributes.key?(:'
|
238
|
-
self.
|
227
|
+
if attributes.key?(:'max_retries')
|
228
|
+
self.max_retries = attributes[:'max_retries']
|
229
|
+
end
|
230
|
+
|
231
|
+
if attributes.key?(:'password')
|
232
|
+
self.password = attributes[:'password']
|
239
233
|
end
|
240
234
|
|
241
235
|
if attributes.key?(:'connect_timeout')
|
@@ -246,12 +240,18 @@ module PulpAnsibleClient
|
|
246
240
|
self.total_timeout = attributes[:'total_timeout']
|
247
241
|
end
|
248
242
|
|
249
|
-
if attributes.key?(:'
|
250
|
-
|
243
|
+
if attributes.key?(:'headers')
|
244
|
+
if (value = attributes[:'headers']).is_a?(Array)
|
245
|
+
self.headers = value
|
246
|
+
end
|
251
247
|
end
|
252
248
|
|
253
|
-
if attributes.key?(:'
|
254
|
-
self.
|
249
|
+
if attributes.key?(:'rate_limit')
|
250
|
+
self.rate_limit = attributes[:'rate_limit']
|
251
|
+
end
|
252
|
+
|
253
|
+
if attributes.key?(:'proxy_url')
|
254
|
+
self.proxy_url = attributes[:'proxy_url']
|
255
255
|
end
|
256
256
|
|
257
257
|
if attributes.key?(:'metadata_only')
|
@@ -267,40 +267,40 @@ module PulpAnsibleClient
|
|
267
267
|
# @return Array for valid properties with the reasons
|
268
268
|
def list_invalid_properties
|
269
269
|
invalid_properties = Array.new
|
270
|
-
if
|
271
|
-
invalid_properties.push('invalid value for "
|
272
|
-
end
|
273
|
-
|
274
|
-
if @name.to_s.length < 1
|
275
|
-
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
270
|
+
if !@download_concurrency.nil? && @download_concurrency < 1
|
271
|
+
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
276
272
|
end
|
277
273
|
|
278
274
|
if !@client_cert.nil? && @client_cert.to_s.length < 1
|
279
275
|
invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
|
280
276
|
end
|
281
277
|
|
278
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
279
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
280
|
+
end
|
281
|
+
|
282
282
|
if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
283
283
|
invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
|
284
284
|
end
|
285
285
|
|
286
|
-
if
|
287
|
-
invalid_properties.push('invalid value for "
|
286
|
+
if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
287
|
+
invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
|
288
288
|
end
|
289
289
|
|
290
|
-
if @
|
291
|
-
invalid_properties.push('invalid value for "
|
290
|
+
if !@username.nil? && @username.to_s.length < 1
|
291
|
+
invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
|
292
292
|
end
|
293
293
|
|
294
|
-
if
|
295
|
-
invalid_properties.push('invalid value for "
|
294
|
+
if @url.nil?
|
295
|
+
invalid_properties.push('invalid value for "url", url cannot be nil.')
|
296
296
|
end
|
297
297
|
|
298
|
-
if
|
299
|
-
invalid_properties.push('invalid value for "
|
298
|
+
if @url.to_s.length < 1
|
299
|
+
invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
|
300
300
|
end
|
301
301
|
|
302
|
-
if !@
|
303
|
-
invalid_properties.push('invalid value for "
|
302
|
+
if !@client_key.nil? && @client_key.to_s.length < 1
|
303
|
+
invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
|
304
304
|
end
|
305
305
|
|
306
306
|
if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
@@ -311,12 +311,16 @@ module PulpAnsibleClient
|
|
311
311
|
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
312
312
|
end
|
313
313
|
|
314
|
-
if
|
315
|
-
invalid_properties.push('invalid value for "
|
314
|
+
if @name.nil?
|
315
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
316
316
|
end
|
317
317
|
|
318
|
-
if
|
319
|
-
invalid_properties.push('invalid value for "
|
318
|
+
if @name.to_s.length < 1
|
319
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
320
|
+
end
|
321
|
+
|
322
|
+
if !@password.nil? && @password.to_s.length < 1
|
323
|
+
invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
|
320
324
|
end
|
321
325
|
|
322
326
|
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
@@ -331,10 +335,6 @@ module PulpAnsibleClient
|
|
331
335
|
invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
|
332
336
|
end
|
333
337
|
|
334
|
-
if !@username.nil? && @username.to_s.length < 1
|
335
|
-
invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
|
336
|
-
end
|
337
|
-
|
338
338
|
if !@git_ref.nil? && @git_ref.to_s.length < 1
|
339
339
|
invalid_properties.push('invalid value for "git_ref", the character length must be great than or equal to 1.')
|
340
340
|
end
|
@@ -345,39 +345,35 @@ module PulpAnsibleClient
|
|
345
345
|
# Check to see if the all the properties in the model are valid
|
346
346
|
# @return true if the model is valid
|
347
347
|
def valid?
|
348
|
-
return false if
|
349
|
-
return false if @name.to_s.length < 1
|
348
|
+
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
350
349
|
return false if !@client_cert.nil? && @client_cert.to_s.length < 1
|
350
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
351
351
|
return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
352
|
+
return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
353
|
+
return false if !@username.nil? && @username.to_s.length < 1
|
352
354
|
return false if @url.nil?
|
353
355
|
return false if @url.to_s.length < 1
|
354
|
-
return false if !@
|
355
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
356
|
-
return false if !@password.nil? && @password.to_s.length < 1
|
356
|
+
return false if !@client_key.nil? && @client_key.to_s.length < 1
|
357
357
|
return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
358
358
|
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
359
|
-
return false if
|
360
|
-
return false if
|
359
|
+
return false if @name.nil?
|
360
|
+
return false if @name.to_s.length < 1
|
361
|
+
return false if !@password.nil? && @password.to_s.length < 1
|
361
362
|
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
362
363
|
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
363
364
|
return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
|
364
|
-
return false if !@username.nil? && @username.to_s.length < 1
|
365
365
|
return false if !@git_ref.nil? && @git_ref.to_s.length < 1
|
366
366
|
true
|
367
367
|
end
|
368
368
|
|
369
369
|
# Custom attribute writer method with validation
|
370
|
-
# @param [Object]
|
371
|
-
def
|
372
|
-
if
|
373
|
-
fail ArgumentError, '
|
374
|
-
end
|
375
|
-
|
376
|
-
if name.to_s.length < 1
|
377
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
370
|
+
# @param [Object] download_concurrency Value to be assigned
|
371
|
+
def download_concurrency=(download_concurrency)
|
372
|
+
if !download_concurrency.nil? && download_concurrency < 1
|
373
|
+
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
378
374
|
end
|
379
375
|
|
380
|
-
@
|
376
|
+
@download_concurrency = download_concurrency
|
381
377
|
end
|
382
378
|
|
383
379
|
# Custom attribute writer method with validation
|
@@ -391,27 +387,23 @@ module PulpAnsibleClient
|
|
391
387
|
end
|
392
388
|
|
393
389
|
# Custom attribute writer method with validation
|
394
|
-
# @param [Object]
|
395
|
-
def
|
396
|
-
if !
|
397
|
-
fail ArgumentError, 'invalid value for "
|
390
|
+
# @param [Object] sock_connect_timeout Value to be assigned
|
391
|
+
def sock_connect_timeout=(sock_connect_timeout)
|
392
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
393
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
398
394
|
end
|
399
395
|
|
400
|
-
@
|
396
|
+
@sock_connect_timeout = sock_connect_timeout
|
401
397
|
end
|
402
398
|
|
403
399
|
# Custom attribute writer method with validation
|
404
|
-
# @param [Object]
|
405
|
-
def
|
406
|
-
if
|
407
|
-
fail ArgumentError, '
|
408
|
-
end
|
409
|
-
|
410
|
-
if url.to_s.length < 1
|
411
|
-
fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
|
400
|
+
# @param [Object] ca_cert Value to be assigned
|
401
|
+
def ca_cert=(ca_cert)
|
402
|
+
if !ca_cert.nil? && ca_cert.to_s.length < 1
|
403
|
+
fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
|
412
404
|
end
|
413
405
|
|
414
|
-
@
|
406
|
+
@ca_cert = ca_cert
|
415
407
|
end
|
416
408
|
|
417
409
|
# Custom attribute writer method with validation
|
@@ -425,23 +417,37 @@ module PulpAnsibleClient
|
|
425
417
|
end
|
426
418
|
|
427
419
|
# Custom attribute writer method with validation
|
428
|
-
# @param [Object]
|
429
|
-
def
|
430
|
-
if !
|
431
|
-
fail ArgumentError, 'invalid value for "
|
420
|
+
# @param [Object] username Value to be assigned
|
421
|
+
def username=(username)
|
422
|
+
if !username.nil? && username.to_s.length < 1
|
423
|
+
fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
|
432
424
|
end
|
433
425
|
|
434
|
-
@
|
426
|
+
@username = username
|
435
427
|
end
|
436
428
|
|
437
429
|
# Custom attribute writer method with validation
|
438
|
-
# @param [Object]
|
439
|
-
def
|
440
|
-
if
|
441
|
-
fail ArgumentError, '
|
430
|
+
# @param [Object] url Value to be assigned
|
431
|
+
def url=(url)
|
432
|
+
if url.nil?
|
433
|
+
fail ArgumentError, 'url cannot be nil'
|
442
434
|
end
|
443
435
|
|
444
|
-
|
436
|
+
if url.to_s.length < 1
|
437
|
+
fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
|
438
|
+
end
|
439
|
+
|
440
|
+
@url = url
|
441
|
+
end
|
442
|
+
|
443
|
+
# Custom attribute writer method with validation
|
444
|
+
# @param [Object] client_key Value to be assigned
|
445
|
+
def client_key=(client_key)
|
446
|
+
if !client_key.nil? && client_key.to_s.length < 1
|
447
|
+
fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
|
448
|
+
end
|
449
|
+
|
450
|
+
@client_key = client_key
|
445
451
|
end
|
446
452
|
|
447
453
|
# Custom attribute writer method with validation
|
@@ -465,23 +471,27 @@ module PulpAnsibleClient
|
|
465
471
|
end
|
466
472
|
|
467
473
|
# Custom attribute writer method with validation
|
468
|
-
# @param [Object]
|
469
|
-
def
|
470
|
-
if
|
471
|
-
fail ArgumentError, '
|
474
|
+
# @param [Object] name Value to be assigned
|
475
|
+
def name=(name)
|
476
|
+
if name.nil?
|
477
|
+
fail ArgumentError, 'name cannot be nil'
|
472
478
|
end
|
473
479
|
|
474
|
-
|
480
|
+
if name.to_s.length < 1
|
481
|
+
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
482
|
+
end
|
483
|
+
|
484
|
+
@name = name
|
475
485
|
end
|
476
486
|
|
477
487
|
# Custom attribute writer method with validation
|
478
|
-
# @param [Object]
|
479
|
-
def
|
480
|
-
if !
|
481
|
-
fail ArgumentError, 'invalid value for "
|
488
|
+
# @param [Object] password Value to be assigned
|
489
|
+
def password=(password)
|
490
|
+
if !password.nil? && password.to_s.length < 1
|
491
|
+
fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
|
482
492
|
end
|
483
493
|
|
484
|
-
@
|
494
|
+
@password = password
|
485
495
|
end
|
486
496
|
|
487
497
|
# Custom attribute writer method with validation
|
@@ -514,16 +524,6 @@ module PulpAnsibleClient
|
|
514
524
|
@proxy_url = proxy_url
|
515
525
|
end
|
516
526
|
|
517
|
-
# Custom attribute writer method with validation
|
518
|
-
# @param [Object] username Value to be assigned
|
519
|
-
def username=(username)
|
520
|
-
if !username.nil? && username.to_s.length < 1
|
521
|
-
fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
|
522
|
-
end
|
523
|
-
|
524
|
-
@username = username
|
525
|
-
end
|
526
|
-
|
527
527
|
# Custom attribute writer method with validation
|
528
528
|
# @param [Object] git_ref Value to be assigned
|
529
529
|
def git_ref=(git_ref)
|
@@ -539,26 +539,26 @@ module PulpAnsibleClient
|
|
539
539
|
def ==(o)
|
540
540
|
return true if self.equal?(o)
|
541
541
|
self.class == o.class &&
|
542
|
-
|
542
|
+
download_concurrency == o.download_concurrency &&
|
543
543
|
client_cert == o.client_cert &&
|
544
|
-
|
544
|
+
sock_connect_timeout == o.sock_connect_timeout &&
|
545
545
|
ca_cert == o.ca_cert &&
|
546
|
-
url == o.url &&
|
547
546
|
proxy_password == o.proxy_password &&
|
547
|
+
username == o.username &&
|
548
548
|
pulp_labels == o.pulp_labels &&
|
549
|
-
|
550
|
-
|
551
|
-
headers == o.headers &&
|
552
|
-
password == o.password &&
|
549
|
+
url == o.url &&
|
550
|
+
client_key == o.client_key &&
|
553
551
|
proxy_username == o.proxy_username &&
|
554
552
|
sock_read_timeout == o.sock_read_timeout &&
|
555
|
-
|
553
|
+
name == o.name &&
|
556
554
|
tls_validation == o.tls_validation &&
|
557
|
-
|
555
|
+
max_retries == o.max_retries &&
|
556
|
+
password == o.password &&
|
558
557
|
connect_timeout == o.connect_timeout &&
|
559
558
|
total_timeout == o.total_timeout &&
|
559
|
+
headers == o.headers &&
|
560
|
+
rate_limit == o.rate_limit &&
|
560
561
|
proxy_url == o.proxy_url &&
|
561
|
-
username == o.username &&
|
562
562
|
metadata_only == o.metadata_only &&
|
563
563
|
git_ref == o.git_ref
|
564
564
|
end
|
@@ -572,7 +572,7 @@ module PulpAnsibleClient
|
|
572
572
|
# Calculates hash code according to all attributes.
|
573
573
|
# @return [Integer] Hash code
|
574
574
|
def hash
|
575
|
-
[
|
575
|
+
[download_concurrency, client_cert, sock_connect_timeout, ca_cert, proxy_password, username, pulp_labels, url, client_key, proxy_username, sock_read_timeout, name, tls_validation, max_retries, password, connect_timeout, total_timeout, headers, rate_limit, proxy_url, metadata_only, git_ref].hash
|
576
576
|
end
|
577
577
|
|
578
578
|
# Builds the object from hash
|