pulp_ansible_client 0.11.0.dev1636168524 → 0.11.0.dev1636514074

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_ansible_client might be problematic. Click here for more details.

@@ -15,64 +15,64 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class PatchedansibleGitRemote
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
20
-
21
- # Headers for aiohttp.Clientsession
22
- attr_accessor :headers
18
+ # If True, TLS peer validation must be performed.
19
+ attr_accessor :tls_validation
23
20
 
24
- # The username to be used for authentication when syncing.
25
- 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
26
23
 
27
24
  attr_accessor :pulp_labels
28
25
 
29
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
30
- attr_accessor :connect_timeout
26
+ # Limits total download rate in requests per second
27
+ attr_accessor :rate_limit
31
28
 
32
- # If True, TLS peer validation must be performed.
33
- attr_accessor :tls_validation
29
+ # A PEM encoded private key used for authentication.
30
+ attr_accessor :client_key
31
+
32
+ # A PEM encoded client certificate used for authentication.
33
+ attr_accessor :client_cert
34
34
 
35
35
  # 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.
36
36
  attr_accessor :sock_read_timeout
37
37
 
38
- # A PEM encoded client certificate used for authentication.
39
- attr_accessor :client_cert
38
+ # The URL of an external content source.
39
+ attr_accessor :url
40
+
41
+ # The username to authenticte to the proxy.
42
+ attr_accessor :proxy_username
40
43
 
41
44
  # 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.
42
45
  attr_accessor :sock_connect_timeout
43
46
 
44
- # Limits total download rate in requests per second
45
- attr_accessor :rate_limit
46
-
47
47
  # The password to be used for authentication when syncing.
48
48
  attr_accessor :password
49
49
 
50
50
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
51
51
  attr_accessor :total_timeout
52
52
 
53
- # The proxy URL. Format: scheme://host:port
54
- attr_accessor :proxy_url
55
-
56
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
57
- attr_accessor :ca_cert
58
-
59
- # A unique name for this remote.
60
- attr_accessor :name
53
+ # Headers for aiohttp.Clientsession
54
+ attr_accessor :headers
61
55
 
62
- # The URL of an external content source.
63
- attr_accessor :url
56
+ # Total number of simultaneous connections. If not set then the default value will be used.
57
+ attr_accessor :download_concurrency
64
58
 
65
- # A PEM encoded private key used for authentication.
66
- attr_accessor :client_key
59
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
60
+ attr_accessor :max_retries
67
61
 
68
- # The username to authenticte to the proxy.
69
- attr_accessor :proxy_username
62
+ # The username to be used for authentication when syncing.
63
+ attr_accessor :username
70
64
 
71
65
  # The password to authenticte to the proxy.
72
66
  attr_accessor :proxy_password
73
67
 
74
- # Total number of simultaneous connections. If not set then the default value will be used.
75
- attr_accessor :download_concurrency
68
+ # A unique name for this remote.
69
+ attr_accessor :name
70
+
71
+ # The proxy URL. Format: scheme://host:port
72
+ attr_accessor :proxy_url
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
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
@@ -80,26 +80,26 @@ module PulpAnsibleClient
80
80
  # Attribute mapping from ruby-style variable name to JSON key.
81
81
  def self.attribute_map
82
82
  {
83
- :'max_retries' => :'max_retries',
84
- :'headers' => :'headers',
85
- :'username' => :'username',
86
- :'pulp_labels' => :'pulp_labels',
87
- :'connect_timeout' => :'connect_timeout',
88
83
  :'tls_validation' => :'tls_validation',
89
- :'sock_read_timeout' => :'sock_read_timeout',
84
+ :'ca_cert' => :'ca_cert',
85
+ :'pulp_labels' => :'pulp_labels',
86
+ :'rate_limit' => :'rate_limit',
87
+ :'client_key' => :'client_key',
90
88
  :'client_cert' => :'client_cert',
89
+ :'sock_read_timeout' => :'sock_read_timeout',
90
+ :'url' => :'url',
91
+ :'proxy_username' => :'proxy_username',
91
92
  :'sock_connect_timeout' => :'sock_connect_timeout',
92
- :'rate_limit' => :'rate_limit',
93
93
  :'password' => :'password',
94
94
  :'total_timeout' => :'total_timeout',
95
- :'proxy_url' => :'proxy_url',
96
- :'ca_cert' => :'ca_cert',
97
- :'name' => :'name',
98
- :'url' => :'url',
99
- :'client_key' => :'client_key',
100
- :'proxy_username' => :'proxy_username',
101
- :'proxy_password' => :'proxy_password',
95
+ :'headers' => :'headers',
102
96
  :'download_concurrency' => :'download_concurrency',
97
+ :'max_retries' => :'max_retries',
98
+ :'username' => :'username',
99
+ :'proxy_password' => :'proxy_password',
100
+ :'name' => :'name',
101
+ :'proxy_url' => :'proxy_url',
102
+ :'connect_timeout' => :'connect_timeout',
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
- :'max_retries' => :'Integer',
111
- :'headers' => :'Array<Object>',
112
- :'username' => :'String',
113
- :'pulp_labels' => :'Object',
114
- :'connect_timeout' => :'Float',
115
110
  :'tls_validation' => :'Boolean',
116
- :'sock_read_timeout' => :'Float',
111
+ :'ca_cert' => :'String',
112
+ :'pulp_labels' => :'Object',
113
+ :'rate_limit' => :'Integer',
114
+ :'client_key' => :'String',
117
115
  :'client_cert' => :'String',
116
+ :'sock_read_timeout' => :'Float',
117
+ :'url' => :'String',
118
+ :'proxy_username' => :'String',
118
119
  :'sock_connect_timeout' => :'Float',
119
- :'rate_limit' => :'Integer',
120
120
  :'password' => :'String',
121
121
  :'total_timeout' => :'Float',
122
- :'proxy_url' => :'String',
123
- :'ca_cert' => :'String',
124
- :'name' => :'String',
125
- :'url' => :'String',
126
- :'client_key' => :'String',
127
- :'proxy_username' => :'String',
128
- :'proxy_password' => :'String',
122
+ :'headers' => :'Array<Object>',
129
123
  :'download_concurrency' => :'Integer',
124
+ :'max_retries' => :'Integer',
125
+ :'username' => :'String',
126
+ :'proxy_password' => :'String',
127
+ :'name' => :'String',
128
+ :'proxy_url' => :'String',
129
+ :'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
- :'max_retries',
138
- :'username',
139
- :'connect_timeout',
140
- :'sock_read_timeout',
137
+ :'ca_cert',
138
+ :'rate_limit',
139
+ :'client_key',
141
140
  :'client_cert',
141
+ :'sock_read_timeout',
142
+ :'proxy_username',
142
143
  :'sock_connect_timeout',
143
- :'rate_limit',
144
144
  :'password',
145
145
  :'total_timeout',
146
- :'proxy_url',
147
- :'ca_cert',
148
- :'client_key',
149
- :'proxy_username',
150
- :'proxy_password',
151
146
  :'download_concurrency',
147
+ :'max_retries',
148
+ :'username',
149
+ :'proxy_password',
150
+ :'proxy_url',
151
+ :'connect_timeout',
152
152
  ])
153
153
  end
154
154
 
@@ -167,46 +167,44 @@ module PulpAnsibleClient
167
167
  h[k.to_sym] = v
168
168
  }
169
169
 
170
- if attributes.key?(:'max_retries')
171
- self.max_retries = attributes[:'max_retries']
172
- end
173
-
174
- if attributes.key?(:'headers')
175
- if (value = attributes[:'headers']).is_a?(Array)
176
- self.headers = value
177
- end
170
+ if attributes.key?(:'tls_validation')
171
+ self.tls_validation = attributes[:'tls_validation']
178
172
  end
179
173
 
180
- if attributes.key?(:'username')
181
- self.username = attributes[:'username']
174
+ if attributes.key?(:'ca_cert')
175
+ self.ca_cert = attributes[:'ca_cert']
182
176
  end
183
177
 
184
178
  if attributes.key?(:'pulp_labels')
185
179
  self.pulp_labels = attributes[:'pulp_labels']
186
180
  end
187
181
 
188
- if attributes.key?(:'connect_timeout')
189
- self.connect_timeout = attributes[:'connect_timeout']
182
+ if attributes.key?(:'rate_limit')
183
+ self.rate_limit = attributes[:'rate_limit']
190
184
  end
191
185
 
192
- if attributes.key?(:'tls_validation')
193
- self.tls_validation = attributes[:'tls_validation']
186
+ if attributes.key?(:'client_key')
187
+ self.client_key = attributes[:'client_key']
188
+ end
189
+
190
+ if attributes.key?(:'client_cert')
191
+ self.client_cert = attributes[:'client_cert']
194
192
  end
195
193
 
196
194
  if attributes.key?(:'sock_read_timeout')
197
195
  self.sock_read_timeout = attributes[:'sock_read_timeout']
198
196
  end
199
197
 
200
- if attributes.key?(:'client_cert')
201
- self.client_cert = attributes[:'client_cert']
198
+ if attributes.key?(:'url')
199
+ self.url = attributes[:'url']
202
200
  end
203
201
 
204
- if attributes.key?(:'sock_connect_timeout')
205
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
202
+ if attributes.key?(:'proxy_username')
203
+ self.proxy_username = attributes[:'proxy_username']
206
204
  end
207
205
 
208
- if attributes.key?(:'rate_limit')
209
- self.rate_limit = attributes[:'rate_limit']
206
+ if attributes.key?(:'sock_connect_timeout')
207
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
210
208
  end
211
209
 
212
210
  if attributes.key?(:'password')
@@ -217,36 +215,38 @@ module PulpAnsibleClient
217
215
  self.total_timeout = attributes[:'total_timeout']
218
216
  end
219
217
 
220
- if attributes.key?(:'proxy_url')
221
- self.proxy_url = attributes[:'proxy_url']
218
+ if attributes.key?(:'headers')
219
+ if (value = attributes[:'headers']).is_a?(Array)
220
+ self.headers = value
221
+ end
222
222
  end
223
223
 
224
- if attributes.key?(:'ca_cert')
225
- self.ca_cert = attributes[:'ca_cert']
224
+ if attributes.key?(:'download_concurrency')
225
+ self.download_concurrency = attributes[:'download_concurrency']
226
226
  end
227
227
 
228
- if attributes.key?(:'name')
229
- self.name = attributes[:'name']
228
+ if attributes.key?(:'max_retries')
229
+ self.max_retries = attributes[:'max_retries']
230
230
  end
231
231
 
232
- if attributes.key?(:'url')
233
- self.url = attributes[:'url']
232
+ if attributes.key?(:'username')
233
+ self.username = attributes[:'username']
234
234
  end
235
235
 
236
- if attributes.key?(:'client_key')
237
- self.client_key = attributes[:'client_key']
236
+ if attributes.key?(:'proxy_password')
237
+ self.proxy_password = attributes[:'proxy_password']
238
238
  end
239
239
 
240
- if attributes.key?(:'proxy_username')
241
- self.proxy_username = attributes[:'proxy_username']
240
+ if attributes.key?(:'name')
241
+ self.name = attributes[:'name']
242
242
  end
243
243
 
244
- if attributes.key?(:'proxy_password')
245
- self.proxy_password = attributes[:'proxy_password']
244
+ if attributes.key?(:'proxy_url')
245
+ self.proxy_url = attributes[:'proxy_url']
246
246
  end
247
247
 
248
- if attributes.key?(:'download_concurrency')
249
- self.download_concurrency = attributes[:'download_concurrency']
248
+ if attributes.key?(:'connect_timeout')
249
+ self.connect_timeout = attributes[:'connect_timeout']
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 !@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
- 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
@@ -278,30 +274,24 @@ module PulpAnsibleClient
278
274
  invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
279
275
  end
280
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.')
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 !@connect_timeout.nil? && @connect_timeout < 0.0
288
287
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
289
288
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
290
289
  return false if !@total_timeout.nil? && @total_timeout < 0.0
291
290
  return false if !@download_concurrency.nil? && @download_concurrency < 1
291
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
292
292
  true
293
293
  end
294
294
 
295
- # Custom attribute writer method with validation
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
- end
301
-
302
- @connect_timeout = connect_timeout
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)
@@ -342,31 +332,41 @@ module PulpAnsibleClient
342
332
  @download_concurrency = download_concurrency
343
333
  end
344
334
 
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.'
340
+ end
341
+
342
+ @connect_timeout = connect_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
- max_retries == o.max_retries &&
351
- headers == o.headers &&
352
- username == o.username &&
353
- pulp_labels == o.pulp_labels &&
354
- connect_timeout == o.connect_timeout &&
355
350
  tls_validation == o.tls_validation &&
356
- sock_read_timeout == o.sock_read_timeout &&
351
+ ca_cert == o.ca_cert &&
352
+ pulp_labels == o.pulp_labels &&
353
+ rate_limit == o.rate_limit &&
354
+ client_key == o.client_key &&
357
355
  client_cert == o.client_cert &&
356
+ sock_read_timeout == o.sock_read_timeout &&
357
+ url == o.url &&
358
+ proxy_username == o.proxy_username &&
358
359
  sock_connect_timeout == o.sock_connect_timeout &&
359
- rate_limit == o.rate_limit &&
360
360
  password == o.password &&
361
361
  total_timeout == o.total_timeout &&
362
- proxy_url == o.proxy_url &&
363
- ca_cert == o.ca_cert &&
364
- name == o.name &&
365
- url == o.url &&
366
- client_key == o.client_key &&
367
- proxy_username == o.proxy_username &&
368
- proxy_password == o.proxy_password &&
362
+ headers == o.headers &&
369
363
  download_concurrency == o.download_concurrency &&
364
+ max_retries == o.max_retries &&
365
+ username == o.username &&
366
+ proxy_password == o.proxy_password &&
367
+ name == o.name &&
368
+ proxy_url == o.proxy_url &&
369
+ connect_timeout == o.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
- [max_retries, headers, username, pulp_labels, connect_timeout, tls_validation, sock_read_timeout, client_cert, sock_connect_timeout, rate_limit, password, total_timeout, proxy_url, ca_cert, name, url, client_key, proxy_username, proxy_password, download_concurrency, metadata_only].hash
382
+ [tls_validation, ca_cert, pulp_labels, rate_limit, client_key, client_cert, sock_read_timeout, url, proxy_username, sock_connect_timeout, password, total_timeout, headers, download_concurrency, max_retries, username, proxy_password, name, proxy_url, 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.dev1636168524'
14
+ VERSION = '0.11.0.dev1636514074'
15
15
  end
@@ -39,8 +39,8 @@ describe 'ContentCollectionVersionsApi' do
39
39
  # @param namespace The namespace of the collection.
40
40
  # @param version The version of the collection.
41
41
  # @param [Hash] opts the optional parameters
42
- # @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
43
42
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
43
+ # @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
44
44
  # @return [AsyncOperationResponse]
45
45
  describe 'create test' do
46
46
  it 'should work' do
@@ -32,13 +32,13 @@ describe 'AnsibleCollectionVersion' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersion)
33
33
  end
34
34
  end
35
- describe 'test attribute "file"' do
35
+ describe 'test attribute "repository"' 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 "repository"' do
41
+ describe 'test attribute "file"' 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
@@ -32,49 +32,49 @@ describe 'AnsibleGitRemoteResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemoteResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "max_retries"' do
35
+ describe 'test attribute "pulp_created"' 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 "headers"' do
41
+ describe 'test attribute "tls_validation"' 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 "pulp_labels"' do
47
+ describe 'test attribute "ca_cert"' 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 "connect_timeout"' do
53
+ describe 'test attribute "pulp_labels"' 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 "tls_validation"' do
59
+ describe 'test attribute "rate_limit"' 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 "sock_read_timeout"' do
65
+ describe 'test attribute "client_cert"' 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 "pulp_created"' do
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 "client_cert"' do
77
+ describe 'test attribute "url"' 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
@@ -86,55 +86,55 @@ describe 'AnsibleGitRemoteResponse' do
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "pulp_last_updated"' do
89
+ describe 'test attribute "total_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 "rate_limit"' do
95
+ describe 'test attribute "headers"' 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 "total_timeout"' do
101
+ describe 'test attribute "download_concurrency"' 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 "proxy_url"' do
107
+ describe 'test attribute "max_retries"' 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 "name"' do
119
+ describe 'test attribute "pulp_href"' 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 "url"' do
125
+ describe 'test attribute "pulp_last_updated"' 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 "pulp_href"' do
131
+ describe 'test attribute "proxy_url"' 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 "download_concurrency"' do
137
+ describe 'test attribute "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