pulp_ansible_client 0.20.4 → 0.20.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +30 -30
- data/docs/AnsibleGitRemoteResponse.md +30 -30
- data/docs/AnsibleRole.md +3 -3
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/PatchedansibleGitRemote.md +30 -30
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +250 -250
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +161 -161
- data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +243 -243
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/models/ansible_collection_version_response_spec.rb +3 -3
- data/spec/models/ansible_git_remote_response_spec.rb +19 -19
- data/spec/models/ansible_git_remote_spec.rb +20 -20
- data/spec/models/ansible_role_response_spec.rb +3 -3
- data/spec/models/ansible_role_spec.rb +2 -2
- data/spec/models/patchedansible_git_remote_spec.rb +20 -20
- metadata +132 -132
@@ -15,60 +15,60 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for Git Collection Remotes.
|
17
17
|
class AnsibleGitRemoteResponse
|
18
|
-
#
|
19
|
-
attr_accessor :
|
20
|
-
|
21
|
-
attr_accessor :pulp_href
|
22
|
-
|
23
|
-
# A PEM encoded client certificate used for authentication.
|
24
|
-
attr_accessor :client_cert
|
25
|
-
|
26
|
-
# The proxy URL. Format: scheme://host:port
|
27
|
-
attr_accessor :proxy_url
|
18
|
+
# Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
|
19
|
+
attr_accessor :max_retries
|
28
20
|
|
29
|
-
#
|
30
|
-
attr_accessor :
|
21
|
+
# Limits requests per second for each concurrent downloader
|
22
|
+
attr_accessor :rate_limit
|
31
23
|
|
32
24
|
# Timestamp of creation.
|
33
25
|
attr_accessor :pulp_created
|
34
26
|
|
27
|
+
# A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
|
28
|
+
attr_accessor :ca_cert
|
29
|
+
|
35
30
|
# The URL of an external content source.
|
36
31
|
attr_accessor :url
|
37
32
|
|
38
|
-
#
|
39
|
-
attr_accessor :
|
33
|
+
# A PEM encoded client certificate used for authentication.
|
34
|
+
attr_accessor :client_cert
|
40
35
|
|
41
|
-
#
|
42
|
-
attr_accessor :
|
36
|
+
# List of hidden (write only) fields
|
37
|
+
attr_accessor :hidden_fields
|
43
38
|
|
44
|
-
#
|
45
|
-
attr_accessor :
|
39
|
+
# Timestamp of the most recent update of the remote.
|
40
|
+
attr_accessor :pulp_last_updated
|
46
41
|
|
47
|
-
#
|
48
|
-
attr_accessor :
|
42
|
+
# The proxy URL. Format: scheme://host:port
|
43
|
+
attr_accessor :proxy_url
|
49
44
|
|
50
45
|
attr_accessor :pulp_labels
|
51
46
|
|
52
|
-
#
|
53
|
-
attr_accessor :
|
47
|
+
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
48
|
+
attr_accessor :total_timeout
|
54
49
|
|
55
|
-
#
|
56
|
-
attr_accessor :
|
50
|
+
# aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
51
|
+
attr_accessor :connect_timeout
|
52
|
+
|
53
|
+
# 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.
|
54
|
+
attr_accessor :sock_connect_timeout
|
57
55
|
|
58
56
|
# 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.
|
59
57
|
attr_accessor :sock_read_timeout
|
60
58
|
|
61
|
-
#
|
62
|
-
attr_accessor :
|
59
|
+
# Total number of simultaneous connections. If not set then the default value will be used.
|
60
|
+
attr_accessor :download_concurrency
|
63
61
|
|
64
|
-
#
|
65
|
-
attr_accessor :
|
62
|
+
# If True, TLS peer validation must be performed.
|
63
|
+
attr_accessor :tls_validation
|
66
64
|
|
67
|
-
|
68
|
-
attr_accessor :total_timeout
|
65
|
+
attr_accessor :pulp_href
|
69
66
|
|
70
|
-
#
|
71
|
-
attr_accessor :
|
67
|
+
# A unique name for this remote.
|
68
|
+
attr_accessor :name
|
69
|
+
|
70
|
+
# Headers for aiohttp.Clientsession
|
71
|
+
attr_accessor :headers
|
72
72
|
|
73
73
|
# If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
|
74
74
|
attr_accessor :metadata_only
|
@@ -79,25 +79,25 @@ module PulpAnsibleClient
|
|
79
79
|
# Attribute mapping from ruby-style variable name to JSON key.
|
80
80
|
def self.attribute_map
|
81
81
|
{
|
82
|
-
:'connect_timeout' => :'connect_timeout',
|
83
|
-
:'pulp_href' => :'pulp_href',
|
84
|
-
:'client_cert' => :'client_cert',
|
85
|
-
:'proxy_url' => :'proxy_url',
|
86
|
-
:'name' => :'name',
|
87
|
-
:'pulp_created' => :'pulp_created',
|
88
|
-
:'url' => :'url',
|
89
|
-
:'download_concurrency' => :'download_concurrency',
|
90
|
-
:'ca_cert' => :'ca_cert',
|
91
82
|
:'max_retries' => :'max_retries',
|
92
|
-
:'headers' => :'headers',
|
93
|
-
:'pulp_labels' => :'pulp_labels',
|
94
83
|
:'rate_limit' => :'rate_limit',
|
95
|
-
:'
|
96
|
-
:'
|
84
|
+
:'pulp_created' => :'pulp_created',
|
85
|
+
:'ca_cert' => :'ca_cert',
|
86
|
+
:'url' => :'url',
|
87
|
+
:'client_cert' => :'client_cert',
|
88
|
+
:'hidden_fields' => :'hidden_fields',
|
97
89
|
:'pulp_last_updated' => :'pulp_last_updated',
|
98
|
-
:'
|
90
|
+
:'proxy_url' => :'proxy_url',
|
91
|
+
:'pulp_labels' => :'pulp_labels',
|
99
92
|
:'total_timeout' => :'total_timeout',
|
100
|
-
:'
|
93
|
+
:'connect_timeout' => :'connect_timeout',
|
94
|
+
:'sock_connect_timeout' => :'sock_connect_timeout',
|
95
|
+
:'sock_read_timeout' => :'sock_read_timeout',
|
96
|
+
:'download_concurrency' => :'download_concurrency',
|
97
|
+
:'tls_validation' => :'tls_validation',
|
98
|
+
:'pulp_href' => :'pulp_href',
|
99
|
+
:'name' => :'name',
|
100
|
+
:'headers' => :'headers',
|
101
101
|
:'metadata_only' => :'metadata_only',
|
102
102
|
:'git_ref' => :'git_ref'
|
103
103
|
}
|
@@ -106,25 +106,25 @@ module PulpAnsibleClient
|
|
106
106
|
# Attribute type mapping.
|
107
107
|
def self.openapi_types
|
108
108
|
{
|
109
|
-
:'connect_timeout' => :'Float',
|
110
|
-
:'pulp_href' => :'String',
|
111
|
-
:'client_cert' => :'String',
|
112
|
-
:'proxy_url' => :'String',
|
113
|
-
:'name' => :'String',
|
114
|
-
:'pulp_created' => :'DateTime',
|
115
|
-
:'url' => :'String',
|
116
|
-
:'download_concurrency' => :'Integer',
|
117
|
-
:'ca_cert' => :'String',
|
118
109
|
:'max_retries' => :'Integer',
|
119
|
-
:'headers' => :'Array<Object>',
|
120
|
-
:'pulp_labels' => :'Hash<String, String>',
|
121
110
|
:'rate_limit' => :'Integer',
|
122
|
-
:'
|
123
|
-
:'
|
111
|
+
:'pulp_created' => :'DateTime',
|
112
|
+
:'ca_cert' => :'String',
|
113
|
+
:'url' => :'String',
|
114
|
+
:'client_cert' => :'String',
|
115
|
+
:'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFields>',
|
124
116
|
:'pulp_last_updated' => :'DateTime',
|
125
|
-
:'
|
117
|
+
:'proxy_url' => :'String',
|
118
|
+
:'pulp_labels' => :'Hash<String, String>',
|
126
119
|
:'total_timeout' => :'Float',
|
127
|
-
:'
|
120
|
+
:'connect_timeout' => :'Float',
|
121
|
+
:'sock_connect_timeout' => :'Float',
|
122
|
+
:'sock_read_timeout' => :'Float',
|
123
|
+
:'download_concurrency' => :'Integer',
|
124
|
+
:'tls_validation' => :'Boolean',
|
125
|
+
:'pulp_href' => :'String',
|
126
|
+
:'name' => :'String',
|
127
|
+
:'headers' => :'Array<Object>',
|
128
128
|
:'metadata_only' => :'Boolean',
|
129
129
|
:'git_ref' => :'String'
|
130
130
|
}
|
@@ -133,16 +133,16 @@ module PulpAnsibleClient
|
|
133
133
|
# List of attributes with nullable: true
|
134
134
|
def self.openapi_nullable
|
135
135
|
Set.new([
|
136
|
-
:'connect_timeout',
|
137
|
-
:'client_cert',
|
138
|
-
:'proxy_url',
|
139
|
-
:'download_concurrency',
|
140
|
-
:'ca_cert',
|
141
136
|
:'max_retries',
|
142
137
|
:'rate_limit',
|
143
|
-
:'
|
144
|
-
:'
|
138
|
+
:'ca_cert',
|
139
|
+
:'client_cert',
|
140
|
+
:'proxy_url',
|
145
141
|
:'total_timeout',
|
142
|
+
:'connect_timeout',
|
143
|
+
:'sock_connect_timeout',
|
144
|
+
:'sock_read_timeout',
|
145
|
+
:'download_concurrency',
|
146
146
|
])
|
147
147
|
end
|
148
148
|
|
@@ -161,50 +161,42 @@ module PulpAnsibleClient
|
|
161
161
|
h[k.to_sym] = v
|
162
162
|
}
|
163
163
|
|
164
|
-
if attributes.key?(:'
|
165
|
-
self.
|
166
|
-
end
|
167
|
-
|
168
|
-
if attributes.key?(:'pulp_href')
|
169
|
-
self.pulp_href = attributes[:'pulp_href']
|
170
|
-
end
|
171
|
-
|
172
|
-
if attributes.key?(:'client_cert')
|
173
|
-
self.client_cert = attributes[:'client_cert']
|
174
|
-
end
|
175
|
-
|
176
|
-
if attributes.key?(:'proxy_url')
|
177
|
-
self.proxy_url = attributes[:'proxy_url']
|
164
|
+
if attributes.key?(:'max_retries')
|
165
|
+
self.max_retries = attributes[:'max_retries']
|
178
166
|
end
|
179
167
|
|
180
|
-
if attributes.key?(:'
|
181
|
-
self.
|
168
|
+
if attributes.key?(:'rate_limit')
|
169
|
+
self.rate_limit = attributes[:'rate_limit']
|
182
170
|
end
|
183
171
|
|
184
172
|
if attributes.key?(:'pulp_created')
|
185
173
|
self.pulp_created = attributes[:'pulp_created']
|
186
174
|
end
|
187
175
|
|
176
|
+
if attributes.key?(:'ca_cert')
|
177
|
+
self.ca_cert = attributes[:'ca_cert']
|
178
|
+
end
|
179
|
+
|
188
180
|
if attributes.key?(:'url')
|
189
181
|
self.url = attributes[:'url']
|
190
182
|
end
|
191
183
|
|
192
|
-
if attributes.key?(:'
|
193
|
-
self.
|
184
|
+
if attributes.key?(:'client_cert')
|
185
|
+
self.client_cert = attributes[:'client_cert']
|
194
186
|
end
|
195
187
|
|
196
|
-
if attributes.key?(:'
|
197
|
-
|
188
|
+
if attributes.key?(:'hidden_fields')
|
189
|
+
if (value = attributes[:'hidden_fields']).is_a?(Array)
|
190
|
+
self.hidden_fields = value
|
191
|
+
end
|
198
192
|
end
|
199
193
|
|
200
|
-
if attributes.key?(:'
|
201
|
-
self.
|
194
|
+
if attributes.key?(:'pulp_last_updated')
|
195
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
202
196
|
end
|
203
197
|
|
204
|
-
if attributes.key?(:'
|
205
|
-
|
206
|
-
self.headers = value
|
207
|
-
end
|
198
|
+
if attributes.key?(:'proxy_url')
|
199
|
+
self.proxy_url = attributes[:'proxy_url']
|
208
200
|
end
|
209
201
|
|
210
202
|
if attributes.key?(:'pulp_labels')
|
@@ -213,33 +205,41 @@ module PulpAnsibleClient
|
|
213
205
|
end
|
214
206
|
end
|
215
207
|
|
216
|
-
if attributes.key?(:'
|
217
|
-
self.
|
208
|
+
if attributes.key?(:'total_timeout')
|
209
|
+
self.total_timeout = attributes[:'total_timeout']
|
218
210
|
end
|
219
211
|
|
220
|
-
if attributes.key?(:'
|
221
|
-
self.
|
212
|
+
if attributes.key?(:'connect_timeout')
|
213
|
+
self.connect_timeout = attributes[:'connect_timeout']
|
214
|
+
end
|
215
|
+
|
216
|
+
if attributes.key?(:'sock_connect_timeout')
|
217
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
222
218
|
end
|
223
219
|
|
224
220
|
if attributes.key?(:'sock_read_timeout')
|
225
221
|
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
226
222
|
end
|
227
223
|
|
228
|
-
if attributes.key?(:'
|
229
|
-
self.
|
224
|
+
if attributes.key?(:'download_concurrency')
|
225
|
+
self.download_concurrency = attributes[:'download_concurrency']
|
230
226
|
end
|
231
227
|
|
232
|
-
if attributes.key?(:'
|
233
|
-
self.
|
228
|
+
if attributes.key?(:'tls_validation')
|
229
|
+
self.tls_validation = attributes[:'tls_validation']
|
234
230
|
end
|
235
231
|
|
236
|
-
if attributes.key?(:'
|
237
|
-
self.
|
232
|
+
if attributes.key?(:'pulp_href')
|
233
|
+
self.pulp_href = attributes[:'pulp_href']
|
238
234
|
end
|
239
235
|
|
240
|
-
if attributes.key?(:'
|
241
|
-
|
242
|
-
|
236
|
+
if attributes.key?(:'name')
|
237
|
+
self.name = attributes[:'name']
|
238
|
+
end
|
239
|
+
|
240
|
+
if attributes.key?(:'headers')
|
241
|
+
if (value = attributes[:'headers']).is_a?(Array)
|
242
|
+
self.headers = value
|
243
243
|
end
|
244
244
|
end
|
245
245
|
|
@@ -256,32 +256,32 @@ module PulpAnsibleClient
|
|
256
256
|
# @return Array for valid properties with the reasons
|
257
257
|
def list_invalid_properties
|
258
258
|
invalid_properties = Array.new
|
259
|
-
if
|
260
|
-
invalid_properties.push('invalid value for "
|
259
|
+
if @url.nil?
|
260
|
+
invalid_properties.push('invalid value for "url", url cannot be nil.')
|
261
261
|
end
|
262
262
|
|
263
|
-
if
|
264
|
-
invalid_properties.push('invalid value for "
|
263
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
264
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
265
265
|
end
|
266
266
|
|
267
|
-
if
|
268
|
-
invalid_properties.push('invalid value for "
|
267
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
268
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
269
269
|
end
|
270
270
|
|
271
|
-
if !@
|
272
|
-
invalid_properties.push('invalid value for "
|
271
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
272
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
273
273
|
end
|
274
274
|
|
275
275
|
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
276
276
|
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
277
277
|
end
|
278
278
|
|
279
|
-
if !@
|
280
|
-
invalid_properties.push('invalid value for "
|
279
|
+
if !@download_concurrency.nil? && @download_concurrency < 1
|
280
|
+
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
281
281
|
end
|
282
282
|
|
283
|
-
if
|
284
|
-
invalid_properties.push('invalid value for "
|
283
|
+
if @name.nil?
|
284
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
285
285
|
end
|
286
286
|
|
287
287
|
invalid_properties
|
@@ -290,16 +290,26 @@ module PulpAnsibleClient
|
|
290
290
|
# Check to see if the all the properties in the model are valid
|
291
291
|
# @return true if the model is valid
|
292
292
|
def valid?
|
293
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
294
|
-
return false if @name.nil?
|
295
293
|
return false if @url.nil?
|
296
|
-
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
297
|
-
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
298
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
299
294
|
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
295
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
296
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
297
|
+
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
298
|
+
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
299
|
+
return false if @name.nil?
|
300
300
|
true
|
301
301
|
end
|
302
302
|
|
303
|
+
# Custom attribute writer method with validation
|
304
|
+
# @param [Object] total_timeout Value to be assigned
|
305
|
+
def total_timeout=(total_timeout)
|
306
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
307
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
308
|
+
end
|
309
|
+
|
310
|
+
@total_timeout = total_timeout
|
311
|
+
end
|
312
|
+
|
303
313
|
# Custom attribute writer method with validation
|
304
314
|
# @param [Object] connect_timeout Value to be assigned
|
305
315
|
def connect_timeout=(connect_timeout)
|
@@ -311,13 +321,13 @@ module PulpAnsibleClient
|
|
311
321
|
end
|
312
322
|
|
313
323
|
# Custom attribute writer method with validation
|
314
|
-
# @param [Object]
|
315
|
-
def
|
316
|
-
if !
|
317
|
-
fail ArgumentError, 'invalid value for "
|
324
|
+
# @param [Object] sock_connect_timeout Value to be assigned
|
325
|
+
def sock_connect_timeout=(sock_connect_timeout)
|
326
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
327
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
318
328
|
end
|
319
329
|
|
320
|
-
@
|
330
|
+
@sock_connect_timeout = sock_connect_timeout
|
321
331
|
end
|
322
332
|
|
323
333
|
# Custom attribute writer method with validation
|
@@ -331,23 +341,13 @@ module PulpAnsibleClient
|
|
331
341
|
end
|
332
342
|
|
333
343
|
# Custom attribute writer method with validation
|
334
|
-
# @param [Object]
|
335
|
-
def
|
336
|
-
if !
|
337
|
-
fail ArgumentError, 'invalid value for "
|
338
|
-
end
|
339
|
-
|
340
|
-
@sock_connect_timeout = sock_connect_timeout
|
341
|
-
end
|
342
|
-
|
343
|
-
# Custom attribute writer method with validation
|
344
|
-
# @param [Object] total_timeout Value to be assigned
|
345
|
-
def total_timeout=(total_timeout)
|
346
|
-
if !total_timeout.nil? && total_timeout < 0.0
|
347
|
-
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
344
|
+
# @param [Object] download_concurrency Value to be assigned
|
345
|
+
def download_concurrency=(download_concurrency)
|
346
|
+
if !download_concurrency.nil? && download_concurrency < 1
|
347
|
+
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
348
348
|
end
|
349
349
|
|
350
|
-
@
|
350
|
+
@download_concurrency = download_concurrency
|
351
351
|
end
|
352
352
|
|
353
353
|
# Checks equality by comparing each attribute.
|
@@ -355,25 +355,25 @@ module PulpAnsibleClient
|
|
355
355
|
def ==(o)
|
356
356
|
return true if self.equal?(o)
|
357
357
|
self.class == o.class &&
|
358
|
-
connect_timeout == o.connect_timeout &&
|
359
|
-
pulp_href == o.pulp_href &&
|
360
|
-
client_cert == o.client_cert &&
|
361
|
-
proxy_url == o.proxy_url &&
|
362
|
-
name == o.name &&
|
363
|
-
pulp_created == o.pulp_created &&
|
364
|
-
url == o.url &&
|
365
|
-
download_concurrency == o.download_concurrency &&
|
366
|
-
ca_cert == o.ca_cert &&
|
367
358
|
max_retries == o.max_retries &&
|
368
|
-
headers == o.headers &&
|
369
|
-
pulp_labels == o.pulp_labels &&
|
370
359
|
rate_limit == o.rate_limit &&
|
371
|
-
|
372
|
-
|
360
|
+
pulp_created == o.pulp_created &&
|
361
|
+
ca_cert == o.ca_cert &&
|
362
|
+
url == o.url &&
|
363
|
+
client_cert == o.client_cert &&
|
364
|
+
hidden_fields == o.hidden_fields &&
|
373
365
|
pulp_last_updated == o.pulp_last_updated &&
|
374
|
-
|
366
|
+
proxy_url == o.proxy_url &&
|
367
|
+
pulp_labels == o.pulp_labels &&
|
375
368
|
total_timeout == o.total_timeout &&
|
376
|
-
|
369
|
+
connect_timeout == o.connect_timeout &&
|
370
|
+
sock_connect_timeout == o.sock_connect_timeout &&
|
371
|
+
sock_read_timeout == o.sock_read_timeout &&
|
372
|
+
download_concurrency == o.download_concurrency &&
|
373
|
+
tls_validation == o.tls_validation &&
|
374
|
+
pulp_href == o.pulp_href &&
|
375
|
+
name == o.name &&
|
376
|
+
headers == o.headers &&
|
377
377
|
metadata_only == o.metadata_only &&
|
378
378
|
git_ref == o.git_ref
|
379
379
|
end
|
@@ -387,7 +387,7 @@ module PulpAnsibleClient
|
|
387
387
|
# Calculates hash code according to all attributes.
|
388
388
|
# @return [Integer] Hash code
|
389
389
|
def hash
|
390
|
-
[
|
390
|
+
[max_retries, rate_limit, pulp_created, ca_cert, url, client_cert, hidden_fields, pulp_last_updated, proxy_url, pulp_labels, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, download_concurrency, tls_validation, pulp_href, name, headers, metadata_only, git_ref].hash
|
391
391
|
end
|
392
392
|
|
393
393
|
# Builds the object from hash
|
@@ -15,12 +15,12 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for Role versions.
|
17
17
|
class AnsibleRole
|
18
|
-
# Artifact file representing the physical content
|
19
|
-
attr_accessor :artifact
|
20
|
-
|
21
18
|
# A URI of a repository the new content unit should be associated with.
|
22
19
|
attr_accessor :repository
|
23
20
|
|
21
|
+
# Artifact file representing the physical content
|
22
|
+
attr_accessor :artifact
|
23
|
+
|
24
24
|
attr_accessor :version
|
25
25
|
|
26
26
|
attr_accessor :name
|
@@ -30,8 +30,8 @@ module PulpAnsibleClient
|
|
30
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
31
31
|
def self.attribute_map
|
32
32
|
{
|
33
|
-
:'artifact' => :'artifact',
|
34
33
|
:'repository' => :'repository',
|
34
|
+
:'artifact' => :'artifact',
|
35
35
|
:'version' => :'version',
|
36
36
|
:'name' => :'name',
|
37
37
|
:'namespace' => :'namespace'
|
@@ -41,8 +41,8 @@ module PulpAnsibleClient
|
|
41
41
|
# Attribute type mapping.
|
42
42
|
def self.openapi_types
|
43
43
|
{
|
44
|
-
:'artifact' => :'String',
|
45
44
|
:'repository' => :'String',
|
45
|
+
:'artifact' => :'String',
|
46
46
|
:'version' => :'String',
|
47
47
|
:'name' => :'String',
|
48
48
|
:'namespace' => :'String'
|
@@ -70,14 +70,14 @@ module PulpAnsibleClient
|
|
70
70
|
h[k.to_sym] = v
|
71
71
|
}
|
72
72
|
|
73
|
-
if attributes.key?(:'artifact')
|
74
|
-
self.artifact = attributes[:'artifact']
|
75
|
-
end
|
76
|
-
|
77
73
|
if attributes.key?(:'repository')
|
78
74
|
self.repository = attributes[:'repository']
|
79
75
|
end
|
80
76
|
|
77
|
+
if attributes.key?(:'artifact')
|
78
|
+
self.artifact = attributes[:'artifact']
|
79
|
+
end
|
80
|
+
|
81
81
|
if attributes.key?(:'version')
|
82
82
|
self.version = attributes[:'version']
|
83
83
|
end
|
@@ -186,8 +186,8 @@ module PulpAnsibleClient
|
|
186
186
|
def ==(o)
|
187
187
|
return true if self.equal?(o)
|
188
188
|
self.class == o.class &&
|
189
|
-
artifact == o.artifact &&
|
190
189
|
repository == o.repository &&
|
190
|
+
artifact == o.artifact &&
|
191
191
|
version == o.version &&
|
192
192
|
name == o.name &&
|
193
193
|
namespace == o.namespace
|
@@ -202,7 +202,7 @@ module PulpAnsibleClient
|
|
202
202
|
# Calculates hash code according to all attributes.
|
203
203
|
# @return [Integer] Hash code
|
204
204
|
def hash
|
205
|
-
[
|
205
|
+
[repository, artifact, version, name, namespace].hash
|
206
206
|
end
|
207
207
|
|
208
208
|
# Builds the object from hash
|
@@ -15,14 +15,14 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for Role versions.
|
17
17
|
class AnsibleRoleResponse
|
18
|
-
# Artifact file representing the physical content
|
19
|
-
attr_accessor :artifact
|
20
|
-
|
21
18
|
attr_accessor :pulp_href
|
22
19
|
|
23
20
|
# Timestamp of creation.
|
24
21
|
attr_accessor :pulp_created
|
25
22
|
|
23
|
+
# Artifact file representing the physical content
|
24
|
+
attr_accessor :artifact
|
25
|
+
|
26
26
|
attr_accessor :version
|
27
27
|
|
28
28
|
attr_accessor :name
|
@@ -32,9 +32,9 @@ module PulpAnsibleClient
|
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
34
34
|
{
|
35
|
-
:'artifact' => :'artifact',
|
36
35
|
:'pulp_href' => :'pulp_href',
|
37
36
|
:'pulp_created' => :'pulp_created',
|
37
|
+
:'artifact' => :'artifact',
|
38
38
|
:'version' => :'version',
|
39
39
|
:'name' => :'name',
|
40
40
|
:'namespace' => :'namespace'
|
@@ -44,9 +44,9 @@ module PulpAnsibleClient
|
|
44
44
|
# Attribute type mapping.
|
45
45
|
def self.openapi_types
|
46
46
|
{
|
47
|
-
:'artifact' => :'String',
|
48
47
|
:'pulp_href' => :'String',
|
49
48
|
:'pulp_created' => :'DateTime',
|
49
|
+
:'artifact' => :'String',
|
50
50
|
:'version' => :'String',
|
51
51
|
:'name' => :'String',
|
52
52
|
:'namespace' => :'String'
|
@@ -74,10 +74,6 @@ module PulpAnsibleClient
|
|
74
74
|
h[k.to_sym] = v
|
75
75
|
}
|
76
76
|
|
77
|
-
if attributes.key?(:'artifact')
|
78
|
-
self.artifact = attributes[:'artifact']
|
79
|
-
end
|
80
|
-
|
81
77
|
if attributes.key?(:'pulp_href')
|
82
78
|
self.pulp_href = attributes[:'pulp_href']
|
83
79
|
end
|
@@ -86,6 +82,10 @@ module PulpAnsibleClient
|
|
86
82
|
self.pulp_created = attributes[:'pulp_created']
|
87
83
|
end
|
88
84
|
|
85
|
+
if attributes.key?(:'artifact')
|
86
|
+
self.artifact = attributes[:'artifact']
|
87
|
+
end
|
88
|
+
|
89
89
|
if attributes.key?(:'version')
|
90
90
|
self.version = attributes[:'version']
|
91
91
|
end
|
@@ -137,9 +137,9 @@ module PulpAnsibleClient
|
|
137
137
|
def ==(o)
|
138
138
|
return true if self.equal?(o)
|
139
139
|
self.class == o.class &&
|
140
|
-
artifact == o.artifact &&
|
141
140
|
pulp_href == o.pulp_href &&
|
142
141
|
pulp_created == o.pulp_created &&
|
142
|
+
artifact == o.artifact &&
|
143
143
|
version == o.version &&
|
144
144
|
name == o.name &&
|
145
145
|
namespace == o.namespace
|
@@ -154,7 +154,7 @@ module PulpAnsibleClient
|
|
154
154
|
# Calculates hash code according to all attributes.
|
155
155
|
# @return [Integer] Hash code
|
156
156
|
def hash
|
157
|
-
[
|
157
|
+
[pulp_href, pulp_created, artifact, version, name, namespace].hash
|
158
158
|
end
|
159
159
|
|
160
160
|
# Builds the object from hash
|