pulpcore-client 3.85.0__py3-none-any.whl → 3.85.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 pulpcore-client might be problematic. Click here for more details.
- pulpcore/client/pulpcore/__init__.py +1 -1
- pulpcore/client/pulpcore/api_client.py +1 -1
- pulpcore/client/pulpcore/configuration.py +1 -1
- pulpcore/client/pulpcore/models/artifact_distribution_response.py +18 -18
- {pulpcore_client-3.85.0.dist-info → pulpcore_client-3.85.1.dist-info}/METADATA +1 -1
- {pulpcore_client-3.85.0.dist-info → pulpcore_client-3.85.1.dist-info}/RECORD +8 -8
- {pulpcore_client-3.85.0.dist-info → pulpcore_client-3.85.1.dist-info}/WHEEL +0 -0
- {pulpcore_client-3.85.0.dist-info → pulpcore_client-3.85.1.dist-info}/top_level.txt +0 -0
|
@@ -91,7 +91,7 @@ class ApiClient:
|
|
|
91
91
|
self.default_headers[header_name] = header_value
|
|
92
92
|
self.cookie = cookie
|
|
93
93
|
# Set default User-Agent.
|
|
94
|
-
self.user_agent = 'OpenAPI-Generator/3.85.
|
|
94
|
+
self.user_agent = 'OpenAPI-Generator/3.85.1/python'
|
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
|
96
96
|
|
|
97
97
|
def __enter__(self):
|
|
@@ -549,7 +549,7 @@ conf = pulpcore.client.pulpcore.Configuration(
|
|
|
549
549
|
"OS: {env}\n"\
|
|
550
550
|
"Python Version: {pyversion}\n"\
|
|
551
551
|
"Version of the API: v3\n"\
|
|
552
|
-
"SDK Package Version: 3.85.
|
|
552
|
+
"SDK Package Version: 3.85.1".\
|
|
553
553
|
format(env=sys.platform, pyversion=sys.version)
|
|
554
554
|
|
|
555
555
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -28,18 +28,18 @@ class ArtifactDistributionResponse(BaseModel):
|
|
|
28
28
|
"""
|
|
29
29
|
A serializer for ArtifactDistribution.
|
|
30
30
|
""" # noqa: E501
|
|
31
|
+
pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = None
|
|
31
32
|
pulp_href: Optional[StrictStr] = None
|
|
32
|
-
prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
|
|
33
|
-
hidden: Optional[StrictBool] = Field(default=False, description="Whether this distribution should be shown in the content app.")
|
|
34
|
-
no_content_change_since: Optional[StrictStr] = Field(default=None, description="Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.")
|
|
35
|
-
name: StrictStr = Field(description="A unique name. Ex, `rawhide` and `stable`.")
|
|
36
|
-
base_path: StrictStr = Field(description="The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")")
|
|
37
33
|
content_guard: Optional[StrictStr] = Field(default=None, description="An optional content-guard.")
|
|
38
|
-
|
|
34
|
+
base_path: StrictStr = Field(description="The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")")
|
|
39
35
|
pulp_last_updated: Optional[datetime] = Field(default=None, description="Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.")
|
|
36
|
+
hidden: Optional[StrictBool] = Field(default=False, description="Whether this distribution should be shown in the content app.")
|
|
37
|
+
name: StrictStr = Field(description="A unique name. Ex, `rawhide` and `stable`.")
|
|
38
|
+
no_content_change_since: Optional[StrictStr] = Field(default=None, description="Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.")
|
|
39
|
+
prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
|
|
40
40
|
pulp_created: Optional[datetime] = Field(default=None, description="Timestamp of creation.")
|
|
41
|
-
|
|
42
|
-
__properties: ClassVar[List[str]] = ["
|
|
41
|
+
base_url: Optional[StrictStr] = Field(default=None, description="The URL for accessing the publication as defined by this distribution.")
|
|
42
|
+
__properties: ClassVar[List[str]] = ["pulp_labels", "pulp_href", "content_guard", "base_path", "pulp_last_updated", "hidden", "name", "no_content_change_since", "prn", "pulp_created", "base_url"]
|
|
43
43
|
|
|
44
44
|
model_config = ConfigDict(
|
|
45
45
|
populate_by_name=True,
|
|
@@ -80,11 +80,11 @@ class ArtifactDistributionResponse(BaseModel):
|
|
|
80
80
|
"""
|
|
81
81
|
excluded_fields: Set[str] = set([
|
|
82
82
|
"pulp_href",
|
|
83
|
-
"prn",
|
|
84
|
-
"no_content_change_since",
|
|
85
|
-
"base_url",
|
|
86
83
|
"pulp_last_updated",
|
|
84
|
+
"no_content_change_since",
|
|
85
|
+
"prn",
|
|
87
86
|
"pulp_created",
|
|
87
|
+
"base_url",
|
|
88
88
|
])
|
|
89
89
|
|
|
90
90
|
_dict = self.model_dump(
|
|
@@ -109,17 +109,17 @@ class ArtifactDistributionResponse(BaseModel):
|
|
|
109
109
|
return cls.model_validate(obj)
|
|
110
110
|
|
|
111
111
|
_obj = cls.model_validate({
|
|
112
|
+
"pulp_labels": obj.get("pulp_labels"),
|
|
112
113
|
"pulp_href": obj.get("pulp_href"),
|
|
113
|
-
"prn": obj.get("prn"),
|
|
114
|
-
"hidden": obj.get("hidden") if obj.get("hidden") is not None else False,
|
|
115
|
-
"no_content_change_since": obj.get("no_content_change_since"),
|
|
116
|
-
"name": obj.get("name"),
|
|
117
|
-
"base_path": obj.get("base_path"),
|
|
118
114
|
"content_guard": obj.get("content_guard"),
|
|
119
|
-
"
|
|
115
|
+
"base_path": obj.get("base_path"),
|
|
120
116
|
"pulp_last_updated": obj.get("pulp_last_updated"),
|
|
117
|
+
"hidden": obj.get("hidden") if obj.get("hidden") is not None else False,
|
|
118
|
+
"name": obj.get("name"),
|
|
119
|
+
"no_content_change_since": obj.get("no_content_change_since"),
|
|
120
|
+
"prn": obj.get("prn"),
|
|
121
121
|
"pulp_created": obj.get("pulp_created"),
|
|
122
|
-
"
|
|
122
|
+
"base_url": obj.get("base_url")
|
|
123
123
|
})
|
|
124
124
|
return _obj
|
|
125
125
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
pulpcore/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
|
|
2
2
|
pulpcore/client/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
|
|
3
|
-
pulpcore/client/pulpcore/__init__.py,sha256=
|
|
4
|
-
pulpcore/client/pulpcore/api_client.py,sha256=
|
|
3
|
+
pulpcore/client/pulpcore/__init__.py,sha256=CVQf6VlMXxjIO2qb9AZeg6d3DGZebPjRbAbIfIXCKeI,21179
|
|
4
|
+
pulpcore/client/pulpcore/api_client.py,sha256=RUSlYdEipNqzVxRnv3IiH-lkKX9AbPcdYmtTQvb87l8,27513
|
|
5
5
|
pulpcore/client/pulpcore/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
6
|
-
pulpcore/client/pulpcore/configuration.py,sha256=
|
|
6
|
+
pulpcore/client/pulpcore/configuration.py,sha256=eidMLb4dLqkA1KwAyRJs3QlQToD4w4hQG-Iu0lS8jw0,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
|
|
@@ -62,7 +62,7 @@ pulpcore/client/pulpcore/models/__init__.py,sha256=9erwgJl_izGa6YXN-E_Y3Tu0rJuji
|
|
|
62
62
|
pulpcore/client/pulpcore/models/access_policy.py,sha256=o_UQkz1odEC7WkNVr1Wd7FUBF3Sa8MyS2rOvb-ozwbc,3427
|
|
63
63
|
pulpcore/client/pulpcore/models/access_policy_response.py,sha256=xz4QOVu46bgH8_rMh0yiilUE6zHv846XScHyBAufGM0,5127
|
|
64
64
|
pulpcore/client/pulpcore/models/api_app_status_response.py,sha256=yOctQFMFveeyDOmLf5K2XYFSGUpvGrZfIra4TbgsxFU,3518
|
|
65
|
-
pulpcore/client/pulpcore/models/artifact_distribution_response.py,sha256=
|
|
65
|
+
pulpcore/client/pulpcore/models/artifact_distribution_response.py,sha256=1VILdTp6kgRWpUNZahEAJkncloOAMkLTq3ZMKYiM2UY,5474
|
|
66
66
|
pulpcore/client/pulpcore/models/artifact_response.py,sha256=RRXzTZXO-RP9ashupuQIn7yt2UWHh85_PW6Dh9IjyDM,6276
|
|
67
67
|
pulpcore/client/pulpcore/models/async_operation_response.py,sha256=IbcgvoCxfMCL9HXaPJDPLgDo8IKE12QKstLIxzhegt8,2558
|
|
68
68
|
pulpcore/client/pulpcore/models/composite_content_guard.py,sha256=7GRHt4V0-OB23eq4sCc4nsoj_gK2eiMPmN3RQn517BY,3260
|
|
@@ -233,7 +233,7 @@ pulpcore/client/pulpcore/models/user_role_response.py,sha256=ke0JKmsIbQ_1i3qtsgG
|
|
|
233
233
|
pulpcore/client/pulpcore/models/version_response.py,sha256=0rUURzqK9Y-zSLgRVMsGEYCxoxobrP7cGNYxds9c9rU,3200
|
|
234
234
|
pulpcore/client/pulpcore/models/vulnerability_report_response.py,sha256=y1k92R0X6_g-CoNxD6yGI3JKn-cC5ELF-BmR9BnmDX0,4150
|
|
235
235
|
pulpcore/client/pulpcore/models/worker_response.py,sha256=UcYlVB38did0eeYVgG9wgUaHqpUzHBM7pWLZmtaxh7I,4899
|
|
236
|
-
pulpcore_client-3.85.
|
|
237
|
-
pulpcore_client-3.85.
|
|
238
|
-
pulpcore_client-3.85.
|
|
239
|
-
pulpcore_client-3.85.
|
|
236
|
+
pulpcore_client-3.85.1.dist-info/METADATA,sha256=UlwGm-YpSWxp0HQBrbSehZMoJMrnk0ngJ-sMaHRAqOs,462
|
|
237
|
+
pulpcore_client-3.85.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
238
|
+
pulpcore_client-3.85.1.dist-info/top_level.txt,sha256=v1J0AeNxNhm8YE5-xQe1G1YbfoMRZ_u9DAg_Gi7omeY,9
|
|
239
|
+
pulpcore_client-3.85.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|