waldur-api-client 7.7.8__py3-none-any.whl → 7.7.9__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/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_count.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py +30 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_count.py +30 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py +30 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py +30 -0
- waldur_api_client/models/__init__.py +2 -0
- waldur_api_client/models/constance_settings.py +9 -0
- waldur_api_client/models/constance_settings_request.py +9 -0
- waldur_api_client/models/course_account.py +14 -15
- waldur_api_client/models/course_account_request.py +0 -9
- waldur_api_client/models/robot_account.py +12 -4
- waldur_api_client/models/robot_account_details.py +12 -4
- waldur_api_client/models/robot_account_states.py +13 -0
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/METADATA +1 -1
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/RECORD +22 -21
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/LICENSE +0 -0
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/WHEEL +0 -0
|
@@ -124,6 +124,7 @@ class ConstanceSettingsRequest:
|
|
|
124
124
|
smax_requests_offering (Union[Unset, str]):
|
|
125
125
|
smax_verify_ssl (Union[Unset, bool]):
|
|
126
126
|
enable_mock_service_account_backend (Union[Unset, bool]):
|
|
127
|
+
enable_mock_course_account_backend (Union[Unset, bool]):
|
|
127
128
|
proposal_review_duration (Union[Unset, int]):
|
|
128
129
|
user_table_columns (Union[Unset, str]):
|
|
129
130
|
auto_approve_user_tos (Union[Unset, bool]):
|
|
@@ -259,6 +260,7 @@ class ConstanceSettingsRequest:
|
|
|
259
260
|
smax_requests_offering: Union[Unset, str] = UNSET
|
|
260
261
|
smax_verify_ssl: Union[Unset, bool] = UNSET
|
|
261
262
|
enable_mock_service_account_backend: Union[Unset, bool] = UNSET
|
|
263
|
+
enable_mock_course_account_backend: Union[Unset, bool] = UNSET
|
|
262
264
|
proposal_review_duration: Union[Unset, int] = UNSET
|
|
263
265
|
user_table_columns: Union[Unset, str] = UNSET
|
|
264
266
|
auto_approve_user_tos: Union[Unset, bool] = UNSET
|
|
@@ -581,6 +583,8 @@ class ConstanceSettingsRequest:
|
|
|
581
583
|
|
|
582
584
|
enable_mock_service_account_backend = self.enable_mock_service_account_backend
|
|
583
585
|
|
|
586
|
+
enable_mock_course_account_backend = self.enable_mock_course_account_backend
|
|
587
|
+
|
|
584
588
|
proposal_review_duration = self.proposal_review_duration
|
|
585
589
|
|
|
586
590
|
user_table_columns = self.user_table_columns
|
|
@@ -867,6 +871,8 @@ class ConstanceSettingsRequest:
|
|
|
867
871
|
field_dict["SMAX_VERIFY_SSL"] = smax_verify_ssl
|
|
868
872
|
if enable_mock_service_account_backend is not UNSET:
|
|
869
873
|
field_dict["ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND"] = enable_mock_service_account_backend
|
|
874
|
+
if enable_mock_course_account_backend is not UNSET:
|
|
875
|
+
field_dict["ENABLE_MOCK_COURSE_ACCOUNT_BACKEND"] = enable_mock_course_account_backend
|
|
870
876
|
if proposal_review_duration is not UNSET:
|
|
871
877
|
field_dict["PROPOSAL_REVIEW_DURATION"] = proposal_review_duration
|
|
872
878
|
if user_table_columns is not UNSET:
|
|
@@ -1310,6 +1316,8 @@ class ConstanceSettingsRequest:
|
|
|
1310
1316
|
|
|
1311
1317
|
enable_mock_service_account_backend = d.pop("ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND", UNSET)
|
|
1312
1318
|
|
|
1319
|
+
enable_mock_course_account_backend = d.pop("ENABLE_MOCK_COURSE_ACCOUNT_BACKEND", UNSET)
|
|
1320
|
+
|
|
1313
1321
|
proposal_review_duration = d.pop("PROPOSAL_REVIEW_DURATION", UNSET)
|
|
1314
1322
|
|
|
1315
1323
|
user_table_columns = d.pop("USER_TABLE_COLUMNS", UNSET)
|
|
@@ -1483,6 +1491,7 @@ class ConstanceSettingsRequest:
|
|
|
1483
1491
|
smax_requests_offering=smax_requests_offering,
|
|
1484
1492
|
smax_verify_ssl=smax_verify_ssl,
|
|
1485
1493
|
enable_mock_service_account_backend=enable_mock_service_account_backend,
|
|
1494
|
+
enable_mock_course_account_backend=enable_mock_course_account_backend,
|
|
1486
1495
|
proposal_review_duration=proposal_review_duration,
|
|
1487
1496
|
user_table_columns=user_table_columns,
|
|
1488
1497
|
auto_approve_user_tos=auto_approve_user_tos,
|
|
@@ -25,14 +25,14 @@ class CourseAccount:
|
|
|
25
25
|
project_uuid (UUID):
|
|
26
26
|
project_name (str):
|
|
27
27
|
user_uuid (UUID):
|
|
28
|
-
|
|
28
|
+
username (str):
|
|
29
29
|
customer_uuid (UUID):
|
|
30
30
|
customer_name (str):
|
|
31
31
|
state (ServiceAccountState):
|
|
32
32
|
error_message (str):
|
|
33
|
+
error_traceback (str):
|
|
33
34
|
email (Union[Unset, str]):
|
|
34
35
|
description (Union[Unset, str]):
|
|
35
|
-
error_traceback (Union[Unset, str]):
|
|
36
36
|
"""
|
|
37
37
|
|
|
38
38
|
url: str
|
|
@@ -43,14 +43,14 @@ class CourseAccount:
|
|
|
43
43
|
project_uuid: UUID
|
|
44
44
|
project_name: str
|
|
45
45
|
user_uuid: UUID
|
|
46
|
-
|
|
46
|
+
username: str
|
|
47
47
|
customer_uuid: UUID
|
|
48
48
|
customer_name: str
|
|
49
49
|
state: ServiceAccountState
|
|
50
50
|
error_message: str
|
|
51
|
+
error_traceback: str
|
|
51
52
|
email: Union[Unset, str] = UNSET
|
|
52
53
|
description: Union[Unset, str] = UNSET
|
|
53
|
-
error_traceback: Union[Unset, str] = UNSET
|
|
54
54
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
55
55
|
|
|
56
56
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -70,7 +70,7 @@ class CourseAccount:
|
|
|
70
70
|
|
|
71
71
|
user_uuid = str(self.user_uuid)
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
username = self.username
|
|
74
74
|
|
|
75
75
|
customer_uuid = str(self.customer_uuid)
|
|
76
76
|
|
|
@@ -80,12 +80,12 @@ class CourseAccount:
|
|
|
80
80
|
|
|
81
81
|
error_message = self.error_message
|
|
82
82
|
|
|
83
|
+
error_traceback = self.error_traceback
|
|
84
|
+
|
|
83
85
|
email = self.email
|
|
84
86
|
|
|
85
87
|
description = self.description
|
|
86
88
|
|
|
87
|
-
error_traceback = self.error_traceback
|
|
88
|
-
|
|
89
89
|
field_dict: dict[str, Any] = {}
|
|
90
90
|
field_dict.update(self.additional_properties)
|
|
91
91
|
field_dict.update(
|
|
@@ -98,19 +98,18 @@ class CourseAccount:
|
|
|
98
98
|
"project_uuid": project_uuid,
|
|
99
99
|
"project_name": project_name,
|
|
100
100
|
"user_uuid": user_uuid,
|
|
101
|
-
"
|
|
101
|
+
"username": username,
|
|
102
102
|
"customer_uuid": customer_uuid,
|
|
103
103
|
"customer_name": customer_name,
|
|
104
104
|
"state": state,
|
|
105
105
|
"error_message": error_message,
|
|
106
|
+
"error_traceback": error_traceback,
|
|
106
107
|
}
|
|
107
108
|
)
|
|
108
109
|
if email is not UNSET:
|
|
109
110
|
field_dict["email"] = email
|
|
110
111
|
if description is not UNSET:
|
|
111
112
|
field_dict["description"] = description
|
|
112
|
-
if error_traceback is not UNSET:
|
|
113
|
-
field_dict["error_traceback"] = error_traceback
|
|
114
113
|
|
|
115
114
|
return field_dict
|
|
116
115
|
|
|
@@ -133,7 +132,7 @@ class CourseAccount:
|
|
|
133
132
|
|
|
134
133
|
user_uuid = UUID(d.pop("user_uuid"))
|
|
135
134
|
|
|
136
|
-
|
|
135
|
+
username = d.pop("username")
|
|
137
136
|
|
|
138
137
|
customer_uuid = UUID(d.pop("customer_uuid"))
|
|
139
138
|
|
|
@@ -143,12 +142,12 @@ class CourseAccount:
|
|
|
143
142
|
|
|
144
143
|
error_message = d.pop("error_message")
|
|
145
144
|
|
|
145
|
+
error_traceback = d.pop("error_traceback")
|
|
146
|
+
|
|
146
147
|
email = d.pop("email", UNSET)
|
|
147
148
|
|
|
148
149
|
description = d.pop("description", UNSET)
|
|
149
150
|
|
|
150
|
-
error_traceback = d.pop("error_traceback", UNSET)
|
|
151
|
-
|
|
152
151
|
course_account = cls(
|
|
153
152
|
url=url,
|
|
154
153
|
uuid=uuid,
|
|
@@ -158,14 +157,14 @@ class CourseAccount:
|
|
|
158
157
|
project_uuid=project_uuid,
|
|
159
158
|
project_name=project_name,
|
|
160
159
|
user_uuid=user_uuid,
|
|
161
|
-
|
|
160
|
+
username=username,
|
|
162
161
|
customer_uuid=customer_uuid,
|
|
163
162
|
customer_name=customer_name,
|
|
164
163
|
state=state,
|
|
165
164
|
error_message=error_message,
|
|
165
|
+
error_traceback=error_traceback,
|
|
166
166
|
email=email,
|
|
167
167
|
description=description,
|
|
168
|
-
error_traceback=error_traceback,
|
|
169
168
|
)
|
|
170
169
|
|
|
171
170
|
course_account.additional_properties = d
|
|
@@ -17,13 +17,11 @@ class CourseAccountRequest:
|
|
|
17
17
|
project (UUID):
|
|
18
18
|
email (Union[Unset, str]):
|
|
19
19
|
description (Union[Unset, str]):
|
|
20
|
-
error_traceback (Union[Unset, str]):
|
|
21
20
|
"""
|
|
22
21
|
|
|
23
22
|
project: UUID
|
|
24
23
|
email: Union[Unset, str] = UNSET
|
|
25
24
|
description: Union[Unset, str] = UNSET
|
|
26
|
-
error_traceback: Union[Unset, str] = UNSET
|
|
27
25
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
26
|
|
|
29
27
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -33,8 +31,6 @@ class CourseAccountRequest:
|
|
|
33
31
|
|
|
34
32
|
description = self.description
|
|
35
33
|
|
|
36
|
-
error_traceback = self.error_traceback
|
|
37
|
-
|
|
38
34
|
field_dict: dict[str, Any] = {}
|
|
39
35
|
field_dict.update(self.additional_properties)
|
|
40
36
|
field_dict.update(
|
|
@@ -46,8 +42,6 @@ class CourseAccountRequest:
|
|
|
46
42
|
field_dict["email"] = email
|
|
47
43
|
if description is not UNSET:
|
|
48
44
|
field_dict["description"] = description
|
|
49
|
-
if error_traceback is not UNSET:
|
|
50
|
-
field_dict["error_traceback"] = error_traceback
|
|
51
45
|
|
|
52
46
|
return field_dict
|
|
53
47
|
|
|
@@ -60,13 +54,10 @@ class CourseAccountRequest:
|
|
|
60
54
|
|
|
61
55
|
description = d.pop("description", UNSET)
|
|
62
56
|
|
|
63
|
-
error_traceback = d.pop("error_traceback", UNSET)
|
|
64
|
-
|
|
65
57
|
course_account_request = cls(
|
|
66
58
|
project=project,
|
|
67
59
|
email=email,
|
|
68
60
|
description=description,
|
|
69
|
-
error_traceback=error_traceback,
|
|
70
61
|
)
|
|
71
62
|
|
|
72
63
|
course_account_request.additional_properties = d
|
|
@@ -7,6 +7,7 @@ from attrs import define as _attrs_define
|
|
|
7
7
|
from attrs import field as _attrs_field
|
|
8
8
|
from dateutil.parser import isoparse
|
|
9
9
|
|
|
10
|
+
from ..models.robot_account_states import RobotAccountStates
|
|
10
11
|
from ..types import UNSET, Unset
|
|
11
12
|
|
|
12
13
|
if TYPE_CHECKING:
|
|
@@ -32,7 +33,7 @@ class RobotAccount:
|
|
|
32
33
|
description (Union[Unset, str]):
|
|
33
34
|
error_message (Union[Unset, str]):
|
|
34
35
|
error_traceback (Union[Unset, str]):
|
|
35
|
-
state (Union[Unset,
|
|
36
|
+
state (Union[Unset, RobotAccountStates]):
|
|
36
37
|
users (Union[Unset, list[str]]): Users who have access to this robot account.
|
|
37
38
|
keys (Union[Unset, Any]):
|
|
38
39
|
responsible_user (Union[None, Unset, str]):
|
|
@@ -50,7 +51,7 @@ class RobotAccount:
|
|
|
50
51
|
description: Union[Unset, str] = UNSET
|
|
51
52
|
error_message: Union[Unset, str] = UNSET
|
|
52
53
|
error_traceback: Union[Unset, str] = UNSET
|
|
53
|
-
state: Union[Unset,
|
|
54
|
+
state: Union[Unset, RobotAccountStates] = UNSET
|
|
54
55
|
users: Union[Unset, list[str]] = UNSET
|
|
55
56
|
keys: Union[Unset, Any] = UNSET
|
|
56
57
|
responsible_user: Union[None, Unset, str] = UNSET
|
|
@@ -84,7 +85,9 @@ class RobotAccount:
|
|
|
84
85
|
|
|
85
86
|
error_traceback = self.error_traceback
|
|
86
87
|
|
|
87
|
-
state =
|
|
88
|
+
state: Union[Unset, int] = UNSET
|
|
89
|
+
if not isinstance(self.state, Unset):
|
|
90
|
+
state = self.state.value
|
|
88
91
|
|
|
89
92
|
users: Union[Unset, list[str]] = UNSET
|
|
90
93
|
if not isinstance(self.users, Unset):
|
|
@@ -165,7 +168,12 @@ class RobotAccount:
|
|
|
165
168
|
|
|
166
169
|
error_traceback = d.pop("error_traceback", UNSET)
|
|
167
170
|
|
|
168
|
-
|
|
171
|
+
_state = d.pop("state", UNSET)
|
|
172
|
+
state: Union[Unset, RobotAccountStates]
|
|
173
|
+
if isinstance(_state, Unset):
|
|
174
|
+
state = UNSET
|
|
175
|
+
else:
|
|
176
|
+
state = RobotAccountStates(_state)
|
|
169
177
|
|
|
170
178
|
users = cast(list[str], d.pop("users", UNSET))
|
|
171
179
|
|
|
@@ -7,6 +7,7 @@ from attrs import define as _attrs_define
|
|
|
7
7
|
from attrs import field as _attrs_field
|
|
8
8
|
from dateutil.parser import isoparse
|
|
9
9
|
|
|
10
|
+
from ..models.robot_account_states import RobotAccountStates
|
|
10
11
|
from ..types import UNSET, Unset
|
|
11
12
|
|
|
12
13
|
if TYPE_CHECKING:
|
|
@@ -31,7 +32,7 @@ class RobotAccountDetails:
|
|
|
31
32
|
description (Union[Unset, str]):
|
|
32
33
|
error_message (Union[Unset, str]):
|
|
33
34
|
error_traceback (Union[Unset, str]):
|
|
34
|
-
state (Union[Unset,
|
|
35
|
+
state (Union[Unset, RobotAccountStates]):
|
|
35
36
|
resource (Union[Unset, str]):
|
|
36
37
|
type_ (Union[Unset, str]): Type of the robot account.
|
|
37
38
|
users (Union[Unset, list['BasicUser']]):
|
|
@@ -58,7 +59,7 @@ class RobotAccountDetails:
|
|
|
58
59
|
description: Union[Unset, str] = UNSET
|
|
59
60
|
error_message: Union[Unset, str] = UNSET
|
|
60
61
|
error_traceback: Union[Unset, str] = UNSET
|
|
61
|
-
state: Union[Unset,
|
|
62
|
+
state: Union[Unset, RobotAccountStates] = UNSET
|
|
62
63
|
resource: Union[Unset, str] = UNSET
|
|
63
64
|
type_: Union[Unset, str] = UNSET
|
|
64
65
|
users: Union[Unset, list["BasicUser"]] = UNSET
|
|
@@ -102,7 +103,9 @@ class RobotAccountDetails:
|
|
|
102
103
|
|
|
103
104
|
error_traceback = self.error_traceback
|
|
104
105
|
|
|
105
|
-
state =
|
|
106
|
+
state: Union[Unset, int] = UNSET
|
|
107
|
+
if not isinstance(self.state, Unset):
|
|
108
|
+
state = self.state.value
|
|
106
109
|
|
|
107
110
|
resource = self.resource
|
|
108
111
|
|
|
@@ -262,7 +265,12 @@ class RobotAccountDetails:
|
|
|
262
265
|
|
|
263
266
|
error_traceback = d.pop("error_traceback", UNSET)
|
|
264
267
|
|
|
265
|
-
|
|
268
|
+
_state = d.pop("state", UNSET)
|
|
269
|
+
state: Union[Unset, RobotAccountStates]
|
|
270
|
+
if isinstance(_state, Unset):
|
|
271
|
+
state = UNSET
|
|
272
|
+
else:
|
|
273
|
+
state = RobotAccountStates(_state)
|
|
266
274
|
|
|
267
275
|
resource = d.pop("resource", UNSET)
|
|
268
276
|
|
|
@@ -758,12 +758,12 @@ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offeri
|
|
|
758
758
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_add_endpoint.py,sha256=T-LxgpG1kUwkVO26n8r8hiIhbjHBvUCrMHjlVeNnl84,3885
|
|
759
759
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_add_user.py,sha256=QGHDiFIR-UIJrQoBGb98ZQc1X5JIkLELDzkTBf6xe2I,3916
|
|
760
760
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_archive.py,sha256=tl3oFJocpcFcOD9Esm5qD9aQrT5-t6rMT2qp9KvKp70,3136
|
|
761
|
-
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py,sha256=
|
|
762
|
-
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py,sha256=
|
|
763
|
-
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py,sha256=
|
|
761
|
+
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py,sha256=eF-HL3HKUnwBWntzPN2iwKYdSvuoM3Um5C1CDsdXMKY,26726
|
|
762
|
+
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py,sha256=4mNsrbQXDtki7jjkiDGAv_msoT_foJOmOhrK08Zm9J8,27203
|
|
763
|
+
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py,sha256=OzkEkNPIRYzo45nDvHazzUw3yvD-4dq1TsmbwCn9tXk,25332
|
|
764
764
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_create.py,sha256=chGUKBwAsXbwLbxlwqRGrL9IzfJIlxVw1pnjsW-PxHU,3526
|
|
765
765
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_create_offering_component.py,sha256=OEqSp40oDaBxt2EuckJebghudXg49MEk7PL8pt1bKfA,2552
|
|
766
|
-
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py,sha256=
|
|
766
|
+
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py,sha256=yTQPRRQrWA5ix8KE7FyJ5BMRkfI1tRr0zlhgCYVDbRQ,25743
|
|
767
767
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_endpoint.py,sha256=cjS3vZK4XQmRfIMg2hugNmrEZeTwclF69V5wyRsCCQ8,2569
|
|
768
768
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_image.py,sha256=u_ecdb4F-vDGslOgkmh35CoGVCvYnRt9r1TrHNHHbKY,2121
|
|
769
769
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_organization_groups.py,sha256=9PXOmSoGUSvrrrPF4QFg1OQFzJ4F81G9LHok3J6i7DQ,2171
|
|
@@ -772,11 +772,11 @@ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offeri
|
|
|
772
772
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_destroy.py,sha256=CwXbsguC3RujAOGw1U-UuJ17FeNf1r3nawlmFobQIvY,2064
|
|
773
773
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_draft.py,sha256=a61JNhL775UC7guqFDC5eUuKX3RJ_EWq-GCYNoOSLdI,3134
|
|
774
774
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_glauth_users_config_retrieve.py,sha256=S9JVEZgiTQmwZdz4eG5U8HphWl1pD1-vVqPDXgYexI8,3958
|
|
775
|
-
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_count.py,sha256=
|
|
776
|
-
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py,sha256=
|
|
775
|
+
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_count.py,sha256=1w_ylmoxb7xYrP-b_XehDUbXpCac6pATUlr2fOtZWPI,25482
|
|
776
|
+
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py,sha256=7cf_TYcXotYxP-Od1VzIfko5tTPoa6CfP7_5jTAgbOA,25164
|
|
777
777
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_import_resource.py,sha256=SZiwVkqN7wvYixGNWoJPU2AaznoA0MCwQdDuPKfy2R0,3731
|
|
778
778
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_importable_resources_list.py,sha256=2r03XuurRtNwSxFni-1r_LhncEi6oO4AnaUfqssjrXg,4793
|
|
779
|
-
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py,sha256=
|
|
779
|
+
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py,sha256=AMukK6CgaboDzt6hCqCg1qo2nbvA4LRIIGW3I0saZfA,26646
|
|
780
780
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_projects_list.py,sha256=lTP_6XElO8fXt-fh_3V0EKm692rdCAPRgGGpDU400JQ,4485
|
|
781
781
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_service_accounts_retrieve.py,sha256=XokNPa7JTpD447EGkv-mjHaZwvYjR3KuPNhS4wmQNfs,5083
|
|
782
782
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_users_list.py,sha256=imFKcRZwLRRdYsMExtzvNSuNafrv5Zjc8ipanfyhhps,4437
|
|
@@ -836,8 +836,8 @@ waldur_api_client/api/marketplace_public_api/__init__.py,sha256=5vd9uJWAjRqa9xzx
|
|
|
836
836
|
waldur_api_client/api/marketplace_public_api/marketplace_public_api_check_signature.py,sha256=Ws_DSVcNqPL7XGujPA_AXe_FGARgVDUGCuj5amw0xT4,3782
|
|
837
837
|
waldur_api_client/api/marketplace_public_api/marketplace_public_api_set_usage.py,sha256=D1PNS91IVNjt9zf0FuPFbW1YSA1aN0436GjvVnkgTsk,3776
|
|
838
838
|
waldur_api_client/api/marketplace_public_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
839
|
-
waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_count.py,sha256=
|
|
840
|
-
waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py,sha256=
|
|
839
|
+
waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_count.py,sha256=tyUTngbipmjm4Qfu9_4SDTJwe61WV1lS5i-j-l1SxaY,25286
|
|
840
|
+
waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py,sha256=GRTqBqF1Zxv5xlRUdHs2shLCC4AyeDoXsdEOXLyOmGQ,26552
|
|
841
841
|
waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_plans_list.py,sha256=qx5pBWuhhzYfA8OdXSmhOkdGPJZPAADbCfBG-TiBFOU,3444
|
|
842
842
|
waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_plans_retrieve.py,sha256=Jah73hqtO8-vkmDAL8JF2qzkM3GcobQDYGU5kguLQA4,3478
|
|
843
843
|
waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_retrieve.py,sha256=S41iIW-qoqt96c6HaIkyLP2rgsa5F6NGfFYEBWpv3fo,4644
|
|
@@ -934,7 +934,7 @@ waldur_api_client/api/marketplace_service_providers/marketplace_service_provider
|
|
|
934
934
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_keys_list.py,sha256=5uORk-BN-ERJTu25KhmlHqzjbxNIYnpuwT764xxCDVc,13475
|
|
935
935
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_list.py,sha256=KDkoGNN1EQ5FT6XRHRv2aVjcUeNwbDnDoKDdKZFuO-g,8756
|
|
936
936
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_list_users_list.py,sha256=hjNJ0EJtg_GJnkVoKOD5PShefGhchPfhd4EUuCoL5e4,11315
|
|
937
|
-
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py,sha256=
|
|
937
|
+
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py,sha256=VjHF0uffRtlAXXUnbUl5S9nixoOJ7NBCVAY1BzZR_KI,27246
|
|
938
938
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_partial_update.py,sha256=_QQ6zDBOO3ZDGqdZ5t0N4ebQhLI_Ds2jvo1ymGuBbXg,3902
|
|
939
939
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_project_permissions_list.py,sha256=xKXDvhnIJjSr5C0C1MwvUE0sX-Vq-p8HdFbPBr6wmLE,16214
|
|
940
940
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_project_service_accounts_list.py,sha256=VoGexNh_WikaYdfxauAniH0wOX6582g3ecENLgNdQ3k,9574
|
|
@@ -1787,7 +1787,7 @@ waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_update.py,sh
|
|
|
1787
1787
|
waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_web_console_retrieve.py,sha256=oZ2BaWmW_KX9J6iL90lKg2lNcX4ym-VdVp0v9zDZI0I,3342
|
|
1788
1788
|
waldur_api_client/client.py,sha256=GLq-qDZKHfSA_9duhz0MTPeaAkXUlvuHHWCRzsPcE5Y,11727
|
|
1789
1789
|
waldur_api_client/errors.py,sha256=C44oS7G-xUfc6i6fto367Oig5qm0S_pDZJUaK0eY9mU,500
|
|
1790
|
-
waldur_api_client/models/__init__.py,sha256=
|
|
1790
|
+
waldur_api_client/models/__init__.py,sha256=SNm-HI_Ot11LKsS7mLV055wpmoheZkqkM5rJgdVfJHQ,153957
|
|
1791
1791
|
waldur_api_client/models/access_subnet.py,sha256=unDj1xpRJWj9Ia51twedRU9HcuWf4MYVnTCz-WGLTJk,2145
|
|
1792
1792
|
waldur_api_client/models/access_subnet_request.py,sha256=_OM-mgOmhOnbwqR9425rgdN-KWUxvz2ZgK20rGTeTrA,2005
|
|
1793
1793
|
waldur_api_client/models/account_name_generation_policy_enum.py,sha256=6XEL8dm2iWT-1ZmVf0RNbI7pmszVe1s7_Z24yPgs_K8,170
|
|
@@ -2000,8 +2000,8 @@ waldur_api_client/models/components_usage_stats.py,sha256=QF-ABKySkw4tMRHain714s
|
|
|
2000
2000
|
waldur_api_client/models/configuration_retrieve_response_200.py,sha256=RBFCUtFJUII9J2MiVFyOQ_HLPh9RpbavflFn4Pjw28k,1311
|
|
2001
2001
|
waldur_api_client/models/confirm_email_request_request.py,sha256=KOujnAZpKVuDxd9qZgcsz01O1wbj8WYPts68B5bYPz0,1518
|
|
2002
2002
|
waldur_api_client/models/console_url.py,sha256=HYH5Ej9g2olUyvdnUrxDGR_LA042eoQmXlbzcJdP2JU,1422
|
|
2003
|
-
waldur_api_client/models/constance_settings.py,sha256=
|
|
2004
|
-
waldur_api_client/models/constance_settings_request.py,sha256=
|
|
2003
|
+
waldur_api_client/models/constance_settings.py,sha256=P1P7w0pf58vimWbAdoT9Q2Y0sO2Z1nE26Dmcaqtjs9w,62873
|
|
2004
|
+
waldur_api_client/models/constance_settings_request.py,sha256=c7jVNW8VBuXm09zHj_CEGL1SPH8A88ydqGeRUTFoe0k,67858
|
|
2005
2005
|
waldur_api_client/models/container_format_enum.py,sha256=cfxrigIkmyJMKY3CFiExIppHyiZGnDoexb3zR_kh-ko,206
|
|
2006
2006
|
waldur_api_client/models/core_auth_token.py,sha256=wnHzBfZHx64nqQ5ky_94xS76WBzVVPgjEu3xl_MB8oo,1460
|
|
2007
2007
|
waldur_api_client/models/core_states.py,sha256=bLdaX7p1JDwAQOZWIGXrXN1T79CSqIAqYJyvMK0EZW4,361
|
|
@@ -2013,10 +2013,10 @@ waldur_api_client/models/count_unique_users_connected_with_active_resources_of_s
|
|
|
2013
2013
|
waldur_api_client/models/count_users_of_service_providers.py,sha256=uQIZy8-O9PYkLE9B8lEZDPmH0wZSDZrrK3RFfGOJqXw,3214
|
|
2014
2014
|
waldur_api_client/models/country.py,sha256=ihuj8_tj6_KQ0pOdbsyLOmRV8yCJQLkda_xB5f7H32k,1577
|
|
2015
2015
|
waldur_api_client/models/country_enum.py,sha256=K7eQRDqNL9REcqVKYROj3-R4ZZaTrta67plvtTzQApg,662
|
|
2016
|
-
waldur_api_client/models/course_account.py,sha256=
|
|
2016
|
+
waldur_api_client/models/course_account.py,sha256=GlFpGPr9KMBSMZ2YT4MLVZyt3-C7D0LPz2uPtNrPGmg,4975
|
|
2017
2017
|
waldur_api_client/models/course_account_create_nested.py,sha256=eRVJbCSml_yLhv4Ut0Z32fwXb2DTwdQ7jOLjOp1hee0,1912
|
|
2018
2018
|
waldur_api_client/models/course_account_create_nested_request.py,sha256=bemJAaJdlGdTexhaiMQVk1ftGIP6kdkq3Sl2_T6t_jA,1950
|
|
2019
|
-
waldur_api_client/models/course_account_request.py,sha256=
|
|
2019
|
+
waldur_api_client/models/course_account_request.py,sha256=POuljlTq6HqXog662RECY47KbV3g-Sv37fu6v4vRcgM,2127
|
|
2020
2020
|
waldur_api_client/models/course_accounts_bulk_create.py,sha256=JS0iObgi_EHr2BeQYmy0p7ZJGTICJAc4_6jn-77nDIA,2504
|
|
2021
2021
|
waldur_api_client/models/course_accounts_bulk_create_request.py,sha256=TKkwRCJTRxMilKppX2FLrJK73WlJVaj_U1m6zYveBk4,2593
|
|
2022
2022
|
waldur_api_client/models/create_attachments_request.py,sha256=brtBJhBiwNtOsi-VGFRiMkZADk9RZwDHmI3pZ6eotqQ,1996
|
|
@@ -3065,10 +3065,11 @@ waldur_api_client/models/rmq_subscription.py,sha256=cw46hHEkF5_YDaQFvUvbJVWhvNQN
|
|
|
3065
3065
|
waldur_api_client/models/rmq_user_stats_item.py,sha256=J9x-YtmOpu4_aQ8q3te3usUzPzv9CdsRoqhKPgxzqlE,2263
|
|
3066
3066
|
waldur_api_client/models/rmq_v_host_stats_item.py,sha256=HGzrKq2ruNy-ITPHPaQO2hQTBr7VC21PmnJb1DgsOe8,2673
|
|
3067
3067
|
waldur_api_client/models/rmq_waldur_user.py,sha256=oEuaLeeJg8KESauGGBnIclVVvZr1xJxv-KmkeVcxi0U,1836
|
|
3068
|
-
waldur_api_client/models/robot_account.py,sha256=
|
|
3069
|
-
waldur_api_client/models/robot_account_details.py,sha256=
|
|
3068
|
+
waldur_api_client/models/robot_account.py,sha256=EznXtSQ127_x05k0M1vj8Oek2kcG0YcaXoGXMg2JIIc,6765
|
|
3069
|
+
waldur_api_client/models/robot_account_details.py,sha256=wFpaojfLb3kCpw34V0-rA1labqclTsGFRqFxp6olFLo,14647
|
|
3070
3070
|
waldur_api_client/models/robot_account_error_request.py,sha256=-16gPyWrS0iQsKZJwT67tPhfYUjrUGi1K06MYdAy390,1741
|
|
3071
3071
|
waldur_api_client/models/robot_account_request.py,sha256=JQ1GKmaHgPF-IgOj5Ik0OeVSm1pIuUrM1QleiORKcBo,3754
|
|
3072
|
+
waldur_api_client/models/robot_account_states.py,sha256=aocJicmkFjlebKV7AX6wEeig2FlBRtszIazJ_5e9MRk,220
|
|
3072
3073
|
waldur_api_client/models/role_description.py,sha256=6n1ghikFFxT9VcDnqwN986VmCLheU1kMd4CREEb25uQ,12519
|
|
3073
3074
|
waldur_api_client/models/role_description_request.py,sha256=cOhiEscEaXn8dO_MK3iEe_nvRLROwgN3FMxwRaxEnH8,12557
|
|
3074
3075
|
waldur_api_client/models/role_details.py,sha256=jS9S_UQdFP7VHVloigAiv_CNu8EaHvqgyM1OivTg3Ig,15225
|
|
@@ -3253,7 +3254,7 @@ waldur_api_client/models/webhook_event_enum.py,sha256=P8kLmYD2Z-EqFjfr489bholAay
|
|
|
3253
3254
|
waldur_api_client/models/widget_enum.py,sha256=oC-BDHXc9GnUD3IhxVHMbhkYTdfpWLBcaUXjY__RERs,201
|
|
3254
3255
|
waldur_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3255
3256
|
waldur_api_client/types.py,sha256=ZSn3mJeG6_KoPRQVkzh_-bMkaCht3nO3bkQg0tt1aN8,1381
|
|
3256
|
-
waldur_api_client-7.7.
|
|
3257
|
-
waldur_api_client-7.7.
|
|
3258
|
-
waldur_api_client-7.7.
|
|
3259
|
-
waldur_api_client-7.7.
|
|
3257
|
+
waldur_api_client-7.7.9.dist-info/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
|
|
3258
|
+
waldur_api_client-7.7.9.dist-info/METADATA,sha256=3dHb2FNvSe2erm3HLhI95lOxA6mRqz1uFm8e8kskd-0,5845
|
|
3259
|
+
waldur_api_client-7.7.9.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
3260
|
+
waldur_api_client-7.7.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|