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