pulp_file_client 1.14.2 → 1.14.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59fa6dcf2fdfcf68af9e921617ee100a9ca96081eb210f5b2955816eccde3732
4
- data.tar.gz: 7d7aa5a7821c850ec891fdc9b119af340caa829bdca831dc0211af020802f5c3
3
+ metadata.gz: e41fed49220b993de6d9af0a762a3aa55a0f0cbb6ebb41d59bc254471df141e6
4
+ data.tar.gz: 379d4b64b0c73ef619acbc0dd4ba8446c6c726378da1251f04592ed84fe0c485
5
5
  SHA512:
6
- metadata.gz: '0418666b20a7a5cc4ea1dd6002596b5455ac35fa6696f3bf263cbdfa16a949a07a89de1732f5828dde53821108dd5214a7844d7412f02fdc628aea19825a1e60'
7
- data.tar.gz: 011adcb2b6d9f3c41f2a795e3d4e1684e2bb717f98d0a455b808ee02028c4abb598819685ea578e36bec17ec9dccbe70d3d24f8cad6185ae3553ab1c3429ded4
6
+ metadata.gz: a6643d48162a30e90295043d1c75c3e86aeb0d83abca697a1352aee7b3bce43b4fc278eabfd10f82e32fdeb0c2c9af22ac54b94ddc4b24d0afc7108cd41db999
7
+ data.tar.gz: ae010860decada80eadf99bb37b0bbf7e000638230456f97cbf1dcb1d6c149b61cf036b1b9f1b7699f87e162a4e9209b2aecb328a14dba5b8691c02ad3b1601f
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.14.2
10
+ - Package version: 1.14.3
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.14.2.gem
27
+ gem install ./pulp_file_client-1.14.3.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_file_client-1.14.2.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_file_client-1.14.3.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.14.2'
36
+ gem 'pulp_file_client', '~> 1.14.3'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -201,6 +201,7 @@ end
201
201
 
202
202
  api_instance = PulpFileClient::RepositoriesFileApi.new
203
203
  opts = {
204
+ latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF
204
205
  limit: 56, # Integer | Number of results to return per page.
205
206
  name: 'name_example', # String | Filter results where name matches value
206
207
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -221,6 +222,7 @@ opts = {
221
222
  retain_repo_versions__lte: 56, # Integer | Filter results where retain_repo_versions is less than or equal to value
222
223
  retain_repo_versions__ne: 56, # Integer | Filter results where retain_repo_versions not equal to value
223
224
  retain_repo_versions__range: [56], # Array<Integer> | Filter results where retain_repo_versions is between two comma separated values
225
+ with_content: 'with_content_example', # String | Content Unit referenced by HREF
224
226
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
225
227
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
226
228
  }
@@ -239,6 +241,7 @@ end
239
241
 
240
242
  Name | Type | Description | Notes
241
243
  ------------- | ------------- | ------------- | -------------
244
+ **latest_with_content** | **String**| Content Unit referenced by HREF | [optional]
242
245
  **limit** | **Integer**| Number of results to return per page. | [optional]
243
246
  **name** | **String**| Filter results where name matches value | [optional]
244
247
  **name__contains** | **String**| Filter results where name contains value | [optional]
@@ -259,6 +262,7 @@ Name | Type | Description | Notes
259
262
  **retain_repo_versions__lte** | **Integer**| Filter results where retain_repo_versions is less than or equal to value | [optional]
260
263
  **retain_repo_versions__ne** | **Integer**| Filter results where retain_repo_versions not equal to value | [optional]
261
264
  **retain_repo_versions__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where retain_repo_versions is between two comma separated values | [optional]
265
+ **with_content** | **String**| Content Unit referenced by HREF | [optional]
262
266
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
263
267
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
264
268
 
@@ -216,6 +216,7 @@ module PulpFileClient
216
216
  # List file repositorys
217
217
  # FileRepository represents a single file repository, to which content can be synced, added, or removed.
218
218
  # @param [Hash] opts the optional parameters
219
+ # @option opts [String] :latest_with_content Content Unit referenced by HREF
219
220
  # @option opts [Integer] :limit Number of results to return per page.
220
221
  # @option opts [String] :name Filter results where name matches value
221
222
  # @option opts [String] :name__contains Filter results where name contains value
@@ -236,6 +237,7 @@ module PulpFileClient
236
237
  # @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
237
238
  # @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
238
239
  # @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
240
+ # @option opts [String] :with_content Content Unit referenced by HREF
239
241
  # @option opts [Array<String>] :fields A list of fields to include in the response.
240
242
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
241
243
  # @return [PaginatedfileFileRepositoryResponseList]
@@ -247,6 +249,7 @@ module PulpFileClient
247
249
  # List file repositorys
248
250
  # FileRepository represents a single file repository, to which content can be synced, added, or removed.
249
251
  # @param [Hash] opts the optional parameters
252
+ # @option opts [String] :latest_with_content Content Unit referenced by HREF
250
253
  # @option opts [Integer] :limit Number of results to return per page.
251
254
  # @option opts [String] :name Filter results where name matches value
252
255
  # @option opts [String] :name__contains Filter results where name contains value
@@ -267,6 +270,7 @@ module PulpFileClient
267
270
  # @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
268
271
  # @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
269
272
  # @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
273
+ # @option opts [String] :with_content Content Unit referenced by HREF
270
274
  # @option opts [Array<String>] :fields A list of fields to include in the response.
271
275
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
272
276
  # @return [Array<(PaginatedfileFileRepositoryResponseList, Integer, Hash)>] PaginatedfileFileRepositoryResponseList data, response status code and response headers
@@ -283,6 +287,7 @@ module PulpFileClient
283
287
 
284
288
  # query parameters
285
289
  query_params = opts[:query_params] || {}
290
+ query_params[:'latest_with_content'] = opts[:'latest_with_content'] if !opts[:'latest_with_content'].nil?
286
291
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
287
292
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
288
293
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
@@ -303,6 +308,7 @@ module PulpFileClient
303
308
  query_params[:'retain_repo_versions__lte'] = opts[:'retain_repo_versions__lte'] if !opts[:'retain_repo_versions__lte'].nil?
304
309
  query_params[:'retain_repo_versions__ne'] = opts[:'retain_repo_versions__ne'] if !opts[:'retain_repo_versions__ne'].nil?
305
310
  query_params[:'retain_repo_versions__range'] = @api_client.build_collection_param(opts[:'retain_repo_versions__range'], :csv) if !opts[:'retain_repo_versions__range'].nil?
311
+ query_params[:'with_content'] = opts[:'with_content'] if !opts[:'with_content'].nil?
306
312
  query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
307
313
  query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
308
314
 
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpFileClient
14
- VERSION = '1.14.2'
14
+ VERSION = '1.14.3'
15
15
  end
@@ -72,6 +72,7 @@ describe 'RepositoriesFileApi' do
72
72
  # List file repositorys
73
73
  # FileRepository represents a single file repository, to which content can be synced, added, or removed.
74
74
  # @param [Hash] opts the optional parameters
75
+ # @option opts [String] :latest_with_content Content Unit referenced by HREF
75
76
  # @option opts [Integer] :limit Number of results to return per page.
76
77
  # @option opts [String] :name Filter results where name matches value
77
78
  # @option opts [String] :name__contains Filter results where name contains value
@@ -92,6 +93,7 @@ describe 'RepositoriesFileApi' do
92
93
  # @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
93
94
  # @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
94
95
  # @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
96
+ # @option opts [String] :with_content Content Unit referenced by HREF
95
97
  # @option opts [Array<String>] :fields A list of fields to include in the response.
96
98
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
97
99
  # @return [PaginatedfileFileRepositoryResponseList]
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.14.2
4
+ version: 1.14.3
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-05-04 00:00:00.000000000 Z
11
+ date: 2023-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -242,49 +242,49 @@ signing_key:
242
242
  specification_version: 4
243
243
  summary: Pulp 3 API Ruby Gem
244
244
  test_files:
245
- - spec/api/distributions_file_api_spec.rb
246
245
  - spec/api/repositories_file_versions_api_spec.rb
247
- - spec/api/repositories_file_api_spec.rb
246
+ - spec/api/distributions_file_api_spec.rb
247
+ - spec/api/content_files_api_spec.rb
248
248
  - spec/api/remotes_file_api_spec.rb
249
249
  - spec/api/publications_file_api_spec.rb
250
250
  - spec/api/acs_file_api_spec.rb
251
- - spec/api/content_files_api_spec.rb
251
+ - spec/api/repositories_file_api_spec.rb
252
252
  - spec/api_client_spec.rb
253
253
  - spec/configuration_spec.rb
254
- - spec/models/repository_version_response_spec.rb
255
- - spec/models/paginated_repository_version_response_list_spec.rb
256
- - spec/models/file_file_repository_spec.rb
257
- - spec/models/file_file_alternate_content_source_response_spec.rb
258
- - spec/models/file_file_publication_response_spec.rb
259
- - spec/models/my_permissions_response_spec.rb
254
+ - spec/models/file_file_repository_response_spec.rb
255
+ - spec/models/patchedfile_file_remote_spec.rb
260
256
  - spec/models/paginatedfile_file_remote_response_list_spec.rb
261
- - spec/models/file_file_content_response_spec.rb
262
- - spec/models/async_operation_response_spec.rb
263
- - spec/models/paginatedfile_file_publication_response_list_spec.rb
257
+ - spec/models/nested_role_response_spec.rb
264
258
  - spec/models/content_summary_response_spec.rb
265
- - spec/models/policy_enum_spec.rb
266
- - spec/models/nested_role_spec.rb
267
- - spec/models/patchedfile_file_distribution_spec.rb
268
- - spec/models/paginatedfile_file_distribution_response_list_spec.rb
269
- - spec/models/patchedfile_file_alternate_content_source_spec.rb
270
- - spec/models/file_file_remote_response_hidden_fields_spec.rb
271
- - spec/models/file_file_remote_spec.rb
259
+ - spec/models/file_file_alternate_content_source_spec.rb
260
+ - spec/models/file_file_distribution_spec.rb
272
261
  - spec/models/object_roles_response_spec.rb
273
- - spec/models/file_file_content_spec.rb
274
- - spec/models/patchedfile_file_remote_spec.rb
275
- - spec/models/file_file_repository_response_spec.rb
276
- - spec/models/patchedfile_file_repository_spec.rb
277
- - spec/models/file_file_remote_response_spec.rb
278
- - spec/models/paginatedfile_file_content_response_list_spec.rb
279
262
  - spec/models/task_group_operation_response_spec.rb
280
- - spec/models/file_file_distribution_spec.rb
281
- - spec/models/nested_role_response_spec.rb
282
- - spec/models/file_file_publication_spec.rb
283
- - spec/models/file_file_alternate_content_source_spec.rb
263
+ - spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
264
+ - spec/models/file_file_content_spec.rb
265
+ - spec/models/repository_sync_url_spec.rb
284
266
  - spec/models/repository_add_remove_content_spec.rb
267
+ - spec/models/paginatedfile_file_content_response_list_spec.rb
268
+ - spec/models/nested_role_spec.rb
269
+ - spec/models/file_file_publication_response_spec.rb
270
+ - spec/models/paginatedfile_file_repository_response_list_spec.rb
271
+ - spec/models/paginatedfile_file_distribution_response_list_spec.rb
285
272
  - spec/models/repair_spec.rb
273
+ - spec/models/file_file_content_response_spec.rb
286
274
  - spec/models/file_file_distribution_response_spec.rb
287
- - spec/models/paginatedfile_file_repository_response_list_spec.rb
288
- - spec/models/repository_sync_url_spec.rb
289
- - spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
275
+ - spec/models/policy_enum_spec.rb
276
+ - spec/models/paginatedfile_file_publication_response_list_spec.rb
277
+ - spec/models/patchedfile_file_repository_spec.rb
278
+ - spec/models/my_permissions_response_spec.rb
279
+ - spec/models/file_file_remote_spec.rb
280
+ - spec/models/paginated_repository_version_response_list_spec.rb
281
+ - spec/models/async_operation_response_spec.rb
282
+ - spec/models/patchedfile_file_distribution_spec.rb
283
+ - spec/models/file_file_alternate_content_source_response_spec.rb
284
+ - spec/models/file_file_remote_response_hidden_fields_spec.rb
285
+ - spec/models/repository_version_response_spec.rb
286
+ - spec/models/file_file_repository_spec.rb
287
+ - spec/models/file_file_remote_response_spec.rb
288
+ - spec/models/file_file_publication_spec.rb
289
+ - spec/models/patchedfile_file_alternate_content_source_spec.rb
290
290
  - spec/spec_helper.rb