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