latitudesh-python-sdk 0.0.7__py3-none-any.whl → 0.0.8__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.

@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "latitudesh-python-sdk"
6
- __version__: str = "0.0.7"
6
+ __version__: str = "0.0.8"
7
7
  __openapi_doc_version__: str = "v3"
8
- __gen_version__: str = "2.560.1"
9
- __user_agent__: str = "speakeasy-sdk/python 0.0.7 2.560.1 v3 latitudesh-python-sdk"
8
+ __gen_version__: str = "2.568.5"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.0.8 2.568.5 v3 latitudesh-python-sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -52,7 +52,10 @@ from .billing_usage import (
52
52
  BillingUsageDataTypedDict,
53
53
  BillingUsageProject,
54
54
  BillingUsageProjectTypedDict,
55
+ BillingUsageType,
55
56
  BillingUsageTypedDict,
57
+ Discounts,
58
+ DiscountsTypedDict,
56
59
  Metadata,
57
60
  MetadataTypedDict,
58
61
  Period,
@@ -216,7 +219,7 @@ from .delete_vpn_sessionop import (
216
219
  DeleteVpnSessionRequest,
217
220
  DeleteVpnSessionRequestTypedDict,
218
221
  )
219
- from .deploy_config import (
222
+ from .deploy_config_error import (
220
223
  DeployConfig,
221
224
  DeployConfigAttributes,
222
225
  DeployConfigAttributesTypedDict,
@@ -999,19 +1002,6 @@ from .virtual_machine_plans import (
999
1002
  VirtualMachinePlansUSDTypedDict,
1000
1003
  VirtualMachinePlansUnit,
1001
1004
  )
1002
- from .virtual_network import (
1003
- VirtualNetwork,
1004
- VirtualNetworkAttributes1,
1005
- VirtualNetworkAttributes1TypedDict,
1006
- VirtualNetworkAttributesRegion,
1007
- VirtualNetworkAttributesRegionTypedDict,
1008
- VirtualNetworkAttributesSite,
1009
- VirtualNetworkAttributesSiteTypedDict,
1010
- VirtualNetworkError,
1011
- VirtualNetworkErrorData,
1012
- VirtualNetworkType1,
1013
- VirtualNetworkTypedDict,
1014
- )
1015
1005
  from .virtual_network_assignment import (
1016
1006
  VirtualNetworkAssignment,
1017
1007
  VirtualNetworkAssignmentAttributes,
@@ -1024,6 +1014,19 @@ from .virtual_network_assignments import (
1024
1014
  VirtualNetworkAssignmentsMetaTypedDict,
1025
1015
  VirtualNetworkAssignmentsTypedDict,
1026
1016
  )
1017
+ from .virtual_network_error import (
1018
+ VirtualNetwork,
1019
+ VirtualNetworkAttributes1,
1020
+ VirtualNetworkAttributes1TypedDict,
1021
+ VirtualNetworkAttributesRegion,
1022
+ VirtualNetworkAttributesRegionTypedDict,
1023
+ VirtualNetworkAttributesSite,
1024
+ VirtualNetworkAttributesSiteTypedDict,
1025
+ VirtualNetworkError,
1026
+ VirtualNetworkErrorData,
1027
+ VirtualNetworkType1,
1028
+ VirtualNetworkTypedDict,
1029
+ )
1027
1030
  from .virtual_network1 import (
1028
1031
  VirtualNetwork1,
1029
1032
  VirtualNetwork1TypedDict,
@@ -1099,6 +1102,7 @@ __all__ = [
1099
1102
  "BillingUsageDataTypedDict",
1100
1103
  "BillingUsageProject",
1101
1104
  "BillingUsageProjectTypedDict",
1105
+ "BillingUsageType",
1102
1106
  "BillingUsageTypedDict",
1103
1107
  "Brl",
1104
1108
  "BrlTypedDict",
@@ -1251,6 +1255,8 @@ __all__ = [
1251
1255
  "DestroyVirtualMachineRequestTypedDict",
1252
1256
  "DestroyVirtualNetworkRequest",
1253
1257
  "DestroyVirtualNetworkRequestTypedDict",
1258
+ "Discounts",
1259
+ "DiscountsTypedDict",
1254
1260
  "Disk",
1255
1261
  "DiskTypedDict",
1256
1262
  "Distro",
@@ -41,6 +41,33 @@ class Period(BaseModel):
41
41
  end: Optional[datetime] = None
42
42
 
43
43
 
44
+ class BillingUsageType(str, Enum):
45
+ r"""Type of discount (percentage or fixed amount)"""
46
+
47
+ PERCENT = "percent"
48
+ AMOUNT = "amount"
49
+
50
+
51
+ class DiscountsTypedDict(TypedDict):
52
+ description: str
53
+ r"""Description of the discount"""
54
+ type: BillingUsageType
55
+ r"""Type of discount (percentage or fixed amount)"""
56
+ value: float
57
+ r"""Value of the discount (percentage or amount)"""
58
+
59
+
60
+ class Discounts(BaseModel):
61
+ description: str
62
+ r"""Description of the discount"""
63
+
64
+ type: BillingUsageType
65
+ r"""Type of discount (percentage or fixed amount)"""
66
+
67
+ value: float
68
+ r"""Value of the discount (percentage or amount)"""
69
+
70
+
44
71
  class Unit(str, Enum):
45
72
  QUANTITY = "quantity"
46
73
  HOUR = "hour"
@@ -73,6 +100,10 @@ class ProductsTypedDict(TypedDict):
73
100
  id: NotRequired[str]
74
101
  resource: NotRequired[str]
75
102
  name: NotRequired[str]
103
+ discounts: NotRequired[List[DiscountsTypedDict]]
104
+ discountable: NotRequired[bool]
105
+ description: NotRequired[str]
106
+ amount_without_discount: NotRequired[int]
76
107
  start: NotRequired[datetime]
77
108
  end: NotRequired[datetime]
78
109
  unit: NotRequired[Unit]
@@ -92,6 +123,14 @@ class Products(BaseModel):
92
123
 
93
124
  name: Optional[str] = None
94
125
 
126
+ discounts: Optional[List[Discounts]] = None
127
+
128
+ discountable: Optional[bool] = None
129
+
130
+ description: Optional[str] = None
131
+
132
+ amount_without_discount: Optional[int] = None
133
+
95
134
  start: Optional[datetime] = None
96
135
 
97
136
  end: Optional[datetime] = None
@@ -27,6 +27,17 @@ 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
+
30
41
  class ServerErrorData(BaseModel):
31
42
  data: Optional[ServerData] = None
32
43
 
@@ -41,14 +52,3 @@ class ServerError(Exception):
41
52
 
42
53
  def __str__(self) -> str:
43
54
  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
@@ -136,7 +136,6 @@ class VirtualMachinePlansAttributesTypedDict(TypedDict):
136
136
  r"""The name of the plan"""
137
137
  specs: NotRequired[VirtualMachinePlansSpecsTypedDict]
138
138
  regions: NotRequired[List[VirtualMachinePlansRegionsTypedDict]]
139
- r"""The regions where the plan is available"""
140
139
  stock_level: NotRequired[VirtualMachinePlansStockLevel]
141
140
  r"""The stock level of the plan"""
142
141
 
@@ -148,7 +147,6 @@ class VirtualMachinePlansAttributes(BaseModel):
148
147
  specs: Optional[VirtualMachinePlansSpecs] = None
149
148
 
150
149
  regions: Optional[List[VirtualMachinePlansRegions]] = None
151
- r"""The regions where the plan is available"""
152
150
 
153
151
  stock_level: Optional[VirtualMachinePlansStockLevel] = None
154
152
  r"""The stock level of the plan"""
@@ -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 .virtual_network import VirtualNetwork, VirtualNetworkTypedDict
4
+ from .virtual_network_error 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
@@ -2,7 +2,7 @@
2
2
 
3
3
  from pydantic import ConfigDict, model_serializer
4
4
  from pydantic import BaseModel as PydanticBaseModel
5
- from typing import TYPE_CHECKING, Literal, Optional, TypeVar, Union, NewType
5
+ from typing import TYPE_CHECKING, Literal, Optional, TypeVar, Union
6
6
  from typing_extensions import TypeAliasType, TypeAlias
7
7
 
8
8
 
@@ -35,5 +35,5 @@ else:
35
35
  "OptionalNullable", Union[Optional[Nullable[T]], Unset], type_params=(T,)
36
36
  )
37
37
 
38
- UnrecognizedInt = NewType("UnrecognizedInt", int)
39
- UnrecognizedStr = NewType("UnrecognizedStr", str)
38
+ UnrecognizedInt: TypeAlias = int
39
+ UnrecognizedStr: TypeAlias = str
@@ -1,34 +1,74 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  import enum
4
-
4
+ import sys
5
5
 
6
6
  class OpenEnumMeta(enum.EnumMeta):
7
- def __call__(
8
- cls, value, names=None, *, module=None, qualname=None, type=None, start=1
9
- ):
10
- # The `type` kwarg also happens to be a built-in that pylint flags as
11
- # redeclared. Safe to ignore this lint rule with this scope.
12
- # pylint: disable=redefined-builtin
7
+ # The __call__ method `boundary` kwarg was added in 3.11 and must be present
8
+ # for pyright. Refer also: https://github.com/pylint-dev/pylint/issues/9622
9
+ # pylint: disable=unexpected-keyword-arg
10
+ # The __call__ method `values` varg must be named for pyright.
11
+ # pylint: disable=keyword-arg-before-vararg
12
+
13
+ if sys.version_info >= (3, 11):
14
+ def __call__(
15
+ cls, value, names=None, *values, module=None, qualname=None, type=None, start=1, boundary=None
16
+ ):
17
+ # The `type` kwarg also happens to be a built-in that pylint flags as
18
+ # redeclared. Safe to ignore this lint rule with this scope.
19
+ # pylint: disable=redefined-builtin
20
+
21
+ if names is not None:
22
+ return super().__call__(
23
+ value,
24
+ names=names,
25
+ *values,
26
+ module=module,
27
+ qualname=qualname,
28
+ type=type,
29
+ start=start,
30
+ boundary=boundary,
31
+ )
32
+
33
+ try:
34
+ return super().__call__(
35
+ value,
36
+ names=names, # pyright: ignore[reportArgumentType]
37
+ *values,
38
+ module=module,
39
+ qualname=qualname,
40
+ type=type,
41
+ start=start,
42
+ boundary=boundary,
43
+ )
44
+ except ValueError:
45
+ return value
46
+ else:
47
+ def __call__(
48
+ cls, value, names=None, *, module=None, qualname=None, type=None, start=1
49
+ ):
50
+ # The `type` kwarg also happens to be a built-in that pylint flags as
51
+ # redeclared. Safe to ignore this lint rule with this scope.
52
+ # pylint: disable=redefined-builtin
13
53
 
14
- if names is not None:
15
- return super().__call__(
16
- value,
17
- names=names,
18
- module=module,
19
- qualname=qualname,
20
- type=type,
21
- start=start,
22
- )
54
+ if names is not None:
55
+ return super().__call__(
56
+ value,
57
+ names=names,
58
+ module=module,
59
+ qualname=qualname,
60
+ type=type,
61
+ start=start,
62
+ )
23
63
 
24
- try:
25
- return super().__call__(
26
- value,
27
- names=names, # pyright: ignore[reportArgumentType]
28
- module=module,
29
- qualname=qualname,
30
- type=type,
31
- start=start,
32
- )
33
- except ValueError:
34
- return value
64
+ try:
65
+ return super().__call__(
66
+ value,
67
+ names=names, # pyright: ignore[reportArgumentType]
68
+ module=module,
69
+ qualname=qualname,
70
+ type=type,
71
+ start=start,
72
+ )
73
+ except ValueError:
74
+ return value
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: latitudesh-python-sdk
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9
@@ -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=9V9b6i8UsgSmYplBF7PFv7vlVPaAhXoqBGhwhsCGnmA,478
6
+ latitudesh_python_sdk/_version.py,sha256=OVXWinjMtk-pudQvtdv8I_ms_OSJ17BNFh5rOvtlyDk,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,14 +11,14 @@ 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=2FcaCh3zc5oq6vOkg7N_0bWkjl4KFrfPWP4WBK4BVGg,60644
14
+ latitudesh_python_sdk/models/__init__.py,sha256=x3fke1zhJ-yOGZvD6Co2Pggl01bHMJ86v9pBFdXUZSg,60784
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
18
18
  latitudesh_python_sdk/models/bandwidth_packages.py,sha256=4KH8OP74xp26jCZzULrVXf2cnXEkJ1j-iH4HK7xFQ8s,1680
19
19
  latitudesh_python_sdk/models/bandwidth_plan.py,sha256=F4UsXL6r4t_axgmlMMHkzYaa-4DzCaGkAzUxsbAYN_0,1567
20
20
  latitudesh_python_sdk/models/bandwidth_plans.py,sha256=p_bnDfwmcPB21NIVfF3CzQcXI2XUGgjyCikJ61YXY4c,489
21
- latitudesh_python_sdk/models/billing_usage.py,sha256=C-YYMT_At-FjW1J5KjAj0uFvv5esE6Z1lUvjEdB88rg,3914
21
+ latitudesh_python_sdk/models/billing_usage.py,sha256=DC_bVOSh5klBC8iah4LxJbAiqBoygDumlIpGwILvyxg,4909
22
22
  latitudesh_python_sdk/models/create_api_key.py,sha256=80PaA1MLEFjMOguOeC50EbQv2uoirvhlbbqkW3BDVfU,931
23
23
  latitudesh_python_sdk/models/create_firewall_assignmentop.py,sha256=mMpd58nROW5aQyN9gGaAavA-BbAvvrh84Hhclw6Iu5k,1832
24
24
  latitudesh_python_sdk/models/create_firewallop.py,sha256=fBxUSdCZ_IPdHPR7Br8nrR6kF8QLvtOzhLzrXOXSF0M,1791
@@ -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/deploy_config.py,sha256=0AbsvUnOHl8H7vjgfTSdV05Hoyqaia5hDzqUtO08c98,1859
43
+ latitudesh_python_sdk/models/deploy_config_error.py,sha256=TeG4YiePtZBjZvBf-T8ky2j_EkZ2pzw7FCiK7_oQMcM,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=LzJScVz35QUg0mpl_47fNL5h-PQPoSxX_XoCHD9JgXM,1216
117
+ latitudesh_python_sdk/models/server.py,sha256=JZasRUj_ogctH_sNR5MPlTeRlfdQs7ug0GL3A2Tsgv0,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
@@ -155,12 +155,12 @@ latitudesh_python_sdk/models/user_teams.py,sha256=dqroBlq2ai0S-EnMZBZt2MGihPkrxw
155
155
  latitudesh_python_sdk/models/user_update.py,sha256=MA4WnCCNbkyyLMlo30K890F_FU2QTAgBK1Rgr_W6PSk,927
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
- latitudesh_python_sdk/models/virtual_machine_plans.py,sha256=GrKft-EqBAtLOIWfwblo8q2g10E11u1HNkekcWcIG3s,4649
159
- latitudesh_python_sdk/models/virtual_network.py,sha256=OLEO5wsQgNGr2YeWNvHrhtEMXxOI4IdeszrqGMgj5ME,2742
158
+ latitudesh_python_sdk/models/virtual_machine_plans.py,sha256=ICTyo_4wcUOU6oUhX0tkFNU4jfmiGmPFjdAjL1gqAWU,4547
160
159
  latitudesh_python_sdk/models/virtual_network1.py,sha256=6Lq3-84_BNE6urjtUbfrK4K7k2_uoNMShkK5yjTsmDc,2180
161
160
  latitudesh_python_sdk/models/virtual_network_assignment.py,sha256=4j21tlGFDwIrZtWpKRLVAfX-ZG5OBEoD05shmkB5YPM,1001
162
161
  latitudesh_python_sdk/models/virtual_network_assignments.py,sha256=-ZLYDnJxi3AC-XhUCGVituu2lq_U2sGY7_1SKRJ5IqA,827
163
- latitudesh_python_sdk/models/virtual_networks.py,sha256=mwDuLMbskbjhT9vL4N2aRrkIwSrj6mSH90xytXouOqo,703
162
+ latitudesh_python_sdk/models/virtual_network_error.py,sha256=4s08g4hRAP95c5HBCvRKeuZMtLlkqxr-tPBSlFQAavc,2742
163
+ latitudesh_python_sdk/models/virtual_networks.py,sha256=bJ8XNDRD_VBxLDe1VB4THkwiKTd8W95ktt_j1agmma0,709
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
@@ -180,12 +180,12 @@ latitudesh_python_sdk/teams_sdk.py,sha256=0W8EisV4lbYm7zNSNnDhtneLYAWqiVWKpRbyCW
180
180
  latitudesh_python_sdk/teamsmembers.py,sha256=C6TETFId-BZpkMSg3mE0MPIazuTCyTFuByzChNm67EM,22742
181
181
  latitudesh_python_sdk/traffic_sdk.py,sha256=WmnVKHxSE7_GU7cSXt-j7235rwhLXyv-vqDPOelqGxI,16179
182
182
  latitudesh_python_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
183
- latitudesh_python_sdk/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
183
+ latitudesh_python_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
184
184
  latitudesh_python_sdk/userdata_sdk.py,sha256=bhEzPFI8oBAfG5kVcxbAu9CcVnlsvyGbTEIIbhXkELE,41026
185
185
  latitudesh_python_sdk/userprofile.py,sha256=IiFIDqzbayhFBbaYPXBU_1hXNy7_cdq_MRy31Tg0I1Q,22929
186
186
  latitudesh_python_sdk/utils/__init__.py,sha256=A7_RAc6uLoQYKGunLRFg8cTYYvM4WgoM7Da50PYZOoU,2456
187
187
  latitudesh_python_sdk/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
188
- latitudesh_python_sdk/utils/enums.py,sha256=VzjeslROrAr2luZOTJlvu-4UlxgTaGOKlRYtJJ7IfyY,1006
188
+ latitudesh_python_sdk/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
189
189
  latitudesh_python_sdk/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
190
190
  latitudesh_python_sdk/utils/forms.py,sha256=YSSijXrsM2nfrRHlPQejh1uRRKfoILomHL3d9xpJiy8,6058
191
191
  latitudesh_python_sdk/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
@@ -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.7.dist-info/LICENSE,sha256=cTh9W7-NHKTevDYJJSvZjNHAtXhzT2BaMUap_MUmlyY,1068
204
- latitudesh_python_sdk-0.0.7.dist-info/METADATA,sha256=3xYq_3I7NEo7_PMOzT7O4ZzNR9D1gIInLbCdD1IiPkk,35665
205
- latitudesh_python_sdk-0.0.7.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
206
- latitudesh_python_sdk-0.0.7.dist-info/RECORD,,
203
+ latitudesh_python_sdk-0.0.8.dist-info/LICENSE,sha256=cTh9W7-NHKTevDYJJSvZjNHAtXhzT2BaMUap_MUmlyY,1068
204
+ latitudesh_python_sdk-0.0.8.dist-info/METADATA,sha256=910eWbTg48Shq4Gy1CucAkDj-FGap9FGvI2xv_CNVTE,35665
205
+ latitudesh_python_sdk-0.0.8.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
206
+ latitudesh_python_sdk-0.0.8.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.1
2
+ Generator: poetry-core 2.1.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -52,14 +52,6 @@ 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
-
63
55
  class DeployConfigErrorData(BaseModel):
64
56
  data: Optional[DeployConfigData] = None
65
57
 
@@ -72,3 +64,11 @@ class DeployConfigError(Exception):
72
64
 
73
65
  def __str__(self) -> str:
74
66
  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
@@ -71,20 +71,6 @@ class VirtualNetworkAttributes1(BaseModel):
71
71
  r"""Amount of devices assigned to the virtual network"""
72
72
 
73
73
 
74
- class VirtualNetworkTypedDict(TypedDict):
75
- id: NotRequired[str]
76
- type: NotRequired[VirtualNetworkType1]
77
- attributes: NotRequired[VirtualNetworkAttributes1TypedDict]
78
-
79
-
80
- class VirtualNetwork(BaseModel):
81
- id: Optional[str] = None
82
-
83
- type: Optional[VirtualNetworkType1] = None
84
-
85
- attributes: Optional[VirtualNetworkAttributes1] = None
86
-
87
-
88
74
  class VirtualNetworkErrorData(BaseModel):
89
75
  id: Optional[str] = None
90
76
 
@@ -101,3 +87,17 @@ class VirtualNetworkError(Exception):
101
87
 
102
88
  def __str__(self) -> str:
103
89
  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