pulp_ansible_client 0.14.0 → 0.14.1
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/AnsibleCollectionVersion.md +3 -3
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +28 -28
- data/docs/AnsibleGitRemoteResponse.md +22 -22
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/ContentCollectionVersionsApi.md +3 -3
- data/docs/DistributionsAnsibleApi.md +2 -0
- data/docs/PatchedansibleGitRemote.md +28 -28
- data/docs/RepositoriesAnsibleApi.md +2 -0
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +3 -3
- data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +3 -0
- data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +3 -0
- data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api_client.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_collection_version.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +10 -10
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +210 -210
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +120 -120
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +210 -210
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/pulp_ansible_client.gemspec +3 -3
- data/spec/api/content_collection_versions_api_spec.rb +1 -1
- data/spec/api/distributions_ansible_api_spec.rb +1 -0
- data/spec/api/repositories_ansible_api_spec.rb +1 -0
- data/spec/models/ansible_collection_version_response_spec.rb +2 -2
- data/spec/models/ansible_collection_version_spec.rb +3 -3
- data/spec/models/ansible_git_remote_response_spec.rb +18 -18
- data/spec/models/ansible_git_remote_spec.rb +17 -17
- data/spec/models/ansible_role_response_spec.rb +2 -2
- data/spec/models/patchedansible_git_remote_spec.rb +17 -17
- metadata +105 -106
- data/git_push.sh +0 -58
@@ -15,64 +15,64 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for Git Collection Remotes.
|
17
17
|
class PatchedansibleGitRemote
|
18
|
-
#
|
19
|
-
attr_accessor :
|
18
|
+
# 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.
|
19
|
+
attr_accessor :sock_connect_timeout
|
20
20
|
|
21
|
-
#
|
22
|
-
attr_accessor :
|
21
|
+
# Headers for aiohttp.Clientsession
|
22
|
+
attr_accessor :headers
|
23
23
|
|
24
|
-
#
|
25
|
-
attr_accessor :
|
24
|
+
# Limits requests per second for each concurrent downloader
|
25
|
+
attr_accessor :rate_limit
|
26
|
+
|
27
|
+
# A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
|
28
|
+
attr_accessor :ca_cert
|
26
29
|
|
27
30
|
# A unique name for this remote.
|
28
31
|
attr_accessor :name
|
29
32
|
|
30
|
-
#
|
31
|
-
attr_accessor :
|
33
|
+
# aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
34
|
+
attr_accessor :connect_timeout
|
32
35
|
|
33
|
-
#
|
34
|
-
attr_accessor :
|
36
|
+
# The username to be used for authentication when syncing.
|
37
|
+
attr_accessor :username
|
35
38
|
|
36
39
|
# 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.
|
37
40
|
attr_accessor :sock_read_timeout
|
38
41
|
|
39
|
-
# Headers for aiohttp.Clientsession
|
40
|
-
attr_accessor :headers
|
41
|
-
|
42
42
|
# Total number of simultaneous connections. If not set then the default value will be used.
|
43
43
|
attr_accessor :download_concurrency
|
44
44
|
|
45
|
-
#
|
46
|
-
attr_accessor :
|
45
|
+
# Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
|
46
|
+
attr_accessor :max_retries
|
47
47
|
|
48
48
|
# A PEM encoded private key used for authentication.
|
49
49
|
attr_accessor :client_key
|
50
50
|
|
51
|
-
# The URL of an external content source.
|
52
|
-
attr_accessor :url
|
53
|
-
|
54
51
|
attr_accessor :pulp_labels
|
55
52
|
|
56
|
-
#
|
57
|
-
attr_accessor :
|
53
|
+
# The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
|
54
|
+
attr_accessor :password
|
58
55
|
|
59
|
-
# The
|
60
|
-
attr_accessor :
|
56
|
+
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
57
|
+
attr_accessor :total_timeout
|
61
58
|
|
62
|
-
#
|
63
|
-
attr_accessor :
|
59
|
+
# The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
|
60
|
+
attr_accessor :proxy_password
|
64
61
|
|
65
|
-
# The
|
66
|
-
attr_accessor :
|
62
|
+
# The URL of an external content source.
|
63
|
+
attr_accessor :url
|
64
|
+
|
65
|
+
# A PEM encoded client certificate used for authentication.
|
66
|
+
attr_accessor :client_cert
|
67
67
|
|
68
68
|
# If True, TLS peer validation must be performed.
|
69
69
|
attr_accessor :tls_validation
|
70
70
|
|
71
|
-
# The
|
72
|
-
attr_accessor :
|
71
|
+
# The username to authenticte to the proxy.
|
72
|
+
attr_accessor :proxy_username
|
73
73
|
|
74
|
-
#
|
75
|
-
attr_accessor :
|
74
|
+
# The proxy URL. Format: scheme://host:port
|
75
|
+
attr_accessor :proxy_url
|
76
76
|
|
77
77
|
# If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
|
78
78
|
attr_accessor :metadata_only
|
@@ -83,26 +83,26 @@ module PulpAnsibleClient
|
|
83
83
|
# Attribute mapping from ruby-style variable name to JSON key.
|
84
84
|
def self.attribute_map
|
85
85
|
{
|
86
|
-
:'
|
87
|
-
:'
|
88
|
-
:'
|
86
|
+
:'sock_connect_timeout' => :'sock_connect_timeout',
|
87
|
+
:'headers' => :'headers',
|
88
|
+
:'rate_limit' => :'rate_limit',
|
89
|
+
:'ca_cert' => :'ca_cert',
|
89
90
|
:'name' => :'name',
|
90
|
-
:'
|
91
|
-
:'
|
91
|
+
:'connect_timeout' => :'connect_timeout',
|
92
|
+
:'username' => :'username',
|
92
93
|
:'sock_read_timeout' => :'sock_read_timeout',
|
93
|
-
:'headers' => :'headers',
|
94
94
|
:'download_concurrency' => :'download_concurrency',
|
95
|
-
:'
|
95
|
+
:'max_retries' => :'max_retries',
|
96
96
|
:'client_key' => :'client_key',
|
97
|
-
:'url' => :'url',
|
98
97
|
:'pulp_labels' => :'pulp_labels',
|
99
|
-
:'
|
100
|
-
:'
|
101
|
-
:'ca_cert' => :'ca_cert',
|
102
|
-
:'username' => :'username',
|
103
|
-
:'tls_validation' => :'tls_validation',
|
98
|
+
:'password' => :'password',
|
99
|
+
:'total_timeout' => :'total_timeout',
|
104
100
|
:'proxy_password' => :'proxy_password',
|
105
|
-
:'
|
101
|
+
:'url' => :'url',
|
102
|
+
:'client_cert' => :'client_cert',
|
103
|
+
:'tls_validation' => :'tls_validation',
|
104
|
+
:'proxy_username' => :'proxy_username',
|
105
|
+
:'proxy_url' => :'proxy_url',
|
106
106
|
:'metadata_only' => :'metadata_only',
|
107
107
|
:'git_ref' => :'git_ref'
|
108
108
|
}
|
@@ -111,26 +111,26 @@ module PulpAnsibleClient
|
|
111
111
|
# Attribute type mapping.
|
112
112
|
def self.openapi_types
|
113
113
|
{
|
114
|
-
:'
|
115
|
-
:'
|
116
|
-
:'
|
114
|
+
:'sock_connect_timeout' => :'Float',
|
115
|
+
:'headers' => :'Array<Object>',
|
116
|
+
:'rate_limit' => :'Integer',
|
117
|
+
:'ca_cert' => :'String',
|
117
118
|
:'name' => :'String',
|
118
|
-
:'
|
119
|
-
:'
|
119
|
+
:'connect_timeout' => :'Float',
|
120
|
+
:'username' => :'String',
|
120
121
|
:'sock_read_timeout' => :'Float',
|
121
|
-
:'headers' => :'Array<Object>',
|
122
122
|
:'download_concurrency' => :'Integer',
|
123
|
-
:'
|
123
|
+
:'max_retries' => :'Integer',
|
124
124
|
:'client_key' => :'String',
|
125
|
-
:'url' => :'String',
|
126
125
|
:'pulp_labels' => :'Object',
|
127
|
-
:'
|
128
|
-
:'
|
129
|
-
:'ca_cert' => :'String',
|
130
|
-
:'username' => :'String',
|
131
|
-
:'tls_validation' => :'Boolean',
|
126
|
+
:'password' => :'String',
|
127
|
+
:'total_timeout' => :'Float',
|
132
128
|
:'proxy_password' => :'String',
|
133
|
-
:'
|
129
|
+
:'url' => :'String',
|
130
|
+
:'client_cert' => :'String',
|
131
|
+
:'tls_validation' => :'Boolean',
|
132
|
+
:'proxy_username' => :'String',
|
133
|
+
:'proxy_url' => :'String',
|
134
134
|
:'metadata_only' => :'Boolean',
|
135
135
|
:'git_ref' => :'String'
|
136
136
|
}
|
@@ -139,21 +139,21 @@ module PulpAnsibleClient
|
|
139
139
|
# List of attributes with nullable: true
|
140
140
|
def self.openapi_nullable
|
141
141
|
Set.new([
|
142
|
-
:'
|
143
|
-
:'
|
142
|
+
:'sock_connect_timeout',
|
143
|
+
:'rate_limit',
|
144
|
+
:'ca_cert',
|
144
145
|
:'connect_timeout',
|
145
|
-
:'
|
146
|
-
:'max_retries',
|
146
|
+
:'username',
|
147
147
|
:'sock_read_timeout',
|
148
148
|
:'download_concurrency',
|
149
|
-
:'
|
149
|
+
:'max_retries',
|
150
150
|
:'client_key',
|
151
|
-
:'
|
152
|
-
:'
|
153
|
-
:'ca_cert',
|
154
|
-
:'username',
|
151
|
+
:'password',
|
152
|
+
:'total_timeout',
|
155
153
|
:'proxy_password',
|
156
|
-
:'
|
154
|
+
:'client_cert',
|
155
|
+
:'proxy_username',
|
156
|
+
:'proxy_url',
|
157
157
|
])
|
158
158
|
end
|
159
159
|
|
@@ -172,86 +172,86 @@ module PulpAnsibleClient
|
|
172
172
|
h[k.to_sym] = v
|
173
173
|
}
|
174
174
|
|
175
|
-
if attributes.key?(:'
|
176
|
-
self.
|
175
|
+
if attributes.key?(:'sock_connect_timeout')
|
176
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
177
177
|
end
|
178
178
|
|
179
|
-
if attributes.key?(:'
|
180
|
-
|
179
|
+
if attributes.key?(:'headers')
|
180
|
+
if (value = attributes[:'headers']).is_a?(Array)
|
181
|
+
self.headers = value
|
182
|
+
end
|
181
183
|
end
|
182
184
|
|
183
|
-
if attributes.key?(:'
|
184
|
-
self.
|
185
|
+
if attributes.key?(:'rate_limit')
|
186
|
+
self.rate_limit = attributes[:'rate_limit']
|
187
|
+
end
|
188
|
+
|
189
|
+
if attributes.key?(:'ca_cert')
|
190
|
+
self.ca_cert = attributes[:'ca_cert']
|
185
191
|
end
|
186
192
|
|
187
193
|
if attributes.key?(:'name')
|
188
194
|
self.name = attributes[:'name']
|
189
195
|
end
|
190
196
|
|
191
|
-
if attributes.key?(:'
|
192
|
-
self.
|
197
|
+
if attributes.key?(:'connect_timeout')
|
198
|
+
self.connect_timeout = attributes[:'connect_timeout']
|
193
199
|
end
|
194
200
|
|
195
|
-
if attributes.key?(:'
|
196
|
-
self.
|
201
|
+
if attributes.key?(:'username')
|
202
|
+
self.username = attributes[:'username']
|
197
203
|
end
|
198
204
|
|
199
205
|
if attributes.key?(:'sock_read_timeout')
|
200
206
|
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
201
207
|
end
|
202
208
|
|
203
|
-
if attributes.key?(:'headers')
|
204
|
-
if (value = attributes[:'headers']).is_a?(Array)
|
205
|
-
self.headers = value
|
206
|
-
end
|
207
|
-
end
|
208
|
-
|
209
209
|
if attributes.key?(:'download_concurrency')
|
210
210
|
self.download_concurrency = attributes[:'download_concurrency']
|
211
211
|
end
|
212
212
|
|
213
|
-
if attributes.key?(:'
|
214
|
-
self.
|
213
|
+
if attributes.key?(:'max_retries')
|
214
|
+
self.max_retries = attributes[:'max_retries']
|
215
215
|
end
|
216
216
|
|
217
217
|
if attributes.key?(:'client_key')
|
218
218
|
self.client_key = attributes[:'client_key']
|
219
219
|
end
|
220
220
|
|
221
|
-
if attributes.key?(:'url')
|
222
|
-
self.url = attributes[:'url']
|
223
|
-
end
|
224
|
-
|
225
221
|
if attributes.key?(:'pulp_labels')
|
226
222
|
self.pulp_labels = attributes[:'pulp_labels']
|
227
223
|
end
|
228
224
|
|
229
|
-
if attributes.key?(:'
|
230
|
-
self.
|
225
|
+
if attributes.key?(:'password')
|
226
|
+
self.password = attributes[:'password']
|
231
227
|
end
|
232
228
|
|
233
|
-
if attributes.key?(:'
|
234
|
-
self.
|
229
|
+
if attributes.key?(:'total_timeout')
|
230
|
+
self.total_timeout = attributes[:'total_timeout']
|
235
231
|
end
|
236
232
|
|
237
|
-
if attributes.key?(:'
|
238
|
-
self.
|
233
|
+
if attributes.key?(:'proxy_password')
|
234
|
+
self.proxy_password = attributes[:'proxy_password']
|
239
235
|
end
|
240
236
|
|
241
|
-
if attributes.key?(:'
|
242
|
-
self.
|
237
|
+
if attributes.key?(:'url')
|
238
|
+
self.url = attributes[:'url']
|
239
|
+
end
|
240
|
+
|
241
|
+
if attributes.key?(:'client_cert')
|
242
|
+
self.client_cert = attributes[:'client_cert']
|
243
243
|
end
|
244
244
|
|
245
245
|
if attributes.key?(:'tls_validation')
|
246
246
|
self.tls_validation = attributes[:'tls_validation']
|
247
247
|
end
|
248
248
|
|
249
|
-
if attributes.key?(:'
|
250
|
-
self.
|
249
|
+
if attributes.key?(:'proxy_username')
|
250
|
+
self.proxy_username = attributes[:'proxy_username']
|
251
251
|
end
|
252
252
|
|
253
|
-
if attributes.key?(:'
|
254
|
-
self.
|
253
|
+
if attributes.key?(:'proxy_url')
|
254
|
+
self.proxy_url = attributes[:'proxy_url']
|
255
255
|
end
|
256
256
|
|
257
257
|
if attributes.key?(:'metadata_only')
|
@@ -267,24 +267,24 @@ module PulpAnsibleClient
|
|
267
267
|
# @return Array for valid properties with the reasons
|
268
268
|
def list_invalid_properties
|
269
269
|
invalid_properties = Array.new
|
270
|
-
if !@
|
271
|
-
invalid_properties.push('invalid value for "
|
272
|
-
end
|
273
|
-
|
274
|
-
if !@password.nil? && @password.to_s.length < 1
|
275
|
-
invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
|
270
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
271
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
276
272
|
end
|
277
273
|
|
278
|
-
if !@
|
279
|
-
invalid_properties.push('invalid value for "
|
274
|
+
if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
275
|
+
invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
|
280
276
|
end
|
281
277
|
|
282
278
|
if !@name.nil? && @name.to_s.length < 1
|
283
279
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
284
280
|
end
|
285
281
|
|
286
|
-
if !@
|
287
|
-
invalid_properties.push('invalid value for "
|
282
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
283
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
284
|
+
end
|
285
|
+
|
286
|
+
if !@username.nil? && @username.to_s.length < 1
|
287
|
+
invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
|
288
288
|
end
|
289
289
|
|
290
290
|
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
@@ -295,36 +295,36 @@ module PulpAnsibleClient
|
|
295
295
|
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
296
296
|
end
|
297
297
|
|
298
|
+
if !@client_key.nil? && @client_key.to_s.length < 1
|
299
|
+
invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
|
300
|
+
end
|
301
|
+
|
302
|
+
if !@password.nil? && @password.to_s.length < 1
|
303
|
+
invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
|
304
|
+
end
|
305
|
+
|
298
306
|
if !@total_timeout.nil? && @total_timeout < 0.0
|
299
307
|
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
300
308
|
end
|
301
309
|
|
302
|
-
if !@
|
303
|
-
invalid_properties.push('invalid value for "
|
310
|
+
if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
311
|
+
invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
|
304
312
|
end
|
305
313
|
|
306
314
|
if !@url.nil? && @url.to_s.length < 1
|
307
315
|
invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
|
308
316
|
end
|
309
317
|
|
310
|
-
if !@
|
311
|
-
invalid_properties.push('invalid value for "
|
318
|
+
if !@client_cert.nil? && @client_cert.to_s.length < 1
|
319
|
+
invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
|
312
320
|
end
|
313
321
|
|
314
322
|
if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
315
323
|
invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
|
316
324
|
end
|
317
325
|
|
318
|
-
if !@
|
319
|
-
invalid_properties.push('invalid value for "
|
320
|
-
end
|
321
|
-
|
322
|
-
if !@username.nil? && @username.to_s.length < 1
|
323
|
-
invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
|
324
|
-
end
|
325
|
-
|
326
|
-
if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
327
|
-
invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
|
326
|
+
if !@proxy_url.nil? && @proxy_url.to_s.length < 1
|
327
|
+
invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
|
328
328
|
end
|
329
329
|
|
330
330
|
if !@git_ref.nil? && @git_ref.to_s.length < 1
|
@@ -337,53 +337,43 @@ module PulpAnsibleClient
|
|
337
337
|
# Check to see if the all the properties in the model are valid
|
338
338
|
# @return true if the model is valid
|
339
339
|
def valid?
|
340
|
-
return false if !@
|
341
|
-
return false if !@
|
342
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
340
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
341
|
+
return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
343
342
|
return false if !@name.nil? && @name.to_s.length < 1
|
344
|
-
return false if !@
|
343
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
344
|
+
return false if !@username.nil? && @username.to_s.length < 1
|
345
345
|
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
346
346
|
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
347
|
-
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
348
347
|
return false if !@client_key.nil? && @client_key.to_s.length < 1
|
348
|
+
return false if !@password.nil? && @password.to_s.length < 1
|
349
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
350
|
+
return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
349
351
|
return false if !@url.nil? && @url.to_s.length < 1
|
350
|
-
return false if !@
|
352
|
+
return false if !@client_cert.nil? && @client_cert.to_s.length < 1
|
351
353
|
return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
352
|
-
return false if !@
|
353
|
-
return false if !@username.nil? && @username.to_s.length < 1
|
354
|
-
return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
354
|
+
return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
|
355
355
|
return false if !@git_ref.nil? && @git_ref.to_s.length < 1
|
356
356
|
true
|
357
357
|
end
|
358
358
|
|
359
359
|
# Custom attribute writer method with validation
|
360
|
-
# @param [Object]
|
361
|
-
def
|
362
|
-
if !
|
363
|
-
fail ArgumentError, 'invalid value for "
|
364
|
-
end
|
365
|
-
|
366
|
-
@client_cert = client_cert
|
367
|
-
end
|
368
|
-
|
369
|
-
# Custom attribute writer method with validation
|
370
|
-
# @param [Object] password Value to be assigned
|
371
|
-
def password=(password)
|
372
|
-
if !password.nil? && password.to_s.length < 1
|
373
|
-
fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
|
360
|
+
# @param [Object] sock_connect_timeout Value to be assigned
|
361
|
+
def sock_connect_timeout=(sock_connect_timeout)
|
362
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
363
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
374
364
|
end
|
375
365
|
|
376
|
-
@
|
366
|
+
@sock_connect_timeout = sock_connect_timeout
|
377
367
|
end
|
378
368
|
|
379
369
|
# Custom attribute writer method with validation
|
380
|
-
# @param [Object]
|
381
|
-
def
|
382
|
-
if !
|
383
|
-
fail ArgumentError, 'invalid value for "
|
370
|
+
# @param [Object] ca_cert Value to be assigned
|
371
|
+
def ca_cert=(ca_cert)
|
372
|
+
if !ca_cert.nil? && ca_cert.to_s.length < 1
|
373
|
+
fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
|
384
374
|
end
|
385
375
|
|
386
|
-
@
|
376
|
+
@ca_cert = ca_cert
|
387
377
|
end
|
388
378
|
|
389
379
|
# Custom attribute writer method with validation
|
@@ -397,13 +387,23 @@ module PulpAnsibleClient
|
|
397
387
|
end
|
398
388
|
|
399
389
|
# Custom attribute writer method with validation
|
400
|
-
# @param [Object]
|
401
|
-
def
|
402
|
-
if !
|
403
|
-
fail ArgumentError, 'invalid value for "
|
390
|
+
# @param [Object] connect_timeout Value to be assigned
|
391
|
+
def connect_timeout=(connect_timeout)
|
392
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
393
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
404
394
|
end
|
405
395
|
|
406
|
-
@
|
396
|
+
@connect_timeout = connect_timeout
|
397
|
+
end
|
398
|
+
|
399
|
+
# Custom attribute writer method with validation
|
400
|
+
# @param [Object] username Value to be assigned
|
401
|
+
def username=(username)
|
402
|
+
if !username.nil? && username.to_s.length < 1
|
403
|
+
fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
|
404
|
+
end
|
405
|
+
|
406
|
+
@username = username
|
407
407
|
end
|
408
408
|
|
409
409
|
# Custom attribute writer method with validation
|
@@ -426,6 +426,26 @@ module PulpAnsibleClient
|
|
426
426
|
@download_concurrency = download_concurrency
|
427
427
|
end
|
428
428
|
|
429
|
+
# Custom attribute writer method with validation
|
430
|
+
# @param [Object] client_key Value to be assigned
|
431
|
+
def client_key=(client_key)
|
432
|
+
if !client_key.nil? && client_key.to_s.length < 1
|
433
|
+
fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
|
434
|
+
end
|
435
|
+
|
436
|
+
@client_key = client_key
|
437
|
+
end
|
438
|
+
|
439
|
+
# Custom attribute writer method with validation
|
440
|
+
# @param [Object] password Value to be assigned
|
441
|
+
def password=(password)
|
442
|
+
if !password.nil? && password.to_s.length < 1
|
443
|
+
fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
|
444
|
+
end
|
445
|
+
|
446
|
+
@password = password
|
447
|
+
end
|
448
|
+
|
429
449
|
# Custom attribute writer method with validation
|
430
450
|
# @param [Object] total_timeout Value to be assigned
|
431
451
|
def total_timeout=(total_timeout)
|
@@ -437,13 +457,13 @@ module PulpAnsibleClient
|
|
437
457
|
end
|
438
458
|
|
439
459
|
# Custom attribute writer method with validation
|
440
|
-
# @param [Object]
|
441
|
-
def
|
442
|
-
if !
|
443
|
-
fail ArgumentError, 'invalid value for "
|
460
|
+
# @param [Object] proxy_password Value to be assigned
|
461
|
+
def proxy_password=(proxy_password)
|
462
|
+
if !proxy_password.nil? && proxy_password.to_s.length < 1
|
463
|
+
fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
|
444
464
|
end
|
445
465
|
|
446
|
-
@
|
466
|
+
@proxy_password = proxy_password
|
447
467
|
end
|
448
468
|
|
449
469
|
# Custom attribute writer method with validation
|
@@ -457,13 +477,13 @@ module PulpAnsibleClient
|
|
457
477
|
end
|
458
478
|
|
459
479
|
# Custom attribute writer method with validation
|
460
|
-
# @param [Object]
|
461
|
-
def
|
462
|
-
if !
|
463
|
-
fail ArgumentError, 'invalid value for "
|
480
|
+
# @param [Object] client_cert Value to be assigned
|
481
|
+
def client_cert=(client_cert)
|
482
|
+
if !client_cert.nil? && client_cert.to_s.length < 1
|
483
|
+
fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
|
464
484
|
end
|
465
485
|
|
466
|
-
@
|
486
|
+
@client_cert = client_cert
|
467
487
|
end
|
468
488
|
|
469
489
|
# Custom attribute writer method with validation
|
@@ -477,33 +497,13 @@ module PulpAnsibleClient
|
|
477
497
|
end
|
478
498
|
|
479
499
|
# Custom attribute writer method with validation
|
480
|
-
# @param [Object]
|
481
|
-
def
|
482
|
-
if !
|
483
|
-
fail ArgumentError, 'invalid value for "
|
484
|
-
end
|
485
|
-
|
486
|
-
@ca_cert = ca_cert
|
487
|
-
end
|
488
|
-
|
489
|
-
# Custom attribute writer method with validation
|
490
|
-
# @param [Object] username Value to be assigned
|
491
|
-
def username=(username)
|
492
|
-
if !username.nil? && username.to_s.length < 1
|
493
|
-
fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
|
494
|
-
end
|
495
|
-
|
496
|
-
@username = username
|
497
|
-
end
|
498
|
-
|
499
|
-
# Custom attribute writer method with validation
|
500
|
-
# @param [Object] proxy_password Value to be assigned
|
501
|
-
def proxy_password=(proxy_password)
|
502
|
-
if !proxy_password.nil? && proxy_password.to_s.length < 1
|
503
|
-
fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
|
500
|
+
# @param [Object] proxy_url Value to be assigned
|
501
|
+
def proxy_url=(proxy_url)
|
502
|
+
if !proxy_url.nil? && proxy_url.to_s.length < 1
|
503
|
+
fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
|
504
504
|
end
|
505
505
|
|
506
|
-
@
|
506
|
+
@proxy_url = proxy_url
|
507
507
|
end
|
508
508
|
|
509
509
|
# Custom attribute writer method with validation
|
@@ -521,26 +521,26 @@ module PulpAnsibleClient
|
|
521
521
|
def ==(o)
|
522
522
|
return true if self.equal?(o)
|
523
523
|
self.class == o.class &&
|
524
|
-
|
525
|
-
|
526
|
-
|
524
|
+
sock_connect_timeout == o.sock_connect_timeout &&
|
525
|
+
headers == o.headers &&
|
526
|
+
rate_limit == o.rate_limit &&
|
527
|
+
ca_cert == o.ca_cert &&
|
527
528
|
name == o.name &&
|
528
|
-
|
529
|
-
|
529
|
+
connect_timeout == o.connect_timeout &&
|
530
|
+
username == o.username &&
|
530
531
|
sock_read_timeout == o.sock_read_timeout &&
|
531
|
-
headers == o.headers &&
|
532
532
|
download_concurrency == o.download_concurrency &&
|
533
|
-
|
533
|
+
max_retries == o.max_retries &&
|
534
534
|
client_key == o.client_key &&
|
535
|
-
url == o.url &&
|
536
535
|
pulp_labels == o.pulp_labels &&
|
537
|
-
|
538
|
-
|
539
|
-
ca_cert == o.ca_cert &&
|
540
|
-
username == o.username &&
|
541
|
-
tls_validation == o.tls_validation &&
|
536
|
+
password == o.password &&
|
537
|
+
total_timeout == o.total_timeout &&
|
542
538
|
proxy_password == o.proxy_password &&
|
543
|
-
|
539
|
+
url == o.url &&
|
540
|
+
client_cert == o.client_cert &&
|
541
|
+
tls_validation == o.tls_validation &&
|
542
|
+
proxy_username == o.proxy_username &&
|
543
|
+
proxy_url == o.proxy_url &&
|
544
544
|
metadata_only == o.metadata_only &&
|
545
545
|
git_ref == o.git_ref
|
546
546
|
end
|
@@ -554,7 +554,7 @@ module PulpAnsibleClient
|
|
554
554
|
# Calculates hash code according to all attributes.
|
555
555
|
# @return [Integer] Hash code
|
556
556
|
def hash
|
557
|
-
[
|
557
|
+
[sock_connect_timeout, headers, rate_limit, ca_cert, name, connect_timeout, username, sock_read_timeout, download_concurrency, max_retries, client_key, pulp_labels, password, total_timeout, proxy_password, url, client_cert, tls_validation, proxy_username, proxy_url, metadata_only, git_ref].hash
|
558
558
|
end
|
559
559
|
|
560
560
|
# Builds the object from hash
|