pulp_deb_client 2.21.2 → 3.0.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 (53) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentPackagesApi.md +4 -0
  4. data/docs/ContentReleaseArchitecturesApi.md +2 -6
  5. data/docs/ContentReleaseComponentsApi.md +4 -6
  6. data/docs/ContentReleasesApi.md +10 -2
  7. data/docs/DebAptPublication.md +4 -2
  8. data/docs/DebAptPublicationResponse.md +4 -2
  9. data/docs/DebAptRepository.md +7 -1
  10. data/docs/DebAptRepositoryResponse.md +7 -1
  11. data/docs/DebRelease.md +9 -1
  12. data/docs/DebReleaseArchitecture.md +1 -5
  13. data/docs/DebReleaseArchitectureResponse.md +1 -5
  14. data/docs/DebReleaseComponent.md +1 -5
  15. data/docs/DebReleaseComponentResponse.md +1 -5
  16. data/docs/DebReleaseFile.md +3 -3
  17. data/docs/DebReleaseFileResponse.md +3 -3
  18. data/docs/DebReleaseResponse.md +9 -1
  19. data/docs/PatcheddebAptRepository.md +7 -1
  20. data/lib/pulp_deb_client/api/content_packages_api.rb +6 -0
  21. data/lib/pulp_deb_client/api/content_release_architectures_api.rb +3 -9
  22. data/lib/pulp_deb_client/api/content_release_components_api.rb +6 -9
  23. data/lib/pulp_deb_client/api/content_releases_api.rb +15 -3
  24. data/lib/pulp_deb_client/models/deb_apt_publication.rb +14 -5
  25. data/lib/pulp_deb_client/models/deb_apt_publication_response.rb +14 -5
  26. data/lib/pulp_deb_client/models/deb_apt_repository.rb +38 -5
  27. data/lib/pulp_deb_client/models/deb_apt_repository_response.rb +38 -5
  28. data/lib/pulp_deb_client/models/deb_release.rb +104 -4
  29. data/lib/pulp_deb_client/models/deb_release_architecture.rb +4 -70
  30. data/lib/pulp_deb_client/models/deb_release_architecture_response.rb +4 -32
  31. data/lib/pulp_deb_client/models/deb_release_component.rb +4 -70
  32. data/lib/pulp_deb_client/models/deb_release_component_response.rb +4 -32
  33. data/lib/pulp_deb_client/models/deb_release_file.rb +3 -3
  34. data/lib/pulp_deb_client/models/deb_release_file_response.rb +3 -3
  35. data/lib/pulp_deb_client/models/deb_release_response.rb +44 -4
  36. data/lib/pulp_deb_client/models/patcheddeb_apt_repository.rb +38 -5
  37. data/lib/pulp_deb_client/version.rb +1 -1
  38. data/spec/api/content_packages_api_spec.rb +2 -0
  39. data/spec/api/content_release_architectures_api_spec.rb +1 -3
  40. data/spec/api/content_release_components_api_spec.rb +2 -3
  41. data/spec/api/content_releases_api_spec.rb +5 -1
  42. data/spec/models/deb_apt_publication_response_spec.rb +6 -0
  43. data/spec/models/deb_apt_publication_spec.rb +6 -0
  44. data/spec/models/deb_apt_repository_response_spec.rb +18 -0
  45. data/spec/models/deb_apt_repository_spec.rb +18 -0
  46. data/spec/models/deb_release_architecture_response_spec.rb +0 -12
  47. data/spec/models/deb_release_architecture_spec.rb +0 -12
  48. data/spec/models/deb_release_component_response_spec.rb +0 -12
  49. data/spec/models/deb_release_component_spec.rb +0 -12
  50. data/spec/models/deb_release_response_spec.rb +24 -0
  51. data/spec/models/deb_release_spec.rb +24 -0
  52. data/spec/models/patcheddeb_apt_repository_spec.rb +18 -0
  53. metadata +1 -1
@@ -49,17 +49,15 @@ describe 'ContentReleaseArchitecturesApi' do
49
49
  # A ReleaseArchitecture represents a single dpkg architecture string. Associated artifacts: None; contains only metadata. Every ReleaseArchitecture is always associated with exactly one Release. This indicates that the release/distribution in question supports this architecture.
50
50
  # @param [Hash] opts the optional parameters
51
51
  # @option opts [String] :architecture Filter results where architecture matches value
52
- # @option opts [String] :codename Filter results where codename matches value
53
52
  # @option opts [String] :distribution Filter results where distribution matches value
54
53
  # @option opts [Integer] :limit Number of results to return per page.
55
54
  # @option opts [Integer] :offset The initial index from which to return the results.
56
- # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
55
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
57
56
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
58
57
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
59
58
  # @option opts [String] :repository_version Repository Version referenced by HREF
60
59
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
61
60
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
62
- # @option opts [String] :suite Filter results where suite matches value
63
61
  # @option opts [Array<String>] :fields A list of fields to include in the response.
64
62
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
65
63
  # @return [PaginateddebReleaseArchitectureResponseList]
@@ -48,18 +48,17 @@ describe 'ContentReleaseComponentsApi' do
48
48
  # List release components
49
49
  # A ReleaseComponent represents a single APT repository component. Associated artifacts: None; contains only metadata.
50
50
  # @param [Hash] opts the optional parameters
51
- # @option opts [String] :codename Filter results where codename matches value
52
51
  # @option opts [String] :component Filter results where component matches value
53
52
  # @option opts [String] :distribution Filter results where distribution matches value
54
53
  # @option opts [Integer] :limit Number of results to return per page.
55
54
  # @option opts [Integer] :offset The initial index from which to return the results.
56
- # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
55
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
56
+ # @option opts [String] :package Must be a comma-separated string: \&quot;package_href,repository_or_repository_version_href\&quot; package_href: Filter results where ReleaseComponent contains Package repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
57
57
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
58
58
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
59
59
  # @option opts [String] :repository_version Repository Version referenced by HREF
60
60
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
61
61
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
62
- # @option opts [String] :suite Filter results where suite matches value
63
62
  # @option opts [Array<String>] :fields A list of fields to include in the response.
64
63
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
65
64
  # @return [PaginateddebReleaseComponentResponseList]
@@ -50,15 +50,19 @@ describe 'ContentReleasesApi' do
50
50
  # @param [Hash] opts the optional parameters
51
51
  # @option opts [String] :codename Filter results where codename matches value
52
52
  # @option opts [String] :distribution Filter results where distribution matches value
53
+ # @option opts [String] :label Filter results where label matches value
53
54
  # @option opts [Integer] :limit Number of results to return per page.
54
55
  # @option opts [Integer] :offset The initial index from which to return the results.
55
- # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
56
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;label&#x60; - Label * &#x60;-label&#x60; - Label (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
57
+ # @option opts [String] :origin Filter results where origin matches value
58
+ # @option opts [String] :package Must be a comma-separated string: \&quot;package_href,repository_or_repository_version_href\&quot; package_href: Filter results where Release contains Package repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
56
59
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
57
60
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
58
61
  # @option opts [String] :repository_version Repository Version referenced by HREF
59
62
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
60
63
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
61
64
  # @option opts [String] :suite Filter results where suite matches value
65
+ # @option opts [String] :version Filter results where version matches value
62
66
  # @option opts [Array<String>] :fields A list of fields to include in the response.
63
67
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
64
68
  # @return [PaginateddebReleaseResponseList]
@@ -74,4 +74,10 @@ describe 'DebAptPublicationResponse' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "publish_upstream_release_fields"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
77
83
  end
@@ -62,4 +62,10 @@ describe 'DebAptPublication' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "publish_upstream_release_fields"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
65
71
  end
@@ -86,4 +86,22 @@ describe 'DebAptRepositoryResponse' do
86
86
  end
87
87
  end
88
88
 
89
+ describe 'test attribute "publish_upstream_release_fields"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "signing_service"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
101
+ describe 'test attribute "signing_service_release_overrides"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
89
107
  end
@@ -62,4 +62,22 @@ describe 'DebAptRepository' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "publish_upstream_release_fields"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "signing_service"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "signing_service_release_overrides"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
65
83
  end
@@ -56,16 +56,4 @@ describe 'DebReleaseArchitectureResponse' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "codename"' do
60
- it 'should work' do
61
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
- end
63
- end
64
-
65
- describe 'test attribute "suite"' do
66
- it 'should work' do
67
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
- end
69
- end
70
-
71
59
  end
@@ -50,16 +50,4 @@ describe 'DebReleaseArchitecture' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "codename"' do
54
- it 'should work' do
55
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
- end
57
- end
58
-
59
- describe 'test attribute "suite"' do
60
- it 'should work' do
61
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
- end
63
- end
64
-
65
53
  end
@@ -56,16 +56,4 @@ describe 'DebReleaseComponentResponse' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "codename"' do
60
- it 'should work' do
61
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
- end
63
- end
64
-
65
- describe 'test attribute "suite"' do
66
- it 'should work' do
67
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
- end
69
- end
70
-
71
59
  end
@@ -50,16 +50,4 @@ describe 'DebReleaseComponent' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "codename"' do
54
- it 'should work' do
55
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
- end
57
- end
58
-
59
- describe 'test attribute "suite"' do
60
- it 'should work' do
61
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
- end
63
- end
64
-
65
53
  end
@@ -62,4 +62,28 @@ describe 'DebReleaseResponse' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "version"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "origin"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "label"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "description"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
65
89
  end
@@ -56,4 +56,28 @@ describe 'DebRelease' do
56
56
  end
57
57
  end
58
58
 
59
+ describe 'test attribute "version"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "origin"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "label"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "description"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
59
83
  end
@@ -62,4 +62,22 @@ describe 'PatcheddebAptRepository' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "publish_upstream_release_fields"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "signing_service"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "signing_service_release_overrides"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
65
83
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_deb_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.21.2
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator