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