pulp_ansible_client 0.11.0.dev1636686953 → 0.11.0.dev1636773338

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