pulp_rpm_client 3.16.2 → 3.17.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 (30) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -12
  3. data/docs/AcsRpmApi.md +417 -0
  4. data/docs/CompsXml.md +21 -0
  5. data/docs/PaginatedrpmRpmAlternateContentSourceResponseList.md +23 -0
  6. data/docs/PatchedrpmRpmAlternateContentSource.md +23 -0
  7. data/docs/RpmCompsApi.md +68 -0
  8. data/docs/RpmRpmAlternateContentSource.md +23 -0
  9. data/docs/RpmRpmAlternateContentSourceResponse.md +27 -0
  10. data/docs/TaskGroupOperationResponse.md +17 -0
  11. data/lib/pulp_rpm_client/api/acs_rpm_api.rb +510 -0
  12. data/lib/pulp_rpm_client/api/rpm_comps_api.rb +93 -0
  13. data/lib/pulp_rpm_client/models/comps_xml.rb +233 -0
  14. data/lib/pulp_rpm_client/models/paginatedrpm_rpm_alternate_content_source_response_list.rb +237 -0
  15. data/lib/pulp_rpm_client/models/patchedrpm_rpm_alternate_content_source.rb +256 -0
  16. data/lib/pulp_rpm_client/models/rpm_rpm_alternate_content_source.rb +270 -0
  17. data/lib/pulp_rpm_client/models/rpm_rpm_alternate_content_source_response.rb +270 -0
  18. data/lib/pulp_rpm_client/models/task_group_operation_response.rb +213 -0
  19. data/lib/pulp_rpm_client/version.rb +1 -1
  20. data/lib/pulp_rpm_client.rb +8 -0
  21. data/pulp_rpm_client.gemspec +1 -1
  22. data/spec/api/acs_rpm_api_spec.rb +132 -0
  23. data/spec/api/rpm_comps_api_spec.rb +49 -0
  24. data/spec/models/comps_xml_spec.rb +53 -0
  25. data/spec/models/paginatedrpm_rpm_alternate_content_source_response_list_spec.rb +59 -0
  26. data/spec/models/patchedrpm_rpm_alternate_content_source_spec.rb +59 -0
  27. data/spec/models/rpm_rpm_alternate_content_source_response_spec.rb +71 -0
  28. data/spec/models/rpm_rpm_alternate_content_source_spec.rb +59 -0
  29. data/spec/models/task_group_operation_response_spec.rb +41 -0
  30. metadata +107 -69
@@ -0,0 +1,49 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for PulpRpmClient::RpmCompsApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'RpmCompsApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = PulpRpmClient::RpmCompsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of RpmCompsApi' do
30
+ it 'should create an instance of RpmCompsApi' do
31
+ expect(@api_instance).to be_instance_of(PulpRpmClient::RpmCompsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for rpm_comps_upload
36
+ # Upload comps.xml
37
+ # Trigger an asynchronous task to upload a comps.xml file.
38
+ # @param file Full path of a comps.xml file that may be parsed into comps.xml Content units.
39
+ # @param [Hash] opts the optional parameters
40
+ # @option opts [String] :repository URI of an RPM repository the comps.xml content units should be associated to.
41
+ # @option opts [Boolean] :replace If true, incoming comps.xml replaces existing comps-related ContentUnits in the specified repository.
42
+ # @return [AsyncOperationResponse]
43
+ describe 'rpm_comps_upload test' do
44
+ it 'should work' do
45
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
46
+ end
47
+ end
48
+
49
+ end
@@ -0,0 +1,53 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::CompsXml
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'CompsXml' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::CompsXml.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of CompsXml' do
31
+ it 'should create an instance of CompsXml' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::CompsXml)
33
+ end
34
+ end
35
+ describe 'test attribute "file"' 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 "repository"' 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 "replace"' 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
+ end
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::PaginatedrpmRpmAlternateContentSourceResponseList
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PaginatedrpmRpmAlternateContentSourceResponseList' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::PaginatedrpmRpmAlternateContentSourceResponseList.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PaginatedrpmRpmAlternateContentSourceResponseList' do
31
+ it 'should create an instance of PaginatedrpmRpmAlternateContentSourceResponseList' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::PaginatedrpmRpmAlternateContentSourceResponseList)
33
+ end
34
+ end
35
+ describe 'test attribute "count"' 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 "_next"' 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 "previous"' 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 "results"' 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
+ end
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::PatchedrpmRpmAlternateContentSource
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PatchedrpmRpmAlternateContentSource' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::PatchedrpmRpmAlternateContentSource.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PatchedrpmRpmAlternateContentSource' do
31
+ it 'should create an instance of PatchedrpmRpmAlternateContentSource' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::PatchedrpmRpmAlternateContentSource)
33
+ end
34
+ end
35
+ describe 'test attribute "name"' 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 "last_refreshed"' 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 "paths"' 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 "remote"' 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
+ end
@@ -0,0 +1,71 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::RpmRpmAlternateContentSourceResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RpmRpmAlternateContentSourceResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::RpmRpmAlternateContentSourceResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RpmRpmAlternateContentSourceResponse' do
31
+ it 'should create an instance of RpmRpmAlternateContentSourceResponse' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::RpmRpmAlternateContentSourceResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "name"' 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 "last_refreshed"' 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 "paths"' 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
+ describe 'test attribute "remote"' 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
+
71
+ end
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::RpmRpmAlternateContentSource
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RpmRpmAlternateContentSource' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::RpmRpmAlternateContentSource.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RpmRpmAlternateContentSource' do
31
+ it 'should create an instance of RpmRpmAlternateContentSource' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::RpmRpmAlternateContentSource)
33
+ end
34
+ end
35
+ describe 'test attribute "name"' 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 "last_refreshed"' 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 "paths"' 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 "remote"' 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
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::TaskGroupOperationResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TaskGroupOperationResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::TaskGroupOperationResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TaskGroupOperationResponse' do
31
+ it 'should create an instance of TaskGroupOperationResponse' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::TaskGroupOperationResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "task_group"' 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
+ end