pulp_file_client 1.8.0.dev1620273900 → 1.8.0.dev1620705479

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

Potentially problematic release.


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

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b264b72562f5c3976c79e8835a830758c7698cfd83aa8710eaa342de856ce2bb
4
- data.tar.gz: 8c6f752f654908c728a4cd8536ecb369dd519380ec039b4d3f69f587a3295566
3
+ metadata.gz: b662008ea48ea648ff18658ad80e60181bb03f4b81fffd33f9cd61a17f2e0bf3
4
+ data.tar.gz: 809e79f2f3150813b3b01a0d12f7b6bb5ae1887936de4dc37545c084010b2b41
5
5
  SHA512:
6
- metadata.gz: 5bdd9d2cc07c1256cb60475e67e1d1bb7896091f977510ada51524651da33911b8fb94a831b33476e3c684200fe87db5e02d38ceb20a098b53d30b058afc9d66
7
- data.tar.gz: a1e8857b867b31a95d6849330d20897efe853e97991c648c964acf19c960092dbb34c730db3be3e2f7806b6db32df23d6952fb8e30fedec78a5591cb365f6495
6
+ metadata.gz: b96823fcabb1a6556e6924ca20b5e1df73f09b3fb8433186e236dcdcbd6394a1ca5366fddf8fd00d83d5f5630e7b82461529eb94574085805a04e336b0ed5da1
7
+ data.tar.gz: 4bdb9d923991aef211d674eee3bcbdfeebd3f59cc011b2e48034e9755f7bb8541d432f26b166fe00d4613b6e268d3480c8432159fb9c16b74a5eccf9ecd4612c
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: 1.8.0.dev1620273900
10
+ - Package version: 1.8.0.dev1620705479
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_file_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_file_client-1.8.0.dev1620273900.gem
27
+ gem install ./pulp_file_client-1.8.0.dev1620705479.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_file_client-1.8.0.dev1620273900.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_file_client-1.8.0.dev1620705479.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_file_client', '~> 1.8.0.dev1620273900'
36
+ gem 'pulp_file_client', '~> 1.8.0.dev1620705479'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -138,6 +138,8 @@ end
138
138
 
139
139
  api_instance = PulpFileClient::PublicationsFileApi.new
140
140
  opts = {
141
+ content: 'content_example', # String | Content Unit referenced by HREF
142
+ content__in: 'content__in_example', # String | Content Unit referenced by HREF
141
143
  limit: 56, # Integer | Number of results to return per page.
142
144
  offset: 56, # Integer | The initial index from which to return the results.
143
145
  ordering: 'ordering_example', # String | Which field to use when ordering the results.
@@ -166,6 +168,8 @@ end
166
168
 
167
169
  Name | Type | Description | Notes
168
170
  ------------- | ------------- | ------------- | -------------
171
+ **content** | **String**| Content Unit referenced by HREF | [optional]
172
+ **content__in** | **String**| Content Unit referenced by HREF | [optional]
169
173
  **limit** | **Integer**| Number of results to return per page. | [optional]
170
174
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
171
175
  **ordering** | **String**| Which field to use when ordering the results. | [optional]
@@ -146,6 +146,8 @@ module PulpFileClient
146
146
  # List file publications
147
147
  # A FilePublication contains metadata about all the File Content in a particular File Repository Version. Once a FilePublication has been created, it can be hosted using the File Distribution API.
148
148
  # @param [Hash] opts the optional parameters
149
+ # @option opts [String] :content Content Unit referenced by HREF
150
+ # @option opts [String] :content__in Content Unit referenced by HREF
149
151
  # @option opts [Integer] :limit Number of results to return per page.
150
152
  # @option opts [Integer] :offset The initial index from which to return the results.
151
153
  # @option opts [String] :ordering Which field to use when ordering the results.
@@ -167,6 +169,8 @@ module PulpFileClient
167
169
  # List file publications
168
170
  # A FilePublication contains metadata about all the File Content in a particular File Repository Version. Once a FilePublication has been created, it can be hosted using the File Distribution API.
169
171
  # @param [Hash] opts the optional parameters
172
+ # @option opts [String] :content Content Unit referenced by HREF
173
+ # @option opts [String] :content__in Content Unit referenced by HREF
170
174
  # @option opts [Integer] :limit Number of results to return per page.
171
175
  # @option opts [Integer] :offset The initial index from which to return the results.
172
176
  # @option opts [String] :ordering Which field to use when ordering the results.
@@ -189,6 +193,8 @@ module PulpFileClient
189
193
 
190
194
  # query parameters
191
195
  query_params = opts[:query_params] || {}
196
+ query_params[:'content'] = opts[:'content'] if !opts[:'content'].nil?
197
+ query_params[:'content__in'] = opts[:'content__in'] if !opts[:'content__in'].nil?
192
198
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
193
199
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
194
200
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpFileClient
14
- VERSION = '1.8.0.dev1620273900'
14
+ VERSION = '1.8.0.dev1620705479'
15
15
  end
@@ -60,6 +60,8 @@ describe 'PublicationsFileApi' do
60
60
  # List file publications
61
61
  # A FilePublication contains metadata about all the File Content in a particular File Repository Version. Once a FilePublication has been created, it can be hosted using the File Distribution API.
62
62
  # @param [Hash] opts the optional parameters
63
+ # @option opts [String] :content Content Unit referenced by HREF
64
+ # @option opts [String] :content__in Content Unit referenced by HREF
63
65
  # @option opts [Integer] :limit Number of results to return per page.
64
66
  # @option opts [Integer] :offset The initial index from which to return the results.
65
67
  # @option opts [String] :ordering Which field to use when ordering the results.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_file_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0.dev1620273900
4
+ version: 1.8.0.dev1620705479
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-06 00:00:00.000000000 Z
11
+ date: 2021-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -234,48 +234,48 @@ signing_key:
234
234
  specification_version: 4
235
235
  summary: Pulp 3 API Ruby Gem
236
236
  test_files:
237
- - spec/api/content_files_api_spec.rb
238
- - spec/api/repositories_file_api_spec.rb
239
- - spec/api/remotes_file_api_spec.rb
240
- - spec/api/exporters_filesystem_api_spec.rb
241
- - spec/api/exporters_file_exports_api_spec.rb
242
237
  - spec/api/publications_file_api_spec.rb
238
+ - spec/api/content_files_api_spec.rb
243
239
  - spec/api/distributions_file_api_spec.rb
240
+ - spec/api/exporters_file_exports_api_spec.rb
241
+ - spec/api/exporters_filesystem_api_spec.rb
242
+ - spec/api/repositories_file_api_spec.rb
244
243
  - spec/api/repositories_file_versions_api_spec.rb
244
+ - spec/api/remotes_file_api_spec.rb
245
245
  - spec/api_client_spec.rb
246
246
  - spec/configuration_spec.rb
247
- - spec/models/paginated_export_response_list_spec.rb
247
+ - spec/models/patchedfile_file_distribution_spec.rb
248
248
  - spec/models/file_file_filesystem_exporter_response_spec.rb
249
- - spec/models/paginatedfile_file_remote_response_list_spec.rb
250
- - spec/models/patchedfile_file_remote_spec.rb
251
- - spec/models/file_file_publication_response_spec.rb
249
+ - spec/models/repository_version_spec.rb
250
+ - spec/models/file_file_remote_response_spec.rb
251
+ - spec/models/paginatedfile_file_distribution_response_list_spec.rb
252
252
  - spec/models/file_file_remote_spec.rb
253
- - spec/models/content_summary_spec.rb
253
+ - spec/models/policy_enum_spec.rb
254
+ - spec/models/file_file_publication_response_spec.rb
255
+ - spec/models/paginatedfile_file_content_response_list_spec.rb
256
+ - spec/models/export_response_spec.rb
257
+ - spec/models/paginatedfile_file_repository_response_list_spec.rb
258
+ - spec/models/file_file_distribution_spec.rb
259
+ - spec/models/repository_version_response_spec.rb
260
+ - spec/models/async_operation_response_spec.rb
261
+ - spec/models/repository_add_remove_content_spec.rb
254
262
  - spec/models/file_file_distribution_response_spec.rb
263
+ - spec/models/patchedfile_file_remote_spec.rb
255
264
  - spec/models/patchedfile_file_repository_spec.rb
265
+ - spec/models/content_summary_spec.rb
266
+ - spec/models/paginatedfile_file_remote_response_list_spec.rb
267
+ - spec/models/file_file_filesystem_exporter_spec.rb
256
268
  - spec/models/file_file_publication_spec.rb
257
- - spec/models/paginatedfile_file_publication_response_list_spec.rb
258
- - spec/models/export_response_spec.rb
259
- - spec/models/file_file_content_spec.rb
260
- - spec/models/publication_export_spec.rb
261
- - spec/models/paginatedfile_file_repository_response_list_spec.rb
262
269
  - spec/models/content_summary_response_spec.rb
263
- - spec/models/file_file_filesystem_exporter_spec.rb
264
- - spec/models/patchedfile_file_distribution_spec.rb
270
+ - spec/models/paginated_repository_version_response_list_spec.rb
265
271
  - spec/models/file_file_repository_response_spec.rb
266
- - spec/models/patchedfile_file_filesystem_exporter_spec.rb
267
- - spec/models/repository_add_remove_content_spec.rb
268
- - spec/models/paginatedfile_file_content_response_list_spec.rb
272
+ - spec/models/paginatedfile_file_publication_response_list_spec.rb
269
273
  - spec/models/file_file_content_response_spec.rb
270
- - spec/models/repository_version_spec.rb
271
- - spec/models/file_file_distribution_spec.rb
272
- - spec/models/paginated_repository_version_response_list_spec.rb
273
- - spec/models/paginatedfile_file_distribution_response_list_spec.rb
274
- - spec/models/repository_sync_url_spec.rb
275
- - spec/models/repository_version_response_spec.rb
276
- - spec/models/file_file_remote_response_spec.rb
277
- - spec/models/policy_enum_spec.rb
278
274
  - spec/models/paginatedfile_file_filesystem_exporter_response_list_spec.rb
275
+ - spec/models/paginated_export_response_list_spec.rb
276
+ - spec/models/repository_sync_url_spec.rb
279
277
  - spec/models/file_file_repository_spec.rb
280
- - spec/models/async_operation_response_spec.rb
278
+ - spec/models/file_file_content_spec.rb
279
+ - spec/models/patchedfile_file_filesystem_exporter_spec.rb
280
+ - spec/models/publication_export_spec.rb
281
281
  - spec/spec_helper.rb