waldur-api-client 8.0.9.dev321__py3-none-any.whl → 8.0.9.dev322__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.
- waldur_api_client/llms-full.txt +1 -1
- waldur_api_client/llms.txt +1 -1
- waldur_api_client/models/merged_plugin_options.py +10 -0
- waldur_api_client/models/merged_plugin_options_request.py +10 -0
- {waldur_api_client-8.0.9.dev321.dist-info → waldur_api_client-8.0.9.dev322.dist-info}/METADATA +1 -1
- {waldur_api_client-8.0.9.dev321.dist-info → waldur_api_client-8.0.9.dev322.dist-info}/RECORD +8 -8
- {waldur_api_client-8.0.9.dev321.dist-info → waldur_api_client-8.0.9.dev322.dist-info}/WHEEL +0 -0
- {waldur_api_client-8.0.9.dev321.dist-info → waldur_api_client-8.0.9.dev322.dist-info}/licenses/LICENSE +0 -0
waldur_api_client/llms-full.txt
CHANGED
waldur_api_client/llms.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Waldur API
|
|
2
2
|
|
|
3
|
-
> Auto-generated Python SDK for the Waldur API (version 8.0.9-rc.21.dev.
|
|
3
|
+
> Auto-generated Python SDK for the Waldur API (version 8.0.9-rc.21.dev.20260605115712).
|
|
4
4
|
> This SDK is generated from an OpenAPI specification using openapi-python-client.
|
|
5
5
|
|
|
6
6
|
## Quick Start
|
|
@@ -136,6 +136,8 @@ class MergedPluginOptions:
|
|
|
136
136
|
UI Default: False.
|
|
137
137
|
backend_id_display_label (Union[Unset, str]): Label used by UI for showing value of the backend_id Default:
|
|
138
138
|
'Backend ID'.
|
|
139
|
+
require_effective_id_for_highlighted_display (Union[Unset, bool]): If set to True, highlighted backend ID
|
|
140
|
+
display is only shown when the resource has an effective_id. Default: False.
|
|
139
141
|
expose_inference_playground (Union[Unset, bool]): Show an in-browser inference playground action for resources
|
|
140
142
|
of this offering (for offerings whose resources expose an OpenAI-compatible endpoint). Default: False.
|
|
141
143
|
disabled_resource_actions (Union[Unset, list[str]]): List of disabled marketplace resource actions for this
|
|
@@ -218,6 +220,7 @@ class MergedPluginOptions:
|
|
|
218
220
|
auto_approve_marketplace_script: Union[Unset, bool] = True
|
|
219
221
|
highlight_backend_id_display: Union[Unset, bool] = False
|
|
220
222
|
backend_id_display_label: Union[Unset, str] = "Backend ID"
|
|
223
|
+
require_effective_id_for_highlighted_display: Union[Unset, bool] = False
|
|
221
224
|
expose_inference_playground: Union[Unset, bool] = False
|
|
222
225
|
disabled_resource_actions: Union[Unset, list[str]] = UNSET
|
|
223
226
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -387,6 +390,8 @@ class MergedPluginOptions:
|
|
|
387
390
|
|
|
388
391
|
backend_id_display_label = self.backend_id_display_label
|
|
389
392
|
|
|
393
|
+
require_effective_id_for_highlighted_display = self.require_effective_id_for_highlighted_display
|
|
394
|
+
|
|
390
395
|
expose_inference_playground = self.expose_inference_playground
|
|
391
396
|
|
|
392
397
|
disabled_resource_actions: Union[Unset, list[str]] = UNSET
|
|
@@ -558,6 +563,8 @@ class MergedPluginOptions:
|
|
|
558
563
|
field_dict["highlight_backend_id_display"] = highlight_backend_id_display
|
|
559
564
|
if backend_id_display_label is not UNSET:
|
|
560
565
|
field_dict["backend_id_display_label"] = backend_id_display_label
|
|
566
|
+
if require_effective_id_for_highlighted_display is not UNSET:
|
|
567
|
+
field_dict["require_effective_id_for_highlighted_display"] = require_effective_id_for_highlighted_display
|
|
561
568
|
if expose_inference_playground is not UNSET:
|
|
562
569
|
field_dict["expose_inference_playground"] = expose_inference_playground
|
|
563
570
|
if disabled_resource_actions is not UNSET:
|
|
@@ -758,6 +765,8 @@ class MergedPluginOptions:
|
|
|
758
765
|
|
|
759
766
|
backend_id_display_label = d.pop("backend_id_display_label", UNSET)
|
|
760
767
|
|
|
768
|
+
require_effective_id_for_highlighted_display = d.pop("require_effective_id_for_highlighted_display", UNSET)
|
|
769
|
+
|
|
761
770
|
expose_inference_playground = d.pop("expose_inference_playground", UNSET)
|
|
762
771
|
|
|
763
772
|
disabled_resource_actions = cast(list[str], d.pop("disabled_resource_actions", UNSET))
|
|
@@ -837,6 +846,7 @@ class MergedPluginOptions:
|
|
|
837
846
|
auto_approve_marketplace_script=auto_approve_marketplace_script,
|
|
838
847
|
highlight_backend_id_display=highlight_backend_id_display,
|
|
839
848
|
backend_id_display_label=backend_id_display_label,
|
|
849
|
+
require_effective_id_for_highlighted_display=require_effective_id_for_highlighted_display,
|
|
840
850
|
expose_inference_playground=expose_inference_playground,
|
|
841
851
|
disabled_resource_actions=disabled_resource_actions,
|
|
842
852
|
)
|
|
@@ -136,6 +136,8 @@ class MergedPluginOptionsRequest:
|
|
|
136
136
|
UI Default: False.
|
|
137
137
|
backend_id_display_label (Union[Unset, str]): Label used by UI for showing value of the backend_id Default:
|
|
138
138
|
'Backend ID'.
|
|
139
|
+
require_effective_id_for_highlighted_display (Union[Unset, bool]): If set to True, highlighted backend ID
|
|
140
|
+
display is only shown when the resource has an effective_id. Default: False.
|
|
139
141
|
expose_inference_playground (Union[Unset, bool]): Show an in-browser inference playground action for resources
|
|
140
142
|
of this offering (for offerings whose resources expose an OpenAI-compatible endpoint). Default: False.
|
|
141
143
|
disabled_resource_actions (Union[Unset, list[str]]): List of disabled marketplace resource actions for this
|
|
@@ -218,6 +220,7 @@ class MergedPluginOptionsRequest:
|
|
|
218
220
|
auto_approve_marketplace_script: Union[Unset, bool] = True
|
|
219
221
|
highlight_backend_id_display: Union[Unset, bool] = False
|
|
220
222
|
backend_id_display_label: Union[Unset, str] = "Backend ID"
|
|
223
|
+
require_effective_id_for_highlighted_display: Union[Unset, bool] = False
|
|
221
224
|
expose_inference_playground: Union[Unset, bool] = False
|
|
222
225
|
disabled_resource_actions: Union[Unset, list[str]] = UNSET
|
|
223
226
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -387,6 +390,8 @@ class MergedPluginOptionsRequest:
|
|
|
387
390
|
|
|
388
391
|
backend_id_display_label = self.backend_id_display_label
|
|
389
392
|
|
|
393
|
+
require_effective_id_for_highlighted_display = self.require_effective_id_for_highlighted_display
|
|
394
|
+
|
|
390
395
|
expose_inference_playground = self.expose_inference_playground
|
|
391
396
|
|
|
392
397
|
disabled_resource_actions: Union[Unset, list[str]] = UNSET
|
|
@@ -558,6 +563,8 @@ class MergedPluginOptionsRequest:
|
|
|
558
563
|
field_dict["highlight_backend_id_display"] = highlight_backend_id_display
|
|
559
564
|
if backend_id_display_label is not UNSET:
|
|
560
565
|
field_dict["backend_id_display_label"] = backend_id_display_label
|
|
566
|
+
if require_effective_id_for_highlighted_display is not UNSET:
|
|
567
|
+
field_dict["require_effective_id_for_highlighted_display"] = require_effective_id_for_highlighted_display
|
|
561
568
|
if expose_inference_playground is not UNSET:
|
|
562
569
|
field_dict["expose_inference_playground"] = expose_inference_playground
|
|
563
570
|
if disabled_resource_actions is not UNSET:
|
|
@@ -758,6 +765,8 @@ class MergedPluginOptionsRequest:
|
|
|
758
765
|
|
|
759
766
|
backend_id_display_label = d.pop("backend_id_display_label", UNSET)
|
|
760
767
|
|
|
768
|
+
require_effective_id_for_highlighted_display = d.pop("require_effective_id_for_highlighted_display", UNSET)
|
|
769
|
+
|
|
761
770
|
expose_inference_playground = d.pop("expose_inference_playground", UNSET)
|
|
762
771
|
|
|
763
772
|
disabled_resource_actions = cast(list[str], d.pop("disabled_resource_actions", UNSET))
|
|
@@ -837,6 +846,7 @@ class MergedPluginOptionsRequest:
|
|
|
837
846
|
auto_approve_marketplace_script=auto_approve_marketplace_script,
|
|
838
847
|
highlight_backend_id_display=highlight_backend_id_display,
|
|
839
848
|
backend_id_display_label=backend_id_display_label,
|
|
849
|
+
require_effective_id_for_highlighted_display=require_effective_id_for_highlighted_display,
|
|
840
850
|
expose_inference_playground=expose_inference_playground,
|
|
841
851
|
disabled_resource_actions=disabled_resource_actions,
|
|
842
852
|
)
|
{waldur_api_client-8.0.9.dev321.dist-info → waldur_api_client-8.0.9.dev322.dist-info}/RECORD
RENAMED
|
@@ -2927,8 +2927,8 @@ waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_web_console_
|
|
|
2927
2927
|
waldur_api_client/api-map.md,sha256=x4i7ihI-wakGejkbV4PBMaWSydPsm2LD7fpGsdhtt60,369412
|
|
2928
2928
|
waldur_api_client/client.py,sha256=GLq-qDZKHfSA_9duhz0MTPeaAkXUlvuHHWCRzsPcE5Y,11727
|
|
2929
2929
|
waldur_api_client/errors.py,sha256=UYHn64tnzy2ITApxz6jHW9KXUusxkd5iuqyKyCw5cq8,571
|
|
2930
|
-
waldur_api_client/llms-full.txt,sha256=
|
|
2931
|
-
waldur_api_client/llms.txt,sha256=
|
|
2930
|
+
waldur_api_client/llms-full.txt,sha256=OdteMfdZ0jU7JSBJxd9ohPoViR4-vGgTZeFaGzc0Nv0,825663
|
|
2931
|
+
waldur_api_client/llms.txt,sha256=LSLxvxT_8LIO7hkDaYeMBvuyJ1a-sfvYdpOb6jo8rpA,14639
|
|
2932
2932
|
waldur_api_client/models/__init__.py,sha256=Ye9HxyGPY5Khx5jYeJTcBovJ_TsQgtLbeiXKBXPQJco,232543
|
|
2933
2933
|
waldur_api_client/models/access_project.py,sha256=oMD_LlZ48i2YhFjPCAVSyb5a1-AEh8a5YYrJ6olBx_w,2165
|
|
2934
2934
|
waldur_api_client/models/access_resource.py,sha256=mN0bhw0tfmIHDwC0jDCDFDDVlaVtZwDdgRIlbc-g0gY,1635
|
|
@@ -3880,8 +3880,8 @@ waldur_api_client/models/matrix_room_member.py,sha256=NWRRHs10jcwMi3PP1H_jTSZrS2
|
|
|
3880
3880
|
waldur_api_client/models/matrix_room_member_summary.py,sha256=wWxRuCVZcbCPGOyW8WFhpCvbFUdc_vp64M9NnOvy0Cg,2109
|
|
3881
3881
|
waldur_api_client/models/matrix_room_state_enum.py,sha256=9JrlnC2stJev8SGNvWmPhtDpWdaIWcaonH_e9fnatK0,246
|
|
3882
3882
|
waldur_api_client/models/membership_state_enum.py,sha256=DAdr5cxVLUAaBjaSmZfPcU53jPFsWZUAkIP7QGObczc,210
|
|
3883
|
-
waldur_api_client/models/merged_plugin_options.py,sha256=
|
|
3884
|
-
waldur_api_client/models/merged_plugin_options_request.py,sha256=
|
|
3883
|
+
waldur_api_client/models/merged_plugin_options.py,sha256=AYLHYoh4svUYpbe1h5QfWQV5hl6iUV4oFFcPcK09h8g,50159
|
|
3884
|
+
waldur_api_client/models/merged_plugin_options_request.py,sha256=haJtAddM6v6IvKRy-sMQO-3qRthqYUA7gVq_8l7wP0o,50197
|
|
3885
3885
|
waldur_api_client/models/merged_secret_options.py,sha256=zPVX5OyGDL2yToV9k-VqYGcLh85CXgLUqbAh39WSlFc,18262
|
|
3886
3886
|
waldur_api_client/models/merged_secret_options_request.py,sha256=B7FAtBypPS_uVVYaYsDGFQohS1ni3e1U_LxLjXULKK8,18351
|
|
3887
3887
|
waldur_api_client/models/message.py,sha256=Si2huBvgxMNV3uNwX6oc4DvQk-b_tBqmRTrDR6c-MdI,10964
|
|
@@ -5306,7 +5306,7 @@ waldur_api_client/models/zammadarticletype_enum.py,sha256=BPDZq_hO1gK6eSi4Z_2s_p
|
|
|
5306
5306
|
waldur_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5307
5307
|
waldur_api_client/types.py,sha256=ZSn3mJeG6_KoPRQVkzh_-bMkaCht3nO3bkQg0tt1aN8,1381
|
|
5308
5308
|
waldur_api_client/utils.py,sha256=nzWBKV8bhpN3jdzAv8I5FuAdfMwAvmZPiNAD05e0_9c,907
|
|
5309
|
-
waldur_api_client-8.0.9.
|
|
5310
|
-
waldur_api_client-8.0.9.
|
|
5311
|
-
waldur_api_client-8.0.9.
|
|
5312
|
-
waldur_api_client-8.0.9.
|
|
5309
|
+
waldur_api_client-8.0.9.dev322.dist-info/METADATA,sha256=6pabxrbqyn5XDs2rR05aOpxzJ-07u2QXfWZ4p1nKPuM,5925
|
|
5310
|
+
waldur_api_client-8.0.9.dev322.dist-info/WHEEL,sha256=EGEvSphFYqXKs23-kQBeyNoJP1nrT8ZJKQoi5p5DYL8,88
|
|
5311
|
+
waldur_api_client-8.0.9.dev322.dist-info/licenses/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
|
|
5312
|
+
waldur_api_client-8.0.9.dev322.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|