sources-api-client 1.0.0 → 3.0.0

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.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/Gemfile.lock +11 -10
  4. data/bundler.d/.gitkeep +0 -0
  5. data/bundler.d/Gemfile.dev.rb +0 -0
  6. data/docs/Application.md +4 -2
  7. data/docs/ApplicationAuthentication.md +25 -0
  8. data/docs/ApplicationAuthenticationsCollection.md +21 -0
  9. data/docs/Authentication.md +4 -2
  10. data/docs/DefaultApi.md +333 -45
  11. data/docs/Endpoint.md +4 -2
  12. data/docs/ErrorNotFoundErrors.md +1 -1
  13. data/docs/Source.md +4 -2
  14. data/lib/sources-api-client.rb +3 -2
  15. data/lib/sources-api-client/api/default_api.rb +440 -60
  16. data/lib/sources-api-client/api_client.rb +1 -1
  17. data/lib/sources-api-client/api_error.rb +1 -1
  18. data/lib/sources-api-client/configuration.rb +4 -4
  19. data/lib/sources-api-client/models/application.rb +20 -11
  20. data/lib/sources-api-client/models/application_authentication.rb +296 -0
  21. data/lib/sources-api-client/models/{tenant.rb → application_authentications_collection.rb} +25 -23
  22. data/lib/sources-api-client/models/application_type.rb +1 -1
  23. data/lib/sources-api-client/models/application_types_collection.rb +1 -1
  24. data/lib/sources-api-client/models/applications_collection.rb +1 -1
  25. data/lib/sources-api-client/models/authentication.rb +20 -11
  26. data/lib/sources-api-client/models/authentication_extra.rb +1 -1
  27. data/lib/sources-api-client/models/authentication_extra_azure.rb +1 -1
  28. data/lib/sources-api-client/models/authentications_collection.rb +1 -1
  29. data/lib/sources-api-client/models/collection_links.rb +1 -1
  30. data/lib/sources-api-client/models/collection_metadata.rb +1 -1
  31. data/lib/sources-api-client/models/endpoint.rb +20 -11
  32. data/lib/sources-api-client/models/endpoints_collection.rb +1 -1
  33. data/lib/sources-api-client/models/error_not_found.rb +1 -1
  34. data/lib/sources-api-client/models/error_not_found_errors.rb +2 -2
  35. data/lib/sources-api-client/models/graph_ql_request.rb +1 -1
  36. data/lib/sources-api-client/models/graph_ql_response.rb +1 -1
  37. data/lib/sources-api-client/models/source.rb +20 -11
  38. data/lib/sources-api-client/models/source_type.rb +1 -1
  39. data/lib/sources-api-client/models/source_types_collection.rb +1 -1
  40. data/lib/sources-api-client/models/sources_collection.rb +1 -1
  41. data/lib/sources-api-client/version.rb +2 -2
  42. data/sources-api-client.gemspec +1 -1
  43. data/spec/api/default_api_spec.rb +91 -23
  44. data/spec/api_client_spec.rb +1 -1
  45. data/spec/configuration_spec.rb +4 -4
  46. data/spec/models/application_authentication_spec.rb +65 -0
  47. data/spec/models/{tenant_spec.rb → application_authentications_collection_spec.rb} +10 -10
  48. data/spec/models/application_spec.rb +9 -3
  49. data/spec/models/application_type_spec.rb +1 -1
  50. data/spec/models/application_types_collection_spec.rb +1 -1
  51. data/spec/models/applications_collection_spec.rb +1 -1
  52. data/spec/models/authentication_extra_azure_spec.rb +1 -1
  53. data/spec/models/authentication_extra_spec.rb +1 -1
  54. data/spec/models/authentication_spec.rb +13 -7
  55. data/spec/models/authentications_collection_spec.rb +1 -1
  56. data/spec/models/collection_links_spec.rb +1 -1
  57. data/spec/models/collection_metadata_spec.rb +1 -1
  58. data/spec/models/endpoint_spec.rb +13 -7
  59. data/spec/models/endpoints_collection_spec.rb +1 -1
  60. data/spec/models/error_not_found_errors_spec.rb +1 -1
  61. data/spec/models/error_not_found_spec.rb +1 -1
  62. data/spec/models/graph_ql_request_spec.rb +1 -1
  63. data/spec/models/graph_ql_response_spec.rb +1 -1
  64. data/spec/models/source_spec.rb +11 -5
  65. data/spec/models/source_type_spec.rb +1 -1
  66. data/spec/models/source_types_collection_spec.rb +1 -1
  67. data/spec/models/sources_collection_spec.rb +1 -1
  68. data/spec/spec_helper.rb +1 -1
  69. metadata +39 -33
  70. data/docs/Tenant.md +0 -21
  71. data/pkg/sources-api-client-1.0.0.gem +0 -0
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.1
11
11
  =end
12
12
 
13
13
  module SourcesApiClient
14
- VERSION = '1.0.0'
14
+ VERSION = '3.0.0'
15
15
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  #Sources
7
7
 
8
- The version of the OpenAPI document: 1.0.0
8
+ The version of the OpenAPI document: 3.0.0
9
9
  Contact: support@redhat.com
10
10
  Generated by: https://openapi-generator.tech
11
11
  OpenAPI Generator version: 4.2.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -56,6 +56,18 @@ describe 'DefaultApi' do
56
56
  end
57
57
  end
58
58
 
59
+ # unit tests for create_application_authentication
60
+ # Create a new ApplicationAuthentication
61
+ # Creates a ApplicationAuthentication object
62
+ # @param application_authentication ApplicationAuthentication attributes to create
63
+ # @param [Hash] opts the optional parameters
64
+ # @return [ApplicationAuthentication]
65
+ describe 'create_application_authentication test' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
59
71
  # unit tests for create_authentication
60
72
  # Create a new Authentication
61
73
  # Creates a Authentication object
@@ -92,25 +104,25 @@ describe 'DefaultApi' do
92
104
  end
93
105
  end
94
106
 
95
- # unit tests for create_source_type
96
- # Create a new SourceType
97
- # Creates a SourceType object
98
- # @param source_type SourceType attributes to create
107
+ # unit tests for delete_application
108
+ # Delete an existing Application
109
+ # Deletes a Application object
110
+ # @param id ID of the resource
99
111
  # @param [Hash] opts the optional parameters
100
- # @return [SourceType]
101
- describe 'create_source_type test' do
112
+ # @return [nil]
113
+ describe 'delete_application test' do
102
114
  it 'should work' do
103
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
116
  end
105
117
  end
106
118
 
107
- # unit tests for delete_application
108
- # Delete an existing Application
109
- # Deletes a Application object
119
+ # unit tests for delete_application_authentication
120
+ # Delete an existing ApplicationAuthentication
121
+ # Deletes a ApplicationAuthentication object
110
122
  # @param id ID of the resource
111
123
  # @param [Hash] opts the optional parameters
112
124
  # @return [nil]
113
- describe 'delete_application test' do
125
+ describe 'delete_application_authentication test' do
114
126
  it 'should work' do
115
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
128
  end
@@ -162,6 +174,37 @@ describe 'DefaultApi' do
162
174
  end
163
175
  end
164
176
 
177
+ # unit tests for list_all_application_authentications
178
+ # List ApplicationAuthentications
179
+ # Returns an array of ApplicationAuthentication objects
180
+ # @param [Hash] opts the optional parameters
181
+ # @option opts [Integer] :limit The numbers of items to return per page.
182
+ # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
183
+ # @option opts [Object] :filter Filter for querying collections.
184
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
185
+ # @return [ApplicationAuthenticationsCollection]
186
+ describe 'list_all_application_authentications test' do
187
+ it 'should work' do
188
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
189
+ end
190
+ end
191
+
192
+ # unit tests for list_application_authentications
193
+ # List Authentications for Application
194
+ # Returns an array of Authentication objects
195
+ # @param id ID of the resource
196
+ # @param [Hash] opts the optional parameters
197
+ # @option opts [Integer] :limit The numbers of items to return per page.
198
+ # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
199
+ # @option opts [Object] :filter Filter for querying collections.
200
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
201
+ # @return [AuthenticationsCollection]
202
+ describe 'list_application_authentications test' do
203
+ it 'should work' do
204
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
205
+ end
206
+ end
207
+
165
208
  # unit tests for list_application_type_sources
166
209
  # List Sources for ApplicationType
167
210
  # Returns an array of Source objects
@@ -170,7 +213,7 @@ describe 'DefaultApi' do
170
213
  # @option opts [Integer] :limit The numbers of items to return per page.
171
214
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
172
215
  # @option opts [Object] :filter Filter for querying collections.
173
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
216
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
174
217
  # @return [SourcesCollection]
175
218
  describe 'list_application_type_sources test' do
176
219
  it 'should work' do
@@ -185,7 +228,7 @@ describe 'DefaultApi' do
185
228
  # @option opts [Integer] :limit The numbers of items to return per page.
186
229
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
187
230
  # @option opts [Object] :filter Filter for querying collections.
188
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
231
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
189
232
  # @return [ApplicationTypesCollection]
190
233
  describe 'list_application_types test' do
191
234
  it 'should work' do
@@ -200,7 +243,7 @@ describe 'DefaultApi' do
200
243
  # @option opts [Integer] :limit The numbers of items to return per page.
201
244
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
202
245
  # @option opts [Object] :filter Filter for querying collections.
203
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
246
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
204
247
  # @return [ApplicationsCollection]
205
248
  describe 'list_applications test' do
206
249
  it 'should work' do
@@ -215,7 +258,7 @@ describe 'DefaultApi' do
215
258
  # @option opts [Integer] :limit The numbers of items to return per page.
216
259
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
217
260
  # @option opts [Object] :filter Filter for querying collections.
218
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
261
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
219
262
  # @return [AuthenticationsCollection]
220
263
  describe 'list_authentications test' do
221
264
  it 'should work' do
@@ -231,7 +274,7 @@ describe 'DefaultApi' do
231
274
  # @option opts [Integer] :limit The numbers of items to return per page.
232
275
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
233
276
  # @option opts [Object] :filter Filter for querying collections.
234
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
277
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
235
278
  # @return [AuthenticationsCollection]
236
279
  describe 'list_endpoint_authentications test' do
237
280
  it 'should work' do
@@ -246,7 +289,7 @@ describe 'DefaultApi' do
246
289
  # @option opts [Integer] :limit The numbers of items to return per page.
247
290
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
248
291
  # @option opts [Object] :filter Filter for querying collections.
249
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
292
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
250
293
  # @return [EndpointsCollection]
251
294
  describe 'list_endpoints test' do
252
295
  it 'should work' do
@@ -262,7 +305,7 @@ describe 'DefaultApi' do
262
305
  # @option opts [Integer] :limit The numbers of items to return per page.
263
306
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
264
307
  # @option opts [Object] :filter Filter for querying collections.
265
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
308
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
266
309
  # @return [ApplicationTypesCollection]
267
310
  describe 'list_source_application_types test' do
268
311
  it 'should work' do
@@ -278,7 +321,7 @@ describe 'DefaultApi' do
278
321
  # @option opts [Integer] :limit The numbers of items to return per page.
279
322
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
280
323
  # @option opts [Object] :filter Filter for querying collections.
281
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
324
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
282
325
  # @return [ApplicationsCollection]
283
326
  describe 'list_source_applications test' do
284
327
  it 'should work' do
@@ -294,7 +337,7 @@ describe 'DefaultApi' do
294
337
  # @option opts [Integer] :limit The numbers of items to return per page.
295
338
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
296
339
  # @option opts [Object] :filter Filter for querying collections.
297
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
340
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
298
341
  # @return [EndpointsCollection]
299
342
  describe 'list_source_endpoints test' do
300
343
  it 'should work' do
@@ -310,7 +353,7 @@ describe 'DefaultApi' do
310
353
  # @option opts [Integer] :limit The numbers of items to return per page.
311
354
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
312
355
  # @option opts [Object] :filter Filter for querying collections.
313
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
356
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
314
357
  # @return [SourcesCollection]
315
358
  describe 'list_source_type_sources test' do
316
359
  it 'should work' do
@@ -325,7 +368,7 @@ describe 'DefaultApi' do
325
368
  # @option opts [Integer] :limit The numbers of items to return per page.
326
369
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
327
370
  # @option opts [Object] :filter Filter for querying collections.
328
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
371
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
329
372
  # @return [SourceTypesCollection]
330
373
  describe 'list_source_types test' do
331
374
  it 'should work' do
@@ -340,7 +383,7 @@ describe 'DefaultApi' do
340
383
  # @option opts [Integer] :limit The numbers of items to return per page.
341
384
  # @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
342
385
  # @option opts [Object] :filter Filter for querying collections.
343
- # @option opts [OneOfstringarray] :sort_by The list of attribute and order to sort the result set by.
386
+ # @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
344
387
  # @return [SourcesCollection]
345
388
  describe 'list_sources test' do
346
389
  it 'should work' do
@@ -372,6 +415,18 @@ describe 'DefaultApi' do
372
415
  end
373
416
  end
374
417
 
418
+ # unit tests for show_application_authentication
419
+ # Show an existing ApplicationAuthentication
420
+ # Returns a ApplicationAuthentication object
421
+ # @param id ID of the resource
422
+ # @param [Hash] opts the optional parameters
423
+ # @return [ApplicationAuthentication]
424
+ describe 'show_application_authentication test' do
425
+ it 'should work' do
426
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
427
+ end
428
+ end
429
+
375
430
  # unit tests for show_application_type
376
431
  # Show an existing ApplicationType
377
432
  # Returns a ApplicationType object
@@ -445,6 +500,19 @@ describe 'DefaultApi' do
445
500
  end
446
501
  end
447
502
 
503
+ # unit tests for update_application_authentication
504
+ # Update an existing ApplicationAuthentication
505
+ # Updates a ApplicationAuthentication object
506
+ # @param id ID of the resource
507
+ # @param application_authentication ApplicationAuthentication attributes to update
508
+ # @param [Hash] opts the optional parameters
509
+ # @return [nil]
510
+ describe 'update_application_authentication test' do
511
+ it 'should work' do
512
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
513
+ end
514
+ end
515
+
448
516
  # unit tests for update_authentication
449
517
  # Update an existing Authentication
450
518
  # Updates a Authentication object
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -18,7 +18,7 @@ describe SourcesApiClient::Configuration do
18
18
  before(:each) do
19
19
  # uncomment below to setup host and base_path
20
20
  # require 'URI'
21
- # uri = URI.parse("https://cloud.redhat.com//api/sources/v1.0")
21
+ # uri = URI.parse("https://cloud.redhat.com//api/sources/v3.0")
22
22
  # SourcesApiClient.configure do |c|
23
23
  # c.host = uri.host
24
24
  # c.base_path = uri.path
@@ -28,14 +28,14 @@ describe SourcesApiClient::Configuration do
28
28
  describe '#base_url' do
29
29
  it 'should have the default value' do
30
30
  # uncomment below to test default value of the base path
31
- # expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/v1.0")
31
+ # expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/v3.0")
32
32
  end
33
33
 
34
34
  it 'should remove trailing slashes' do
35
35
  [nil, '', '/', '//'].each do |base_path|
36
36
  config.base_path = base_path
37
37
  # uncomment below to test trailing slashes
38
- # expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/v1.0")
38
+ # expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/v3.0")
39
39
  end
40
40
  end
41
41
  end
@@ -0,0 +1,65 @@
1
+ =begin
2
+ #Sources
3
+
4
+ #Sources
5
+
6
+ The version of the OpenAPI document: 3.0.0
7
+ Contact: support@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for SourcesApiClient::ApplicationAuthentication
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'ApplicationAuthentication' do
21
+ before do
22
+ # run before each test
23
+ @instance = SourcesApiClient::ApplicationAuthentication.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ApplicationAuthentication' do
31
+ it 'should create an instance of ApplicationAuthentication' do
32
+ expect(@instance).to be_instance_of(SourcesApiClient::ApplicationAuthentication)
33
+ end
34
+ end
35
+ describe 'test attribute "application_id"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "authentication_id"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "created_at"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "id"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "updated_at"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ end
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Sources
5
5
 
6
- The version of the OpenAPI document: 1.0.0
6
+ The version of the OpenAPI document: 3.0.0
7
7
  Contact: support@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.1
@@ -14,37 +14,37 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for SourcesApiClient::Tenant
17
+ # Unit tests for SourcesApiClient::ApplicationAuthenticationsCollection
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'Tenant' do
20
+ describe 'ApplicationAuthenticationsCollection' do
21
21
  before do
22
22
  # run before each test
23
- @instance = SourcesApiClient::Tenant.new
23
+ @instance = SourcesApiClient::ApplicationAuthenticationsCollection.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of Tenant' do
31
- it 'should create an instance of Tenant' do
32
- expect(@instance).to be_instance_of(SourcesApiClient::Tenant)
30
+ describe 'test an instance of ApplicationAuthenticationsCollection' do
31
+ it 'should create an instance of ApplicationAuthenticationsCollection' do
32
+ expect(@instance).to be_instance_of(SourcesApiClient::ApplicationAuthenticationsCollection)
33
33
  end
34
34
  end
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "meta"' 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 "description"' do
41
+ describe 'test attribute "links"' 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 "external_tenant"' do
47
+ describe 'test attribute "data"' 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