pulp_ansible_client 0.11.0.dev1636946173 → 0.11.0.dev1637032524

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.

@@ -18,61 +18,61 @@ module PulpAnsibleClient
18
18
  # Headers for aiohttp.Clientsession
19
19
  attr_accessor :headers
20
20
 
21
- # The proxy URL. Format: scheme://host:port
22
- attr_accessor :proxy_url
23
-
24
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
25
- attr_accessor :total_timeout
26
-
27
- # The URL of an external content source.
28
- attr_accessor :url
29
-
30
- # The username to be used for authentication when syncing.
31
- attr_accessor :username
21
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
22
+ attr_accessor :ca_cert
32
23
 
33
- # The password to be used for authentication when syncing.
34
- attr_accessor :password
24
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
25
+ attr_accessor :connect_timeout
35
26
 
36
27
  # The username to authenticte to the proxy.
37
28
  attr_accessor :proxy_username
38
29
 
39
- # A PEM encoded client certificate used for authentication.
40
- attr_accessor :client_cert
30
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
31
+ attr_accessor :max_retries
41
32
 
42
- # 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.
43
- attr_accessor :sock_connect_timeout
33
+ # The username to be used for authentication when syncing.
34
+ attr_accessor :username
44
35
 
45
- # If True, TLS peer validation must be performed.
46
- attr_accessor :tls_validation
36
+ # A PEM encoded private key used for authentication.
37
+ attr_accessor :client_key
47
38
 
48
39
  # Limits total download rate in requests per second
49
40
  attr_accessor :rate_limit
50
41
 
51
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
52
- attr_accessor :max_retries
42
+ # Total number of simultaneous connections. If not set then the default value will be used.
43
+ attr_accessor :download_concurrency
53
44
 
54
- # A PEM encoded private key used for authentication.
55
- attr_accessor :client_key
45
+ attr_accessor :pulp_labels
46
+
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
56
49
 
57
50
  # The password to authenticte to the proxy.
58
51
  attr_accessor :proxy_password
59
52
 
53
+ # The proxy URL. Format: scheme://host:port
54
+ attr_accessor :proxy_url
55
+
56
+ # The URL of an external content source.
57
+ attr_accessor :url
58
+
60
59
  # 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.
61
60
  attr_accessor :sock_read_timeout
62
61
 
63
62
  # A unique name for this remote.
64
63
  attr_accessor :name
65
64
 
66
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
67
- attr_accessor :ca_cert
65
+ # A PEM encoded client certificate used for authentication.
66
+ attr_accessor :client_cert
68
67
 
69
- attr_accessor :pulp_labels
68
+ # If True, TLS peer validation must be performed.
69
+ attr_accessor :tls_validation
70
70
 
71
- # Total number of simultaneous connections. If not set then the default value will be used.
72
- attr_accessor :download_concurrency
71
+ # The password to be used for authentication when syncing.
72
+ attr_accessor :password
73
73
 
74
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
75
- attr_accessor :connect_timeout
74
+ # 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.
75
+ attr_accessor :sock_connect_timeout
76
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
@@ -81,25 +81,25 @@ module PulpAnsibleClient
81
81
  def self.attribute_map
82
82
  {
83
83
  :'headers' => :'headers',
84
- :'proxy_url' => :'proxy_url',
85
- :'total_timeout' => :'total_timeout',
86
- :'url' => :'url',
87
- :'username' => :'username',
88
- :'password' => :'password',
84
+ :'ca_cert' => :'ca_cert',
85
+ :'connect_timeout' => :'connect_timeout',
89
86
  :'proxy_username' => :'proxy_username',
90
- :'client_cert' => :'client_cert',
91
- :'sock_connect_timeout' => :'sock_connect_timeout',
92
- :'tls_validation' => :'tls_validation',
93
- :'rate_limit' => :'rate_limit',
94
87
  :'max_retries' => :'max_retries',
88
+ :'username' => :'username',
95
89
  :'client_key' => :'client_key',
90
+ :'rate_limit' => :'rate_limit',
91
+ :'download_concurrency' => :'download_concurrency',
92
+ :'pulp_labels' => :'pulp_labels',
93
+ :'total_timeout' => :'total_timeout',
96
94
  :'proxy_password' => :'proxy_password',
95
+ :'proxy_url' => :'proxy_url',
96
+ :'url' => :'url',
97
97
  :'sock_read_timeout' => :'sock_read_timeout',
98
98
  :'name' => :'name',
99
- :'ca_cert' => :'ca_cert',
100
- :'pulp_labels' => :'pulp_labels',
101
- :'download_concurrency' => :'download_concurrency',
102
- :'connect_timeout' => :'connect_timeout',
99
+ :'client_cert' => :'client_cert',
100
+ :'tls_validation' => :'tls_validation',
101
+ :'password' => :'password',
102
+ :'sock_connect_timeout' => :'sock_connect_timeout',
103
103
  :'metadata_only' => :'metadata_only'
104
104
  }
105
105
  end
@@ -108,25 +108,25 @@ module PulpAnsibleClient
108
108
  def self.openapi_types
109
109
  {
110
110
  :'headers' => :'Array<Object>',
111
- :'proxy_url' => :'String',
112
- :'total_timeout' => :'Float',
113
- :'url' => :'String',
114
- :'username' => :'String',
115
- :'password' => :'String',
111
+ :'ca_cert' => :'String',
112
+ :'connect_timeout' => :'Float',
116
113
  :'proxy_username' => :'String',
117
- :'client_cert' => :'String',
118
- :'sock_connect_timeout' => :'Float',
119
- :'tls_validation' => :'Boolean',
120
- :'rate_limit' => :'Integer',
121
114
  :'max_retries' => :'Integer',
115
+ :'username' => :'String',
122
116
  :'client_key' => :'String',
117
+ :'rate_limit' => :'Integer',
118
+ :'download_concurrency' => :'Integer',
119
+ :'pulp_labels' => :'Object',
120
+ :'total_timeout' => :'Float',
123
121
  :'proxy_password' => :'String',
122
+ :'proxy_url' => :'String',
123
+ :'url' => :'String',
124
124
  :'sock_read_timeout' => :'Float',
125
125
  :'name' => :'String',
126
- :'ca_cert' => :'String',
127
- :'pulp_labels' => :'Object',
128
- :'download_concurrency' => :'Integer',
129
- :'connect_timeout' => :'Float',
126
+ :'client_cert' => :'String',
127
+ :'tls_validation' => :'Boolean',
128
+ :'password' => :'String',
129
+ :'sock_connect_timeout' => :'Float',
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
- :'total_timeout',
139
- :'username',
140
- :'password',
137
+ :'ca_cert',
138
+ :'connect_timeout',
141
139
  :'proxy_username',
142
- :'client_cert',
143
- :'sock_connect_timeout',
144
- :'rate_limit',
145
140
  :'max_retries',
141
+ :'username',
146
142
  :'client_key',
143
+ :'rate_limit',
144
+ :'download_concurrency',
145
+ :'total_timeout',
147
146
  :'proxy_password',
147
+ :'proxy_url',
148
148
  :'sock_read_timeout',
149
- :'ca_cert',
150
- :'download_concurrency',
151
- :'connect_timeout',
149
+ :'client_cert',
150
+ :'password',
151
+ :'sock_connect_timeout',
152
152
  ])
153
153
  end
154
154
 
@@ -173,58 +173,58 @@ module PulpAnsibleClient
173
173
  end
174
174
  end
175
175
 
176
- if attributes.key?(:'proxy_url')
177
- self.proxy_url = attributes[:'proxy_url']
178
- end
179
-
180
- if attributes.key?(:'total_timeout')
181
- self.total_timeout = attributes[:'total_timeout']
182
- end
183
-
184
- if attributes.key?(:'url')
185
- self.url = attributes[:'url']
186
- end
187
-
188
- if attributes.key?(:'username')
189
- self.username = attributes[:'username']
176
+ if attributes.key?(:'ca_cert')
177
+ self.ca_cert = attributes[:'ca_cert']
190
178
  end
191
179
 
192
- if attributes.key?(:'password')
193
- self.password = attributes[:'password']
180
+ if attributes.key?(:'connect_timeout')
181
+ self.connect_timeout = attributes[:'connect_timeout']
194
182
  end
195
183
 
196
184
  if attributes.key?(:'proxy_username')
197
185
  self.proxy_username = attributes[:'proxy_username']
198
186
  end
199
187
 
200
- if attributes.key?(:'client_cert')
201
- self.client_cert = attributes[:'client_cert']
188
+ if attributes.key?(:'max_retries')
189
+ self.max_retries = attributes[:'max_retries']
202
190
  end
203
191
 
204
- if attributes.key?(:'sock_connect_timeout')
205
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
192
+ if attributes.key?(:'username')
193
+ self.username = attributes[:'username']
206
194
  end
207
195
 
208
- if attributes.key?(:'tls_validation')
209
- self.tls_validation = attributes[:'tls_validation']
196
+ if attributes.key?(:'client_key')
197
+ self.client_key = attributes[:'client_key']
210
198
  end
211
199
 
212
200
  if attributes.key?(:'rate_limit')
213
201
  self.rate_limit = attributes[:'rate_limit']
214
202
  end
215
203
 
216
- if attributes.key?(:'max_retries')
217
- self.max_retries = attributes[:'max_retries']
204
+ if attributes.key?(:'download_concurrency')
205
+ self.download_concurrency = attributes[:'download_concurrency']
218
206
  end
219
207
 
220
- if attributes.key?(:'client_key')
221
- self.client_key = attributes[:'client_key']
208
+ if attributes.key?(:'pulp_labels')
209
+ self.pulp_labels = attributes[:'pulp_labels']
210
+ end
211
+
212
+ if attributes.key?(:'total_timeout')
213
+ self.total_timeout = attributes[:'total_timeout']
222
214
  end
223
215
 
224
216
  if attributes.key?(:'proxy_password')
225
217
  self.proxy_password = attributes[:'proxy_password']
226
218
  end
227
219
 
220
+ if attributes.key?(:'proxy_url')
221
+ self.proxy_url = attributes[:'proxy_url']
222
+ end
223
+
224
+ if attributes.key?(:'url')
225
+ self.url = attributes[:'url']
226
+ end
227
+
228
228
  if attributes.key?(:'sock_read_timeout')
229
229
  self.sock_read_timeout = attributes[:'sock_read_timeout']
230
230
  end
@@ -233,20 +233,20 @@ module PulpAnsibleClient
233
233
  self.name = attributes[:'name']
234
234
  end
235
235
 
236
- if attributes.key?(:'ca_cert')
237
- self.ca_cert = attributes[:'ca_cert']
236
+ if attributes.key?(:'client_cert')
237
+ self.client_cert = attributes[:'client_cert']
238
238
  end
239
239
 
240
- if attributes.key?(:'pulp_labels')
241
- self.pulp_labels = attributes[:'pulp_labels']
240
+ if attributes.key?(:'tls_validation')
241
+ self.tls_validation = attributes[:'tls_validation']
242
242
  end
243
243
 
244
- if attributes.key?(:'download_concurrency')
245
- self.download_concurrency = attributes[:'download_concurrency']
244
+ if attributes.key?(:'password')
245
+ self.password = attributes[:'password']
246
246
  end
247
247
 
248
- if attributes.key?(:'connect_timeout')
249
- self.connect_timeout = attributes[:'connect_timeout']
248
+ if attributes.key?(:'sock_connect_timeout')
249
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
250
250
  end
251
251
 
252
252
  if attributes.key?(:'metadata_only')
@@ -258,24 +258,24 @@ 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 !@total_timeout.nil? && @total_timeout < 0.0
262
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
261
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
262
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
263
263
  end
264
264
 
265
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
266
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
265
+ if !@download_concurrency.nil? && @download_concurrency < 1
266
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
267
267
  end
268
268
 
269
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
270
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
269
+ if !@total_timeout.nil? && @total_timeout < 0.0
270
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
271
271
  end
272
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.')
273
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
274
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
275
275
  end
276
276
 
277
- if !@connect_timeout.nil? && @connect_timeout < 0.0
278
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
277
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
278
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
279
279
  end
280
280
 
281
281
  invalid_properties
@@ -284,62 +284,62 @@ module PulpAnsibleClient
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 !@connect_timeout.nil? && @connect_timeout < 0.0
288
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
287
289
  return false if !@total_timeout.nil? && @total_timeout < 0.0
288
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
289
290
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
290
- return false if !@download_concurrency.nil? && @download_concurrency < 1
291
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
291
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
292
292
  true
293
293
  end
294
294
 
295
295
  # Custom attribute writer method with validation
296
- # @param [Object] total_timeout Value to be assigned
297
- def total_timeout=(total_timeout)
298
- if !total_timeout.nil? && total_timeout < 0.0
299
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
296
+ # @param [Object] connect_timeout Value to be assigned
297
+ def connect_timeout=(connect_timeout)
298
+ if !connect_timeout.nil? && connect_timeout < 0.0
299
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
300
300
  end
301
301
 
302
- @total_timeout = total_timeout
302
+ @connect_timeout = connect_timeout
303
303
  end
304
304
 
305
305
  # Custom attribute writer method with validation
306
- # @param [Object] sock_connect_timeout Value to be assigned
307
- def sock_connect_timeout=(sock_connect_timeout)
308
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
309
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
306
+ # @param [Object] download_concurrency Value to be assigned
307
+ def download_concurrency=(download_concurrency)
308
+ if !download_concurrency.nil? && download_concurrency < 1
309
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
310
310
  end
311
311
 
312
- @sock_connect_timeout = sock_connect_timeout
312
+ @download_concurrency = download_concurrency
313
313
  end
314
314
 
315
315
  # Custom attribute writer method with validation
316
- # @param [Object] sock_read_timeout Value to be assigned
317
- def sock_read_timeout=(sock_read_timeout)
318
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
319
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
316
+ # @param [Object] total_timeout Value to be assigned
317
+ def total_timeout=(total_timeout)
318
+ if !total_timeout.nil? && total_timeout < 0.0
319
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
320
320
  end
321
321
 
322
- @sock_read_timeout = sock_read_timeout
322
+ @total_timeout = total_timeout
323
323
  end
324
324
 
325
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.'
326
+ # @param [Object] sock_read_timeout Value to be assigned
327
+ def sock_read_timeout=(sock_read_timeout)
328
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
329
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
330
330
  end
331
331
 
332
- @download_concurrency = download_concurrency
332
+ @sock_read_timeout = sock_read_timeout
333
333
  end
334
334
 
335
335
  # Custom attribute writer method with validation
336
- # @param [Object] connect_timeout Value to be assigned
337
- def connect_timeout=(connect_timeout)
338
- if !connect_timeout.nil? && connect_timeout < 0.0
339
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
336
+ # @param [Object] sock_connect_timeout Value to be assigned
337
+ def sock_connect_timeout=(sock_connect_timeout)
338
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
339
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
340
340
  end
341
341
 
342
- @connect_timeout = connect_timeout
342
+ @sock_connect_timeout = sock_connect_timeout
343
343
  end
344
344
 
345
345
  # Checks equality by comparing each attribute.
@@ -348,25 +348,25 @@ module PulpAnsibleClient
348
348
  return true if self.equal?(o)
349
349
  self.class == o.class &&
350
350
  headers == o.headers &&
351
- proxy_url == o.proxy_url &&
352
- total_timeout == o.total_timeout &&
353
- url == o.url &&
354
- username == o.username &&
355
- password == o.password &&
351
+ ca_cert == o.ca_cert &&
352
+ connect_timeout == o.connect_timeout &&
356
353
  proxy_username == o.proxy_username &&
357
- client_cert == o.client_cert &&
358
- sock_connect_timeout == o.sock_connect_timeout &&
359
- tls_validation == o.tls_validation &&
360
- rate_limit == o.rate_limit &&
361
354
  max_retries == o.max_retries &&
355
+ username == o.username &&
362
356
  client_key == o.client_key &&
357
+ rate_limit == o.rate_limit &&
358
+ download_concurrency == o.download_concurrency &&
359
+ pulp_labels == o.pulp_labels &&
360
+ total_timeout == o.total_timeout &&
363
361
  proxy_password == o.proxy_password &&
362
+ proxy_url == o.proxy_url &&
363
+ url == o.url &&
364
364
  sock_read_timeout == o.sock_read_timeout &&
365
365
  name == o.name &&
366
- ca_cert == o.ca_cert &&
367
- pulp_labels == o.pulp_labels &&
368
- download_concurrency == o.download_concurrency &&
369
- connect_timeout == o.connect_timeout &&
366
+ client_cert == o.client_cert &&
367
+ tls_validation == o.tls_validation &&
368
+ password == o.password &&
369
+ sock_connect_timeout == o.sock_connect_timeout &&
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
- [headers, proxy_url, total_timeout, url, username, password, proxy_username, client_cert, sock_connect_timeout, tls_validation, rate_limit, max_retries, client_key, proxy_password, sock_read_timeout, name, ca_cert, pulp_labels, download_concurrency, connect_timeout, metadata_only].hash
382
+ [headers, ca_cert, connect_timeout, proxy_username, max_retries, username, client_key, rate_limit, download_concurrency, pulp_labels, total_timeout, proxy_password, proxy_url, url, sock_read_timeout, name, client_cert, tls_validation, password, sock_connect_timeout, metadata_only].hash
383
383
  end
384
384
 
385
385
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.11.0.dev1636946173'
14
+ VERSION = '0.11.0.dev1637032524'
15
15
  end
@@ -32,13 +32,13 @@ describe 'AnsibleCollectionVersionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_href"' do
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 "artifact"' do
41
+ describe 'test attribute "pulp_href"' 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
@@ -38,19 +38,19 @@ describe 'AnsibleGitRemoteResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "proxy_url"' do
41
+ describe 'test attribute "ca_cert"' 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 "total_timeout"' do
47
+ describe 'test attribute "connect_timeout"' 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 "url"' do
53
+ describe 'test attribute "max_retries"' 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
@@ -62,79 +62,79 @@ describe 'AnsibleGitRemoteResponse' do
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "client_cert"' do
65
+ describe 'test attribute "rate_limit"' 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 "sock_connect_timeout"' do
71
+ describe 'test attribute "download_concurrency"' 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 "tls_validation"' do
77
+ describe 'test attribute "pulp_labels"' 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 "pulp_last_updated"' do
83
+ describe 'test attribute "total_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 "rate_limit"' do
89
+ describe 'test attribute "proxy_url"' 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 "max_retries"' do
95
+ describe 'test attribute "pulp_created"' 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 "sock_read_timeout"' do
101
+ describe 'test attribute "url"' 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 "name"' do
107
+ describe 'test attribute "sock_read_timeout"' 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 "ca_cert"' do
113
+ describe 'test attribute "name"' 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 "pulp_created"' do
119
+ describe 'test attribute "client_cert"' 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 "pulp_labels"' do
125
+ describe 'test attribute "tls_validation"' 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 "download_concurrency"' do
131
+ describe 'test attribute "pulp_last_updated"' 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 "connect_timeout"' do
137
+ describe 'test attribute "sock_connect_timeout"' 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