pulp_ansible_client 0.24.4 → 0.24.6
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 +32 -32
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +245 -245
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +167 -167
- 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 +236 -236
- 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 +18 -18
- 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 +18 -18
- metadata +122 -142
@@ -16,64 +16,64 @@ require 'time'
|
|
16
16
|
module PulpAnsibleClient
|
17
17
|
# A serializer for Git Collection Remotes.
|
18
18
|
class PatchedansibleGitRemote
|
19
|
-
#
|
20
|
-
attr_accessor :
|
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
|
+
attr_accessor :sock_read_timeout
|
21
21
|
|
22
|
-
#
|
23
|
-
attr_accessor :
|
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
24
|
|
25
|
-
#
|
26
|
-
attr_accessor :
|
25
|
+
# A PEM encoded client certificate used for authentication.
|
26
|
+
attr_accessor :client_cert
|
27
27
|
|
28
|
-
#
|
29
|
-
attr_accessor :
|
28
|
+
# The username to authenticte to the proxy.
|
29
|
+
attr_accessor :proxy_username
|
30
30
|
|
31
|
-
#
|
32
|
-
attr_accessor :
|
31
|
+
# aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
32
|
+
attr_accessor :connect_timeout
|
33
33
|
|
34
34
|
# The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
|
35
35
|
attr_accessor :proxy_password
|
36
36
|
|
37
|
-
# The proxy URL. Format: scheme://host:port
|
38
|
-
attr_accessor :proxy_url
|
39
|
-
|
40
37
|
# Limits requests per second for each concurrent downloader
|
41
38
|
attr_accessor :rate_limit
|
42
39
|
|
43
|
-
#
|
44
|
-
attr_accessor :
|
40
|
+
# The username to be used for authentication when syncing.
|
41
|
+
attr_accessor :username
|
45
42
|
|
46
|
-
#
|
47
|
-
attr_accessor :
|
43
|
+
# The URL of an external content source.
|
44
|
+
attr_accessor :url
|
48
45
|
|
49
|
-
#
|
50
|
-
attr_accessor :
|
46
|
+
# Headers for aiohttp.Clientsession
|
47
|
+
attr_accessor :headers
|
51
48
|
|
52
|
-
#
|
53
|
-
attr_accessor :
|
49
|
+
# Total number of simultaneous connections. If not set then the default value will be used.
|
50
|
+
attr_accessor :download_concurrency
|
54
51
|
|
55
|
-
#
|
56
|
-
attr_accessor :
|
52
|
+
# A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
|
53
|
+
attr_accessor :ca_cert
|
57
54
|
|
58
|
-
#
|
59
|
-
attr_accessor :
|
55
|
+
# 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
|
+
attr_accessor :sock_connect_timeout
|
60
57
|
|
61
|
-
|
62
|
-
|
58
|
+
attr_accessor :pulp_labels
|
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
62
|
|
64
63
|
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
65
64
|
attr_accessor :total_timeout
|
66
65
|
|
67
|
-
|
66
|
+
# If True, TLS peer validation must be performed.
|
67
|
+
attr_accessor :tls_validation
|
68
68
|
|
69
|
-
#
|
70
|
-
attr_accessor :
|
69
|
+
# A PEM encoded private key used for authentication.
|
70
|
+
attr_accessor :client_key
|
71
71
|
|
72
|
-
# The
|
73
|
-
attr_accessor :
|
72
|
+
# The proxy URL. Format: scheme://host:port
|
73
|
+
attr_accessor :proxy_url
|
74
74
|
|
75
|
-
#
|
76
|
-
attr_accessor :
|
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
|
-
:'
|
87
|
+
:'sock_read_timeout' => :'sock_read_timeout',
|
88
|
+
:'max_retries' => :'max_retries',
|
89
|
+
:'client_cert' => :'client_cert',
|
90
|
+
:'proxy_username' => :'proxy_username',
|
88
91
|
:'connect_timeout' => :'connect_timeout',
|
89
|
-
:'username' => :'username',
|
90
|
-
:'headers' => :'headers',
|
91
|
-
:'client_key' => :'client_key',
|
92
92
|
:'proxy_password' => :'proxy_password',
|
93
|
-
:'proxy_url' => :'proxy_url',
|
94
93
|
:'rate_limit' => :'rate_limit',
|
95
|
-
:'
|
96
|
-
:'
|
94
|
+
:'username' => :'username',
|
95
|
+
:'url' => :'url',
|
96
|
+
:'headers' => :'headers',
|
97
|
+
:'download_concurrency' => :'download_concurrency',
|
98
|
+
:'ca_cert' => :'ca_cert',
|
97
99
|
:'sock_connect_timeout' => :'sock_connect_timeout',
|
98
|
-
:'proxy_username' => :'proxy_username',
|
99
|
-
:'sock_read_timeout' => :'sock_read_timeout',
|
100
|
-
:'name' => :'name',
|
101
|
-
:'client_cert' => :'client_cert',
|
102
|
-
:'total_timeout' => :'total_timeout',
|
103
100
|
:'pulp_labels' => :'pulp_labels',
|
104
|
-
:'url' => :'url',
|
105
101
|
:'password' => :'password',
|
106
|
-
:'
|
102
|
+
:'total_timeout' => :'total_timeout',
|
103
|
+
:'tls_validation' => :'tls_validation',
|
104
|
+
:'client_key' => :'client_key',
|
105
|
+
:'proxy_url' => :'proxy_url',
|
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
|
-
:'
|
120
|
+
:'sock_read_timeout' => :'Float',
|
121
|
+
:'max_retries' => :'Integer',
|
122
|
+
:'client_cert' => :'String',
|
123
|
+
:'proxy_username' => :'String',
|
121
124
|
:'connect_timeout' => :'Float',
|
122
|
-
:'username' => :'String',
|
123
|
-
:'headers' => :'Array<Object>',
|
124
|
-
:'client_key' => :'String',
|
125
125
|
:'proxy_password' => :'String',
|
126
|
-
:'proxy_url' => :'String',
|
127
126
|
:'rate_limit' => :'Integer',
|
128
|
-
:'
|
129
|
-
:'
|
127
|
+
:'username' => :'String',
|
128
|
+
:'url' => :'String',
|
129
|
+
:'headers' => :'Array<Object>',
|
130
|
+
:'download_concurrency' => :'Integer',
|
131
|
+
:'ca_cert' => :'String',
|
130
132
|
:'sock_connect_timeout' => :'Float',
|
131
|
-
:'proxy_username' => :'String',
|
132
|
-
:'sock_read_timeout' => :'Float',
|
133
|
-
:'name' => :'String',
|
134
|
-
:'client_cert' => :'String',
|
135
|
-
:'total_timeout' => :'Float',
|
136
133
|
:'pulp_labels' => :'Hash<String, String>',
|
137
|
-
:'url' => :'String',
|
138
134
|
:'password' => :'String',
|
139
|
-
:'
|
135
|
+
:'total_timeout' => :'Float',
|
136
|
+
:'tls_validation' => :'Boolean',
|
137
|
+
:'client_key' => :'String',
|
138
|
+
:'proxy_url' => :'String',
|
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
|
-
:'
|
148
|
+
:'sock_read_timeout',
|
149
|
+
:'max_retries',
|
150
|
+
:'client_cert',
|
151
|
+
:'proxy_username',
|
149
152
|
:'connect_timeout',
|
150
|
-
:'username',
|
151
|
-
:'client_key',
|
152
153
|
:'proxy_password',
|
153
|
-
:'proxy_url',
|
154
154
|
:'rate_limit',
|
155
|
-
:'
|
155
|
+
:'username',
|
156
|
+
:'download_concurrency',
|
157
|
+
:'ca_cert',
|
156
158
|
:'sock_connect_timeout',
|
157
|
-
:'proxy_username',
|
158
|
-
:'sock_read_timeout',
|
159
|
-
:'client_cert',
|
160
|
-
:'total_timeout',
|
161
159
|
:'password',
|
162
|
-
:'
|
160
|
+
:'total_timeout',
|
161
|
+
:'client_key',
|
162
|
+
:'proxy_url',
|
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?(:'
|
182
|
-
self.
|
181
|
+
if attributes.key?(:'sock_read_timeout')
|
182
|
+
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
183
183
|
end
|
184
184
|
|
185
|
-
if attributes.key?(:'
|
186
|
-
self.
|
185
|
+
if attributes.key?(:'max_retries')
|
186
|
+
self.max_retries = attributes[:'max_retries']
|
187
187
|
end
|
188
188
|
|
189
|
-
if attributes.key?(:'
|
190
|
-
self.
|
189
|
+
if attributes.key?(:'client_cert')
|
190
|
+
self.client_cert = attributes[:'client_cert']
|
191
191
|
end
|
192
192
|
|
193
|
-
if attributes.key?(:'
|
194
|
-
|
195
|
-
self.headers = value
|
196
|
-
end
|
193
|
+
if attributes.key?(:'proxy_username')
|
194
|
+
self.proxy_username = attributes[:'proxy_username']
|
197
195
|
end
|
198
196
|
|
199
|
-
if attributes.key?(:'
|
200
|
-
self.
|
197
|
+
if attributes.key?(:'connect_timeout')
|
198
|
+
self.connect_timeout = attributes[:'connect_timeout']
|
201
199
|
end
|
202
200
|
|
203
201
|
if attributes.key?(:'proxy_password')
|
204
202
|
self.proxy_password = attributes[:'proxy_password']
|
205
203
|
end
|
206
204
|
|
207
|
-
if attributes.key?(:'proxy_url')
|
208
|
-
self.proxy_url = attributes[:'proxy_url']
|
209
|
-
end
|
210
|
-
|
211
205
|
if attributes.key?(:'rate_limit')
|
212
206
|
self.rate_limit = attributes[:'rate_limit']
|
213
207
|
end
|
214
208
|
|
215
|
-
if attributes.key?(:'
|
216
|
-
self.
|
209
|
+
if attributes.key?(:'username')
|
210
|
+
self.username = attributes[:'username']
|
217
211
|
end
|
218
212
|
|
219
|
-
if attributes.key?(:'
|
220
|
-
self.
|
213
|
+
if attributes.key?(:'url')
|
214
|
+
self.url = attributes[:'url']
|
221
215
|
end
|
222
216
|
|
223
|
-
if attributes.key?(:'
|
224
|
-
|
217
|
+
if attributes.key?(:'headers')
|
218
|
+
if (value = attributes[:'headers']).is_a?(Array)
|
219
|
+
self.headers = value
|
220
|
+
end
|
225
221
|
end
|
226
222
|
|
227
|
-
if attributes.key?(:'
|
228
|
-
self.
|
223
|
+
if attributes.key?(:'download_concurrency')
|
224
|
+
self.download_concurrency = attributes[:'download_concurrency']
|
229
225
|
end
|
230
226
|
|
231
|
-
if attributes.key?(:'
|
232
|
-
self.
|
227
|
+
if attributes.key?(:'ca_cert')
|
228
|
+
self.ca_cert = attributes[:'ca_cert']
|
233
229
|
end
|
234
230
|
|
235
|
-
if attributes.key?(:'
|
236
|
-
self.
|
231
|
+
if attributes.key?(:'sock_connect_timeout')
|
232
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
237
233
|
end
|
238
234
|
|
239
|
-
if attributes.key?(:'
|
240
|
-
|
235
|
+
if attributes.key?(:'pulp_labels')
|
236
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
237
|
+
self.pulp_labels = value
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
if attributes.key?(:'password')
|
242
|
+
self.password = attributes[:'password']
|
241
243
|
end
|
242
244
|
|
243
245
|
if attributes.key?(:'total_timeout')
|
244
246
|
self.total_timeout = attributes[:'total_timeout']
|
245
247
|
end
|
246
248
|
|
247
|
-
if attributes.key?(:'
|
248
|
-
|
249
|
-
self.pulp_labels = value
|
250
|
-
end
|
249
|
+
if attributes.key?(:'tls_validation')
|
250
|
+
self.tls_validation = attributes[:'tls_validation']
|
251
251
|
end
|
252
252
|
|
253
|
-
if attributes.key?(:'
|
254
|
-
self.
|
253
|
+
if attributes.key?(:'client_key')
|
254
|
+
self.client_key = attributes[:'client_key']
|
255
255
|
end
|
256
256
|
|
257
|
-
if attributes.key?(:'
|
258
|
-
self.
|
257
|
+
if attributes.key?(:'proxy_url')
|
258
|
+
self.proxy_url = attributes[:'proxy_url']
|
259
259
|
end
|
260
260
|
|
261
|
-
if attributes.key?(:'
|
262
|
-
self.
|
261
|
+
if attributes.key?(:'name')
|
262
|
+
self.name = attributes[:'name']
|
263
263
|
end
|
264
264
|
|
265
265
|
if attributes.key?(:'metadata_only')
|
@@ -276,64 +276,64 @@ 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 !@
|
280
|
-
invalid_properties.push('invalid value for "
|
279
|
+
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
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 !@client_cert.nil? && @client_cert.to_s.length < 1
|
284
|
+
invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
|
285
285
|
end
|
286
286
|
|
287
|
-
if !@
|
288
|
-
invalid_properties.push('invalid value for "
|
287
|
+
if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
288
|
+
invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
|
289
289
|
end
|
290
290
|
|
291
|
-
if !@
|
292
|
-
invalid_properties.push('invalid value for "
|
291
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
292
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
293
293
|
end
|
294
294
|
|
295
295
|
if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
296
296
|
invalid_properties.push('invalid value for "proxy_password", 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 !@username.nil? && @username.to_s.length < 1
|
300
|
+
invalid_properties.push('invalid value for "username", 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 !@url.nil? && @url.to_s.length < 1
|
304
|
+
invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
|
305
305
|
end
|
306
306
|
|
307
|
-
if !@
|
308
|
-
invalid_properties.push('invalid value for "
|
307
|
+
if !@download_concurrency.nil? && @download_concurrency < 1
|
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 !@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.')
|
313
313
|
end
|
314
314
|
|
315
|
-
if !@
|
316
|
-
invalid_properties.push('invalid value for "
|
315
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
316
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
317
317
|
end
|
318
318
|
|
319
|
-
if !@
|
320
|
-
invalid_properties.push('invalid value for "
|
319
|
+
if !@password.nil? && @password.to_s.length < 1
|
320
|
+
invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
|
321
321
|
end
|
322
322
|
|
323
323
|
if !@total_timeout.nil? && @total_timeout < 0.0
|
324
324
|
invalid_properties.push('invalid value for "total_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 !@client_key.nil? && @client_key.to_s.length < 1
|
328
|
+
invalid_properties.push('invalid value for "client_key", 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 !@proxy_url.nil? && @proxy_url.to_s.length < 1
|
332
|
+
invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
|
333
333
|
end
|
334
334
|
|
335
|
-
if !@
|
336
|
-
invalid_properties.push('invalid value for "
|
335
|
+
if !@name.nil? && @name.to_s.length < 1
|
336
|
+
invalid_properties.push('invalid value for "name", 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
|
@@ -347,63 +347,63 @@ module PulpAnsibleClient
|
|
347
347
|
# @return true if the model is valid
|
348
348
|
def valid?
|
349
349
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
350
|
-
return false if !@
|
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
|
351
353
|
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
354
|
+
return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
352
355
|
return false if !@username.nil? && @username.to_s.length < 1
|
356
|
+
return false if !@url.nil? && @url.to_s.length < 1
|
357
|
+
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
358
|
+
return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
359
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
360
|
+
return false if !@password.nil? && @password.to_s.length < 1
|
361
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
353
362
|
return false if !@client_key.nil? && @client_key.to_s.length < 1
|
354
|
-
return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
355
363
|
return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
|
356
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
357
|
-
return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
358
|
-
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
359
364
|
return false if !@name.nil? && @name.to_s.length < 1
|
360
|
-
return false if !@client_cert.nil? && @client_cert.to_s.length < 1
|
361
|
-
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
362
|
-
return false if !@url.nil? && @url.to_s.length < 1
|
363
|
-
return false if !@password.nil? && @password.to_s.length < 1
|
364
|
-
return false if !@download_concurrency.nil? && @download_concurrency < 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, 'invalid value for "
|
370
|
+
# @param [Object] sock_read_timeout Value to be assigned
|
371
|
+
def sock_read_timeout=(sock_read_timeout)
|
372
|
+
if !sock_read_timeout.nil? && sock_read_timeout < 0.0
|
373
|
+
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
|
374
374
|
end
|
375
375
|
|
376
|
-
@
|
376
|
+
@sock_read_timeout = sock_read_timeout
|
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] client_cert Value to be assigned
|
381
|
+
def client_cert=(client_cert)
|
382
|
+
if !client_cert.nil? && client_cert.to_s.length < 1
|
383
|
+
fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
|
384
384
|
end
|
385
385
|
|
386
|
-
@
|
386
|
+
@client_cert = client_cert
|
387
387
|
end
|
388
388
|
|
389
389
|
# Custom attribute writer method with validation
|
390
|
-
# @param [Object]
|
391
|
-
def
|
392
|
-
if !
|
393
|
-
fail ArgumentError, 'invalid value for "
|
390
|
+
# @param [Object] proxy_username Value to be assigned
|
391
|
+
def proxy_username=(proxy_username)
|
392
|
+
if !proxy_username.nil? && proxy_username.to_s.length < 1
|
393
|
+
fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
|
394
394
|
end
|
395
395
|
|
396
|
-
@
|
396
|
+
@proxy_username = proxy_username
|
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] connect_timeout Value to be assigned
|
401
|
+
def connect_timeout=(connect_timeout)
|
402
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
403
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
404
404
|
end
|
405
405
|
|
406
|
-
@
|
406
|
+
@connect_timeout = connect_timeout
|
407
407
|
end
|
408
408
|
|
409
409
|
# Custom attribute writer method with validation
|
@@ -417,67 +417,67 @@ module PulpAnsibleClient
|
|
417
417
|
end
|
418
418
|
|
419
419
|
# Custom attribute writer method with validation
|
420
|
-
# @param [Object]
|
421
|
-
def
|
422
|
-
if !
|
423
|
-
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.'
|
424
424
|
end
|
425
425
|
|
426
|
-
@
|
426
|
+
@username = username
|
427
427
|
end
|
428
428
|
|
429
429
|
# Custom attribute writer method with validation
|
430
|
-
# @param [Object]
|
431
|
-
def
|
432
|
-
if
|
433
|
-
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'
|
434
434
|
end
|
435
435
|
|
436
|
-
|
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
|
437
441
|
end
|
438
442
|
|
439
443
|
# Custom attribute writer method with validation
|
440
|
-
# @param [Object]
|
441
|
-
def
|
442
|
-
if !
|
443
|
-
fail ArgumentError, 'invalid value for "
|
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.'
|
444
448
|
end
|
445
449
|
|
446
|
-
@
|
450
|
+
@download_concurrency = download_concurrency
|
447
451
|
end
|
448
452
|
|
449
453
|
# Custom attribute writer method with validation
|
450
|
-
# @param [Object]
|
451
|
-
def
|
452
|
-
if !
|
453
|
-
fail ArgumentError, 'invalid value for "
|
454
|
+
# @param [Object] ca_cert Value to be assigned
|
455
|
+
def ca_cert=(ca_cert)
|
456
|
+
if !ca_cert.nil? && ca_cert.to_s.length < 1
|
457
|
+
fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
|
454
458
|
end
|
455
459
|
|
456
|
-
@
|
460
|
+
@ca_cert = ca_cert
|
457
461
|
end
|
458
462
|
|
459
463
|
# Custom attribute writer method with validation
|
460
|
-
# @param [Object]
|
461
|
-
def
|
462
|
-
if
|
463
|
-
fail ArgumentError, '
|
464
|
-
end
|
465
|
-
|
466
|
-
if name.to_s.length < 1
|
467
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
464
|
+
# @param [Object] sock_connect_timeout Value to be assigned
|
465
|
+
def sock_connect_timeout=(sock_connect_timeout)
|
466
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
467
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
468
468
|
end
|
469
469
|
|
470
|
-
@
|
470
|
+
@sock_connect_timeout = sock_connect_timeout
|
471
471
|
end
|
472
472
|
|
473
473
|
# Custom attribute writer method with validation
|
474
|
-
# @param [Object]
|
475
|
-
def
|
476
|
-
if !
|
477
|
-
fail ArgumentError, 'invalid value for "
|
474
|
+
# @param [Object] password Value to be assigned
|
475
|
+
def password=(password)
|
476
|
+
if !password.nil? && password.to_s.length < 1
|
477
|
+
fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
|
478
478
|
end
|
479
479
|
|
480
|
-
@
|
480
|
+
@password = password
|
481
481
|
end
|
482
482
|
|
483
483
|
# Custom attribute writer method with validation
|
@@ -491,37 +491,37 @@ module PulpAnsibleClient
|
|
491
491
|
end
|
492
492
|
|
493
493
|
# Custom attribute writer method with validation
|
494
|
-
# @param [Object]
|
495
|
-
def
|
496
|
-
if
|
497
|
-
fail ArgumentError, '
|
498
|
-
end
|
499
|
-
|
500
|
-
if url.to_s.length < 1
|
501
|
-
fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
|
494
|
+
# @param [Object] client_key Value to be assigned
|
495
|
+
def client_key=(client_key)
|
496
|
+
if !client_key.nil? && client_key.to_s.length < 1
|
497
|
+
fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
|
502
498
|
end
|
503
499
|
|
504
|
-
@
|
500
|
+
@client_key = client_key
|
505
501
|
end
|
506
502
|
|
507
503
|
# Custom attribute writer method with validation
|
508
|
-
# @param [Object]
|
509
|
-
def
|
510
|
-
if !
|
511
|
-
fail ArgumentError, 'invalid value for "
|
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.'
|
512
508
|
end
|
513
509
|
|
514
|
-
@
|
510
|
+
@proxy_url = proxy_url
|
515
511
|
end
|
516
512
|
|
517
513
|
# Custom attribute writer method with validation
|
518
|
-
# @param [Object]
|
519
|
-
def
|
520
|
-
if
|
521
|
-
fail ArgumentError, '
|
514
|
+
# @param [Object] name Value to be assigned
|
515
|
+
def name=(name)
|
516
|
+
if name.nil?
|
517
|
+
fail ArgumentError, 'name cannot be nil'
|
522
518
|
end
|
523
519
|
|
524
|
-
|
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.'
|
522
|
+
end
|
523
|
+
|
524
|
+
@name = name
|
525
525
|
end
|
526
526
|
|
527
527
|
# Custom attribute writer method with validation
|
@@ -543,26 +543,26 @@ module PulpAnsibleClient
|
|
543
543
|
def ==(o)
|
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 &&
|
547
550
|
connect_timeout == o.connect_timeout &&
|
548
|
-
username == o.username &&
|
549
|
-
headers == o.headers &&
|
550
|
-
client_key == o.client_key &&
|
551
551
|
proxy_password == o.proxy_password &&
|
552
|
-
proxy_url == o.proxy_url &&
|
553
552
|
rate_limit == o.rate_limit &&
|
554
|
-
|
555
|
-
|
553
|
+
username == o.username &&
|
554
|
+
url == o.url &&
|
555
|
+
headers == o.headers &&
|
556
|
+
download_concurrency == o.download_concurrency &&
|
557
|
+
ca_cert == o.ca_cert &&
|
556
558
|
sock_connect_timeout == o.sock_connect_timeout &&
|
557
|
-
proxy_username == o.proxy_username &&
|
558
|
-
sock_read_timeout == o.sock_read_timeout &&
|
559
|
-
name == o.name &&
|
560
|
-
client_cert == o.client_cert &&
|
561
|
-
total_timeout == o.total_timeout &&
|
562
559
|
pulp_labels == o.pulp_labels &&
|
563
|
-
url == o.url &&
|
564
560
|
password == o.password &&
|
565
|
-
|
561
|
+
total_timeout == o.total_timeout &&
|
562
|
+
tls_validation == o.tls_validation &&
|
563
|
+
client_key == o.client_key &&
|
564
|
+
proxy_url == o.proxy_url &&
|
565
|
+
name == o.name &&
|
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
|
-
[
|
579
|
+
[sock_read_timeout, max_retries, client_cert, proxy_username, connect_timeout, proxy_password, rate_limit, username, url, headers, download_concurrency, ca_cert, sock_connect_timeout, pulp_labels, password, total_timeout, tls_validation, client_key, proxy_url, name, metadata_only, git_ref].hash
|
580
580
|
end
|
581
581
|
|
582
582
|
# Builds the object from hash
|