waldur-api-client 7.6.7__py3-none-any.whl → 7.6.8__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 waldur-api-client might be problematic. Click here for more details.
- waldur_api_client/api/backend_resource_requests/__init__.py +1 -0
- waldur_api_client/api/backend_resource_requests/backend_resource_requests_create.py +150 -0
- waldur_api_client/api/backend_resource_requests/backend_resource_requests_list.py +313 -0
- waldur_api_client/api/backend_resource_requests/backend_resource_requests_retrieve.py +142 -0
- waldur_api_client/api/backend_resource_requests/backend_resource_requests_set_done.py +144 -0
- waldur_api_client/api/backend_resource_requests/backend_resource_requests_set_erred.py +166 -0
- waldur_api_client/api/backend_resource_requests/backend_resource_requests_start_processing.py +146 -0
- waldur_api_client/api/backend_resources/__init__.py +1 -0
- waldur_api_client/api/backend_resources/backend_resources_create.py +150 -0
- waldur_api_client/api/backend_resources/backend_resources_destroy.py +89 -0
- waldur_api_client/api/backend_resources/backend_resources_import_resource.py +162 -0
- waldur_api_client/api/backend_resources/backend_resources_list.py +315 -0
- waldur_api_client/api/backend_resources/backend_resources_retrieve.py +142 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_customer_projects_list.py +15 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_projects_list.py +15 -0
- waldur_api_client/api/projects/projects_list.py +15 -0
- waldur_api_client/models/__init__.py +26 -2
- waldur_api_client/models/backend_resource.py +162 -0
- waldur_api_client/models/backend_resource_import_request.py +67 -0
- waldur_api_client/models/backend_resource_req.py +162 -0
- waldur_api_client/models/backend_resource_req_request.py +60 -0
- waldur_api_client/models/backend_resource_req_state_enum.py +11 -0
- waldur_api_client/models/backend_resource_request.py +96 -0
- waldur_api_client/models/backend_resource_request_set_erred_request.py +68 -0
- waldur_api_client/models/backend_resource_requests_list_o_item.py +9 -0
- waldur_api_client/models/backend_resource_requests_list_state_item.py +11 -0
- waldur_api_client/models/{order_details_attributes.py → backend_resource_requests_set_done_response_200.py} +6 -6
- waldur_api_client/models/backend_resource_requests_set_erred_response_200.py +44 -0
- waldur_api_client/models/backend_resource_requests_start_processing_response_200.py +44 -0
- waldur_api_client/models/backend_resources_list_o_item.py +9 -0
- waldur_api_client/models/event_types_enum.py +4 -0
- waldur_api_client/models/merged_plugin_options.py +20 -0
- waldur_api_client/models/merged_plugin_options_request.py +20 -0
- waldur_api_client/models/order_details.py +4 -14
- waldur_api_client/models/user_agreement.py +9 -11
- waldur_api_client/models/user_agreement_request.py +9 -11
- {waldur_api_client-7.6.7.dist-info → waldur_api_client-7.6.8.dist-info}/METADATA +1 -1
- {waldur_api_client-7.6.7.dist-info → waldur_api_client-7.6.8.dist-info}/RECORD +40 -15
- {waldur_api_client-7.6.7.dist-info → waldur_api_client-7.6.8.dist-info}/LICENSE +0 -0
- {waldur_api_client-7.6.7.dist-info → waldur_api_client-7.6.8.dist-info}/WHEEL +0 -0
|
@@ -31,6 +31,10 @@ class MergedPluginOptionsRequest:
|
|
|
31
31
|
the same organization under which the request is done
|
|
32
32
|
supports_downscaling (Union[Unset, bool]): If set to True, it will be possible to downscale resources
|
|
33
33
|
supports_pausing (Union[Unset, bool]): If set to True, it will be possible to pause resources
|
|
34
|
+
minimal_team_count_for_provisioning (Union[Unset, int]): Minimal team count required for provisioning of
|
|
35
|
+
resources
|
|
36
|
+
required_team_role_for_provisioning (Union[Unset, str]): Required user role in a project for provisioning of
|
|
37
|
+
resources
|
|
34
38
|
default_internal_network_mtu (Union[Unset, int]): If set, it will be used as a default MTU for the first network
|
|
35
39
|
in a tenant
|
|
36
40
|
max_instances (Union[Unset, int]): Default limit for number of instances in OpenStack tenant
|
|
@@ -80,6 +84,8 @@ class MergedPluginOptionsRequest:
|
|
|
80
84
|
auto_approve_in_service_provider_projects: Union[Unset, bool] = UNSET
|
|
81
85
|
supports_downscaling: Union[Unset, bool] = UNSET
|
|
82
86
|
supports_pausing: Union[Unset, bool] = UNSET
|
|
87
|
+
minimal_team_count_for_provisioning: Union[Unset, int] = UNSET
|
|
88
|
+
required_team_role_for_provisioning: Union[Unset, str] = UNSET
|
|
83
89
|
default_internal_network_mtu: Union[Unset, int] = UNSET
|
|
84
90
|
max_instances: Union[Unset, int] = UNSET
|
|
85
91
|
max_volumes: Union[Unset, int] = UNSET
|
|
@@ -139,6 +145,10 @@ class MergedPluginOptionsRequest:
|
|
|
139
145
|
|
|
140
146
|
supports_pausing = self.supports_pausing
|
|
141
147
|
|
|
148
|
+
minimal_team_count_for_provisioning = self.minimal_team_count_for_provisioning
|
|
149
|
+
|
|
150
|
+
required_team_role_for_provisioning = self.required_team_role_for_provisioning
|
|
151
|
+
|
|
142
152
|
default_internal_network_mtu = self.default_internal_network_mtu
|
|
143
153
|
|
|
144
154
|
max_instances = self.max_instances
|
|
@@ -242,6 +252,10 @@ class MergedPluginOptionsRequest:
|
|
|
242
252
|
field_dict["supports_downscaling"] = supports_downscaling
|
|
243
253
|
if supports_pausing is not UNSET:
|
|
244
254
|
field_dict["supports_pausing"] = supports_pausing
|
|
255
|
+
if minimal_team_count_for_provisioning is not UNSET:
|
|
256
|
+
field_dict["minimal_team_count_for_provisioning"] = minimal_team_count_for_provisioning
|
|
257
|
+
if required_team_role_for_provisioning is not UNSET:
|
|
258
|
+
field_dict["required_team_role_for_provisioning"] = required_team_role_for_provisioning
|
|
245
259
|
if default_internal_network_mtu is not UNSET:
|
|
246
260
|
field_dict["default_internal_network_mtu"] = default_internal_network_mtu
|
|
247
261
|
if max_instances is not UNSET:
|
|
@@ -351,6 +365,10 @@ class MergedPluginOptionsRequest:
|
|
|
351
365
|
|
|
352
366
|
supports_pausing = d.pop("supports_pausing", UNSET)
|
|
353
367
|
|
|
368
|
+
minimal_team_count_for_provisioning = d.pop("minimal_team_count_for_provisioning", UNSET)
|
|
369
|
+
|
|
370
|
+
required_team_role_for_provisioning = d.pop("required_team_role_for_provisioning", UNSET)
|
|
371
|
+
|
|
354
372
|
default_internal_network_mtu = d.pop("default_internal_network_mtu", UNSET)
|
|
355
373
|
|
|
356
374
|
max_instances = d.pop("max_instances", UNSET)
|
|
@@ -464,6 +482,8 @@ class MergedPluginOptionsRequest:
|
|
|
464
482
|
auto_approve_in_service_provider_projects=auto_approve_in_service_provider_projects,
|
|
465
483
|
supports_downscaling=supports_downscaling,
|
|
466
484
|
supports_pausing=supports_pausing,
|
|
485
|
+
minimal_team_count_for_provisioning=minimal_team_count_for_provisioning,
|
|
486
|
+
required_team_role_for_provisioning=required_team_role_for_provisioning,
|
|
467
487
|
default_internal_network_mtu=default_internal_network_mtu,
|
|
468
488
|
max_instances=max_instances,
|
|
469
489
|
max_volumes=max_volumes,
|
|
@@ -14,7 +14,6 @@ from ..types import UNSET, Unset
|
|
|
14
14
|
|
|
15
15
|
if TYPE_CHECKING:
|
|
16
16
|
from ..models.issue_reference import IssueReference
|
|
17
|
-
from ..models.order_details_attributes import OrderDetailsAttributes
|
|
18
17
|
from ..models.order_details_limits import OrderDetailsLimits
|
|
19
18
|
|
|
20
19
|
|
|
@@ -47,8 +46,7 @@ class OrderDetails:
|
|
|
47
46
|
plan_name (Union[None, Unset, str]):
|
|
48
47
|
plan_uuid (Union[None, UUID, Unset]):
|
|
49
48
|
plan_description (Union[None, Unset, str]):
|
|
50
|
-
attributes (Union[Unset,
|
|
51
|
-
and password.
|
|
49
|
+
attributes (Union[Unset, Any]):
|
|
52
50
|
limits (Union[Unset, OrderDetailsLimits]):
|
|
53
51
|
uuid (Union[Unset, UUID]):
|
|
54
52
|
created (Union[Unset, datetime.datetime]):
|
|
@@ -122,7 +120,7 @@ class OrderDetails:
|
|
|
122
120
|
plan_name: Union[None, Unset, str] = UNSET
|
|
123
121
|
plan_uuid: Union[None, UUID, Unset] = UNSET
|
|
124
122
|
plan_description: Union[None, Unset, str] = UNSET
|
|
125
|
-
attributes: Union[Unset,
|
|
123
|
+
attributes: Union[Unset, Any] = UNSET
|
|
126
124
|
limits: Union[Unset, "OrderDetailsLimits"] = UNSET
|
|
127
125
|
uuid: Union[Unset, UUID] = UNSET
|
|
128
126
|
created: Union[Unset, datetime.datetime] = UNSET
|
|
@@ -241,9 +239,7 @@ class OrderDetails:
|
|
|
241
239
|
else:
|
|
242
240
|
plan_description = self.plan_description
|
|
243
241
|
|
|
244
|
-
attributes
|
|
245
|
-
if not isinstance(self.attributes, Unset):
|
|
246
|
-
attributes = self.attributes.to_dict()
|
|
242
|
+
attributes = self.attributes
|
|
247
243
|
|
|
248
244
|
limits: Union[Unset, dict[str, Any]] = UNSET
|
|
249
245
|
if not isinstance(self.limits, Unset):
|
|
@@ -598,7 +594,6 @@ class OrderDetails:
|
|
|
598
594
|
@classmethod
|
|
599
595
|
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
600
596
|
from ..models.issue_reference import IssueReference
|
|
601
|
-
from ..models.order_details_attributes import OrderDetailsAttributes
|
|
602
597
|
from ..models.order_details_limits import OrderDetailsLimits
|
|
603
598
|
|
|
604
599
|
d = dict(src_dict)
|
|
@@ -703,12 +698,7 @@ class OrderDetails:
|
|
|
703
698
|
|
|
704
699
|
plan_description = _parse_plan_description(d.pop("plan_description", UNSET))
|
|
705
700
|
|
|
706
|
-
|
|
707
|
-
attributes: Union[Unset, OrderDetailsAttributes]
|
|
708
|
-
if isinstance(_attributes, Unset):
|
|
709
|
-
attributes = UNSET
|
|
710
|
-
else:
|
|
711
|
-
attributes = OrderDetailsAttributes.from_dict(_attributes)
|
|
701
|
+
attributes = d.pop("attributes", UNSET)
|
|
712
702
|
|
|
713
703
|
_limits = d.pop("limits", UNSET)
|
|
714
704
|
limits: Union[Unset, OrderDetailsLimits]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import datetime
|
|
2
2
|
from collections.abc import Mapping
|
|
3
|
-
from typing import Any, TypeVar
|
|
3
|
+
from typing import Any, TypeVar
|
|
4
4
|
from uuid import UUID
|
|
5
5
|
|
|
6
6
|
from attrs import define as _attrs_define
|
|
@@ -8,7 +8,6 @@ from attrs import field as _attrs_field
|
|
|
8
8
|
from dateutil.parser import isoparse
|
|
9
9
|
|
|
10
10
|
from ..models.agreement_type_enum import AgreementTypeEnum
|
|
11
|
-
from ..types import UNSET, Unset
|
|
12
11
|
|
|
13
12
|
T = TypeVar("T", bound="UserAgreement")
|
|
14
13
|
|
|
@@ -19,18 +18,18 @@ class UserAgreement:
|
|
|
19
18
|
Attributes:
|
|
20
19
|
url (str):
|
|
21
20
|
uuid (UUID):
|
|
21
|
+
content (str):
|
|
22
22
|
agreement_type (AgreementTypeEnum):
|
|
23
23
|
created (datetime.datetime):
|
|
24
24
|
modified (datetime.datetime):
|
|
25
|
-
content (Union[Unset, str]):
|
|
26
25
|
"""
|
|
27
26
|
|
|
28
27
|
url: str
|
|
29
28
|
uuid: UUID
|
|
29
|
+
content: str
|
|
30
30
|
agreement_type: AgreementTypeEnum
|
|
31
31
|
created: datetime.datetime
|
|
32
32
|
modified: datetime.datetime
|
|
33
|
-
content: Union[Unset, str] = UNSET
|
|
34
33
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
35
34
|
|
|
36
35
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -38,27 +37,26 @@ class UserAgreement:
|
|
|
38
37
|
|
|
39
38
|
uuid = str(self.uuid)
|
|
40
39
|
|
|
40
|
+
content = self.content
|
|
41
|
+
|
|
41
42
|
agreement_type = self.agreement_type.value
|
|
42
43
|
|
|
43
44
|
created = self.created.isoformat()
|
|
44
45
|
|
|
45
46
|
modified = self.modified.isoformat()
|
|
46
47
|
|
|
47
|
-
content = self.content
|
|
48
|
-
|
|
49
48
|
field_dict: dict[str, Any] = {}
|
|
50
49
|
field_dict.update(self.additional_properties)
|
|
51
50
|
field_dict.update(
|
|
52
51
|
{
|
|
53
52
|
"url": url,
|
|
54
53
|
"uuid": uuid,
|
|
54
|
+
"content": content,
|
|
55
55
|
"agreement_type": agreement_type,
|
|
56
56
|
"created": created,
|
|
57
57
|
"modified": modified,
|
|
58
58
|
}
|
|
59
59
|
)
|
|
60
|
-
if content is not UNSET:
|
|
61
|
-
field_dict["content"] = content
|
|
62
60
|
|
|
63
61
|
return field_dict
|
|
64
62
|
|
|
@@ -69,21 +67,21 @@ class UserAgreement:
|
|
|
69
67
|
|
|
70
68
|
uuid = UUID(d.pop("uuid"))
|
|
71
69
|
|
|
70
|
+
content = d.pop("content")
|
|
71
|
+
|
|
72
72
|
agreement_type = AgreementTypeEnum(d.pop("agreement_type"))
|
|
73
73
|
|
|
74
74
|
created = isoparse(d.pop("created"))
|
|
75
75
|
|
|
76
76
|
modified = isoparse(d.pop("modified"))
|
|
77
77
|
|
|
78
|
-
content = d.pop("content", UNSET)
|
|
79
|
-
|
|
80
78
|
user_agreement = cls(
|
|
81
79
|
url=url,
|
|
82
80
|
uuid=uuid,
|
|
81
|
+
content=content,
|
|
83
82
|
agreement_type=agreement_type,
|
|
84
83
|
created=created,
|
|
85
84
|
modified=modified,
|
|
86
|
-
content=content,
|
|
87
85
|
)
|
|
88
86
|
|
|
89
87
|
user_agreement.additional_properties = d
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
from collections.abc import Mapping
|
|
2
|
-
from typing import Any, TypeVar
|
|
2
|
+
from typing import Any, TypeVar
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
6
6
|
|
|
7
7
|
from ..models.agreement_type_enum import AgreementTypeEnum
|
|
8
|
-
from ..types import UNSET, Unset
|
|
9
8
|
|
|
10
9
|
T = TypeVar("T", bound="UserAgreementRequest")
|
|
11
10
|
|
|
@@ -14,41 +13,40 @@ T = TypeVar("T", bound="UserAgreementRequest")
|
|
|
14
13
|
class UserAgreementRequest:
|
|
15
14
|
"""
|
|
16
15
|
Attributes:
|
|
16
|
+
content (str):
|
|
17
17
|
agreement_type (AgreementTypeEnum):
|
|
18
|
-
content (Union[Unset, str]):
|
|
19
18
|
"""
|
|
20
19
|
|
|
20
|
+
content: str
|
|
21
21
|
agreement_type: AgreementTypeEnum
|
|
22
|
-
content: Union[Unset, str] = UNSET
|
|
23
22
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
23
|
|
|
25
24
|
def to_dict(self) -> dict[str, Any]:
|
|
26
|
-
agreement_type = self.agreement_type.value
|
|
27
|
-
|
|
28
25
|
content = self.content
|
|
29
26
|
|
|
27
|
+
agreement_type = self.agreement_type.value
|
|
28
|
+
|
|
30
29
|
field_dict: dict[str, Any] = {}
|
|
31
30
|
field_dict.update(self.additional_properties)
|
|
32
31
|
field_dict.update(
|
|
33
32
|
{
|
|
33
|
+
"content": content,
|
|
34
34
|
"agreement_type": agreement_type,
|
|
35
35
|
}
|
|
36
36
|
)
|
|
37
|
-
if content is not UNSET:
|
|
38
|
-
field_dict["content"] = content
|
|
39
37
|
|
|
40
38
|
return field_dict
|
|
41
39
|
|
|
42
40
|
@classmethod
|
|
43
41
|
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
44
42
|
d = dict(src_dict)
|
|
45
|
-
|
|
43
|
+
content = d.pop("content")
|
|
46
44
|
|
|
47
|
-
|
|
45
|
+
agreement_type = AgreementTypeEnum(d.pop("agreement_type"))
|
|
48
46
|
|
|
49
47
|
user_agreement_request = cls(
|
|
50
|
-
agreement_type=agreement_type,
|
|
51
48
|
content=content,
|
|
49
|
+
agreement_type=agreement_type,
|
|
52
50
|
)
|
|
53
51
|
|
|
54
52
|
user_agreement_request.additional_properties = d
|
|
@@ -135,6 +135,19 @@ waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_start.py,sha25
|
|
|
135
135
|
waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_stop.py,sha256=-Nj0qj5M7A1V2BoVeuNQq1d5s9l96K7480CjBrhk2S0,2058
|
|
136
136
|
waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_unlink.py,sha256=lCkWTjpd1UQEYEW2hPTXGDDrjdA5gWDAMpScZ0mofhk,2486
|
|
137
137
|
waldur_api_client/api/azure_virtualmachines/azure_virtualmachines_update.py,sha256=kgg4MBj8mYS0b5r7copG3KN5fggAG2jqW-p0QAfGvZw,3912
|
|
138
|
+
waldur_api_client/api/backend_resource_requests/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
139
|
+
waldur_api_client/api/backend_resource_requests/backend_resource_requests_create.py,sha256=GWByVo_-j5LbTcq9dhUQjCzAPryD1y_vq1ichodzHBI,3619
|
|
140
|
+
waldur_api_client/api/backend_resource_requests/backend_resource_requests_list.py,sha256=CFZ3a2Jb27N35zCtdfq15rbAkzvz_2tYE6txmsDdDE8,10580
|
|
141
|
+
waldur_api_client/api/backend_resource_requests/backend_resource_requests_retrieve.py,sha256=O_h546pzwJhkCDJfq8-MkqqB1V7xTpdOYvJY2gz6lQ8,3220
|
|
142
|
+
waldur_api_client/api/backend_resource_requests/backend_resource_requests_set_done.py,sha256=m1UnniwVZ6q6xfdmKgbKuyM_Q-ycPnUGaeSs8cgIMPs,3539
|
|
143
|
+
waldur_api_client/api/backend_resource_requests/backend_resource_requests_set_erred.py,sha256=_pUV8Ai-jvRrNKiWo8QWJFpVMTJ6FPwC7zCbOICNf8o,4359
|
|
144
|
+
waldur_api_client/api/backend_resource_requests/backend_resource_requests_start_processing.py,sha256=n_bXU4NAEDgtQlGBKjfijJMN1lQtRiJhr_axl0eO5Ls,3660
|
|
145
|
+
waldur_api_client/api/backend_resources/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
146
|
+
waldur_api_client/api/backend_resources/backend_resources_create.py,sha256=pyMlY81T9-OCZPmRTZ6XEGTTkOFu4eXDp6gC_HTBFHo,3537
|
|
147
|
+
waldur_api_client/api/backend_resources/backend_resources_destroy.py,sha256=F0bUOZseUI5B5SltqvNUFlB8pcML8OqSCpWlCiJcnF4,2051
|
|
148
|
+
waldur_api_client/api/backend_resources/backend_resources_import_resource.py,sha256=8-7e1Ir34oyfbUyFOv5mUn38fFa6tyujRj_3I6HWv4w,3796
|
|
149
|
+
waldur_api_client/api/backend_resources/backend_resources_list.py,sha256=gZR1YHPd5mNW6J-8l30l3Gq9VR4Ge_qVqjfQlIKjcKA,10045
|
|
150
|
+
waldur_api_client/api/backend_resources/backend_resources_retrieve.py,sha256=uDxEWtVfU057OjJcVVKhZfy2fZU4X5Uwo2qJusIrAN0,3172
|
|
138
151
|
waldur_api_client/api/billing_total_cost/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
139
152
|
waldur_api_client/api/billing_total_cost/billing_total_cost_retrieve.py,sha256=I7T1P8mTCnLQ0JJbMgM08LhRPbosj4yoAFuVXVXIpdQ,5931
|
|
140
153
|
waldur_api_client/api/booking_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
@@ -693,7 +706,7 @@ waldur_api_client/api/marketplace_sections/marketplace_sections_update.py,sha256
|
|
|
693
706
|
waldur_api_client/api/marketplace_service_providers/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
694
707
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_add_user.py,sha256=JUUbdOmTYTFbhHRxTqTjqcZ1ClQTelVJKZE4vEfpEoY,3915
|
|
695
708
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_create.py,sha256=72lqprknp_5erPH6jfC1tvDSdukiEL-tEKPq8mA4VtM,3549
|
|
696
|
-
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_customer_projects_list.py,sha256=
|
|
709
|
+
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_customer_projects_list.py,sha256=0lvg1fzVpkhAKKjyLur2_MvFpPhfuq0gVflloOnpzv4,17224
|
|
697
710
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_customers_list.py,sha256=b0yuHgXX2Trst6sB4dff0bauOPBev5k6-rpZH9xpzvE,14876
|
|
698
711
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_delete_user.py,sha256=l-XIXIbGuuYho4ElzQel1y1VE2KohmKE974LEpxl8I4,2517
|
|
699
712
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_destroy.py,sha256=XhToddoDACZ8dIP9WvXRKnFLiwFJrL8Ln3gwMfPS3uQ,2063
|
|
@@ -703,7 +716,7 @@ waldur_api_client/api/marketplace_service_providers/marketplace_service_provider
|
|
|
703
716
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py,sha256=2iyKUcG5bF_kEZti1IIOePz9u4djxePQ32AJKWWjASU,25631
|
|
704
717
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_partial_update.py,sha256=_QQ6zDBOO3ZDGqdZ5t0N4ebQhLI_Ds2jvo1ymGuBbXg,3902
|
|
705
718
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_project_permissions_list.py,sha256=xKXDvhnIJjSr5C0C1MwvUE0sX-Vq-p8HdFbPBr6wmLE,16214
|
|
706
|
-
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_projects_list.py,sha256=
|
|
719
|
+
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_projects_list.py,sha256=UHC0YuI3eCf48fPGT4MLQ6AvbAuiCp4-OKvKv1e6XSk,16632
|
|
707
720
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_retrieve.py,sha256=gmrBC9rfQLrFWdzsVdZesy9kN9FNo9eTISJ-9stJIYA,4577
|
|
708
721
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_revenue_list.py,sha256=MTf6osV6jEoIDFFXDTSUu7PqdTw5MhSyiP8w255wZMo,4685
|
|
709
722
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_robot_account_customers_list.py,sha256=Vzu0SRYtZK2DPEkHrCEMTrJDtK_dnWtt98d-0KRq0BQ,5098
|
|
@@ -978,7 +991,7 @@ waldur_api_client/api/projects/projects_add_user.py,sha256=GDpoerg7RT5lZL4THUvJy
|
|
|
978
991
|
waldur_api_client/api/projects/projects_create.py,sha256=gVqvpZs7gmu1_lOkyLQIDoh0DbV5gHyQOWED0oPXhNE,3868
|
|
979
992
|
waldur_api_client/api/projects/projects_delete_user.py,sha256=dPPhcp5tbIx9rSnVrtvAmOvcEBonStnDrpQVJ5vkF3U,2496
|
|
980
993
|
waldur_api_client/api/projects/projects_destroy.py,sha256=IRmGeTbImrXHsfJ-ENVuvJ3vLvmsduv3nsAiK6TJsnE,2220
|
|
981
|
-
waldur_api_client/api/projects/projects_list.py,sha256
|
|
994
|
+
waldur_api_client/api/projects/projects_list.py,sha256=-jEPhoV0jCHvjZQ1AiMcDbsG8PggG8GtJcWOxd8tWKM,15599
|
|
982
995
|
waldur_api_client/api/projects/projects_list_users_list.py,sha256=Jqmnn9jv81W6WE5E5h5vHQ6L6Y74yWMknzBRGVuEDog,10863
|
|
983
996
|
waldur_api_client/api/projects/projects_marketplace_checklists_list.py,sha256=_unCS6PgeR6JHKrq3eHCZ9nCdouJSZx6Xz-ZtejvQAw,3586
|
|
984
997
|
waldur_api_client/api/projects/projects_move_project.py,sha256=0l-VeOVUsOb7uWSS4PcM8mfcY3Z9ClWPtIQbbSMM2pI,3660
|
|
@@ -1405,7 +1418,7 @@ waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_update.py,sh
|
|
|
1405
1418
|
waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_web_console_retrieve.py,sha256=oZ2BaWmW_KX9J6iL90lKg2lNcX4ym-VdVp0v9zDZI0I,3342
|
|
1406
1419
|
waldur_api_client/client.py,sha256=GLq-qDZKHfSA_9duhz0MTPeaAkXUlvuHHWCRzsPcE5Y,11727
|
|
1407
1420
|
waldur_api_client/errors.py,sha256=C44oS7G-xUfc6i6fto367Oig5qm0S_pDZJUaK0eY9mU,500
|
|
1408
|
-
waldur_api_client/models/__init__.py,sha256=
|
|
1421
|
+
waldur_api_client/models/__init__.py,sha256=a6NJtQ9LWOjkFec4AzAsUY_Y8GImnsPB-eMgkSvx-Tc,121223
|
|
1409
1422
|
waldur_api_client/models/access_subnet.py,sha256=unDj1xpRJWj9Ia51twedRU9HcuWf4MYVnTCz-WGLTJk,2145
|
|
1410
1423
|
waldur_api_client/models/access_subnet_request.py,sha256=_OM-mgOmhOnbwqR9425rgdN-KWUxvz2ZgK20rGTeTrA,2005
|
|
1411
1424
|
waldur_api_client/models/account_name_generation_policy_enum.py,sha256=6XEL8dm2iWT-1ZmVf0RNbI7pmszVe1s7_Z24yPgs_K8,170
|
|
@@ -1481,6 +1494,19 @@ waldur_api_client/models/azure_virtualmachines_list_state_item.py,sha256=nlA8pTc
|
|
|
1481
1494
|
waldur_api_client/models/azure_virtualmachines_retrieve_field_item.py,sha256=HJSRlOsdaGXlB2uknbE6VDLXndj8DlTyvAe9MCR9fKg,2266
|
|
1482
1495
|
waldur_api_client/models/backend_id_request.py,sha256=YDmSPVaShp6vcUTASvzeKMCNTeteVHiRuFuRoJlj4No,1618
|
|
1483
1496
|
waldur_api_client/models/backend_metadata.py,sha256=8Bp8JCjq9guPNwml6jToUIQ26PzVZ8YjqFZser8kWv0,2892
|
|
1497
|
+
waldur_api_client/models/backend_resource.py,sha256=9lNWlyAxWKcZXh9W-r7_BlYn0wWk0fAusH1xFhlgnrQ,4238
|
|
1498
|
+
waldur_api_client/models/backend_resource_import_request.py,sha256=Atl65Hu8mHCtdxRuIbCvtVn9B-IFKAsRJK-6zD33x6s,1874
|
|
1499
|
+
waldur_api_client/models/backend_resource_req.py,sha256=y-FgQt__FIDZH8oQvDhiB_pg136CGUIRoY8DVP5Cq0g,4746
|
|
1500
|
+
waldur_api_client/models/backend_resource_req_request.py,sha256=OVpjlWQRcG73A9pekyyhej2c75msRKO03esZ78Hdr3U,1588
|
|
1501
|
+
waldur_api_client/models/backend_resource_req_state_enum.py,sha256=t9HIu7WSIqXYSBBriZ5ZpPXjtzhzYaQ12STNLvx7hWU,218
|
|
1502
|
+
waldur_api_client/models/backend_resource_request.py,sha256=dW7I4mg4kTJWKa6LyFwqkwSMz8-8j-kwmuP5CkDMZ8A,2586
|
|
1503
|
+
waldur_api_client/models/backend_resource_request_set_erred_request.py,sha256=ItI0FyzWfGDBvxhh_Yn4e_oUQOuBwBu_RgbOFP8Qzuk,2110
|
|
1504
|
+
waldur_api_client/models/backend_resource_requests_list_o_item.py,sha256=ku3xlaZ2FgGB8nbBhOOym-ZglFaQhwJFCU4ePtzyx44,186
|
|
1505
|
+
waldur_api_client/models/backend_resource_requests_list_state_item.py,sha256=gNvIp2mD0lNOtw_HgSs_Ibl3y5F8ntf9IYo6jx2OO_Q,227
|
|
1506
|
+
waldur_api_client/models/backend_resource_requests_set_done_response_200.py,sha256=RPIY3CdhyJkZXeADfcB1T7_d8g40yQsY79_34pkPS60,1365
|
|
1507
|
+
waldur_api_client/models/backend_resource_requests_set_erred_response_200.py,sha256=d7sU1hGT2zfy0aJ5S7jJ4UhzHla6E8mx2wYSlLH1QrQ,1370
|
|
1508
|
+
waldur_api_client/models/backend_resource_requests_start_processing_response_200.py,sha256=VRBPIj0nsDIDS2U-1WY8qSTuwjFNIXQrY8PvdEDVJBA,1405
|
|
1509
|
+
waldur_api_client/models/backend_resources_list_o_item.py,sha256=F42SZrue8dv6jU9XmbzG7Ld0ir6ccRGrEeHT88G-6mM,179
|
|
1484
1510
|
waldur_api_client/models/base_component_usage.py,sha256=zcHInthFcSJqYchU1vR1tE7Gvj9F5P4KYhGPGI19Vxo,3584
|
|
1485
1511
|
waldur_api_client/models/base_provider_plan.py,sha256=FI0-1Xhv_-7OXazRIkdr2xK2vvUzQAiT81hV9Ma-HRo,10583
|
|
1486
1512
|
waldur_api_client/models/base_provider_plan_future_prices.py,sha256=6SNAxH5YZPp_6QsIpiyvXN6RqGQdLMN76D-e_miL4MY,1300
|
|
@@ -1656,7 +1682,7 @@ waldur_api_client/models/event_stats.py,sha256=DsvRRKBSmyvyDRGCO5cxnLQaWwImv1-RL
|
|
|
1656
1682
|
waldur_api_client/models/event_subscription.py,sha256=d1FPQWgwLmUH4tXr8ee5nwfDFTcnwzeBI6gZEVDu1o0,4225
|
|
1657
1683
|
waldur_api_client/models/event_subscription_request.py,sha256=886_Gtrm-jaDc_465PQiO3gg3je7kfPb8lRNz2VPND4,2047
|
|
1658
1684
|
waldur_api_client/models/event_subscriptions_list_o_item.py,sha256=y3QD9iti1tT-H4FJehhGeuOcE6WbO0BaBjAy7xyJjX0,181
|
|
1659
|
-
waldur_api_client/models/event_types_enum.py,sha256=
|
|
1685
|
+
waldur_api_client/models/event_types_enum.py,sha256=bhJnv6oty3zJzdVpT5YvqzkgqqGUogYFSiD4HOztXQQ,16765
|
|
1660
1686
|
waldur_api_client/models/events_count_retrieve_field_item.py,sha256=VG8asqy9I_s1wKHHfubLLc1kAQTjeCEstGGfIzamZgE,253
|
|
1661
1687
|
waldur_api_client/models/events_event_groups_retrieve_field_item.py,sha256=dYixnwJi5wKAtg-2zvG288vkGpMYBsm2mkjfQEuO_Ik,259
|
|
1662
1688
|
waldur_api_client/models/events_list_field_item.py,sha256=Xg3Ky71jUYdKi7bLIqolLQYl7SVT5JqTjBjHHY1Unew,244
|
|
@@ -1848,8 +1874,8 @@ waldur_api_client/models/marketplace_service_providers_retrieve_field_item.py,sh
|
|
|
1848
1874
|
waldur_api_client/models/marketplace_service_providers_user_customers_list_field_item.py,sha256=O1D7M9AsDjm0yy3ByxeZLBm0hoECJa3DLzd-DPM8GYI,512
|
|
1849
1875
|
waldur_api_client/models/marketplace_service_providers_users_list_field_item.py,sha256=kmp8qp6JD-PXuPw5b6wosav0U-Ekyb4_qoh2__9b89o,516
|
|
1850
1876
|
waldur_api_client/models/marketplace_service_providers_users_list_o_item.py,sha256=UZha_JlWdNCcrtiZCTLlVQcJgULs26eaO6-id-JCdNc,853
|
|
1851
|
-
waldur_api_client/models/merged_plugin_options.py,sha256=
|
|
1852
|
-
waldur_api_client/models/merged_plugin_options_request.py,sha256=
|
|
1877
|
+
waldur_api_client/models/merged_plugin_options.py,sha256=okRCfN9NTh9Mfc480qlm9vfEGgKAxwdUeaufg94N8mc,29781
|
|
1878
|
+
waldur_api_client/models/merged_plugin_options_request.py,sha256=MRD3BfGsatm6zgbMdIgPbGyS5RJKbLFYrgqXiOuOaFs,29819
|
|
1853
1879
|
waldur_api_client/models/merged_secret_options.py,sha256=i8e55KXYijZAMsyxoEz02aQfpSmAinJfUUR3H9BOD9w,18063
|
|
1854
1880
|
waldur_api_client/models/merged_secret_options_request.py,sha256=wRQBET_oy0MalZCl5FXEj02_Wulqc3sGhLwVFwm6okU,18152
|
|
1855
1881
|
waldur_api_client/models/message_template.py,sha256=ofQbUbliARw0XSvTOfmkjXUMIb2HLPUDpN8J7_A6-SI,2084
|
|
@@ -2092,8 +2118,7 @@ waldur_api_client/models/order_create.py,sha256=N0JnkDSDwo85Y1AIZreJgcfIQJRavTqU
|
|
|
2092
2118
|
waldur_api_client/models/order_create_limits.py,sha256=qt3ypdtQtxu6MkfdaS2AlFHUu6W81M-2CfzYuCNf8tA,1233
|
|
2093
2119
|
waldur_api_client/models/order_create_request.py,sha256=B2hAD6vWCCG-JxDBjwZa7x3VWgFv61qjnWn_XoNs3Ho,4867
|
|
2094
2120
|
waldur_api_client/models/order_create_request_limits.py,sha256=xNQsB7tIP3XKLTLM3jRju0vBmm0j9t4ss501oDOGcHg,1271
|
|
2095
|
-
waldur_api_client/models/order_details.py,sha256=
|
|
2096
|
-
waldur_api_client/models/order_details_attributes.py,sha256=9WGdnCNUGsGFcT64rQEY-m3-2YXre8kTxct4lHR7OmA,1331
|
|
2121
|
+
waldur_api_client/models/order_details.py,sha256=nPpEbHR7UpMu6KlvX4m4UuaeoIIrbUcBX8AtkvaJ3Hc,44354
|
|
2097
2122
|
waldur_api_client/models/order_details_limits.py,sha256=H5kwMomGkcmTV4esrILgDiqIk9dpiDpBWyz0LxqPeEA,1238
|
|
2098
2123
|
waldur_api_client/models/order_set_state_erred_request.py,sha256=nNajqN8q-y3LUKJtnc6dtnWk0mcsQ-1HXIUeZ4Q7nY0,2047
|
|
2099
2124
|
waldur_api_client/models/order_state.py,sha256=jXaIDxH6PZ1tU9F97_BvdBEnh8bN_eW7SpywbRFlu5s,357
|
|
@@ -2525,8 +2550,8 @@ waldur_api_client/models/tenant.py,sha256=ZIgij-mOVQW1hg6-ay4fg-LXmfaYpm8nX8miqY
|
|
|
2525
2550
|
waldur_api_client/models/token_request.py,sha256=FL76aLL-9e6BV8s8zXpoX9vj-IgWIhjayE_5X6NLyr0,1452
|
|
2526
2551
|
waldur_api_client/models/total_customer_cost.py,sha256=oo5hW0Xn0v6pnqmpuhGU8vPLRyxkMH1q1_5pcIp4EIc,1641
|
|
2527
2552
|
waldur_api_client/models/user.py,sha256=V6sZht_LPBdWyDTPfWODHwBMc_8rfDsSoR_pcGf7s38,18059
|
|
2528
|
-
waldur_api_client/models/user_agreement.py,sha256=
|
|
2529
|
-
waldur_api_client/models/user_agreement_request.py,sha256=
|
|
2553
|
+
waldur_api_client/models/user_agreement.py,sha256=b4ZGRH4NFpqNDz03fSIRnqzEUip1uyle1BstHdNH-uw,2653
|
|
2554
|
+
waldur_api_client/models/user_agreement_request.py,sha256=Sq_PIJ6sel7arPE6WMEud_vW8JIPJjyuAbHBPlnwvOc,1871
|
|
2530
2555
|
waldur_api_client/models/user_agreements_list_agreement_type.py,sha256=_BQWdsHBLj5SsW7VKroeHqkNhHCyEYWQUtBwSkB-97c,166
|
|
2531
2556
|
waldur_api_client/models/user_auth_token.py,sha256=pUJ9R2bIP91Bkz4bw9fvaRgVwnCX6Nuyq6k4btrp5k0,3524
|
|
2532
2557
|
waldur_api_client/models/user_email_change_request.py,sha256=1VqzZ20plnwS8j9eytAHH5GnVnf5gar7CYDA6TtXfG8,1508
|
|
@@ -2596,7 +2621,7 @@ waldur_api_client/models/webhook_event_enum.py,sha256=P8kLmYD2Z-EqFjfr489bholAay
|
|
|
2596
2621
|
waldur_api_client/models/widget_enum.py,sha256=oC-BDHXc9GnUD3IhxVHMbhkYTdfpWLBcaUXjY__RERs,201
|
|
2597
2622
|
waldur_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
2598
2623
|
waldur_api_client/types.py,sha256=AX4orxQZQJat3vZrgjJ-TYb2sNBL8kNo9yqYDT-n8y8,1391
|
|
2599
|
-
waldur_api_client-7.6.
|
|
2600
|
-
waldur_api_client-7.6.
|
|
2601
|
-
waldur_api_client-7.6.
|
|
2602
|
-
waldur_api_client-7.6.
|
|
2624
|
+
waldur_api_client-7.6.8.dist-info/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
|
|
2625
|
+
waldur_api_client-7.6.8.dist-info/METADATA,sha256=gFDRyKs7C_U3JhXBJNyPnlSjpF9QINfQOtXT73LC6yg,5845
|
|
2626
|
+
waldur_api_client-7.6.8.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2627
|
+
waldur_api_client-7.6.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|