pulp_rpm_client 3.18.0.dev1651552515 → 3.18.0.dev1651637854

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_rpm_client might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e5c3d71a3296ce92f4283f20af6fb4082d2e48310c18ac6c08ab547be45f51d
4
- data.tar.gz: a96521318c06197e858cf0844e9f390001b4eecb709d269d671c899dd0270140
3
+ metadata.gz: 5d7b36e6b7f12b0602f6040deffee5694d1a0d2f4d58522c2812d23417259f75
4
+ data.tar.gz: a56c7e25ec9ad4fe6d6b77c4c05af9331142194f6105620ebc5d9c11dd1279cc
5
5
  SHA512:
6
- metadata.gz: 1df1714f1343cc4bae12bb1c9bc13f204fa0fea8dd463886d5435f7c9944b3630f82e64f14d72a657b062a48c0d83d6d6fdcf4f58439291ded4c42328abf506c
7
- data.tar.gz: 19ada07231aaa131a701b18de6aaa0cb10a604fcaa7e4cc3b8fa14cd4023c5313e2126470ac5934703634f87fb547ece17868707403f7551c060454cf6705207
6
+ metadata.gz: d834d0fb65ab9bf90238a9837778521f6f76c6ff84c0ee6cee34b31861357c4a71a7ccae3d7c5002b161508ac81c894166d23be9369fea92d2ca0bc0ca7baee9
7
+ data.tar.gz: 92261288f6290b7ee4a2fbb11387ff124e06b24e366886dc1c349d67586f3b92afd6e460b69155484ce6eac193116c48ff1a93858f820bd60b8830d7bba34ac8
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.0.dev1651552515
10
+ - Package version: 3.18.0.dev1651637854
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.0.dev1651552515.gem
27
+ gem install ./pulp_rpm_client-3.18.0.dev1651637854.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_rpm_client-3.18.0.dev1651552515.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_rpm_client-3.18.0.dev1651637854.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.0.dev1651552515'
36
+ gem 'pulp_rpm_client', '~> 3.18.0.dev1651637854'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -207,6 +207,7 @@ opts = {
207
207
  pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
208
208
  pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
209
209
  pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
210
+ repository: 'repository_example', # String | Repository referenced by HREF
210
211
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
211
212
  fields: 'fields_example', # String | A list of fields to include in the response.
212
213
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
@@ -237,6 +238,7 @@ Name | Type | Description | Notes
237
238
  **pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
238
239
  **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
239
240
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
241
+ **repository** | **String**| Repository referenced by HREF | [optional]
240
242
  **repository_version** | [**String**](.md)| Repository Version referenced by HREF | [optional]
241
243
  **fields** | **String**| A list of fields to include in the response. | [optional]
242
244
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
@@ -225,6 +225,7 @@ module PulpRpmClient
225
225
  # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
226
226
  # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
227
227
  # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
228
+ # @option opts [String] :repository Repository referenced by HREF
228
229
  # @option opts [String] :repository_version Repository Version referenced by HREF
229
230
  # @option opts [String] :fields A list of fields to include in the response.
230
231
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
@@ -248,6 +249,7 @@ module PulpRpmClient
248
249
  # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
249
250
  # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
250
251
  # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
252
+ # @option opts [String] :repository Repository referenced by HREF
251
253
  # @option opts [String] :repository_version Repository Version referenced by HREF
252
254
  # @option opts [String] :fields A list of fields to include in the response.
253
255
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
@@ -272,6 +274,7 @@ module PulpRpmClient
272
274
  query_params[:'pulp_created__lt'] = opts[:'pulp_created__lt'] if !opts[:'pulp_created__lt'].nil?
273
275
  query_params[:'pulp_created__lte'] = opts[:'pulp_created__lte'] if !opts[:'pulp_created__lte'].nil?
274
276
  query_params[:'pulp_created__range'] = @api_client.build_collection_param(opts[:'pulp_created__range'], :csv) if !opts[:'pulp_created__range'].nil?
277
+ query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
275
278
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
276
279
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
277
280
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpRpmClient
14
- VERSION = '3.18.0.dev1651552515'
14
+ VERSION = '3.18.0.dev1651637854'
15
15
  end
@@ -83,6 +83,7 @@ describe 'PublicationsRpmApi' do
83
83
  # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
84
84
  # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
85
85
  # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
86
+ # @option opts [String] :repository Repository referenced by HREF
86
87
  # @option opts [String] :repository_version Repository Version referenced by HREF
87
88
  # @option opts [String] :fields A list of fields to include in the response.
88
89
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
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.0.dev1651552515
4
+ version: 3.18.0.dev1651637854
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-03 00:00:00.000000000 Z
11
+ date: 2022-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday