pulpcore_client 3.4.0.dev01590267840 → 3.4.1
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.
- checksums.yaml +4 -4
- data/README.md +15 -9
- data/docs/{Artifact.md → ArtifactRead.md} +2 -2
- data/docs/ArtifactsApi.md +4 -4
- data/docs/ExportersCoreExportsApi.md +2 -2
- data/docs/ExportersPulpApi.md +8 -8
- data/docs/{Import.md → ImportRead.md} +2 -2
- data/docs/ImportersCoreImportsApi.md +2 -2
- data/docs/ImportersPulpApi.md +8 -8
- data/docs/InlineResponse200.md +1 -1
- data/docs/InlineResponse2001.md +1 -1
- data/docs/InlineResponse2002.md +1 -1
- data/docs/InlineResponse2003.md +1 -1
- data/docs/InlineResponse2004.md +1 -1
- data/docs/InlineResponse2005.md +1 -1
- data/docs/InlineResponse2006.md +1 -1
- data/docs/InlineResponse2007.md +1 -1
- data/docs/InlineResponse2008.md +1 -1
- data/docs/InlineResponse2009.md +1 -1
- data/docs/PulpExport.md +10 -4
- data/docs/PulpExportRead.md +27 -0
- data/docs/PulpExporterRead.md +27 -0
- data/docs/PulpImporterRead.md +23 -0
- data/docs/{SigningService.md → SigningServiceRead.md} +2 -2
- data/docs/SigningServicesApi.md +2 -2
- data/docs/{TaskGroup.md → TaskGroupRead.md} +2 -2
- data/docs/TaskGroupsApi.md +2 -2
- data/docs/TaskRead.md +43 -0
- data/docs/TasksApi.md +2 -2
- data/docs/{UploadDetail.md → UploadDetailRead.md} +2 -2
- data/docs/UploadRead.md +23 -0
- data/docs/UploadsApi.md +4 -4
- data/docs/Worker.md +3 -3
- data/docs/WorkerRead.md +23 -0
- data/docs/WorkersApi.md +2 -2
- data/lib/pulpcore_client.rb +11 -5
- data/lib/pulpcore_client/api/artifacts_api.rb +6 -6
- data/lib/pulpcore_client/api/exporters_core_exports_api.rb +3 -3
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +12 -12
- data/lib/pulpcore_client/api/importers_core_imports_api.rb +3 -3
- data/lib/pulpcore_client/api/importers_pulp_api.rb +12 -12
- data/lib/pulpcore_client/api/signing_services_api.rb +3 -3
- data/lib/pulpcore_client/api/task_groups_api.rb +3 -3
- data/lib/pulpcore_client/api/tasks_api.rb +3 -3
- data/lib/pulpcore_client/api/uploads_api.rb +6 -6
- data/lib/pulpcore_client/api/workers_api.rb +3 -3
- data/lib/pulpcore_client/models/{artifact.rb → artifact_read.rb} +3 -3
- data/lib/pulpcore_client/models/{import.rb → import_read.rb} +3 -3
- data/lib/pulpcore_client/models/inline_response200.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2001.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2002.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2003.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2004.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2005.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2006.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2007.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2008.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2009.rb +1 -1
- data/lib/pulpcore_client/models/pulp_export.rb +59 -38
- data/lib/pulpcore_client/models/pulp_export_read.rb +259 -0
- data/lib/pulpcore_client/models/pulp_exporter_read.rb +311 -0
- data/lib/pulpcore_client/models/pulp_importer_read.rb +262 -0
- data/lib/pulpcore_client/models/{signing_service.rb → signing_service_read.rb} +3 -3
- data/lib/pulpcore_client/models/{task_group.rb → task_group_read.rb} +3 -3
- data/lib/pulpcore_client/models/task_read.rb +383 -0
- data/lib/pulpcore_client/models/{upload_detail.rb → upload_detail_read.rb} +3 -3
- data/lib/pulpcore_client/models/upload_read.rb +241 -0
- data/lib/pulpcore_client/models/worker.rb +10 -10
- data/lib/pulpcore_client/models/worker_read.rb +251 -0
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/artifacts_api_spec.rb +2 -2
- data/spec/api/exporters_core_exports_api_spec.rb +1 -1
- data/spec/api/exporters_pulp_api_spec.rb +4 -4
- data/spec/api/importers_core_imports_api_spec.rb +1 -1
- data/spec/api/importers_pulp_api_spec.rb +4 -4
- data/spec/api/signing_services_api_spec.rb +1 -1
- data/spec/api/task_groups_api_spec.rb +1 -1
- data/spec/api/tasks_api_spec.rb +1 -1
- data/spec/api/uploads_api_spec.rb +2 -2
- data/spec/api/workers_api_spec.rb +1 -1
- data/spec/models/{artifact_spec.rb → artifact_read_spec.rb} +6 -6
- data/spec/models/{import_spec.rb → import_read_spec.rb} +6 -6
- data/spec/models/pulp_export_read_spec.rb +71 -0
- data/spec/models/pulp_export_spec.rb +20 -2
- data/spec/models/pulp_exporter_read_spec.rb +71 -0
- data/spec/models/pulp_importer_read_spec.rb +59 -0
- data/spec/models/{signing_service_spec.rb → signing_service_read_spec.rb} +6 -6
- data/spec/models/{task_group_spec.rb → task_group_read_spec.rb} +6 -6
- data/spec/models/task_read_spec.rb +119 -0
- data/spec/models/{upload_detail_spec.rb → upload_detail_read_spec.rb} +6 -6
- data/spec/models/upload_read_spec.rb +59 -0
- data/spec/models/worker_read_spec.rb +59 -0
- data/spec/models/worker_spec.rb +2 -2
- metadata +48 -24
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpcoreClient::
|
|
17
|
+
# Unit tests for PulpcoreClient::SigningServiceRead
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'SigningServiceRead' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpcoreClient::
|
|
23
|
+
@instance = PulpcoreClient::SigningServiceRead.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
|
|
31
|
-
it 'should create an instance of
|
|
32
|
-
expect(@instance).to be_instance_of(PulpcoreClient::
|
|
30
|
+
describe 'test an instance of SigningServiceRead' do
|
|
31
|
+
it 'should create an instance of SigningServiceRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::SigningServiceRead)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "pulp_href"' do
|
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpcoreClient::
|
|
17
|
+
# Unit tests for PulpcoreClient::TaskGroupRead
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'TaskGroupRead' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpcoreClient::
|
|
23
|
+
@instance = PulpcoreClient::TaskGroupRead.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
|
|
31
|
-
it 'should create an instance of
|
|
32
|
-
expect(@instance).to be_instance_of(PulpcoreClient::
|
|
30
|
+
describe 'test an instance of TaskGroupRead' do
|
|
31
|
+
it 'should create an instance of TaskGroupRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::TaskGroupRead)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "pulp_href"' do
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpcoreClient::TaskRead
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'TaskRead' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpcoreClient::TaskRead.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of TaskRead' do
|
|
31
|
+
it 'should create an instance of TaskRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::TaskRead)
|
|
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 "state"' 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 "name"' 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 "started_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
|
+
describe 'test attribute "finished_at"' 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
|
+
describe 'test attribute "error"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "worker"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "parent_task"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe 'test attribute "child_tasks"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe 'test attribute "task_group"' do
|
|
96
|
+
it 'should work' do
|
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
describe 'test attribute "progress_reports"' do
|
|
102
|
+
it 'should work' do
|
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
describe 'test attribute "created_resources"' do
|
|
108
|
+
it 'should work' do
|
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
110
|
+
end
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
describe 'test attribute "reserved_resources_record"' do
|
|
114
|
+
it 'should work' do
|
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
end
|
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpcoreClient::
|
|
17
|
+
# Unit tests for PulpcoreClient::UploadDetailRead
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'UploadDetailRead' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpcoreClient::
|
|
23
|
+
@instance = PulpcoreClient::UploadDetailRead.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
|
|
31
|
-
it 'should create an instance of
|
|
32
|
-
expect(@instance).to be_instance_of(PulpcoreClient::
|
|
30
|
+
describe 'test an instance of UploadDetailRead' do
|
|
31
|
+
it 'should create an instance of UploadDetailRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::UploadDetailRead)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "pulp_href"' do
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpcoreClient::UploadRead
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'UploadRead' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpcoreClient::UploadRead.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of UploadRead' do
|
|
31
|
+
it 'should create an instance of UploadRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::UploadRead)
|
|
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 "size"' 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 "completed"' 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
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpcoreClient::WorkerRead
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'WorkerRead' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = PulpcoreClient::WorkerRead.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of WorkerRead' do
|
|
31
|
+
it 'should create an instance of WorkerRead' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::WorkerRead)
|
|
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_heartbeat"' 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
|
data/spec/models/worker_spec.rb
CHANGED
|
@@ -32,13 +32,13 @@ describe 'Worker' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpcoreClient::Worker)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "
|
|
35
|
+
describe 'test attribute "pulp_href"' 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 "
|
|
41
|
+
describe 'test attribute "pulp_created"' 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
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulpcore_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.
|
|
4
|
+
version: 3.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -74,14 +74,14 @@ files:
|
|
|
74
74
|
- Gemfile
|
|
75
75
|
- README.md
|
|
76
76
|
- Rakefile
|
|
77
|
-
- docs/
|
|
77
|
+
- docs/ArtifactRead.md
|
|
78
78
|
- docs/ArtifactsApi.md
|
|
79
79
|
- docs/AsyncOperationResponse.md
|
|
80
80
|
- docs/ContentAppStatus.md
|
|
81
81
|
- docs/DatabaseConnection.md
|
|
82
82
|
- docs/ExportersCoreExportsApi.md
|
|
83
83
|
- docs/ExportersPulpApi.md
|
|
84
|
-
- docs/
|
|
84
|
+
- docs/ImportRead.md
|
|
85
85
|
- docs/ImportersCoreImportsApi.md
|
|
86
86
|
- docs/ImportersPulpApi.md
|
|
87
87
|
- docs/InlineResponse200.md
|
|
@@ -97,27 +97,33 @@ files:
|
|
|
97
97
|
- docs/OrphansApi.md
|
|
98
98
|
- docs/ProgressReport.md
|
|
99
99
|
- docs/PulpExport.md
|
|
100
|
+
- docs/PulpExportRead.md
|
|
100
101
|
- docs/PulpExporter.md
|
|
102
|
+
- docs/PulpExporterRead.md
|
|
101
103
|
- docs/PulpImport.md
|
|
102
104
|
- docs/PulpImporter.md
|
|
105
|
+
- docs/PulpImporterRead.md
|
|
103
106
|
- docs/RedisConnection.md
|
|
104
|
-
- docs/
|
|
107
|
+
- docs/SigningServiceRead.md
|
|
105
108
|
- docs/SigningServicesApi.md
|
|
106
109
|
- docs/Status.md
|
|
107
110
|
- docs/StatusApi.md
|
|
108
111
|
- docs/Storage.md
|
|
109
112
|
- docs/Task.md
|
|
110
113
|
- docs/TaskCancel.md
|
|
111
|
-
- docs/
|
|
114
|
+
- docs/TaskGroupRead.md
|
|
112
115
|
- docs/TaskGroupsApi.md
|
|
116
|
+
- docs/TaskRead.md
|
|
113
117
|
- docs/TasksApi.md
|
|
114
118
|
- docs/Upload.md
|
|
115
119
|
- docs/UploadChunk.md
|
|
116
120
|
- docs/UploadCommit.md
|
|
117
|
-
- docs/
|
|
121
|
+
- docs/UploadDetailRead.md
|
|
122
|
+
- docs/UploadRead.md
|
|
118
123
|
- docs/UploadsApi.md
|
|
119
124
|
- docs/Version.md
|
|
120
125
|
- docs/Worker.md
|
|
126
|
+
- docs/WorkerRead.md
|
|
121
127
|
- docs/WorkersApi.md
|
|
122
128
|
- git_push.sh
|
|
123
129
|
- lib/pulpcore_client.rb
|
|
@@ -136,11 +142,11 @@ files:
|
|
|
136
142
|
- lib/pulpcore_client/api_client.rb
|
|
137
143
|
- lib/pulpcore_client/api_error.rb
|
|
138
144
|
- lib/pulpcore_client/configuration.rb
|
|
139
|
-
- lib/pulpcore_client/models/
|
|
145
|
+
- lib/pulpcore_client/models/artifact_read.rb
|
|
140
146
|
- lib/pulpcore_client/models/async_operation_response.rb
|
|
141
147
|
- lib/pulpcore_client/models/content_app_status.rb
|
|
142
148
|
- lib/pulpcore_client/models/database_connection.rb
|
|
143
|
-
- lib/pulpcore_client/models/
|
|
149
|
+
- lib/pulpcore_client/models/import_read.rb
|
|
144
150
|
- lib/pulpcore_client/models/inline_response200.rb
|
|
145
151
|
- lib/pulpcore_client/models/inline_response2001.rb
|
|
146
152
|
- lib/pulpcore_client/models/inline_response2002.rb
|
|
@@ -153,22 +159,28 @@ files:
|
|
|
153
159
|
- lib/pulpcore_client/models/inline_response2009.rb
|
|
154
160
|
- lib/pulpcore_client/models/progress_report.rb
|
|
155
161
|
- lib/pulpcore_client/models/pulp_export.rb
|
|
162
|
+
- lib/pulpcore_client/models/pulp_export_read.rb
|
|
156
163
|
- lib/pulpcore_client/models/pulp_exporter.rb
|
|
164
|
+
- lib/pulpcore_client/models/pulp_exporter_read.rb
|
|
157
165
|
- lib/pulpcore_client/models/pulp_import.rb
|
|
158
166
|
- lib/pulpcore_client/models/pulp_importer.rb
|
|
167
|
+
- lib/pulpcore_client/models/pulp_importer_read.rb
|
|
159
168
|
- lib/pulpcore_client/models/redis_connection.rb
|
|
160
|
-
- lib/pulpcore_client/models/
|
|
169
|
+
- lib/pulpcore_client/models/signing_service_read.rb
|
|
161
170
|
- lib/pulpcore_client/models/status.rb
|
|
162
171
|
- lib/pulpcore_client/models/storage.rb
|
|
163
172
|
- lib/pulpcore_client/models/task.rb
|
|
164
173
|
- lib/pulpcore_client/models/task_cancel.rb
|
|
165
|
-
- lib/pulpcore_client/models/
|
|
174
|
+
- lib/pulpcore_client/models/task_group_read.rb
|
|
175
|
+
- lib/pulpcore_client/models/task_read.rb
|
|
166
176
|
- lib/pulpcore_client/models/upload.rb
|
|
167
177
|
- lib/pulpcore_client/models/upload_chunk.rb
|
|
168
178
|
- lib/pulpcore_client/models/upload_commit.rb
|
|
169
|
-
- lib/pulpcore_client/models/
|
|
179
|
+
- lib/pulpcore_client/models/upload_detail_read.rb
|
|
180
|
+
- lib/pulpcore_client/models/upload_read.rb
|
|
170
181
|
- lib/pulpcore_client/models/version.rb
|
|
171
182
|
- lib/pulpcore_client/models/worker.rb
|
|
183
|
+
- lib/pulpcore_client/models/worker_read.rb
|
|
172
184
|
- lib/pulpcore_client/version.rb
|
|
173
185
|
- pulpcore_client.gemspec
|
|
174
186
|
- spec/api/artifacts_api_spec.rb
|
|
@@ -185,11 +197,11 @@ files:
|
|
|
185
197
|
- spec/api/workers_api_spec.rb
|
|
186
198
|
- spec/api_client_spec.rb
|
|
187
199
|
- spec/configuration_spec.rb
|
|
188
|
-
- spec/models/
|
|
200
|
+
- spec/models/artifact_read_spec.rb
|
|
189
201
|
- spec/models/async_operation_response_spec.rb
|
|
190
202
|
- spec/models/content_app_status_spec.rb
|
|
191
203
|
- spec/models/database_connection_spec.rb
|
|
192
|
-
- spec/models/
|
|
204
|
+
- spec/models/import_read_spec.rb
|
|
193
205
|
- spec/models/inline_response2001_spec.rb
|
|
194
206
|
- spec/models/inline_response2002_spec.rb
|
|
195
207
|
- spec/models/inline_response2003_spec.rb
|
|
@@ -201,22 +213,28 @@ files:
|
|
|
201
213
|
- spec/models/inline_response2009_spec.rb
|
|
202
214
|
- spec/models/inline_response200_spec.rb
|
|
203
215
|
- spec/models/progress_report_spec.rb
|
|
216
|
+
- spec/models/pulp_export_read_spec.rb
|
|
204
217
|
- spec/models/pulp_export_spec.rb
|
|
218
|
+
- spec/models/pulp_exporter_read_spec.rb
|
|
205
219
|
- spec/models/pulp_exporter_spec.rb
|
|
206
220
|
- spec/models/pulp_import_spec.rb
|
|
221
|
+
- spec/models/pulp_importer_read_spec.rb
|
|
207
222
|
- spec/models/pulp_importer_spec.rb
|
|
208
223
|
- spec/models/redis_connection_spec.rb
|
|
209
|
-
- spec/models/
|
|
224
|
+
- spec/models/signing_service_read_spec.rb
|
|
210
225
|
- spec/models/status_spec.rb
|
|
211
226
|
- spec/models/storage_spec.rb
|
|
212
227
|
- spec/models/task_cancel_spec.rb
|
|
213
|
-
- spec/models/
|
|
228
|
+
- spec/models/task_group_read_spec.rb
|
|
229
|
+
- spec/models/task_read_spec.rb
|
|
214
230
|
- spec/models/task_spec.rb
|
|
215
231
|
- spec/models/upload_chunk_spec.rb
|
|
216
232
|
- spec/models/upload_commit_spec.rb
|
|
217
|
-
- spec/models/
|
|
233
|
+
- spec/models/upload_detail_read_spec.rb
|
|
234
|
+
- spec/models/upload_read_spec.rb
|
|
218
235
|
- spec/models/upload_spec.rb
|
|
219
236
|
- spec/models/version_spec.rb
|
|
237
|
+
- spec/models/worker_read_spec.rb
|
|
220
238
|
- spec/models/worker_spec.rb
|
|
221
239
|
- spec/spec_helper.rb
|
|
222
240
|
homepage: https://openapi-generator.tech
|
|
@@ -234,9 +252,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
234
252
|
version: '1.9'
|
|
235
253
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
236
254
|
requirements:
|
|
237
|
-
- - "
|
|
255
|
+
- - ">="
|
|
238
256
|
- !ruby/object:Gem::Version
|
|
239
|
-
version:
|
|
257
|
+
version: '0'
|
|
240
258
|
requirements: []
|
|
241
259
|
rubygems_version: 3.0.6
|
|
242
260
|
signing_key:
|
|
@@ -257,36 +275,42 @@ test_files:
|
|
|
257
275
|
- spec/api/status_api_spec.rb
|
|
258
276
|
- spec/api_client_spec.rb
|
|
259
277
|
- spec/configuration_spec.rb
|
|
278
|
+
- spec/models/upload_read_spec.rb
|
|
260
279
|
- spec/models/pulp_export_spec.rb
|
|
261
280
|
- spec/models/async_operation_response_spec.rb
|
|
281
|
+
- spec/models/task_group_read_spec.rb
|
|
262
282
|
- spec/models/inline_response2003_spec.rb
|
|
263
283
|
- spec/models/storage_spec.rb
|
|
284
|
+
- spec/models/pulp_export_read_spec.rb
|
|
264
285
|
- spec/models/pulp_import_spec.rb
|
|
265
286
|
- spec/models/pulp_exporter_spec.rb
|
|
266
|
-
- spec/models/import_spec.rb
|
|
267
287
|
- spec/models/task_cancel_spec.rb
|
|
288
|
+
- spec/models/worker_read_spec.rb
|
|
289
|
+
- spec/models/pulp_exporter_read_spec.rb
|
|
268
290
|
- spec/models/inline_response2007_spec.rb
|
|
269
291
|
- spec/models/worker_spec.rb
|
|
270
292
|
- spec/models/version_spec.rb
|
|
271
|
-
- spec/models/artifact_spec.rb
|
|
272
293
|
- spec/models/inline_response2004_spec.rb
|
|
273
294
|
- spec/models/inline_response2005_spec.rb
|
|
274
295
|
- spec/models/inline_response2001_spec.rb
|
|
275
|
-
- spec/models/
|
|
276
|
-
- spec/models/
|
|
277
|
-
- spec/models/upload_detail_spec.rb
|
|
296
|
+
- spec/models/pulp_importer_read_spec.rb
|
|
297
|
+
- spec/models/upload_detail_read_spec.rb
|
|
278
298
|
- spec/models/upload_commit_spec.rb
|
|
299
|
+
- spec/models/artifact_read_spec.rb
|
|
279
300
|
- spec/models/inline_response200_spec.rb
|
|
280
301
|
- spec/models/status_spec.rb
|
|
281
302
|
- spec/models/database_connection_spec.rb
|
|
303
|
+
- spec/models/task_read_spec.rb
|
|
282
304
|
- spec/models/progress_report_spec.rb
|
|
283
305
|
- spec/models/inline_response2009_spec.rb
|
|
284
306
|
- spec/models/upload_chunk_spec.rb
|
|
285
307
|
- spec/models/inline_response2002_spec.rb
|
|
286
308
|
- spec/models/upload_spec.rb
|
|
287
309
|
- spec/models/redis_connection_spec.rb
|
|
310
|
+
- spec/models/import_read_spec.rb
|
|
288
311
|
- spec/models/task_spec.rb
|
|
289
312
|
- spec/models/inline_response2006_spec.rb
|
|
313
|
+
- spec/models/signing_service_read_spec.rb
|
|
290
314
|
- spec/models/inline_response2008_spec.rb
|
|
291
315
|
- spec/models/pulp_importer_spec.rb
|
|
292
316
|
- spec/models/content_app_status_spec.rb
|