pulpcore-client 3.80.2__py3-none-any.whl → 3.82.0__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 pulpcore-client might be problematic. Click here for more details.

Files changed (64) hide show
  1. pulpcore/client/pulpcore/__init__.py +1 -1
  2. pulpcore/client/pulpcore/api/access_policies_api.py +80 -0
  3. pulpcore/client/pulpcore/api/artifacts_api.py +64 -0
  4. pulpcore/client/pulpcore/api/content_api.py +16 -0
  5. pulpcore/client/pulpcore/api/content_openpgp_publickey_api.py +80 -0
  6. pulpcore/client/pulpcore/api/content_openpgp_publicsubkey_api.py +64 -0
  7. pulpcore/client/pulpcore/api/content_openpgp_signature_api.py +64 -0
  8. pulpcore/client/pulpcore/api/content_openpgp_userattribute_api.py +64 -0
  9. pulpcore/client/pulpcore/api/content_openpgp_userid_api.py +64 -0
  10. pulpcore/client/pulpcore/api/contentguards_api.py +16 -0
  11. pulpcore/client/pulpcore/api/contentguards_composite_api.py +160 -0
  12. pulpcore/client/pulpcore/api/contentguards_content_redirect_api.py +160 -0
  13. pulpcore/client/pulpcore/api/contentguards_header_api.py +160 -0
  14. pulpcore/client/pulpcore/api/contentguards_rbac_api.py +160 -0
  15. pulpcore/client/pulpcore/api/distributions_api.py +16 -0
  16. pulpcore/client/pulpcore/api/distributions_artifacts_api.py +32 -0
  17. pulpcore/client/pulpcore/api/distributions_openpgp_api.py +128 -0
  18. pulpcore/client/pulpcore/api/domains_api.py +144 -0
  19. pulpcore/client/pulpcore/api/exporters_filesystem_api.py +96 -0
  20. pulpcore/client/pulpcore/api/exporters_filesystem_exports_api.py +64 -0
  21. pulpcore/client/pulpcore/api/exporters_pulp_api.py +96 -0
  22. pulpcore/client/pulpcore/api/exporters_pulp_exports_api.py +64 -0
  23. pulpcore/client/pulpcore/api/groups_api.py +160 -0
  24. pulpcore/client/pulpcore/api/groups_roles_api.py +64 -0
  25. pulpcore/client/pulpcore/api/groups_users_api.py +48 -0
  26. pulpcore/client/pulpcore/api/importers_pulp_api.py +96 -0
  27. pulpcore/client/pulpcore/api/importers_pulp_import_check_api.py +19 -0
  28. pulpcore/client/pulpcore/api/importers_pulp_imports_api.py +64 -0
  29. pulpcore/client/pulpcore/api/livez_api.py +55 -0
  30. pulpcore/client/pulpcore/api/login_api.py +87 -0
  31. pulpcore/client/pulpcore/api/orphans_api.py +19 -0
  32. pulpcore/client/pulpcore/api/orphans_cleanup_api.py +19 -0
  33. pulpcore/client/pulpcore/api/publications_api.py +16 -0
  34. pulpcore/client/pulpcore/api/remotes_api.py +16 -0
  35. pulpcore/client/pulpcore/api/repair_api.py +19 -0
  36. pulpcore/client/pulpcore/api/repositories_api.py +16 -0
  37. pulpcore/client/pulpcore/api/repositories_openpgp_keyring_api.py +208 -0
  38. pulpcore/client/pulpcore/api/repositories_reclaim_space_api.py +19 -0
  39. pulpcore/client/pulpcore/api/repository_versions_api.py +16 -0
  40. pulpcore/client/pulpcore/api/roles_api.py +96 -0
  41. pulpcore/client/pulpcore/api/signing_services_api.py +32 -0
  42. pulpcore/client/pulpcore/api/status_api.py +55 -0
  43. pulpcore/client/pulpcore/api/task_groups_api.py +48 -0
  44. pulpcore/client/pulpcore/api/task_schedules_api.py +96 -0
  45. pulpcore/client/pulpcore/api/tasks_api.py +166 -6
  46. pulpcore/client/pulpcore/api/uploads_api.py +160 -0
  47. pulpcore/client/pulpcore/api/upstream_pulps_api.py +176 -0
  48. pulpcore/client/pulpcore/api/users_api.py +96 -0
  49. pulpcore/client/pulpcore/api/users_roles_api.py +64 -0
  50. pulpcore/client/pulpcore/api/workers_api.py +32 -0
  51. pulpcore/client/pulpcore/api_client.py +1 -1
  52. pulpcore/client/pulpcore/configuration.py +1 -1
  53. pulpcore/client/pulpcore/models/artifact_distribution_response.py +17 -17
  54. pulpcore/client/pulpcore/models/composite_content_guard.py +1 -1
  55. pulpcore/client/pulpcore/models/composite_content_guard_response.py +1 -1
  56. pulpcore/client/pulpcore/models/content_guard_response.py +1 -1
  57. pulpcore/client/pulpcore/models/patched_composite_content_guard.py +1 -1
  58. pulpcore/client/pulpcore/models/patched_rbac_content_guard.py +1 -1
  59. pulpcore/client/pulpcore/models/rbac_content_guard.py +1 -1
  60. pulpcore/client/pulpcore/models/rbac_content_guard_response.py +1 -1
  61. {pulpcore_client-3.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/METADATA +1 -1
  62. {pulpcore_client-3.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/RECORD +64 -64
  63. {pulpcore_client-3.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/WHEEL +0 -0
  64. {pulpcore_client-3.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,7 @@ from typing_extensions import Self
26
26
 
27
27
  class CompositeContentGuard(BaseModel):
28
28
  """
29
- Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
29
+ Base class for content guard serializers.
30
30
  """ # noqa: E501
31
31
  name: Annotated[str, Field(min_length=1, strict=True)] = Field(description="The unique name.")
32
32
  description: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="An optional description.")
@@ -26,7 +26,7 @@ from typing_extensions import Self
26
26
 
27
27
  class CompositeContentGuardResponse(BaseModel):
28
28
  """
29
- Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
29
+ Base class for content guard serializers.
30
30
  """ # noqa: E501
31
31
  pulp_href: Optional[StrictStr] = None
32
32
  prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
@@ -26,7 +26,7 @@ from typing_extensions import Self
26
26
 
27
27
  class ContentGuardResponse(BaseModel):
28
28
  """
29
- Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
29
+ Base class for content guard serializers.
30
30
  """ # noqa: E501
31
31
  pulp_href: Optional[StrictStr] = None
32
32
  prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
@@ -26,7 +26,7 @@ from typing_extensions import Self
26
26
 
27
27
  class PatchedCompositeContentGuard(BaseModel):
28
28
  """
29
- Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
29
+ Base class for content guard serializers.
30
30
  """ # noqa: E501
31
31
  name: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The unique name.")
32
32
  description: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="An optional description.")
@@ -26,7 +26,7 @@ from typing_extensions import Self
26
26
 
27
27
  class PatchedRBACContentGuard(BaseModel):
28
28
  """
29
- Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
29
+ Base class for content guard serializers.
30
30
  """ # noqa: E501
31
31
  name: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The unique name.")
32
32
  description: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="An optional description.")
@@ -26,7 +26,7 @@ from typing_extensions import Self
26
26
 
27
27
  class RBACContentGuard(BaseModel):
28
28
  """
29
- Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
29
+ Base class for content guard serializers.
30
30
  """ # noqa: E501
31
31
  name: Annotated[str, Field(min_length=1, strict=True)] = Field(description="The unique name.")
32
32
  description: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="An optional description.")
@@ -28,7 +28,7 @@ from typing_extensions import Self
28
28
 
29
29
  class RBACContentGuardResponse(BaseModel):
30
30
  """
31
- Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
31
+ Base class for content guard serializers.
32
32
  """ # noqa: E501
33
33
  pulp_href: Optional[StrictStr] = None
34
34
  prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulpcore-client
3
- Version: 3.80.2
3
+ Version: 3.82.0
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
@@ -1,73 +1,73 @@
1
1
  pulpcore/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
2
2
  pulpcore/client/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
3
- pulpcore/client/pulpcore/__init__.py,sha256=DXSKSCz4MnX64fGNeGB1pierP8Nwul_2TkQSaO8Ld4E,20876
4
- pulpcore/client/pulpcore/api_client.py,sha256=vuR2CylhvaN5FwoW0GZI5cH8gbQ4TueCE_Okl7irHWE,27513
3
+ pulpcore/client/pulpcore/__init__.py,sha256=LARQO8VkAUwocD6XiJ6-lp3AOGOoW4DWkrDqdhLHtaw,20876
4
+ pulpcore/client/pulpcore/api_client.py,sha256=9ZIL7i9H9En0AgCGG2k6OoILBNYM806K4hUD4moUfrk,27513
5
5
  pulpcore/client/pulpcore/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
6
- pulpcore/client/pulpcore/configuration.py,sha256=NpO0k642Vv4oLIdGPr8p__8nE3UgkoS2UIpZYhyXB_o,19241
6
+ pulpcore/client/pulpcore/configuration.py,sha256=VuCv7r095T4P0yu0pEtYaEeo6f7TzhtwSIKHem9Neac,19241
7
7
  pulpcore/client/pulpcore/exceptions.py,sha256=voqdIkPGpfNSUF9SsFqERflJMVs-uYFH60fd1rcsz6Y,5957
8
8
  pulpcore/client/pulpcore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  pulpcore/client/pulpcore/rest.py,sha256=ZFqHiM-CIVneED6Dl_oqo7zt3Uqa_fBHPCvoMvLG0YY,9407
10
10
  pulpcore/client/pulpcore/api/__init__.py,sha256=kYDQgPPL2hskUS5zVnzcjn1SwF7hNB7c9Q_c5pM4vo0,3951
11
- pulpcore/client/pulpcore/api/access_policies_api.py,sha256=V6dwrB_KUeW8GuFwL4rjJp-qiL0fj8TqmqY9CIvuBak,79186
12
- pulpcore/client/pulpcore/api/artifacts_api.py,sha256=Zk8_MtAie5ux3Z628rLRN8fbi1fLZCErg_FlL5gtXig,79379
13
- pulpcore/client/pulpcore/api/content_api.py,sha256=6wI55QvSguwtZpBxquOjoax0MxaJhhbmPKvQvbkGC88,30821
14
- pulpcore/client/pulpcore/api/content_openpgp_publickey_api.py,sha256=s_znSbn0Rbf135KIWKb7RjEgj4zYXE9aGv9F9-mSZZU,81443
15
- pulpcore/client/pulpcore/api/content_openpgp_publicsubkey_api.py,sha256=S1I2SkFNSvnZiDvhIEO2apYcGUv6-0qQ3MPPbFpzh_8,65883
16
- pulpcore/client/pulpcore/api/content_openpgp_signature_api.py,sha256=O0XBGn9cEmMnSSyUmbuucNMeK3-LsTd24s8YB7AVrWo,67880
17
- pulpcore/client/pulpcore/api/content_openpgp_userattribute_api.py,sha256=V32qAi1TPXBvipqN0xkQ3Gxv476VX6i8VCX7sm8_xKE,65372
18
- pulpcore/client/pulpcore/api/content_openpgp_userid_api.py,sha256=gr3XHKxsqNpuf2zbYT9tHOee1J-CdW7qfo6KTwfRYvc,73542
19
- pulpcore/client/pulpcore/api/contentguards_api.py,sha256=_2uLMvT3oQ3ITne_b1FnNRt3LV1aoSW7Nhy-DisZMvc,34897
20
- pulpcore/client/pulpcore/api/contentguards_composite_api.py,sha256=VhH2TIP7gID1cIt_vxALfzUvUQWW8i4itnB6axwNBZ8,135587
21
- pulpcore/client/pulpcore/api/contentguards_content_redirect_api.py,sha256=gTrdJ_6U_kBBkoYnHKbecI39zkdvCLw1K4tcwC2L9GE,137469
22
- pulpcore/client/pulpcore/api/contentguards_header_api.py,sha256=YP4yc9a57t54q1Kpmml918VzaHARwAsArCWe8PstAp4,134549
23
- pulpcore/client/pulpcore/api/contentguards_rbac_api.py,sha256=y0byBUVpmxIQXUb3ZEH3G2aDrIFpMNg-bDReZeaOzJI,136617
24
- pulpcore/client/pulpcore/api/distributions_api.py,sha256=5gjlOJ4shElh-9vE4bwP8ydONKevKco7LwBos2BxRpk,44090
25
- pulpcore/client/pulpcore/api/distributions_artifacts_api.py,sha256=0k6XHhmBb4j2-fJ7OWc6RiwEvSMqNc6sncu0pBFbooY,53593
26
- pulpcore/client/pulpcore/api/distributions_openpgp_api.py,sha256=T00oh8f5yZJ_ZqVn59gWBVWTIWu4qwI_iyKklTdzuPU,106889
27
- pulpcore/client/pulpcore/api/domains_api.py,sha256=RN5EhJzF5vYiRWu6YODolTwr7-l0xxHdMRH0vzQhrNU,124007
28
- pulpcore/client/pulpcore/api/exporters_filesystem_api.py,sha256=dR_xw5uKlqtTm0U671k_d5aa1M5gQOqfEliY5HXO_lU,87279
29
- pulpcore/client/pulpcore/api/exporters_filesystem_exports_api.py,sha256=HPt_p04h9ztSUHjXCShyG1Okq3zFWjkYOB_Emg4K5yg,49171
30
- pulpcore/client/pulpcore/api/exporters_pulp_api.py,sha256=PpTSFXId3z-6x_lnpCygx99UWoSt3BHDB4I9I6kSTxE,85707
31
- pulpcore/client/pulpcore/api/exporters_pulp_exports_api.py,sha256=dsN83dbHqikXMoE8h2MoCQpUKGhHWTZW2KaFce37NM0,48199
32
- pulpcore/client/pulpcore/api/groups_api.py,sha256=3BmxCCJ_FBhmwvB6CILQK6-4lCo8axPhnL3NDIKW6Gk,125222
33
- pulpcore/client/pulpcore/api/groups_roles_api.py,sha256=oHOhokV1gOjgBgGCMdrWTUMMHBLPkGcj8VVk4bC3dqM,58443
34
- pulpcore/client/pulpcore/api/groups_users_api.py,sha256=vp7BHAyPSK1urHpH8VdSm1YprZZDz07-QA7-AeRfFGk,35241
35
- pulpcore/client/pulpcore/api/importers_pulp_api.py,sha256=hBFpLoIs0EzUAPP4cwbgx4f8KBrcXbrOOfZydP27VH0,84798
36
- pulpcore/client/pulpcore/api/importers_pulp_import_check_api.py,sha256=IQ8x31fD58ANZEiO0EkHpCy6sRsZFLZGExyM8suyMGM,12852
37
- pulpcore/client/pulpcore/api/importers_pulp_imports_api.py,sha256=W0UBqlifn7g23EEV0WeCMaMXnSVQ3wncv7_mr2pp-Ho,47933
38
- pulpcore/client/pulpcore/api/livez_api.py,sha256=MIHdVTpa27_S7b2nZv7-FyGnXaDEg8OEnZkGJrcAAYA,10002
39
- pulpcore/client/pulpcore/api/login_api.py,sha256=H_HWv6Jm3JxiZAZR_v6Z72NRBwO9ia30vP0w4YTy6_o,28078
40
- pulpcore/client/pulpcore/api/orphans_api.py,sha256=eyRNzjj2GQqOUfbPPc2Oa3pKp0oZIihXTDBl-JeEAz4,10747
41
- pulpcore/client/pulpcore/api/orphans_cleanup_api.py,sha256=GZk1IoVL3W3FxO-vd6T7bXTJsnjJdzNdJHnx4l3Hr6M,11749
42
- pulpcore/client/pulpcore/api/publications_api.py,sha256=mvd9zjU3M7ksVocn8CjIu_-1hz7xvryryDMBHppcpew,39056
43
- pulpcore/client/pulpcore/api/remotes_api.py,sha256=QWj2U1tXVXqvo3OYXp9_xtTKHN6HD8Tn257G-Fx_Pkk,56541
44
- pulpcore/client/pulpcore/api/repair_api.py,sha256=jNN-bOLfRJwYlUTJPZwKdMLQ8NlIUBD_i4tuCGDtsfQ,11712
45
- pulpcore/client/pulpcore/api/repositories_api.py,sha256=ko8Q8wJqjofESp3duiHIAfIwG_AjUj346a1bDJGZ6Lo,49524
46
- pulpcore/client/pulpcore/api/repositories_openpgp_keyring_api.py,sha256=-dngzSQnK-NufqvHOXzs-P7jqR4a8B3CU0w_4SmWKtI,184778
47
- pulpcore/client/pulpcore/api/repositories_reclaim_space_api.py,sha256=dHzPhPQ_QoXz0KKGHX61v2aHZj8XWhkpCWK0r0uxQa4,11715
48
- pulpcore/client/pulpcore/api/repository_versions_api.py,sha256=By78hMymu4axEBzXfN9eVm-S6HJaN8VoBf2amBewP8U,38612
49
- pulpcore/client/pulpcore/api/roles_api.py,sha256=paQOS1Za5s-r7UM9DHLHvzYDSr4peiPfepOFTTzA83g,90906
50
- pulpcore/client/pulpcore/api/signing_services_api.py,sha256=WJjAyA5CKcfQVYWAbFRPPG63oNj5zXZJkku_WahFC7M,35343
51
- pulpcore/client/pulpcore/api/status_api.py,sha256=2JpEC9BEISGyKA8CuDpOARmfWR5tMDGnB_I3H4lYmGo,10963
52
- pulpcore/client/pulpcore/api/task_groups_api.py,sha256=6XdhwRdqb2m4Lmm82Rw3Y-P_zay93q_-QaRTKNT9dDU,37469
53
- pulpcore/client/pulpcore/api/task_schedules_api.py,sha256=eGdhu26lp19RI4PU6on7PlEgEByz4bcszxL2T_gHsXM,84867
54
- pulpcore/client/pulpcore/api/tasks_api.py,sha256=5Cf-219yeWXXEgBWZo6V5o_xz1GvfeQEcJY_gDXOjZI,198476
55
- pulpcore/client/pulpcore/api/uploads_api.py,sha256=IkW1MKKUlWA2znN0_6kcT4iDYv_qKPulwYEComNSazA,126615
56
- pulpcore/client/pulpcore/api/upstream_pulps_api.py,sha256=lhBguqRLtJD-xrTh76PykM5Q6kE8bhTTJWoJb_TuEOY,167755
57
- pulpcore/client/pulpcore/api/users_api.py,sha256=6iYdlYQAZ4DH6NfmgnTKBT4L9j2fimUlDdfQ_JGDDew,99531
58
- pulpcore/client/pulpcore/api/users_roles_api.py,sha256=bW-ja1TPP6VIk-RUGKHRRyvAme6-JZBIa7VvuN_HzdQ,58662
59
- pulpcore/client/pulpcore/api/workers_api.py,sha256=iR3bSYKFrbDp1o_t1lnoqw_OI6IHtFfDIqP4OzynXL8,60506
11
+ pulpcore/client/pulpcore/api/access_policies_api.py,sha256=MqDRtnUDeULfAAH5uaWk1bJttxk8YP3sjd1lv6GaGuI,84521
12
+ pulpcore/client/pulpcore/api/artifacts_api.py,sha256=s-lXZLw0XQr_SXhX7aj0KDJttjg9PRYzdrY19qfP0VM,83647
13
+ pulpcore/client/pulpcore/api/content_api.py,sha256=vm_3s12NbyzzT1e9cRR_6SochvTXly57rrCdxXUtX4E,31888
14
+ pulpcore/client/pulpcore/api/content_openpgp_publickey_api.py,sha256=Yntl6fogR6oWdF9li2MazkjUTjU0YImmshzIlVNqYPc,86778
15
+ pulpcore/client/pulpcore/api/content_openpgp_publicsubkey_api.py,sha256=rCHFhmjGelBNzBfePYORmHgxmtj2nj1AE8H7AJkmTEw,70151
16
+ pulpcore/client/pulpcore/api/content_openpgp_signature_api.py,sha256=pymoNy-i6Sejl76n0wOGf5jjerNmHU8fnPdhMMStqio,72148
17
+ pulpcore/client/pulpcore/api/content_openpgp_userattribute_api.py,sha256=yI6G6wu2LZJohu1vTSVRV-NhUXGDi8nAVIpwpVJW594,69640
18
+ pulpcore/client/pulpcore/api/content_openpgp_userid_api.py,sha256=EJpokP5YP3QfK1hyTqKMP-G5V73LlO84XDk3TANtHEs,77810
19
+ pulpcore/client/pulpcore/api/contentguards_api.py,sha256=CBrkfCnOEGLg9OcLoWDu5-kS7sWhqnBX_Gefef22Tcg,35964
20
+ pulpcore/client/pulpcore/api/contentguards_composite_api.py,sha256=wwbzaJc3H0u384z2ywK1vTm4leXH43zviGaOELppYi0,146257
21
+ pulpcore/client/pulpcore/api/contentguards_content_redirect_api.py,sha256=4TKZKlj9JV0VeQSQBd4qXQ49DVcC-4IhSKGWJcmdZW4,148139
22
+ pulpcore/client/pulpcore/api/contentguards_header_api.py,sha256=m-3mbP5iooy2Sbka_idHmiP6r-Gn1uzHajRkWOYVjGo,145219
23
+ pulpcore/client/pulpcore/api/contentguards_rbac_api.py,sha256=rDoD3VdReuxd4qpnz4pM15rsMrDGa2duv-56D7wBgwI,147287
24
+ pulpcore/client/pulpcore/api/distributions_api.py,sha256=Olo05fbigsGVm9VXB7zBHaoDNZ_VG33noLuvP56FGzU,45157
25
+ pulpcore/client/pulpcore/api/distributions_artifacts_api.py,sha256=8cxiP7GuXYgzePm8g5f6KAc5OO5QV3cD4wZDaQ3DQqM,55727
26
+ pulpcore/client/pulpcore/api/distributions_openpgp_api.py,sha256=9iIWMKe6m49XxhrSJm6q9XAVXDerwMt5W1nTTsnbSY0,115425
27
+ pulpcore/client/pulpcore/api/domains_api.py,sha256=DVqyRgFNz1_2ZAOpET2NMlEKNBqalDfvo_GMenjXL5M,133610
28
+ pulpcore/client/pulpcore/api/exporters_filesystem_api.py,sha256=K2hjT48TVqzJVZbfCqpEZVKIEC5jrA0DPJuw2_wtLNo,93681
29
+ pulpcore/client/pulpcore/api/exporters_filesystem_exports_api.py,sha256=Scc9zUdg2eovTPcOdV9bvahPkFhHa6mcB_-EAipLXAo,53439
30
+ pulpcore/client/pulpcore/api/exporters_pulp_api.py,sha256=3EOilwaGF_Yq0UGaeV7DwQjkHR470MnyxgmC-K14W88,92109
31
+ pulpcore/client/pulpcore/api/exporters_pulp_exports_api.py,sha256=_IF9uB5WbJPdBxLNo7ZoQ2dzTyLNbdGiAv_aiBTPNjk,52467
32
+ pulpcore/client/pulpcore/api/groups_api.py,sha256=8nOUKBncmcn7HLGYKy4t07LWFOlSaXZmo1JRY1AhmpY,135892
33
+ pulpcore/client/pulpcore/api/groups_roles_api.py,sha256=1-RH5YTL9tlEmKqoh4-R8wDQW52L1z_m_gdMjLLnO-k,62711
34
+ pulpcore/client/pulpcore/api/groups_users_api.py,sha256=OJtqMtTe4WQZXHR3Kuq_PHSVPmHt3Uat8BTlyfFbG40,38442
35
+ pulpcore/client/pulpcore/api/importers_pulp_api.py,sha256=lmp8eoX7SJl7_UHZCPxfy1GZyktJrYr35Olzfcgkjro,91200
36
+ pulpcore/client/pulpcore/api/importers_pulp_import_check_api.py,sha256=sDn-yW5QGYwGH8k-8eeUq-i0CipuUDuvKrLreABguX4,14031
37
+ pulpcore/client/pulpcore/api/importers_pulp_imports_api.py,sha256=d1l2rkK8rT78TNfqIUZMDk6D2f-KQMw8lD_pHAMfirw,52201
38
+ pulpcore/client/pulpcore/api/livez_api.py,sha256=HtmQXv0gVz7eFpM3uDCIPajMu2QjozPXEGvfJ5nmJPg,13197
39
+ pulpcore/client/pulpcore/api/login_api.py,sha256=c01MsIpPvsDEV0pxq0Pm2yEfcD8acprZm_4M0aHF53M,33407
40
+ pulpcore/client/pulpcore/api/orphans_api.py,sha256=U_XblSQuJSEBg_Dpp47pUniUgJYDkthJoms3XkkT4P4,11926
41
+ pulpcore/client/pulpcore/api/orphans_cleanup_api.py,sha256=4qNRsVNO71RJav_5vnietWvGP73Tefu0MLSyWb5CdGE,12928
42
+ pulpcore/client/pulpcore/api/publications_api.py,sha256=gj0K0heDEgHCgBRqUynRd4hBJJmAjMXgJ1lOtvUuDQY,40123
43
+ pulpcore/client/pulpcore/api/remotes_api.py,sha256=Q1XJXO8v1dn5BXC5JTxJJiLzvpP7VCGgDJtBI7_4q2M,57608
44
+ pulpcore/client/pulpcore/api/repair_api.py,sha256=VwcPadKMjUhqyRalPuB1Wf_TD-oApojiBCx8_LFKRug,12891
45
+ pulpcore/client/pulpcore/api/repositories_api.py,sha256=m3LhqOU-24EV-pkIR4bR8cq7nIFFKzqFtS_PMCBSBCo,50591
46
+ pulpcore/client/pulpcore/api/repositories_openpgp_keyring_api.py,sha256=CwDPsspv97RMhTxwOIrm8EzpBg1WTgF8AUyP5IHMCPg,198649
47
+ pulpcore/client/pulpcore/api/repositories_reclaim_space_api.py,sha256=z-Xe3stWYtCEMxLHUoWNpZt9cj-lflWR5rvaSdLgT48,12894
48
+ pulpcore/client/pulpcore/api/repository_versions_api.py,sha256=S7Y01PLW_MHNVWelj4tY72WsL5SsOyUl8NUQSQ2EzIQ,39679
49
+ pulpcore/client/pulpcore/api/roles_api.py,sha256=06T9t69l70W106T3-ec2X8s11KUnZlZuRt3jCBVElU8,97308
50
+ pulpcore/client/pulpcore/api/signing_services_api.py,sha256=HtxjGuq-F0mL1cSmG80sL5RT5Tcfl0oP5c-8dgfXjO8,37477
51
+ pulpcore/client/pulpcore/api/status_api.py,sha256=9LhOx86BTEKnpIf8Fh76b8yRlwPAFVIIaJDeIpzIIa8,14158
52
+ pulpcore/client/pulpcore/api/task_groups_api.py,sha256=5wE6ileIgfHArstBRMduDmG1hKQogKiJIOz27MEzzrg,40670
53
+ pulpcore/client/pulpcore/api/task_schedules_api.py,sha256=bA4AXiEyG5bU8MFoGzpvJroi9_Rcz_FBTjwtWyL63a8,91269
54
+ pulpcore/client/pulpcore/api/tasks_api.py,sha256=v1dlzN7EjJNQ4BLLWPJngjCb6p563CdLgewnKMI0mP0,209686
55
+ pulpcore/client/pulpcore/api/uploads_api.py,sha256=Ht5CYeSzViok42DYZI-gJqVfZNuZW0BN7X9Ua88CYe8,137285
56
+ pulpcore/client/pulpcore/api/upstream_pulps_api.py,sha256=_DKzWgt26_tvsVm0LytJKfgwLrSt1jnwSHye22iteSU,179492
57
+ pulpcore/client/pulpcore/api/users_api.py,sha256=R0p4Rt2RD6JxuvGkQLME4wTgf8WKjCpXPYOqKl19Xyo,105933
58
+ pulpcore/client/pulpcore/api/users_roles_api.py,sha256=l5RspPcRy2biA1pzkytLXZss7-A7y1xKJu7ybJU9QeA,62930
59
+ pulpcore/client/pulpcore/api/workers_api.py,sha256=Lcq150RDqXtpzq_U-xKqeU6DB7jdNYTFPeaLJiqPaOY,62640
60
60
  pulpcore/client/pulpcore/models/__init__.py,sha256=TtVQdGtNzj7ULlXHWrOXJo5TCNGhpKuYIeT6xAGCvJo,16338
61
61
  pulpcore/client/pulpcore/models/access_policy.py,sha256=o_UQkz1odEC7WkNVr1Wd7FUBF3Sa8MyS2rOvb-ozwbc,3427
62
62
  pulpcore/client/pulpcore/models/access_policy_response.py,sha256=xz4QOVu46bgH8_rMh0yiilUE6zHv846XScHyBAufGM0,5127
63
63
  pulpcore/client/pulpcore/models/api_app_status_response.py,sha256=yOctQFMFveeyDOmLf5K2XYFSGUpvGrZfIra4TbgsxFU,3518
64
- pulpcore/client/pulpcore/models/artifact_distribution_response.py,sha256=kCUNl6EJxGWlOiv_VYIBZaCS2_hbxnmUe42-OUCmauI,5474
64
+ pulpcore/client/pulpcore/models/artifact_distribution_response.py,sha256=982vGe0q2vwQphDPjjvGXMzx8ZwarpXKaduHVkhXrf4,5474
65
65
  pulpcore/client/pulpcore/models/artifact_response.py,sha256=RRXzTZXO-RP9ashupuQIn7yt2UWHh85_PW6Dh9IjyDM,6276
66
66
  pulpcore/client/pulpcore/models/async_operation_response.py,sha256=IbcgvoCxfMCL9HXaPJDPLgDo8IKE12QKstLIxzhegt8,2558
67
- pulpcore/client/pulpcore/models/composite_content_guard.py,sha256=14YjxM8-MDxiOyOtowfHDFsqKnbyM4iyGSr4VPDcozM,3535
68
- pulpcore/client/pulpcore/models/composite_content_guard_response.py,sha256=enVU-MTN5tyoYUr27MvAfcW_KKrpXllUdzl-qWjh9EY,4543
67
+ pulpcore/client/pulpcore/models/composite_content_guard.py,sha256=7GRHt4V0-OB23eq4sCc4nsoj_gK2eiMPmN3RQn517BY,3260
68
+ pulpcore/client/pulpcore/models/composite_content_guard_response.py,sha256=gQic8DYOhcfyFQQpKlpDw2PHS4f8lfGNImBJTSs7hjM,4268
69
69
  pulpcore/client/pulpcore/models/content_app_status_response.py,sha256=gWxZCDF2Lt-NWieEbnpmej_tDQRLlCclN_AuUgBBSUc,3530
70
- pulpcore/client/pulpcore/models/content_guard_response.py,sha256=axKJdWg1aSx3f-Xm3rp72vQ3jmc177tafWsYAkyPxvc,4328
70
+ pulpcore/client/pulpcore/models/content_guard_response.py,sha256=xqNmdyP_wngbwZq9OL14G6RwjJzNWUqItN_wYwAGihw,4053
71
71
  pulpcore/client/pulpcore/models/content_redirect_content_guard.py,sha256=cECMOGw7XIta0LfJR9tXtuwsayDZzbYVbCmWbF2aphY,3083
72
72
  pulpcore/client/pulpcore/models/content_redirect_content_guard_response.py,sha256=MvhLDWxC9xSjcGIaXHusQ6JzxnIiNQtv8s0Poe-dtGQ,4102
73
73
  pulpcore/client/pulpcore/models/content_settings_response.py,sha256=PRzbrDsDkejdTY38oR8NwbvG6uDdkc3B1HUQoA2VjXA,3141
@@ -163,7 +163,7 @@ pulpcore/client/pulpcore/models/paginated_user_response_list.py,sha256=48kA9FDQD
163
163
  pulpcore/client/pulpcore/models/paginated_user_role_response_list.py,sha256=NT7mK07JcJtths-xLOa9-jsW07WBAeypJhlm8Gyt4no,3724
164
164
  pulpcore/client/pulpcore/models/paginated_worker_response_list.py,sha256=fWVnfDyfscJPs0ZK9e_Gpu90xvVMq2ucqhkEOmu6QFM,3707
165
165
  pulpcore/client/pulpcore/models/patched_access_policy.py,sha256=bAi2TNUkqXMzwuplFFkDXRwMPLj_ydK60MQ60ZUyLZI,3472
166
- pulpcore/client/pulpcore/models/patched_composite_content_guard.py,sha256=dOCmr5K5OPqY95GIcLhBxaNdq4pPoHoviVBR7um-ccA,3580
166
+ pulpcore/client/pulpcore/models/patched_composite_content_guard.py,sha256=i1WYi5tId4JWkMiwrtjOa_4zJJDU76EKigGeYe9vguY,3305
167
167
  pulpcore/client/pulpcore/models/patched_content_redirect_content_guard.py,sha256=oOSNXpN5Y98LmYzOLW38lYRhIWgR2P8I1rHcvUz_k4Y,3128
168
168
  pulpcore/client/pulpcore/models/patched_domain.py,sha256=mbUnpTEv4GTD4QGAxJiA4oenQuWBhMP4UnlHBRO1ziA,4931
169
169
  pulpcore/client/pulpcore/models/patched_filesystem_exporter.py,sha256=0cxDEcHQhYGL7kSiaYNscWbmdzk7a8jx4f8JIqmF04k,3181
@@ -173,7 +173,7 @@ pulpcore/client/pulpcore/models/patched_open_pgp_distribution.py,sha256=lNDtgYOT
173
173
  pulpcore/client/pulpcore/models/patched_open_pgp_keyring.py,sha256=IRzp66QnOtTjt4UpUCBsh_NjHuIBzV_9SwupHE0UHpM,4449
174
174
  pulpcore/client/pulpcore/models/patched_pulp_exporter.py,sha256=8tMsOYeqDEc_ovDG-UMUZxKe0x6RkvYVD8HP7RFEbpA,3403
175
175
  pulpcore/client/pulpcore/models/patched_pulp_importer.py,sha256=cO804yzmEHy22Ckkg53D3sDIhQhD8VXFE1HLU_nQS8g,3047
176
- pulpcore/client/pulpcore/models/patched_rbac_content_guard.py,sha256=8-4C49pv5nQAJS6uOzAU8F_-gG7DK4HDT4RPIdKt_Uc,3366
176
+ pulpcore/client/pulpcore/models/patched_rbac_content_guard.py,sha256=mMs4yoKjDEyVTvw-QFhkd4MVZTNCCc3fTjyNg0FqwuU,3091
177
177
  pulpcore/client/pulpcore/models/patched_role.py,sha256=yg5WXO2M_RrUn7a6lsJT-N2jHRUseyFA2EZ7N9yZbfg,3236
178
178
  pulpcore/client/pulpcore/models/patched_task_cancel.py,sha256=5yjkr-XJ62g7UeO1VIMoubXCoTI25Gg2aaS4x1KuDdk,2665
179
179
  pulpcore/client/pulpcore/models/patched_upstream_pulp.py,sha256=pgMAahwv1q_kABnIvYGTY1x9k5TKzT7qJKRRjFUBS3U,7125
@@ -192,8 +192,8 @@ pulpcore/client/pulpcore/models/pulp_import_check_response.py,sha256=1xp99uNtl82
192
192
  pulpcore/client/pulpcore/models/pulp_importer.py,sha256=mTnSacxTwUZqviZSoQB-P6j3-3BsQ8Bwz3qLXiFwX90,3002
193
193
  pulpcore/client/pulpcore/models/pulp_importer_response.py,sha256=SWgc01hjjLK5jasXFf4IEd3RJHx1UsvJOSigM96M2CA,4021
194
194
  pulpcore/client/pulpcore/models/purge.py,sha256=libi80ONzpJSgNML44jnZW9E5lw0nv7_qoUtp4K6VfA,2888
195
- pulpcore/client/pulpcore/models/rbac_content_guard.py,sha256=tnD8A1DkcKRMS4Z6F7--Evd_7hzAjJJLfYOsZKt2tiI,3321
196
- pulpcore/client/pulpcore/models/rbac_content_guard_response.py,sha256=imOOl9lU1ao7QJlzr1_dCJ-HTd1Ee_xTUxnre2sUX94,5648
195
+ pulpcore/client/pulpcore/models/rbac_content_guard.py,sha256=AUuALGl3mSqKYfgFAeIsfEObPHQmTF65xrYJWzSbgOg,3046
196
+ pulpcore/client/pulpcore/models/rbac_content_guard_response.py,sha256=xO70AkfKOOylbMZpY_4GO0dpwSAcPayT1Z-gaKHcLDE,5373
197
197
  pulpcore/client/pulpcore/models/reclaim_space.py,sha256=cMafKKdhXX6zKIRKux95B5CaRig8-pxi2SCbmVnsSZw,2866
198
198
  pulpcore/client/pulpcore/models/redis_connection_response.py,sha256=b9WNAJb1_lDBzX8u3VwiBmWRSmVuW534_jsWtQS8tDs,2623
199
199
  pulpcore/client/pulpcore/models/repair.py,sha256=M8UfanWpr-eFWYNl6Dba83L-dI2BA9djt8QxIhPR6i4,2756
@@ -230,7 +230,7 @@ pulpcore/client/pulpcore/models/user_role.py,sha256=pAVQrQDbx7PrQo4Ae_Axy-FV9PfO
230
230
  pulpcore/client/pulpcore/models/user_role_response.py,sha256=bm3iqxiBLZbOYeqAqDFrybFdcTPOA-jB0Kz9NKfAjII,5472
231
231
  pulpcore/client/pulpcore/models/version_response.py,sha256=0rUURzqK9Y-zSLgRVMsGEYCxoxobrP7cGNYxds9c9rU,3200
232
232
  pulpcore/client/pulpcore/models/worker_response.py,sha256=UcYlVB38did0eeYVgG9wgUaHqpUzHBM7pWLZmtaxh7I,4899
233
- pulpcore_client-3.80.2.dist-info/METADATA,sha256=Onx2pj3i1nj9YDFmRsIcuLq3IZELjwOYQjjYNQaJJI0,462
234
- pulpcore_client-3.80.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
235
- pulpcore_client-3.80.2.dist-info/top_level.txt,sha256=v1J0AeNxNhm8YE5-xQe1G1YbfoMRZ_u9DAg_Gi7omeY,9
236
- pulpcore_client-3.80.2.dist-info/RECORD,,
233
+ pulpcore_client-3.82.0.dist-info/METADATA,sha256=BUGYu9SqWNs3V4soRJgc4UrzgkW8Tc52W6EvrclpDJE,462
234
+ pulpcore_client-3.82.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
235
+ pulpcore_client-3.82.0.dist-info/top_level.txt,sha256=v1J0AeNxNhm8YE5-xQe1G1YbfoMRZ_u9DAg_Gi7omeY,9
236
+ pulpcore_client-3.82.0.dist-info/RECORD,,