pulp_rpm_client 3.18.12 → 3.18.13
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 +4 -4
- data/docs/DistributionsRpmApi.md +4 -0
- data/docs/PatchedrpmRpmRepository.md +1 -1
- data/docs/RepositoriesRpmApi.md +16 -0
- data/docs/RepositoryAddRemoveContent.md +2 -2
- data/docs/RpmRpmRepository.md +1 -1
- data/docs/RpmRpmRepositoryResponse.md +1 -1
- data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +6 -0
- data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +24 -0
- data/lib/pulp_rpm_client/models/patchedrpm_rpm_repository.rb +1 -1
- data/lib/pulp_rpm_client/models/repository_add_remove_content.rb +2 -2
- data/lib/pulp_rpm_client/models/rpm_rpm_repository.rb +1 -1
- data/lib/pulp_rpm_client/models/rpm_rpm_repository_response.rb +1 -1
- data/lib/pulp_rpm_client/version.rb +1 -1
- data/spec/api/distributions_rpm_api_spec.rb +2 -0
- data/spec/api/repositories_rpm_api_spec.rb +8 -0
- metadata +73 -73
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3329dfb04d368ecb80e51bb7e78294f67baf06169c382224935680b2ac264e4
|
|
4
|
+
data.tar.gz: fb23380d00fe858261ab54926b20669c103acef5cd9572ee78fbc00719cc7edd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7d2ba91ada9f9410a4633e32075748847f2a0a8e2190e6c78e8336e178e4329b4e1320e8093384603c8a40a1e414ed943720c878062c86fa1931c69cfdbd2c2
|
|
7
|
+
data.tar.gz: 2d660e0fa8b686d04b86da001707fb88c74f8ce663ef70c27b7865ae7e27a76874b7983d417f93f87575a393853f1df4395eb71246a1b734d8ae248b7f7f1caa
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: v3
|
|
10
|
-
- Package version: 3.18.
|
|
10
|
+
- Package version: 3.18.13
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ gem build pulp_rpm_client.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./pulp_rpm_client-3.18.
|
|
27
|
+
gem install ./pulp_rpm_client-3.18.13.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulp_rpm_client-3.18.
|
|
30
|
+
(for development, run `gem install --dev ./pulp_rpm_client-3.18.13.gem` to install the development dependencies)
|
|
31
31
|
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
33
|
|
|
34
34
|
Finally add this to the Gemfile:
|
|
35
35
|
|
|
36
|
-
gem 'pulp_rpm_client', '~> 3.18.
|
|
36
|
+
gem 'pulp_rpm_client', '~> 3.18.13'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
data/docs/DistributionsRpmApi.md
CHANGED
|
@@ -154,6 +154,8 @@ opts = {
|
|
|
154
154
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
155
155
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
156
156
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
157
|
+
repository: 'repository_example', # String | Filter results where repository matches value
|
|
158
|
+
repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
|
|
157
159
|
with_content: 'with_content_example', # String | Filter distributions based on the content served by them
|
|
158
160
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
159
161
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
@@ -186,6 +188,8 @@ Name | Type | Description | Notes
|
|
|
186
188
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
187
189
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
188
190
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
191
|
+
**repository** | **String**| Filter results where repository matches value | [optional]
|
|
192
|
+
**repository__in** | [**Array<String>**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
|
|
189
193
|
**with_content** | **String**| Filter distributions based on the content served by them | [optional]
|
|
190
194
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
191
195
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
8
8
|
**name** | **String** | A unique name for this repository. | [optional]
|
|
9
9
|
**description** | **String** | An optional description. | [optional]
|
|
10
|
-
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions.
|
|
10
|
+
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
|
|
11
11
|
**remote** | **String** | An optional remote to use by default when syncing. | [optional]
|
|
12
12
|
**autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional] [default to false]
|
|
13
13
|
**metadata_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
data/docs/RepositoriesRpmApi.md
CHANGED
|
@@ -153,6 +153,14 @@ opts = {
|
|
|
153
153
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
154
154
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
155
155
|
remote: 'remote_example', # String | Foreign Key referenced by HREF
|
|
156
|
+
retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
|
|
157
|
+
retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
|
|
158
|
+
retain_repo_versions__gte: 56, # Integer | Filter results where retain_repo_versions is greater than or equal to value
|
|
159
|
+
retain_repo_versions__isnull: true, # Boolean | Filter results where retain_repo_versions has a null value
|
|
160
|
+
retain_repo_versions__lt: 56, # Integer | Filter results where retain_repo_versions is less than value
|
|
161
|
+
retain_repo_versions__lte: 56, # Integer | Filter results where retain_repo_versions is less than or equal to value
|
|
162
|
+
retain_repo_versions__ne: 56, # Integer | Filter results where retain_repo_versions not equal to value
|
|
163
|
+
retain_repo_versions__range: [56], # Array<Integer> | Filter results where retain_repo_versions is between two comma separated values
|
|
156
164
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
157
165
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
158
166
|
}
|
|
@@ -181,6 +189,14 @@ Name | Type | Description | Notes
|
|
|
181
189
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
182
190
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
183
191
|
**remote** | **String**| Foreign Key referenced by HREF | [optional]
|
|
192
|
+
**retain_repo_versions** | **Integer**| Filter results where retain_repo_versions matches value | [optional]
|
|
193
|
+
**retain_repo_versions__gt** | **Integer**| Filter results where retain_repo_versions is greater than value | [optional]
|
|
194
|
+
**retain_repo_versions__gte** | **Integer**| Filter results where retain_repo_versions is greater than or equal to value | [optional]
|
|
195
|
+
**retain_repo_versions__isnull** | **Boolean**| Filter results where retain_repo_versions has a null value | [optional]
|
|
196
|
+
**retain_repo_versions__lt** | **Integer**| Filter results where retain_repo_versions is less than value | [optional]
|
|
197
|
+
**retain_repo_versions__lte** | **Integer**| Filter results where retain_repo_versions is less than or equal to value | [optional]
|
|
198
|
+
**retain_repo_versions__ne** | **Integer**| Filter results where retain_repo_versions not equal to value | [optional]
|
|
199
|
+
**retain_repo_versions__range** | [**Array<Integer>**](Integer.md)| Filter results where retain_repo_versions is between two comma separated values | [optional]
|
|
184
200
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
185
201
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
186
202
|
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**add_content_units** |
|
|
8
|
-
**remove_content_units** |
|
|
7
|
+
**add_content_units** | **Array<String>** | A list of content units to add to a new repository version. This content is added after remove_content_units are removed. | [optional]
|
|
8
|
+
**remove_content_units** | **Array<String>** | A list of content units to remove from the latest repository version. You may also specify '*' as an entry to remove all content. This content is removed before add_content_units are added. | [optional]
|
|
9
9
|
**base_version** | **String** | A repository version whose content will be used as the initial set of content for the new repository version | [optional]
|
|
10
10
|
|
|
11
11
|
## Code Sample
|
data/docs/RpmRpmRepository.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
8
8
|
**name** | **String** | A unique name for this repository. |
|
|
9
9
|
**description** | **String** | An optional description. | [optional]
|
|
10
|
-
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions.
|
|
10
|
+
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
|
|
11
11
|
**remote** | **String** | An optional remote to use by default when syncing. | [optional]
|
|
12
12
|
**autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional] [default to false]
|
|
13
13
|
**metadata_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
|
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**latest_version_href** | **String** | | [optional] [readonly]
|
|
12
12
|
**name** | **String** | A unique name for this repository. |
|
|
13
13
|
**description** | **String** | An optional description. | [optional]
|
|
14
|
-
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions.
|
|
14
|
+
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
|
|
15
15
|
**remote** | **String** | An optional remote to use by default when syncing. | [optional]
|
|
16
16
|
**autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional] [default to false]
|
|
17
17
|
**metadata_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
|
@@ -161,6 +161,8 @@ module PulpRpmClient
|
|
|
161
161
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
162
162
|
# @option opts [Array<String>] :ordering Ordering
|
|
163
163
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
164
|
+
# @option opts [String] :repository Filter results where repository matches value
|
|
165
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
|
164
166
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
165
167
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
166
168
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -186,6 +188,8 @@ module PulpRpmClient
|
|
|
186
188
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
187
189
|
# @option opts [Array<String>] :ordering Ordering
|
|
188
190
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
191
|
+
# @option opts [String] :repository Filter results where repository matches value
|
|
192
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
|
189
193
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
190
194
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
191
195
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -216,6 +220,8 @@ module PulpRpmClient
|
|
|
216
220
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
217
221
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
218
222
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
|
223
|
+
query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
|
|
224
|
+
query_params[:'repository__in'] = @api_client.build_collection_param(opts[:'repository__in'], :csv) if !opts[:'repository__in'].nil?
|
|
219
225
|
query_params[:'with_content'] = opts[:'with_content'] if !opts[:'with_content'].nil?
|
|
220
226
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
221
227
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
@@ -158,6 +158,14 @@ module PulpRpmClient
|
|
|
158
158
|
# @option opts [Array<String>] :ordering Ordering
|
|
159
159
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
160
160
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
161
|
+
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
162
|
+
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
163
|
+
# @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
|
|
164
|
+
# @option opts [Boolean] :retain_repo_versions__isnull Filter results where retain_repo_versions has a null value
|
|
165
|
+
# @option opts [Integer] :retain_repo_versions__lt Filter results where retain_repo_versions is less than value
|
|
166
|
+
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
|
167
|
+
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
|
168
|
+
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
|
161
169
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
162
170
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
163
171
|
# @return [PaginatedrpmRpmRepositoryResponseList]
|
|
@@ -179,6 +187,14 @@ module PulpRpmClient
|
|
|
179
187
|
# @option opts [Array<String>] :ordering Ordering
|
|
180
188
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
181
189
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
190
|
+
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
191
|
+
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
192
|
+
# @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
|
|
193
|
+
# @option opts [Boolean] :retain_repo_versions__isnull Filter results where retain_repo_versions has a null value
|
|
194
|
+
# @option opts [Integer] :retain_repo_versions__lt Filter results where retain_repo_versions is less than value
|
|
195
|
+
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
|
196
|
+
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
|
197
|
+
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
|
182
198
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
183
199
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
184
200
|
# @return [Array<(PaginatedrpmRpmRepositoryResponseList, Integer, Hash)>] PaginatedrpmRpmRepositoryResponseList data, response status code and response headers
|
|
@@ -205,6 +221,14 @@ module PulpRpmClient
|
|
|
205
221
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
206
222
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
|
207
223
|
query_params[:'remote'] = opts[:'remote'] if !opts[:'remote'].nil?
|
|
224
|
+
query_params[:'retain_repo_versions'] = opts[:'retain_repo_versions'] if !opts[:'retain_repo_versions'].nil?
|
|
225
|
+
query_params[:'retain_repo_versions__gt'] = opts[:'retain_repo_versions__gt'] if !opts[:'retain_repo_versions__gt'].nil?
|
|
226
|
+
query_params[:'retain_repo_versions__gte'] = opts[:'retain_repo_versions__gte'] if !opts[:'retain_repo_versions__gte'].nil?
|
|
227
|
+
query_params[:'retain_repo_versions__isnull'] = opts[:'retain_repo_versions__isnull'] if !opts[:'retain_repo_versions__isnull'].nil?
|
|
228
|
+
query_params[:'retain_repo_versions__lt'] = opts[:'retain_repo_versions__lt'] if !opts[:'retain_repo_versions__lt'].nil?
|
|
229
|
+
query_params[:'retain_repo_versions__lte'] = opts[:'retain_repo_versions__lte'] if !opts[:'retain_repo_versions__lte'].nil?
|
|
230
|
+
query_params[:'retain_repo_versions__ne'] = opts[:'retain_repo_versions__ne'] if !opts[:'retain_repo_versions__ne'].nil?
|
|
231
|
+
query_params[:'retain_repo_versions__range'] = @api_client.build_collection_param(opts[:'retain_repo_versions__range'], :csv) if !opts[:'retain_repo_versions__range'].nil?
|
|
208
232
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
209
233
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
210
234
|
|
|
@@ -23,7 +23,7 @@ module PulpRpmClient
|
|
|
23
23
|
# An optional description.
|
|
24
24
|
attr_accessor :description
|
|
25
25
|
|
|
26
|
-
# Retain X versions of the repository. Default is null which retains all versions.
|
|
26
|
+
# Retain X versions of the repository. Default is null which retains all versions.
|
|
27
27
|
attr_accessor :retain_repo_versions
|
|
28
28
|
|
|
29
29
|
# An optional remote to use by default when syncing.
|
|
@@ -36,8 +36,8 @@ module PulpRpmClient
|
|
|
36
36
|
# Attribute type mapping.
|
|
37
37
|
def self.openapi_types
|
|
38
38
|
{
|
|
39
|
-
:'add_content_units' => :'Array<
|
|
40
|
-
:'remove_content_units' => :'Array<
|
|
39
|
+
:'add_content_units' => :'Array<String>',
|
|
40
|
+
:'remove_content_units' => :'Array<String>',
|
|
41
41
|
:'base_version' => :'String'
|
|
42
42
|
}
|
|
43
43
|
end
|
|
@@ -23,7 +23,7 @@ module PulpRpmClient
|
|
|
23
23
|
# An optional description.
|
|
24
24
|
attr_accessor :description
|
|
25
25
|
|
|
26
|
-
# Retain X versions of the repository. Default is null which retains all versions.
|
|
26
|
+
# Retain X versions of the repository. Default is null which retains all versions.
|
|
27
27
|
attr_accessor :retain_repo_versions
|
|
28
28
|
|
|
29
29
|
# An optional remote to use by default when syncing.
|
|
@@ -32,7 +32,7 @@ module PulpRpmClient
|
|
|
32
32
|
# An optional description.
|
|
33
33
|
attr_accessor :description
|
|
34
34
|
|
|
35
|
-
# Retain X versions of the repository. Default is null which retains all versions.
|
|
35
|
+
# Retain X versions of the repository. Default is null which retains all versions.
|
|
36
36
|
attr_accessor :retain_repo_versions
|
|
37
37
|
|
|
38
38
|
# An optional remote to use by default when syncing.
|
|
@@ -73,6 +73,8 @@ describe 'DistributionsRpmApi' do
|
|
|
73
73
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
74
74
|
# @option opts [Array<String>] :ordering Ordering
|
|
75
75
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
76
|
+
# @option opts [String] :repository Filter results where repository matches value
|
|
77
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
|
76
78
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
77
79
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
78
80
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -70,6 +70,14 @@ describe 'RepositoriesRpmApi' do
|
|
|
70
70
|
# @option opts [Array<String>] :ordering Ordering
|
|
71
71
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
72
72
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
73
|
+
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
74
|
+
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
75
|
+
# @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
|
|
76
|
+
# @option opts [Boolean] :retain_repo_versions__isnull Filter results where retain_repo_versions has a null value
|
|
77
|
+
# @option opts [Integer] :retain_repo_versions__lt Filter results where retain_repo_versions is less than value
|
|
78
|
+
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
|
79
|
+
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
|
80
|
+
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
|
73
81
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
74
82
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
75
83
|
# @return [PaginatedrpmRpmRepositoryResponseList]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_rpm_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.18.
|
|
4
|
+
version: 3.18.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -392,99 +392,99 @@ signing_key:
|
|
|
392
392
|
specification_version: 4
|
|
393
393
|
summary: Pulp 3 API Ruby Gem
|
|
394
394
|
test_files:
|
|
395
|
-
- spec/api/remotes_rpm_api_spec.rb
|
|
396
|
-
- spec/api/acs_rpm_api_spec.rb
|
|
397
|
-
- spec/api/content_packageenvironments_api_spec.rb
|
|
398
|
-
- spec/api/content_packages_api_spec.rb
|
|
399
|
-
- spec/api/content_modulemd_obsoletes_api_spec.rb
|
|
400
|
-
- spec/api/rpm_copy_api_spec.rb
|
|
401
|
-
- spec/api/content_packagelangpacks_api_spec.rb
|
|
402
|
-
- spec/api/rpm_comps_api_spec.rb
|
|
403
395
|
- spec/api/content_modulemds_api_spec.rb
|
|
404
|
-
- spec/api/
|
|
405
|
-
- spec/api/
|
|
396
|
+
- spec/api/content_packagelangpacks_api_spec.rb
|
|
397
|
+
- spec/api/content_repo_metadata_files_api_spec.rb
|
|
406
398
|
- spec/api/content_packagegroups_api_spec.rb
|
|
399
|
+
- spec/api/publications_rpm_api_spec.rb
|
|
400
|
+
- spec/api/content_packages_api_spec.rb
|
|
401
|
+
- spec/api/distributions_rpm_api_spec.rb
|
|
407
402
|
- spec/api/repositories_rpm_versions_api_spec.rb
|
|
408
|
-
- spec/api/content_advisories_api_spec.rb
|
|
409
403
|
- spec/api/content_packagecategories_api_spec.rb
|
|
404
|
+
- spec/api/rpm_comps_api_spec.rb
|
|
405
|
+
- spec/api/content_distribution_trees_api_spec.rb
|
|
406
|
+
- spec/api/acs_rpm_api_spec.rb
|
|
410
407
|
- spec/api/repositories_rpm_api_spec.rb
|
|
411
408
|
- spec/api/content_modulemd_defaults_api_spec.rb
|
|
412
|
-
- spec/api/
|
|
413
|
-
- spec/api/
|
|
409
|
+
- spec/api/content_advisories_api_spec.rb
|
|
410
|
+
- spec/api/remotes_rpm_api_spec.rb
|
|
411
|
+
- spec/api/rpm_copy_api_spec.rb
|
|
412
|
+
- spec/api/content_modulemd_obsoletes_api_spec.rb
|
|
414
413
|
- spec/api/remotes_uln_api_spec.rb
|
|
414
|
+
- spec/api/content_packageenvironments_api_spec.rb
|
|
415
415
|
- spec/api_client_spec.rb
|
|
416
416
|
- spec/configuration_spec.rb
|
|
417
|
-
- spec/models/
|
|
418
|
-
- spec/models/
|
|
417
|
+
- spec/models/image_response_spec.rb
|
|
418
|
+
- spec/models/repository_version_response_spec.rb
|
|
419
|
+
- spec/models/rpm_repo_metadata_file_response_spec.rb
|
|
419
420
|
- spec/models/rpm_modulemd_spec.rb
|
|
420
|
-
- spec/models/
|
|
421
|
-
- spec/models/
|
|
422
|
-
- spec/models/
|
|
423
|
-
- spec/models/package_checksum_type_enum_spec.rb
|
|
424
|
-
- spec/models/rpm_uln_remote_response_spec.rb
|
|
425
|
-
- spec/models/paginatedrpm_rpm_repository_response_list_spec.rb
|
|
426
|
-
- spec/models/paginatedrpm_rpm_alternate_content_source_response_list_spec.rb
|
|
427
|
-
- spec/models/paginatedrpm_package_response_list_spec.rb
|
|
421
|
+
- spec/models/skip_types_enum_spec.rb
|
|
422
|
+
- spec/models/rpm_package_langpacks_response_spec.rb
|
|
423
|
+
- spec/models/rpm_rpm_publication_spec.rb
|
|
428
424
|
- spec/models/rpm_package_category_response_spec.rb
|
|
429
|
-
- spec/models/
|
|
430
|
-
- spec/models/
|
|
431
|
-
- spec/models/
|
|
432
|
-
- spec/models/
|
|
433
|
-
- spec/models/
|
|
434
|
-
- spec/models/rpm_rpm_distribution_spec.rb
|
|
435
|
-
- spec/models/rpm_package_spec.rb
|
|
436
|
-
- spec/models/paginatedrpm_distribution_tree_response_list_spec.rb
|
|
437
|
-
- spec/models/repair_spec.rb
|
|
438
|
-
- spec/models/rpm_modulemd_defaults_response_spec.rb
|
|
439
|
-
- spec/models/rpm_rpm_remote_response_hidden_fields_spec.rb
|
|
425
|
+
- spec/models/rpm_repository_sync_url_spec.rb
|
|
426
|
+
- spec/models/rpm_modulemd_defaults_spec.rb
|
|
427
|
+
- spec/models/patchedrpm_uln_remote_spec.rb
|
|
428
|
+
- spec/models/paginatedrpm_rpm_repository_response_list_spec.rb
|
|
429
|
+
- spec/models/paginatedrpm_modulemd_obsolete_response_list_spec.rb
|
|
440
430
|
- spec/models/metadata_checksum_type_enum_spec.rb
|
|
441
|
-
- spec/models/patchedrpm_rpm_alternate_content_source_spec.rb
|
|
442
|
-
- spec/models/rpm_rpm_repository_response_spec.rb
|
|
443
|
-
- spec/models/addon_response_spec.rb
|
|
444
|
-
- spec/models/repository_add_remove_content_spec.rb
|
|
445
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
446
431
|
- spec/models/rpm_modulemd_response_spec.rb
|
|
447
|
-
- spec/models/
|
|
432
|
+
- spec/models/package_checksum_type_enum_spec.rb
|
|
433
|
+
- spec/models/rpm_update_collection_spec.rb
|
|
434
|
+
- spec/models/rpm_rpm_remote_response_hidden_fields_spec.rb
|
|
435
|
+
- spec/models/rpm_distribution_tree_response_spec.rb
|
|
448
436
|
- spec/models/patchedrpm_rpm_remote_spec.rb
|
|
449
437
|
- spec/models/rpm_rpm_alternate_content_source_spec.rb
|
|
438
|
+
- spec/models/repository_add_remove_content_spec.rb
|
|
439
|
+
- spec/models/paginatedrpm_package_group_response_list_spec.rb
|
|
440
|
+
- spec/models/rpm_modulemd_obsolete_response_spec.rb
|
|
441
|
+
- spec/models/rpm_rpm_repository_response_spec.rb
|
|
442
|
+
- spec/models/sync_policy_enum_spec.rb
|
|
443
|
+
- spec/models/repair_spec.rb
|
|
444
|
+
- spec/models/patchedrpm_rpm_alternate_content_source_spec.rb
|
|
450
445
|
- spec/models/paginatedrpm_repo_metadata_file_response_list_spec.rb
|
|
451
|
-
- spec/models/
|
|
446
|
+
- spec/models/rpm_modulemd_defaults_response_spec.rb
|
|
452
447
|
- spec/models/rpm_rpm_repository_spec.rb
|
|
453
|
-
- spec/models/
|
|
454
|
-
- spec/models/
|
|
455
|
-
- spec/models/
|
|
456
|
-
- spec/models/rpm_distribution_tree_response_spec.rb
|
|
457
|
-
- spec/models/rpm_repo_metadata_file_response_spec.rb
|
|
458
|
-
- spec/models/rpm_rpm_publication_spec.rb
|
|
459
|
-
- spec/models/rpm_update_record_response_spec.rb
|
|
460
|
-
- spec/models/sync_policy_enum_spec.rb
|
|
461
|
-
- spec/models/rpm_package_langpacks_response_spec.rb
|
|
462
|
-
- spec/models/artifact_response_spec.rb
|
|
463
|
-
- spec/models/paginatedrpm_package_environment_response_list_spec.rb
|
|
464
|
-
- spec/models/rpm_rpm_remote_spec.rb
|
|
448
|
+
- spec/models/rpm_uln_remote_response_spec.rb
|
|
449
|
+
- spec/models/paginatedrpm_rpm_alternate_content_source_response_list_spec.rb
|
|
450
|
+
- spec/models/rpm_modulemd_obsolete_spec.rb
|
|
465
451
|
- spec/models/async_operation_response_spec.rb
|
|
466
|
-
- spec/models/
|
|
467
|
-
- spec/models/
|
|
468
|
-
- spec/models/
|
|
469
|
-
- spec/models/rpm_package_group_response_spec.rb
|
|
452
|
+
- spec/models/paginatedrpm_distribution_tree_response_list_spec.rb
|
|
453
|
+
- spec/models/checksum_response_spec.rb
|
|
454
|
+
- spec/models/paginatedrpm_rpm_publication_response_list_spec.rb
|
|
470
455
|
- spec/models/rpm_update_collection_response_spec.rb
|
|
471
|
-
- spec/models/
|
|
472
|
-
- spec/models/
|
|
473
|
-
- spec/models/
|
|
474
|
-
- spec/models/
|
|
456
|
+
- spec/models/rpm_package_spec.rb
|
|
457
|
+
- spec/models/rpm_rpm_remote_response_spec.rb
|
|
458
|
+
- spec/models/addon_response_spec.rb
|
|
459
|
+
- spec/models/rpm_rpm_distribution_response_spec.rb
|
|
460
|
+
- spec/models/rpm_uln_remote_spec.rb
|
|
461
|
+
- spec/models/paginatedrpm_package_response_list_spec.rb
|
|
462
|
+
- spec/models/policy_enum_spec.rb
|
|
463
|
+
- spec/models/paginatedrpm_package_category_response_list_spec.rb
|
|
464
|
+
- spec/models/variant_response_spec.rb
|
|
475
465
|
- spec/models/rpm_rpm_publication_response_spec.rb
|
|
466
|
+
- spec/models/rpm_rpm_remote_spec.rb
|
|
467
|
+
- spec/models/content_summary_response_spec.rb
|
|
468
|
+
- spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
|
|
476
469
|
- spec/models/rpm_package_environment_response_spec.rb
|
|
477
|
-
- spec/models/
|
|
478
|
-
- spec/models/
|
|
470
|
+
- spec/models/comps_xml_spec.rb
|
|
471
|
+
- spec/models/paginatedrpm_package_langpacks_response_list_spec.rb
|
|
472
|
+
- spec/models/artifact_response_spec.rb
|
|
473
|
+
- spec/models/paginatedrpm_uln_remote_response_list_spec.rb
|
|
474
|
+
- spec/models/rpm_rpm_distribution_spec.rb
|
|
475
|
+
- spec/models/paginatedrpm_package_environment_response_list_spec.rb
|
|
476
|
+
- spec/models/rpm_update_record_spec.rb
|
|
479
477
|
- spec/models/paginatedrpm_rpm_remote_response_list_spec.rb
|
|
480
|
-
- spec/models/paginatedrpm_rpm_distribution_response_list_spec.rb
|
|
481
478
|
- spec/models/task_group_operation_response_spec.rb
|
|
482
|
-
- spec/models/
|
|
483
|
-
- spec/models/
|
|
484
|
-
- spec/models/rpm_modulemd_obsolete_response_spec.rb
|
|
485
|
-
- spec/models/rpm_rpm_distribution_response_spec.rb
|
|
486
|
-
- spec/models/checksum_response_spec.rb
|
|
487
|
-
- spec/models/paginatedrpm_package_category_response_list_spec.rb
|
|
479
|
+
- spec/models/paginatedrpm_modulemd_response_list_spec.rb
|
|
480
|
+
- spec/models/patchedrpm_rpm_distribution_spec.rb
|
|
488
481
|
- spec/models/rpm_package_response_spec.rb
|
|
489
|
-
- spec/models/
|
|
482
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
483
|
+
- spec/models/paginatedrpm_rpm_distribution_response_list_spec.rb
|
|
484
|
+
- spec/models/paginatedrpm_update_record_response_list_spec.rb
|
|
485
|
+
- spec/models/patchedrpm_rpm_repository_spec.rb
|
|
486
|
+
- spec/models/rpm_update_record_response_spec.rb
|
|
487
|
+
- spec/models/rpm_package_group_response_spec.rb
|
|
488
|
+
- spec/models/copy_spec.rb
|
|
489
|
+
- spec/models/rpm_rpm_alternate_content_source_response_spec.rb
|
|
490
490
|
- spec/spec_helper.rb
|