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