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