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