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 AnsibleGitRemote
|
|
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,92 +178,92 @@ module PulpAnsibleClient
|
|
|
178
178
|
h[k.to_sym] = v
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
if attributes.key?(:'url')
|
|
182
|
-
self.url = attributes[:'url']
|
|
183
|
-
else
|
|
184
|
-
self.url = nil
|
|
185
|
-
end
|
|
186
|
-
|
|
187
|
-
if attributes.key?(:'download_concurrency')
|
|
188
|
-
self.download_concurrency = attributes[:'download_concurrency']
|
|
189
|
-
end
|
|
190
|
-
|
|
191
|
-
if attributes.key?(:'sock_connect_timeout')
|
|
192
|
-
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
|
193
|
-
end
|
|
194
|
-
|
|
195
181
|
if attributes.key?(:'client_key')
|
|
196
182
|
self.client_key = attributes[:'client_key']
|
|
197
183
|
end
|
|
198
184
|
|
|
199
|
-
if attributes.key?(:'
|
|
200
|
-
self.
|
|
185
|
+
if attributes.key?(:'proxy_password')
|
|
186
|
+
self.proxy_password = attributes[:'proxy_password']
|
|
201
187
|
end
|
|
202
188
|
|
|
203
189
|
if attributes.key?(:'total_timeout')
|
|
204
190
|
self.total_timeout = attributes[:'total_timeout']
|
|
205
191
|
end
|
|
206
192
|
|
|
207
|
-
if attributes.key?(:'
|
|
208
|
-
self.
|
|
209
|
-
end
|
|
210
|
-
|
|
211
|
-
if attributes.key?(:'proxy_password')
|
|
212
|
-
self.proxy_password = attributes[:'proxy_password']
|
|
213
|
-
end
|
|
214
|
-
|
|
215
|
-
if attributes.key?(:'password')
|
|
216
|
-
self.password = attributes[:'password']
|
|
193
|
+
if attributes.key?(:'username')
|
|
194
|
+
self.username = attributes[:'username']
|
|
217
195
|
end
|
|
218
196
|
|
|
219
|
-
if attributes.key?(:'
|
|
220
|
-
self.
|
|
197
|
+
if attributes.key?(:'proxy_url')
|
|
198
|
+
self.proxy_url = attributes[:'proxy_url']
|
|
221
199
|
end
|
|
222
200
|
|
|
223
201
|
if attributes.key?(:'proxy_username')
|
|
224
202
|
self.proxy_username = attributes[:'proxy_username']
|
|
225
203
|
end
|
|
226
204
|
|
|
227
|
-
if attributes.key?(:'sock_read_timeout')
|
|
228
|
-
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
|
229
|
-
end
|
|
230
|
-
|
|
231
205
|
if attributes.key?(:'headers')
|
|
232
206
|
if (value = attributes[:'headers']).is_a?(Array)
|
|
233
207
|
self.headers = value
|
|
234
208
|
end
|
|
235
209
|
end
|
|
236
210
|
|
|
237
|
-
if attributes.key?(:'
|
|
238
|
-
|
|
211
|
+
if attributes.key?(:'pulp_labels')
|
|
212
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
213
|
+
self.pulp_labels = value
|
|
214
|
+
end
|
|
239
215
|
end
|
|
240
216
|
|
|
241
217
|
if attributes.key?(:'connect_timeout')
|
|
242
218
|
self.connect_timeout = attributes[:'connect_timeout']
|
|
243
219
|
end
|
|
244
220
|
|
|
245
|
-
if attributes.key?(:'
|
|
246
|
-
self.
|
|
221
|
+
if attributes.key?(:'sock_read_timeout')
|
|
222
|
+
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
|
247
223
|
end
|
|
248
224
|
|
|
249
|
-
if attributes.key?(:'
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
225
|
+
if attributes.key?(:'name')
|
|
226
|
+
self.name = attributes[:'name']
|
|
227
|
+
else
|
|
228
|
+
self.name = nil
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
if attributes.key?(:'url')
|
|
232
|
+
self.url = attributes[:'url']
|
|
233
|
+
else
|
|
234
|
+
self.url = nil
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
if attributes.key?(:'sock_connect_timeout')
|
|
238
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
|
253
239
|
end
|
|
254
240
|
|
|
255
241
|
if attributes.key?(:'client_cert')
|
|
256
242
|
self.client_cert = attributes[:'client_cert']
|
|
257
243
|
end
|
|
258
244
|
|
|
259
|
-
if attributes.key?(:'
|
|
260
|
-
self.
|
|
245
|
+
if attributes.key?(:'tls_validation')
|
|
246
|
+
self.tls_validation = attributes[:'tls_validation']
|
|
261
247
|
end
|
|
262
248
|
|
|
263
|
-
if attributes.key?(:'
|
|
264
|
-
self.
|
|
265
|
-
|
|
266
|
-
|
|
249
|
+
if attributes.key?(:'rate_limit')
|
|
250
|
+
self.rate_limit = attributes[:'rate_limit']
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
if attributes.key?(:'max_retries')
|
|
254
|
+
self.max_retries = attributes[:'max_retries']
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
if attributes.key?(:'download_concurrency')
|
|
258
|
+
self.download_concurrency = attributes[:'download_concurrency']
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
if attributes.key?(:'password')
|
|
262
|
+
self.password = attributes[:'password']
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
if attributes.key?(:'ca_cert')
|
|
266
|
+
self.ca_cert = attributes[:'ca_cert']
|
|
267
267
|
end
|
|
268
268
|
|
|
269
269
|
if attributes.key?(:'metadata_only')
|
|
@@ -280,72 +280,72 @@ 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 "
|
|
283
|
+
if !@client_key.nil? && @client_key.to_s.length < 1
|
|
284
|
+
invalid_properties.push('invalid value for "client_key", 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 !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
|
288
|
+
invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
|
|
289
289
|
end
|
|
290
290
|
|
|
291
|
-
if !@
|
|
292
|
-
invalid_properties.push('invalid value for "
|
|
291
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
|
292
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
|
293
293
|
end
|
|
294
294
|
|
|
295
|
-
if !@
|
|
296
|
-
invalid_properties.push('invalid value for "
|
|
295
|
+
if !@username.nil? && @username.to_s.length < 1
|
|
296
|
+
invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
|
|
297
297
|
end
|
|
298
298
|
|
|
299
|
-
if !@
|
|
300
|
-
invalid_properties.push('invalid value for "
|
|
299
|
+
if !@proxy_url.nil? && @proxy_url.to_s.length < 1
|
|
300
|
+
invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
|
|
301
301
|
end
|
|
302
302
|
|
|
303
|
-
if !@
|
|
304
|
-
invalid_properties.push('invalid value for "
|
|
303
|
+
if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
|
304
|
+
invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
|
|
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 !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
|
312
|
+
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
|
313
313
|
end
|
|
314
314
|
|
|
315
|
-
if
|
|
316
|
-
invalid_properties.push('invalid value for "
|
|
315
|
+
if @name.nil?
|
|
316
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
317
317
|
end
|
|
318
318
|
|
|
319
|
-
if
|
|
320
|
-
invalid_properties.push('invalid value for "
|
|
319
|
+
if @name.to_s.length < 1
|
|
320
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
321
321
|
end
|
|
322
322
|
|
|
323
|
-
if
|
|
324
|
-
invalid_properties.push('invalid value for "
|
|
323
|
+
if @url.nil?
|
|
324
|
+
invalid_properties.push('invalid value for "url", url cannot be nil.')
|
|
325
325
|
end
|
|
326
326
|
|
|
327
|
-
if
|
|
328
|
-
invalid_properties.push('invalid value for "
|
|
327
|
+
if @url.to_s.length < 1
|
|
328
|
+
invalid_properties.push('invalid value for "url", 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 !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
332
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
|
333
333
|
end
|
|
334
334
|
|
|
335
335
|
if !@client_cert.nil? && @client_cert.to_s.length < 1
|
|
336
336
|
invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
|
|
337
337
|
end
|
|
338
338
|
|
|
339
|
-
if !@
|
|
340
|
-
invalid_properties.push('invalid value for "
|
|
339
|
+
if !@download_concurrency.nil? && @download_concurrency < 1
|
|
340
|
+
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
|
341
341
|
end
|
|
342
342
|
|
|
343
|
-
if
|
|
344
|
-
invalid_properties.push('invalid value for "
|
|
343
|
+
if !@password.nil? && @password.to_s.length < 1
|
|
344
|
+
invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
|
|
345
345
|
end
|
|
346
346
|
|
|
347
|
-
if @
|
|
348
|
-
invalid_properties.push('invalid value for "
|
|
347
|
+
if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
|
348
|
+
invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
|
|
349
349
|
end
|
|
350
350
|
|
|
351
351
|
if !@git_ref.nil? && @git_ref.to_s.length < 1
|
|
@@ -359,61 +359,27 @@ module PulpAnsibleClient
|
|
|
359
359
|
# @return true if the model is valid
|
|
360
360
|
def valid?
|
|
361
361
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
362
|
-
return false if @url.nil?
|
|
363
|
-
return false if @url.to_s.length < 1
|
|
364
|
-
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
|
365
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
366
362
|
return false if !@client_key.nil? && @client_key.to_s.length < 1
|
|
367
|
-
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
|
368
|
-
return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
|
369
363
|
return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
|
370
|
-
return false if !@
|
|
371
|
-
return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
|
372
|
-
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
|
373
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
|
364
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
|
374
365
|
return false if !@username.nil? && @username.to_s.length < 1
|
|
375
|
-
return false if !@client_cert.nil? && @client_cert.to_s.length < 1
|
|
376
366
|
return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
|
|
367
|
+
return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
|
|
368
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
|
369
|
+
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
|
377
370
|
return false if @name.nil?
|
|
378
371
|
return false if @name.to_s.length < 1
|
|
372
|
+
return false if @url.nil?
|
|
373
|
+
return false if @url.to_s.length < 1
|
|
374
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
375
|
+
return false if !@client_cert.nil? && @client_cert.to_s.length < 1
|
|
376
|
+
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
|
377
|
+
return false if !@password.nil? && @password.to_s.length < 1
|
|
378
|
+
return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
|
379
379
|
return false if !@git_ref.nil? && @git_ref.to_s.length < 1
|
|
380
380
|
true
|
|
381
381
|
end
|
|
382
382
|
|
|
383
|
-
# Custom attribute writer method with validation
|
|
384
|
-
# @param [Object] url Value to be assigned
|
|
385
|
-
def url=(url)
|
|
386
|
-
if url.nil?
|
|
387
|
-
fail ArgumentError, 'url cannot be nil'
|
|
388
|
-
end
|
|
389
|
-
|
|
390
|
-
if url.to_s.length < 1
|
|
391
|
-
fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
|
|
392
|
-
end
|
|
393
|
-
|
|
394
|
-
@url = url
|
|
395
|
-
end
|
|
396
|
-
|
|
397
|
-
# Custom attribute writer method with validation
|
|
398
|
-
# @param [Object] download_concurrency Value to be assigned
|
|
399
|
-
def download_concurrency=(download_concurrency)
|
|
400
|
-
if !download_concurrency.nil? && download_concurrency < 1
|
|
401
|
-
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
|
402
|
-
end
|
|
403
|
-
|
|
404
|
-
@download_concurrency = download_concurrency
|
|
405
|
-
end
|
|
406
|
-
|
|
407
|
-
# Custom attribute writer method with validation
|
|
408
|
-
# @param [Object] sock_connect_timeout Value to be assigned
|
|
409
|
-
def sock_connect_timeout=(sock_connect_timeout)
|
|
410
|
-
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
|
411
|
-
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
|
412
|
-
end
|
|
413
|
-
|
|
414
|
-
@sock_connect_timeout = sock_connect_timeout
|
|
415
|
-
end
|
|
416
|
-
|
|
417
383
|
# Custom attribute writer method with validation
|
|
418
384
|
# @param [Object] client_key Value to be assigned
|
|
419
385
|
def client_key=(client_key)
|
|
@@ -425,43 +391,43 @@ module PulpAnsibleClient
|
|
|
425
391
|
end
|
|
426
392
|
|
|
427
393
|
# Custom attribute writer method with validation
|
|
428
|
-
# @param [Object]
|
|
429
|
-
def
|
|
430
|
-
if !
|
|
431
|
-
fail ArgumentError, 'invalid value for "
|
|
394
|
+
# @param [Object] proxy_password Value to be assigned
|
|
395
|
+
def proxy_password=(proxy_password)
|
|
396
|
+
if !proxy_password.nil? && proxy_password.to_s.length < 1
|
|
397
|
+
fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
|
|
432
398
|
end
|
|
433
399
|
|
|
434
|
-
@
|
|
400
|
+
@proxy_password = proxy_password
|
|
435
401
|
end
|
|
436
402
|
|
|
437
403
|
# Custom attribute writer method with validation
|
|
438
|
-
# @param [Object]
|
|
439
|
-
def
|
|
440
|
-
if !
|
|
441
|
-
fail ArgumentError, 'invalid value for "
|
|
404
|
+
# @param [Object] total_timeout Value to be assigned
|
|
405
|
+
def total_timeout=(total_timeout)
|
|
406
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
|
407
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
|
442
408
|
end
|
|
443
409
|
|
|
444
|
-
@
|
|
410
|
+
@total_timeout = total_timeout
|
|
445
411
|
end
|
|
446
412
|
|
|
447
413
|
# Custom attribute writer method with validation
|
|
448
|
-
# @param [Object]
|
|
449
|
-
def
|
|
450
|
-
if !
|
|
451
|
-
fail ArgumentError, 'invalid value for "
|
|
414
|
+
# @param [Object] username Value to be assigned
|
|
415
|
+
def username=(username)
|
|
416
|
+
if !username.nil? && username.to_s.length < 1
|
|
417
|
+
fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
|
|
452
418
|
end
|
|
453
419
|
|
|
454
|
-
@
|
|
420
|
+
@username = username
|
|
455
421
|
end
|
|
456
422
|
|
|
457
423
|
# Custom attribute writer method with validation
|
|
458
|
-
# @param [Object]
|
|
459
|
-
def
|
|
460
|
-
if !
|
|
461
|
-
fail ArgumentError, 'invalid value for "
|
|
424
|
+
# @param [Object] proxy_url Value to be assigned
|
|
425
|
+
def proxy_url=(proxy_url)
|
|
426
|
+
if !proxy_url.nil? && proxy_url.to_s.length < 1
|
|
427
|
+
fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
|
|
462
428
|
end
|
|
463
429
|
|
|
464
|
-
@
|
|
430
|
+
@proxy_url = proxy_url
|
|
465
431
|
end
|
|
466
432
|
|
|
467
433
|
# Custom attribute writer method with validation
|
|
@@ -474,6 +440,16 @@ module PulpAnsibleClient
|
|
|
474
440
|
@proxy_username = proxy_username
|
|
475
441
|
end
|
|
476
442
|
|
|
443
|
+
# Custom attribute writer method with validation
|
|
444
|
+
# @param [Object] connect_timeout Value to be assigned
|
|
445
|
+
def connect_timeout=(connect_timeout)
|
|
446
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
|
447
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
|
448
|
+
end
|
|
449
|
+
|
|
450
|
+
@connect_timeout = connect_timeout
|
|
451
|
+
end
|
|
452
|
+
|
|
477
453
|
# Custom attribute writer method with validation
|
|
478
454
|
# @param [Object] sock_read_timeout Value to be assigned
|
|
479
455
|
def sock_read_timeout=(sock_read_timeout)
|
|
@@ -485,23 +461,41 @@ module PulpAnsibleClient
|
|
|
485
461
|
end
|
|
486
462
|
|
|
487
463
|
# Custom attribute writer method with validation
|
|
488
|
-
# @param [Object]
|
|
489
|
-
def
|
|
490
|
-
if
|
|
491
|
-
fail ArgumentError, '
|
|
464
|
+
# @param [Object] name Value to be assigned
|
|
465
|
+
def name=(name)
|
|
466
|
+
if name.nil?
|
|
467
|
+
fail ArgumentError, 'name cannot be nil'
|
|
492
468
|
end
|
|
493
469
|
|
|
494
|
-
|
|
470
|
+
if name.to_s.length < 1
|
|
471
|
+
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
@name = name
|
|
495
475
|
end
|
|
496
476
|
|
|
497
477
|
# Custom attribute writer method with validation
|
|
498
|
-
# @param [Object]
|
|
499
|
-
def
|
|
500
|
-
if
|
|
501
|
-
fail ArgumentError, '
|
|
478
|
+
# @param [Object] url Value to be assigned
|
|
479
|
+
def url=(url)
|
|
480
|
+
if url.nil?
|
|
481
|
+
fail ArgumentError, 'url cannot be nil'
|
|
502
482
|
end
|
|
503
483
|
|
|
504
|
-
|
|
484
|
+
if url.to_s.length < 1
|
|
485
|
+
fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
@url = url
|
|
489
|
+
end
|
|
490
|
+
|
|
491
|
+
# Custom attribute writer method with validation
|
|
492
|
+
# @param [Object] sock_connect_timeout Value to be assigned
|
|
493
|
+
def sock_connect_timeout=(sock_connect_timeout)
|
|
494
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
|
495
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
@sock_connect_timeout = sock_connect_timeout
|
|
505
499
|
end
|
|
506
500
|
|
|
507
501
|
# Custom attribute writer method with validation
|
|
@@ -515,27 +509,33 @@ module PulpAnsibleClient
|
|
|
515
509
|
end
|
|
516
510
|
|
|
517
511
|
# Custom attribute writer method with validation
|
|
518
|
-
# @param [Object]
|
|
519
|
-
def
|
|
520
|
-
if !
|
|
521
|
-
fail ArgumentError, 'invalid value for "
|
|
512
|
+
# @param [Object] download_concurrency Value to be assigned
|
|
513
|
+
def download_concurrency=(download_concurrency)
|
|
514
|
+
if !download_concurrency.nil? && download_concurrency < 1
|
|
515
|
+
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
|
522
516
|
end
|
|
523
517
|
|
|
524
|
-
@
|
|
518
|
+
@download_concurrency = download_concurrency
|
|
525
519
|
end
|
|
526
520
|
|
|
527
521
|
# Custom attribute writer method with validation
|
|
528
|
-
# @param [Object]
|
|
529
|
-
def
|
|
530
|
-
if
|
|
531
|
-
fail ArgumentError, '
|
|
522
|
+
# @param [Object] password Value to be assigned
|
|
523
|
+
def password=(password)
|
|
524
|
+
if !password.nil? && password.to_s.length < 1
|
|
525
|
+
fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
|
|
532
526
|
end
|
|
533
527
|
|
|
534
|
-
|
|
535
|
-
|
|
528
|
+
@password = password
|
|
529
|
+
end
|
|
530
|
+
|
|
531
|
+
# Custom attribute writer method with validation
|
|
532
|
+
# @param [Object] ca_cert Value to be assigned
|
|
533
|
+
def ca_cert=(ca_cert)
|
|
534
|
+
if !ca_cert.nil? && ca_cert.to_s.length < 1
|
|
535
|
+
fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
|
|
536
536
|
end
|
|
537
537
|
|
|
538
|
-
@
|
|
538
|
+
@ca_cert = ca_cert
|
|
539
539
|
end
|
|
540
540
|
|
|
541
541
|
# Custom attribute writer method with validation
|
|
@@ -557,26 +557,26 @@ module PulpAnsibleClient
|
|
|
557
557
|
def ==(o)
|
|
558
558
|
return true if self.equal?(o)
|
|
559
559
|
self.class == o.class &&
|
|
560
|
-
url == o.url &&
|
|
561
|
-
download_concurrency == o.download_concurrency &&
|
|
562
|
-
sock_connect_timeout == o.sock_connect_timeout &&
|
|
563
560
|
client_key == o.client_key &&
|
|
564
|
-
tls_validation == o.tls_validation &&
|
|
565
|
-
total_timeout == o.total_timeout &&
|
|
566
|
-
ca_cert == o.ca_cert &&
|
|
567
561
|
proxy_password == o.proxy_password &&
|
|
568
|
-
|
|
569
|
-
|
|
562
|
+
total_timeout == o.total_timeout &&
|
|
563
|
+
username == o.username &&
|
|
564
|
+
proxy_url == o.proxy_url &&
|
|
570
565
|
proxy_username == o.proxy_username &&
|
|
571
|
-
sock_read_timeout == o.sock_read_timeout &&
|
|
572
566
|
headers == o.headers &&
|
|
573
|
-
max_retries == o.max_retries &&
|
|
574
|
-
connect_timeout == o.connect_timeout &&
|
|
575
|
-
username == o.username &&
|
|
576
567
|
pulp_labels == o.pulp_labels &&
|
|
577
|
-
|
|
578
|
-
|
|
568
|
+
connect_timeout == o.connect_timeout &&
|
|
569
|
+
sock_read_timeout == o.sock_read_timeout &&
|
|
579
570
|
name == o.name &&
|
|
571
|
+
url == o.url &&
|
|
572
|
+
sock_connect_timeout == o.sock_connect_timeout &&
|
|
573
|
+
client_cert == o.client_cert &&
|
|
574
|
+
tls_validation == o.tls_validation &&
|
|
575
|
+
rate_limit == o.rate_limit &&
|
|
576
|
+
max_retries == o.max_retries &&
|
|
577
|
+
download_concurrency == o.download_concurrency &&
|
|
578
|
+
password == o.password &&
|
|
579
|
+
ca_cert == o.ca_cert &&
|
|
580
580
|
metadata_only == o.metadata_only &&
|
|
581
581
|
git_ref == o.git_ref
|
|
582
582
|
end
|
|
@@ -590,7 +590,7 @@ module PulpAnsibleClient
|
|
|
590
590
|
# Calculates hash code according to all attributes.
|
|
591
591
|
# @return [Integer] Hash code
|
|
592
592
|
def hash
|
|
593
|
-
[
|
|
593
|
+
[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
|
|
594
594
|
end
|
|
595
595
|
|
|
596
596
|
# Builds the object from hash
|