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