pulp_maven_client 0.11.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentArtifactApi.md +6 -6
  4. data/docs/DistributionsMavenApi.md +14 -14
  5. data/docs/MavenMavenArtifact.md +2 -0
  6. data/docs/MavenMavenDistribution.md +2 -0
  7. data/docs/MavenMavenDistributionResponse.md +4 -0
  8. data/docs/MavenMavenRemote.md +6 -6
  9. data/docs/MavenMavenRemoteResponse.md +9 -9
  10. data/docs/MavenMavenRepository.md +2 -0
  11. data/docs/MavenMavenRepositoryResponse.md +2 -0
  12. data/docs/PatchedmavenMavenDistribution.md +2 -0
  13. data/docs/PatchedmavenMavenRemote.md +6 -6
  14. data/docs/PatchedmavenMavenRepository.md +2 -0
  15. data/docs/RemotesMavenApi.md +10 -10
  16. data/docs/RepositoriesMavenApi.md +30 -14
  17. data/lib/pulp_maven_client/api/content_artifact_api.rb +6 -6
  18. data/lib/pulp_maven_client/api/distributions_maven_api.rb +14 -14
  19. data/lib/pulp_maven_client/api/remotes_maven_api.rb +10 -10
  20. data/lib/pulp_maven_client/api/repositories_maven_api.rb +39 -15
  21. data/lib/pulp_maven_client/models/maven_maven_artifact.rb +11 -1
  22. data/lib/pulp_maven_client/models/maven_maven_distribution.rb +12 -1
  23. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +22 -1
  24. data/lib/pulp_maven_client/models/maven_maven_remote.rb +48 -33
  25. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +64 -49
  26. data/lib/pulp_maven_client/models/maven_maven_repository.rb +42 -1
  27. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +42 -1
  28. data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +12 -1
  29. data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +48 -33
  30. data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +42 -1
  31. data/lib/pulp_maven_client/models/set_label.rb +0 -11
  32. data/lib/pulp_maven_client/models/set_label_response.rb +0 -21
  33. data/lib/pulp_maven_client/models/unset_label.rb +0 -11
  34. data/lib/pulp_maven_client/models/unset_label_response.rb +0 -21
  35. data/lib/pulp_maven_client/version.rb +1 -1
  36. data/spec/api/content_artifact_api_spec.rb +3 -3
  37. data/spec/api/distributions_maven_api_spec.rb +6 -6
  38. data/spec/api/remotes_maven_api_spec.rb +4 -4
  39. data/spec/api/repositories_maven_api_spec.rb +14 -6
  40. data/spec/models/maven_maven_artifact_spec.rb +6 -0
  41. data/spec/models/maven_maven_distribution_response_spec.rb +12 -0
  42. data/spec/models/maven_maven_distribution_spec.rb +6 -0
  43. data/spec/models/maven_maven_remote_response_spec.rb +10 -10
  44. data/spec/models/maven_maven_remote_spec.rb +17 -17
  45. data/spec/models/maven_maven_repository_response_spec.rb +6 -0
  46. data/spec/models/maven_maven_repository_spec.rb +6 -0
  47. data/spec/models/patchedmaven_maven_distribution_spec.rb +6 -0
  48. data/spec/models/patchedmaven_maven_remote_spec.rb +17 -17
  49. data/spec/models/patchedmaven_maven_repository_spec.rb +6 -0
  50. metadata +25 -25
@@ -85,8 +85,8 @@ describe 'DistributionsMavenApi' do
85
85
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
86
86
  # @option opts [String] :pulp_label_select Filter labels by search string
87
87
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
88
- # @option opts [String] :repository Filter results where repository matches value
89
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
88
+ # @option opts [String] :repository
89
+ # @option opts [Array<String>] :repository__in
90
90
  # @option opts [String] :with_content Filter distributions based on the content served by them
91
91
  # @option opts [Array<String>] :fields A list of fields to include in the response.
92
92
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -99,12 +99,12 @@ describe 'DistributionsMavenApi' do
99
99
 
100
100
  # unit tests for partial_update
101
101
  # Update a maven distribution
102
- # Trigger an asynchronous partial update task
102
+ # Update the entity partially and trigger an asynchronous task if necessary
103
103
  # @param maven_maven_distribution_href
104
104
  # @param patchedmaven_maven_distribution
105
105
  # @param [Hash] opts the optional parameters
106
106
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
107
- # @return [AsyncOperationResponse]
107
+ # @return [MavenMavenDistributionResponse]
108
108
  describe 'partial_update test' do
109
109
  it 'should work' do
110
110
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -156,12 +156,12 @@ describe 'DistributionsMavenApi' do
156
156
 
157
157
  # unit tests for update
158
158
  # Update a maven distribution
159
- # Trigger an asynchronous update task
159
+ # Update the entity and trigger an asynchronous task if necessary
160
160
  # @param maven_maven_distribution_href
161
161
  # @param maven_maven_distribution
162
162
  # @param [Hash] opts the optional parameters
163
163
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
164
- # @return [AsyncOperationResponse]
164
+ # @return [MavenMavenDistributionResponse]
165
165
  describe 'update test' do
166
166
  it 'should work' do
167
167
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -98,12 +98,12 @@ describe 'RemotesMavenApi' do
98
98
 
99
99
  # unit tests for partial_update
100
100
  # Update a maven remote
101
- # Trigger an asynchronous partial update task
101
+ # Update the entity partially and trigger an asynchronous task if necessary
102
102
  # @param maven_maven_remote_href
103
103
  # @param patchedmaven_maven_remote
104
104
  # @param [Hash] opts the optional parameters
105
105
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
- # @return [AsyncOperationResponse]
106
+ # @return [MavenMavenRemoteResponse]
107
107
  describe 'partial_update test' do
108
108
  it 'should work' do
109
109
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -155,12 +155,12 @@ describe 'RemotesMavenApi' do
155
155
 
156
156
  # unit tests for update
157
157
  # Update a maven remote
158
- # Trigger an asynchronous update task
158
+ # Update the entity and trigger an asynchronous task if necessary
159
159
  # @param maven_maven_remote_href
160
160
  # @param maven_maven_remote
161
161
  # @param [Hash] opts the optional parameters
162
162
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
163
- # @return [AsyncOperationResponse]
163
+ # @return [MavenMavenRemoteResponse]
164
164
  describe 'update test' do
165
165
  it 'should work' do
166
166
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -89,13 +89,21 @@ describe 'RepositoriesMavenApi' do
89
89
  # @option opts [String] :name__regex Filter results where name matches regex value
90
90
  # @option opts [String] :name__startswith Filter results where name starts with value
91
91
  # @option opts [Integer] :offset The initial index from which to return the results.
92
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
92
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;retain_checkpoints&#x60; - Retain checkpoints * &#x60;-retain_checkpoints&#x60; - Retain checkpoints (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
93
93
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
94
94
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
95
95
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
96
96
  # @option opts [String] :pulp_label_select Filter labels by search string
97
97
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
98
- # @option opts [String] :remote Foreign Key referenced by HREF
98
+ # @option opts [String] :remote
99
+ # @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
100
+ # @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
101
+ # @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
102
+ # @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
103
+ # @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
104
+ # @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
105
+ # @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
106
+ # @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
99
107
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
100
108
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
101
109
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -116,12 +124,12 @@ describe 'RepositoriesMavenApi' do
116
124
 
117
125
  # unit tests for partial_update
118
126
  # Update a maven repository
119
- # Trigger an asynchronous partial update task
127
+ # Update the entity partially and trigger an asynchronous task if necessary
120
128
  # @param maven_maven_repository_href
121
129
  # @param patchedmaven_maven_repository
122
130
  # @param [Hash] opts the optional parameters
123
131
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
124
- # @return [AsyncOperationResponse]
132
+ # @return [MavenMavenRepositoryResponse]
125
133
  describe 'partial_update test' do
126
134
  it 'should work' do
127
135
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -173,12 +181,12 @@ describe 'RepositoriesMavenApi' do
173
181
 
174
182
  # unit tests for update
175
183
  # Update a maven repository
176
- # Trigger an asynchronous update task
184
+ # Update the entity and trigger an asynchronous task if necessary
177
185
  # @param maven_maven_repository_href
178
186
  # @param maven_maven_repository
179
187
  # @param [Hash] opts the optional parameters
180
188
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
181
- # @return [AsyncOperationResponse]
189
+ # @return [MavenMavenRepositoryResponse]
182
190
  describe 'update test' do
183
191
  it 'should work' do
184
192
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -33,6 +33,12 @@ describe PulpMavenClient::MavenMavenArtifact do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "overwrite"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
36
42
  describe 'test attribute "pulp_labels"' do
37
43
  it 'should work' do
38
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -69,6 +69,12 @@ describe PulpMavenClient::MavenMavenDistributionResponse do
69
69
  end
70
70
  end
71
71
 
72
+ describe 'test attribute "content_guard_prn"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
72
78
  describe 'test attribute "no_content_change_since"' do
73
79
  it 'should work' do
74
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -99,6 +105,12 @@ describe PulpMavenClient::MavenMavenDistributionResponse do
99
105
  end
100
106
  end
101
107
 
108
+ describe 'test attribute "repository_version"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
102
114
  describe 'test attribute "remote"' do
103
115
  it 'should work' do
104
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,6 +63,12 @@ describe PulpMavenClient::MavenMavenDistribution do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "repository_version"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "remote"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,49 +63,49 @@ describe PulpMavenClient::MavenMavenRemoteResponse do
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "ca_cert"' do
66
+ describe 'test attribute "pulp_labels"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "client_cert"' do
72
+ describe 'test attribute "policy"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "tls_validation"' do
78
+ describe 'test attribute "hidden_fields"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "proxy_url"' do
84
+ describe 'test attribute "ca_cert"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_labels"' do
90
+ describe 'test attribute "client_cert"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "download_concurrency"' do
96
+ describe 'test attribute "tls_validation"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "max_retries"' do
102
+ describe 'test attribute "proxy_url"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
106
106
  end
107
107
 
108
- describe 'test attribute "policy"' do
108
+ describe 'test attribute "max_retries"' do
109
109
  it 'should work' do
110
110
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
111
  end
@@ -141,13 +141,13 @@ describe PulpMavenClient::MavenMavenRemoteResponse do
141
141
  end
142
142
  end
143
143
 
144
- describe 'test attribute "rate_limit"' do
144
+ describe 'test attribute "download_concurrency"' do
145
145
  it 'should work' do
146
146
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
147
  end
148
148
  end
149
149
 
150
- describe 'test attribute "hidden_fields"' do
150
+ describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
153
153
  end
@@ -39,67 +39,67 @@ describe PulpMavenClient::MavenMavenRemote do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "ca_cert"' do
42
+ describe 'test attribute "pulp_labels"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "client_cert"' do
48
+ describe 'test attribute "policy"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "client_key"' do
54
+ describe 'test attribute "ca_cert"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "tls_validation"' do
60
+ describe 'test attribute "client_cert"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "proxy_url"' do
66
+ describe 'test attribute "client_key"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "proxy_username"' do
72
+ describe 'test attribute "tls_validation"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "proxy_password"' do
78
+ describe 'test attribute "proxy_url"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "username"' do
84
+ describe 'test attribute "proxy_username"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "password"' do
90
+ describe 'test attribute "proxy_password"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_labels"' do
96
+ describe 'test attribute "username"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "download_concurrency"' do
102
+ describe 'test attribute "password"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -111,12 +111,6 @@ describe PulpMavenClient::MavenMavenRemote do
111
111
  end
112
112
  end
113
113
 
114
- describe 'test attribute "policy"' do
115
- it 'should work' do
116
- # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
- end
118
- end
119
-
120
114
  describe 'test attribute "total_timeout"' do
121
115
  it 'should work' do
122
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -147,6 +141,12 @@ describe PulpMavenClient::MavenMavenRemote do
147
141
  end
148
142
  end
149
143
 
144
+ describe 'test attribute "download_concurrency"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
150
  describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -87,6 +87,12 @@ describe PulpMavenClient::MavenMavenRepositoryResponse do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "retain_checkpoints"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
90
96
  describe 'test attribute "remote"' do
91
97
  it 'should work' do
92
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -51,6 +51,12 @@ describe PulpMavenClient::MavenMavenRepository do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "retain_checkpoints"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "remote"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,6 +63,12 @@ describe PulpMavenClient::PatchedmavenMavenDistribution do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "repository_version"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "remote"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -39,67 +39,67 @@ describe PulpMavenClient::PatchedmavenMavenRemote do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "ca_cert"' do
42
+ describe 'test attribute "pulp_labels"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "client_cert"' do
48
+ describe 'test attribute "policy"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "client_key"' do
54
+ describe 'test attribute "ca_cert"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "tls_validation"' do
60
+ describe 'test attribute "client_cert"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "proxy_url"' do
66
+ describe 'test attribute "client_key"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "proxy_username"' do
72
+ describe 'test attribute "tls_validation"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "proxy_password"' do
78
+ describe 'test attribute "proxy_url"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "username"' do
84
+ describe 'test attribute "proxy_username"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "password"' do
90
+ describe 'test attribute "proxy_password"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_labels"' do
96
+ describe 'test attribute "username"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "download_concurrency"' do
102
+ describe 'test attribute "password"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -111,12 +111,6 @@ describe PulpMavenClient::PatchedmavenMavenRemote do
111
111
  end
112
112
  end
113
113
 
114
- describe 'test attribute "policy"' do
115
- it 'should work' do
116
- # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
- end
118
- end
119
-
120
114
  describe 'test attribute "total_timeout"' do
121
115
  it 'should work' do
122
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -147,6 +141,12 @@ describe PulpMavenClient::PatchedmavenMavenRemote do
147
141
  end
148
142
  end
149
143
 
144
+ describe 'test attribute "download_concurrency"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
150
  describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -51,6 +51,12 @@ describe PulpMavenClient::PatchedmavenMavenRepository do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "retain_checkpoints"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "remote"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
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.11.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-14 00:00:00.000000000 Z
11
+ date: 2026-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -218,37 +218,37 @@ signing_key:
218
218
  specification_version: 4
219
219
  summary: Pulp 3 API Ruby Gem
220
220
  test_files:
221
- - spec/api/remotes_maven_api_spec.rb
222
221
  - spec/api/repositories_maven_api_spec.rb
223
- - spec/api/pulp_maven_api_spec.rb
224
- - spec/api/repositories_maven_versions_api_spec.rb
225
222
  - spec/api/distributions_maven_api_spec.rb
226
223
  - spec/api/content_artifact_api_spec.rb
227
- - spec/models/patchedmaven_maven_remote_spec.rb
228
- - spec/models/set_label_response_spec.rb
229
- - spec/models/repository_version_response_spec.rb
230
- - spec/models/paginatedmaven_maven_remote_response_list_spec.rb
231
- - spec/models/async_operation_response_spec.rb
232
- - spec/models/set_label_spec.rb
224
+ - spec/api/remotes_maven_api_spec.rb
225
+ - spec/api/repositories_maven_versions_api_spec.rb
226
+ - spec/api/pulp_maven_api_spec.rb
233
227
  - spec/models/maven_maven_artifact_spec.rb
228
+ - spec/models/content_summary_response_spec.rb
234
229
  - spec/models/maven_maven_repository_response_spec.rb
235
- - spec/models/repository_add_cached_content_spec.rb
236
- - spec/models/maven_maven_distribution_response_spec.rb
237
- - spec/models/patchedmaven_maven_repository_spec.rb
238
- - spec/models/unset_label_response_spec.rb
239
- - spec/models/policy_enum_spec.rb
230
+ - spec/models/unset_label_spec.rb
231
+ - spec/models/paginatedmaven_maven_distribution_response_list_spec.rb
240
232
  - spec/models/maven_maven_remote_response_hidden_fields_inner_spec.rb
241
233
  - spec/models/maven_maven_remote_spec.rb
242
- - spec/models/content_summary_response_spec.rb
234
+ - spec/models/paginatedmaven_maven_remote_response_list_spec.rb
235
+ - spec/models/maven_maven_artifact_response_spec.rb
236
+ - spec/models/set_label_spec.rb
237
+ - spec/models/maven_maven_repository_spec.rb
238
+ - spec/models/unset_label_response_spec.rb
239
+ - spec/models/patchedmaven_maven_distribution_spec.rb
240
+ - spec/models/maven_maven_distribution_spec.rb
241
+ - spec/models/paginated_repository_version_response_list_spec.rb
242
+ - spec/models/repair_spec.rb
243
+ - spec/models/maven_maven_distribution_response_spec.rb
244
+ - spec/models/async_operation_response_spec.rb
245
+ - spec/models/policy_enum_spec.rb
246
+ - spec/models/repository_add_cached_content_spec.rb
247
+ - spec/models/set_label_response_spec.rb
243
248
  - spec/models/paginatedmaven_maven_repository_response_list_spec.rb
249
+ - spec/models/patchedmaven_maven_repository_spec.rb
250
+ - spec/models/repository_version_response_spec.rb
244
251
  - spec/models/paginatedmaven_maven_artifact_response_list_spec.rb
245
- - spec/models/paginated_repository_version_response_list_spec.rb
246
252
  - spec/models/maven_maven_remote_response_spec.rb
247
- - spec/models/maven_maven_repository_spec.rb
248
- - spec/models/repair_spec.rb
249
- - spec/models/paginatedmaven_maven_distribution_response_list_spec.rb
250
- - spec/models/unset_label_spec.rb
251
- - spec/models/maven_maven_distribution_spec.rb
252
- - spec/models/maven_maven_artifact_response_spec.rb
253
- - spec/models/patchedmaven_maven_distribution_spec.rb
253
+ - spec/models/patchedmaven_maven_remote_spec.rb
254
254
  - spec/spec_helper.rb