waldur-api-client 0.2.0__py3-none-any.whl → 7.6.5__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.

Files changed (50) hide show
  1. waldur_api_client/api/autoprovisioning_rule_plans/__init__.py +1 -0
  2. waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_create.py +148 -0
  3. waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_destroy.py +89 -0
  4. waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_list.py +169 -0
  5. waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_partial_update.py +162 -0
  6. waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_retrieve.py +140 -0
  7. waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_update.py +162 -0
  8. waldur_api_client/api/autoprovisioning_rules/__init__.py +1 -0
  9. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_create.py +148 -0
  10. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_destroy.py +89 -0
  11. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_list.py +167 -0
  12. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_partial_update.py +162 -0
  13. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_retrieve.py +140 -0
  14. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_update.py +162 -0
  15. waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py +15 -0
  16. waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py +15 -0
  17. waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py +15 -0
  18. waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py +15 -0
  19. waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py +15 -0
  20. waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py +15 -0
  21. waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py +15 -0
  22. waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_users_list.py +15 -0
  23. waldur_api_client/api/users/users_list.py +15 -0
  24. waldur_api_client/models/__init__.py +24 -0
  25. waldur_api_client/models/constance_settings.py +9 -0
  26. waldur_api_client/models/constance_settings_request.py +9 -0
  27. waldur_api_client/models/identity_provider.py +11 -11
  28. waldur_api_client/models/identity_provider_request.py +11 -11
  29. waldur_api_client/models/merged_plugin_options.py +27 -0
  30. waldur_api_client/models/merged_plugin_options_request.py +27 -0
  31. waldur_api_client/models/patched_identity_provider_request.py +11 -11
  32. waldur_api_client/models/patched_rule_plans_request.py +108 -0
  33. waldur_api_client/models/patched_rule_plans_request_attributes.py +44 -0
  34. waldur_api_client/models/patched_rule_plans_request_limits.py +44 -0
  35. waldur_api_client/models/patched_rule_request.py +101 -0
  36. waldur_api_client/models/rancher_cluster.py +11 -0
  37. waldur_api_client/models/rancher_clusters_list_field_item.py +1 -0
  38. waldur_api_client/models/rancher_clusters_retrieve_field_item.py +1 -0
  39. waldur_api_client/models/rule.py +128 -0
  40. waldur_api_client/models/rule_plans.py +126 -0
  41. waldur_api_client/models/rule_plans_attributes.py +44 -0
  42. waldur_api_client/models/rule_plans_limits.py +44 -0
  43. waldur_api_client/models/rule_plans_request.py +109 -0
  44. waldur_api_client/models/rule_plans_request_attributes.py +44 -0
  45. waldur_api_client/models/rule_plans_request_limits.py +44 -0
  46. waldur_api_client/models/rule_request.py +103 -0
  47. {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/METADATA +1 -1
  48. {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/RECORD +50 -24
  49. {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/LICENSE +0 -0
  50. {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,44 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="RulePlansLimits")
8
+
9
+
10
+ @_attrs_define
11
+ class RulePlansLimits:
12
+ """ """
13
+
14
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
15
+
16
+ def to_dict(self) -> dict[str, Any]:
17
+ field_dict: dict[str, Any] = {}
18
+ field_dict.update(self.additional_properties)
19
+
20
+ return field_dict
21
+
22
+ @classmethod
23
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
24
+ d = dict(src_dict)
25
+ rule_plans_limits = cls()
26
+
27
+ rule_plans_limits.additional_properties = d
28
+ return rule_plans_limits
29
+
30
+ @property
31
+ def additional_keys(self) -> list[str]:
32
+ return list(self.additional_properties.keys())
33
+
34
+ def __getitem__(self, key: str) -> Any:
35
+ return self.additional_properties[key]
36
+
37
+ def __setitem__(self, key: str, value: Any) -> None:
38
+ self.additional_properties[key] = value
39
+
40
+ def __delitem__(self, key: str) -> None:
41
+ del self.additional_properties[key]
42
+
43
+ def __contains__(self, key: str) -> bool:
44
+ return key in self.additional_properties
@@ -0,0 +1,109 @@
1
+ from collections.abc import Mapping
2
+ from typing import TYPE_CHECKING, Any, TypeVar, Union
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ from ..types import UNSET, Unset
8
+
9
+ if TYPE_CHECKING:
10
+ from ..models.rule_plans_request_attributes import RulePlansRequestAttributes
11
+ from ..models.rule_plans_request_limits import RulePlansRequestLimits
12
+
13
+
14
+ T = TypeVar("T", bound="RulePlansRequest")
15
+
16
+
17
+ @_attrs_define
18
+ class RulePlansRequest:
19
+ """
20
+ Attributes:
21
+ rule (str):
22
+ plan (str):
23
+ attributes (Union[Unset, RulePlansRequestAttributes]):
24
+ limits (Union[Unset, RulePlansRequestLimits]):
25
+ """
26
+
27
+ rule: str
28
+ plan: str
29
+ attributes: Union[Unset, "RulePlansRequestAttributes"] = UNSET
30
+ limits: Union[Unset, "RulePlansRequestLimits"] = UNSET
31
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
32
+
33
+ def to_dict(self) -> dict[str, Any]:
34
+ rule = self.rule
35
+
36
+ plan = self.plan
37
+
38
+ attributes: Union[Unset, dict[str, Any]] = UNSET
39
+ if not isinstance(self.attributes, Unset):
40
+ attributes = self.attributes.to_dict()
41
+
42
+ limits: Union[Unset, dict[str, Any]] = UNSET
43
+ if not isinstance(self.limits, Unset):
44
+ limits = self.limits.to_dict()
45
+
46
+ field_dict: dict[str, Any] = {}
47
+ field_dict.update(self.additional_properties)
48
+ field_dict.update(
49
+ {
50
+ "rule": rule,
51
+ "plan": plan,
52
+ }
53
+ )
54
+ if attributes is not UNSET:
55
+ field_dict["attributes"] = attributes
56
+ if limits is not UNSET:
57
+ field_dict["limits"] = limits
58
+
59
+ return field_dict
60
+
61
+ @classmethod
62
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
63
+ from ..models.rule_plans_request_attributes import RulePlansRequestAttributes
64
+ from ..models.rule_plans_request_limits import RulePlansRequestLimits
65
+
66
+ d = dict(src_dict)
67
+ rule = d.pop("rule")
68
+
69
+ plan = d.pop("plan")
70
+
71
+ _attributes = d.pop("attributes", UNSET)
72
+ attributes: Union[Unset, RulePlansRequestAttributes]
73
+ if isinstance(_attributes, Unset):
74
+ attributes = UNSET
75
+ else:
76
+ attributes = RulePlansRequestAttributes.from_dict(_attributes)
77
+
78
+ _limits = d.pop("limits", UNSET)
79
+ limits: Union[Unset, RulePlansRequestLimits]
80
+ if isinstance(_limits, Unset):
81
+ limits = UNSET
82
+ else:
83
+ limits = RulePlansRequestLimits.from_dict(_limits)
84
+
85
+ rule_plans_request = cls(
86
+ rule=rule,
87
+ plan=plan,
88
+ attributes=attributes,
89
+ limits=limits,
90
+ )
91
+
92
+ rule_plans_request.additional_properties = d
93
+ return rule_plans_request
94
+
95
+ @property
96
+ def additional_keys(self) -> list[str]:
97
+ return list(self.additional_properties.keys())
98
+
99
+ def __getitem__(self, key: str) -> Any:
100
+ return self.additional_properties[key]
101
+
102
+ def __setitem__(self, key: str, value: Any) -> None:
103
+ self.additional_properties[key] = value
104
+
105
+ def __delitem__(self, key: str) -> None:
106
+ del self.additional_properties[key]
107
+
108
+ def __contains__(self, key: str) -> bool:
109
+ return key in self.additional_properties
@@ -0,0 +1,44 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="RulePlansRequestAttributes")
8
+
9
+
10
+ @_attrs_define
11
+ class RulePlansRequestAttributes:
12
+ """ """
13
+
14
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
15
+
16
+ def to_dict(self) -> dict[str, Any]:
17
+ field_dict: dict[str, Any] = {}
18
+ field_dict.update(self.additional_properties)
19
+
20
+ return field_dict
21
+
22
+ @classmethod
23
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
24
+ d = dict(src_dict)
25
+ rule_plans_request_attributes = cls()
26
+
27
+ rule_plans_request_attributes.additional_properties = d
28
+ return rule_plans_request_attributes
29
+
30
+ @property
31
+ def additional_keys(self) -> list[str]:
32
+ return list(self.additional_properties.keys())
33
+
34
+ def __getitem__(self, key: str) -> Any:
35
+ return self.additional_properties[key]
36
+
37
+ def __setitem__(self, key: str, value: Any) -> None:
38
+ self.additional_properties[key] = value
39
+
40
+ def __delitem__(self, key: str) -> None:
41
+ del self.additional_properties[key]
42
+
43
+ def __contains__(self, key: str) -> bool:
44
+ return key in self.additional_properties
@@ -0,0 +1,44 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ T = TypeVar("T", bound="RulePlansRequestLimits")
8
+
9
+
10
+ @_attrs_define
11
+ class RulePlansRequestLimits:
12
+ """ """
13
+
14
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
15
+
16
+ def to_dict(self) -> dict[str, Any]:
17
+ field_dict: dict[str, Any] = {}
18
+ field_dict.update(self.additional_properties)
19
+
20
+ return field_dict
21
+
22
+ @classmethod
23
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
24
+ d = dict(src_dict)
25
+ rule_plans_request_limits = cls()
26
+
27
+ rule_plans_request_limits.additional_properties = d
28
+ return rule_plans_request_limits
29
+
30
+ @property
31
+ def additional_keys(self) -> list[str]:
32
+ return list(self.additional_properties.keys())
33
+
34
+ def __getitem__(self, key: str) -> Any:
35
+ return self.additional_properties[key]
36
+
37
+ def __setitem__(self, key: str, value: Any) -> None:
38
+ self.additional_properties[key] = value
39
+
40
+ def __delitem__(self, key: str) -> None:
41
+ del self.additional_properties[key]
42
+
43
+ def __contains__(self, key: str) -> bool:
44
+ return key in self.additional_properties
@@ -0,0 +1,103 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar, Union, cast
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ from ..types import UNSET, Unset
8
+
9
+ T = TypeVar("T", bound="RuleRequest")
10
+
11
+
12
+ @_attrs_define
13
+ class RuleRequest:
14
+ """
15
+ Attributes:
16
+ customer (str):
17
+ user_affiliations (Union[Unset, list[str]]):
18
+ user_email_patterns (Union[Unset, list[str]]):
19
+ project_role (Union[None, Unset, str]):
20
+ """
21
+
22
+ customer: str
23
+ user_affiliations: Union[Unset, list[str]] = UNSET
24
+ user_email_patterns: Union[Unset, list[str]] = UNSET
25
+ project_role: Union[None, Unset, str] = UNSET
26
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
27
+
28
+ def to_dict(self) -> dict[str, Any]:
29
+ customer = self.customer
30
+
31
+ user_affiliations: Union[Unset, list[str]] = UNSET
32
+ if not isinstance(self.user_affiliations, Unset):
33
+ user_affiliations = self.user_affiliations
34
+
35
+ user_email_patterns: Union[Unset, list[str]] = UNSET
36
+ if not isinstance(self.user_email_patterns, Unset):
37
+ user_email_patterns = self.user_email_patterns
38
+
39
+ project_role: Union[None, Unset, str]
40
+ if isinstance(self.project_role, Unset):
41
+ project_role = UNSET
42
+ else:
43
+ project_role = self.project_role
44
+
45
+ field_dict: dict[str, Any] = {}
46
+ field_dict.update(self.additional_properties)
47
+ field_dict.update(
48
+ {
49
+ "customer": customer,
50
+ }
51
+ )
52
+ if user_affiliations is not UNSET:
53
+ field_dict["user_affiliations"] = user_affiliations
54
+ if user_email_patterns is not UNSET:
55
+ field_dict["user_email_patterns"] = user_email_patterns
56
+ if project_role is not UNSET:
57
+ field_dict["project_role"] = project_role
58
+
59
+ return field_dict
60
+
61
+ @classmethod
62
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
63
+ d = dict(src_dict)
64
+ customer = d.pop("customer")
65
+
66
+ user_affiliations = cast(list[str], d.pop("user_affiliations", UNSET))
67
+
68
+ user_email_patterns = cast(list[str], d.pop("user_email_patterns", UNSET))
69
+
70
+ def _parse_project_role(data: object) -> Union[None, Unset, str]:
71
+ if data is None:
72
+ return data
73
+ if isinstance(data, Unset):
74
+ return data
75
+ return cast(Union[None, Unset, str], data)
76
+
77
+ project_role = _parse_project_role(d.pop("project_role", UNSET))
78
+
79
+ rule_request = cls(
80
+ customer=customer,
81
+ user_affiliations=user_affiliations,
82
+ user_email_patterns=user_email_patterns,
83
+ project_role=project_role,
84
+ )
85
+
86
+ rule_request.additional_properties = d
87
+ return rule_request
88
+
89
+ @property
90
+ def additional_keys(self) -> list[str]:
91
+ return list(self.additional_properties.keys())
92
+
93
+ def __getitem__(self, key: str) -> Any:
94
+ return self.additional_properties[key]
95
+
96
+ def __setitem__(self, key: str, value: Any) -> None:
97
+ self.additional_properties[key] = value
98
+
99
+ def __delitem__(self, key: str) -> None:
100
+ del self.additional_properties[key]
101
+
102
+ def __contains__(self, key: str) -> bool:
103
+ return key in self.additional_properties
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: waldur-api-client
3
- Version: 0.2.0
3
+ Version: 7.6.5
4
4
  Summary: A client library for accessing Waldur API
5
5
  License: MIT
6
6
  Author: OpenNode Team
@@ -36,6 +36,20 @@ waldur_api_client/api/auth_tokens/auth_tokens_retrieve.py,sha256=MzNd3JJeyrPdiZb
36
36
  waldur_api_client/api/auth_valimo/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
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
+ waldur_api_client/api/autoprovisioning_rule_plans/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
40
+ waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_create.py,sha256=7hS50G28ANTe8TuKAsG-WAyRSKTAa8gHCUr1JF8MIdQ,3397
41
+ waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_destroy.py,sha256=uEdSmrBJUofVysXdDie7-3xy42TmQeQyR43ErzgifcA,2061
42
+ waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_list.py,sha256=tn3qmqCg40P_Yr4ASMvd_vFg_HeAisCJdvRdloC4n1M,4212
43
+ waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_partial_update.py,sha256=xRn1t3G-GYTSaCGlp3LR7eMgh0TD9UnQ_zJKnVw1bHQ,3750
44
+ waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_retrieve.py,sha256=WkpTGLrB_yFHUd_is5Q0DCnEb03x_cFsZy_84RI3NRw,3098
45
+ waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_update.py,sha256=FdICIwOI_TAQoOYk-smTZMyNjfn7_xWcUng_C4O8uYk,3670
46
+ waldur_api_client/api/autoprovisioning_rules/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
47
+ waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_create.py,sha256=PGZyjlmOzxPIPO8qsaSWXAsKDLyp_JZIQ8ZN-eXE3jY,3270
48
+ waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_destroy.py,sha256=cK1MG6q7Qmm9xRfc3Q1QKc7LLHXpIwXj8ezrFdNDYXE,2056
49
+ waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_list.py,sha256=e6LAQAqrBkBORFaCjFHFy3_a3tPuhtskMidlXK1TACY,4135
50
+ waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_partial_update.py,sha256=43H1FBsNOBRj1tFt1bo0vKhYUQczLD-fpYZHxCCisXU,3623
51
+ waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_retrieve.py,sha256=AkWicwFW_I7eAHlMklUd7aNUko45EQUIZ0DPRHbS3WU,3027
52
+ waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_update.py,sha256=mjo5ebOOZRoMXe7VQbNrRIM8YsL0ZgJWwfnHh8SrWV8,3543
39
53
  waldur_api_client/api/aws_images/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
40
54
  waldur_api_client/api/aws_images/aws_images_list.py,sha256=3cgb4QejmdCVl3ueYPswZLPCNeJkgusAeeEsynCGJBg,5769
41
55
  waldur_api_client/api/aws_images/aws_images_retrieve.py,sha256=kbwMTZxys_TNZAgeIsWNtIYQe8RZs63NzOafEB1I_FE,3068
@@ -525,11 +539,11 @@ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offeri
525
539
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_add_endpoint.py,sha256=T-LxgpG1kUwkVO26n8r8hiIhbjHBvUCrMHjlVeNnl84,3885
526
540
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_add_user.py,sha256=QGHDiFIR-UIJrQoBGb98ZQc1X5JIkLELDzkTBf6xe2I,3916
527
541
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_archive.py,sha256=tl3oFJocpcFcOD9Esm5qD9aQrT5-t6rMT2qp9KvKp70,3136
528
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py,sha256=HLtWf9Rk6a85UhApOb-n_gbDCaR6TtRwtySKUIg5Jt8,24733
529
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py,sha256=G_92M-yBlhpb3nNNTALidT73zIRiEN8rYRQjIZwPULk,25210
542
+ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py,sha256=SSg2fQNhI8BlkwPwEqzjIlqjXWMbYu0wzzKftNzKDAM,25256
543
+ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py,sha256=QHNB0N-uIO2tIRj8TySV5NAiDiaOPB7hoFWXmnAUpWQ,25733
530
544
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_create.py,sha256=chGUKBwAsXbwLbxlwqRGrL9IzfJIlxVw1pnjsW-PxHU,3526
531
545
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_create_offering_component.py,sha256=OEqSp40oDaBxt2EuckJebghudXg49MEk7PL8pt1bKfA,2552
532
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py,sha256=zzUI9hGuapcekT21yDv7jSOhbHmAa7NuACJFf1bua5g,23750
546
+ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py,sha256=dt8blwtNtK6VbxYpMROR-sjEoamixxC_djDhssog2II,24273
533
547
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_endpoint.py,sha256=cjS3vZK4XQmRfIMg2hugNmrEZeTwclF69V5wyRsCCQ8,2569
534
548
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_image.py,sha256=u_ecdb4F-vDGslOgkmh35CoGVCvYnRt9r1TrHNHHbKY,2121
535
549
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_delete_organization_groups.py,sha256=9PXOmSoGUSvrrrPF4QFg1OQFzJ4F81G9LHok3J6i7DQ,2171
@@ -538,10 +552,10 @@ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offeri
538
552
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_destroy.py,sha256=CwXbsguC3RujAOGw1U-UuJ17FeNf1r3nawlmFobQIvY,2064
539
553
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_draft.py,sha256=a61JNhL775UC7guqFDC5eUuKX3RJ_EWq-GCYNoOSLdI,3134
540
554
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_glauth_users_config_retrieve.py,sha256=S9JVEZgiTQmwZdz4eG5U8HphWl1pD1-vVqPDXgYexI8,3958
541
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py,sha256=X21e5bF3jlYU6JcnQTgDmaTWQaGOzM-lxr2j12QcL-o,23171
555
+ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py,sha256=eluJ3QK-kzbIIgfvLsc6uMUgymLNpafNn290-SrmJjI,23694
542
556
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_import_resource.py,sha256=SZiwVkqN7wvYixGNWoJPU2AaznoA0MCwQdDuPKfy2R0,3731
543
557
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_importable_resources_list.py,sha256=2r03XuurRtNwSxFni-1r_LhncEi6oO4AnaUfqssjrXg,4793
544
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py,sha256=4pNFRDzrjiXYfQASX8EIVaj04HmdYsHAvIVCINSODpI,24341
558
+ waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py,sha256=OyGyPLRlxgdOXPXBF97BzGewgLbrfDTqsCW8dflMb4A,24864
545
559
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_projects_list.py,sha256=lTP_6XElO8fXt-fh_3V0EKm692rdCAPRgGGpDU400JQ,4485
546
560
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_service_accounts_retrieve.py,sha256=XokNPa7JTpD447EGkv-mjHaZwvYjR3KuPNhS4wmQNfs,5083
547
561
  waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list_customer_users_list.py,sha256=imFKcRZwLRRdYsMExtzvNSuNafrv5Zjc8ipanfyhhps,4437
@@ -599,7 +613,7 @@ waldur_api_client/api/marketplace_public_api/__init__.py,sha256=5vd9uJWAjRqa9xzx
599
613
  waldur_api_client/api/marketplace_public_api/marketplace_public_api_check_signature.py,sha256=Ws_DSVcNqPL7XGujPA_AXe_FGARgVDUGCuj5amw0xT4,3782
600
614
  waldur_api_client/api/marketplace_public_api/marketplace_public_api_set_usage.py,sha256=D1PNS91IVNjt9zf0FuPFbW1YSA1aN0436GjvVnkgTsk,3776
601
615
  waldur_api_client/api/marketplace_public_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
602
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py,sha256=7YWBOLLpnlYbZxEy2gEUMhGLbzetfWYuJkiEuxG-SKI,24247
616
+ waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py,sha256=xGmuhjlJMUyTfnwSzniGRLfVDUzO8zILzj4RQR6gSqM,24770
603
617
  waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_plans_list.py,sha256=qx5pBWuhhzYfA8OdXSmhOkdGPJZPAADbCfBG-TiBFOU,3444
604
618
  waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_plans_retrieve.py,sha256=Jah73hqtO8-vkmDAL8JF2qzkM3GcobQDYGU5kguLQA4,3478
605
619
  waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_retrieve.py,sha256=S41iIW-qoqt96c6HaIkyLP2rgsa5F6NGfFYEBWpv3fo,4644
@@ -686,7 +700,7 @@ waldur_api_client/api/marketplace_service_providers/marketplace_service_provider
686
700
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_keys_list.py,sha256=5uORk-BN-ERJTu25KhmlHqzjbxNIYnpuwT764xxCDVc,13475
687
701
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_list.py,sha256=1V-o0_o6rEE2h6tRTLoqnhx9WmH7QDpc5D19g7X5hT4,8444
688
702
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_list_users_list.py,sha256=hjNJ0EJtg_GJnkVoKOD5PShefGhchPfhd4EUuCoL5e4,11315
689
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py,sha256=GDc7EjNVy6G6uF_WS2Bsw2NewIBG0ViTS5Z0e8MbVnE,25253
703
+ waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py,sha256=UPuYtLds7x42rTiuqZI-6QA_c-RA7wvCsjwcdfqbD54,25776
690
704
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_partial_update.py,sha256=_QQ6zDBOO3ZDGqdZ5t0N4ebQhLI_Ds2jvo1ymGuBbXg,3902
691
705
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_project_permissions_list.py,sha256=lBwxZZbI7p--0liaAMBT8Z1geo9bP7bK1edQfbLK150,16359
692
706
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_projects_list.py,sha256=ly1N36m0AIq0e8ofdSC0R3lJhHjGLCm9xPwFRXYSnMY,16204
@@ -699,7 +713,7 @@ waldur_api_client/api/marketplace_service_providers/marketplace_service_provider
699
713
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_update.py,sha256=Qje883duMNqi-jFMA8JS3Q2yu8gtRq6iFQW3HmZ-lN4,3822
700
714
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_update_user.py,sha256=lnMsAK4NZKhp-1xKpDt2u7hp_LALEwyeYYF7srKrpms,3918
701
715
  waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_user_customers_list.py,sha256=evWNYrRx-4OhqR54xooxokcgZ3zvXXz1UXL5Jr52ap4,16685
702
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_users_list.py,sha256=6Ll8gWYehJ1A8zURWiOVa1EHys3qYDz-ppsYXCThXAA,21038
716
+ waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_users_list.py,sha256=pbq5fisnIyVYe5o0MKJR9Sz9ItE45YnP0N-SzlcYkME,21637
703
717
  waldur_api_client/api/marketplace_service_providers/service_provider_api_secret_code_generate.py,sha256=cvsjFDg_6d9z-u878Y1wPychR6gV0BacV1xx_tYUH6o,3567
704
718
  waldur_api_client/api/marketplace_service_providers/service_provider_api_secret_code_retrieve.py,sha256=ZjxQej3Ymo1dOSemmSODi7jdfjAGLTo0FpSOjj_zgFg,3542
705
719
  waldur_api_client/api/marketplace_stats/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
@@ -1329,7 +1343,7 @@ waldur_api_client/api/users/users_change_password.py,sha256=nppfMjDsFURCq-IbqkMN
1329
1343
  waldur_api_client/api/users/users_confirm_email.py,sha256=mTBD7ELvmxsDGK8mtMe304a2AG3AzB5jzlMv0EtyVMg,2436
1330
1344
  waldur_api_client/api/users/users_create.py,sha256=fUBbDe1ZOuf09HyMl6anvZtClT-LtrDJyF7Qj1VVKb8,3253
1331
1345
  waldur_api_client/api/users/users_destroy.py,sha256=PW5t8MQo2ZAmbNilACkc7DOcebYTRGS3YF3swSGrGmE,2039
1332
- waldur_api_client/api/users/users_list.py,sha256=V7l38M490I1KZlvO8O7O6z9DdtNvxQE7t_p9rDtoZf8,19361
1346
+ waldur_api_client/api/users/users_list.py,sha256=bhku--xkp5D6W3FMfvCTL7WpyVFvY-7t8-ZKRKDdY2Q,19960
1333
1347
  waldur_api_client/api/users/users_marketplace_checklist_stats_retrieve.py,sha256=5_ur5hL7wM8PZdUpXEY2X4QcaQvkag9zk9PQl_RJ8ug,3163
1334
1348
  waldur_api_client/api/users/users_me_retrieve.py,sha256=15rJxipawbjSTAzKAxlzEXC8-woCprVc0ePeMjj7D3o,4143
1335
1349
  waldur_api_client/api/users/users_partial_update.py,sha256=2nnMvq-oKbNdutN1UuqQXfM7oziiEZiivJOz_srkfa8,3606
@@ -1391,7 +1405,7 @@ waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_update.py,sh
1391
1405
  waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_web_console_retrieve.py,sha256=oZ2BaWmW_KX9J6iL90lKg2lNcX4ym-VdVp0v9zDZI0I,3342
1392
1406
  waldur_api_client/client.py,sha256=GLq-qDZKHfSA_9duhz0MTPeaAkXUlvuHHWCRzsPcE5Y,11727
1393
1407
  waldur_api_client/errors.py,sha256=C44oS7G-xUfc6i6fto367Oig5qm0S_pDZJUaK0eY9mU,500
1394
- waldur_api_client/models/__init__.py,sha256=dJnmx86UG_G34MYhbfOgGlBLjAuEXJus1KVENZRouXc,119248
1408
+ waldur_api_client/models/__init__.py,sha256=V6_vCW_L-F74tMsJLwj_lREUulQY9M8J6_nUzFlCl_U,120226
1395
1409
  waldur_api_client/models/access_subnet.py,sha256=unDj1xpRJWj9Ia51twedRU9HcuWf4MYVnTCz-WGLTJk,2145
1396
1410
  waldur_api_client/models/access_subnet_request.py,sha256=_OM-mgOmhOnbwqR9425rgdN-KWUxvz2ZgK20rGTeTrA,2005
1397
1411
  waldur_api_client/models/account_name_generation_policy_enum.py,sha256=6XEL8dm2iWT-1ZmVf0RNbI7pmszVe1s7_Z24yPgs_K8,170
@@ -1559,8 +1573,8 @@ waldur_api_client/models/components_usage_stats.py,sha256=QF-ABKySkw4tMRHain714s
1559
1573
  waldur_api_client/models/configuration_retrieve_response_200.py,sha256=RBFCUtFJUII9J2MiVFyOQ_HLPh9RpbavflFn4Pjw28k,1311
1560
1574
  waldur_api_client/models/confirm_email_request_request.py,sha256=KOujnAZpKVuDxd9qZgcsz01O1wbj8WYPts68B5bYPz0,1518
1561
1575
  waldur_api_client/models/console_url.py,sha256=HYH5Ej9g2olUyvdnUrxDGR_LA042eoQmXlbzcJdP2JU,1422
1562
- waldur_api_client/models/constance_settings.py,sha256=FazcC8vUXkpXZZmv20ZT8zueWEtdo55BqQ3PtXaV0jg,59451
1563
- waldur_api_client/models/constance_settings_request.py,sha256=47kCDwsAcHykWfulmnhZP2kXavL7z_YLbLUhlMYSN6c,64436
1576
+ waldur_api_client/models/constance_settings.py,sha256=OLr_IectXsGfcAolbfn0cqwaCrPT8Nr__FsIlc69G10,59774
1577
+ waldur_api_client/models/constance_settings_request.py,sha256=jR_2iR4QdIyCXl68Ou0MGJPnF7tEK3opXjgKdPD0NHc,64759
1564
1578
  waldur_api_client/models/container_format_enum.py,sha256=cfxrigIkmyJMKY3CFiExIppHyiZGnDoexb3zR_kh-ko,206
1565
1579
  waldur_api_client/models/core_auth_token.py,sha256=wnHzBfZHx64nqQ5ky_94xS76WBzVVPgjEu3xl_MB8oo,1460
1566
1580
  waldur_api_client/models/core_states.py,sha256=bLdaX7p1JDwAQOZWIGXrXN1T79CSqIAqYJyvMK0EZW4,361
@@ -1669,8 +1683,8 @@ waldur_api_client/models/group_invitation_request.py,sha256=2Upul6-tMa_9i6l8yC2u
1669
1683
  waldur_api_client/models/guest_os_enum.py,sha256=Xq1NMZXuuon1ZesMWJuSsnRW1VqHl9zeum-LFXfI5Bs,4702
1670
1684
  waldur_api_client/models/guest_power_state_enum.py,sha256=xY6nEbX2p-J0q3sQ6PWXNa8THVnkAmgZ9pfwS_dMnaE,300
1671
1685
  waldur_api_client/models/hooks_web_list_content_type.py,sha256=pUYOptxC4dcPKZcyhPX3oFPMLgQxFeC8MF4ktQNTzBc,161
1672
- waldur_api_client/models/identity_provider.py,sha256=R0Ae2ILDg3ZFuJeOJaj6Us9N0vFzhKmuCLRZTFRM6wE,6012
1673
- waldur_api_client/models/identity_provider_request.py,sha256=v0_Us28yxxUpREVrPaaG_xJXLWX-a5YIM-z-8UU7Is8,5081
1686
+ waldur_api_client/models/identity_provider.py,sha256=r3dUy-hmHdwHyx5YfCKuftR4TBEZlbgra2qKu0VbPLs,6108
1687
+ waldur_api_client/models/identity_provider_request.py,sha256=vRW-WeLSeH495CsQovJjgiMlkzuQnohnVfgZTTY99rk,5177
1674
1688
  waldur_api_client/models/image_create_request.py,sha256=xHG5U8AgHSNSAJuDMf3BUlpRLA0KW-OO7mQOvD1t7aY,4356
1675
1689
  waldur_api_client/models/image_create_response.py,sha256=hSTJL8g4pSYXpP9fBhufZoTTDh-Zubjhg3F2zh7oQdo,2064
1676
1690
  waldur_api_client/models/image_upload_response.py,sha256=3lj84P8NzA00D6NQMYGTKTVaC3pfEDJK_-wGOLgpQFU,1673
@@ -1834,8 +1848,8 @@ waldur_api_client/models/marketplace_service_providers_retrieve_field_item.py,sh
1834
1848
  waldur_api_client/models/marketplace_service_providers_user_customers_list_field_item.py,sha256=O1D7M9AsDjm0yy3ByxeZLBm0hoECJa3DLzd-DPM8GYI,512
1835
1849
  waldur_api_client/models/marketplace_service_providers_users_list_field_item.py,sha256=kmp8qp6JD-PXuPw5b6wosav0U-Ekyb4_qoh2__9b89o,516
1836
1850
  waldur_api_client/models/marketplace_service_providers_users_list_o_item.py,sha256=UZha_JlWdNCcrtiZCTLlVQcJgULs26eaO6-id-JCdNc,853
1837
- waldur_api_client/models/merged_plugin_options.py,sha256=1uwOX-gOJgORue-wsfmFVlTvNWMZIegaBzjlccfELQo,26864
1838
- waldur_api_client/models/merged_plugin_options_request.py,sha256=7V2qXD9bDrtN_d41IDRPEd5vdUFP0pmjF9pIXcTcfUo,26902
1851
+ waldur_api_client/models/merged_plugin_options.py,sha256=jB5LiPSnMbTFK4tRkQOZYIdI0AuYetckvt7-WOYjK1M,28507
1852
+ waldur_api_client/models/merged_plugin_options_request.py,sha256=ImIO0TiyKBN_08vEoJPgsZFO_wN5mCY-gWT4-SybQ_I,28545
1839
1853
  waldur_api_client/models/merged_secret_options.py,sha256=i8e55KXYijZAMsyxoEz02aQfpSmAinJfUUR3H9BOD9w,18063
1840
1854
  waldur_api_client/models/merged_secret_options_request.py,sha256=wRQBET_oy0MalZCl5FXEj02_Wulqc3sGhLwVFwm6okU,18152
1841
1855
  waldur_api_client/models/message_template.py,sha256=ofQbUbliARw0XSvTOfmkjXUMIb2HLPUDpN8J7_A6-SI,2084
@@ -2113,7 +2127,7 @@ waldur_api_client/models/patched_customer_service_account_request.py,sha256=LVVv
2113
2127
  waldur_api_client/models/patched_digital_ocean_droplet_request.py,sha256=LfN0ZXA2Cd1E1YKrTsIL_BQQDoaYxq_22n48KOzNnAE,1944
2114
2128
  waldur_api_client/models/patched_email_hook_request.py,sha256=nyG4B8neOjGH7ZMNmTc-X8UMS-OP1WyGqFcNuD2LVFQ,3632
2115
2129
  waldur_api_client/models/patched_firecrest_job_request.py,sha256=L8YEax0vq3M4slyxtVLexq9_LmMRmKUnEZ_grhpBzeY,2229
2116
- waldur_api_client/models/patched_identity_provider_request.py,sha256=skgMPuD32aZWJ8Ef88cCpvgsOj5uwnzzvVGtWq8XGdE,5427
2130
+ waldur_api_client/models/patched_identity_provider_request.py,sha256=cRK1LKzPrDCbnc18UxaFNeue5jyYYV5DvK9r-0AyIDM,5523
2117
2131
  waldur_api_client/models/patched_invoice_item_update_request.py,sha256=z0yTemV8FS7dAcgcXhT43QtW4ovhoPJOzbOUb62HX18,3438
2118
2132
  waldur_api_client/models/patched_issue_request.py,sha256=0DNvJwXbLMgYae2f6bRij8ecFt1bU7R_9OEy89sCKUk,3076
2119
2133
  waldur_api_client/models/patched_keycloak_user_group_membership_request.py,sha256=1pJbvQvG3Dggig-9mfjoz20agYmgenTFOzQxkpBwhYQ,2876
@@ -2162,6 +2176,10 @@ waldur_api_client/models/patched_requested_resource_request.py,sha256=GUI9k7hOCb
2162
2176
  waldur_api_client/models/patched_resource_update_request.py,sha256=_CNDi9RuzcqYtijBwRRd7b6EiUdjnXOPZ03y5-DADhE,3148
2163
2177
  waldur_api_client/models/patched_robot_account_request.py,sha256=7t1urQ4mvKmcXjNCHG9uQy2W-YmDiS7DrZthHROyfhA,3924
2164
2178
  waldur_api_client/models/patched_role_details_request.py,sha256=-lYNcyosNi85D3e84dDw_VzlUYXTPaGDA6d_SjQ3BBs,13080
2179
+ waldur_api_client/models/patched_rule_plans_request.py,sha256=9or43eosRDu67rwLvsKUOfOSUYFd-Bct9kz_Z5TMusk,3568
2180
+ waldur_api_client/models/patched_rule_plans_request_attributes.py,sha256=fxWYtQKEupQYhd28Swp3DWws8fj_BhomaHzTJ_eFcwE,1319
2181
+ waldur_api_client/models/patched_rule_plans_request_limits.py,sha256=iLLXqTGo0ucBoyVKPprHEwLye7nFe88lUvxRxYdMtAI,1299
2182
+ waldur_api_client/models/patched_rule_request.py,sha256=7Yw8TLhPGtlAdDrkgiWJhv6PFD1nE8fjmLnsNFOHST0,3418
2165
2183
  waldur_api_client/models/patched_screenshot_request.py,sha256=1eLZM744IuVHBhWrmsGL7hdnEZGoIllj6UEzml4iMx0,1893
2166
2184
  waldur_api_client/models/patched_section_request.py,sha256=Ta_1Zvr_jBppTubsMKyk8KuBSqVtrj4DchtRxhBV4lo,2441
2167
2185
  waldur_api_client/models/patched_service_provider_request.py,sha256=mYtDn3fhfD2dlNbV4UOfT0YOQtBF1QosJVSPDlF59og,2743
@@ -2305,7 +2323,7 @@ waldur_api_client/models/rancher_catalog_request.py,sha256=77VnU6qgXQKzax-cAiuiX
2305
2323
  waldur_api_client/models/rancher_catalog_scope_type.py,sha256=X8ON_7Ma0KYRfxvowRDzxu5408ILNYMDLJV_OTIvEJs,198
2306
2324
  waldur_api_client/models/rancher_catalog_update.py,sha256=nlz5gBxPOUQkrY77jabVwVKkKJTXv_kjwxovXQZ_y7E,3918
2307
2325
  waldur_api_client/models/rancher_catalog_update_request.py,sha256=GdwqOy50KPYgsmxZHlvUvbs__EBkyZKHh4tyYqRUDrA,2394
2308
- waldur_api_client/models/rancher_cluster.py,sha256=eUuBPIz5GL4c4cOsqWk4fUXKKXVs529y7XnZM5P1sBI,27689
2326
+ waldur_api_client/models/rancher_cluster.py,sha256=00KHdS_YH4OReCq641zE6h4UzovrJyjF--Uu1G2NjP4,28115
2309
2327
  waldur_api_client/models/rancher_cluster_marketplace_offering_plugin_options_type_0.py,sha256=g9jW-KCLWjDUjPksC_Oq2fMkSBDJC1vIzHQRAgmP2bU,1418
2310
2328
  waldur_api_client/models/rancher_cluster_reference.py,sha256=GMUKFAeuxQnTsp_otOx2Dq7sJOsmyeHZ7icAQh8vMHg,2886
2311
2329
  waldur_api_client/models/rancher_cluster_request.py,sha256=doqm2VQ5E-cbD-_edI6Uc_y9oUb-B3iLpYby_ku59jg,4736
@@ -2313,9 +2331,9 @@ waldur_api_client/models/rancher_cluster_security_group_rule.py,sha256=vv7DR8Aax
2313
2331
  waldur_api_client/models/rancher_cluster_security_group_rule_request.py,sha256=MIAKj_KJpKL6xL_bamBz4ygaRG6fRnzv346hLjtg_1M,6218
2314
2332
  waldur_api_client/models/rancher_cluster_template.py,sha256=DzmfeYMTpJaWn1ALYiuOblY0gfSFnkzYfaZnzaIxusM,3242
2315
2333
  waldur_api_client/models/rancher_cluster_template_node.py,sha256=qkSlLhs9FvB2xIODA5TgEGSQcslT2GiWbc36c3H8MNM,2675
2316
- waldur_api_client/models/rancher_clusters_list_field_item.py,sha256=JynYA1FFtRcXbaj6aj-7Q0EvVmuV3hnlB3-RIUHKBTw,1987
2334
+ waldur_api_client/models/rancher_clusters_list_field_item.py,sha256=e7bbaJ3Sa4RsWa9iPdiCuB5l7XYDna1KDQltLd1KGgs,2017
2317
2335
  waldur_api_client/models/rancher_clusters_list_state_item.py,sha256=_hyWPiwnufGWHu4Ru1bWOxbGWDVkY_adL-bIelafkFc,379
2318
- waldur_api_client/models/rancher_clusters_retrieve_field_item.py,sha256=aalyGeq3kqMOkxrQeQwe9r_YMgMFqJL74hHxQXvsc4o,1991
2336
+ waldur_api_client/models/rancher_clusters_retrieve_field_item.py,sha256=aaOLX9_190qfqnK7pharZM4tX0vNO7534A2xMfQDeBE,2021
2319
2337
  waldur_api_client/models/rancher_create_node.py,sha256=aPzYOLnehE05-xIdcqEl4V_-HZh36ZqPRL3IazVsF5k,1888
2320
2338
  waldur_api_client/models/rancher_create_node_request.py,sha256=U2FCwPoSRHUY6_6aJaUMy5nHY9cy3VmfJ5dH9sc_kv4,6143
2321
2339
  waldur_api_client/models/rancher_hpa.py,sha256=ZhLozroMf1EwProUaLHjJFNLdJP5mmVvYWc9dLi2Bcc,8011
@@ -2438,6 +2456,14 @@ waldur_api_client/models/role_type.py,sha256=RI_vmdETh3okrlAKF5JPnDfnWB5xerOv3Iw
2438
2456
  waldur_api_client/models/roles_list_field_item.py,sha256=heqjCs2wIg6LwGmElNbOhZfhRLsd3Y-PUlkkEZQg4os,887
2439
2457
  waldur_api_client/models/roles_retrieve_field_item.py,sha256=yKjP9o0uvtM4qODKPxPTp4u911F3NTMVjuueiE21120,891
2440
2458
  waldur_api_client/models/round_reviewer.py,sha256=km3aVibwnGMSr8B3jtqvNKzmjuFKw86XWVoTdSp7K6o,2509
2459
+ waldur_api_client/models/rule.py,sha256=2DzJSEdGKr6-tnL_VyQ2pmfFmLMPlbfrLP7eR4jSD0A,3785
2460
+ waldur_api_client/models/rule_plans.py,sha256=SpykiiZOCIL_wpCSNiAV0MVUwfEf36amnO_oKax3MFE,3444
2461
+ waldur_api_client/models/rule_plans_attributes.py,sha256=caCbSvw0aPqclXjMfxoDZOlJGJ74iKAK3n1mBfZPTRU,1243
2462
+ waldur_api_client/models/rule_plans_limits.py,sha256=MqkpcrkdxWlXbhIfNben7ohGql5Wm_1OKKzjREpUU5s,1223
2463
+ waldur_api_client/models/rule_plans_request.py,sha256=AtUGv6X36NLy65RHqIpCJbs7HhRh1PZANeBd1g3V_so,3287
2464
+ waldur_api_client/models/rule_plans_request_attributes.py,sha256=_bSGhQvCgfRuvUCtLS34VBF5_u1soirGLt0figvCbSU,1281
2465
+ waldur_api_client/models/rule_plans_request_limits.py,sha256=at4deEEM33hnegehKdsN_83Ipr_ujBMf4gO_MWdXWVI,1261
2466
+ waldur_api_client/models/rule_request.py,sha256=f-3zFZnbyomLvMYg1GU2DHHM3k29dI2aBjh9IZqHQcA,3330
2441
2467
  waldur_api_client/models/runtime_states.py,sha256=dWscxiOK-RrvJq4fT35pR46nsHQxhuvMumK444bHgCA,1610
2442
2468
  waldur_api_client/models/saml_2_login.py,sha256=cAprDwTQH9m3s4AxXpHnWGr4xp4UeeZ2bAIGghgoi7Y,1425
2443
2469
  waldur_api_client/models/saml_2_login_complete.py,sha256=UxNLhyjROcL-QxFEXHcqLL3jLxLwIljfZ64dunR-UCo,1566
@@ -2576,7 +2602,7 @@ waldur_api_client/models/webhook_event_enum.py,sha256=P8kLmYD2Z-EqFjfr489bholAay
2576
2602
  waldur_api_client/models/widget_enum.py,sha256=oC-BDHXc9GnUD3IhxVHMbhkYTdfpWLBcaUXjY__RERs,201
2577
2603
  waldur_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
2578
2604
  waldur_api_client/types.py,sha256=AX4orxQZQJat3vZrgjJ-TYb2sNBL8kNo9yqYDT-n8y8,1391
2579
- waldur_api_client-0.2.0.dist-info/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
2580
- waldur_api_client-0.2.0.dist-info/METADATA,sha256=PyDzIdDEiMepQKggi7kekjxz5ECd1FbW5wIx4NhKLKc,5845
2581
- waldur_api_client-0.2.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2582
- waldur_api_client-0.2.0.dist-info/RECORD,,
2605
+ waldur_api_client-7.6.5.dist-info/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
2606
+ waldur_api_client-7.6.5.dist-info/METADATA,sha256=QctuPrpmGjxlLuogb5RlRbD8VhT0HcODzYAJNJjvIIo,5845
2607
+ waldur_api_client-7.6.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2608
+ waldur_api_client-7.6.5.dist-info/RECORD,,