pulp_maven_client 0.8.2 → 0.8.3
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 +10 -6
- data/docs/AsyncOperationResponse.md +8 -7
- data/docs/ContentArtifactApi.md +111 -61
- data/docs/ContentSummaryResponse.md +12 -11
- data/docs/DistributionsMavenApi.md +265 -130
- data/docs/MavenMavenArtifact.md +12 -11
- data/docs/MavenMavenArtifactResponse.md +24 -23
- data/docs/MavenMavenDistribution.md +20 -19
- data/docs/MavenMavenDistributionResponse.md +32 -31
- data/docs/MavenMavenRemote.md +48 -47
- data/docs/MavenMavenRemoteResponse.md +48 -47
- data/docs/MavenMavenRemoteResponseHiddenFieldsInner.md +20 -0
- data/docs/MavenMavenRepository.md +16 -15
- data/docs/MavenMavenRepositoryResponse.md +28 -27
- data/docs/PaginatedRepositoryVersionResponseList.md +14 -13
- data/docs/PaginatedmavenMavenArtifactResponseList.md +14 -13
- data/docs/PaginatedmavenMavenDistributionResponseList.md +14 -13
- data/docs/PaginatedmavenMavenRemoteResponseList.md +14 -13
- data/docs/PaginatedmavenMavenRepositoryResponseList.md +14 -13
- data/docs/PatchedmavenMavenDistribution.md +20 -19
- data/docs/PatchedmavenMavenRemote.md +48 -47
- data/docs/PatchedmavenMavenRepository.md +16 -15
- data/docs/PolicyEnum.md +4 -5
- data/docs/PulpMavenApi.md +60 -25
- data/docs/RemotesMavenApi.md +269 -132
- data/docs/Repair.md +8 -7
- data/docs/RepositoriesMavenApi.md +296 -144
- data/docs/RepositoriesMavenVersionsApi.md +152 -82
- data/docs/RepositoryAddCachedContent.md +8 -7
- data/docs/RepositoryVersionResponse.md +22 -21
- data/docs/SetLabel.md +10 -9
- data/docs/SetLabelResponse.md +10 -9
- data/docs/UnsetLabel.md +8 -7
- data/docs/UnsetLabelResponse.md +10 -9
- data/lib/pulp_maven_client/api/content_artifact_api.rb +20 -14
- data/lib/pulp_maven_client/api/distributions_maven_api.rb +61 -38
- data/lib/pulp_maven_client/api/pulp_maven_api.rb +9 -7
- data/lib/pulp_maven_client/api/remotes_maven_api.rb +76 -50
- data/lib/pulp_maven_client/api/repositories_maven_api.rb +70 -43
- data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +40 -30
- data/lib/pulp_maven_client/api_client.rb +137 -102
- data/lib/pulp_maven_client/api_error.rb +2 -1
- data/lib/pulp_maven_client/configuration.rb +162 -21
- data/lib/pulp_maven_client/models/async_operation_response.rb +32 -22
- data/lib/pulp_maven_client/models/content_summary_response.rb +36 -22
- data/lib/pulp_maven_client/models/maven_maven_artifact.rb +34 -22
- data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +34 -24
- data/lib/pulp_maven_client/models/maven_maven_distribution.rb +34 -22
- data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +36 -24
- data/lib/pulp_maven_client/models/maven_maven_remote.rb +57 -38
- data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +60 -41
- data/lib/pulp_maven_client/models/{maven_maven_remote_response_hidden_fields.rb → maven_maven_remote_response_hidden_fields_inner.rb} +37 -25
- data/lib/pulp_maven_client/models/maven_maven_repository.rb +32 -37
- data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +34 -39
- data/lib/pulp_maven_client/models/paginated_repository_version_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_artifact_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_distribution_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_remote_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_repository_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +40 -24
- data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +63 -40
- data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +35 -38
- data/lib/pulp_maven_client/models/policy_enum.rb +8 -5
- data/lib/pulp_maven_client/models/repair.rb +30 -22
- data/lib/pulp_maven_client/models/repository_add_cached_content.rb +30 -22
- data/lib/pulp_maven_client/models/repository_version_response.rb +32 -24
- data/lib/pulp_maven_client/models/set_label.rb +34 -22
- data/lib/pulp_maven_client/models/set_label_response.rb +34 -22
- data/lib/pulp_maven_client/models/unset_label.rb +32 -22
- data/lib/pulp_maven_client/models/unset_label_response.rb +32 -22
- data/lib/pulp_maven_client/version.rb +2 -2
- data/lib/pulp_maven_client.rb +2 -2
- data/pulp_maven_client.gemspec +9 -6
- data/spec/api/content_artifact_api_spec.rb +4 -4
- data/spec/api/distributions_maven_api_spec.rb +9 -9
- data/spec/api/pulp_maven_api_spec.rb +3 -3
- data/spec/api/remotes_maven_api_spec.rb +16 -15
- data/spec/api/repositories_maven_api_spec.rb +10 -10
- data/spec/api/repositories_maven_versions_api_spec.rb +12 -11
- data/spec/models/async_operation_response_spec.rb +7 -12
- data/spec/models/content_summary_response_spec.rb +9 -14
- data/spec/models/maven_maven_artifact_response_spec.rb +15 -20
- data/spec/models/maven_maven_artifact_spec.rb +9 -14
- data/spec/models/maven_maven_distribution_response_spec.rb +19 -24
- data/spec/models/maven_maven_distribution_spec.rb +13 -18
- data/spec/models/{maven_maven_remote_response_hidden_fields_spec.rb → maven_maven_remote_response_hidden_fields_inner_spec.rb} +11 -16
- data/spec/models/maven_maven_remote_response_spec.rb +27 -32
- data/spec/models/maven_maven_remote_spec.rb +27 -32
- data/spec/models/maven_maven_repository_response_spec.rb +17 -22
- data/spec/models/maven_maven_repository_spec.rb +11 -16
- data/spec/models/paginated_repository_version_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_artifact_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_distribution_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_remote_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_repository_response_list_spec.rb +10 -15
- data/spec/models/patchedmaven_maven_distribution_spec.rb +13 -18
- data/spec/models/patchedmaven_maven_remote_spec.rb +27 -32
- data/spec/models/patchedmaven_maven_repository_spec.rb +11 -16
- data/spec/models/policy_enum_spec.rb +6 -11
- data/spec/models/repair_spec.rb +7 -12
- data/spec/models/repository_add_cached_content_spec.rb +7 -12
- data/spec/models/repository_version_response_spec.rb +14 -19
- data/spec/models/set_label_response_spec.rb +8 -13
- data/spec/models/set_label_spec.rb +8 -13
- data/spec/models/unset_label_response_spec.rb +8 -13
- data/spec/models/unset_label_spec.rb +7 -12
- data/spec/spec_helper.rb +1 -1
- metadata +67 -43
- data/docs/MavenMavenRemoteResponseHiddenFields.md +0 -19
- data/spec/api_client_spec.rb +0 -188
- data/spec/configuration_spec.rb +0 -42
data/lib/pulp_maven_client.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -25,7 +25,7 @@ require 'pulp_maven_client/models/maven_maven_distribution'
|
|
25
25
|
require 'pulp_maven_client/models/maven_maven_distribution_response'
|
26
26
|
require 'pulp_maven_client/models/maven_maven_remote'
|
27
27
|
require 'pulp_maven_client/models/maven_maven_remote_response'
|
28
|
-
require 'pulp_maven_client/models/
|
28
|
+
require 'pulp_maven_client/models/maven_maven_remote_response_hidden_fields_inner'
|
29
29
|
require 'pulp_maven_client/models/maven_maven_repository'
|
30
30
|
require 'pulp_maven_client/models/maven_maven_repository_response'
|
31
31
|
require 'pulp_maven_client/models/paginated_repository_version_response_list'
|
data/pulp_maven_client.gemspec
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
The version of the OpenAPI document: v3
|
9
9
|
Contact: pulp-list@redhat.com
|
10
10
|
Generated by: https://openapi-generator.tech
|
11
|
-
|
11
|
+
Generator version: 7.10.0
|
12
12
|
|
13
13
|
=end
|
14
14
|
|
@@ -24,11 +24,14 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.homepage = "https://github.com/pulp/pulp_maven"
|
25
25
|
s.summary = "Pulp 3 API Ruby Gem"
|
26
26
|
s.description = "Fetch, Upload, Organize, and Distribute Software Packages"
|
27
|
-
s.license =
|
28
|
-
s.required_ruby_version = ">=
|
29
|
-
|
30
|
-
|
31
|
-
s.add_runtime_dependency '
|
27
|
+
s.license = "GPLv2+"
|
28
|
+
s.required_ruby_version = ">= 2.7"
|
29
|
+
s.metadata = {}
|
30
|
+
|
31
|
+
s.add_runtime_dependency 'faraday-net_http', '>= 2.0', '< 3.1'
|
32
|
+
s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 2.9'
|
33
|
+
s.add_runtime_dependency 'faraday-multipart'
|
34
|
+
s.add_runtime_dependency 'marcel'
|
32
35
|
|
33
36
|
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
|
34
37
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -40,7 +40,7 @@ describe 'ContentArtifactApi' do
|
|
40
40
|
# @return [MavenMavenArtifactResponse]
|
41
41
|
describe 'create test' do
|
42
42
|
it 'should work' do
|
43
|
-
# assertion here. ref: https://
|
43
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
@@ -68,7 +68,7 @@ describe 'ContentArtifactApi' do
|
|
68
68
|
# @return [PaginatedmavenMavenArtifactResponseList]
|
69
69
|
describe 'list test' do
|
70
70
|
it 'should work' do
|
71
|
-
# assertion here. ref: https://
|
71
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
@@ -82,7 +82,7 @@ describe 'ContentArtifactApi' do
|
|
82
82
|
# @return [MavenMavenArtifactResponse]
|
83
83
|
describe 'read test' do
|
84
84
|
it 'should work' do
|
85
|
-
# assertion here. ref: https://
|
85
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -40,7 +40,7 @@ describe 'DistributionsMavenApi' do
|
|
40
40
|
# @return [AsyncOperationResponse]
|
41
41
|
describe 'create test' do
|
42
42
|
it 'should work' do
|
43
|
-
# assertion here. ref: https://
|
43
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
@@ -52,7 +52,7 @@ describe 'DistributionsMavenApi' do
|
|
52
52
|
# @return [AsyncOperationResponse]
|
53
53
|
describe 'delete test' do
|
54
54
|
it 'should work' do
|
55
|
-
# assertion here. ref: https://
|
55
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
@@ -89,7 +89,7 @@ describe 'DistributionsMavenApi' do
|
|
89
89
|
# @return [PaginatedmavenMavenDistributionResponseList]
|
90
90
|
describe 'list test' do
|
91
91
|
it 'should work' do
|
92
|
-
# assertion here. ref: https://
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
@@ -102,7 +102,7 @@ describe 'DistributionsMavenApi' do
|
|
102
102
|
# @return [AsyncOperationResponse]
|
103
103
|
describe 'partial_update test' do
|
104
104
|
it 'should work' do
|
105
|
-
# assertion here. ref: https://
|
105
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
106
106
|
end
|
107
107
|
end
|
108
108
|
|
@@ -116,7 +116,7 @@ describe 'DistributionsMavenApi' do
|
|
116
116
|
# @return [MavenMavenDistributionResponse]
|
117
117
|
describe 'read test' do
|
118
118
|
it 'should work' do
|
119
|
-
# assertion here. ref: https://
|
119
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
120
120
|
end
|
121
121
|
end
|
122
122
|
|
@@ -129,7 +129,7 @@ describe 'DistributionsMavenApi' do
|
|
129
129
|
# @return [SetLabelResponse]
|
130
130
|
describe 'set_label test' do
|
131
131
|
it 'should work' do
|
132
|
-
# assertion here. ref: https://
|
132
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
133
133
|
end
|
134
134
|
end
|
135
135
|
|
@@ -142,7 +142,7 @@ describe 'DistributionsMavenApi' do
|
|
142
142
|
# @return [UnsetLabelResponse]
|
143
143
|
describe 'unset_label test' do
|
144
144
|
it 'should work' do
|
145
|
-
# assertion here. ref: https://
|
145
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
146
146
|
end
|
147
147
|
end
|
148
148
|
|
@@ -155,7 +155,7 @@ describe 'DistributionsMavenApi' do
|
|
155
155
|
# @return [AsyncOperationResponse]
|
156
156
|
describe 'update test' do
|
157
157
|
it 'should work' do
|
158
|
-
# assertion here. ref: https://
|
158
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -42,7 +42,7 @@ describe 'PulpMavenApi' do
|
|
42
42
|
# @return [nil]
|
43
43
|
describe 'get test' do
|
44
44
|
it 'should work' do
|
45
|
-
# assertion here. ref: https://
|
45
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
46
46
|
end
|
47
47
|
end
|
48
48
|
|
@@ -54,7 +54,7 @@ describe 'PulpMavenApi' do
|
|
54
54
|
# @return [nil]
|
55
55
|
describe 'put test' do
|
56
56
|
it 'should work' do
|
57
|
-
# assertion here. ref: https://
|
57
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
58
58
|
end
|
59
59
|
end
|
60
60
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -40,7 +40,7 @@ describe 'RemotesMavenApi' do
|
|
40
40
|
# @return [MavenMavenRemoteResponse]
|
41
41
|
describe 'create test' do
|
42
42
|
it 'should work' do
|
43
|
-
# assertion here. ref: https://
|
43
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
@@ -52,7 +52,7 @@ describe 'RemotesMavenApi' do
|
|
52
52
|
# @return [AsyncOperationResponse]
|
53
53
|
describe 'delete test' do
|
54
54
|
it 'should work' do
|
55
|
-
# assertion here. ref: https://
|
55
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
@@ -76,19 +76,20 @@ describe 'RemotesMavenApi' do
|
|
76
76
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
77
77
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
78
78
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
79
|
-
# @option opts [
|
80
|
-
# @option opts [
|
81
|
-
# @option opts [
|
82
|
-
# @option opts [
|
83
|
-
# @option opts [
|
84
|
-
# @option opts [
|
79
|
+
# @option opts [Time] :pulp_last_updated Filter results where pulp_last_updated matches value
|
80
|
+
# @option opts [Time] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
|
81
|
+
# @option opts [Time] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
|
82
|
+
# @option opts [Boolean] :pulp_last_updated__isnull Filter results where pulp_last_updated has a null value
|
83
|
+
# @option opts [Time] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
84
|
+
# @option opts [Time] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
85
|
+
# @option opts [Array<Time>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
85
86
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
86
87
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
87
88
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
88
89
|
# @return [PaginatedmavenMavenRemoteResponseList]
|
89
90
|
describe 'list test' do
|
90
91
|
it 'should work' do
|
91
|
-
# assertion here. ref: https://
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
92
93
|
end
|
93
94
|
end
|
94
95
|
|
@@ -101,7 +102,7 @@ describe 'RemotesMavenApi' do
|
|
101
102
|
# @return [AsyncOperationResponse]
|
102
103
|
describe 'partial_update test' do
|
103
104
|
it 'should work' do
|
104
|
-
# assertion here. ref: https://
|
105
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
105
106
|
end
|
106
107
|
end
|
107
108
|
|
@@ -115,7 +116,7 @@ describe 'RemotesMavenApi' do
|
|
115
116
|
# @return [MavenMavenRemoteResponse]
|
116
117
|
describe 'read test' do
|
117
118
|
it 'should work' do
|
118
|
-
# assertion here. ref: https://
|
119
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
119
120
|
end
|
120
121
|
end
|
121
122
|
|
@@ -128,7 +129,7 @@ describe 'RemotesMavenApi' do
|
|
128
129
|
# @return [SetLabelResponse]
|
129
130
|
describe 'set_label test' do
|
130
131
|
it 'should work' do
|
131
|
-
# assertion here. ref: https://
|
132
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
132
133
|
end
|
133
134
|
end
|
134
135
|
|
@@ -141,7 +142,7 @@ describe 'RemotesMavenApi' do
|
|
141
142
|
# @return [UnsetLabelResponse]
|
142
143
|
describe 'unset_label test' do
|
143
144
|
it 'should work' do
|
144
|
-
# assertion here. ref: https://
|
145
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
145
146
|
end
|
146
147
|
end
|
147
148
|
|
@@ -154,7 +155,7 @@ describe 'RemotesMavenApi' do
|
|
154
155
|
# @return [AsyncOperationResponse]
|
155
156
|
describe 'update test' do
|
156
157
|
it 'should work' do
|
157
|
-
# assertion here. ref: https://
|
158
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
158
159
|
end
|
159
160
|
end
|
160
161
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -41,7 +41,7 @@ describe 'RepositoriesMavenApi' do
|
|
41
41
|
# @return [AsyncOperationResponse]
|
42
42
|
describe 'add_cached_content test' do
|
43
43
|
it 'should work' do
|
44
|
-
# assertion here. ref: https://
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
@@ -53,7 +53,7 @@ describe 'RepositoriesMavenApi' do
|
|
53
53
|
# @return [MavenMavenRepositoryResponse]
|
54
54
|
describe 'create test' do
|
55
55
|
it 'should work' do
|
56
|
-
# assertion here. ref: https://
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
@@ -65,7 +65,7 @@ describe 'RepositoriesMavenApi' do
|
|
65
65
|
# @return [AsyncOperationResponse]
|
66
66
|
describe 'delete test' do
|
67
67
|
it 'should work' do
|
68
|
-
# assertion here. ref: https://
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
@@ -106,7 +106,7 @@ describe 'RepositoriesMavenApi' do
|
|
106
106
|
# @return [PaginatedmavenMavenRepositoryResponseList]
|
107
107
|
describe 'list test' do
|
108
108
|
it 'should work' do
|
109
|
-
# assertion here. ref: https://
|
109
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
@@ -119,7 +119,7 @@ describe 'RepositoriesMavenApi' do
|
|
119
119
|
# @return [AsyncOperationResponse]
|
120
120
|
describe 'partial_update test' do
|
121
121
|
it 'should work' do
|
122
|
-
# assertion here. ref: https://
|
122
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
123
123
|
end
|
124
124
|
end
|
125
125
|
|
@@ -133,7 +133,7 @@ describe 'RepositoriesMavenApi' do
|
|
133
133
|
# @return [MavenMavenRepositoryResponse]
|
134
134
|
describe 'read test' do
|
135
135
|
it 'should work' do
|
136
|
-
# assertion here. ref: https://
|
136
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
137
137
|
end
|
138
138
|
end
|
139
139
|
|
@@ -146,7 +146,7 @@ describe 'RepositoriesMavenApi' do
|
|
146
146
|
# @return [SetLabelResponse]
|
147
147
|
describe 'set_label test' do
|
148
148
|
it 'should work' do
|
149
|
-
# assertion here. ref: https://
|
149
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
150
150
|
end
|
151
151
|
end
|
152
152
|
|
@@ -159,7 +159,7 @@ describe 'RepositoriesMavenApi' do
|
|
159
159
|
# @return [UnsetLabelResponse]
|
160
160
|
describe 'unset_label test' do
|
161
161
|
it 'should work' do
|
162
|
-
# assertion here. ref: https://
|
162
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
163
163
|
end
|
164
164
|
end
|
165
165
|
|
@@ -172,7 +172,7 @@ describe 'RepositoriesMavenApi' do
|
|
172
172
|
# @return [AsyncOperationResponse]
|
173
173
|
describe 'update test' do
|
174
174
|
it 'should work' do
|
175
|
-
# assertion here. ref: https://
|
175
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
176
176
|
end
|
177
177
|
end
|
178
178
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -40,7 +40,7 @@ describe 'RepositoriesMavenVersionsApi' do
|
|
40
40
|
# @return [AsyncOperationResponse]
|
41
41
|
describe 'delete test' do
|
42
42
|
it 'should work' do
|
43
|
-
# assertion here. ref: https://
|
43
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
@@ -61,12 +61,13 @@ describe 'RepositoriesMavenVersionsApi' do
|
|
61
61
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
62
62
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
63
63
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
64
|
-
# @option opts [
|
65
|
-
# @option opts [
|
66
|
-
# @option opts [
|
67
|
-
# @option opts [
|
68
|
-
# @option opts [
|
69
|
-
# @option opts [
|
64
|
+
# @option opts [Time] :pulp_created Filter results where pulp_created matches value
|
65
|
+
# @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
|
66
|
+
# @option opts [Time] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
67
|
+
# @option opts [Boolean] :pulp_created__isnull Filter results where pulp_created has a null value
|
68
|
+
# @option opts [Time] :pulp_created__lt Filter results where pulp_created is less than value
|
69
|
+
# @option opts [Time] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
70
|
+
# @option opts [Array<Time>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
70
71
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
71
72
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
72
73
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
@@ -74,7 +75,7 @@ describe 'RepositoriesMavenVersionsApi' do
|
|
74
75
|
# @return [PaginatedRepositoryVersionResponseList]
|
75
76
|
describe 'list test' do
|
76
77
|
it 'should work' do
|
77
|
-
# assertion here. ref: https://
|
78
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
78
79
|
end
|
79
80
|
end
|
80
81
|
|
@@ -88,7 +89,7 @@ describe 'RepositoriesMavenVersionsApi' do
|
|
88
89
|
# @return [RepositoryVersionResponse]
|
89
90
|
describe 'read test' do
|
90
91
|
it 'should work' do
|
91
|
-
# assertion here. ref: https://
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
92
93
|
end
|
93
94
|
end
|
94
95
|
|
@@ -100,7 +101,7 @@ describe 'RepositoriesMavenVersionsApi' do
|
|
100
101
|
# @return [AsyncOperationResponse]
|
101
102
|
describe 'repair test' do
|
102
103
|
it 'should work' do
|
103
|
-
# assertion here. ref: https://
|
104
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
104
105
|
end
|
105
106
|
end
|
106
107
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,24 +17,19 @@ require 'date'
|
|
17
17
|
# Unit tests for PulpMavenClient::AsyncOperationResponse
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = PulpMavenClient::AsyncOperationResponse.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe PulpMavenClient::AsyncOperationResponse do
|
21
|
+
let(:instance) { PulpMavenClient::AsyncOperationResponse.new }
|
29
22
|
|
30
23
|
describe 'test an instance of AsyncOperationResponse' do
|
31
24
|
it 'should create an instance of AsyncOperationResponse' do
|
32
|
-
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(PulpMavenClient::AsyncOperationResponse)
|
33
27
|
end
|
34
28
|
end
|
29
|
+
|
35
30
|
describe 'test attribute "task"' do
|
36
31
|
it 'should work' do
|
37
|
-
# assertion here. ref: https://
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
38
33
|
end
|
39
34
|
end
|
40
35
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,36 +17,31 @@ require 'date'
|
|
17
17
|
# Unit tests for PulpMavenClient::ContentSummaryResponse
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = PulpMavenClient::ContentSummaryResponse.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe PulpMavenClient::ContentSummaryResponse do
|
21
|
+
let(:instance) { PulpMavenClient::ContentSummaryResponse.new }
|
29
22
|
|
30
23
|
describe 'test an instance of ContentSummaryResponse' do
|
31
24
|
it 'should create an instance of ContentSummaryResponse' do
|
32
|
-
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(PulpMavenClient::ContentSummaryResponse)
|
33
27
|
end
|
34
28
|
end
|
29
|
+
|
35
30
|
describe 'test attribute "added"' do
|
36
31
|
it 'should work' do
|
37
|
-
# assertion here. ref: https://
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
38
33
|
end
|
39
34
|
end
|
40
35
|
|
41
36
|
describe 'test attribute "removed"' do
|
42
37
|
it 'should work' do
|
43
|
-
# assertion here. ref: https://
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
44
39
|
end
|
45
40
|
end
|
46
41
|
|
47
42
|
describe 'test attribute "present"' do
|
48
43
|
it 'should work' do
|
49
|
-
# assertion here. ref: https://
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
50
45
|
end
|
51
46
|
end
|
52
47
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,72 +17,67 @@ require 'date'
|
|
17
17
|
# Unit tests for PulpMavenClient::MavenMavenArtifactResponse
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = PulpMavenClient::MavenMavenArtifactResponse.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe PulpMavenClient::MavenMavenArtifactResponse do
|
21
|
+
let(:instance) { PulpMavenClient::MavenMavenArtifactResponse.new }
|
29
22
|
|
30
23
|
describe 'test an instance of MavenMavenArtifactResponse' do
|
31
24
|
it 'should create an instance of MavenMavenArtifactResponse' do
|
32
|
-
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(PulpMavenClient::MavenMavenArtifactResponse)
|
33
27
|
end
|
34
28
|
end
|
29
|
+
|
35
30
|
describe 'test attribute "pulp_href"' do
|
36
31
|
it 'should work' do
|
37
|
-
# assertion here. ref: https://
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
38
33
|
end
|
39
34
|
end
|
40
35
|
|
41
36
|
describe 'test attribute "prn"' do
|
42
37
|
it 'should work' do
|
43
|
-
# assertion here. ref: https://
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
44
39
|
end
|
45
40
|
end
|
46
41
|
|
47
42
|
describe 'test attribute "pulp_created"' do
|
48
43
|
it 'should work' do
|
49
|
-
# assertion here. ref: https://
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
50
45
|
end
|
51
46
|
end
|
52
47
|
|
53
48
|
describe 'test attribute "pulp_last_updated"' do
|
54
49
|
it 'should work' do
|
55
|
-
# assertion here. ref: https://
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
56
51
|
end
|
57
52
|
end
|
58
53
|
|
59
54
|
describe 'test attribute "artifact"' do
|
60
55
|
it 'should work' do
|
61
|
-
# assertion here. ref: https://
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
62
57
|
end
|
63
58
|
end
|
64
59
|
|
65
60
|
describe 'test attribute "group_id"' do
|
66
61
|
it 'should work' do
|
67
|
-
# assertion here. ref: https://
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
68
63
|
end
|
69
64
|
end
|
70
65
|
|
71
66
|
describe 'test attribute "artifact_id"' do
|
72
67
|
it 'should work' do
|
73
|
-
# assertion here. ref: https://
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
74
69
|
end
|
75
70
|
end
|
76
71
|
|
77
72
|
describe 'test attribute "version"' do
|
78
73
|
it 'should work' do
|
79
|
-
# assertion here. ref: https://
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
80
75
|
end
|
81
76
|
end
|
82
77
|
|
83
78
|
describe 'test attribute "filename"' do
|
84
79
|
it 'should work' do
|
85
|
-
# assertion here. ref: https://
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
86
81
|
end
|
87
82
|
end
|
88
83
|
|