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