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