pulp_file_client 3.61.0 → 3.63.0

Sign up to get free protection for your applications and to get access to all the features.
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 +10 -8
  13. data/docs/RemotesFileApi.md +2 -0
  14. data/docs/RepositoriesFileApi.md +6 -4
  15. data/docs/RepositoriesFileVersionsApi.md +6 -4
  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 +12 -9
  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 +8 -5
  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 +5 -4
  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 +3 -2
  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
@@ -73,7 +73,7 @@ describe 'RepositoriesFileApi' do
73
73
  # List file repositorys
74
74
  # FileRepository represents a single file repository, to which content can be synced, added, or removed.
75
75
  # @param [Hash] opts the optional parameters
76
- # @option opts [String] :latest_with_content Content Unit referenced by HREF
76
+ # @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
77
77
  # @option opts [Integer] :limit Number of results to return per page.
78
78
  # @option opts [String] :name Filter results where name matches value
79
79
  # @option opts [String] :name__contains Filter results where name contains value
@@ -86,6 +86,7 @@ describe 'RepositoriesFileApi' do
86
86
  # @option opts [String] :name__startswith Filter results where name starts with value
87
87
  # @option opts [Integer] :offset The initial index from which to return the results.
88
88
  # @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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
89
+ # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
89
90
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
90
91
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
91
92
  # @option opts [String] :pulp_label_select Filter labels by search string
@@ -99,7 +100,7 @@ describe 'RepositoriesFileApi' do
99
100
  # @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
100
101
  # @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
101
102
  # @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
102
- # @option opts [String] :with_content Content Unit referenced by HREF
103
+ # @option opts [String] :with_content Content Unit referenced by HREF/PRN
103
104
  # @option opts [Array<String>] :fields A list of fields to include in the response.
104
105
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
105
106
  # @return [PaginatedfileFileRepositoryResponseList]
@@ -49,8 +49,8 @@ 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
53
- # @option opts [String] :content__in Content Unit referenced by HREF
52
+ # @option opts [String] :content Content Unit referenced by HREF/PRN
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
56
56
  # @option opts [Integer] :number__gt Filter results where number is greater than 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.61.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-18 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