waldur-api-client 8.0.9.dev321__py3-none-any.whl → 8.0.9.dev323__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.
@@ -1,5 +1,5 @@
1
1
  # Waldur API — Full Endpoint Reference
2
- # Version: 8.0.9-rc.21.dev.20260605091137
2
+ # Version: 8.0.9-rc.21.dev.20260605150735
3
3
  #
4
4
  # Import pattern:
5
5
  # from waldur_api_client.api.<domain> import <operation_id>
@@ -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.20260605091137).
3
+ > Auto-generated Python SDK for the Waldur API (version 8.0.9-rc.21.dev.20260605150735).
4
4
  > This SDK is generated from an OpenAPI specification using openapi-python-client.
5
5
 
6
6
  ## Quick Start
@@ -245,6 +245,9 @@ class EventMetadataResponseEventGroupsAdditionalPropertyItem(str, Enum):
245
245
  RESOURCE_PULL_FAILED = "resource_pull_failed"
246
246
  RESOURCE_PULL_SCHEDULED = "resource_pull_scheduled"
247
247
  RESOURCE_PULL_SUCCEEDED = "resource_pull_succeeded"
248
+ RESOURCE_RESCUE_FAILED = "resource_rescue_failed"
249
+ RESOURCE_RESCUE_SCHEDULED = "resource_rescue_scheduled"
250
+ RESOURCE_RESCUE_SUCCEEDED = "resource_rescue_succeeded"
248
251
  RESOURCE_RESTART_FAILED = "resource_restart_failed"
249
252
  RESOURCE_RESTART_SCHEDULED = "resource_restart_scheduled"
250
253
  RESOURCE_RESTART_SUCCEEDED = "resource_restart_succeeded"
@@ -264,6 +267,9 @@ class EventMetadataResponseEventGroupsAdditionalPropertyItem(str, Enum):
264
267
  RESOURCE_UNASSIGN_FLOATING_IP_FAILED = "resource_unassign_floating_ip_failed"
265
268
  RESOURCE_UNASSIGN_FLOATING_IP_SCHEDULED = "resource_unassign_floating_ip_scheduled"
266
269
  RESOURCE_UNASSIGN_FLOATING_IP_SUCCEEDED = "resource_unassign_floating_ip_succeeded"
270
+ RESOURCE_UNRESCUE_FAILED = "resource_unrescue_failed"
271
+ RESOURCE_UNRESCUE_SCHEDULED = "resource_unrescue_scheduled"
272
+ RESOURCE_UNRESCUE_SUCCEEDED = "resource_unrescue_succeeded"
267
273
  RESOURCE_UPDATE_ALLOWED_ADDRESS_PAIRS_FAILED = "resource_update_allowed_address_pairs_failed"
268
274
  RESOURCE_UPDATE_ALLOWED_ADDRESS_PAIRS_SCHEDULED = "resource_update_allowed_address_pairs_scheduled"
269
275
  RESOURCE_UPDATE_ALLOWED_ADDRESS_PAIRS_SUCCEEDED = "resource_update_allowed_address_pairs_succeeded"
@@ -245,6 +245,9 @@ class EventTypesEnum(str, Enum):
245
245
  RESOURCE_PULL_FAILED = "resource_pull_failed"
246
246
  RESOURCE_PULL_SCHEDULED = "resource_pull_scheduled"
247
247
  RESOURCE_PULL_SUCCEEDED = "resource_pull_succeeded"
248
+ RESOURCE_RESCUE_FAILED = "resource_rescue_failed"
249
+ RESOURCE_RESCUE_SCHEDULED = "resource_rescue_scheduled"
250
+ RESOURCE_RESCUE_SUCCEEDED = "resource_rescue_succeeded"
248
251
  RESOURCE_RESTART_FAILED = "resource_restart_failed"
249
252
  RESOURCE_RESTART_SCHEDULED = "resource_restart_scheduled"
250
253
  RESOURCE_RESTART_SUCCEEDED = "resource_restart_succeeded"
@@ -264,6 +267,9 @@ class EventTypesEnum(str, Enum):
264
267
  RESOURCE_UNASSIGN_FLOATING_IP_FAILED = "resource_unassign_floating_ip_failed"
265
268
  RESOURCE_UNASSIGN_FLOATING_IP_SCHEDULED = "resource_unassign_floating_ip_scheduled"
266
269
  RESOURCE_UNASSIGN_FLOATING_IP_SUCCEEDED = "resource_unassign_floating_ip_succeeded"
270
+ RESOURCE_UNRESCUE_FAILED = "resource_unrescue_failed"
271
+ RESOURCE_UNRESCUE_SCHEDULED = "resource_unrescue_scheduled"
272
+ RESOURCE_UNRESCUE_SUCCEEDED = "resource_unrescue_succeeded"
267
273
  RESOURCE_UPDATE_ALLOWED_ADDRESS_PAIRS_FAILED = "resource_update_allowed_address_pairs_failed"
268
274
  RESOURCE_UPDATE_ALLOWED_ADDRESS_PAIRS_SCHEDULED = "resource_update_allowed_address_pairs_scheduled"
269
275
  RESOURCE_UPDATE_ALLOWED_ADDRESS_PAIRS_SUCCEEDED = "resource_update_allowed_address_pairs_succeeded"
@@ -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
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: waldur-api-client
3
- Version: 8.0.9.dev321
3
+ Version: 8.0.9.dev323
4
4
  Summary: A client library for accessing Waldur API
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -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=TQa4AOOCvGr-o9UAeQYloJGB718JVllJU4_c7jfwkN4,825663
2931
- waldur_api_client/llms.txt,sha256=lqykJpP4uWEdPwaBIKFvv9uR8Y8PjkJHW8Gi1LEOMSw,14639
2930
+ waldur_api_client/llms-full.txt,sha256=VEf3FMMCGhwUrt6OGoDVX6wOZrAZcYAEkHU_xfpCqto,825663
2931
+ waldur_api_client/llms.txt,sha256=SGtSWIkWKtMweC-7O0_WuQvJVC8OYDCCi7aNAoG4RHA,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
@@ -3555,14 +3555,14 @@ waldur_api_client/models/event_field_enum.py,sha256=hO6VZUjSkUKCDYB3lT1Mb13g5rnn
3555
3555
  waldur_api_client/models/event_groups_enum.py,sha256=2omARkitL4_yAcS989SiT6_3EAPB_X4-i4Ijqg0UsD4,946
3556
3556
  waldur_api_client/models/event_metadata_response.py,sha256=i8R674Tl2wBjAeJL_F6wmjd6O8JUoK9ttJ98N1mEE5A,1994
3557
3557
  waldur_api_client/models/event_metadata_response_event_groups.py,sha256=fXjHyChX21tFT-1ZMfh2ek0_61A9Du0Wmfk2lrahfIQ,2531
3558
- waldur_api_client/models/event_metadata_response_event_groups_additional_property_item.py,sha256=dPmqR0K3ikE23pGaaUmoyAlTEVW-bvLh_DPEUKu9JhE,21053
3558
+ waldur_api_client/models/event_metadata_response_event_groups_additional_property_item.py,sha256=9ujwCpRM2jZpx2j3K2VCptOw3DNIdz8FwGMguvAHTdI,21413
3559
3559
  waldur_api_client/models/event_stats.py,sha256=DsvRRKBSmyvyDRGCO5cxnLQaWwImv1-RLKaaSm8CQac,1738
3560
3560
  waldur_api_client/models/event_subscription.py,sha256=6oxrG_xd1iNHa_bUlxmc4qbXB98NT06h_2t21IT8skE,4602
3561
3561
  waldur_api_client/models/event_subscription_queue.py,sha256=PvheOq1P_xXesEJT_kmKNbWkZukTr3J1kRcyA7PdBNU,3408
3562
3562
  waldur_api_client/models/event_subscription_queue_create_request.py,sha256=R0K58-08gyFck7txZCGHFRXn7i4gT4Fyf02fO32Ank4,2096
3563
3563
  waldur_api_client/models/event_subscription_queues_overview.py,sha256=VvNOAarmYZzuVpdbB5Cswbo9eJHUHaZHFO8ZGiNHE3c,3212
3564
3564
  waldur_api_client/models/event_subscription_request.py,sha256=TRvxR9sRJVIQLq7YC-gkCrTXnqHmSEZ5viHtRVIhRhM,2399
3565
- waldur_api_client/models/event_types_enum.py,sha256=pZE-q5vnx2oF0lJRUy272T19xyepsHVOPKqPpEgreK8,21013
3565
+ waldur_api_client/models/event_types_enum.py,sha256=zA4ZYt8Ffg9S4bEtlibSNR3DJYCoZSxXT9jUylpYlmA,21373
3566
3566
  waldur_api_client/models/events_event_groups_retrieve_response_200.py,sha256=sn5_0oGNeQY1c1b09LcohIlrWbK44dXEtjvli4K72Tw,1647
3567
3567
  waldur_api_client/models/execute_action_error_response.py,sha256=asGIiauzu7K0FPL4WguYtYfjKdGjlkpweruYfLxAQVE,1528
3568
3568
  waldur_api_client/models/execute_action_request.py,sha256=D8Efh8MLQxo2lvaV8Yxi0T9-GE7hTEBI9V53QpvxADU,1607
@@ -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=AAuUVxcxS7SHifU5FT7EgmhPyihsxapr9rNfEJNjK1w,49365
3884
- waldur_api_client/models/merged_plugin_options_request.py,sha256=a2MTHpevA4hth82_J2TOPltDYBH1W7MYp18KLinTb1w,49403
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.dev321.dist-info/METADATA,sha256=h-cHPpiIeHJq5R2DjAbM4B9XERMsUle5OtPU4kS_dog,5925
5310
- waldur_api_client-8.0.9.dev321.dist-info/WHEEL,sha256=EGEvSphFYqXKs23-kQBeyNoJP1nrT8ZJKQoi5p5DYL8,88
5311
- waldur_api_client-8.0.9.dev321.dist-info/licenses/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
5312
- waldur_api_client-8.0.9.dev321.dist-info/RECORD,,
5309
+ waldur_api_client-8.0.9.dev323.dist-info/METADATA,sha256=Z6Fd1SnXtDQmz2e4rpcL9OXd4hXgzPlSkm2BHrkV59k,5925
5310
+ waldur_api_client-8.0.9.dev323.dist-info/WHEEL,sha256=EGEvSphFYqXKs23-kQBeyNoJP1nrT8ZJKQoi5p5DYL8,88
5311
+ waldur_api_client-8.0.9.dev323.dist-info/licenses/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
5312
+ waldur_api_client-8.0.9.dev323.dist-info/RECORD,,