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