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