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