pulp_file_client 3.62.0 → 3.63.0

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AcsFileApi.md +2 -0
  4. data/docs/ContentFilesApi.md +8 -6
  5. data/docs/DistributionsFileApi.md +2 -0
  6. data/docs/FileFileAlternateContentSourceResponse.md +2 -0
  7. data/docs/FileFileContentResponse.md +2 -0
  8. data/docs/FileFileDistributionResponse.md +2 -0
  9. data/docs/FileFilePublicationResponse.md +2 -0
  10. data/docs/FileFileRemoteResponse.md +2 -0
  11. data/docs/FileFileRepositoryResponse.md +2 -0
  12. data/docs/PublicationsFileApi.md +8 -6
  13. data/docs/RemotesFileApi.md +2 -0
  14. data/docs/RepositoriesFileApi.md +6 -4
  15. data/docs/RepositoriesFileVersionsApi.md +4 -2
  16. data/docs/RepositoryVersionResponse.md +2 -0
  17. data/lib/pulp_file_client/api/acs_file_api.rb +3 -0
  18. data/lib/pulp_file_client/api/content_files_api.rb +9 -6
  19. data/lib/pulp_file_client/api/distributions_file_api.rb +3 -0
  20. data/lib/pulp_file_client/api/publications_file_api.rb +9 -6
  21. data/lib/pulp_file_client/api/remotes_file_api.rb +3 -0
  22. data/lib/pulp_file_client/api/repositories_file_api.rb +7 -4
  23. data/lib/pulp_file_client/api/repositories_file_versions_api.rb +5 -2
  24. data/lib/pulp_file_client/models/file_file_alternate_content_source_response.rb +11 -1
  25. data/lib/pulp_file_client/models/file_file_content_response.rb +11 -1
  26. data/lib/pulp_file_client/models/file_file_distribution_response.rb +11 -1
  27. data/lib/pulp_file_client/models/file_file_publication_response.rb +11 -1
  28. data/lib/pulp_file_client/models/file_file_remote_response.rb +11 -1
  29. data/lib/pulp_file_client/models/file_file_repository_response.rb +11 -1
  30. data/lib/pulp_file_client/models/repository_version_response.rb +11 -1
  31. data/lib/pulp_file_client/version.rb +1 -1
  32. data/spec/api/acs_file_api_spec.rb +1 -0
  33. data/spec/api/content_files_api_spec.rb +4 -3
  34. data/spec/api/distributions_file_api_spec.rb +1 -0
  35. data/spec/api/publications_file_api_spec.rb +4 -3
  36. data/spec/api/remotes_file_api_spec.rb +1 -0
  37. data/spec/api/repositories_file_api_spec.rb +3 -2
  38. data/spec/api/repositories_file_versions_api_spec.rb +2 -1
  39. data/spec/models/file_file_alternate_content_source_response_spec.rb +6 -0
  40. data/spec/models/file_file_content_response_spec.rb +6 -0
  41. data/spec/models/file_file_distribution_response_spec.rb +6 -0
  42. data/spec/models/file_file_publication_response_spec.rb +6 -0
  43. data/spec/models/file_file_remote_response_spec.rb +6 -0
  44. data/spec/models/file_file_repository_response_spec.rb +6 -0
  45. data/spec/models/repository_version_response_spec.rb +6 -0
  46. metadata +2 -2
@@ -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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;number&#x60; - Number * &#x60;-number&#x60; - Number (descending) * &#x60;complete&#x60; - Complete * &#x60;-complete&#x60; - Complete (descending) * &#x60;info&#x60; - Info * &#x60;-info&#x60; - Info (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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.62.0
4
+ version: 3.63.0
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-09-25 00:00:00.000000000 Z
11
+ date: 2024-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday