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