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