crc-pulp-python-client 20250922.2__py3-none-any.whl → 20251112.1__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.
- crc_pulp_python_client-20251112.1.dist-info/METADATA +7928 -0
- {crc_pulp_python_client-20250922.2.dist-info → crc_pulp_python_client-20251112.1.dist-info}/RECORD +20 -20
- pulpcore/client/pulp_python/__init__.py +4 -4
- pulpcore/client/pulp_python/api/__init__.py +3 -3
- pulpcore/client/pulp_python/api/{pypi_legacy_api.py → api_legacy_api.py} +2 -2
- pulpcore/client/pulp_python/api/{pypi_api.py → api_pypi_api.py} +2 -2
- pulpcore/client/pulp_python/api/{pypi_simple_api.py → api_simple_api.py} +42 -8
- pulpcore/client/pulp_python/api/content_packages_api.py +36 -6
- pulpcore/client/pulp_python/api/distributions_pypi_api.py +16 -10
- pulpcore/client/pulp_python/api/pypi_metadata_api.py +1 -1
- pulpcore/client/pulp_python/api/remotes_python_api.py +16 -10
- pulpcore/client/pulp_python/api/repositories_python_api.py +16 -10
- pulpcore/client/pulp_python/api_client.py +1 -1
- pulpcore/client/pulp_python/configuration.py +3 -3
- pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +8 -1
- pulpcore/client/pulp_python/models/python_python_distribution.py +8 -1
- pulpcore/client/pulp_python/models/python_python_distribution_response.py +8 -1
- pulpcore/client/pulp_python/models/python_python_package_content_response.py +9 -2
- crc_pulp_python_client-20250922.2.dist-info/METADATA +0 -25
- {crc_pulp_python_client-20250922.2.dist-info → crc_pulp_python_client-20251112.1.dist-info}/WHEEL +0 -0
- {crc_pulp_python_client-20250922.2.dist-info → crc_pulp_python_client-20251112.1.dist-info}/top_level.txt +0 -0
|
@@ -83,6 +83,7 @@ class ContentPackagesApi:
|
|
|
83
83
|
license_expression: Annotated[Optional[StrictStr], Field(description="Text string that is a valid SPDX license expression.")] = None,
|
|
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
|
+
metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
|
|
86
87
|
pulp_domain: StrictStr = "default",
|
|
87
88
|
_request_timeout: Union[
|
|
88
89
|
None,
|
|
@@ -171,6 +172,8 @@ class ContentPackagesApi:
|
|
|
171
172
|
:type license_file: object
|
|
172
173
|
:param sha256: The SHA256 digest of this package.
|
|
173
174
|
:type sha256: str
|
|
175
|
+
:param metadata_sha256: The SHA256 digest of the package's METADATA file.
|
|
176
|
+
:type metadata_sha256: str
|
|
174
177
|
:param _request_timeout: timeout setting for this request. If one
|
|
175
178
|
number provided, it will be total request
|
|
176
179
|
timeout. It can also be a pair (tuple) of
|
|
@@ -229,6 +232,7 @@ class ContentPackagesApi:
|
|
|
229
232
|
license_expression=license_expression,
|
|
230
233
|
license_file=license_file,
|
|
231
234
|
sha256=sha256,
|
|
235
|
+
metadata_sha256=metadata_sha256,
|
|
232
236
|
_request_auth=_request_auth,
|
|
233
237
|
_content_type=_content_type,
|
|
234
238
|
_headers=_headers,
|
|
@@ -286,6 +290,7 @@ class ContentPackagesApi:
|
|
|
286
290
|
license_expression: Annotated[Optional[StrictStr], Field(description="Text string that is a valid SPDX license expression.")] = None,
|
|
287
291
|
license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
|
|
288
292
|
sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
|
|
293
|
+
metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
|
|
289
294
|
pulp_domain: StrictStr = "default",
|
|
290
295
|
_request_timeout: Union[
|
|
291
296
|
None,
|
|
@@ -374,6 +379,8 @@ class ContentPackagesApi:
|
|
|
374
379
|
:type license_file: object
|
|
375
380
|
:param sha256: The SHA256 digest of this package.
|
|
376
381
|
:type sha256: str
|
|
382
|
+
:param metadata_sha256: The SHA256 digest of the package's METADATA file.
|
|
383
|
+
:type metadata_sha256: str
|
|
377
384
|
:param _request_timeout: timeout setting for this request. If one
|
|
378
385
|
number provided, it will be total request
|
|
379
386
|
timeout. It can also be a pair (tuple) of
|
|
@@ -432,6 +439,7 @@ class ContentPackagesApi:
|
|
|
432
439
|
license_expression=license_expression,
|
|
433
440
|
license_file=license_file,
|
|
434
441
|
sha256=sha256,
|
|
442
|
+
metadata_sha256=metadata_sha256,
|
|
435
443
|
_request_auth=_request_auth,
|
|
436
444
|
_content_type=_content_type,
|
|
437
445
|
_headers=_headers,
|
|
@@ -489,6 +497,7 @@ class ContentPackagesApi:
|
|
|
489
497
|
license_expression: Annotated[Optional[StrictStr], Field(description="Text string that is a valid SPDX license expression.")] = None,
|
|
490
498
|
license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
|
|
491
499
|
sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
|
|
500
|
+
metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
|
|
492
501
|
pulp_domain: StrictStr = "default",
|
|
493
502
|
_request_timeout: Union[
|
|
494
503
|
None,
|
|
@@ -577,6 +586,8 @@ class ContentPackagesApi:
|
|
|
577
586
|
:type license_file: object
|
|
578
587
|
:param sha256: The SHA256 digest of this package.
|
|
579
588
|
:type sha256: str
|
|
589
|
+
:param metadata_sha256: The SHA256 digest of the package's METADATA file.
|
|
590
|
+
:type metadata_sha256: str
|
|
580
591
|
:param _request_timeout: timeout setting for this request. If one
|
|
581
592
|
number provided, it will be total request
|
|
582
593
|
timeout. It can also be a pair (tuple) of
|
|
@@ -635,6 +646,7 @@ class ContentPackagesApi:
|
|
|
635
646
|
license_expression=license_expression,
|
|
636
647
|
license_file=license_file,
|
|
637
648
|
sha256=sha256,
|
|
649
|
+
metadata_sha256=metadata_sha256,
|
|
638
650
|
_request_auth=_request_auth,
|
|
639
651
|
_content_type=_content_type,
|
|
640
652
|
_headers=_headers,
|
|
@@ -688,6 +700,7 @@ class ContentPackagesApi:
|
|
|
688
700
|
license_expression,
|
|
689
701
|
license_file,
|
|
690
702
|
sha256,
|
|
703
|
+
metadata_sha256,
|
|
691
704
|
_request_auth,
|
|
692
705
|
_content_type,
|
|
693
706
|
_headers,
|
|
@@ -783,6 +796,8 @@ class ContentPackagesApi:
|
|
|
783
796
|
_form_params.append(('license_file', license_file))
|
|
784
797
|
if sha256 is not None:
|
|
785
798
|
_form_params.append(('sha256', sha256))
|
|
799
|
+
if metadata_sha256 is not None:
|
|
800
|
+
_form_params.append(('metadata_sha256', metadata_sha256))
|
|
786
801
|
# process the body parameter
|
|
787
802
|
|
|
788
803
|
|
|
@@ -849,7 +864,7 @@ class ContentPackagesApi:
|
|
|
849
864
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
850
865
|
name__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where name is in a comma-separated list of values")] = None,
|
|
851
866
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
852
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)")] = 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,
|
|
853
868
|
orphaned_for: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.")] = None,
|
|
854
869
|
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,
|
|
855
870
|
packagetype__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where packagetype is in a comma-separated list of values")] = None,
|
|
@@ -917,7 +932,7 @@ class ContentPackagesApi:
|
|
|
917
932
|
:type name__in: List[str]
|
|
918
933
|
:param offset: The initial index from which to return the results.
|
|
919
934
|
:type offset: int
|
|
920
|
-
: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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
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)
|
|
921
936
|
:type ordering: List[str]
|
|
922
937
|
:param orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
|
923
938
|
:type orphaned_for: float
|
|
@@ -1060,7 +1075,7 @@ class ContentPackagesApi:
|
|
|
1060
1075
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
1061
1076
|
name__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where name is in a comma-separated list of values")] = None,
|
|
1062
1077
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
1063
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)")] = 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,
|
|
1064
1079
|
orphaned_for: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.")] = None,
|
|
1065
1080
|
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,
|
|
1066
1081
|
packagetype__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where packagetype is in a comma-separated list of values")] = None,
|
|
@@ -1128,7 +1143,7 @@ class ContentPackagesApi:
|
|
|
1128
1143
|
:type name__in: List[str]
|
|
1129
1144
|
:param offset: The initial index from which to return the results.
|
|
1130
1145
|
:type offset: int
|
|
1131
|
-
: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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
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)
|
|
1132
1147
|
:type ordering: List[str]
|
|
1133
1148
|
:param orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
|
1134
1149
|
:type orphaned_for: float
|
|
@@ -1271,7 +1286,7 @@ class ContentPackagesApi:
|
|
|
1271
1286
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
1272
1287
|
name__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where name is in a comma-separated list of values")] = None,
|
|
1273
1288
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
1274
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)")] = 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,
|
|
1275
1290
|
orphaned_for: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.")] = None,
|
|
1276
1291
|
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,
|
|
1277
1292
|
packagetype__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where packagetype is in a comma-separated list of values")] = None,
|
|
@@ -1339,7 +1354,7 @@ class ContentPackagesApi:
|
|
|
1339
1354
|
:type name__in: List[str]
|
|
1340
1355
|
:param offset: The initial index from which to return the results.
|
|
1341
1356
|
:type offset: int
|
|
1342
|
-
: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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
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)
|
|
1343
1358
|
:type ordering: List[str]
|
|
1344
1359
|
:param orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
|
1345
1360
|
:type orphaned_for: float
|
|
@@ -2689,6 +2704,7 @@ class ContentPackagesApi:
|
|
|
2689
2704
|
license_expression: Annotated[Optional[StrictStr], Field(description="Text string that is a valid SPDX license expression.")] = None,
|
|
2690
2705
|
license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
|
|
2691
2706
|
sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
|
|
2707
|
+
metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
|
|
2692
2708
|
pulp_domain: StrictStr = "default",
|
|
2693
2709
|
_request_timeout: Union[
|
|
2694
2710
|
None,
|
|
@@ -2773,6 +2789,8 @@ class ContentPackagesApi:
|
|
|
2773
2789
|
:type license_file: object
|
|
2774
2790
|
:param sha256: The SHA256 digest of this package.
|
|
2775
2791
|
:type sha256: str
|
|
2792
|
+
:param metadata_sha256: The SHA256 digest of the package's METADATA file.
|
|
2793
|
+
:type metadata_sha256: str
|
|
2776
2794
|
:param _request_timeout: timeout setting for this request. If one
|
|
2777
2795
|
number provided, it will be total request
|
|
2778
2796
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2829,6 +2847,7 @@ class ContentPackagesApi:
|
|
|
2829
2847
|
license_expression=license_expression,
|
|
2830
2848
|
license_file=license_file,
|
|
2831
2849
|
sha256=sha256,
|
|
2850
|
+
metadata_sha256=metadata_sha256,
|
|
2832
2851
|
_request_auth=_request_auth,
|
|
2833
2852
|
_content_type=_content_type,
|
|
2834
2853
|
_headers=_headers,
|
|
@@ -2884,6 +2903,7 @@ class ContentPackagesApi:
|
|
|
2884
2903
|
license_expression: Annotated[Optional[StrictStr], Field(description="Text string that is a valid SPDX license expression.")] = None,
|
|
2885
2904
|
license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
|
|
2886
2905
|
sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
|
|
2906
|
+
metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
|
|
2887
2907
|
pulp_domain: StrictStr = "default",
|
|
2888
2908
|
_request_timeout: Union[
|
|
2889
2909
|
None,
|
|
@@ -2968,6 +2988,8 @@ class ContentPackagesApi:
|
|
|
2968
2988
|
:type license_file: object
|
|
2969
2989
|
:param sha256: The SHA256 digest of this package.
|
|
2970
2990
|
:type sha256: str
|
|
2991
|
+
:param metadata_sha256: The SHA256 digest of the package's METADATA file.
|
|
2992
|
+
:type metadata_sha256: str
|
|
2971
2993
|
:param _request_timeout: timeout setting for this request. If one
|
|
2972
2994
|
number provided, it will be total request
|
|
2973
2995
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3024,6 +3046,7 @@ class ContentPackagesApi:
|
|
|
3024
3046
|
license_expression=license_expression,
|
|
3025
3047
|
license_file=license_file,
|
|
3026
3048
|
sha256=sha256,
|
|
3049
|
+
metadata_sha256=metadata_sha256,
|
|
3027
3050
|
_request_auth=_request_auth,
|
|
3028
3051
|
_content_type=_content_type,
|
|
3029
3052
|
_headers=_headers,
|
|
@@ -3079,6 +3102,7 @@ class ContentPackagesApi:
|
|
|
3079
3102
|
license_expression: Annotated[Optional[StrictStr], Field(description="Text string that is a valid SPDX license expression.")] = None,
|
|
3080
3103
|
license_file: Annotated[Optional[Any], Field(description="A JSON list containing names of the paths to license-related files.")] = None,
|
|
3081
3104
|
sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of this package.")] = None,
|
|
3105
|
+
metadata_sha256: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="The SHA256 digest of the package's METADATA file.")] = None,
|
|
3082
3106
|
pulp_domain: StrictStr = "default",
|
|
3083
3107
|
_request_timeout: Union[
|
|
3084
3108
|
None,
|
|
@@ -3163,6 +3187,8 @@ class ContentPackagesApi:
|
|
|
3163
3187
|
:type license_file: object
|
|
3164
3188
|
:param sha256: The SHA256 digest of this package.
|
|
3165
3189
|
:type sha256: str
|
|
3190
|
+
:param metadata_sha256: The SHA256 digest of the package's METADATA file.
|
|
3191
|
+
:type metadata_sha256: str
|
|
3166
3192
|
:param _request_timeout: timeout setting for this request. If one
|
|
3167
3193
|
number provided, it will be total request
|
|
3168
3194
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3219,6 +3245,7 @@ class ContentPackagesApi:
|
|
|
3219
3245
|
license_expression=license_expression,
|
|
3220
3246
|
license_file=license_file,
|
|
3221
3247
|
sha256=sha256,
|
|
3248
|
+
metadata_sha256=metadata_sha256,
|
|
3222
3249
|
_request_auth=_request_auth,
|
|
3223
3250
|
_content_type=_content_type,
|
|
3224
3251
|
_headers=_headers,
|
|
@@ -3270,6 +3297,7 @@ class ContentPackagesApi:
|
|
|
3270
3297
|
license_expression,
|
|
3271
3298
|
license_file,
|
|
3272
3299
|
sha256,
|
|
3300
|
+
metadata_sha256,
|
|
3273
3301
|
_request_auth,
|
|
3274
3302
|
_content_type,
|
|
3275
3303
|
_headers,
|
|
@@ -3361,6 +3389,8 @@ class ContentPackagesApi:
|
|
|
3361
3389
|
_form_params.append(('license_file', license_file))
|
|
3362
3390
|
if sha256 is not None:
|
|
3363
3391
|
_form_params.append(('sha256', sha256))
|
|
3392
|
+
if metadata_sha256 is not None:
|
|
3393
|
+
_form_params.append(('metadata_sha256', metadata_sha256))
|
|
3364
3394
|
# process the body parameter
|
|
3365
3395
|
|
|
3366
3396
|
|
|
@@ -2344,10 +2344,10 @@ class DistributionsPypiApi:
|
|
|
2344
2344
|
_content_type: Optional[StrictStr] = None,
|
|
2345
2345
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2346
2346
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2347
|
-
) ->
|
|
2347
|
+
) -> PythonPythonDistributionResponse:
|
|
2348
2348
|
"""Update a python distribution
|
|
2349
2349
|
|
|
2350
|
-
|
|
2350
|
+
Update the entity partially and trigger an asynchronous task if necessary
|
|
2351
2351
|
|
|
2352
2352
|
:param python_python_distribution_href: (required)
|
|
2353
2353
|
:type python_python_distribution_href: str
|
|
@@ -2388,6 +2388,7 @@ class DistributionsPypiApi:
|
|
|
2388
2388
|
)
|
|
2389
2389
|
|
|
2390
2390
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2391
|
+
'200': "PythonPythonDistributionResponse",
|
|
2391
2392
|
'202': "AsyncOperationResponse",
|
|
2392
2393
|
}
|
|
2393
2394
|
response_data = self.api_client.call_api(
|
|
@@ -2419,10 +2420,10 @@ class DistributionsPypiApi:
|
|
|
2419
2420
|
_content_type: Optional[StrictStr] = None,
|
|
2420
2421
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2421
2422
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2422
|
-
) -> ApiResponse[
|
|
2423
|
+
) -> ApiResponse[PythonPythonDistributionResponse]:
|
|
2423
2424
|
"""Update a python distribution
|
|
2424
2425
|
|
|
2425
|
-
|
|
2426
|
+
Update the entity partially and trigger an asynchronous task if necessary
|
|
2426
2427
|
|
|
2427
2428
|
:param python_python_distribution_href: (required)
|
|
2428
2429
|
:type python_python_distribution_href: str
|
|
@@ -2463,6 +2464,7 @@ class DistributionsPypiApi:
|
|
|
2463
2464
|
)
|
|
2464
2465
|
|
|
2465
2466
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2467
|
+
'200': "PythonPythonDistributionResponse",
|
|
2466
2468
|
'202': "AsyncOperationResponse",
|
|
2467
2469
|
}
|
|
2468
2470
|
response_data = self.api_client.call_api(
|
|
@@ -2497,7 +2499,7 @@ class DistributionsPypiApi:
|
|
|
2497
2499
|
) -> RESTResponseType:
|
|
2498
2500
|
"""Update a python distribution
|
|
2499
2501
|
|
|
2500
|
-
|
|
2502
|
+
Update the entity partially and trigger an asynchronous task if necessary
|
|
2501
2503
|
|
|
2502
2504
|
:param python_python_distribution_href: (required)
|
|
2503
2505
|
:type python_python_distribution_href: str
|
|
@@ -2538,6 +2540,7 @@ class DistributionsPypiApi:
|
|
|
2538
2540
|
)
|
|
2539
2541
|
|
|
2540
2542
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2543
|
+
'200': "PythonPythonDistributionResponse",
|
|
2541
2544
|
'202': "AsyncOperationResponse",
|
|
2542
2545
|
}
|
|
2543
2546
|
response_data = self.api_client.call_api(
|
|
@@ -3895,10 +3898,10 @@ class DistributionsPypiApi:
|
|
|
3895
3898
|
_content_type: Optional[StrictStr] = None,
|
|
3896
3899
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3897
3900
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3898
|
-
) ->
|
|
3901
|
+
) -> PythonPythonDistributionResponse:
|
|
3899
3902
|
"""Update a python distribution
|
|
3900
3903
|
|
|
3901
|
-
|
|
3904
|
+
Update the entity and trigger an asynchronous task if necessary
|
|
3902
3905
|
|
|
3903
3906
|
:param python_python_distribution_href: (required)
|
|
3904
3907
|
:type python_python_distribution_href: str
|
|
@@ -3939,6 +3942,7 @@ class DistributionsPypiApi:
|
|
|
3939
3942
|
)
|
|
3940
3943
|
|
|
3941
3944
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3945
|
+
'200': "PythonPythonDistributionResponse",
|
|
3942
3946
|
'202': "AsyncOperationResponse",
|
|
3943
3947
|
}
|
|
3944
3948
|
response_data = self.api_client.call_api(
|
|
@@ -3970,10 +3974,10 @@ class DistributionsPypiApi:
|
|
|
3970
3974
|
_content_type: Optional[StrictStr] = None,
|
|
3971
3975
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3972
3976
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3973
|
-
) -> ApiResponse[
|
|
3977
|
+
) -> ApiResponse[PythonPythonDistributionResponse]:
|
|
3974
3978
|
"""Update a python distribution
|
|
3975
3979
|
|
|
3976
|
-
|
|
3980
|
+
Update the entity and trigger an asynchronous task if necessary
|
|
3977
3981
|
|
|
3978
3982
|
:param python_python_distribution_href: (required)
|
|
3979
3983
|
:type python_python_distribution_href: str
|
|
@@ -4014,6 +4018,7 @@ class DistributionsPypiApi:
|
|
|
4014
4018
|
)
|
|
4015
4019
|
|
|
4016
4020
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4021
|
+
'200': "PythonPythonDistributionResponse",
|
|
4017
4022
|
'202': "AsyncOperationResponse",
|
|
4018
4023
|
}
|
|
4019
4024
|
response_data = self.api_client.call_api(
|
|
@@ -4048,7 +4053,7 @@ class DistributionsPypiApi:
|
|
|
4048
4053
|
) -> RESTResponseType:
|
|
4049
4054
|
"""Update a python distribution
|
|
4050
4055
|
|
|
4051
|
-
|
|
4056
|
+
Update the entity and trigger an asynchronous task if necessary
|
|
4052
4057
|
|
|
4053
4058
|
:param python_python_distribution_href: (required)
|
|
4054
4059
|
:type python_python_distribution_href: str
|
|
@@ -4089,6 +4094,7 @@ class DistributionsPypiApi:
|
|
|
4089
4094
|
)
|
|
4090
4095
|
|
|
4091
4096
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4097
|
+
'200': "PythonPythonDistributionResponse",
|
|
4092
4098
|
'202': "AsyncOperationResponse",
|
|
4093
4099
|
}
|
|
4094
4100
|
response_data = self.api_client.call_api(
|
|
@@ -369,7 +369,7 @@ class PypiMetadataApi:
|
|
|
369
369
|
|
|
370
370
|
return self.api_client.param_serialize(
|
|
371
371
|
method='GET',
|
|
372
|
-
resource_path='/pypi/{pulp_domain}/{path}/pypi/{meta}/',
|
|
372
|
+
resource_path='/api/pypi/{pulp_domain}/{path}/pypi/{meta}/',
|
|
373
373
|
path_params=_path_params,
|
|
374
374
|
query_params=_query_params,
|
|
375
375
|
header_params=_header_params,
|
|
@@ -2710,10 +2710,10 @@ class RemotesPythonApi:
|
|
|
2710
2710
|
_content_type: Optional[StrictStr] = None,
|
|
2711
2711
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2712
2712
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2713
|
-
) ->
|
|
2713
|
+
) -> PythonPythonRemoteResponse:
|
|
2714
2714
|
"""Update a python remote
|
|
2715
2715
|
|
|
2716
|
-
|
|
2716
|
+
Update the entity partially and trigger an asynchronous task if necessary
|
|
2717
2717
|
|
|
2718
2718
|
:param python_python_remote_href: (required)
|
|
2719
2719
|
:type python_python_remote_href: str
|
|
@@ -2754,6 +2754,7 @@ class RemotesPythonApi:
|
|
|
2754
2754
|
)
|
|
2755
2755
|
|
|
2756
2756
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2757
|
+
'200': "PythonPythonRemoteResponse",
|
|
2757
2758
|
'202': "AsyncOperationResponse",
|
|
2758
2759
|
}
|
|
2759
2760
|
response_data = self.api_client.call_api(
|
|
@@ -2785,10 +2786,10 @@ class RemotesPythonApi:
|
|
|
2785
2786
|
_content_type: Optional[StrictStr] = None,
|
|
2786
2787
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2787
2788
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2788
|
-
) -> ApiResponse[
|
|
2789
|
+
) -> ApiResponse[PythonPythonRemoteResponse]:
|
|
2789
2790
|
"""Update a python remote
|
|
2790
2791
|
|
|
2791
|
-
|
|
2792
|
+
Update the entity partially and trigger an asynchronous task if necessary
|
|
2792
2793
|
|
|
2793
2794
|
:param python_python_remote_href: (required)
|
|
2794
2795
|
:type python_python_remote_href: str
|
|
@@ -2829,6 +2830,7 @@ class RemotesPythonApi:
|
|
|
2829
2830
|
)
|
|
2830
2831
|
|
|
2831
2832
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2833
|
+
'200': "PythonPythonRemoteResponse",
|
|
2832
2834
|
'202': "AsyncOperationResponse",
|
|
2833
2835
|
}
|
|
2834
2836
|
response_data = self.api_client.call_api(
|
|
@@ -2863,7 +2865,7 @@ class RemotesPythonApi:
|
|
|
2863
2865
|
) -> RESTResponseType:
|
|
2864
2866
|
"""Update a python remote
|
|
2865
2867
|
|
|
2866
|
-
|
|
2868
|
+
Update the entity partially and trigger an asynchronous task if necessary
|
|
2867
2869
|
|
|
2868
2870
|
:param python_python_remote_href: (required)
|
|
2869
2871
|
:type python_python_remote_href: str
|
|
@@ -2904,6 +2906,7 @@ class RemotesPythonApi:
|
|
|
2904
2906
|
)
|
|
2905
2907
|
|
|
2906
2908
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2909
|
+
'200': "PythonPythonRemoteResponse",
|
|
2907
2910
|
'202': "AsyncOperationResponse",
|
|
2908
2911
|
}
|
|
2909
2912
|
response_data = self.api_client.call_api(
|
|
@@ -4261,10 +4264,10 @@ class RemotesPythonApi:
|
|
|
4261
4264
|
_content_type: Optional[StrictStr] = None,
|
|
4262
4265
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4263
4266
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4264
|
-
) ->
|
|
4267
|
+
) -> PythonPythonRemoteResponse:
|
|
4265
4268
|
"""Update a python remote
|
|
4266
4269
|
|
|
4267
|
-
|
|
4270
|
+
Update the entity and trigger an asynchronous task if necessary
|
|
4268
4271
|
|
|
4269
4272
|
:param python_python_remote_href: (required)
|
|
4270
4273
|
:type python_python_remote_href: str
|
|
@@ -4305,6 +4308,7 @@ class RemotesPythonApi:
|
|
|
4305
4308
|
)
|
|
4306
4309
|
|
|
4307
4310
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4311
|
+
'200': "PythonPythonRemoteResponse",
|
|
4308
4312
|
'202': "AsyncOperationResponse",
|
|
4309
4313
|
}
|
|
4310
4314
|
response_data = self.api_client.call_api(
|
|
@@ -4336,10 +4340,10 @@ class RemotesPythonApi:
|
|
|
4336
4340
|
_content_type: Optional[StrictStr] = None,
|
|
4337
4341
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4338
4342
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4339
|
-
) -> ApiResponse[
|
|
4343
|
+
) -> ApiResponse[PythonPythonRemoteResponse]:
|
|
4340
4344
|
"""Update a python remote
|
|
4341
4345
|
|
|
4342
|
-
|
|
4346
|
+
Update the entity and trigger an asynchronous task if necessary
|
|
4343
4347
|
|
|
4344
4348
|
:param python_python_remote_href: (required)
|
|
4345
4349
|
:type python_python_remote_href: str
|
|
@@ -4380,6 +4384,7 @@ class RemotesPythonApi:
|
|
|
4380
4384
|
)
|
|
4381
4385
|
|
|
4382
4386
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4387
|
+
'200': "PythonPythonRemoteResponse",
|
|
4383
4388
|
'202': "AsyncOperationResponse",
|
|
4384
4389
|
}
|
|
4385
4390
|
response_data = self.api_client.call_api(
|
|
@@ -4414,7 +4419,7 @@ class RemotesPythonApi:
|
|
|
4414
4419
|
) -> RESTResponseType:
|
|
4415
4420
|
"""Update a python remote
|
|
4416
4421
|
|
|
4417
|
-
|
|
4422
|
+
Update the entity and trigger an asynchronous task if necessary
|
|
4418
4423
|
|
|
4419
4424
|
:param python_python_remote_href: (required)
|
|
4420
4425
|
:type python_python_remote_href: str
|
|
@@ -4455,6 +4460,7 @@ class RemotesPythonApi:
|
|
|
4455
4460
|
)
|
|
4456
4461
|
|
|
4457
4462
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4463
|
+
'200': "PythonPythonRemoteResponse",
|
|
4458
4464
|
'202': "AsyncOperationResponse",
|
|
4459
4465
|
}
|
|
4460
4466
|
response_data = self.api_client.call_api(
|