pulp_python_client 3.33.0 → 3.34.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0a612bbb473ab32a3c0d54da649c4d02ab80d97e87eebf21c92fdcb830c30c4
4
- data.tar.gz: c464607eaaedfff6ec11886e06af8ba5e29dc303d6d2fbad4bb52cda5c429c1f
3
+ metadata.gz: 57a0b61659bffc71bade8199692bfd59bbf228444851d138928f4a7962aafa58
4
+ data.tar.gz: edb6ec5ba60650d2362a06b72516f65c9eb837976db1702633aec905811bc005
5
5
  SHA512:
6
- metadata.gz: b5d7bac0df987887fc70a1260bb96be05bdf4bf18daeb50d51a1318fe02ee7bdae71963faf311277f3fb45f1dd1f32a73152b14806fc222d4919cf6b0da9c796
7
- data.tar.gz: 1143c4d7cc038a363627f3616c5f8c26a822c4529f7b29a95883ccbef3d27d1658b67e3bcfc209606d3f0afa56a195025f9637be041c2f50d3bc946748990f66
6
+ metadata.gz: 66b50efde6e8e8ce86f25d4ad3061f5e9356d7c4a776064a5abad4b858dea35ccc0601ec9d51d30151c3d3a413638313a2cbecd9a2b88ae184a7a6191aa12800
7
+ data.tar.gz: 1a7d49e2040e099d1d106a2812a8801c41e133b0deaba781d3f056b1969c867edf979534ed5b8dbe1753d6238cabf480044599906e2c3f423bc2b3dbd0071753
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 3.33.0
10
+ - Package version: 3.34.0
11
11
  - Generator version: 7.10.0
12
12
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
13
13
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
@@ -25,16 +25,16 @@ gem build pulp_python_client.gemspec
25
25
  Then either install the gem locally:
26
26
 
27
27
  ```shell
28
- gem install ./pulp_python_client-3.33.0.gem
28
+ gem install ./pulp_python_client-3.34.0.gem
29
29
  ```
30
30
 
31
- (for development, run `gem install --dev ./pulp_python_client-3.33.0.gem` to install the development dependencies)
31
+ (for development, run `gem install --dev ./pulp_python_client-3.34.0.gem` to install the development dependencies)
32
32
 
33
33
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
34
34
 
35
35
  Finally add this to the Gemfile:
36
36
 
37
- gem 'pulp_python_client', '~> 3.33.0'
37
+ gem 'pulp_python_client', '~> 3.34.0'
38
38
 
39
39
  ### Install from Git
40
40
 
@@ -12,6 +12,7 @@
12
12
  | **remote** | **String** | An optional remote to use by default when syncing. | [optional] |
13
13
  | **autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. [Deprecated] | [optional][default to false] |
14
14
  | **allow_package_substitution** | **Boolean** | Whether to allow package substitution (replacing existing packages with packages that have the same filename but a different checksum). When False, any new repository version that would cause such a substitution will be rejected. This applies to all repository version creation paths including uploads, modify, and sync. When True (the default), package substitution is allowed. | [optional][default to true] |
15
+ | **error_on_reject** | **Boolean** | Whether to fail the entire repository version when packages are rejected by the package substitution or blocklist policies. When True (the default), a ValidationError is raised and no packages from the request are added. When False, rejected packages are skipped and remaining packages are added; skipped packages are recorded in a task progress report. | [optional][default to true] |
15
16
 
16
17
  ## Example
17
18
 
@@ -26,7 +27,8 @@ instance = PulpPythonClient::PatchedpythonPythonRepository.new(
26
27
  retain_checkpoints: null,
27
28
  remote: null,
28
29
  autopublish: null,
29
- allow_package_substitution: null
30
+ allow_package_substitution: null,
31
+ error_on_reject: null
30
32
  )
31
33
  ```
32
34
 
@@ -12,6 +12,7 @@
12
12
  | **remote** | **String** | An optional remote to use by default when syncing. | [optional] |
13
13
  | **autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. [Deprecated] | [optional][default to false] |
14
14
  | **allow_package_substitution** | **Boolean** | Whether to allow package substitution (replacing existing packages with packages that have the same filename but a different checksum). When False, any new repository version that would cause such a substitution will be rejected. This applies to all repository version creation paths including uploads, modify, and sync. When True (the default), package substitution is allowed. | [optional][default to true] |
15
+ | **error_on_reject** | **Boolean** | Whether to fail the entire repository version when packages are rejected by the package substitution or blocklist policies. When True (the default), a ValidationError is raised and no packages from the request are added. When False, rejected packages are skipped and remaining packages are added; skipped packages are recorded in a task progress report. | [optional][default to true] |
15
16
 
16
17
  ## Example
17
18
 
@@ -26,7 +27,8 @@ instance = PulpPythonClient::PythonPythonRepository.new(
26
27
  retain_checkpoints: null,
27
28
  remote: null,
28
29
  autopublish: null,
29
- allow_package_substitution: null
30
+ allow_package_substitution: null,
31
+ error_on_reject: null
30
32
  )
31
33
  ```
32
34
 
@@ -18,6 +18,7 @@
18
18
  | **remote** | **String** | An optional remote to use by default when syncing. | [optional] |
19
19
  | **autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. [Deprecated] | [optional][default to false] |
20
20
  | **allow_package_substitution** | **Boolean** | Whether to allow package substitution (replacing existing packages with packages that have the same filename but a different checksum). When False, any new repository version that would cause such a substitution will be rejected. This applies to all repository version creation paths including uploads, modify, and sync. When True (the default), package substitution is allowed. | [optional][default to true] |
21
+ | **error_on_reject** | **Boolean** | Whether to fail the entire repository version when packages are rejected by the package substitution or blocklist policies. When True (the default), a ValidationError is raised and no packages from the request are added. When False, rejected packages are skipped and remaining packages are added; skipped packages are recorded in a task progress report. | [optional][default to true] |
21
22
  | **blocklist_entries_href** | **String** | URL to the blocklist entries for this repository. | [optional][readonly] |
22
23
 
23
24
  ## Example
@@ -40,6 +41,7 @@ instance = PulpPythonClient::PythonPythonRepositoryResponse.new(
40
41
  remote: null,
41
42
  autopublish: null,
42
43
  allow_package_substitution: null,
44
+ error_on_reject: null,
43
45
  blocklist_entries_href: null
44
46
  )
45
47
  ```
@@ -39,6 +39,9 @@ module PulpPythonClient
39
39
  # Whether to allow package substitution (replacing existing packages with packages that have the same filename but a different checksum). When False, any new repository version that would cause such a substitution will be rejected. This applies to all repository version creation paths including uploads, modify, and sync. When True (the default), package substitution is allowed.
40
40
  attr_accessor :allow_package_substitution
41
41
 
42
+ # Whether to fail the entire repository version when packages are rejected by the package substitution or blocklist policies. When True (the default), a ValidationError is raised and no packages from the request are added. When False, rejected packages are skipped and remaining packages are added; skipped packages are recorded in a task progress report.
43
+ attr_accessor :error_on_reject
44
+
42
45
  # Attribute mapping from ruby-style variable name to JSON key.
43
46
  def self.attribute_map
44
47
  {
@@ -49,7 +52,8 @@ module PulpPythonClient
49
52
  :'retain_checkpoints' => :'retain_checkpoints',
50
53
  :'remote' => :'remote',
51
54
  :'autopublish' => :'autopublish',
52
- :'allow_package_substitution' => :'allow_package_substitution'
55
+ :'allow_package_substitution' => :'allow_package_substitution',
56
+ :'error_on_reject' => :'error_on_reject'
53
57
  }
54
58
  end
55
59
 
@@ -68,7 +72,8 @@ module PulpPythonClient
68
72
  :'retain_checkpoints' => :'Integer',
69
73
  :'remote' => :'String',
70
74
  :'autopublish' => :'Boolean',
71
- :'allow_package_substitution' => :'Boolean'
75
+ :'allow_package_substitution' => :'Boolean',
76
+ :'error_on_reject' => :'Boolean'
72
77
  }
73
78
  end
74
79
 
@@ -134,6 +139,12 @@ module PulpPythonClient
134
139
  else
135
140
  self.allow_package_substitution = true
136
141
  end
142
+
143
+ if attributes.key?(:'error_on_reject')
144
+ self.error_on_reject = attributes[:'error_on_reject']
145
+ else
146
+ self.error_on_reject = true
147
+ end
137
148
  end
138
149
 
139
150
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -227,7 +238,8 @@ module PulpPythonClient
227
238
  retain_checkpoints == o.retain_checkpoints &&
228
239
  remote == o.remote &&
229
240
  autopublish == o.autopublish &&
230
- allow_package_substitution == o.allow_package_substitution
241
+ allow_package_substitution == o.allow_package_substitution &&
242
+ error_on_reject == o.error_on_reject
231
243
  end
232
244
 
233
245
  # @see the `==` method
@@ -239,7 +251,7 @@ module PulpPythonClient
239
251
  # Calculates hash code according to all attributes.
240
252
  # @return [Integer] Hash code
241
253
  def hash
242
- [pulp_labels, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, allow_package_substitution].hash
254
+ [pulp_labels, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, allow_package_substitution, error_on_reject].hash
243
255
  end
244
256
 
245
257
  # Builds the object from hash
@@ -39,6 +39,9 @@ module PulpPythonClient
39
39
  # Whether to allow package substitution (replacing existing packages with packages that have the same filename but a different checksum). When False, any new repository version that would cause such a substitution will be rejected. This applies to all repository version creation paths including uploads, modify, and sync. When True (the default), package substitution is allowed.
40
40
  attr_accessor :allow_package_substitution
41
41
 
42
+ # Whether to fail the entire repository version when packages are rejected by the package substitution or blocklist policies. When True (the default), a ValidationError is raised and no packages from the request are added. When False, rejected packages are skipped and remaining packages are added; skipped packages are recorded in a task progress report.
43
+ attr_accessor :error_on_reject
44
+
42
45
  # Attribute mapping from ruby-style variable name to JSON key.
43
46
  def self.attribute_map
44
47
  {
@@ -49,7 +52,8 @@ module PulpPythonClient
49
52
  :'retain_checkpoints' => :'retain_checkpoints',
50
53
  :'remote' => :'remote',
51
54
  :'autopublish' => :'autopublish',
52
- :'allow_package_substitution' => :'allow_package_substitution'
55
+ :'allow_package_substitution' => :'allow_package_substitution',
56
+ :'error_on_reject' => :'error_on_reject'
53
57
  }
54
58
  end
55
59
 
@@ -68,7 +72,8 @@ module PulpPythonClient
68
72
  :'retain_checkpoints' => :'Integer',
69
73
  :'remote' => :'String',
70
74
  :'autopublish' => :'Boolean',
71
- :'allow_package_substitution' => :'Boolean'
75
+ :'allow_package_substitution' => :'Boolean',
76
+ :'error_on_reject' => :'Boolean'
72
77
  }
73
78
  end
74
79
 
@@ -136,6 +141,12 @@ module PulpPythonClient
136
141
  else
137
142
  self.allow_package_substitution = true
138
143
  end
144
+
145
+ if attributes.key?(:'error_on_reject')
146
+ self.error_on_reject = attributes[:'error_on_reject']
147
+ else
148
+ self.error_on_reject = true
149
+ end
139
150
  end
140
151
 
141
152
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -234,7 +245,8 @@ module PulpPythonClient
234
245
  retain_checkpoints == o.retain_checkpoints &&
235
246
  remote == o.remote &&
236
247
  autopublish == o.autopublish &&
237
- allow_package_substitution == o.allow_package_substitution
248
+ allow_package_substitution == o.allow_package_substitution &&
249
+ error_on_reject == o.error_on_reject
238
250
  end
239
251
 
240
252
  # @see the `==` method
@@ -246,7 +258,7 @@ module PulpPythonClient
246
258
  # Calculates hash code according to all attributes.
247
259
  # @return [Integer] Hash code
248
260
  def hash
249
- [pulp_labels, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, allow_package_substitution].hash
261
+ [pulp_labels, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, allow_package_substitution, error_on_reject].hash
250
262
  end
251
263
 
252
264
  # Builds the object from hash
@@ -54,6 +54,9 @@ module PulpPythonClient
54
54
  # Whether to allow package substitution (replacing existing packages with packages that have the same filename but a different checksum). When False, any new repository version that would cause such a substitution will be rejected. This applies to all repository version creation paths including uploads, modify, and sync. When True (the default), package substitution is allowed.
55
55
  attr_accessor :allow_package_substitution
56
56
 
57
+ # Whether to fail the entire repository version when packages are rejected by the package substitution or blocklist policies. When True (the default), a ValidationError is raised and no packages from the request are added. When False, rejected packages are skipped and remaining packages are added; skipped packages are recorded in a task progress report.
58
+ attr_accessor :error_on_reject
59
+
57
60
  # URL to the blocklist entries for this repository.
58
61
  attr_accessor :blocklist_entries_href
59
62
 
@@ -74,6 +77,7 @@ module PulpPythonClient
74
77
  :'remote' => :'remote',
75
78
  :'autopublish' => :'autopublish',
76
79
  :'allow_package_substitution' => :'allow_package_substitution',
80
+ :'error_on_reject' => :'error_on_reject',
77
81
  :'blocklist_entries_href' => :'blocklist_entries_href'
78
82
  }
79
83
  end
@@ -100,6 +104,7 @@ module PulpPythonClient
100
104
  :'remote' => :'String',
101
105
  :'autopublish' => :'Boolean',
102
106
  :'allow_package_substitution' => :'Boolean',
107
+ :'error_on_reject' => :'Boolean',
103
108
  :'blocklist_entries_href' => :'String'
104
109
  }
105
110
  end
@@ -193,6 +198,12 @@ module PulpPythonClient
193
198
  self.allow_package_substitution = true
194
199
  end
195
200
 
201
+ if attributes.key?(:'error_on_reject')
202
+ self.error_on_reject = attributes[:'error_on_reject']
203
+ else
204
+ self.error_on_reject = true
205
+ end
206
+
196
207
  if attributes.key?(:'blocklist_entries_href')
197
208
  self.blocklist_entries_href = attributes[:'blocklist_entries_href']
198
209
  end
@@ -267,6 +278,7 @@ module PulpPythonClient
267
278
  remote == o.remote &&
268
279
  autopublish == o.autopublish &&
269
280
  allow_package_substitution == o.allow_package_substitution &&
281
+ error_on_reject == o.error_on_reject &&
270
282
  blocklist_entries_href == o.blocklist_entries_href
271
283
  end
272
284
 
@@ -279,7 +291,7 @@ module PulpPythonClient
279
291
  # Calculates hash code according to all attributes.
280
292
  # @return [Integer] Hash code
281
293
  def hash
282
- [pulp_href, prn, pulp_created, pulp_last_updated, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, allow_package_substitution, blocklist_entries_href].hash
294
+ [pulp_href, prn, pulp_created, pulp_last_updated, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, allow_package_substitution, error_on_reject, blocklist_entries_href].hash
283
295
  end
284
296
 
285
297
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpPythonClient
14
- VERSION = '3.33.0'
14
+ VERSION = '3.34.0'
15
15
  end
@@ -75,4 +75,10 @@ describe PulpPythonClient::PatchedpythonPythonRepository do
75
75
  end
76
76
  end
77
77
 
78
+ describe 'test attribute "error_on_reject"' 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
+
78
84
  end
@@ -111,6 +111,12 @@ describe PulpPythonClient::PythonPythonRepositoryResponse do
111
111
  end
112
112
  end
113
113
 
114
+ describe 'test attribute "error_on_reject"' 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
  describe 'test attribute "blocklist_entries_href"' do
115
121
  it 'should work' do
116
122
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -75,4 +75,10 @@ describe PulpPythonClient::PythonPythonRepository do
75
75
  end
76
76
  end
77
77
 
78
+ describe 'test attribute "error_on_reject"' 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
+
78
84
  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.33.0
4
+ version: 3.34.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-08-07 00:00:00.000000000 Z
11
+ date: 2026-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -323,72 +323,72 @@ signing_key:
323
323
  specification_version: 4
324
324
  summary: Pulp 3 API Ruby Gem
325
325
  test_files:
326
- - spec/api/pypi_legacy_api_spec.rb
326
+ - spec/api/repositories_python_blocklist_entries_api_spec.rb
327
327
  - spec/api/pypi_metadata_api_spec.rb
328
- - spec/api/content_yanks_api_spec.rb
329
- - spec/api/repositories_python_versions_api_spec.rb
328
+ - spec/api/pypi_legacy_api_spec.rb
329
+ - spec/api/remotes_python_api_spec.rb
330
330
  - spec/api/content_packages_api_spec.rb
331
+ - spec/api/publications_pypi_api_spec.rb
331
332
  - spec/api/pypi_simple_api_spec.rb
333
+ - spec/api/pypi_api_spec.rb
332
334
  - spec/api/pypi_provenance_api_spec.rb
333
335
  - spec/api/pypi_yank_api_spec.rb
334
- - spec/api/publications_pypi_api_spec.rb
335
- - spec/api/repositories_python_api_spec.rb
336
+ - spec/api/distributions_pypi_api_spec.rb
337
+ - spec/api/repositories_python_versions_api_spec.rb
336
338
  - spec/api/content_provenance_api_spec.rb
337
339
  - spec/api/pypi_unyank_api_spec.rb
338
- - spec/api/repositories_python_blocklist_entries_api_spec.rb
339
- - spec/api/remotes_python_api_spec.rb
340
- - spec/api/pypi_api_spec.rb
341
- - spec/api/distributions_pypi_api_spec.rb
340
+ - spec/api/content_yanks_api_spec.rb
341
+ - spec/api/repositories_python_api_spec.rb
342
+ - spec/models/patchedpython_python_distribution_spec.rb
343
+ - spec/models/package_metadata_response_spec.rb
344
+ - spec/models/metadata_version_enum_spec.rb
345
+ - spec/models/content_summary_response_spec.rb
346
+ - spec/models/set_label_response_spec.rb
347
+ - spec/models/policy_enum_spec.rb
348
+ - spec/models/paginatedpython_python_repository_response_list_spec.rb
349
+ - spec/models/paginatedpython_python_blocklist_entry_response_list_spec.rb
350
+ - spec/models/python_python_publication_response_spec.rb
351
+ - spec/models/python_python_remote_spec.rb
352
+ - spec/models/paginatedpython_python_distribution_response_list_spec.rb
342
353
  - spec/models/package_upload_task_response_spec.rb
354
+ - spec/models/remote_network_config_response_spec.rb
355
+ - spec/models/python_python_repository_response_spec.rb
343
356
  - spec/models/nested_role_response_spec.rb
344
- - spec/models/paginatedpython_python_remote_response_list_spec.rb
345
- - spec/models/object_roles_response_spec.rb
346
357
  - spec/models/repository_add_remove_content_spec.rb
358
+ - spec/models/nested_role_spec.rb
359
+ - spec/models/repository_sync_url_spec.rb
360
+ - spec/models/repository_version_response_spec.rb
361
+ - spec/models/paginatedpython_package_yank_response_list_spec.rb
362
+ - spec/models/python_package_yank_response_spec.rb
347
363
  - spec/models/python_python_distribution_response_spec.rb
348
- - spec/models/async_operation_response_spec.rb
349
- - spec/models/paginatedpython_python_repository_response_list_spec.rb
350
- - spec/models/python_python_remote_spec.rb
351
- - spec/models/paginatedpython_python_publication_response_list_spec.rb
352
- - spec/models/package_types_enum_spec.rb
353
- - spec/models/paginated_repository_version_response_list_spec.rb
354
- - spec/models/set_label_spec.rb
355
364
  - spec/models/remote_network_config_spec.rb
356
- - spec/models/content_summary_response_spec.rb
357
- - spec/models/remote_network_config_response_spec.rb
358
- - spec/models/python_python_publication_response_spec.rb
365
+ - spec/models/paginatedpython_python_remote_response_list_spec.rb
366
+ - spec/models/paginated_repository_version_response_list_spec.rb
367
+ - spec/models/python_python_package_content_response_spec.rb
368
+ - spec/models/exclude_platforms_enum_spec.rb
369
+ - spec/models/paginatedpython_package_provenance_response_list_spec.rb
370
+ - spec/models/async_operation_response_spec.rb
359
371
  - spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
360
- - spec/models/yank_spec.rb
361
- - spec/models/python_python_blocklist_entry_spec.rb
362
372
  - spec/models/paginatedpython_python_package_content_response_list_spec.rb
363
- - spec/models/patchedpython_python_remote_spec.rb
364
- - spec/models/exclude_platforms_enum_spec.rb
365
- - spec/models/repository_sync_url_spec.rb
366
- - spec/models/unset_label_spec.rb
367
- - spec/models/summary_response_spec.rb
368
- - spec/models/python_python_repository_spec.rb
373
+ - spec/models/filetype_enum_spec.rb
369
374
  - spec/models/python_python_distribution_spec.rb
370
- - spec/models/set_label_response_spec.rb
375
+ - spec/models/repair_spec.rb
371
376
  - spec/models/python_python_blocklist_entry_response_spec.rb
372
- - spec/models/python_package_yank_response_spec.rb
373
- - spec/models/nested_role_spec.rb
374
- - spec/models/repository_version_response_spec.rb
375
- - spec/models/my_permissions_response_spec.rb
376
- - spec/models/patchedpython_python_distribution_spec.rb
377
- - spec/models/paginatedpython_python_blocklist_entry_response_list_spec.rb
378
- - spec/models/patchedpython_python_repository_spec.rb
379
- - spec/models/metadata_version_enum_spec.rb
380
- - spec/models/package_metadata_response_spec.rb
381
- - spec/models/paginatedpython_package_yank_response_list_spec.rb
377
+ - spec/models/package_types_enum_spec.rb
382
378
  - spec/models/python_python_publication_spec.rb
383
- - spec/models/python_python_remote_response_spec.rb
384
- - spec/models/unset_label_response_spec.rb
385
- - spec/models/policy_enum_spec.rb
379
+ - spec/models/python_python_blocklist_entry_spec.rb
386
380
  - spec/models/protocol_version_enum_spec.rb
387
- - spec/models/filetype_enum_spec.rb
388
- - spec/models/python_python_package_content_response_spec.rb
389
- - spec/models/paginatedpython_package_provenance_response_list_spec.rb
381
+ - spec/models/patchedpython_python_repository_spec.rb
382
+ - spec/models/python_python_repository_spec.rb
383
+ - spec/models/yank_spec.rb
384
+ - spec/models/unset_label_response_spec.rb
385
+ - spec/models/summary_response_spec.rb
386
+ - spec/models/unset_label_spec.rb
387
+ - spec/models/patchedpython_python_remote_spec.rb
388
+ - spec/models/my_permissions_response_spec.rb
390
389
  - spec/models/python_package_provenance_response_spec.rb
391
- - spec/models/paginatedpython_python_distribution_response_list_spec.rb
392
- - spec/models/python_python_repository_response_spec.rb
393
- - spec/models/repair_spec.rb
390
+ - spec/models/object_roles_response_spec.rb
391
+ - spec/models/python_python_remote_response_spec.rb
392
+ - spec/models/set_label_spec.rb
393
+ - spec/models/paginatedpython_python_publication_response_list_spec.rb
394
394
  - spec/spec_helper.rb