waldur-api-client 7.7.0__py3-none-any.whl → 7.7.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 waldur-api-client might be problematic. Click here for more details.
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_create.py +8 -4
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_destroy.py +4 -2
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_list.py +4 -4
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_partial_update.py +8 -4
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_retrieve.py +8 -4
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_update.py +8 -4
- waldur_api_client/models/group_invitation.py +16 -5
- waldur_api_client/models/group_invitation_request.py +16 -5
- waldur_api_client/models/open_stack_floating_ip.py +21 -0
- waldur_api_client/models/openstack_floating_ips_list_field_item.py +1 -0
- waldur_api_client/models/openstack_floating_ips_retrieve_field_item.py +1 -0
- waldur_api_client/models/rule.py +46 -6
- {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.1.dist-info}/METADATA +1 -1
- {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.1.dist-info}/RECORD +16 -16
- {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.1.dist-info}/LICENSE +0 -0
- {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.1.dist-info}/WHEEL +0 -0
|
@@ -51,7 +51,8 @@ def sync_detailed(
|
|
|
51
51
|
client: AuthenticatedClient,
|
|
52
52
|
body: RuleRequest,
|
|
53
53
|
) -> Response[Rule]:
|
|
54
|
-
"""
|
|
54
|
+
"""Manage autoprovisioning rules.
|
|
55
|
+
|
|
55
56
|
Args:
|
|
56
57
|
body (RuleRequest):
|
|
57
58
|
|
|
@@ -79,7 +80,8 @@ def sync(
|
|
|
79
80
|
client: AuthenticatedClient,
|
|
80
81
|
body: RuleRequest,
|
|
81
82
|
) -> Rule:
|
|
82
|
-
"""
|
|
83
|
+
"""Manage autoprovisioning rules.
|
|
84
|
+
|
|
83
85
|
Args:
|
|
84
86
|
body (RuleRequest):
|
|
85
87
|
|
|
@@ -102,7 +104,8 @@ async def asyncio_detailed(
|
|
|
102
104
|
client: AuthenticatedClient,
|
|
103
105
|
body: RuleRequest,
|
|
104
106
|
) -> Response[Rule]:
|
|
105
|
-
"""
|
|
107
|
+
"""Manage autoprovisioning rules.
|
|
108
|
+
|
|
106
109
|
Args:
|
|
107
110
|
body (RuleRequest):
|
|
108
111
|
|
|
@@ -128,7 +131,8 @@ async def asyncio(
|
|
|
128
131
|
client: AuthenticatedClient,
|
|
129
132
|
body: RuleRequest,
|
|
130
133
|
) -> Rule:
|
|
131
|
-
"""
|
|
134
|
+
"""Manage autoprovisioning rules.
|
|
135
|
+
|
|
132
136
|
Args:
|
|
133
137
|
body (RuleRequest):
|
|
134
138
|
|
|
@@ -40,7 +40,8 @@ def sync_detailed(
|
|
|
40
40
|
*,
|
|
41
41
|
client: AuthenticatedClient,
|
|
42
42
|
) -> Response[Any]:
|
|
43
|
-
"""
|
|
43
|
+
"""Manage autoprovisioning rules.
|
|
44
|
+
|
|
44
45
|
Args:
|
|
45
46
|
uuid (UUID):
|
|
46
47
|
|
|
@@ -68,7 +69,8 @@ async def asyncio_detailed(
|
|
|
68
69
|
*,
|
|
69
70
|
client: AuthenticatedClient,
|
|
70
71
|
) -> Response[Any]:
|
|
71
|
-
"""
|
|
72
|
+
"""Manage autoprovisioning rules.
|
|
73
|
+
|
|
72
74
|
Args:
|
|
73
75
|
uuid (UUID):
|
|
74
76
|
|
|
@@ -59,7 +59,7 @@ def sync_detailed(
|
|
|
59
59
|
page: Union[Unset, int] = UNSET,
|
|
60
60
|
page_size: Union[Unset, int] = UNSET,
|
|
61
61
|
) -> Response[list["Rule"]]:
|
|
62
|
-
"""
|
|
62
|
+
"""Manage autoprovisioning rules.
|
|
63
63
|
|
|
64
64
|
Args:
|
|
65
65
|
page (Union[Unset, int]):
|
|
@@ -91,7 +91,7 @@ def sync(
|
|
|
91
91
|
page: Union[Unset, int] = UNSET,
|
|
92
92
|
page_size: Union[Unset, int] = UNSET,
|
|
93
93
|
) -> list["Rule"]:
|
|
94
|
-
"""
|
|
94
|
+
"""Manage autoprovisioning rules.
|
|
95
95
|
|
|
96
96
|
Args:
|
|
97
97
|
page (Union[Unset, int]):
|
|
@@ -118,7 +118,7 @@ async def asyncio_detailed(
|
|
|
118
118
|
page: Union[Unset, int] = UNSET,
|
|
119
119
|
page_size: Union[Unset, int] = UNSET,
|
|
120
120
|
) -> Response[list["Rule"]]:
|
|
121
|
-
"""
|
|
121
|
+
"""Manage autoprovisioning rules.
|
|
122
122
|
|
|
123
123
|
Args:
|
|
124
124
|
page (Union[Unset, int]):
|
|
@@ -148,7 +148,7 @@ async def asyncio(
|
|
|
148
148
|
page: Union[Unset, int] = UNSET,
|
|
149
149
|
page_size: Union[Unset, int] = UNSET,
|
|
150
150
|
) -> list["Rule"]:
|
|
151
|
-
"""
|
|
151
|
+
"""Manage autoprovisioning rules.
|
|
152
152
|
|
|
153
153
|
Args:
|
|
154
154
|
page (Union[Unset, int]):
|
|
@@ -54,7 +54,8 @@ def sync_detailed(
|
|
|
54
54
|
client: AuthenticatedClient,
|
|
55
55
|
body: PatchedRuleRequest,
|
|
56
56
|
) -> Response[Rule]:
|
|
57
|
-
"""
|
|
57
|
+
"""Manage autoprovisioning rules.
|
|
58
|
+
|
|
58
59
|
Args:
|
|
59
60
|
uuid (UUID):
|
|
60
61
|
body (PatchedRuleRequest):
|
|
@@ -85,7 +86,8 @@ def sync(
|
|
|
85
86
|
client: AuthenticatedClient,
|
|
86
87
|
body: PatchedRuleRequest,
|
|
87
88
|
) -> Rule:
|
|
88
|
-
"""
|
|
89
|
+
"""Manage autoprovisioning rules.
|
|
90
|
+
|
|
89
91
|
Args:
|
|
90
92
|
uuid (UUID):
|
|
91
93
|
body (PatchedRuleRequest):
|
|
@@ -111,7 +113,8 @@ async def asyncio_detailed(
|
|
|
111
113
|
client: AuthenticatedClient,
|
|
112
114
|
body: PatchedRuleRequest,
|
|
113
115
|
) -> Response[Rule]:
|
|
114
|
-
"""
|
|
116
|
+
"""Manage autoprovisioning rules.
|
|
117
|
+
|
|
115
118
|
Args:
|
|
116
119
|
uuid (UUID):
|
|
117
120
|
body (PatchedRuleRequest):
|
|
@@ -140,7 +143,8 @@ async def asyncio(
|
|
|
140
143
|
client: AuthenticatedClient,
|
|
141
144
|
body: PatchedRuleRequest,
|
|
142
145
|
) -> Rule:
|
|
143
|
-
"""
|
|
146
|
+
"""Manage autoprovisioning rules.
|
|
147
|
+
|
|
144
148
|
Args:
|
|
145
149
|
uuid (UUID):
|
|
146
150
|
body (PatchedRuleRequest):
|
|
@@ -43,7 +43,8 @@ def sync_detailed(
|
|
|
43
43
|
*,
|
|
44
44
|
client: AuthenticatedClient,
|
|
45
45
|
) -> Response[Rule]:
|
|
46
|
-
"""
|
|
46
|
+
"""Manage autoprovisioning rules.
|
|
47
|
+
|
|
47
48
|
Args:
|
|
48
49
|
uuid (UUID):
|
|
49
50
|
|
|
@@ -71,7 +72,8 @@ def sync(
|
|
|
71
72
|
*,
|
|
72
73
|
client: AuthenticatedClient,
|
|
73
74
|
) -> Rule:
|
|
74
|
-
"""
|
|
75
|
+
"""Manage autoprovisioning rules.
|
|
76
|
+
|
|
75
77
|
Args:
|
|
76
78
|
uuid (UUID):
|
|
77
79
|
|
|
@@ -94,7 +96,8 @@ async def asyncio_detailed(
|
|
|
94
96
|
*,
|
|
95
97
|
client: AuthenticatedClient,
|
|
96
98
|
) -> Response[Rule]:
|
|
97
|
-
"""
|
|
99
|
+
"""Manage autoprovisioning rules.
|
|
100
|
+
|
|
98
101
|
Args:
|
|
99
102
|
uuid (UUID):
|
|
100
103
|
|
|
@@ -120,7 +123,8 @@ async def asyncio(
|
|
|
120
123
|
*,
|
|
121
124
|
client: AuthenticatedClient,
|
|
122
125
|
) -> Rule:
|
|
123
|
-
"""
|
|
126
|
+
"""Manage autoprovisioning rules.
|
|
127
|
+
|
|
124
128
|
Args:
|
|
125
129
|
uuid (UUID):
|
|
126
130
|
|
|
@@ -54,7 +54,8 @@ def sync_detailed(
|
|
|
54
54
|
client: AuthenticatedClient,
|
|
55
55
|
body: RuleRequest,
|
|
56
56
|
) -> Response[Rule]:
|
|
57
|
-
"""
|
|
57
|
+
"""Manage autoprovisioning rules.
|
|
58
|
+
|
|
58
59
|
Args:
|
|
59
60
|
uuid (UUID):
|
|
60
61
|
body (RuleRequest):
|
|
@@ -85,7 +86,8 @@ def sync(
|
|
|
85
86
|
client: AuthenticatedClient,
|
|
86
87
|
body: RuleRequest,
|
|
87
88
|
) -> Rule:
|
|
88
|
-
"""
|
|
89
|
+
"""Manage autoprovisioning rules.
|
|
90
|
+
|
|
89
91
|
Args:
|
|
90
92
|
uuid (UUID):
|
|
91
93
|
body (RuleRequest):
|
|
@@ -111,7 +113,8 @@ async def asyncio_detailed(
|
|
|
111
113
|
client: AuthenticatedClient,
|
|
112
114
|
body: RuleRequest,
|
|
113
115
|
) -> Response[Rule]:
|
|
114
|
-
"""
|
|
116
|
+
"""Manage autoprovisioning rules.
|
|
117
|
+
|
|
115
118
|
Args:
|
|
116
119
|
uuid (UUID):
|
|
117
120
|
body (RuleRequest):
|
|
@@ -140,7 +143,8 @@ async def asyncio(
|
|
|
140
143
|
client: AuthenticatedClient,
|
|
141
144
|
body: RuleRequest,
|
|
142
145
|
) -> Rule:
|
|
143
|
-
"""
|
|
146
|
+
"""Manage autoprovisioning rules.
|
|
147
|
+
|
|
144
148
|
Args:
|
|
145
149
|
uuid (UUID):
|
|
146
150
|
body (RuleRequest):
|
|
@@ -33,8 +33,8 @@ class GroupInvitation:
|
|
|
33
33
|
is_active (bool):
|
|
34
34
|
auto_create_project (Union[Unset, bool]): Create project and grant project permissions instead of customer
|
|
35
35
|
permissions
|
|
36
|
-
project_name_template (Union[Unset, str]): Template for project name. Supports {username}, {email},
|
|
37
|
-
variables
|
|
36
|
+
project_name_template (Union[None, Unset, str]): Template for project name. Supports {username}, {email},
|
|
37
|
+
{full_name} variables
|
|
38
38
|
project_role (Union[None, UUID, Unset]):
|
|
39
39
|
"""
|
|
40
40
|
|
|
@@ -54,7 +54,7 @@ class GroupInvitation:
|
|
|
54
54
|
expires: datetime.datetime
|
|
55
55
|
is_active: bool
|
|
56
56
|
auto_create_project: Union[Unset, bool] = UNSET
|
|
57
|
-
project_name_template: Union[Unset, str] = UNSET
|
|
57
|
+
project_name_template: Union[None, Unset, str] = UNSET
|
|
58
58
|
project_role: Union[None, UUID, Unset] = UNSET
|
|
59
59
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
60
60
|
|
|
@@ -91,7 +91,11 @@ class GroupInvitation:
|
|
|
91
91
|
|
|
92
92
|
auto_create_project = self.auto_create_project
|
|
93
93
|
|
|
94
|
-
project_name_template
|
|
94
|
+
project_name_template: Union[None, Unset, str]
|
|
95
|
+
if isinstance(self.project_name_template, Unset):
|
|
96
|
+
project_name_template = UNSET
|
|
97
|
+
else:
|
|
98
|
+
project_name_template = self.project_name_template
|
|
95
99
|
|
|
96
100
|
project_role: Union[None, Unset, str]
|
|
97
101
|
if isinstance(self.project_role, Unset):
|
|
@@ -166,7 +170,14 @@ class GroupInvitation:
|
|
|
166
170
|
|
|
167
171
|
auto_create_project = d.pop("auto_create_project", UNSET)
|
|
168
172
|
|
|
169
|
-
|
|
173
|
+
def _parse_project_name_template(data: object) -> Union[None, Unset, str]:
|
|
174
|
+
if data is None:
|
|
175
|
+
return data
|
|
176
|
+
if isinstance(data, Unset):
|
|
177
|
+
return data
|
|
178
|
+
return cast(Union[None, Unset, str], data)
|
|
179
|
+
|
|
180
|
+
project_name_template = _parse_project_name_template(d.pop("project_name_template", UNSET))
|
|
170
181
|
|
|
171
182
|
def _parse_project_role(data: object) -> Union[None, UUID, Unset]:
|
|
172
183
|
if data is None:
|
|
@@ -18,15 +18,15 @@ class GroupInvitationRequest:
|
|
|
18
18
|
scope (str):
|
|
19
19
|
auto_create_project (Union[Unset, bool]): Create project and grant project permissions instead of customer
|
|
20
20
|
permissions
|
|
21
|
-
project_name_template (Union[Unset, str]): Template for project name. Supports {username}, {email},
|
|
22
|
-
variables
|
|
21
|
+
project_name_template (Union[None, Unset, str]): Template for project name. Supports {username}, {email},
|
|
22
|
+
{full_name} variables
|
|
23
23
|
project_role (Union[None, UUID, Unset]):
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
26
|
role: UUID
|
|
27
27
|
scope: str
|
|
28
28
|
auto_create_project: Union[Unset, bool] = UNSET
|
|
29
|
-
project_name_template: Union[Unset, str] = UNSET
|
|
29
|
+
project_name_template: Union[None, Unset, str] = UNSET
|
|
30
30
|
project_role: Union[None, UUID, Unset] = UNSET
|
|
31
31
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
32
32
|
|
|
@@ -37,7 +37,11 @@ class GroupInvitationRequest:
|
|
|
37
37
|
|
|
38
38
|
auto_create_project = self.auto_create_project
|
|
39
39
|
|
|
40
|
-
project_name_template
|
|
40
|
+
project_name_template: Union[None, Unset, str]
|
|
41
|
+
if isinstance(self.project_name_template, Unset):
|
|
42
|
+
project_name_template = UNSET
|
|
43
|
+
else:
|
|
44
|
+
project_name_template = self.project_name_template
|
|
41
45
|
|
|
42
46
|
project_role: Union[None, Unset, str]
|
|
43
47
|
if isinstance(self.project_role, Unset):
|
|
@@ -73,7 +77,14 @@ class GroupInvitationRequest:
|
|
|
73
77
|
|
|
74
78
|
auto_create_project = d.pop("auto_create_project", UNSET)
|
|
75
79
|
|
|
76
|
-
|
|
80
|
+
def _parse_project_name_template(data: object) -> Union[None, Unset, str]:
|
|
81
|
+
if data is None:
|
|
82
|
+
return data
|
|
83
|
+
if isinstance(data, Unset):
|
|
84
|
+
return data
|
|
85
|
+
return cast(Union[None, Unset, str], data)
|
|
86
|
+
|
|
87
|
+
project_name_template = _parse_project_name_template(d.pop("project_name_template", UNSET))
|
|
77
88
|
|
|
78
89
|
def _parse_project_role(data: object) -> Union[None, UUID, Unset]:
|
|
79
90
|
if data is None:
|
|
@@ -11,6 +11,7 @@ from ..models.core_states import CoreStates
|
|
|
11
11
|
from ..types import UNSET, Unset
|
|
12
12
|
|
|
13
13
|
if TYPE_CHECKING:
|
|
14
|
+
from ..models.open_stack_fixed_ip import OpenStackFixedIp
|
|
14
15
|
from ..models.open_stack_floating_ip_marketplace_offering_plugin_options_type_0 import (
|
|
15
16
|
OpenStackFloatingIPMarketplaceOfferingPluginOptionsType0,
|
|
16
17
|
)
|
|
@@ -55,6 +56,7 @@ class OpenStackFloatingIP:
|
|
|
55
56
|
tenant_uuid (Union[Unset, UUID]):
|
|
56
57
|
port (Union[Unset, str]):
|
|
57
58
|
external_address (Union[None, Unset, str]): An optional address that maps to floating IP's address
|
|
59
|
+
port_fixed_ips (Union[Unset, list['OpenStackFixedIp']]):
|
|
58
60
|
instance_uuid (Union[None, Unset, str]):
|
|
59
61
|
instance_name (Union[None, Unset, str]):
|
|
60
62
|
instance_url (Union[None, Unset, str]):
|
|
@@ -103,6 +105,7 @@ class OpenStackFloatingIP:
|
|
|
103
105
|
tenant_uuid: Union[Unset, UUID] = UNSET
|
|
104
106
|
port: Union[Unset, str] = UNSET
|
|
105
107
|
external_address: Union[None, Unset, str] = UNSET
|
|
108
|
+
port_fixed_ips: Union[Unset, list["OpenStackFixedIp"]] = UNSET
|
|
106
109
|
instance_uuid: Union[None, Unset, str] = UNSET
|
|
107
110
|
instance_name: Union[None, Unset, str] = UNSET
|
|
108
111
|
instance_url: Union[None, Unset, str] = UNSET
|
|
@@ -215,6 +218,13 @@ class OpenStackFloatingIP:
|
|
|
215
218
|
else:
|
|
216
219
|
external_address = self.external_address
|
|
217
220
|
|
|
221
|
+
port_fixed_ips: Union[Unset, list[dict[str, Any]]] = UNSET
|
|
222
|
+
if not isinstance(self.port_fixed_ips, Unset):
|
|
223
|
+
port_fixed_ips = []
|
|
224
|
+
for port_fixed_ips_item_data in self.port_fixed_ips:
|
|
225
|
+
port_fixed_ips_item = port_fixed_ips_item_data.to_dict()
|
|
226
|
+
port_fixed_ips.append(port_fixed_ips_item)
|
|
227
|
+
|
|
218
228
|
instance_uuid: Union[None, Unset, str]
|
|
219
229
|
if isinstance(self.instance_uuid, Unset):
|
|
220
230
|
instance_uuid = UNSET
|
|
@@ -364,6 +374,8 @@ class OpenStackFloatingIP:
|
|
|
364
374
|
field_dict["port"] = port
|
|
365
375
|
if external_address is not UNSET:
|
|
366
376
|
field_dict["external_address"] = external_address
|
|
377
|
+
if port_fixed_ips is not UNSET:
|
|
378
|
+
field_dict["port_fixed_ips"] = port_fixed_ips
|
|
367
379
|
if instance_uuid is not UNSET:
|
|
368
380
|
field_dict["instance_uuid"] = instance_uuid
|
|
369
381
|
if instance_name is not UNSET:
|
|
@@ -395,6 +407,7 @@ class OpenStackFloatingIP:
|
|
|
395
407
|
|
|
396
408
|
@classmethod
|
|
397
409
|
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
410
|
+
from ..models.open_stack_fixed_ip import OpenStackFixedIp
|
|
398
411
|
from ..models.open_stack_floating_ip_marketplace_offering_plugin_options_type_0 import (
|
|
399
412
|
OpenStackFloatingIPMarketplaceOfferingPluginOptionsType0,
|
|
400
413
|
)
|
|
@@ -520,6 +533,13 @@ class OpenStackFloatingIP:
|
|
|
520
533
|
|
|
521
534
|
external_address = _parse_external_address(d.pop("external_address", UNSET))
|
|
522
535
|
|
|
536
|
+
port_fixed_ips = []
|
|
537
|
+
_port_fixed_ips = d.pop("port_fixed_ips", UNSET)
|
|
538
|
+
for port_fixed_ips_item_data in _port_fixed_ips or []:
|
|
539
|
+
port_fixed_ips_item = OpenStackFixedIp.from_dict(port_fixed_ips_item_data)
|
|
540
|
+
|
|
541
|
+
port_fixed_ips.append(port_fixed_ips_item)
|
|
542
|
+
|
|
523
543
|
def _parse_instance_uuid(data: object) -> Union[None, Unset, str]:
|
|
524
544
|
if data is None:
|
|
525
545
|
return data
|
|
@@ -684,6 +704,7 @@ class OpenStackFloatingIP:
|
|
|
684
704
|
tenant_uuid=tenant_uuid,
|
|
685
705
|
port=port,
|
|
686
706
|
external_address=external_address,
|
|
707
|
+
port_fixed_ips=port_fixed_ips,
|
|
687
708
|
instance_uuid=instance_uuid,
|
|
688
709
|
instance_name=instance_name,
|
|
689
710
|
instance_url=instance_url,
|
waldur_api_client/models/rule.py
CHANGED
|
@@ -25,8 +25,13 @@ class Rule:
|
|
|
25
25
|
customer (str):
|
|
26
26
|
customer_name (str):
|
|
27
27
|
customer_uuid (str):
|
|
28
|
-
|
|
28
|
+
project_role_display_name (str):
|
|
29
29
|
project_role_description (str):
|
|
30
|
+
plan_name (str):
|
|
31
|
+
offering_name (str):
|
|
32
|
+
offering_uuid (UUID):
|
|
33
|
+
category_title (str):
|
|
34
|
+
category_url (str):
|
|
30
35
|
user_affiliations (Union[Unset, list[str]]):
|
|
31
36
|
user_email_patterns (Union[Unset, list[str]]):
|
|
32
37
|
project_role (Union[None, Unset, str]):
|
|
@@ -41,8 +46,13 @@ class Rule:
|
|
|
41
46
|
customer: str
|
|
42
47
|
customer_name: str
|
|
43
48
|
customer_uuid: str
|
|
44
|
-
|
|
49
|
+
project_role_display_name: str
|
|
45
50
|
project_role_description: str
|
|
51
|
+
plan_name: str
|
|
52
|
+
offering_name: str
|
|
53
|
+
offering_uuid: UUID
|
|
54
|
+
category_title: str
|
|
55
|
+
category_url: str
|
|
46
56
|
user_affiliations: Union[Unset, list[str]] = UNSET
|
|
47
57
|
user_email_patterns: Union[Unset, list[str]] = UNSET
|
|
48
58
|
project_role: Union[None, Unset, str] = UNSET
|
|
@@ -64,10 +74,20 @@ class Rule:
|
|
|
64
74
|
|
|
65
75
|
customer_uuid = self.customer_uuid
|
|
66
76
|
|
|
67
|
-
|
|
77
|
+
project_role_display_name = self.project_role_display_name
|
|
68
78
|
|
|
69
79
|
project_role_description = self.project_role_description
|
|
70
80
|
|
|
81
|
+
plan_name = self.plan_name
|
|
82
|
+
|
|
83
|
+
offering_name = self.offering_name
|
|
84
|
+
|
|
85
|
+
offering_uuid = str(self.offering_uuid)
|
|
86
|
+
|
|
87
|
+
category_title = self.category_title
|
|
88
|
+
|
|
89
|
+
category_url = self.category_url
|
|
90
|
+
|
|
71
91
|
user_affiliations: Union[Unset, list[str]] = UNSET
|
|
72
92
|
if not isinstance(self.user_affiliations, Unset):
|
|
73
93
|
user_affiliations = self.user_affiliations
|
|
@@ -106,8 +126,13 @@ class Rule:
|
|
|
106
126
|
"customer": customer,
|
|
107
127
|
"customer_name": customer_name,
|
|
108
128
|
"customer_uuid": customer_uuid,
|
|
109
|
-
"
|
|
129
|
+
"project_role_display_name": project_role_display_name,
|
|
110
130
|
"project_role_description": project_role_description,
|
|
131
|
+
"plan_name": plan_name,
|
|
132
|
+
"offering_name": offering_name,
|
|
133
|
+
"offering_uuid": offering_uuid,
|
|
134
|
+
"category_title": category_title,
|
|
135
|
+
"category_url": category_url,
|
|
111
136
|
}
|
|
112
137
|
)
|
|
113
138
|
if user_affiliations is not UNSET:
|
|
@@ -143,10 +168,20 @@ class Rule:
|
|
|
143
168
|
|
|
144
169
|
customer_uuid = d.pop("customer_uuid")
|
|
145
170
|
|
|
146
|
-
|
|
171
|
+
project_role_display_name = d.pop("project_role_display_name")
|
|
147
172
|
|
|
148
173
|
project_role_description = d.pop("project_role_description")
|
|
149
174
|
|
|
175
|
+
plan_name = d.pop("plan_name")
|
|
176
|
+
|
|
177
|
+
offering_name = d.pop("offering_name")
|
|
178
|
+
|
|
179
|
+
offering_uuid = UUID(d.pop("offering_uuid"))
|
|
180
|
+
|
|
181
|
+
category_title = d.pop("category_title")
|
|
182
|
+
|
|
183
|
+
category_url = d.pop("category_url")
|
|
184
|
+
|
|
150
185
|
user_affiliations = cast(list[str], d.pop("user_affiliations", UNSET))
|
|
151
186
|
|
|
152
187
|
user_email_patterns = cast(list[str], d.pop("user_email_patterns", UNSET))
|
|
@@ -190,8 +225,13 @@ class Rule:
|
|
|
190
225
|
customer=customer,
|
|
191
226
|
customer_name=customer_name,
|
|
192
227
|
customer_uuid=customer_uuid,
|
|
193
|
-
|
|
228
|
+
project_role_display_name=project_role_display_name,
|
|
194
229
|
project_role_description=project_role_description,
|
|
230
|
+
plan_name=plan_name,
|
|
231
|
+
offering_name=offering_name,
|
|
232
|
+
offering_uuid=offering_uuid,
|
|
233
|
+
category_title=category_title,
|
|
234
|
+
category_url=category_url,
|
|
195
235
|
user_affiliations=user_affiliations,
|
|
196
236
|
user_email_patterns=user_email_patterns,
|
|
197
237
|
project_role=project_role,
|
|
@@ -37,12 +37,12 @@ waldur_api_client/api/auth_valimo/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12
|
|
|
37
37
|
waldur_api_client/api/auth_valimo/auth_valimo_create.py,sha256=R7hammvgfZQC0fUg7ZCKzrXlS-eWhAhNRL_giojVpwE,3405
|
|
38
38
|
waldur_api_client/api/auth_valimo/auth_valimo_result.py,sha256=pSIAX_dsIy5-5a7knjQ4lRzUgM6Auvzs6pI1j-WSCjU,5597
|
|
39
39
|
waldur_api_client/api/autoprovisioning_rules/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
40
|
-
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_create.py,sha256=
|
|
41
|
-
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_destroy.py,sha256=
|
|
42
|
-
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_list.py,sha256=
|
|
43
|
-
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_partial_update.py,sha256=
|
|
44
|
-
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_retrieve.py,sha256=
|
|
45
|
-
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_update.py,sha256=
|
|
40
|
+
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_create.py,sha256=6ch12YBJmQvnrjUH7oKvKbsPzezv2V4qJReOfhEaE_0,3394
|
|
41
|
+
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_destroy.py,sha256=TVWm9KK4dr88kOi_c77GEIJzE7KTaNO2IeaFRhibAMw,2118
|
|
42
|
+
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_list.py,sha256=4H0GhzDOjHiCia-0teaFrMsRqpK_ugpJBO-iz1NGjD8,4259
|
|
43
|
+
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_partial_update.py,sha256=3vpRt6eLNmqQdY_oH61a7-N9dos0hR_tdf8mEjIpl90,3747
|
|
44
|
+
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_retrieve.py,sha256=O4yyHjVM1qCxnNptJ-olFwEjdjJKBcGUM6YMuHAEucI,3151
|
|
45
|
+
waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_update.py,sha256=Xby1CRa22iFKnKW91uaZ2aHN1GG4GT-2T55EJZx34Y4,3667
|
|
46
46
|
waldur_api_client/api/aws_images/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
47
47
|
waldur_api_client/api/aws_images/aws_images_list.py,sha256=x57lxd6fmMobUfkKM2UPISBHqKyuX1cfW5OvDi1dLNw,6081
|
|
48
48
|
waldur_api_client/api/aws_images/aws_images_retrieve.py,sha256=kbwMTZxys_TNZAgeIsWNtIYQe8RZs63NzOafEB1I_FE,3068
|
|
@@ -1735,8 +1735,8 @@ waldur_api_client/models/google_auth_list_field_item.py,sha256=-W0Di6d6ddjiXDAnh
|
|
|
1735
1735
|
waldur_api_client/models/google_auth_retrieve_field_item.py,sha256=5hAZpjGGs7SiyL6XDeaH5blpRffJ5cWNDN5e0r5i9D4,776
|
|
1736
1736
|
waldur_api_client/models/google_calendar.py,sha256=Eu1yPilxvb5q0OZuhGa5cIxh-dC3s8IWdpjaLkkjDrY,2563
|
|
1737
1737
|
waldur_api_client/models/google_credentials.py,sha256=YhA0kBb-IzD0yIoJuLAkl3hblXYfOrvXmXLtwEWKq2Q,9267
|
|
1738
|
-
waldur_api_client/models/group_invitation.py,sha256=
|
|
1739
|
-
waldur_api_client/models/group_invitation_request.py,sha256
|
|
1738
|
+
waldur_api_client/models/group_invitation.py,sha256=a7o3yJTjQhVAvBECm_7vfmCDgvtn6-3hZuo6MBwBttQ,7235
|
|
1739
|
+
waldur_api_client/models/group_invitation_request.py,sha256=-PpwVLDzkhKMoZT0xpGa3OC7VZbq65hNTTo2ZZIVy1g,4290
|
|
1740
1740
|
waldur_api_client/models/guest_os_enum.py,sha256=Xq1NMZXuuon1ZesMWJuSsnRW1VqHl9zeum-LFXfI5Bs,4702
|
|
1741
1741
|
waldur_api_client/models/guest_power_state_enum.py,sha256=xY6nEbX2p-J0q3sQ6PWXNa8THVnkAmgZ9pfwS_dMnaE,300
|
|
1742
1742
|
waldur_api_client/models/hooks_web_list_content_type.py,sha256=pUYOptxC4dcPKZcyhPX3oFPMLgQxFeC8MF4ktQNTzBc,161
|
|
@@ -2036,7 +2036,7 @@ waldur_api_client/models/open_stack_data_volume_request.py,sha256=v2A72eKdph1v3j
|
|
|
2036
2036
|
waldur_api_client/models/open_stack_fixed_ip.py,sha256=9fy0LBZqgzA56I-7bf7kLo4IH2gLYuICzzIqQA4sFBg,1900
|
|
2037
2037
|
waldur_api_client/models/open_stack_fixed_ip_request.py,sha256=Et7-euDOjyoAAsFaNxO1baG_o-3rLFM1jUds54DpD-c,1759
|
|
2038
2038
|
waldur_api_client/models/open_stack_flavor.py,sha256=udiLJ6-6ZNIbuxKEQBrPMw0CsjmMOjWHLe9hjnabfpc,3850
|
|
2039
|
-
waldur_api_client/models/open_stack_floating_ip.py,sha256=
|
|
2039
|
+
waldur_api_client/models/open_stack_floating_ip.py,sha256=2fnMK33fyfIYNZ8x79MpxRpmDtL-46o58YJPq18IDx0,28979
|
|
2040
2040
|
waldur_api_client/models/open_stack_floating_ip_attach_request.py,sha256=c1f8RnVbGAwA_07Y_PTPeuAerggjjoYQ1T7XQrESPwI,1554
|
|
2041
2041
|
waldur_api_client/models/open_stack_floating_ip_description_update_request.py,sha256=S46P3VMqw7GONywZfkvft_InP9otr-ttkiihEmqjE0k,1805
|
|
2042
2042
|
waldur_api_client/models/open_stack_floating_ip_marketplace_offering_plugin_options_type_0.py,sha256=UMavU5VQTxvZILrClO2cBHNLXAGQ8qIiZMPvtVGFz-c,1449
|
|
@@ -2117,9 +2117,9 @@ waldur_api_client/models/openstack_flavors_list_field_item.py,sha256=T8CVGRyDYZT
|
|
|
2117
2117
|
waldur_api_client/models/openstack_flavors_list_o_item.py,sha256=Y5O-eKYKN4Y7yakAoqG8NUKpIT2ctor6AQDWnSYcXvs,250
|
|
2118
2118
|
waldur_api_client/models/openstack_flavors_retrieve_field_item.py,sha256=qx4wyoCERELxmwczfpMVccfOjpcab12jcHR5bRSD1DI,334
|
|
2119
2119
|
waldur_api_client/models/openstack_flavors_usage_stats_retrieve_field_item.py,sha256=IV6jTlELK_a5eaUNWizWnAE-f1wguSaAci0V5wvvxKA,344
|
|
2120
|
-
waldur_api_client/models/openstack_floating_ips_list_field_item.py,sha256=
|
|
2120
|
+
waldur_api_client/models/openstack_floating_ips_list_field_item.py,sha256=612_YdQBIaQ-XdqfaGWUM0ZbbNZ9TGG-B5DY5EBEpl8,1938
|
|
2121
2121
|
waldur_api_client/models/openstack_floating_ips_list_state_item.py,sha256=FewmOvDFX-JIgh3WNI7THjRk6aL-cGm7IU9ynMDIZtI,384
|
|
2122
|
-
waldur_api_client/models/openstack_floating_ips_retrieve_field_item.py,sha256=
|
|
2122
|
+
waldur_api_client/models/openstack_floating_ips_retrieve_field_item.py,sha256=2H6lTZ8h_OCc5ICv9e-T6AOfoaYJlCKWfeT7NbZ-gWo,1942
|
|
2123
2123
|
waldur_api_client/models/openstack_instances_list_field_item.py,sha256=KifrQd7L8Auj632tBltH62R-9KwhJYena7F7cuHKaTM,2886
|
|
2124
2124
|
waldur_api_client/models/openstack_instances_list_state_item.py,sha256=YxL9ub-b0NR26_q-zbo1mx28tNarD72-Tgm5dIWSu4c,382
|
|
2125
2125
|
waldur_api_client/models/openstack_instances_retrieve_field_item.py,sha256=mObg8oLY7C7JijChsXi8BRRoFfKiWhbtdS1-T2LbHgE,2890
|
|
@@ -2523,7 +2523,7 @@ waldur_api_client/models/role_type.py,sha256=RI_vmdETh3okrlAKF5JPnDfnWB5xerOv3Iw
|
|
|
2523
2523
|
waldur_api_client/models/roles_list_field_item.py,sha256=heqjCs2wIg6LwGmElNbOhZfhRLsd3Y-PUlkkEZQg4os,887
|
|
2524
2524
|
waldur_api_client/models/roles_retrieve_field_item.py,sha256=yKjP9o0uvtM4qODKPxPTp4u911F3NTMVjuueiE21120,891
|
|
2525
2525
|
waldur_api_client/models/round_reviewer.py,sha256=km3aVibwnGMSr8B3jtqvNKzmjuFKw86XWVoTdSp7K6o,2509
|
|
2526
|
-
waldur_api_client/models/rule.py,sha256=
|
|
2526
|
+
waldur_api_client/models/rule.py,sha256=weJmkoWEIfAhpK2MPUwrPOIg3n1PLZ4mppHfo_lB_cU,8350
|
|
2527
2527
|
waldur_api_client/models/rule_plan_attributes.py,sha256=tIgALGjlZWEIMFyJRcOQEpGa-U42YCwUiLrCslv1agA,1238
|
|
2528
2528
|
waldur_api_client/models/rule_plan_limits.py,sha256=m6koUzy9v1s7eCpMXitcxdkDke2ra38DY8dalAL8HDo,1218
|
|
2529
2529
|
waldur_api_client/models/rule_request.py,sha256=0qx_UkTI1KN70nFV5aJL-vDJXDo11g18QyIBdl3Gv7c,6719
|
|
@@ -2668,7 +2668,7 @@ waldur_api_client/models/webhook_event_enum.py,sha256=P8kLmYD2Z-EqFjfr489bholAay
|
|
|
2668
2668
|
waldur_api_client/models/widget_enum.py,sha256=oC-BDHXc9GnUD3IhxVHMbhkYTdfpWLBcaUXjY__RERs,201
|
|
2669
2669
|
waldur_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
2670
2670
|
waldur_api_client/types.py,sha256=AX4orxQZQJat3vZrgjJ-TYb2sNBL8kNo9yqYDT-n8y8,1391
|
|
2671
|
-
waldur_api_client-7.7.
|
|
2672
|
-
waldur_api_client-7.7.
|
|
2673
|
-
waldur_api_client-7.7.
|
|
2674
|
-
waldur_api_client-7.7.
|
|
2671
|
+
waldur_api_client-7.7.1.dist-info/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
|
|
2672
|
+
waldur_api_client-7.7.1.dist-info/METADATA,sha256=svUDcmjEG4-kdRgk6SPNp_p84J0n-gIF99nhRqhfiSo,5845
|
|
2673
|
+
waldur_api_client-7.7.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2674
|
+
waldur_api_client-7.7.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|