pulp_python_client 3.28.1 → 3.29.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.
- checksums.yaml +4 -4
- data/README.md +11 -4
- data/docs/PaginatedpythonPythonBlocklistEntryResponseList.md +24 -0
- data/docs/PythonPythonBlocklistEntry.md +22 -0
- data/docs/PythonPythonBlocklistEntryResponse.md +34 -0
- data/docs/PythonPythonRepositoryResponse.md +3 -1
- data/docs/RepositoriesPythonBlocklistEntriesApi.md +320 -0
- data/lib/pulp_python_client/api/repositories_python_blocklist_entries_api.rb +313 -0
- data/lib/pulp_python_client/models/paginatedpython_python_blocklist_entry_response_list.rb +257 -0
- data/lib/pulp_python_client/models/python_python_blocklist_entry.rb +284 -0
- data/lib/pulp_python_client/models/python_python_blocklist_entry_response.rb +299 -0
- data/lib/pulp_python_client/models/python_python_repository_response.rb +14 -4
- data/lib/pulp_python_client/version.rb +1 -1
- data/lib/pulp_python_client.rb +4 -0
- data/spec/api/repositories_python_blocklist_entries_api_spec.rb +94 -0
- data/spec/models/paginatedpython_python_blocklist_entry_response_list_spec.rb +54 -0
- data/spec/models/python_python_blocklist_entry_response_spec.rb +84 -0
- data/spec/models/python_python_blocklist_entry_spec.rb +48 -0
- data/spec/models/python_python_repository_response_spec.rb +6 -0
- metadata +62 -46
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
|
|
16
|
+
# Unit tests for PulpPythonClient::RepositoriesPythonBlocklistEntriesApi
|
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
18
|
+
# Please update as you see appropriate
|
|
19
|
+
describe 'RepositoriesPythonBlocklistEntriesApi' do
|
|
20
|
+
before do
|
|
21
|
+
# run before each test
|
|
22
|
+
@api_instance = PulpPythonClient::RepositoriesPythonBlocklistEntriesApi.new
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after do
|
|
26
|
+
# run after each test
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
describe 'test an instance of RepositoriesPythonBlocklistEntriesApi' do
|
|
30
|
+
it 'should create an instance of RepositoriesPythonBlocklistEntriesApi' do
|
|
31
|
+
expect(@api_instance).to be_instance_of(PulpPythonClient::RepositoriesPythonBlocklistEntriesApi)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# unit tests for create
|
|
36
|
+
# Create a python blocklist entry
|
|
37
|
+
# ViewSet for managing blocklist entries on a PythonRepository. Blocklist entries prevent packages from being added to the repository. Entries can match by package `name` (all versions), package `name` + `version`, or exact `filename`. Exactly one of `name` or `filename` must be provided.
|
|
38
|
+
# @param python_python_repository_href
|
|
39
|
+
# @param python_python_blocklist_entry
|
|
40
|
+
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
42
|
+
# @return [PythonPythonBlocklistEntryResponse]
|
|
43
|
+
describe 'create test' do
|
|
44
|
+
it 'should work' do
|
|
45
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# unit tests for delete
|
|
50
|
+
# Delete a python blocklist entry
|
|
51
|
+
# ViewSet for managing blocklist entries on a PythonRepository. Blocklist entries prevent packages from being added to the repository. Entries can match by package `name` (all versions), package `name` + `version`, or exact `filename`. Exactly one of `name` or `filename` must be provided.
|
|
52
|
+
# @param python_python_python_blocklist_entry_href
|
|
53
|
+
# @param [Hash] opts the optional parameters
|
|
54
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
55
|
+
# @return [nil]
|
|
56
|
+
describe 'delete test' do
|
|
57
|
+
it 'should work' do
|
|
58
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# unit tests for list
|
|
63
|
+
# List python blocklist entrys
|
|
64
|
+
# ViewSet for managing blocklist entries on a PythonRepository. Blocklist entries prevent packages from being added to the repository. Entries can match by package `name` (all versions), package `name` + `version`, or exact `filename`. Exactly one of `name` or `filename` must be provided.
|
|
65
|
+
# @param python_python_repository_href
|
|
66
|
+
# @param [Hash] opts the optional parameters
|
|
67
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
68
|
+
# @option opts [Integer] :limit Number of results to return per page.
|
|
69
|
+
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
70
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
71
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
72
|
+
# @return [PaginatedpythonPythonBlocklistEntryResponseList]
|
|
73
|
+
describe 'list test' do
|
|
74
|
+
it 'should work' do
|
|
75
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# unit tests for read
|
|
80
|
+
# Inspect a python blocklist entry
|
|
81
|
+
# ViewSet for managing blocklist entries on a PythonRepository. Blocklist entries prevent packages from being added to the repository. Entries can match by package `name` (all versions), package `name` + `version`, or exact `filename`. Exactly one of `name` or `filename` must be provided.
|
|
82
|
+
# @param python_python_python_blocklist_entry_href
|
|
83
|
+
# @param [Hash] opts the optional parameters
|
|
84
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
85
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
86
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
87
|
+
# @return [PythonPythonBlocklistEntryResponse]
|
|
88
|
+
describe 'read test' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
end
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpPythonClient::PaginatedpythonPythonBlocklistEntryResponseList
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpPythonClient::PaginatedpythonPythonBlocklistEntryResponseList do
|
|
21
|
+
let(:instance) { PulpPythonClient::PaginatedpythonPythonBlocklistEntryResponseList.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of PaginatedpythonPythonBlocklistEntryResponseList' do
|
|
24
|
+
it 'should create an instance of PaginatedpythonPythonBlocklistEntryResponseList' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpPythonClient::PaginatedpythonPythonBlocklistEntryResponseList)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "count"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "_next"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "previous"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
describe 'test attribute "results"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
end
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpPythonClient::PythonPythonBlocklistEntryResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpPythonClient::PythonPythonBlocklistEntryResponse do
|
|
21
|
+
let(:instance) { PulpPythonClient::PythonPythonBlocklistEntryResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of PythonPythonBlocklistEntryResponse' do
|
|
24
|
+
it 'should create an instance of PythonPythonBlocklistEntryResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpPythonClient::PythonPythonBlocklistEntryResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "pulp_href"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "prn"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "pulp_created"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
describe 'test attribute "pulp_last_updated"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
describe 'test attribute "repository"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
describe 'test attribute "name"' do
|
|
61
|
+
it 'should work' do
|
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
describe 'test attribute "version"' do
|
|
67
|
+
it 'should work' do
|
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
describe 'test attribute "filename"' do
|
|
73
|
+
it 'should work' do
|
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
describe 'test attribute "added_by"' do
|
|
79
|
+
it 'should work' do
|
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpPythonClient::PythonPythonBlocklistEntry
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpPythonClient::PythonPythonBlocklistEntry do
|
|
21
|
+
let(:instance) { PulpPythonClient::PythonPythonBlocklistEntry.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of PythonPythonBlocklistEntry' do
|
|
24
|
+
it 'should create an instance of PythonPythonBlocklistEntry' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpPythonClient::PythonPythonBlocklistEntry)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "name"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "version"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "filename"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
end
|
|
@@ -111,4 +111,10 @@ describe PulpPythonClient::PythonPythonRepositoryResponse do
|
|
|
111
111
|
end
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
+
describe 'test attribute "blocklist_entries_href"' do
|
|
115
|
+
it 'should work' do
|
|
116
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
|
|
114
120
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_python_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.29.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: 2026-04-
|
|
11
|
+
date: 2026-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -105,6 +105,7 @@ files:
|
|
|
105
105
|
- docs/PackageUploadTaskResponse.md
|
|
106
106
|
- docs/PaginatedRepositoryVersionResponseList.md
|
|
107
107
|
- docs/PaginatedpythonPackageProvenanceResponseList.md
|
|
108
|
+
- docs/PaginatedpythonPythonBlocklistEntryResponseList.md
|
|
108
109
|
- docs/PaginatedpythonPythonDistributionResponseList.md
|
|
109
110
|
- docs/PaginatedpythonPythonPackageContentResponseList.md
|
|
110
111
|
- docs/PaginatedpythonPythonPublicationResponseList.md
|
|
@@ -122,6 +123,8 @@ files:
|
|
|
122
123
|
- docs/PypiProvenanceApi.md
|
|
123
124
|
- docs/PypiSimpleApi.md
|
|
124
125
|
- docs/PythonPackageProvenanceResponse.md
|
|
126
|
+
- docs/PythonPythonBlocklistEntry.md
|
|
127
|
+
- docs/PythonPythonBlocklistEntryResponse.md
|
|
125
128
|
- docs/PythonPythonDistribution.md
|
|
126
129
|
- docs/PythonPythonDistributionResponse.md
|
|
127
130
|
- docs/PythonPythonPackageContentResponse.md
|
|
@@ -137,6 +140,7 @@ files:
|
|
|
137
140
|
- docs/RemotesPythonApi.md
|
|
138
141
|
- docs/Repair.md
|
|
139
142
|
- docs/RepositoriesPythonApi.md
|
|
143
|
+
- docs/RepositoriesPythonBlocklistEntriesApi.md
|
|
140
144
|
- docs/RepositoriesPythonVersionsApi.md
|
|
141
145
|
- docs/RepositoryAddRemoveContent.md
|
|
142
146
|
- docs/RepositorySyncURL.md
|
|
@@ -158,6 +162,7 @@ files:
|
|
|
158
162
|
- lib/pulp_python_client/api/pypi_simple_api.rb
|
|
159
163
|
- lib/pulp_python_client/api/remotes_python_api.rb
|
|
160
164
|
- lib/pulp_python_client/api/repositories_python_api.rb
|
|
165
|
+
- lib/pulp_python_client/api/repositories_python_blocklist_entries_api.rb
|
|
161
166
|
- lib/pulp_python_client/api/repositories_python_versions_api.rb
|
|
162
167
|
- lib/pulp_python_client/api_client.rb
|
|
163
168
|
- lib/pulp_python_client/api_error.rb
|
|
@@ -176,6 +181,7 @@ files:
|
|
|
176
181
|
- lib/pulp_python_client/models/package_upload_task_response.rb
|
|
177
182
|
- lib/pulp_python_client/models/paginated_repository_version_response_list.rb
|
|
178
183
|
- lib/pulp_python_client/models/paginatedpython_package_provenance_response_list.rb
|
|
184
|
+
- lib/pulp_python_client/models/paginatedpython_python_blocklist_entry_response_list.rb
|
|
179
185
|
- lib/pulp_python_client/models/paginatedpython_python_distribution_response_list.rb
|
|
180
186
|
- lib/pulp_python_client/models/paginatedpython_python_package_content_response_list.rb
|
|
181
187
|
- lib/pulp_python_client/models/paginatedpython_python_publication_response_list.rb
|
|
@@ -187,6 +193,8 @@ files:
|
|
|
187
193
|
- lib/pulp_python_client/models/policy_enum.rb
|
|
188
194
|
- lib/pulp_python_client/models/protocol_version_enum.rb
|
|
189
195
|
- lib/pulp_python_client/models/python_package_provenance_response.rb
|
|
196
|
+
- lib/pulp_python_client/models/python_python_blocklist_entry.rb
|
|
197
|
+
- lib/pulp_python_client/models/python_python_blocklist_entry_response.rb
|
|
190
198
|
- lib/pulp_python_client/models/python_python_distribution.rb
|
|
191
199
|
- lib/pulp_python_client/models/python_python_distribution_response.rb
|
|
192
200
|
- lib/pulp_python_client/models/python_python_package_content_response.rb
|
|
@@ -221,6 +229,7 @@ files:
|
|
|
221
229
|
- spec/api/pypi_simple_api_spec.rb
|
|
222
230
|
- spec/api/remotes_python_api_spec.rb
|
|
223
231
|
- spec/api/repositories_python_api_spec.rb
|
|
232
|
+
- spec/api/repositories_python_blocklist_entries_api_spec.rb
|
|
224
233
|
- spec/api/repositories_python_versions_api_spec.rb
|
|
225
234
|
- spec/models/async_operation_response_spec.rb
|
|
226
235
|
- spec/models/content_summary_response_spec.rb
|
|
@@ -236,6 +245,7 @@ files:
|
|
|
236
245
|
- spec/models/package_upload_task_response_spec.rb
|
|
237
246
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
238
247
|
- spec/models/paginatedpython_package_provenance_response_list_spec.rb
|
|
248
|
+
- spec/models/paginatedpython_python_blocklist_entry_response_list_spec.rb
|
|
239
249
|
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
|
240
250
|
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
|
241
251
|
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
|
@@ -247,6 +257,8 @@ files:
|
|
|
247
257
|
- spec/models/policy_enum_spec.rb
|
|
248
258
|
- spec/models/protocol_version_enum_spec.rb
|
|
249
259
|
- spec/models/python_package_provenance_response_spec.rb
|
|
260
|
+
- spec/models/python_python_blocklist_entry_response_spec.rb
|
|
261
|
+
- spec/models/python_python_blocklist_entry_spec.rb
|
|
250
262
|
- spec/models/python_python_distribution_response_spec.rb
|
|
251
263
|
- spec/models/python_python_distribution_spec.rb
|
|
252
264
|
- spec/models/python_python_package_content_response_spec.rb
|
|
@@ -293,62 +305,66 @@ signing_key:
|
|
|
293
305
|
specification_version: 4
|
|
294
306
|
summary: Pulp 3 API Ruby Gem
|
|
295
307
|
test_files:
|
|
296
|
-
- spec/api/
|
|
297
|
-
- spec/api/pypi_legacy_api_spec.rb
|
|
298
|
-
- spec/api/repositories_python_versions_api_spec.rb
|
|
299
|
-
- spec/api/pypi_api_spec.rb
|
|
308
|
+
- spec/api/pypi_metadata_api_spec.rb
|
|
300
309
|
- spec/api/pypi_simple_api_spec.rb
|
|
301
310
|
- spec/api/repositories_python_api_spec.rb
|
|
311
|
+
- spec/api/pypi_provenance_api_spec.rb
|
|
312
|
+
- spec/api/content_provenance_api_spec.rb
|
|
313
|
+
- spec/api/pypi_api_spec.rb
|
|
314
|
+
- spec/api/repositories_python_versions_api_spec.rb
|
|
302
315
|
- spec/api/distributions_pypi_api_spec.rb
|
|
316
|
+
- spec/api/repositories_python_blocklist_entries_api_spec.rb
|
|
317
|
+
- spec/api/remotes_python_api_spec.rb
|
|
303
318
|
- spec/api/content_packages_api_spec.rb
|
|
304
|
-
- spec/api/content_provenance_api_spec.rb
|
|
305
319
|
- spec/api/publications_pypi_api_spec.rb
|
|
306
|
-
- spec/api/
|
|
307
|
-
- spec/api/pypi_provenance_api_spec.rb
|
|
308
|
-
- spec/models/policy_enum_spec.rb
|
|
309
|
-
- spec/models/repair_spec.rb
|
|
310
|
-
- spec/models/repository_add_remove_content_spec.rb
|
|
311
|
-
- spec/models/remote_network_config_response_spec.rb
|
|
312
|
-
- spec/models/python_python_package_content_response_spec.rb
|
|
313
|
-
- spec/models/python_python_repository_spec.rb
|
|
314
|
-
- spec/models/python_python_remote_response_spec.rb
|
|
315
|
-
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
|
316
|
-
- spec/models/content_summary_response_spec.rb
|
|
317
|
-
- spec/models/nested_role_spec.rb
|
|
318
|
-
- spec/models/patchedpython_python_remote_spec.rb
|
|
319
|
-
- spec/models/set_label_response_spec.rb
|
|
320
|
-
- spec/models/async_operation_response_spec.rb
|
|
321
|
-
- spec/models/python_python_publication_response_spec.rb
|
|
322
|
-
- spec/models/patchedpython_python_repository_spec.rb
|
|
320
|
+
- spec/api/pypi_legacy_api_spec.rb
|
|
323
321
|
- spec/models/object_roles_response_spec.rb
|
|
324
|
-
- spec/models/
|
|
325
|
-
- spec/models/
|
|
322
|
+
- spec/models/nested_role_spec.rb
|
|
323
|
+
- spec/models/unset_label_response_spec.rb
|
|
324
|
+
- spec/models/patchedpython_python_distribution_spec.rb
|
|
326
325
|
- spec/models/python_python_repository_response_spec.rb
|
|
327
|
-
- spec/models/summary_response_spec.rb
|
|
328
|
-
- spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
|
|
329
|
-
- spec/models/python_python_publication_spec.rb
|
|
330
|
-
- spec/models/nested_role_response_spec.rb
|
|
331
|
-
- spec/models/paginatedpython_package_provenance_response_list_spec.rb
|
|
332
|
-
- spec/models/filetype_enum_spec.rb
|
|
333
326
|
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
|
334
|
-
- spec/models/
|
|
327
|
+
- spec/models/python_python_package_content_response_spec.rb
|
|
328
|
+
- spec/models/repository_add_remove_content_spec.rb
|
|
329
|
+
- spec/models/summary_response_spec.rb
|
|
330
|
+
- spec/models/package_metadata_response_spec.rb
|
|
331
|
+
- spec/models/python_python_publication_response_spec.rb
|
|
332
|
+
- spec/models/async_operation_response_spec.rb
|
|
333
|
+
- spec/models/python_python_remote_response_spec.rb
|
|
334
|
+
- spec/models/policy_enum_spec.rb
|
|
335
335
|
- spec/models/repository_sync_url_spec.rb
|
|
336
|
-
- spec/models/
|
|
337
|
-
- spec/models/
|
|
336
|
+
- spec/models/remote_network_config_spec.rb
|
|
337
|
+
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
|
338
|
+
- spec/models/python_python_publication_spec.rb
|
|
339
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
|
338
340
|
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
|
339
|
-
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
|
340
|
-
- spec/models/unset_label_response_spec.rb
|
|
341
|
-
- spec/models/package_metadata_response_spec.rb
|
|
342
|
-
- spec/models/my_permissions_response_spec.rb
|
|
343
|
-
- spec/models/package_upload_task_response_spec.rb
|
|
344
|
-
- spec/models/python_python_remote_spec.rb
|
|
345
341
|
- spec/models/metadata_version_enum_spec.rb
|
|
346
|
-
- spec/models/
|
|
347
|
-
- spec/models/
|
|
342
|
+
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
|
343
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
|
344
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
|
345
|
+
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
|
346
|
+
- spec/models/python_python_repository_spec.rb
|
|
347
|
+
- spec/models/python_python_distribution_spec.rb
|
|
348
|
+
- spec/models/remote_network_config_response_spec.rb
|
|
348
349
|
- spec/models/package_types_enum_spec.rb
|
|
350
|
+
- spec/models/paginatedpython_package_provenance_response_list_spec.rb
|
|
349
351
|
- spec/models/python_python_distribution_response_spec.rb
|
|
350
|
-
- spec/models/
|
|
352
|
+
- spec/models/filetype_enum_spec.rb
|
|
353
|
+
- spec/models/unset_label_spec.rb
|
|
354
|
+
- spec/models/content_summary_response_spec.rb
|
|
351
355
|
- spec/models/repository_version_response_spec.rb
|
|
352
|
-
- spec/models/
|
|
353
|
-
- spec/models/
|
|
356
|
+
- spec/models/package_upload_task_response_spec.rb
|
|
357
|
+
- spec/models/python_package_provenance_response_spec.rb
|
|
358
|
+
- spec/models/python_python_blocklist_entry_spec.rb
|
|
359
|
+
- spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
|
|
360
|
+
- spec/models/protocol_version_enum_spec.rb
|
|
361
|
+
- spec/models/set_label_response_spec.rb
|
|
362
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
363
|
+
- spec/models/python_python_blocklist_entry_response_spec.rb
|
|
364
|
+
- spec/models/nested_role_response_spec.rb
|
|
365
|
+
- spec/models/my_permissions_response_spec.rb
|
|
366
|
+
- spec/models/repair_spec.rb
|
|
367
|
+
- spec/models/paginatedpython_python_blocklist_entry_response_list_spec.rb
|
|
368
|
+
- spec/models/python_python_remote_spec.rb
|
|
369
|
+
- spec/models/set_label_spec.rb
|
|
354
370
|
- spec/spec_helper.rb
|