pulp_ansible_client 0.11.0.dev1636341492 → 0.11.0.dev1636686953
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.
Potentially problematic release.
This version of pulp_ansible_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +28 -28
- data/docs/AnsibleGitRemoteResponse.md +23 -23
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/PatchedansibleGitRemote.md +28 -28
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +10 -10
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +157 -157
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +138 -138
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +152 -152
- 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 +18 -18
- data/spec/models/ansible_git_remote_spec.rb +20 -20
- data/spec/models/ansible_role_response_spec.rb +3 -3
- data/spec/models/patchedansible_git_remote_spec.rb +20 -20
- metadata +2 -2
@@ -15,37 +15,34 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for Git Collection Remotes.
|
17
17
|
class PatchedansibleGitRemote
|
18
|
-
attr_accessor :pulp_labels
|
19
|
-
|
20
|
-
# The password to be used for authentication when syncing.
|
21
|
-
attr_accessor :password
|
22
|
-
|
23
18
|
# The URL of an external content source.
|
24
19
|
attr_accessor :url
|
25
20
|
|
26
|
-
#
|
27
|
-
attr_accessor :
|
21
|
+
# The proxy URL. Format: scheme://host:port
|
22
|
+
attr_accessor :proxy_url
|
28
23
|
|
29
|
-
#
|
30
|
-
attr_accessor :
|
24
|
+
# The username to be used for authentication when syncing.
|
25
|
+
attr_accessor :username
|
31
26
|
|
32
|
-
#
|
33
|
-
attr_accessor :
|
27
|
+
# The username to authenticte to the proxy.
|
28
|
+
attr_accessor :proxy_username
|
34
29
|
|
35
|
-
#
|
36
|
-
attr_accessor :
|
30
|
+
# If True, TLS peer validation must be performed.
|
31
|
+
attr_accessor :tls_validation
|
37
32
|
|
38
|
-
#
|
39
|
-
attr_accessor :
|
33
|
+
# The password to be used for authentication when syncing.
|
34
|
+
attr_accessor :password
|
40
35
|
|
41
36
|
# A PEM encoded client certificate used for authentication.
|
42
37
|
attr_accessor :client_cert
|
43
38
|
|
44
|
-
#
|
45
|
-
attr_accessor :
|
39
|
+
# The password to authenticte to the proxy.
|
40
|
+
attr_accessor :proxy_password
|
46
41
|
|
47
|
-
#
|
48
|
-
attr_accessor :
|
42
|
+
# A PEM encoded private key used for authentication.
|
43
|
+
attr_accessor :client_key
|
44
|
+
|
45
|
+
attr_accessor :pulp_labels
|
49
46
|
|
50
47
|
# 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.
|
51
48
|
attr_accessor :sock_read_timeout
|
@@ -53,53 +50,56 @@ module PulpAnsibleClient
|
|
53
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.
|
54
51
|
attr_accessor :connect_timeout
|
55
52
|
|
56
|
-
# aiohttp.ClientTimeout.
|
57
|
-
attr_accessor :
|
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
|
58
55
|
|
59
|
-
#
|
60
|
-
attr_accessor :
|
56
|
+
# A unique name for this remote.
|
57
|
+
attr_accessor :name
|
61
58
|
|
62
|
-
#
|
63
|
-
attr_accessor :
|
59
|
+
# Headers for aiohttp.Clientsession
|
60
|
+
attr_accessor :headers
|
64
61
|
|
65
|
-
#
|
66
|
-
attr_accessor :
|
62
|
+
# Total number of simultaneous connections. If not set then the default value will be used.
|
63
|
+
attr_accessor :download_concurrency
|
67
64
|
|
68
|
-
#
|
69
|
-
attr_accessor :
|
65
|
+
# Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
|
66
|
+
attr_accessor :max_retries
|
67
|
+
|
68
|
+
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
69
|
+
attr_accessor :total_timeout
|
70
|
+
|
71
|
+
# A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
|
72
|
+
attr_accessor :ca_cert
|
70
73
|
|
71
74
|
# Limits total download rate in requests per second
|
72
75
|
attr_accessor :rate_limit
|
73
76
|
|
74
|
-
# The proxy URL. Format: scheme://host:port
|
75
|
-
attr_accessor :proxy_url
|
76
|
-
|
77
77
|
# If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
|
78
78
|
attr_accessor :metadata_only
|
79
79
|
|
80
80
|
# Attribute mapping from ruby-style variable name to JSON key.
|
81
81
|
def self.attribute_map
|
82
82
|
{
|
83
|
-
:'pulp_labels' => :'pulp_labels',
|
84
|
-
:'password' => :'password',
|
85
83
|
:'url' => :'url',
|
86
|
-
:'
|
87
|
-
:'
|
88
|
-
:'
|
89
|
-
:'client_key' => :'client_key',
|
90
|
-
:'name' => :'name',
|
91
|
-
:'client_cert' => :'client_cert',
|
84
|
+
:'proxy_url' => :'proxy_url',
|
85
|
+
:'username' => :'username',
|
86
|
+
:'proxy_username' => :'proxy_username',
|
92
87
|
:'tls_validation' => :'tls_validation',
|
93
|
-
:'
|
88
|
+
:'password' => :'password',
|
89
|
+
:'client_cert' => :'client_cert',
|
90
|
+
:'proxy_password' => :'proxy_password',
|
91
|
+
:'client_key' => :'client_key',
|
92
|
+
:'pulp_labels' => :'pulp_labels',
|
94
93
|
:'sock_read_timeout' => :'sock_read_timeout',
|
95
94
|
:'connect_timeout' => :'connect_timeout',
|
96
|
-
:'total_timeout' => :'total_timeout',
|
97
|
-
:'proxy_password' => :'proxy_password',
|
98
|
-
:'proxy_username' => :'proxy_username',
|
99
|
-
:'username' => :'username',
|
100
95
|
:'sock_connect_timeout' => :'sock_connect_timeout',
|
96
|
+
:'name' => :'name',
|
97
|
+
:'headers' => :'headers',
|
98
|
+
:'download_concurrency' => :'download_concurrency',
|
99
|
+
:'max_retries' => :'max_retries',
|
100
|
+
:'total_timeout' => :'total_timeout',
|
101
|
+
:'ca_cert' => :'ca_cert',
|
101
102
|
:'rate_limit' => :'rate_limit',
|
102
|
-
:'proxy_url' => :'proxy_url',
|
103
103
|
:'metadata_only' => :'metadata_only'
|
104
104
|
}
|
105
105
|
end
|
@@ -107,26 +107,26 @@ module PulpAnsibleClient
|
|
107
107
|
# Attribute type mapping.
|
108
108
|
def self.openapi_types
|
109
109
|
{
|
110
|
-
:'pulp_labels' => :'Object',
|
111
|
-
:'password' => :'String',
|
112
110
|
:'url' => :'String',
|
113
|
-
:'
|
114
|
-
:'
|
115
|
-
:'
|
116
|
-
:'client_key' => :'String',
|
117
|
-
:'name' => :'String',
|
118
|
-
:'client_cert' => :'String',
|
111
|
+
:'proxy_url' => :'String',
|
112
|
+
:'username' => :'String',
|
113
|
+
:'proxy_username' => :'String',
|
119
114
|
:'tls_validation' => :'Boolean',
|
120
|
-
:'
|
115
|
+
:'password' => :'String',
|
116
|
+
:'client_cert' => :'String',
|
117
|
+
:'proxy_password' => :'String',
|
118
|
+
:'client_key' => :'String',
|
119
|
+
:'pulp_labels' => :'Object',
|
121
120
|
:'sock_read_timeout' => :'Float',
|
122
121
|
:'connect_timeout' => :'Float',
|
123
|
-
:'total_timeout' => :'Float',
|
124
|
-
:'proxy_password' => :'String',
|
125
|
-
:'proxy_username' => :'String',
|
126
|
-
:'username' => :'String',
|
127
122
|
:'sock_connect_timeout' => :'Float',
|
123
|
+
:'name' => :'String',
|
124
|
+
:'headers' => :'Array<Object>',
|
125
|
+
:'download_concurrency' => :'Integer',
|
126
|
+
:'max_retries' => :'Integer',
|
127
|
+
:'total_timeout' => :'Float',
|
128
|
+
:'ca_cert' => :'String',
|
128
129
|
:'rate_limit' => :'Integer',
|
129
|
-
:'proxy_url' => :'String',
|
130
130
|
:'metadata_only' => :'Boolean'
|
131
131
|
}
|
132
132
|
end
|
@@ -134,21 +134,21 @@ module PulpAnsibleClient
|
|
134
134
|
# List of attributes with nullable: true
|
135
135
|
def self.openapi_nullable
|
136
136
|
Set.new([
|
137
|
+
:'proxy_url',
|
138
|
+
:'username',
|
139
|
+
:'proxy_username',
|
137
140
|
:'password',
|
138
|
-
:'ca_cert',
|
139
|
-
:'download_concurrency',
|
140
|
-
:'client_key',
|
141
141
|
:'client_cert',
|
142
|
-
:'
|
142
|
+
:'proxy_password',
|
143
|
+
:'client_key',
|
143
144
|
:'sock_read_timeout',
|
144
145
|
:'connect_timeout',
|
145
|
-
:'total_timeout',
|
146
|
-
:'proxy_password',
|
147
|
-
:'proxy_username',
|
148
|
-
:'username',
|
149
146
|
:'sock_connect_timeout',
|
147
|
+
:'download_concurrency',
|
148
|
+
:'max_retries',
|
149
|
+
:'total_timeout',
|
150
|
+
:'ca_cert',
|
150
151
|
:'rate_limit',
|
151
|
-
:'proxy_url',
|
152
152
|
])
|
153
153
|
end
|
154
154
|
|
@@ -167,50 +167,44 @@ module PulpAnsibleClient
|
|
167
167
|
h[k.to_sym] = v
|
168
168
|
}
|
169
169
|
|
170
|
-
if attributes.key?(:'pulp_labels')
|
171
|
-
self.pulp_labels = attributes[:'pulp_labels']
|
172
|
-
end
|
173
|
-
|
174
|
-
if attributes.key?(:'password')
|
175
|
-
self.password = attributes[:'password']
|
176
|
-
end
|
177
|
-
|
178
170
|
if attributes.key?(:'url')
|
179
171
|
self.url = attributes[:'url']
|
180
172
|
end
|
181
173
|
|
182
|
-
if attributes.key?(:'
|
183
|
-
self.
|
174
|
+
if attributes.key?(:'proxy_url')
|
175
|
+
self.proxy_url = attributes[:'proxy_url']
|
184
176
|
end
|
185
177
|
|
186
|
-
if attributes.key?(:'
|
187
|
-
self.
|
178
|
+
if attributes.key?(:'username')
|
179
|
+
self.username = attributes[:'username']
|
188
180
|
end
|
189
181
|
|
190
|
-
if attributes.key?(:'
|
191
|
-
|
192
|
-
self.headers = value
|
193
|
-
end
|
182
|
+
if attributes.key?(:'proxy_username')
|
183
|
+
self.proxy_username = attributes[:'proxy_username']
|
194
184
|
end
|
195
185
|
|
196
|
-
if attributes.key?(:'
|
197
|
-
self.
|
186
|
+
if attributes.key?(:'tls_validation')
|
187
|
+
self.tls_validation = attributes[:'tls_validation']
|
198
188
|
end
|
199
189
|
|
200
|
-
if attributes.key?(:'
|
201
|
-
self.
|
190
|
+
if attributes.key?(:'password')
|
191
|
+
self.password = attributes[:'password']
|
202
192
|
end
|
203
193
|
|
204
194
|
if attributes.key?(:'client_cert')
|
205
195
|
self.client_cert = attributes[:'client_cert']
|
206
196
|
end
|
207
197
|
|
208
|
-
if attributes.key?(:'
|
209
|
-
self.
|
198
|
+
if attributes.key?(:'proxy_password')
|
199
|
+
self.proxy_password = attributes[:'proxy_password']
|
210
200
|
end
|
211
201
|
|
212
|
-
if attributes.key?(:'
|
213
|
-
self.
|
202
|
+
if attributes.key?(:'client_key')
|
203
|
+
self.client_key = attributes[:'client_key']
|
204
|
+
end
|
205
|
+
|
206
|
+
if attributes.key?(:'pulp_labels')
|
207
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
214
208
|
end
|
215
209
|
|
216
210
|
if attributes.key?(:'sock_read_timeout')
|
@@ -221,32 +215,38 @@ module PulpAnsibleClient
|
|
221
215
|
self.connect_timeout = attributes[:'connect_timeout']
|
222
216
|
end
|
223
217
|
|
224
|
-
if attributes.key?(:'
|
225
|
-
self.
|
218
|
+
if attributes.key?(:'sock_connect_timeout')
|
219
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
226
220
|
end
|
227
221
|
|
228
|
-
if attributes.key?(:'
|
229
|
-
self.
|
222
|
+
if attributes.key?(:'name')
|
223
|
+
self.name = attributes[:'name']
|
230
224
|
end
|
231
225
|
|
232
|
-
if attributes.key?(:'
|
233
|
-
|
226
|
+
if attributes.key?(:'headers')
|
227
|
+
if (value = attributes[:'headers']).is_a?(Array)
|
228
|
+
self.headers = value
|
229
|
+
end
|
234
230
|
end
|
235
231
|
|
236
|
-
if attributes.key?(:'
|
237
|
-
self.
|
232
|
+
if attributes.key?(:'download_concurrency')
|
233
|
+
self.download_concurrency = attributes[:'download_concurrency']
|
238
234
|
end
|
239
235
|
|
240
|
-
if attributes.key?(:'
|
241
|
-
self.
|
236
|
+
if attributes.key?(:'max_retries')
|
237
|
+
self.max_retries = attributes[:'max_retries']
|
242
238
|
end
|
243
239
|
|
244
|
-
if attributes.key?(:'
|
245
|
-
self.
|
240
|
+
if attributes.key?(:'total_timeout')
|
241
|
+
self.total_timeout = attributes[:'total_timeout']
|
246
242
|
end
|
247
243
|
|
248
|
-
if attributes.key?(:'
|
249
|
-
self.
|
244
|
+
if attributes.key?(:'ca_cert')
|
245
|
+
self.ca_cert = attributes[:'ca_cert']
|
246
|
+
end
|
247
|
+
|
248
|
+
if attributes.key?(:'rate_limit')
|
249
|
+
self.rate_limit = attributes[:'rate_limit']
|
250
250
|
end
|
251
251
|
|
252
252
|
if attributes.key?(:'metadata_only')
|
@@ -258,10 +258,6 @@ module PulpAnsibleClient
|
|
258
258
|
# @return Array for valid properties with the reasons
|
259
259
|
def list_invalid_properties
|
260
260
|
invalid_properties = Array.new
|
261
|
-
if !@download_concurrency.nil? && @download_concurrency < 1
|
262
|
-
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
263
|
-
end
|
264
|
-
|
265
261
|
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
266
262
|
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
267
263
|
end
|
@@ -270,38 +266,32 @@ module PulpAnsibleClient
|
|
270
266
|
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
271
267
|
end
|
272
268
|
|
273
|
-
if !@total_timeout.nil? && @total_timeout < 0.0
|
274
|
-
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
275
|
-
end
|
276
|
-
|
277
269
|
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
278
270
|
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
279
271
|
end
|
280
272
|
|
273
|
+
if !@download_concurrency.nil? && @download_concurrency < 1
|
274
|
+
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
275
|
+
end
|
276
|
+
|
277
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
278
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
279
|
+
end
|
280
|
+
|
281
281
|
invalid_properties
|
282
282
|
end
|
283
283
|
|
284
284
|
# Check to see if the all the properties in the model are valid
|
285
285
|
# @return true if the model is valid
|
286
286
|
def valid?
|
287
|
-
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
288
287
|
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
289
288
|
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
290
|
-
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
291
289
|
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
290
|
+
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
291
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
292
292
|
true
|
293
293
|
end
|
294
294
|
|
295
|
-
# Custom attribute writer method with validation
|
296
|
-
# @param [Object] download_concurrency Value to be assigned
|
297
|
-
def download_concurrency=(download_concurrency)
|
298
|
-
if !download_concurrency.nil? && download_concurrency < 1
|
299
|
-
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
300
|
-
end
|
301
|
-
|
302
|
-
@download_concurrency = download_concurrency
|
303
|
-
end
|
304
|
-
|
305
295
|
# Custom attribute writer method with validation
|
306
296
|
# @param [Object] sock_read_timeout Value to be assigned
|
307
297
|
def sock_read_timeout=(sock_read_timeout)
|
@@ -322,16 +312,6 @@ module PulpAnsibleClient
|
|
322
312
|
@connect_timeout = connect_timeout
|
323
313
|
end
|
324
314
|
|
325
|
-
# Custom attribute writer method with validation
|
326
|
-
# @param [Object] total_timeout Value to be assigned
|
327
|
-
def total_timeout=(total_timeout)
|
328
|
-
if !total_timeout.nil? && total_timeout < 0.0
|
329
|
-
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
330
|
-
end
|
331
|
-
|
332
|
-
@total_timeout = total_timeout
|
333
|
-
end
|
334
|
-
|
335
315
|
# Custom attribute writer method with validation
|
336
316
|
# @param [Object] sock_connect_timeout Value to be assigned
|
337
317
|
def sock_connect_timeout=(sock_connect_timeout)
|
@@ -342,31 +322,51 @@ module PulpAnsibleClient
|
|
342
322
|
@sock_connect_timeout = sock_connect_timeout
|
343
323
|
end
|
344
324
|
|
325
|
+
# Custom attribute writer method with validation
|
326
|
+
# @param [Object] download_concurrency Value to be assigned
|
327
|
+
def download_concurrency=(download_concurrency)
|
328
|
+
if !download_concurrency.nil? && download_concurrency < 1
|
329
|
+
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
330
|
+
end
|
331
|
+
|
332
|
+
@download_concurrency = download_concurrency
|
333
|
+
end
|
334
|
+
|
335
|
+
# Custom attribute writer method with validation
|
336
|
+
# @param [Object] total_timeout Value to be assigned
|
337
|
+
def total_timeout=(total_timeout)
|
338
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
339
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
340
|
+
end
|
341
|
+
|
342
|
+
@total_timeout = total_timeout
|
343
|
+
end
|
344
|
+
|
345
345
|
# Checks equality by comparing each attribute.
|
346
346
|
# @param [Object] Object to be compared
|
347
347
|
def ==(o)
|
348
348
|
return true if self.equal?(o)
|
349
349
|
self.class == o.class &&
|
350
|
-
pulp_labels == o.pulp_labels &&
|
351
|
-
password == o.password &&
|
352
350
|
url == o.url &&
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
client_key == o.client_key &&
|
357
|
-
name == o.name &&
|
358
|
-
client_cert == o.client_cert &&
|
351
|
+
proxy_url == o.proxy_url &&
|
352
|
+
username == o.username &&
|
353
|
+
proxy_username == o.proxy_username &&
|
359
354
|
tls_validation == o.tls_validation &&
|
360
|
-
|
355
|
+
password == o.password &&
|
356
|
+
client_cert == o.client_cert &&
|
357
|
+
proxy_password == o.proxy_password &&
|
358
|
+
client_key == o.client_key &&
|
359
|
+
pulp_labels == o.pulp_labels &&
|
361
360
|
sock_read_timeout == o.sock_read_timeout &&
|
362
361
|
connect_timeout == o.connect_timeout &&
|
363
|
-
total_timeout == o.total_timeout &&
|
364
|
-
proxy_password == o.proxy_password &&
|
365
|
-
proxy_username == o.proxy_username &&
|
366
|
-
username == o.username &&
|
367
362
|
sock_connect_timeout == o.sock_connect_timeout &&
|
363
|
+
name == o.name &&
|
364
|
+
headers == o.headers &&
|
365
|
+
download_concurrency == o.download_concurrency &&
|
366
|
+
max_retries == o.max_retries &&
|
367
|
+
total_timeout == o.total_timeout &&
|
368
|
+
ca_cert == o.ca_cert &&
|
368
369
|
rate_limit == o.rate_limit &&
|
369
|
-
proxy_url == o.proxy_url &&
|
370
370
|
metadata_only == o.metadata_only
|
371
371
|
end
|
372
372
|
|
@@ -379,7 +379,7 @@ module PulpAnsibleClient
|
|
379
379
|
# Calculates hash code according to all attributes.
|
380
380
|
# @return [Integer] Hash code
|
381
381
|
def hash
|
382
|
-
[
|
382
|
+
[url, proxy_url, username, proxy_username, tls_validation, password, client_cert, proxy_password, client_key, pulp_labels, sock_read_timeout, connect_timeout, sock_connect_timeout, name, headers, download_concurrency, max_retries, total_timeout, ca_cert, rate_limit, metadata_only].hash
|
383
383
|
end
|
384
384
|
|
385
385
|
# Builds the object from hash
|
@@ -32,19 +32,19 @@ describe 'AnsibleCollectionVersionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "artifact"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "pulp_created"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
@@ -32,109 +32,109 @@ describe 'AnsibleGitRemoteResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemoteResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "url"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "proxy_url"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "tls_validation"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "client_cert"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "sock_read_timeout"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "pulp_last_updated"' do
|
78
78
|
it 'should work' do
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "
|
83
|
+
describe 'test attribute "connect_timeout"' do
|
84
84
|
it 'should work' do
|
85
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
-
describe 'test attribute "
|
89
|
+
describe 'test attribute "sock_connect_timeout"' do
|
90
90
|
it 'should work' do
|
91
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
-
describe 'test attribute "
|
95
|
+
describe 'test attribute "name"' do
|
96
96
|
it 'should work' do
|
97
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
-
describe 'test attribute "
|
101
|
+
describe 'test attribute "headers"' do
|
102
102
|
it 'should work' do
|
103
103
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|
107
|
-
describe 'test attribute "
|
107
|
+
describe 'test attribute "pulp_created"' do
|
108
108
|
it 'should work' do
|
109
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
|
-
describe 'test attribute "
|
113
|
+
describe 'test attribute "download_concurrency"' do
|
114
114
|
it 'should work' do
|
115
115
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
-
describe 'test attribute "
|
119
|
+
describe 'test attribute "max_retries"' do
|
120
120
|
it 'should work' do
|
121
121
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
|
-
describe 'test attribute "
|
125
|
+
describe 'test attribute "total_timeout"' do
|
126
126
|
it 'should work' do
|
127
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
128
|
end
|
129
129
|
end
|
130
130
|
|
131
|
-
describe 'test attribute "
|
131
|
+
describe 'test attribute "ca_cert"' do
|
132
132
|
it 'should work' do
|
133
133
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
134
|
end
|
135
135
|
end
|
136
136
|
|
137
|
-
describe 'test attribute "
|
137
|
+
describe 'test attribute "rate_limit"' do
|
138
138
|
it 'should work' do
|
139
139
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
140
|
end
|