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