pulp_file_client 3.62.0 → 3.63.1
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/AcsFileApi.md +2 -0
- data/docs/ContentFilesApi.md +8 -6
- data/docs/DistributionsFileApi.md +2 -0
- data/docs/FileFileAlternateContentSourceResponse.md +2 -0
- data/docs/FileFileContentResponse.md +2 -0
- data/docs/FileFileDistributionResponse.md +2 -0
- data/docs/FileFilePublicationResponse.md +2 -0
- data/docs/FileFileRemoteResponse.md +2 -0
- data/docs/FileFileRepositoryResponse.md +2 -0
- data/docs/PublicationsFileApi.md +8 -6
- data/docs/RemotesFileApi.md +2 -0
- data/docs/RepositoriesFileApi.md +6 -4
- data/docs/RepositoriesFileVersionsApi.md +4 -2
- data/docs/RepositoryVersionResponse.md +2 -0
- data/lib/pulp_file_client/api/acs_file_api.rb +3 -0
- data/lib/pulp_file_client/api/content_files_api.rb +9 -6
- data/lib/pulp_file_client/api/distributions_file_api.rb +3 -0
- data/lib/pulp_file_client/api/publications_file_api.rb +9 -6
- data/lib/pulp_file_client/api/remotes_file_api.rb +3 -0
- data/lib/pulp_file_client/api/repositories_file_api.rb +7 -4
- data/lib/pulp_file_client/api/repositories_file_versions_api.rb +5 -2
- data/lib/pulp_file_client/models/file_file_alternate_content_source_response.rb +11 -1
- data/lib/pulp_file_client/models/file_file_content_response.rb +11 -1
- data/lib/pulp_file_client/models/file_file_distribution_response.rb +11 -1
- data/lib/pulp_file_client/models/file_file_publication_response.rb +11 -1
- data/lib/pulp_file_client/models/file_file_remote_response.rb +11 -1
- data/lib/pulp_file_client/models/file_file_repository_response.rb +11 -1
- data/lib/pulp_file_client/models/repository_version_response.rb +11 -1
- data/lib/pulp_file_client/version.rb +1 -1
- data/spec/api/acs_file_api_spec.rb +1 -0
- data/spec/api/content_files_api_spec.rb +4 -3
- data/spec/api/distributions_file_api_spec.rb +1 -0
- data/spec/api/publications_file_api_spec.rb +4 -3
- data/spec/api/remotes_file_api_spec.rb +1 -0
- data/spec/api/repositories_file_api_spec.rb +3 -2
- data/spec/api/repositories_file_versions_api_spec.rb +2 -1
- data/spec/models/file_file_alternate_content_source_response_spec.rb +6 -0
- data/spec/models/file_file_content_response_spec.rb +6 -0
- data/spec/models/file_file_distribution_response_spec.rb +6 -0
- data/spec/models/file_file_publication_response_spec.rb +6 -0
- data/spec/models/file_file_remote_response_spec.rb +6 -0
- data/spec/models/file_file_repository_response_spec.rb +6 -0
- data/spec/models/repository_version_response_spec.rb +6 -0
- metadata +33 -33
@@ -49,7 +49,7 @@ describe 'RepositoriesFileVersionsApi' do
|
|
49
49
|
# FileRepositoryVersion represents a single file repository version.
|
50
50
|
# @param file_file_repository_href
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @option opts [String] :content Content Unit referenced by HREF
|
52
|
+
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
53
53
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
54
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
55
55
|
# @option opts [Integer] :number Filter results where number matches value
|
@@ -60,6 +60,7 @@ describe 'RepositoriesFileVersionsApi' do
|
|
60
60
|
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
61
61
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
62
62
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
63
|
+
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
63
64
|
# @option opts [DateTime] :pulp_created Filter results where pulp_created matches value
|
64
65
|
# @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
|
65
66
|
# @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
@@ -38,6 +38,12 @@ describe 'FileFileAlternateContentSourceResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "prn"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
41
47
|
describe 'test attribute "pulp_created"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,6 +38,12 @@ describe 'FileFileContentResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "prn"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
41
47
|
describe 'test attribute "pulp_created"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,6 +38,12 @@ describe 'FileFileDistributionResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "prn"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
41
47
|
describe 'test attribute "pulp_created"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,6 +38,12 @@ describe 'FileFilePublicationResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "prn"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
41
47
|
describe 'test attribute "pulp_created"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,6 +38,12 @@ describe 'FileFileRemoteResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "prn"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
41
47
|
describe 'test attribute "pulp_created"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,6 +38,12 @@ describe 'FileFileRepositoryResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "prn"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
41
47
|
describe 'test attribute "pulp_created"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,6 +38,12 @@ describe 'RepositoryVersionResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "prn"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
41
47
|
describe 'test attribute "pulp_created"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
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: 3.
|
4
|
+
version: 3.63.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -255,52 +255,52 @@ specification_version: 4
|
|
255
255
|
summary: Pulp 3 API Ruby Gem
|
256
256
|
test_files:
|
257
257
|
- spec/api/remotes_file_api_spec.rb
|
258
|
-
- spec/api/content_files_api_spec.rb
|
259
258
|
- spec/api/distributions_file_api_spec.rb
|
260
259
|
- spec/api/acs_file_api_spec.rb
|
261
|
-
- spec/api/repositories_file_api_spec.rb
|
262
260
|
- spec/api/repositories_file_versions_api_spec.rb
|
263
261
|
- spec/api/publications_file_api_spec.rb
|
262
|
+
- spec/api/repositories_file_api_spec.rb
|
263
|
+
- spec/api/content_files_api_spec.rb
|
264
264
|
- spec/api_client_spec.rb
|
265
265
|
- spec/configuration_spec.rb
|
266
|
+
- spec/models/repository_version_response_spec.rb
|
267
|
+
- spec/models/patchedfile_file_remote_spec.rb
|
268
|
+
- spec/models/repository_add_remove_content_spec.rb
|
266
269
|
- spec/models/patchedfile_file_alternate_content_source_spec.rb
|
267
|
-
- spec/models/repository_sync_url_spec.rb
|
268
270
|
- spec/models/paginatedfile_file_repository_response_list_spec.rb
|
269
|
-
- spec/models/
|
270
|
-
- spec/models/
|
271
|
-
- spec/models/content_summary_response_spec.rb
|
272
|
-
- spec/models/patchedfile_file_repository_spec.rb
|
271
|
+
- spec/models/set_label_response_spec.rb
|
272
|
+
- spec/models/file_file_remote_response_spec.rb
|
273
273
|
- spec/models/paginatedfile_file_remote_response_list_spec.rb
|
274
|
-
- spec/models/nested_role_response_spec.rb
|
275
|
-
- spec/models/file_file_publication_response_spec.rb
|
276
|
-
- spec/models/repository_add_remove_content_spec.rb
|
277
274
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
278
|
-
- spec/models/
|
279
|
-
- spec/models/
|
280
|
-
- spec/models/
|
281
|
-
- spec/models/
|
282
|
-
- spec/models/
|
283
|
-
- spec/models/file_file_content_response_spec.rb
|
284
|
-
- spec/models/file_file_publication_spec.rb
|
285
|
-
- spec/models/paginatedfile_file_content_response_list_spec.rb
|
286
|
-
- spec/models/set_label_spec.rb
|
275
|
+
- spec/models/file_file_publication_response_spec.rb
|
276
|
+
- spec/models/file_file_repository_response_spec.rb
|
277
|
+
- spec/models/file_file_distribution_spec.rb
|
278
|
+
- spec/models/object_roles_response_spec.rb
|
279
|
+
- spec/models/task_group_operation_response_spec.rb
|
287
280
|
- spec/models/policy_enum_spec.rb
|
281
|
+
- spec/models/unset_label_response_spec.rb
|
282
|
+
- spec/models/repository_sync_url_spec.rb
|
283
|
+
- spec/models/file_file_remote_spec.rb
|
284
|
+
- spec/models/nested_role_response_spec.rb
|
285
|
+
- spec/models/async_operation_response_spec.rb
|
288
286
|
- spec/models/file_file_content_spec.rb
|
289
|
-
- spec/models/
|
287
|
+
- spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
|
288
|
+
- spec/models/file_file_content_response_spec.rb
|
289
|
+
- spec/models/file_file_alternate_content_source_spec.rb
|
290
|
+
- spec/models/file_file_alternate_content_source_response_spec.rb
|
291
|
+
- spec/models/content_summary_response_spec.rb
|
290
292
|
- spec/models/paginatedfile_file_publication_response_list_spec.rb
|
291
293
|
- spec/models/paginatedfile_file_distribution_response_list_spec.rb
|
292
|
-
- spec/models/file_file_remote_response_spec.rb
|
293
|
-
- spec/models/file_file_remote_response_hidden_fields_spec.rb
|
294
|
-
- spec/models/file_file_alternate_content_source_response_spec.rb
|
295
|
-
- spec/models/file_file_alternate_content_source_spec.rb
|
296
294
|
- spec/models/file_file_repository_spec.rb
|
297
295
|
- spec/models/unset_label_spec.rb
|
298
|
-
- spec/models/
|
299
|
-
- spec/models/
|
300
|
-
- spec/models/
|
301
|
-
- spec/models/task_group_operation_response_spec.rb
|
302
|
-
- spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
|
296
|
+
- spec/models/file_file_remote_response_hidden_fields_spec.rb
|
297
|
+
- spec/models/my_permissions_response_spec.rb
|
298
|
+
- spec/models/patchedfile_file_repository_spec.rb
|
303
299
|
- spec/models/file_file_distribution_response_spec.rb
|
304
|
-
- spec/models/
|
305
|
-
- spec/models/
|
300
|
+
- spec/models/repair_spec.rb
|
301
|
+
- spec/models/set_label_spec.rb
|
302
|
+
- spec/models/paginatedfile_file_content_response_list_spec.rb
|
303
|
+
- spec/models/nested_role_spec.rb
|
304
|
+
- spec/models/patchedfile_file_distribution_spec.rb
|
305
|
+
- spec/models/file_file_publication_spec.rb
|
306
306
|
- spec/spec_helper.rb
|