pulp_maven_client 0.1.0b31570567113 → 0.1.0b31574369188

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 (63) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -8
  3. data/docs/ContentArtifactApi.md +6 -6
  4. data/docs/ContentSummary.md +21 -0
  5. data/docs/DistributionsMavenApi.md +8 -8
  6. data/docs/InlineResponse200.md +1 -1
  7. data/docs/InlineResponse2001.md +1 -1
  8. data/docs/InlineResponse2002.md +1 -1
  9. data/docs/InlineResponse2003.md +23 -0
  10. data/docs/InlineResponse2004.md +23 -0
  11. data/docs/{MavenArtifact.md → MavenMavenArtifact.md} +9 -13
  12. data/docs/{MavenDistribution.md → MavenMavenDistribution.md} +6 -6
  13. data/docs/MavenMavenRemote.md +39 -0
  14. data/docs/MavenMavenRepository.md +27 -0
  15. data/docs/RemotesMavenApi.md +22 -22
  16. data/docs/RepositoriesMavenApi.md +354 -0
  17. data/docs/RepositoriesMavenVersionsApi.md +214 -0
  18. data/docs/RepositoryVersion.md +25 -0
  19. data/lib/pulp_maven_client.rb +11 -4
  20. data/lib/pulp_maven_client/api/content_artifact_api.rb +9 -9
  21. data/lib/pulp_maven_client/api/distributions_maven_api.rb +10 -10
  22. data/lib/pulp_maven_client/api/remotes_maven_api.rb +31 -31
  23. data/lib/pulp_maven_client/api/repositories_maven_api.rb +430 -0
  24. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +268 -0
  25. data/lib/pulp_maven_client/api_client.rb +1 -1
  26. data/lib/pulp_maven_client/api_error.rb +1 -1
  27. data/lib/pulp_maven_client/configuration.rb +1 -1
  28. data/lib/pulp_maven_client/models/async_operation_response.rb +12 -2
  29. data/lib/pulp_maven_client/models/content_summary.rb +246 -0
  30. data/lib/pulp_maven_client/models/inline_response200.rb +15 -3
  31. data/lib/pulp_maven_client/models/inline_response2001.rb +15 -3
  32. data/lib/pulp_maven_client/models/inline_response2002.rb +15 -3
  33. data/lib/pulp_maven_client/models/inline_response2003.rb +247 -0
  34. data/lib/pulp_maven_client/models/inline_response2004.rb +247 -0
  35. data/lib/pulp_maven_client/models/{maven_artifact.rb → maven_maven_artifact.rb} +28 -76
  36. data/lib/pulp_maven_client/models/{maven_distribution.rb → maven_maven_distribution.rb} +30 -36
  37. data/lib/pulp_maven_client/models/{maven_remote.rb → maven_maven_remote.rb} +87 -147
  38. data/lib/pulp_maven_client/models/maven_maven_repository.rb +294 -0
  39. data/lib/pulp_maven_client/models/repository_version.rb +244 -0
  40. data/lib/pulp_maven_client/version.rb +2 -2
  41. data/pulp_maven_client.gemspec +1 -1
  42. data/spec/api/content_artifact_api_spec.rb +3 -3
  43. data/spec/api/distributions_maven_api_spec.rb +2 -2
  44. data/spec/api/remotes_maven_api_spec.rb +9 -9
  45. data/spec/api/repositories_maven_api_spec.rb +116 -0
  46. data/spec/api/repositories_maven_versions_api_spec.rb +91 -0
  47. data/spec/api_client_spec.rb +1 -1
  48. data/spec/configuration_spec.rb +1 -1
  49. data/spec/models/async_operation_response_spec.rb +1 -1
  50. data/spec/models/content_summary_spec.rb +53 -0
  51. data/spec/models/inline_response2001_spec.rb +1 -1
  52. data/spec/models/inline_response2002_spec.rb +1 -1
  53. data/spec/models/inline_response2003_spec.rb +59 -0
  54. data/spec/models/inline_response2004_spec.rb +59 -0
  55. data/spec/models/inline_response200_spec.rb +1 -1
  56. data/spec/models/{maven_artifact_spec.rb → maven_maven_artifact_spec.rb} +9 -21
  57. data/spec/models/{maven_distribution_spec.rb → maven_maven_distribution_spec.rb} +9 -9
  58. data/spec/models/{maven_remote_spec.rb → maven_maven_remote_spec.rb} +14 -32
  59. data/spec/models/maven_maven_repository_spec.rb +71 -0
  60. data/spec/models/repository_version_spec.rb +65 -0
  61. data/spec/spec_helper.rb +1 -1
  62. metadata +42 -14
  63. 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.0-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -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.0-SNAPSHOT
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::MavenArtifact
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 'MavenArtifact' do
20
+ describe 'MavenMavenArtifact' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpMavenClient::MavenArtifact.new
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 MavenArtifact' do
31
- it 'should create an instance of MavenArtifact' do
32
- expect(@instance).to be_instance_of(PulpMavenClient::MavenArtifact)
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 "_href"' do
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 "_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 "_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.0-SNAPSHOT
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::MavenDistribution
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 'MavenDistribution' do
20
+ describe 'MavenMavenDistribution' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpMavenClient::MavenDistribution.new
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 MavenDistribution' do
31
- it 'should create an instance of MavenDistribution' do
32
- expect(@instance).to be_instance_of(PulpMavenClient::MavenDistribution)
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 "_href"' do
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 "_created"' do
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.0-SNAPSHOT
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::MavenRemote
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 'MavenRemote' do
20
+ describe 'MavenMavenRemote' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpMavenClient::MavenRemote.new
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 MavenRemote' do
31
- it 'should create an instance of MavenRemote' do
32
- expect(@instance).to be_instance_of(PulpMavenClient::MavenRemote)
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 "_href"' do
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 "_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 "_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 "ssl_ca_certificate"' do
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 "ssl_client_certificate"' do
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 "ssl_client_key"' do
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 "ssl_validation"' do
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 "username"' 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 "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
@@ -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.0-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
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.0b31570567113
4
+ version: 0.1.0b31574369188
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-10-08 00:00:00.000000000 Z
11
+ date: 2019-11-21 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/MavenArtifact.md
84
- - docs/MavenDistribution.md
85
- - docs/MavenRemote.md
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/maven_artifact.rb
100
- - lib/pulp_maven_client/models/maven_distribution.rb
101
- - lib/pulp_maven_client/models/maven_remote.rb
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/maven_artifact_spec.rb
114
- - spec/models/maven_distribution_spec.rb
115
- - spec/models/maven_remote_spec.rb
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/maven_distribution_spec.rb
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/maven_remote_spec.rb
152
- - spec/models/maven_artifact_spec.rb
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