pulp_ostree_client 2.0.0a7.dev1673493275 → 2.0.0a7.dev1673579435

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

Potentially problematic release.


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

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fcc2be2a7553587390312faff18405036af5cc95c08e0f2bcc8c9e9e95fbf47e
4
- data.tar.gz: efa386c65a2d8d009109042f23d7f272197790e999d47cd65a1be9e6a947ecd8
3
+ metadata.gz: 95b00bd894fc75d72434efedd347ce93acdc49184e087a143df8e5be309f2a67
4
+ data.tar.gz: 428ed6d2ffeb718980d8041c5717711f365a570bfef9240039b6d116105fdc26
5
5
  SHA512:
6
- metadata.gz: 8b57471dc6ca56005a9aee29b02f6f24b69cc1efdb2767f8888722d61c84bc48a2587ced2c182def66ff42d4e6a59256d3f20694802d157b6fb9bf11c10c8297
7
- data.tar.gz: 7c2a3bc1fcbd8c692794853b046a2616ef06357c3d3ee0d9b39c55cb84a2c8b5b686f89ae6ddeb7ea201adeb0fae2420b06f51c446141d4186eac9cc39de587c
6
+ metadata.gz: e11956bfd27f27b844c9a1c57920489df3d4a9830e887e6909ee39a65712c66e982a700af9b12ecf32e303f63c43196c233c15e73aab32c46bcb0fbf1b16f978
7
+ data.tar.gz: 7d4893c1069df2781d0e63d3c5bac74420f115037e0fc5eb598666a3feb25bf1c1eff030966cb04e9b321de514586b38099de5ca55c1891caf2e49dfcbb7795f
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: 2.0.0a7.dev1673493275
10
+ - Package version: 2.0.0a7.dev1673579435
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_ostree_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_ostree_client-2.0.0a7.dev1673493275.gem
27
+ gem install ./pulp_ostree_client-2.0.0a7.dev1673579435.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_ostree_client-2.0.0a7.dev1673493275.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_ostree_client-2.0.0a7.dev1673579435.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_ostree_client', '~> 2.0.0a7.dev1673493275'
36
+ gem 'pulp_ostree_client', '~> 2.0.0a7.dev1673579435'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -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&lt;String&gt;**](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&lt;String&gt;**](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&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
191
195
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
@@ -161,6 +161,8 @@ module PulpOstreeClient
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 PulpOstreeClient
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 PulpOstreeClient
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?
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpOstreeClient
14
- VERSION = '2.0.0a7.dev1673493275'
14
+ VERSION = '2.0.0a7.dev1673579435'
15
15
  end
@@ -73,6 +73,8 @@ describe 'DistributionsOstreeApi' 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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_ostree_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0a7.dev1673493275
4
+ version: 2.0.0a7.dev1673579435
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-01-12 00:00:00.000000000 Z
11
+ date: 2023-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday