crc-pulp-python-client 20251204.1__py3-none-any.whl → 20260114.2__py3-none-any.whl

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.

Potentially problematic release.


This version of crc-pulp-python-client might be problematic. Click here for more details.

Files changed (23) hide show
  1. {crc_pulp_python_client-20251204.1.dist-info → crc_pulp_python_client-20260114.2.dist-info}/METADATA +1161 -233
  2. {crc_pulp_python_client-20251204.1.dist-info → crc_pulp_python_client-20260114.2.dist-info}/RECORD +23 -16
  3. pulpcore/client/pulp_python/__init__.py +8 -1
  4. pulpcore/client/pulp_python/api/__init__.py +2 -0
  5. pulpcore/client/pulp_python/api/api_integrity_provenance_api.py +407 -0
  6. pulpcore/client/pulp_python/api/api_legacy_api.py +61 -1
  7. pulpcore/client/pulp_python/api/api_simple_api.py +70 -1
  8. pulpcore/client/pulp_python/api/content_packages_api.py +36 -6
  9. pulpcore/client/pulp_python/api/content_provenance_api.py +1900 -0
  10. pulpcore/client/pulp_python/api/repositories_python_versions_api.py +279 -0
  11. pulpcore/client/pulp_python/configuration.py +3 -3
  12. pulpcore/client/pulp_python/models/__init__.py +5 -0
  13. pulpcore/client/pulp_python/models/filetype_enum.py +38 -0
  14. pulpcore/client/pulp_python/models/metadata_version_enum.py +44 -0
  15. pulpcore/client/pulp_python/models/paginatedpython_package_provenance_response_list.py +112 -0
  16. pulpcore/client/pulp_python/models/patchedpython_python_remote.py +4 -2
  17. pulpcore/client/pulp_python/models/protocol_version_enum.py +37 -0
  18. pulpcore/client/pulp_python/models/python_package_provenance_response.py +124 -0
  19. pulpcore/client/pulp_python/models/python_python_package_content_response.py +11 -3
  20. pulpcore/client/pulp_python/models/python_python_remote.py +4 -2
  21. pulpcore/client/pulp_python/models/python_python_remote_response.py +4 -2
  22. {crc_pulp_python_client-20251204.1.dist-info → crc_pulp_python_client-20260114.2.dist-info}/WHEEL +0 -0
  23. {crc_pulp_python_client-20251204.1.dist-info → crc_pulp_python_client-20260114.2.dist-info}/top_level.txt +0 -0
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
20
  from pydantic import Field, StrictBytes, StrictStr
21
- from typing import List, Optional, Tuple, Union
21
+ from typing import Any, List, Optional, Tuple, Union
22
22
  from typing_extensions import Annotated
23
23
  from pulpcore.client.pulp_python.models.package_upload_task_response import PackageUploadTaskResponse
24
24
 
@@ -48,6 +48,10 @@ class ApiLegacyApi:
48
48
  sha256_digest: Annotated[str, Field(min_length=64, strict=True, max_length=64, description="SHA256 of package to validate upload integrity.")],
49
49
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
50
50
  action: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="Defaults to `file_upload`, don't change it or request will fail!")] = None,
51
+ protocol_version: Annotated[Optional[Any], Field(description="Protocol version to use for the upload. Only version 1 is supported. * `1` - 1")] = None,
52
+ filetype: Annotated[Optional[Any], Field(description="Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist")] = None,
53
+ metadata_version: Annotated[Optional[Any], Field(description="Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4")] = None,
54
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
51
55
  pulp_domain: StrictStr = "default",
52
56
  _request_timeout: Union[
53
57
  None,
@@ -78,6 +82,14 @@ class ApiLegacyApi:
78
82
  :type x_task_diagnostics: List[str]
79
83
  :param action: Defaults to `file_upload`, don't change it or request will fail!
80
84
  :type action: str
85
+ :param protocol_version: Protocol version to use for the upload. Only version 1 is supported. * `1` - 1
86
+ :type protocol_version: ProtocolVersionEnum
87
+ :param filetype: Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist
88
+ :type filetype: FiletypeEnum
89
+ :param metadata_version: Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4
90
+ :type metadata_version: MetadataVersionEnum
91
+ :param attestations: A JSON list containing attestations for the package.
92
+ :type attestations: object
81
93
  :param _request_timeout: timeout setting for this request. If one
82
94
  number provided, it will be total request
83
95
  timeout. It can also be a pair (tuple) of
@@ -107,6 +119,10 @@ class ApiLegacyApi:
107
119
  sha256_digest=sha256_digest,
108
120
  x_task_diagnostics=x_task_diagnostics,
109
121
  action=action,
122
+ protocol_version=protocol_version,
123
+ filetype=filetype,
124
+ metadata_version=metadata_version,
125
+ attestations=attestations,
110
126
  _request_auth=_request_auth,
111
127
  _content_type=_content_type,
112
128
  _headers=_headers,
@@ -135,6 +151,10 @@ class ApiLegacyApi:
135
151
  sha256_digest: Annotated[str, Field(min_length=64, strict=True, max_length=64, description="SHA256 of package to validate upload integrity.")],
136
152
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
137
153
  action: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="Defaults to `file_upload`, don't change it or request will fail!")] = None,
154
+ protocol_version: Annotated[Optional[Any], Field(description="Protocol version to use for the upload. Only version 1 is supported. * `1` - 1")] = None,
155
+ filetype: Annotated[Optional[Any], Field(description="Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist")] = None,
156
+ metadata_version: Annotated[Optional[Any], Field(description="Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4")] = None,
157
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
138
158
  pulp_domain: StrictStr = "default",
139
159
  _request_timeout: Union[
140
160
  None,
@@ -165,6 +185,14 @@ class ApiLegacyApi:
165
185
  :type x_task_diagnostics: List[str]
166
186
  :param action: Defaults to `file_upload`, don't change it or request will fail!
167
187
  :type action: str
188
+ :param protocol_version: Protocol version to use for the upload. Only version 1 is supported. * `1` - 1
189
+ :type protocol_version: ProtocolVersionEnum
190
+ :param filetype: Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist
191
+ :type filetype: FiletypeEnum
192
+ :param metadata_version: Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4
193
+ :type metadata_version: MetadataVersionEnum
194
+ :param attestations: A JSON list containing attestations for the package.
195
+ :type attestations: object
168
196
  :param _request_timeout: timeout setting for this request. If one
169
197
  number provided, it will be total request
170
198
  timeout. It can also be a pair (tuple) of
@@ -194,6 +222,10 @@ class ApiLegacyApi:
194
222
  sha256_digest=sha256_digest,
195
223
  x_task_diagnostics=x_task_diagnostics,
196
224
  action=action,
225
+ protocol_version=protocol_version,
226
+ filetype=filetype,
227
+ metadata_version=metadata_version,
228
+ attestations=attestations,
197
229
  _request_auth=_request_auth,
198
230
  _content_type=_content_type,
199
231
  _headers=_headers,
@@ -222,6 +254,10 @@ class ApiLegacyApi:
222
254
  sha256_digest: Annotated[str, Field(min_length=64, strict=True, max_length=64, description="SHA256 of package to validate upload integrity.")],
223
255
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
224
256
  action: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="Defaults to `file_upload`, don't change it or request will fail!")] = None,
257
+ protocol_version: Annotated[Optional[Any], Field(description="Protocol version to use for the upload. Only version 1 is supported. * `1` - 1")] = None,
258
+ filetype: Annotated[Optional[Any], Field(description="Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist")] = None,
259
+ metadata_version: Annotated[Optional[Any], Field(description="Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4")] = None,
260
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
225
261
  pulp_domain: StrictStr = "default",
226
262
  _request_timeout: Union[
227
263
  None,
@@ -252,6 +288,14 @@ class ApiLegacyApi:
252
288
  :type x_task_diagnostics: List[str]
253
289
  :param action: Defaults to `file_upload`, don't change it or request will fail!
254
290
  :type action: str
291
+ :param protocol_version: Protocol version to use for the upload. Only version 1 is supported. * `1` - 1
292
+ :type protocol_version: ProtocolVersionEnum
293
+ :param filetype: Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist
294
+ :type filetype: FiletypeEnum
295
+ :param metadata_version: Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4
296
+ :type metadata_version: MetadataVersionEnum
297
+ :param attestations: A JSON list containing attestations for the package.
298
+ :type attestations: object
255
299
  :param _request_timeout: timeout setting for this request. If one
256
300
  number provided, it will be total request
257
301
  timeout. It can also be a pair (tuple) of
@@ -281,6 +325,10 @@ class ApiLegacyApi:
281
325
  sha256_digest=sha256_digest,
282
326
  x_task_diagnostics=x_task_diagnostics,
283
327
  action=action,
328
+ protocol_version=protocol_version,
329
+ filetype=filetype,
330
+ metadata_version=metadata_version,
331
+ attestations=attestations,
284
332
  _request_auth=_request_auth,
285
333
  _content_type=_content_type,
286
334
  _headers=_headers,
@@ -305,6 +353,10 @@ class ApiLegacyApi:
305
353
  sha256_digest,
306
354
  x_task_diagnostics,
307
355
  action,
356
+ protocol_version,
357
+ filetype,
358
+ metadata_version,
359
+ attestations,
308
360
  _request_auth,
309
361
  _content_type,
310
362
  _headers,
@@ -342,6 +394,14 @@ class ApiLegacyApi:
342
394
  _form_params.append(('action', action))
343
395
  if sha256_digest is not None:
344
396
  _form_params.append(('sha256_digest', sha256_digest))
397
+ if protocol_version is not None:
398
+ _form_params.append(('protocol_version', protocol_version))
399
+ if filetype is not None:
400
+ _form_params.append(('filetype', filetype))
401
+ if metadata_version is not None:
402
+ _form_params.append(('metadata_version', metadata_version))
403
+ if attestations is not None:
404
+ _form_params.append(('attestations', attestations))
345
405
  # process the body parameter
346
406
 
347
407
 
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
20
  from pydantic import Field, StrictBytes, StrictStr, field_validator
21
- from typing import List, Optional, Tuple, Union
21
+ from typing import Any, List, Optional, Tuple, Union
22
22
  from typing_extensions import Annotated
23
23
  from pulpcore.client.pulp_python.models.package_upload_task_response import PackageUploadTaskResponse
24
24
 
@@ -48,6 +48,10 @@ class ApiSimpleApi:
48
48
  sha256_digest: Annotated[str, Field(min_length=64, strict=True, max_length=64, description="SHA256 of package to validate upload integrity.")],
49
49
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
50
50
  action: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="Defaults to `file_upload`, don't change it or request will fail!")] = None,
51
+ protocol_version: Annotated[Optional[Any], Field(description="Protocol version to use for the upload. Only version 1 is supported. * `1` - 1")] = None,
52
+ filetype: Annotated[Optional[Any], Field(description="Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist")] = None,
53
+ metadata_version: Annotated[Optional[Any], Field(description="Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4")] = None,
54
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
51
55
  pulp_domain: StrictStr = "default",
52
56
  _request_timeout: Union[
53
57
  None,
@@ -78,6 +82,14 @@ class ApiSimpleApi:
78
82
  :type x_task_diagnostics: List[str]
79
83
  :param action: Defaults to `file_upload`, don't change it or request will fail!
80
84
  :type action: str
85
+ :param protocol_version: Protocol version to use for the upload. Only version 1 is supported. * `1` - 1
86
+ :type protocol_version: ProtocolVersionEnum
87
+ :param filetype: Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist
88
+ :type filetype: FiletypeEnum
89
+ :param metadata_version: Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4
90
+ :type metadata_version: MetadataVersionEnum
91
+ :param attestations: A JSON list containing attestations for the package.
92
+ :type attestations: object
81
93
  :param _request_timeout: timeout setting for this request. If one
82
94
  number provided, it will be total request
83
95
  timeout. It can also be a pair (tuple) of
@@ -107,6 +119,10 @@ class ApiSimpleApi:
107
119
  sha256_digest=sha256_digest,
108
120
  x_task_diagnostics=x_task_diagnostics,
109
121
  action=action,
122
+ protocol_version=protocol_version,
123
+ filetype=filetype,
124
+ metadata_version=metadata_version,
125
+ attestations=attestations,
110
126
  _request_auth=_request_auth,
111
127
  _content_type=_content_type,
112
128
  _headers=_headers,
@@ -135,6 +151,10 @@ class ApiSimpleApi:
135
151
  sha256_digest: Annotated[str, Field(min_length=64, strict=True, max_length=64, description="SHA256 of package to validate upload integrity.")],
136
152
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
137
153
  action: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="Defaults to `file_upload`, don't change it or request will fail!")] = None,
154
+ protocol_version: Annotated[Optional[Any], Field(description="Protocol version to use for the upload. Only version 1 is supported. * `1` - 1")] = None,
155
+ filetype: Annotated[Optional[Any], Field(description="Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist")] = None,
156
+ metadata_version: Annotated[Optional[Any], Field(description="Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4")] = None,
157
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
138
158
  pulp_domain: StrictStr = "default",
139
159
  _request_timeout: Union[
140
160
  None,
@@ -165,6 +185,14 @@ class ApiSimpleApi:
165
185
  :type x_task_diagnostics: List[str]
166
186
  :param action: Defaults to `file_upload`, don't change it or request will fail!
167
187
  :type action: str
188
+ :param protocol_version: Protocol version to use for the upload. Only version 1 is supported. * `1` - 1
189
+ :type protocol_version: ProtocolVersionEnum
190
+ :param filetype: Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist
191
+ :type filetype: FiletypeEnum
192
+ :param metadata_version: Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4
193
+ :type metadata_version: MetadataVersionEnum
194
+ :param attestations: A JSON list containing attestations for the package.
195
+ :type attestations: object
168
196
  :param _request_timeout: timeout setting for this request. If one
169
197
  number provided, it will be total request
170
198
  timeout. It can also be a pair (tuple) of
@@ -194,6 +222,10 @@ class ApiSimpleApi:
194
222
  sha256_digest=sha256_digest,
195
223
  x_task_diagnostics=x_task_diagnostics,
196
224
  action=action,
225
+ protocol_version=protocol_version,
226
+ filetype=filetype,
227
+ metadata_version=metadata_version,
228
+ attestations=attestations,
197
229
  _request_auth=_request_auth,
198
230
  _content_type=_content_type,
199
231
  _headers=_headers,
@@ -222,6 +254,10 @@ class ApiSimpleApi:
222
254
  sha256_digest: Annotated[str, Field(min_length=64, strict=True, max_length=64, description="SHA256 of package to validate upload integrity.")],
223
255
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
224
256
  action: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="Defaults to `file_upload`, don't change it or request will fail!")] = None,
257
+ protocol_version: Annotated[Optional[Any], Field(description="Protocol version to use for the upload. Only version 1 is supported. * `1` - 1")] = None,
258
+ filetype: Annotated[Optional[Any], Field(description="Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist")] = None,
259
+ metadata_version: Annotated[Optional[Any], Field(description="Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4")] = None,
260
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
225
261
  pulp_domain: StrictStr = "default",
226
262
  _request_timeout: Union[
227
263
  None,
@@ -252,6 +288,14 @@ class ApiSimpleApi:
252
288
  :type x_task_diagnostics: List[str]
253
289
  :param action: Defaults to `file_upload`, don't change it or request will fail!
254
290
  :type action: str
291
+ :param protocol_version: Protocol version to use for the upload. Only version 1 is supported. * `1` - 1
292
+ :type protocol_version: ProtocolVersionEnum
293
+ :param filetype: Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist
294
+ :type filetype: FiletypeEnum
295
+ :param metadata_version: Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4
296
+ :type metadata_version: MetadataVersionEnum
297
+ :param attestations: A JSON list containing attestations for the package.
298
+ :type attestations: object
255
299
  :param _request_timeout: timeout setting for this request. If one
256
300
  number provided, it will be total request
257
301
  timeout. It can also be a pair (tuple) of
@@ -281,6 +325,10 @@ class ApiSimpleApi:
281
325
  sha256_digest=sha256_digest,
282
326
  x_task_diagnostics=x_task_diagnostics,
283
327
  action=action,
328
+ protocol_version=protocol_version,
329
+ filetype=filetype,
330
+ metadata_version=metadata_version,
331
+ attestations=attestations,
284
332
  _request_auth=_request_auth,
285
333
  _content_type=_content_type,
286
334
  _headers=_headers,
@@ -305,6 +353,10 @@ class ApiSimpleApi:
305
353
  sha256_digest,
306
354
  x_task_diagnostics,
307
355
  action,
356
+ protocol_version,
357
+ filetype,
358
+ metadata_version,
359
+ attestations,
308
360
  _request_auth,
309
361
  _content_type,
310
362
  _headers,
@@ -342,6 +394,14 @@ class ApiSimpleApi:
342
394
  _form_params.append(('action', action))
343
395
  if sha256_digest is not None:
344
396
  _form_params.append(('sha256_digest', sha256_digest))
397
+ if protocol_version is not None:
398
+ _form_params.append(('protocol_version', protocol_version))
399
+ if filetype is not None:
400
+ _form_params.append(('filetype', filetype))
401
+ if metadata_version is not None:
402
+ _form_params.append(('metadata_version', metadata_version))
403
+ if attestations is not None:
404
+ _form_params.append(('attestations', attestations))
345
405
  # process the body parameter
346
406
 
347
407
 
@@ -370,6 +430,9 @@ class ApiSimpleApi:
370
430
 
371
431
  # authentication setting
372
432
  _auth_settings: List[str] = [
433
+ 'json_header_remote_authentication',
434
+ 'basicAuth',
435
+ 'cookieAuth'
373
436
  ]
374
437
 
375
438
  return self.api_client.param_serialize(
@@ -722,6 +785,9 @@ class ApiSimpleApi:
722
785
 
723
786
  # authentication setting
724
787
  _auth_settings: List[str] = [
788
+ 'json_header_remote_authentication',
789
+ 'basicAuth',
790
+ 'cookieAuth'
725
791
  ]
726
792
 
727
793
  return self.api_client.param_serialize(
@@ -1059,6 +1125,9 @@ class ApiSimpleApi:
1059
1125
 
1060
1126
  # authentication setting
1061
1127
  _auth_settings: List[str] = [
1128
+ 'json_header_remote_authentication',
1129
+ 'basicAuth',
1130
+ 'cookieAuth'
1062
1131
  ]
1063
1132
 
1064
1133
  return self.api_client.param_serialize(
@@ -84,6 +84,7 @@ class ContentPackagesApi:
84
84
  license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
85
85
  sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
86
86
  metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
87
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
87
88
  pulp_domain: StrictStr = "default",
88
89
  _request_timeout: Union[
89
90
  None,
@@ -174,6 +175,8 @@ class ContentPackagesApi:
174
175
  :type sha256: str
175
176
  :param metadata_sha256: The SHA256 digest of the package's METADATA file.
176
177
  :type metadata_sha256: str
178
+ :param attestations: A JSON list containing attestations for the package.
179
+ :type attestations: object
177
180
  :param _request_timeout: timeout setting for this request. If one
178
181
  number provided, it will be total request
179
182
  timeout. It can also be a pair (tuple) of
@@ -233,6 +236,7 @@ class ContentPackagesApi:
233
236
  license_file=license_file,
234
237
  sha256=sha256,
235
238
  metadata_sha256=metadata_sha256,
239
+ attestations=attestations,
236
240
  _request_auth=_request_auth,
237
241
  _content_type=_content_type,
238
242
  _headers=_headers,
@@ -291,6 +295,7 @@ class ContentPackagesApi:
291
295
  license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
292
296
  sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
293
297
  metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
298
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
294
299
  pulp_domain: StrictStr = "default",
295
300
  _request_timeout: Union[
296
301
  None,
@@ -381,6 +386,8 @@ class ContentPackagesApi:
381
386
  :type sha256: str
382
387
  :param metadata_sha256: The SHA256 digest of the package's METADATA file.
383
388
  :type metadata_sha256: str
389
+ :param attestations: A JSON list containing attestations for the package.
390
+ :type attestations: object
384
391
  :param _request_timeout: timeout setting for this request. If one
385
392
  number provided, it will be total request
386
393
  timeout. It can also be a pair (tuple) of
@@ -440,6 +447,7 @@ class ContentPackagesApi:
440
447
  license_file=license_file,
441
448
  sha256=sha256,
442
449
  metadata_sha256=metadata_sha256,
450
+ attestations=attestations,
443
451
  _request_auth=_request_auth,
444
452
  _content_type=_content_type,
445
453
  _headers=_headers,
@@ -498,6 +506,7 @@ class ContentPackagesApi:
498
506
  license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
499
507
  sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
500
508
  metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
509
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
501
510
  pulp_domain: StrictStr = "default",
502
511
  _request_timeout: Union[
503
512
  None,
@@ -588,6 +597,8 @@ class ContentPackagesApi:
588
597
  :type sha256: str
589
598
  :param metadata_sha256: The SHA256 digest of the package's METADATA file.
590
599
  :type metadata_sha256: str
600
+ :param attestations: A JSON list containing attestations for the package.
601
+ :type attestations: object
591
602
  :param _request_timeout: timeout setting for this request. If one
592
603
  number provided, it will be total request
593
604
  timeout. It can also be a pair (tuple) of
@@ -647,6 +658,7 @@ class ContentPackagesApi:
647
658
  license_file=license_file,
648
659
  sha256=sha256,
649
660
  metadata_sha256=metadata_sha256,
661
+ attestations=attestations,
650
662
  _request_auth=_request_auth,
651
663
  _content_type=_content_type,
652
664
  _headers=_headers,
@@ -701,6 +713,7 @@ class ContentPackagesApi:
701
713
  license_file,
702
714
  sha256,
703
715
  metadata_sha256,
716
+ attestations,
704
717
  _request_auth,
705
718
  _content_type,
706
719
  _headers,
@@ -798,6 +811,8 @@ class ContentPackagesApi:
798
811
  _form_params.append(('sha256', sha256))
799
812
  if metadata_sha256 is not None:
800
813
  _form_params.append(('metadata_sha256', metadata_sha256))
814
+ if attestations is not None:
815
+ _form_params.append(('attestations', attestations))
801
816
  # process the body parameter
802
817
 
803
818
 
@@ -864,7 +879,7 @@ class ContentPackagesApi:
864
879
  name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
865
880
  name__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where name is in a comma-separated list of values")] = None,
866
881
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
867
- ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
882
+ ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
868
883
  orphaned_for: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.")] = None,
869
884
  packagetype: Annotated[Optional[StrictStr], Field(description="Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist")] = None,
870
885
  packagetype__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where packagetype is in a comma-separated list of values")] = None,
@@ -932,7 +947,7 @@ class ContentPackagesApi:
932
947
  :type name__in: List[str]
933
948
  :param offset: The initial index from which to return the results.
934
949
  :type offset: int
935
- :param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
950
+ :param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)
936
951
  :type ordering: List[str]
937
952
  :param orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
938
953
  :type orphaned_for: float
@@ -1075,7 +1090,7 @@ class ContentPackagesApi:
1075
1090
  name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
1076
1091
  name__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where name is in a comma-separated list of values")] = None,
1077
1092
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
1078
- ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
1093
+ ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
1079
1094
  orphaned_for: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.")] = None,
1080
1095
  packagetype: Annotated[Optional[StrictStr], Field(description="Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist")] = None,
1081
1096
  packagetype__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where packagetype is in a comma-separated list of values")] = None,
@@ -1143,7 +1158,7 @@ class ContentPackagesApi:
1143
1158
  :type name__in: List[str]
1144
1159
  :param offset: The initial index from which to return the results.
1145
1160
  :type offset: int
1146
- :param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
1161
+ :param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)
1147
1162
  :type ordering: List[str]
1148
1163
  :param orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
1149
1164
  :type orphaned_for: float
@@ -1286,7 +1301,7 @@ class ContentPackagesApi:
1286
1301
  name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
1287
1302
  name__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where name is in a comma-separated list of values")] = None,
1288
1303
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
1289
- ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
1304
+ ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
1290
1305
  orphaned_for: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.")] = None,
1291
1306
  packagetype: Annotated[Optional[StrictStr], Field(description="Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist")] = None,
1292
1307
  packagetype__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where packagetype is in a comma-separated list of values")] = None,
@@ -1354,7 +1369,7 @@ class ContentPackagesApi:
1354
1369
  :type name__in: List[str]
1355
1370
  :param offset: The initial index from which to return the results.
1356
1371
  :type offset: int
1357
- :param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
1372
+ :param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `metadata_sha256` - Metadata sha256 * `-metadata_sha256` - Metadata sha256 (descending) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)
1358
1373
  :type ordering: List[str]
1359
1374
  :param orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
1360
1375
  :type orphaned_for: float
@@ -2705,6 +2720,7 @@ class ContentPackagesApi:
2705
2720
  license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
2706
2721
  sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
2707
2722
  metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
2723
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
2708
2724
  pulp_domain: StrictStr = "default",
2709
2725
  _request_timeout: Union[
2710
2726
  None,
@@ -2791,6 +2807,8 @@ class ContentPackagesApi:
2791
2807
  :type sha256: str
2792
2808
  :param metadata_sha256: The SHA256 digest of the package's METADATA file.
2793
2809
  :type metadata_sha256: str
2810
+ :param attestations: A JSON list containing attestations for the package.
2811
+ :type attestations: object
2794
2812
  :param _request_timeout: timeout setting for this request. If one
2795
2813
  number provided, it will be total request
2796
2814
  timeout. It can also be a pair (tuple) of
@@ -2848,6 +2866,7 @@ class ContentPackagesApi:
2848
2866
  license_file=license_file,
2849
2867
  sha256=sha256,
2850
2868
  metadata_sha256=metadata_sha256,
2869
+ attestations=attestations,
2851
2870
  _request_auth=_request_auth,
2852
2871
  _content_type=_content_type,
2853
2872
  _headers=_headers,
@@ -2904,6 +2923,7 @@ class ContentPackagesApi:
2904
2923
  license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
2905
2924
  sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
2906
2925
  metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
2926
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
2907
2927
  pulp_domain: StrictStr = "default",
2908
2928
  _request_timeout: Union[
2909
2929
  None,
@@ -2990,6 +3010,8 @@ class ContentPackagesApi:
2990
3010
  :type sha256: str
2991
3011
  :param metadata_sha256: The SHA256 digest of the package's METADATA file.
2992
3012
  :type metadata_sha256: str
3013
+ :param attestations: A JSON list containing attestations for the package.
3014
+ :type attestations: object
2993
3015
  :param _request_timeout: timeout setting for this request. If one
2994
3016
  number provided, it will be total request
2995
3017
  timeout. It can also be a pair (tuple) of
@@ -3047,6 +3069,7 @@ class ContentPackagesApi:
3047
3069
  license_file=license_file,
3048
3070
  sha256=sha256,
3049
3071
  metadata_sha256=metadata_sha256,
3072
+ attestations=attestations,
3050
3073
  _request_auth=_request_auth,
3051
3074
  _content_type=_content_type,
3052
3075
  _headers=_headers,
@@ -3103,6 +3126,7 @@ class ContentPackagesApi:
3103
3126
  license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
3104
3127
  sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
3105
3128
  metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
3129
+ attestations: Annotated[Optional[Any], Field(description="A JSON list containing attestations for the package.")] = None,
3106
3130
  pulp_domain: StrictStr = "default",
3107
3131
  _request_timeout: Union[
3108
3132
  None,
@@ -3189,6 +3213,8 @@ class ContentPackagesApi:
3189
3213
  :type sha256: str
3190
3214
  :param metadata_sha256: The SHA256 digest of the package's METADATA file.
3191
3215
  :type metadata_sha256: str
3216
+ :param attestations: A JSON list containing attestations for the package.
3217
+ :type attestations: object
3192
3218
  :param _request_timeout: timeout setting for this request. If one
3193
3219
  number provided, it will be total request
3194
3220
  timeout. It can also be a pair (tuple) of
@@ -3246,6 +3272,7 @@ class ContentPackagesApi:
3246
3272
  license_file=license_file,
3247
3273
  sha256=sha256,
3248
3274
  metadata_sha256=metadata_sha256,
3275
+ attestations=attestations,
3249
3276
  _request_auth=_request_auth,
3250
3277
  _content_type=_content_type,
3251
3278
  _headers=_headers,
@@ -3298,6 +3325,7 @@ class ContentPackagesApi:
3298
3325
  license_file,
3299
3326
  sha256,
3300
3327
  metadata_sha256,
3328
+ attestations,
3301
3329
  _request_auth,
3302
3330
  _content_type,
3303
3331
  _headers,
@@ -3391,6 +3419,8 @@ class ContentPackagesApi:
3391
3419
  _form_params.append(('sha256', sha256))
3392
3420
  if metadata_sha256 is not None:
3393
3421
  _form_params.append(('metadata_sha256', metadata_sha256))
3422
+ if attestations is not None:
3423
+ _form_params.append(('attestations', attestations))
3394
3424
  # process the body parameter
3395
3425
 
3396
3426