latitudesh-python-sdk 0.0.8__py3-none-any.whl → 1.0.0__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 latitudesh-python-sdk might be problematic. Click here for more details.
- latitudesh_python_sdk/_version.py +3 -3
- latitudesh_python_sdk/models/__init__.py +14 -14
- latitudesh_python_sdk/models/server.py +11 -11
- latitudesh_python_sdk/models/{virtual_network_error.py → virtual_network.py} +15 -14
- latitudesh_python_sdk/models/virtual_networks.py +1 -1
- {latitudesh_python_sdk-0.0.8.dist-info → latitudesh_python_sdk-1.0.0.dist-info}/METADATA +2 -2
- {latitudesh_python_sdk-0.0.8.dist-info → latitudesh_python_sdk-1.0.0.dist-info}/RECORD +10 -10
- latitudesh_python_sdk/models/{deploy_config_error.py → deploy_config.py} +8 -8
- {latitudesh_python_sdk-0.0.8.dist-info → latitudesh_python_sdk-1.0.0.dist-info}/LICENSE +0 -0
- {latitudesh_python_sdk-0.0.8.dist-info → latitudesh_python_sdk-1.0.0.dist-info}/WHEEL +0 -0
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "latitudesh-python-sdk"
|
|
6
|
-
__version__: str = "0.0
|
|
6
|
+
__version__: str = "1.0.0"
|
|
7
7
|
__openapi_doc_version__: str = "v3"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0
|
|
8
|
+
__gen_version__: str = "2.578.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.0.0 2.578.0 v3 latitudesh-python-sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -219,7 +219,7 @@ from .delete_vpn_sessionop import (
|
|
|
219
219
|
DeleteVpnSessionRequest,
|
|
220
220
|
DeleteVpnSessionRequestTypedDict,
|
|
221
221
|
)
|
|
222
|
-
from .
|
|
222
|
+
from .deploy_config import (
|
|
223
223
|
DeployConfig,
|
|
224
224
|
DeployConfigAttributes,
|
|
225
225
|
DeployConfigAttributesTypedDict,
|
|
@@ -1002,19 +1002,7 @@ from .virtual_machine_plans import (
|
|
|
1002
1002
|
VirtualMachinePlansUSDTypedDict,
|
|
1003
1003
|
VirtualMachinePlansUnit,
|
|
1004
1004
|
)
|
|
1005
|
-
from .
|
|
1006
|
-
VirtualNetworkAssignment,
|
|
1007
|
-
VirtualNetworkAssignmentAttributes,
|
|
1008
|
-
VirtualNetworkAssignmentAttributesTypedDict,
|
|
1009
|
-
VirtualNetworkAssignmentTypedDict,
|
|
1010
|
-
)
|
|
1011
|
-
from .virtual_network_assignments import (
|
|
1012
|
-
VirtualNetworkAssignments,
|
|
1013
|
-
VirtualNetworkAssignmentsMeta,
|
|
1014
|
-
VirtualNetworkAssignmentsMetaTypedDict,
|
|
1015
|
-
VirtualNetworkAssignmentsTypedDict,
|
|
1016
|
-
)
|
|
1017
|
-
from .virtual_network_error import (
|
|
1005
|
+
from .virtual_network import (
|
|
1018
1006
|
VirtualNetwork,
|
|
1019
1007
|
VirtualNetworkAttributes1,
|
|
1020
1008
|
VirtualNetworkAttributes1TypedDict,
|
|
@@ -1027,6 +1015,18 @@ from .virtual_network_error import (
|
|
|
1027
1015
|
VirtualNetworkType1,
|
|
1028
1016
|
VirtualNetworkTypedDict,
|
|
1029
1017
|
)
|
|
1018
|
+
from .virtual_network_assignment import (
|
|
1019
|
+
VirtualNetworkAssignment,
|
|
1020
|
+
VirtualNetworkAssignmentAttributes,
|
|
1021
|
+
VirtualNetworkAssignmentAttributesTypedDict,
|
|
1022
|
+
VirtualNetworkAssignmentTypedDict,
|
|
1023
|
+
)
|
|
1024
|
+
from .virtual_network_assignments import (
|
|
1025
|
+
VirtualNetworkAssignments,
|
|
1026
|
+
VirtualNetworkAssignmentsMeta,
|
|
1027
|
+
VirtualNetworkAssignmentsMetaTypedDict,
|
|
1028
|
+
VirtualNetworkAssignmentsTypedDict,
|
|
1029
|
+
)
|
|
1030
1030
|
from .virtual_network1 import (
|
|
1031
1031
|
VirtualNetwork1,
|
|
1032
1032
|
VirtualNetwork1TypedDict,
|
|
@@ -27,17 +27,6 @@ class Server(BaseModel):
|
|
|
27
27
|
meta: Optional[ServerMeta] = None
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
class Server1TypedDict(TypedDict):
|
|
31
|
-
data: NotRequired[ServerDataTypedDict]
|
|
32
|
-
meta: NotRequired[ServerMetaTypedDict]
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
class Server1(BaseModel):
|
|
36
|
-
data: Optional[ServerData] = None
|
|
37
|
-
|
|
38
|
-
meta: Optional[ServerMeta] = None
|
|
39
|
-
|
|
40
|
-
|
|
41
30
|
class ServerErrorData(BaseModel):
|
|
42
31
|
data: Optional[ServerData] = None
|
|
43
32
|
|
|
@@ -52,3 +41,14 @@ class ServerError(Exception):
|
|
|
52
41
|
|
|
53
42
|
def __str__(self) -> str:
|
|
54
43
|
return utils.marshal_json(self.data, ServerErrorData)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class Server1TypedDict(TypedDict):
|
|
47
|
+
data: NotRequired[ServerDataTypedDict]
|
|
48
|
+
meta: NotRequired[ServerMetaTypedDict]
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class Server1(BaseModel):
|
|
52
|
+
data: Optional[ServerData] = None
|
|
53
|
+
|
|
54
|
+
meta: Optional[ServerMeta] = None
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .virtual_network_error import VirtualNetworkAttributesSiteTypedDict
|
|
4
5
|
from enum import Enum
|
|
5
6
|
from latitudesh_python_sdk import utils
|
|
6
7
|
from latitudesh_python_sdk.types import BaseModel
|
|
@@ -71,6 +72,20 @@ class VirtualNetworkAttributes1(BaseModel):
|
|
|
71
72
|
r"""Amount of devices assigned to the virtual network"""
|
|
72
73
|
|
|
73
74
|
|
|
75
|
+
class VirtualNetworkTypedDict(TypedDict):
|
|
76
|
+
id: NotRequired[str]
|
|
77
|
+
type: NotRequired[VirtualNetworkType1]
|
|
78
|
+
attributes: NotRequired[VirtualNetworkAttributes1TypedDict]
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class VirtualNetwork(BaseModel):
|
|
82
|
+
id: Optional[str] = None
|
|
83
|
+
|
|
84
|
+
type: Optional[VirtualNetworkType1] = None
|
|
85
|
+
|
|
86
|
+
attributes: Optional[VirtualNetworkAttributes1] = None
|
|
87
|
+
|
|
88
|
+
|
|
74
89
|
class VirtualNetworkErrorData(BaseModel):
|
|
75
90
|
id: Optional[str] = None
|
|
76
91
|
|
|
@@ -87,17 +102,3 @@ class VirtualNetworkError(Exception):
|
|
|
87
102
|
|
|
88
103
|
def __str__(self) -> str:
|
|
89
104
|
return utils.marshal_json(self.data, VirtualNetworkErrorData)
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
class VirtualNetworkTypedDict(TypedDict):
|
|
93
|
-
id: NotRequired[str]
|
|
94
|
-
type: NotRequired[VirtualNetworkType1]
|
|
95
|
-
attributes: NotRequired[VirtualNetworkAttributes1TypedDict]
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
class VirtualNetwork(BaseModel):
|
|
99
|
-
id: Optional[str] = None
|
|
100
|
-
|
|
101
|
-
type: Optional[VirtualNetworkType1] = None
|
|
102
|
-
|
|
103
|
-
attributes: Optional[VirtualNetworkAttributes1] = None
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
-
from .
|
|
4
|
+
from .virtual_network import VirtualNetwork, VirtualNetworkTypedDict
|
|
5
5
|
from latitudesh_python_sdk.types import BaseModel
|
|
6
6
|
from typing import List, Optional
|
|
7
7
|
from typing_extensions import NotRequired, TypedDict
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: latitudesh-python-sdk
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
13
|
Requires-Dist: eval-type-backport (>=0.2.0)
|
|
14
14
|
Requires-Dist: httpx (>=0.28.1)
|
|
15
|
-
Requires-Dist: pydantic (>=2.
|
|
15
|
+
Requires-Dist: pydantic (>=2.11.2)
|
|
16
16
|
Requires-Dist: python-dateutil (>=2.8.2)
|
|
17
17
|
Requires-Dist: typing-inspection (>=0.4.0)
|
|
18
18
|
Project-URL: Repository, https://github.com/latitudesh/latitudesh-python-sdk.git
|
|
@@ -3,7 +3,7 @@ latitudesh_python_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJ
|
|
|
3
3
|
latitudesh_python_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
4
4
|
latitudesh_python_sdk/_hooks/sdkhooks.py,sha256=1ortlYa3eeDs7LuD-Z68Dmy9H9ciWEE9H89bM0yhC2o,2571
|
|
5
5
|
latitudesh_python_sdk/_hooks/types.py,sha256=E006F_tsZfswRF7VWNN7XeADu-_OrYB-NTb4Q_ZVbr0,2824
|
|
6
|
-
latitudesh_python_sdk/_version.py,sha256=
|
|
6
|
+
latitudesh_python_sdk/_version.py,sha256=4wMCc5EFRvjl5Vtv_9_K6ThW39GzprVd_mhEkBTm-cU,478
|
|
7
7
|
latitudesh_python_sdk/apikeys.py,sha256=vmyyHOTAvtkdm3Fml1Xk8H3mUoR9RyA2_lcIfpxojoc,31922
|
|
8
8
|
latitudesh_python_sdk/basesdk.py,sha256=lU-PdfvSiWlf1vCrvn_c3DGO3gFMpNB-eBKci6QZKFc,12244
|
|
9
9
|
latitudesh_python_sdk/billing.py,sha256=H_xK_-U6xjJtk9yBOf6GWSkak5i-I5jTGy_kBNpTJ68,8279
|
|
@@ -11,7 +11,7 @@ latitudesh_python_sdk/events_sdk.py,sha256=h-1LRcYiVyli2v2qAvQVaIrXMm1u4KT9EsjtK
|
|
|
11
11
|
latitudesh_python_sdk/firewalls_sdk.py,sha256=cLAp_Np0TyyFKFuUqjhOX9jYf0DwTMsl5ycBx78U6dY,64002
|
|
12
12
|
latitudesh_python_sdk/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
|
|
13
13
|
latitudesh_python_sdk/ipaddresses_sdk.py,sha256=2WTFNQbBs_QLuskwtr8LIKFheaenMBkeFisoMnzz5zI,19037
|
|
14
|
-
latitudesh_python_sdk/models/__init__.py,sha256=
|
|
14
|
+
latitudesh_python_sdk/models/__init__.py,sha256=xS27uVUcJf9-qaIkPrr_qXI3x2wvtxDCuKggENz5Yeo,60772
|
|
15
15
|
latitudesh_python_sdk/models/api_key.py,sha256=XXzY0i3cCPmBGVABAZAhyidhEhYiyBbWqNznBxMsn8s,2220
|
|
16
16
|
latitudesh_python_sdk/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
|
|
17
17
|
latitudesh_python_sdk/models/assign_server_virtual_networkop.py,sha256=_820P6KGUla-ybspGOQBp_EDz8gwy5EywCPcRFvK16Y,1386
|
|
@@ -40,7 +40,7 @@ latitudesh_python_sdk/models/delete_projectop.py,sha256=k1YPXnpPczcmYm1bBK8_RqHs
|
|
|
40
40
|
latitudesh_python_sdk/models/delete_storage_filesystemsop.py,sha256=GpWRLsdT6tOa448wRVMrlbBQaHs4baiKn_ny7E7vU-Q,536
|
|
41
41
|
latitudesh_python_sdk/models/delete_virtual_networks_assignmentsop.py,sha256=2gqY1Ss5qnSfaPAfxYBGBvapoGW_t464OAeTY2E5z7g,552
|
|
42
42
|
latitudesh_python_sdk/models/delete_vpn_sessionop.py,sha256=ysp8ugL73XKziqbW9kLey41UCP3NguF7bk8TkO0iGL4,522
|
|
43
|
-
latitudesh_python_sdk/models/
|
|
43
|
+
latitudesh_python_sdk/models/deploy_config.py,sha256=0AbsvUnOHl8H7vjgfTSdV05Hoyqaia5hDzqUtO08c98,1859
|
|
44
44
|
latitudesh_python_sdk/models/destroy_serverop.py,sha256=gElzV8Gp3jmyQ42k05FFWefNkfgzE3l5CXjjqw7aNTE,892
|
|
45
45
|
latitudesh_python_sdk/models/destroy_tagop.py,sha256=BAM_slKDMr0xjO_nob9IunhL11cBATHw6vcxlDauwwM,494
|
|
46
46
|
latitudesh_python_sdk/models/destroy_team_memberop.py,sha256=ii22JwieZFUThAk2C5tr0SVyESeYt53QojXd_9GRwv0,556
|
|
@@ -114,7 +114,7 @@ latitudesh_python_sdk/models/regions.py,sha256=x-PEZlvvwzYnWEF4CVsLBGFQVJh7chooM
|
|
|
114
114
|
latitudesh_python_sdk/models/role.py,sha256=SUdGnmbH2cXahSeW0WuYpFuM-xIEyT2n410gTKZnTtc,426
|
|
115
115
|
latitudesh_python_sdk/models/role_data.py,sha256=iZUjOMpfAB_Txiv4HuqAErPqtNvmuPUzDjc8e5qo0zE,823
|
|
116
116
|
latitudesh_python_sdk/models/security.py,sha256=cTHi_FcNOdS1PRTOp2YoQKOQZf9_61_6R_MjP7nUUz0,710
|
|
117
|
-
latitudesh_python_sdk/models/server.py,sha256=
|
|
117
|
+
latitudesh_python_sdk/models/server.py,sha256=LzJScVz35QUg0mpl_47fNL5h-PQPoSxX_XoCHD9JgXM,1216
|
|
118
118
|
latitudesh_python_sdk/models/server_action.py,sha256=3bYvzeUDodyx8gn-7I464OopqQcWaFq7QRH_jqcfxkc,1182
|
|
119
119
|
latitudesh_python_sdk/models/server_data.py,sha256=MIsPnKCVGTK1hkCF2eZbbnCzK4qOf9-WQwsK3tfwQ1I,6250
|
|
120
120
|
latitudesh_python_sdk/models/server_exit_rescue_modeop.py,sha256=-XYxukzZoIBS-90D512U1R9T-6rckWChhmvQa2I3od4,520
|
|
@@ -156,11 +156,11 @@ latitudesh_python_sdk/models/user_update.py,sha256=MA4WnCCNbkyyLMlo30K890F_FU2QT
|
|
|
156
156
|
latitudesh_python_sdk/models/virtual_machine.py,sha256=fAIqBGE8Rn6cVqxSQrNgHN8yanPC_NMhzTgZ_gsNbtU,610
|
|
157
157
|
latitudesh_python_sdk/models/virtual_machine_payload.py,sha256=9ab21MZ1yoa2apeXcaYJV0DeZNxc1j5jqWePspOhZ8g,1139
|
|
158
158
|
latitudesh_python_sdk/models/virtual_machine_plans.py,sha256=ICTyo_4wcUOU6oUhX0tkFNU4jfmiGmPFjdAjL1gqAWU,4547
|
|
159
|
+
latitudesh_python_sdk/models/virtual_network.py,sha256=PIuIxEy36wvf7gQbLz8HsFOj_SJ3j-umn8I-X_W_2aU,2815
|
|
159
160
|
latitudesh_python_sdk/models/virtual_network1.py,sha256=6Lq3-84_BNE6urjtUbfrK4K7k2_uoNMShkK5yjTsmDc,2180
|
|
160
161
|
latitudesh_python_sdk/models/virtual_network_assignment.py,sha256=4j21tlGFDwIrZtWpKRLVAfX-ZG5OBEoD05shmkB5YPM,1001
|
|
161
162
|
latitudesh_python_sdk/models/virtual_network_assignments.py,sha256=-ZLYDnJxi3AC-XhUCGVituu2lq_U2sGY7_1SKRJ5IqA,827
|
|
162
|
-
latitudesh_python_sdk/models/
|
|
163
|
-
latitudesh_python_sdk/models/virtual_networks.py,sha256=bJ8XNDRD_VBxLDe1VB4THkwiKTd8W95ktt_j1agmma0,709
|
|
163
|
+
latitudesh_python_sdk/models/virtual_networks.py,sha256=mwDuLMbskbjhT9vL4N2aRrkIwSrj6mSH90xytXouOqo,703
|
|
164
164
|
latitudesh_python_sdk/models/vpn_session_data_with_password.py,sha256=KxynuipC9LfmxhDLyhVVFtuYZfx5LTO647RQu1R-M50,2086
|
|
165
165
|
latitudesh_python_sdk/models/vpn_session_with_password.py,sha256=teCRCeVcGY9HQ44iFK4ppnk1-zPIeJKiHoUiG4R63II,568
|
|
166
166
|
latitudesh_python_sdk/operatingsystems_sdk.py,sha256=mvWXSqpIjYM0y3b9y-te1jENSzc1p94LinXuPrGFuyI,7417
|
|
@@ -200,7 +200,7 @@ latitudesh_python_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg
|
|
|
200
200
|
latitudesh_python_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
201
201
|
latitudesh_python_sdk/virtualmachines.py,sha256=ZRRFJMCFTntnd7TBbYDfR0BlMxgRJZEg49m0h0DBRzU,29149
|
|
202
202
|
latitudesh_python_sdk/vpnsessions.py,sha256=iNFTOrl7HmWvBP4so7xGsQK5UvIW7T5wfmSuNMj_Zyw,32416
|
|
203
|
-
latitudesh_python_sdk-0.0.
|
|
204
|
-
latitudesh_python_sdk-0.0.
|
|
205
|
-
latitudesh_python_sdk-0.0.
|
|
206
|
-
latitudesh_python_sdk-0.0.
|
|
203
|
+
latitudesh_python_sdk-1.0.0.dist-info/LICENSE,sha256=cTh9W7-NHKTevDYJJSvZjNHAtXhzT2BaMUap_MUmlyY,1068
|
|
204
|
+
latitudesh_python_sdk-1.0.0.dist-info/METADATA,sha256=Qa6cmAx4MObQVWyOzajejzYMzWz6-c9TLTsw8Hpras4,35665
|
|
205
|
+
latitudesh_python_sdk-1.0.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
206
|
+
latitudesh_python_sdk-1.0.0.dist-info/RECORD,,
|
|
@@ -52,6 +52,14 @@ class DeployConfigData(BaseModel):
|
|
|
52
52
|
attributes: Optional[DeployConfigAttributes] = None
|
|
53
53
|
|
|
54
54
|
|
|
55
|
+
class DeployConfigTypedDict(TypedDict):
|
|
56
|
+
data: NotRequired[DeployConfigDataTypedDict]
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class DeployConfig(BaseModel):
|
|
60
|
+
data: Optional[DeployConfigData] = None
|
|
61
|
+
|
|
62
|
+
|
|
55
63
|
class DeployConfigErrorData(BaseModel):
|
|
56
64
|
data: Optional[DeployConfigData] = None
|
|
57
65
|
|
|
@@ -64,11 +72,3 @@ class DeployConfigError(Exception):
|
|
|
64
72
|
|
|
65
73
|
def __str__(self) -> str:
|
|
66
74
|
return utils.marshal_json(self.data, DeployConfigErrorData)
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
class DeployConfigTypedDict(TypedDict):
|
|
70
|
-
data: NotRequired[DeployConfigDataTypedDict]
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
class DeployConfig(BaseModel):
|
|
74
|
-
data: Optional[DeployConfigData] = None
|
|
File without changes
|
|
File without changes
|