-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcreate_network_ipv4.py
More file actions
165 lines (140 loc) · 6.25 KB
/
create_network_ipv4.py
File metadata and controls
165 lines (140 loc) · 6.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# coding: utf-8
"""
IaaS-API
This API allows you to create and modify IaaS resources.
The version of the OpenAPI document: 2alpha1
Contact: stackit-iaas@mail.schwarz
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from __future__ import annotations
import json
import pprint
from typing import Any, Dict, Optional, Set, Union
from pydantic import (
BaseModel,
ConfigDict,
ValidationError,
field_validator,
)
from typing_extensions import Self
from stackit.iaasalpha.models.create_network_ipv4_with_prefix import (
CreateNetworkIPv4WithPrefix,
)
from stackit.iaasalpha.models.create_network_ipv4_with_prefix_length import (
CreateNetworkIPv4WithPrefixLength,
)
CREATENETWORKIPV4_ONE_OF_SCHEMAS = ["CreateNetworkIPv4WithPrefix", "CreateNetworkIPv4WithPrefixLength"]
class CreateNetworkIPv4(BaseModel):
"""
The create request for an IPv4 network.
"""
# data type: CreateNetworkIPv4WithPrefix
# BEGIN of the workaround until upstream issues are fixed:
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
oneof_schema_1_validator: Optional[CreateNetworkIPv4WithPrefix] = None
# END of the workaround
# data type: CreateNetworkIPv4WithPrefixLength
# BEGIN of the workaround until upstream issues are fixed:
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
oneof_schema_2_validator: Optional[CreateNetworkIPv4WithPrefixLength] = None
# END of the workaround
actual_instance: Optional[Union[CreateNetworkIPv4WithPrefix, CreateNetworkIPv4WithPrefixLength]] = None
one_of_schemas: Set[str] = {"CreateNetworkIPv4WithPrefix", "CreateNetworkIPv4WithPrefixLength"}
model_config = ConfigDict(
validate_assignment=True,
protected_namespaces=(),
)
def __init__(self, *args, **kwargs) -> None:
if args:
if len(args) > 1:
raise ValueError("If a position argument is used, only 1 is allowed to set `actual_instance`")
if kwargs:
raise ValueError("If a position argument is used, keyword arguments cannot be used.")
super().__init__(actual_instance=args[0])
else:
super().__init__(**kwargs)
@field_validator("actual_instance")
def actual_instance_must_validate_oneof(cls, v):
instance = CreateNetworkIPv4.model_construct()
error_messages = []
match = 0
# validate data type: CreateNetworkIPv4WithPrefix
if not isinstance(v, CreateNetworkIPv4WithPrefix):
error_messages.append(f"Error! Input type `{type(v)}` is not `CreateNetworkIPv4WithPrefix`")
else:
match += 1
# validate data type: CreateNetworkIPv4WithPrefixLength
if not isinstance(v, CreateNetworkIPv4WithPrefixLength):
error_messages.append(f"Error! Input type `{type(v)}` is not `CreateNetworkIPv4WithPrefixLength`")
else:
match += 1
if match == 0:
# no match
raise ValueError(
"No match found when setting `actual_instance` in CreateNetworkIPv4 with oneOf schemas: CreateNetworkIPv4WithPrefix, CreateNetworkIPv4WithPrefixLength. Details: "
+ ", ".join(error_messages)
)
else:
return v
@classmethod
def from_dict(cls, obj: Union[str, Dict[str, Any]]) -> Self:
return cls.from_json(json.dumps(obj))
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Returns the object represented by the json string"""
instance = cls.model_construct()
error_messages = []
match = 0
# deserialize data into CreateNetworkIPv4WithPrefix
try:
instance.actual_instance = CreateNetworkIPv4WithPrefix.from_json(json_str)
match += 1
except (ValidationError, ValueError) as e:
error_messages.append(str(e))
# deserialize data into CreateNetworkIPv4WithPrefixLength
try:
instance.actual_instance = CreateNetworkIPv4WithPrefixLength.from_json(json_str)
match += 1
except (ValidationError, ValueError) as e:
error_messages.append(str(e))
if match > 1:
# more than 1 match
raise ValueError(
"Multiple matches found when deserializing the JSON string into CreateNetworkIPv4 with oneOf schemas: CreateNetworkIPv4WithPrefix, CreateNetworkIPv4WithPrefixLength. Details: "
+ ", ".join(error_messages)
)
elif match == 0:
# no match
raise ValueError(
"No match found when deserializing the JSON string into CreateNetworkIPv4 with oneOf schemas: CreateNetworkIPv4WithPrefix, CreateNetworkIPv4WithPrefixLength. Details: "
+ ", ".join(error_messages)
)
else:
return instance
def to_json(self) -> str:
"""Returns the JSON representation of the actual instance"""
if self.actual_instance is None:
return "null"
if hasattr(self.actual_instance, "to_json") and callable(self.actual_instance.to_json):
return self.actual_instance.to_json()
else:
return json.dumps(self.actual_instance)
def to_dict(
self,
) -> Optional[Union[Dict[str, Any], CreateNetworkIPv4WithPrefix, CreateNetworkIPv4WithPrefixLength]]:
"""Returns the dict representation of the actual instance"""
if self.actual_instance is None:
return None
if hasattr(self.actual_instance, "to_dict") and callable(self.actual_instance.to_dict):
return self.actual_instance.to_dict()
else:
# primitive type
return self.actual_instance
def to_str(self) -> str:
"""Returns the string representation of the actual instance"""
return pprint.pformat(self.model_dump())