pulp_maven_client 0.1.0b31570393016 → 0.1.0b31574196301
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 +22 -8
- data/docs/ContentArtifactApi.md +6 -6
- data/docs/ContentSummary.md +21 -0
- data/docs/DistributionsMavenApi.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 +23 -0
- data/docs/InlineResponse2004.md +23 -0
- data/docs/{MavenArtifact.md → MavenMavenArtifact.md} +9 -13
- data/docs/{MavenDistribution.md → MavenMavenDistribution.md} +6 -6
- data/docs/MavenMavenRemote.md +39 -0
- data/docs/MavenMavenRepository.md +27 -0
- data/docs/RemotesMavenApi.md +22 -22
- data/docs/RepositoriesMavenApi.md +354 -0
- data/docs/RepositoriesMavenVersionsApi.md +214 -0
- data/docs/RepositoryVersion.md +25 -0
- data/lib/pulp_maven_client.rb +11 -4
- data/lib/pulp_maven_client/api/content_artifact_api.rb +9 -9
- data/lib/pulp_maven_client/api/distributions_maven_api.rb +10 -10
- data/lib/pulp_maven_client/api/remotes_maven_api.rb +31 -31
- data/lib/pulp_maven_client/api/repositories_maven_api.rb +430 -0
- data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +268 -0
- data/lib/pulp_maven_client/api_client.rb +1 -1
- data/lib/pulp_maven_client/api_error.rb +1 -1
- data/lib/pulp_maven_client/configuration.rb +1 -1
- data/lib/pulp_maven_client/models/async_operation_response.rb +12 -2
- data/lib/pulp_maven_client/models/content_summary.rb +246 -0
- data/lib/pulp_maven_client/models/inline_response200.rb +15 -3
- data/lib/pulp_maven_client/models/inline_response2001.rb +15 -3
- data/lib/pulp_maven_client/models/inline_response2002.rb +15 -3
- data/lib/pulp_maven_client/models/inline_response2003.rb +247 -0
- data/lib/pulp_maven_client/models/inline_response2004.rb +247 -0
- data/lib/pulp_maven_client/models/{maven_artifact.rb → maven_maven_artifact.rb} +28 -76
- data/lib/pulp_maven_client/models/{maven_distribution.rb → maven_maven_distribution.rb} +30 -36
- data/lib/pulp_maven_client/models/{maven_remote.rb → maven_maven_remote.rb} +87 -147
- data/lib/pulp_maven_client/models/maven_maven_repository.rb +294 -0
- data/lib/pulp_maven_client/models/repository_version.rb +244 -0
- data/lib/pulp_maven_client/version.rb +2 -2
- data/pulp_maven_client.gemspec +1 -1
- data/spec/api/content_artifact_api_spec.rb +3 -3
- data/spec/api/distributions_maven_api_spec.rb +2 -2
- data/spec/api/remotes_maven_api_spec.rb +9 -9
- data/spec/api/repositories_maven_api_spec.rb +116 -0
- data/spec/api/repositories_maven_versions_api_spec.rb +91 -0
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/async_operation_response_spec.rb +1 -1
- data/spec/models/content_summary_spec.rb +53 -0
- data/spec/models/inline_response2001_spec.rb +1 -1
- data/spec/models/inline_response2002_spec.rb +1 -1
- data/spec/models/inline_response2003_spec.rb +59 -0
- data/spec/models/inline_response2004_spec.rb +59 -0
- data/spec/models/inline_response200_spec.rb +1 -1
- data/spec/models/{maven_artifact_spec.rb → maven_maven_artifact_spec.rb} +9 -21
- data/spec/models/{maven_distribution_spec.rb → maven_maven_distribution_spec.rb} +9 -9
- data/spec/models/{maven_remote_spec.rb → maven_maven_remote_spec.rb} +14 -32
- data/spec/models/maven_maven_repository_spec.rb +71 -0
- data/spec/models/repository_version_spec.rb +65 -0
- data/spec/spec_helper.rb +1 -1
- metadata +42 -14
- data/docs/MavenRemote.md +0 -45
@@ -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.2-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpMavenClient::InlineResponse2004
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse2004' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpMavenClient::InlineResponse2004.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse2004' do
|
31
|
+
it 'should create an instance of InlineResponse2004' do
|
32
|
+
expect(@instance).to be_instance_of(PulpMavenClient::InlineResponse2004)
|
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
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.2.
|
9
|
+
OpenAPI Generator version: 4.2.2-SNAPSHOT
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -14,37 +14,31 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpMavenClient::
|
17
|
+
# Unit tests for PulpMavenClient::MavenMavenArtifact
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'MavenMavenArtifact' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpMavenClient::
|
23
|
+
@instance = PulpMavenClient::MavenMavenArtifact.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(PulpMavenClient::
|
30
|
+
describe 'test an instance of MavenMavenArtifact' do
|
31
|
+
it 'should create an instance of MavenMavenArtifact' do
|
32
|
+
expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenArtifact)
|
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 "
|
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 "_type"' do
|
41
|
+
describe 'test attribute "pulp_created"' do
|
48
42
|
it 'should work' do
|
49
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
44
|
end
|
@@ -56,12 +50,6 @@ describe 'MavenArtifact' do
|
|
56
50
|
end
|
57
51
|
end
|
58
52
|
|
59
|
-
describe 'test attribute "relative_path"' 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
53
|
describe 'test attribute "group_id"' do
|
66
54
|
it 'should work' do
|
67
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.2.
|
9
|
+
OpenAPI Generator version: 4.2.2-SNAPSHOT
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -14,31 +14,31 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpMavenClient::
|
17
|
+
# Unit tests for PulpMavenClient::MavenMavenDistribution
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'MavenMavenDistribution' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpMavenClient::
|
23
|
+
@instance = PulpMavenClient::MavenMavenDistribution.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(PulpMavenClient::
|
30
|
+
describe 'test an instance of MavenMavenDistribution' do
|
31
|
+
it 'should create an instance of MavenMavenDistribution' do
|
32
|
+
expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenDistribution)
|
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
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.2.
|
9
|
+
OpenAPI Generator version: 4.2.2-SNAPSHOT
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -14,37 +14,31 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpMavenClient::
|
17
|
+
# Unit tests for PulpMavenClient::MavenMavenRemote
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'MavenMavenRemote' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpMavenClient::
|
23
|
+
@instance = PulpMavenClient::MavenMavenRemote.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(PulpMavenClient::
|
30
|
+
describe 'test an instance of MavenMavenRemote' do
|
31
|
+
it 'should create an instance of MavenMavenRemote' do
|
32
|
+
expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenRemote)
|
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 "
|
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 "_type"' do
|
41
|
+
describe 'test attribute "pulp_created"' do
|
48
42
|
it 'should work' do
|
49
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
44
|
end
|
@@ -62,25 +56,25 @@ describe 'MavenRemote' do
|
|
62
56
|
end
|
63
57
|
end
|
64
58
|
|
65
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "ca_cert"' do
|
66
60
|
it 'should work' do
|
67
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
62
|
end
|
69
63
|
end
|
70
64
|
|
71
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "client_cert"' do
|
72
66
|
it 'should work' do
|
73
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
68
|
end
|
75
69
|
end
|
76
70
|
|
77
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "client_key"' do
|
78
72
|
it 'should work' do
|
79
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
74
|
end
|
81
75
|
end
|
82
76
|
|
83
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "tls_validation"' do
|
84
78
|
it 'should work' do
|
85
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
80
|
end
|
@@ -92,19 +86,7 @@ describe 'MavenRemote' do
|
|
92
86
|
end
|
93
87
|
end
|
94
88
|
|
95
|
-
describe 'test attribute "
|
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 "password"' 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 "_last_updated"' do
|
89
|
+
describe 'test attribute "pulp_last_updated"' do
|
108
90
|
it 'should work' do
|
109
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
92
|
end
|
@@ -0,0 +1,71 @@
|
|
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.2-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpMavenClient::MavenMavenRepository
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'MavenMavenRepository' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpMavenClient::MavenMavenRepository.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of MavenMavenRepository' do
|
31
|
+
it 'should create an instance of MavenMavenRepository' do
|
32
|
+
expect(@instance).to be_instance_of(PulpMavenClient::MavenMavenRepository)
|
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 "versions_href"' 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 "latest_version_href"' 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 "name"' 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 "description"' 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,65 @@
|
|
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.2-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpMavenClient::RepositoryVersion
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'RepositoryVersion' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpMavenClient::RepositoryVersion.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of RepositoryVersion' do
|
31
|
+
it 'should create an instance of RepositoryVersion' do
|
32
|
+
expect(@instance).to be_instance_of(PulpMavenClient::RepositoryVersion)
|
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 "number"' 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 "base_version"' 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 "content_summary"' 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
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_maven_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.0b31574196301
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -76,43 +76,64 @@ files:
|
|
76
76
|
- Rakefile
|
77
77
|
- docs/AsyncOperationResponse.md
|
78
78
|
- docs/ContentArtifactApi.md
|
79
|
+
- docs/ContentSummary.md
|
79
80
|
- docs/DistributionsMavenApi.md
|
80
81
|
- docs/InlineResponse200.md
|
81
82
|
- docs/InlineResponse2001.md
|
82
83
|
- docs/InlineResponse2002.md
|
83
|
-
- docs/
|
84
|
-
- docs/
|
85
|
-
- docs/
|
84
|
+
- docs/InlineResponse2003.md
|
85
|
+
- docs/InlineResponse2004.md
|
86
|
+
- docs/MavenMavenArtifact.md
|
87
|
+
- docs/MavenMavenDistribution.md
|
88
|
+
- docs/MavenMavenRemote.md
|
89
|
+
- docs/MavenMavenRepository.md
|
86
90
|
- docs/RemotesMavenApi.md
|
91
|
+
- docs/RepositoriesMavenApi.md
|
92
|
+
- docs/RepositoriesMavenVersionsApi.md
|
93
|
+
- docs/RepositoryVersion.md
|
87
94
|
- git_push.sh
|
88
95
|
- lib/pulp_maven_client.rb
|
89
96
|
- lib/pulp_maven_client/api/content_artifact_api.rb
|
90
97
|
- lib/pulp_maven_client/api/distributions_maven_api.rb
|
91
98
|
- lib/pulp_maven_client/api/remotes_maven_api.rb
|
99
|
+
- lib/pulp_maven_client/api/repositories_maven_api.rb
|
100
|
+
- lib/pulp_maven_client/api/repositories_maven_versions_api.rb
|
92
101
|
- lib/pulp_maven_client/api_client.rb
|
93
102
|
- lib/pulp_maven_client/api_error.rb
|
94
103
|
- lib/pulp_maven_client/configuration.rb
|
95
104
|
- lib/pulp_maven_client/models/async_operation_response.rb
|
105
|
+
- lib/pulp_maven_client/models/content_summary.rb
|
96
106
|
- lib/pulp_maven_client/models/inline_response200.rb
|
97
107
|
- lib/pulp_maven_client/models/inline_response2001.rb
|
98
108
|
- lib/pulp_maven_client/models/inline_response2002.rb
|
99
|
-
- lib/pulp_maven_client/models/
|
100
|
-
- lib/pulp_maven_client/models/
|
101
|
-
- lib/pulp_maven_client/models/
|
109
|
+
- lib/pulp_maven_client/models/inline_response2003.rb
|
110
|
+
- lib/pulp_maven_client/models/inline_response2004.rb
|
111
|
+
- lib/pulp_maven_client/models/maven_maven_artifact.rb
|
112
|
+
- lib/pulp_maven_client/models/maven_maven_distribution.rb
|
113
|
+
- lib/pulp_maven_client/models/maven_maven_remote.rb
|
114
|
+
- lib/pulp_maven_client/models/maven_maven_repository.rb
|
115
|
+
- lib/pulp_maven_client/models/repository_version.rb
|
102
116
|
- lib/pulp_maven_client/version.rb
|
103
117
|
- pulp_maven_client.gemspec
|
104
118
|
- spec/api/content_artifact_api_spec.rb
|
105
119
|
- spec/api/distributions_maven_api_spec.rb
|
106
120
|
- spec/api/remotes_maven_api_spec.rb
|
121
|
+
- spec/api/repositories_maven_api_spec.rb
|
122
|
+
- spec/api/repositories_maven_versions_api_spec.rb
|
107
123
|
- spec/api_client_spec.rb
|
108
124
|
- spec/configuration_spec.rb
|
109
125
|
- spec/models/async_operation_response_spec.rb
|
126
|
+
- spec/models/content_summary_spec.rb
|
110
127
|
- spec/models/inline_response2001_spec.rb
|
111
128
|
- spec/models/inline_response2002_spec.rb
|
129
|
+
- spec/models/inline_response2003_spec.rb
|
130
|
+
- spec/models/inline_response2004_spec.rb
|
112
131
|
- spec/models/inline_response200_spec.rb
|
113
|
-
- spec/models/
|
114
|
-
- spec/models/
|
115
|
-
- spec/models/
|
132
|
+
- spec/models/maven_maven_artifact_spec.rb
|
133
|
+
- spec/models/maven_maven_distribution_spec.rb
|
134
|
+
- spec/models/maven_maven_remote_spec.rb
|
135
|
+
- spec/models/maven_maven_repository_spec.rb
|
136
|
+
- spec/models/repository_version_spec.rb
|
116
137
|
- spec/spec_helper.rb
|
117
138
|
homepage: https://openapi-generator.tech
|
118
139
|
licenses:
|
@@ -140,15 +161,22 @@ specification_version: 4
|
|
140
161
|
summary: Pulp 3 API Ruby Gem
|
141
162
|
test_files:
|
142
163
|
- spec/api/distributions_maven_api_spec.rb
|
164
|
+
- spec/api/repositories_maven_versions_api_spec.rb
|
143
165
|
- spec/api/remotes_maven_api_spec.rb
|
144
166
|
- spec/api/content_artifact_api_spec.rb
|
167
|
+
- spec/api/repositories_maven_api_spec.rb
|
145
168
|
- spec/api_client_spec.rb
|
146
169
|
- spec/configuration_spec.rb
|
147
|
-
- spec/models/
|
170
|
+
- spec/models/maven_maven_repository_spec.rb
|
171
|
+
- spec/models/inline_response2003_spec.rb
|
172
|
+
- spec/models/maven_maven_distribution_spec.rb
|
173
|
+
- spec/models/repository_version_spec.rb
|
148
174
|
- spec/models/inline_response2001_spec.rb
|
149
175
|
- spec/models/inline_response2002_spec.rb
|
176
|
+
- spec/models/inline_response2004_spec.rb
|
150
177
|
- spec/models/async_operation_response_spec.rb
|
151
|
-
- spec/models/
|
152
|
-
- spec/models/
|
178
|
+
- spec/models/content_summary_spec.rb
|
179
|
+
- spec/models/maven_maven_artifact_spec.rb
|
180
|
+
- spec/models/maven_maven_remote_spec.rb
|
153
181
|
- spec/models/inline_response200_spec.rb
|
154
182
|
- spec/spec_helper.rb
|