latitudesh-python-sdk 2.0.0__py3-none-any.whl → 2.0.1__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/apikeys.py +51 -138
- latitudesh_python_sdk/basesdk.py +4 -4
- latitudesh_python_sdk/billing.py +11 -32
- latitudesh_python_sdk/events_sdk.py +9 -34
- latitudesh_python_sdk/firewalls_sdk.py +89 -264
- latitudesh_python_sdk/ipaddresses_sdk.py +25 -68
- latitudesh_python_sdk/models/__init__.py +27 -4
- latitudesh_python_sdk/models/apierror.py +30 -14
- latitudesh_python_sdk/models/deploy_config.py +11 -6
- latitudesh_python_sdk/models/error_object.py +11 -6
- latitudesh_python_sdk/models/latitudesherror.py +26 -0
- latitudesh_python_sdk/models/no_response_error.py +13 -0
- latitudesh_python_sdk/models/region_resource_data.py +4 -4
- latitudesh_python_sdk/models/responsevalidationerror.py +25 -0
- latitudesh_python_sdk/models/server.py +11 -6
- latitudesh_python_sdk/models/server_data.py +6 -3
- latitudesh_python_sdk/models/server_region_resource_data.py +40 -0
- latitudesh_python_sdk/models/update_serverop.py +1 -3
- latitudesh_python_sdk/models/virtual_network.py +11 -6
- latitudesh_python_sdk/operatingsystems_sdk.py +11 -32
- latitudesh_python_sdk/plans.py +57 -188
- latitudesh_python_sdk/privatenetworks.py +87 -262
- latitudesh_python_sdk/projects_sdk.py +43 -130
- latitudesh_python_sdk/regions_sdk.py +21 -66
- latitudesh_python_sdk/roles.py +21 -64
- latitudesh_python_sdk/servers_sdk.py +207 -604
- latitudesh_python_sdk/sshkeys_sdk.py +85 -304
- latitudesh_python_sdk/storage.py +33 -120
- latitudesh_python_sdk/tags.py +39 -126
- latitudesh_python_sdk/teams_sdk.py +35 -100
- latitudesh_python_sdk/teamsmembers.py +31 -96
- latitudesh_python_sdk/traffic_sdk.py +25 -68
- latitudesh_python_sdk/userdata_sdk.py +79 -298
- latitudesh_python_sdk/userprofile.py +31 -100
- latitudesh_python_sdk/utils/serializers.py +3 -2
- latitudesh_python_sdk/utils/unmarshal_json_response.py +24 -0
- latitudesh_python_sdk/virtualmachines.py +35 -122
- latitudesh_python_sdk/vpnsessions.py +55 -146
- {latitudesh_python_sdk-2.0.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/METADATA +47 -24
- {latitudesh_python_sdk-2.0.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/RECORD +43 -38
- {latitudesh_python_sdk-2.0.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/LICENSE +0 -0
- {latitudesh_python_sdk-2.0.0.dist-info → latitudesh_python_sdk-2.0.1.dist-info}/WHEEL +0 -0
|
@@ -5,6 +5,7 @@ from latitudesh_python_sdk import models, utils
|
|
|
5
5
|
from latitudesh_python_sdk._hooks import HookContext
|
|
6
6
|
from latitudesh_python_sdk.types import OptionalNullable, UNSET
|
|
7
7
|
from latitudesh_python_sdk.utils import get_security_from_env
|
|
8
|
+
from latitudesh_python_sdk.utils.unmarshal_json_response import unmarshal_json_response
|
|
8
9
|
from typing import Any, Mapping, Optional, Union
|
|
9
10
|
|
|
10
11
|
|
|
@@ -81,31 +82,18 @@ class VpnSessions(BaseSDK):
|
|
|
81
82
|
|
|
82
83
|
response_data: Any = None
|
|
83
84
|
if utils.match_response(http_res, "200", "application/vnd.api+json"):
|
|
84
|
-
return
|
|
85
|
-
http_res.text, models.GetVpnSessionsResponseBody
|
|
86
|
-
)
|
|
85
|
+
return unmarshal_json_response(models.GetVpnSessionsResponseBody, http_res)
|
|
87
86
|
if utils.match_response(http_res, "422", "application/vnd.api+json"):
|
|
88
|
-
response_data =
|
|
89
|
-
raise models.ErrorObject(
|
|
87
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
88
|
+
raise models.ErrorObject(response_data, http_res)
|
|
90
89
|
if utils.match_response(http_res, "4XX", "*"):
|
|
91
90
|
http_res_text = utils.stream_to_text(http_res)
|
|
92
|
-
raise models.APIError(
|
|
93
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
94
|
-
)
|
|
91
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
95
92
|
if utils.match_response(http_res, "5XX", "*"):
|
|
96
93
|
http_res_text = utils.stream_to_text(http_res)
|
|
97
|
-
raise models.APIError(
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
content_type = http_res.headers.get("Content-Type")
|
|
102
|
-
http_res_text = utils.stream_to_text(http_res)
|
|
103
|
-
raise models.APIError(
|
|
104
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
105
|
-
http_res.status_code,
|
|
106
|
-
http_res_text,
|
|
107
|
-
http_res,
|
|
108
|
-
)
|
|
94
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
95
|
+
|
|
96
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
109
97
|
|
|
110
98
|
async def list_async(
|
|
111
99
|
self,
|
|
@@ -179,31 +167,18 @@ class VpnSessions(BaseSDK):
|
|
|
179
167
|
|
|
180
168
|
response_data: Any = None
|
|
181
169
|
if utils.match_response(http_res, "200", "application/vnd.api+json"):
|
|
182
|
-
return
|
|
183
|
-
http_res.text, models.GetVpnSessionsResponseBody
|
|
184
|
-
)
|
|
170
|
+
return unmarshal_json_response(models.GetVpnSessionsResponseBody, http_res)
|
|
185
171
|
if utils.match_response(http_res, "422", "application/vnd.api+json"):
|
|
186
|
-
response_data =
|
|
187
|
-
raise models.ErrorObject(
|
|
172
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
173
|
+
raise models.ErrorObject(response_data, http_res)
|
|
188
174
|
if utils.match_response(http_res, "4XX", "*"):
|
|
189
175
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
190
|
-
raise models.APIError(
|
|
191
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
192
|
-
)
|
|
176
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
193
177
|
if utils.match_response(http_res, "5XX", "*"):
|
|
194
178
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
195
|
-
raise models.APIError(
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
content_type = http_res.headers.get("Content-Type")
|
|
200
|
-
http_res_text = await utils.stream_to_text_async(http_res)
|
|
201
|
-
raise models.APIError(
|
|
202
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
203
|
-
http_res.status_code,
|
|
204
|
-
http_res_text,
|
|
205
|
-
http_res,
|
|
206
|
-
)
|
|
179
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
180
|
+
|
|
181
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
207
182
|
|
|
208
183
|
def create(
|
|
209
184
|
self,
|
|
@@ -295,29 +270,18 @@ class VpnSessions(BaseSDK):
|
|
|
295
270
|
|
|
296
271
|
response_data: Any = None
|
|
297
272
|
if utils.match_response(http_res, "201", "application/vnd.api+json"):
|
|
298
|
-
return
|
|
273
|
+
return unmarshal_json_response(models.VpnSessionWithPassword, http_res)
|
|
299
274
|
if utils.match_response(http_res, "422", "application/vnd.api+json"):
|
|
300
|
-
response_data =
|
|
301
|
-
raise models.ErrorObject(
|
|
275
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
276
|
+
raise models.ErrorObject(response_data, http_res)
|
|
302
277
|
if utils.match_response(http_res, "4XX", "*"):
|
|
303
278
|
http_res_text = utils.stream_to_text(http_res)
|
|
304
|
-
raise models.APIError(
|
|
305
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
306
|
-
)
|
|
279
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
307
280
|
if utils.match_response(http_res, "5XX", "*"):
|
|
308
281
|
http_res_text = utils.stream_to_text(http_res)
|
|
309
|
-
raise models.APIError(
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
content_type = http_res.headers.get("Content-Type")
|
|
314
|
-
http_res_text = utils.stream_to_text(http_res)
|
|
315
|
-
raise models.APIError(
|
|
316
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
317
|
-
http_res.status_code,
|
|
318
|
-
http_res_text,
|
|
319
|
-
http_res,
|
|
320
|
-
)
|
|
282
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
283
|
+
|
|
284
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
321
285
|
|
|
322
286
|
async def create_async(
|
|
323
287
|
self,
|
|
@@ -409,29 +373,18 @@ class VpnSessions(BaseSDK):
|
|
|
409
373
|
|
|
410
374
|
response_data: Any = None
|
|
411
375
|
if utils.match_response(http_res, "201", "application/vnd.api+json"):
|
|
412
|
-
return
|
|
376
|
+
return unmarshal_json_response(models.VpnSessionWithPassword, http_res)
|
|
413
377
|
if utils.match_response(http_res, "422", "application/vnd.api+json"):
|
|
414
|
-
response_data =
|
|
415
|
-
raise models.ErrorObject(
|
|
378
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
379
|
+
raise models.ErrorObject(response_data, http_res)
|
|
416
380
|
if utils.match_response(http_res, "4XX", "*"):
|
|
417
381
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
418
|
-
raise models.APIError(
|
|
419
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
420
|
-
)
|
|
382
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
421
383
|
if utils.match_response(http_res, "5XX", "*"):
|
|
422
384
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
423
|
-
raise models.APIError(
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
content_type = http_res.headers.get("Content-Type")
|
|
428
|
-
http_res_text = await utils.stream_to_text_async(http_res)
|
|
429
|
-
raise models.APIError(
|
|
430
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
431
|
-
http_res.status_code,
|
|
432
|
-
http_res_text,
|
|
433
|
-
http_res,
|
|
434
|
-
)
|
|
385
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
386
|
+
|
|
387
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
435
388
|
|
|
436
389
|
def refresh_password(
|
|
437
390
|
self,
|
|
@@ -508,29 +461,18 @@ class VpnSessions(BaseSDK):
|
|
|
508
461
|
|
|
509
462
|
response_data: Any = None
|
|
510
463
|
if utils.match_response(http_res, "200", "application/vnd.api+json"):
|
|
511
|
-
return
|
|
464
|
+
return unmarshal_json_response(models.VpnSessionWithPassword, http_res)
|
|
512
465
|
if utils.match_response(http_res, "404", "application/vnd.api+json"):
|
|
513
|
-
response_data =
|
|
514
|
-
raise models.ErrorObject(
|
|
466
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
467
|
+
raise models.ErrorObject(response_data, http_res)
|
|
515
468
|
if utils.match_response(http_res, "4XX", "*"):
|
|
516
469
|
http_res_text = utils.stream_to_text(http_res)
|
|
517
|
-
raise models.APIError(
|
|
518
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
519
|
-
)
|
|
470
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
520
471
|
if utils.match_response(http_res, "5XX", "*"):
|
|
521
472
|
http_res_text = utils.stream_to_text(http_res)
|
|
522
|
-
raise models.APIError(
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
content_type = http_res.headers.get("Content-Type")
|
|
527
|
-
http_res_text = utils.stream_to_text(http_res)
|
|
528
|
-
raise models.APIError(
|
|
529
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
530
|
-
http_res.status_code,
|
|
531
|
-
http_res_text,
|
|
532
|
-
http_res,
|
|
533
|
-
)
|
|
473
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
474
|
+
|
|
475
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
534
476
|
|
|
535
477
|
async def refresh_password_async(
|
|
536
478
|
self,
|
|
@@ -607,29 +549,18 @@ class VpnSessions(BaseSDK):
|
|
|
607
549
|
|
|
608
550
|
response_data: Any = None
|
|
609
551
|
if utils.match_response(http_res, "200", "application/vnd.api+json"):
|
|
610
|
-
return
|
|
552
|
+
return unmarshal_json_response(models.VpnSessionWithPassword, http_res)
|
|
611
553
|
if utils.match_response(http_res, "404", "application/vnd.api+json"):
|
|
612
|
-
response_data =
|
|
613
|
-
raise models.ErrorObject(
|
|
554
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
555
|
+
raise models.ErrorObject(response_data, http_res)
|
|
614
556
|
if utils.match_response(http_res, "4XX", "*"):
|
|
615
557
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
616
|
-
raise models.APIError(
|
|
617
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
618
|
-
)
|
|
558
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
619
559
|
if utils.match_response(http_res, "5XX", "*"):
|
|
620
560
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
621
|
-
raise models.APIError(
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
content_type = http_res.headers.get("Content-Type")
|
|
626
|
-
http_res_text = await utils.stream_to_text_async(http_res)
|
|
627
|
-
raise models.APIError(
|
|
628
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
629
|
-
http_res.status_code,
|
|
630
|
-
http_res_text,
|
|
631
|
-
http_res,
|
|
632
|
-
)
|
|
561
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
562
|
+
|
|
563
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
633
564
|
|
|
634
565
|
def delete(
|
|
635
566
|
self,
|
|
@@ -708,27 +639,16 @@ class VpnSessions(BaseSDK):
|
|
|
708
639
|
if utils.match_response(http_res, "204", "*"):
|
|
709
640
|
return
|
|
710
641
|
if utils.match_response(http_res, "404", "application/vnd.api+json"):
|
|
711
|
-
response_data =
|
|
712
|
-
raise models.ErrorObject(
|
|
642
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
643
|
+
raise models.ErrorObject(response_data, http_res)
|
|
713
644
|
if utils.match_response(http_res, "4XX", "*"):
|
|
714
645
|
http_res_text = utils.stream_to_text(http_res)
|
|
715
|
-
raise models.APIError(
|
|
716
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
717
|
-
)
|
|
646
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
718
647
|
if utils.match_response(http_res, "5XX", "*"):
|
|
719
648
|
http_res_text = utils.stream_to_text(http_res)
|
|
720
|
-
raise models.APIError(
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
content_type = http_res.headers.get("Content-Type")
|
|
725
|
-
http_res_text = utils.stream_to_text(http_res)
|
|
726
|
-
raise models.APIError(
|
|
727
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
728
|
-
http_res.status_code,
|
|
729
|
-
http_res_text,
|
|
730
|
-
http_res,
|
|
731
|
-
)
|
|
649
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
650
|
+
|
|
651
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
732
652
|
|
|
733
653
|
async def delete_async(
|
|
734
654
|
self,
|
|
@@ -807,24 +727,13 @@ class VpnSessions(BaseSDK):
|
|
|
807
727
|
if utils.match_response(http_res, "204", "*"):
|
|
808
728
|
return
|
|
809
729
|
if utils.match_response(http_res, "404", "application/vnd.api+json"):
|
|
810
|
-
response_data =
|
|
811
|
-
raise models.ErrorObject(
|
|
730
|
+
response_data = unmarshal_json_response(models.ErrorObjectData, http_res)
|
|
731
|
+
raise models.ErrorObject(response_data, http_res)
|
|
812
732
|
if utils.match_response(http_res, "4XX", "*"):
|
|
813
733
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
814
|
-
raise models.APIError(
|
|
815
|
-
"API error occurred", http_res.status_code, http_res_text, http_res
|
|
816
|
-
)
|
|
734
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
817
735
|
if utils.match_response(http_res, "5XX", "*"):
|
|
818
736
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
819
|
-
raise models.APIError(
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
content_type = http_res.headers.get("Content-Type")
|
|
824
|
-
http_res_text = await utils.stream_to_text_async(http_res)
|
|
825
|
-
raise models.APIError(
|
|
826
|
-
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
827
|
-
http_res.status_code,
|
|
828
|
-
http_res_text,
|
|
829
|
-
http_res,
|
|
830
|
-
)
|
|
737
|
+
raise models.APIError("API error occurred", http_res, http_res_text)
|
|
738
|
+
|
|
739
|
+
raise models.APIError("Unexpected response received", http_res)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: latitudesh-python-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -507,26 +507,18 @@ with Latitudesh(
|
|
|
507
507
|
<!-- Start Error Handling [errors] -->
|
|
508
508
|
## Error Handling
|
|
509
509
|
|
|
510
|
-
|
|
510
|
+
[`LatitudeshError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/latitudesherror.py) is the base class for all HTTP error responses. It has the following properties:
|
|
511
511
|
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
|
515
|
-
|
|
516
|
-
|
|
|
517
|
-
|
|
|
518
|
-
|
|
|
519
|
-
|
|
|
520
|
-
|
|
521
|
-
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create_async` method may raise the following exceptions:
|
|
522
|
-
|
|
523
|
-
| Error Type | Status Code | Content Type |
|
|
524
|
-
| ------------------ | ----------- | ------------------------ |
|
|
525
|
-
| models.ErrorObject | 400, 422 | application/vnd.api+json |
|
|
526
|
-
| models.APIError | 4XX, 5XX | \*/\* |
|
|
512
|
+
| Property | Type | Description |
|
|
513
|
+
| ------------------ | ---------------- | --------------------------------------------------------------------------------------- |
|
|
514
|
+
| `err.message` | `str` | Error message |
|
|
515
|
+
| `err.status_code` | `int` | HTTP response status code eg `404` |
|
|
516
|
+
| `err.headers` | `httpx.Headers` | HTTP response headers |
|
|
517
|
+
| `err.body` | `str` | HTTP body. Can be empty string if no body is returned. |
|
|
518
|
+
| `err.raw_response` | `httpx.Response` | Raw HTTP response |
|
|
519
|
+
| `err.data` | | Optional. Some errors may contain structured data. [See Error Classes](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/#error-classes). |
|
|
527
520
|
|
|
528
521
|
### Example
|
|
529
|
-
|
|
530
522
|
```python
|
|
531
523
|
import latitudesh_python_sdk
|
|
532
524
|
from latitudesh_python_sdk import Latitudesh, models
|
|
@@ -549,13 +541,44 @@ with Latitudesh(
|
|
|
549
541
|
# Handle response
|
|
550
542
|
print(res)
|
|
551
543
|
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
544
|
+
|
|
545
|
+
except models.LatitudeshError as e:
|
|
546
|
+
# The base class for HTTP error responses
|
|
547
|
+
print(e.message)
|
|
548
|
+
print(e.status_code)
|
|
549
|
+
print(e.body)
|
|
550
|
+
print(e.headers)
|
|
551
|
+
print(e.raw_response)
|
|
552
|
+
|
|
553
|
+
# Depending on the method different errors may be thrown
|
|
554
|
+
if isinstance(e, models.ErrorObject):
|
|
555
|
+
print(e.data.errors) # Optional[List[latitudesh_python_sdk.Errors]]
|
|
558
556
|
```
|
|
557
|
+
|
|
558
|
+
### Error Classes
|
|
559
|
+
**Primary error:**
|
|
560
|
+
* [`LatitudeshError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/latitudesherror.py): The base class for HTTP error responses.
|
|
561
|
+
|
|
562
|
+
<details><summary>Less common errors (9)</summary>
|
|
563
|
+
|
|
564
|
+
<br />
|
|
565
|
+
|
|
566
|
+
**Network errors:**
|
|
567
|
+
* [`httpx.RequestError`](https://www.python-httpx.org/exceptions/#httpx.RequestError): Base class for request errors.
|
|
568
|
+
* [`httpx.ConnectError`](https://www.python-httpx.org/exceptions/#httpx.ConnectError): HTTP client was unable to make a request to a server.
|
|
569
|
+
* [`httpx.TimeoutException`](https://www.python-httpx.org/exceptions/#httpx.TimeoutException): HTTP request timed out.
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
**Inherit from [`LatitudeshError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/latitudesherror.py)**:
|
|
573
|
+
* [`ErrorObject`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/errorobject.py): Applicable to 47 of 104 methods.*
|
|
574
|
+
* [`ServerError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/servererror.py): Applicable to 2 of 104 methods.*
|
|
575
|
+
* [`VirtualNetworkError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/virtualnetworkerror.py): Success. Status code `403`. Applicable to 1 of 104 methods.*
|
|
576
|
+
* [`DeployConfigError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/deployconfigerror.py): Success. Status code `422`. Applicable to 1 of 104 methods.*
|
|
577
|
+
* [`ResponseValidationError`](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/./src/latitudesh_python_sdk/models/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
578
|
+
|
|
579
|
+
</details>
|
|
580
|
+
|
|
581
|
+
\* Check [the method documentation](https://github.com/latitudesh/latitudesh-python-sdk/blob/master/#available-resources-and-operations) to see if the error is applicable.
|
|
559
582
|
<!-- End Error Handling [errors] -->
|
|
560
583
|
|
|
561
584
|
<!-- Start Server Selection [server] -->
|
|
@@ -3,17 +3,17 @@ 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=7I141yofkie4G9aJidu0Vij1Mxbn3Xgm9dKOicRbcZ4,3071
|
|
6
|
-
latitudesh_python_sdk/_version.py,sha256=
|
|
7
|
-
latitudesh_python_sdk/apikeys.py,sha256=
|
|
8
|
-
latitudesh_python_sdk/basesdk.py,sha256=
|
|
9
|
-
latitudesh_python_sdk/billing.py,sha256=
|
|
10
|
-
latitudesh_python_sdk/events_sdk.py,sha256=
|
|
11
|
-
latitudesh_python_sdk/firewalls_sdk.py,sha256=
|
|
6
|
+
latitudesh_python_sdk/_version.py,sha256=_ErXI7hqkfMvxDu3Xgpk9eMRe1gq3aC9qcMkQS73N8o,502
|
|
7
|
+
latitudesh_python_sdk/apikeys.py,sha256=QhqZW-YDfGM2VG3lo36jhTY_8KIjqoN9YsB9n-sYZ6o,29105
|
|
8
|
+
latitudesh_python_sdk/basesdk.py,sha256=cT0-M8CtPlXOSo9mEId6dhSyLvGX8ajMC6jxWUs_dN8,11952
|
|
9
|
+
latitudesh_python_sdk/billing.py,sha256=I7W_GL-hFoWbVpc4myjjHLSUAan7zuNfuqnKaRGmXeM,7707
|
|
10
|
+
latitudesh_python_sdk/events_sdk.py,sha256=AG17NdhoaKM72E1WPz50RI50T524OhQFkGx2s283v-M,12919
|
|
11
|
+
latitudesh_python_sdk/firewalls_sdk.py,sha256=lBvBjbsFj0ucNjPSvouzMc-s_CH5PrhMdiK_aBbnPK8,63836
|
|
12
12
|
latitudesh_python_sdk/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
13
|
-
latitudesh_python_sdk/ipaddresses_sdk.py,sha256=
|
|
14
|
-
latitudesh_python_sdk/models/__init__.py,sha256=
|
|
13
|
+
latitudesh_python_sdk/ipaddresses_sdk.py,sha256=9Lb1cA45QwB9YVgW88jp-BQwJSQzlKhY6ZDVZhqzh-0,20846
|
|
14
|
+
latitudesh_python_sdk/models/__init__.py,sha256=rm4v2KvModoHfcSu3qjuuFbMje-QHQKJnw-GZ9wdGvc,138689
|
|
15
15
|
latitudesh_python_sdk/models/api_key.py,sha256=XXzY0i3cCPmBGVABAZAhyidhEhYiyBbWqNznBxMsn8s,2220
|
|
16
|
-
latitudesh_python_sdk/models/apierror.py,sha256=
|
|
16
|
+
latitudesh_python_sdk/models/apierror.py,sha256=Tk59Tday8pabjAi93rc-qrKNQB872Jf1v5Qo70dwRGY,1241
|
|
17
17
|
latitudesh_python_sdk/models/assign_server_virtual_networkop.py,sha256=ivYbM1ebCmudvY-eFBMaI0xUD0oEvBEtRQ7Wt2WNQ7c,1386
|
|
18
18
|
latitudesh_python_sdk/models/bandwidth_packages.py,sha256=4KH8OP74xp26jCZzULrVXf2cnXEkJ1j-iH4HK7xFQ8s,1680
|
|
19
19
|
latitudesh_python_sdk/models/bandwidth_plan_data.py,sha256=OvswYet4bl2FOkNVbH98ARr8mam7zv9NuPrduwbLcgg,1603
|
|
@@ -44,13 +44,13 @@ latitudesh_python_sdk/models/delete_storage_filesystemsop.py,sha256=GpWRLsdT6tOa
|
|
|
44
44
|
latitudesh_python_sdk/models/delete_user_dataop.py,sha256=KfTOJbELo0DSMknkb4e3wAGWovTG89Napd1_UveHA7Y,514
|
|
45
45
|
latitudesh_python_sdk/models/delete_virtual_networks_assignmentsop.py,sha256=2gqY1Ss5qnSfaPAfxYBGBvapoGW_t464OAeTY2E5z7g,552
|
|
46
46
|
latitudesh_python_sdk/models/delete_vpn_sessionop.py,sha256=ysp8ugL73XKziqbW9kLey41UCP3NguF7bk8TkO0iGL4,522
|
|
47
|
-
latitudesh_python_sdk/models/deploy_config.py,sha256=
|
|
47
|
+
latitudesh_python_sdk/models/deploy_config.py,sha256=gncKlFq_4BRS9wC9insuuWd4buHcIoJGjmcAw9klY10,1991
|
|
48
48
|
latitudesh_python_sdk/models/destroy_serverop.py,sha256=gElzV8Gp3jmyQ42k05FFWefNkfgzE3l5CXjjqw7aNTE,892
|
|
49
49
|
latitudesh_python_sdk/models/destroy_tagop.py,sha256=BAM_slKDMr0xjO_nob9IunhL11cBATHw6vcxlDauwwM,494
|
|
50
50
|
latitudesh_python_sdk/models/destroy_team_memberop.py,sha256=ii22JwieZFUThAk2C5tr0SVyESeYt53QojXd_9GRwv0,556
|
|
51
51
|
latitudesh_python_sdk/models/destroy_virtual_machineop.py,sha256=Rn73Ol-ZLBUknkCd1mkfS_jtbYINB4-f137NntVnepM,540
|
|
52
52
|
latitudesh_python_sdk/models/destroy_virtual_networkop.py,sha256=E5n_K71uLRWEuQ9a2MZvy0DWC7LzKSK2wM2eYUfGiGU,586
|
|
53
|
-
latitudesh_python_sdk/models/error_object.py,sha256=
|
|
53
|
+
latitudesh_python_sdk/models/error_object.py,sha256=2lsS7lIWl_KGfDqXHIE7nzwSn6LWn2XErveMieLS7AU,1224
|
|
54
54
|
latitudesh_python_sdk/models/event_data.py,sha256=1uK7Xrqj3gB0kWs_YfpxehodjUnkctDXy-GNvkQ8QNw,2127
|
|
55
55
|
latitudesh_python_sdk/models/events.py,sha256=J28f--127bhD2kYmRue4WyD10cWr67bVDOlR4Mn862I,2155
|
|
56
56
|
latitudesh_python_sdk/models/filesystem_data.py,sha256=BEk1rxU_nZ7fVEuOC4WBbLBLy-IohVdliwAeox4soJc,1390
|
|
@@ -100,8 +100,10 @@ latitudesh_python_sdk/models/index_virtual_machineop.py,sha256=UWDXWTSNr5Fcxg_Zg
|
|
|
100
100
|
latitudesh_python_sdk/models/ip_address.py,sha256=rzYJoWjQG86ShHfEWS8juvZJi5-Jje13c09ZVJ2cgYc,2624
|
|
101
101
|
latitudesh_python_sdk/models/ip_addresses.py,sha256=yzKtWMJW1R4bvRW3-Bhrbd1Y1XVL11iUE7L3LiFmKS0,463
|
|
102
102
|
latitudesh_python_sdk/models/ipmi_session.py,sha256=2HHJe1vuDWTq6FSflcPzdlZgmQ9k_igknZHufp5iq0k,1330
|
|
103
|
+
latitudesh_python_sdk/models/latitudesherror.py,sha256=pBqQXdGtQWF0ORG33UiG7MDMH6JTTLxc9uzpSWbaV0g,717
|
|
103
104
|
latitudesh_python_sdk/models/list_firewallsop.py,sha256=7Gvias2jDcOpBVITK08Nff9LYhaQ1L6qujFYVWD4fgE,1546
|
|
104
105
|
latitudesh_python_sdk/models/membership.py,sha256=h7AcDpgY4qz2D6iQM2stXD0fSGmfrSq-05Gf8M-NLiE,1543
|
|
106
|
+
latitudesh_python_sdk/models/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
|
|
105
107
|
latitudesh_python_sdk/models/operating_system_data.py,sha256=zowHfDuTGbeEtYoMsoSZrQ7i9G9_o0c0HRWXXriUMNM,1666
|
|
106
108
|
latitudesh_python_sdk/models/operating_systems.py,sha256=u5VR80riSEU3pDGkkhpb_WQsNVQdpJeJvnsWI8YJsjY,1771
|
|
107
109
|
latitudesh_python_sdk/models/out_of_band_connection.py,sha256=cfpSX_NCNAS3tVDILPLzMygmYJxGOBKUdgqoIkDWE-M,2244
|
|
@@ -128,16 +130,18 @@ latitudesh_python_sdk/models/put_project_user_dataop.py,sha256=Px-CFuaEVYMEOg_PF
|
|
|
128
130
|
latitudesh_python_sdk/models/put_ssh_keyop.py,sha256=-ryYdvNRIodS67l3jBeWTma8ZHvkpD32YomsFvj3dw8,1982
|
|
129
131
|
latitudesh_python_sdk/models/put_vpn_sessionop.py,sha256=P8EJQW7we4FSi1SWGO965ZTRxKYZN8Dt09MIH4ICzLk,516
|
|
130
132
|
latitudesh_python_sdk/models/region.py,sha256=ElZASl8vwxQ24QyIVtyeM6KitwJqPYUW2Z6vRNe1qnQ,1102
|
|
131
|
-
latitudesh_python_sdk/models/region_resource_data.py,sha256=
|
|
133
|
+
latitudesh_python_sdk/models/region_resource_data.py,sha256=tzt1ttuYXtYa5zBdSYZ8AQuZb9qIziH9PftTUGe_Fy0,889
|
|
132
134
|
latitudesh_python_sdk/models/regions.py,sha256=x-PEZlvvwzYnWEF4CVsLBGFQVJh7chooMMvKRIec2Xw,1106
|
|
135
|
+
latitudesh_python_sdk/models/responsevalidationerror.py,sha256=B-1pEywE_19hgj6ECdf3tHdfopEjgR8xO-g4Q8WqNnM,708
|
|
133
136
|
latitudesh_python_sdk/models/role.py,sha256=1s_UbibaFOJM5jV_MS3S5jdEQxcRDyxM6IvTPctGdbg,589
|
|
134
137
|
latitudesh_python_sdk/models/role_data.py,sha256=iZUjOMpfAB_Txiv4HuqAErPqtNvmuPUzDjc8e5qo0zE,823
|
|
135
138
|
latitudesh_python_sdk/models/security.py,sha256=cTHi_FcNOdS1PRTOp2YoQKOQZf9_61_6R_MjP7nUUz0,710
|
|
136
|
-
latitudesh_python_sdk/models/server.py,sha256=
|
|
139
|
+
latitudesh_python_sdk/models/server.py,sha256=FEoVlh1A58EEHL9MQgE7CVilsGTmEFnq-ma8OLFM1TQ,1354
|
|
137
140
|
latitudesh_python_sdk/models/server_action.py,sha256=3bYvzeUDodyx8gn-7I464OopqQcWaFq7QRH_jqcfxkc,1182
|
|
138
|
-
latitudesh_python_sdk/models/server_data.py,sha256=
|
|
141
|
+
latitudesh_python_sdk/models/server_data.py,sha256=_UpxYyzdY1IrzAG8xvRgyVRoxn8F_KJjFpH0xdRQY-8,6478
|
|
139
142
|
latitudesh_python_sdk/models/server_exit_rescue_modeop.py,sha256=-XYxukzZoIBS-90D512U1R9T-6rckWChhmvQa2I3od4,520
|
|
140
143
|
latitudesh_python_sdk/models/server_lockop.py,sha256=7V-bd0-XGTrSWr-BMb7Y8SP5m4Q_uOw9vmHOcuIZvLc,500
|
|
144
|
+
latitudesh_python_sdk/models/server_region_resource_data.py,sha256=7MlyLH38KLCjbKO1Q6wBUGyr20jKMkG3SVpVFakKnNQ,894
|
|
141
145
|
latitudesh_python_sdk/models/server_rescue.py,sha256=I6IhneAu57_cXbbKd07LJUfmHZpH07yR7ecOdDi_vaw,508
|
|
142
146
|
latitudesh_python_sdk/models/server_schedule_deletion.py,sha256=g3Z-uuIjacKYSnkIRJmjTkSPQTbV3npOOFzjJ6WkAVM,1236
|
|
143
147
|
latitudesh_python_sdk/models/server_schedule_deletionop.py,sha256=JxhZYsW-ssRLjHx8A38xV23UVVYsJuR9swEwe9rYY5E,524
|
|
@@ -162,7 +166,7 @@ latitudesh_python_sdk/models/update_firewallop.py,sha256=QPVQu-NxDDtZTX421WaUgCW
|
|
|
162
166
|
latitudesh_python_sdk/models/update_plans_bandwidthop.py,sha256=Rav_DoIZv2rl8u8dYCye63s3bjXTeppIabkcnnTg7jY,1561
|
|
163
167
|
latitudesh_python_sdk/models/update_projectop.py,sha256=c4aI_MMuDHhKydozQtB8-RsqKM-7zBHwlYY8CHN7NUI,2589
|
|
164
168
|
latitudesh_python_sdk/models/update_server_deploy_configop.py,sha256=1zOmXz2MhEc9fnv9LAcmUdspFIp84ZKlvUO9YiNSbdk,4279
|
|
165
|
-
latitudesh_python_sdk/models/update_serverop.py,sha256=
|
|
169
|
+
latitudesh_python_sdk/models/update_serverop.py,sha256=A5yckMWSTWYpN4JsjFFvhfvQ4oLBRCWrkyoRwScWwgA,3336
|
|
166
170
|
latitudesh_python_sdk/models/update_tagop.py,sha256=5UHXez7lJLaSEZSjQ1pCiVvwTzv-SzrPNZLV1phCu-8,1858
|
|
167
171
|
latitudesh_python_sdk/models/update_virtual_networkop.py,sha256=mW_HawvzQbdT34EuxTKCgpzkXEW1tgcyls0uHJSyzMQ,2059
|
|
168
172
|
latitudesh_python_sdk/models/user.py,sha256=BinztXbbUc3n2gwgR0HV02qkyVnWhgh0DWQOW9wB6FQ,1446
|
|
@@ -175,7 +179,7 @@ latitudesh_python_sdk/models/user_update.py,sha256=MA4WnCCNbkyyLMlo30K890F_FU2QT
|
|
|
175
179
|
latitudesh_python_sdk/models/virtual_machine.py,sha256=fAIqBGE8Rn6cVqxSQrNgHN8yanPC_NMhzTgZ_gsNbtU,610
|
|
176
180
|
latitudesh_python_sdk/models/virtual_machine_payload.py,sha256=9ab21MZ1yoa2apeXcaYJV0DeZNxc1j5jqWePspOhZ8g,1139
|
|
177
181
|
latitudesh_python_sdk/models/virtual_machine_plans.py,sha256=ICTyo_4wcUOU6oUhX0tkFNU4jfmiGmPFjdAjL1gqAWU,4547
|
|
178
|
-
latitudesh_python_sdk/models/virtual_network.py,sha256=
|
|
182
|
+
latitudesh_python_sdk/models/virtual_network.py,sha256=Ss3lFvAq5VfSrKLRYPRerXvBxcAmLOVTFC6-PN7AbTQ,3354
|
|
179
183
|
latitudesh_python_sdk/models/virtual_network1.py,sha256=K2pCIsxpirc3-2wxHvnZDRf9VEbfmisyHqWVIt1QfXY,2563
|
|
180
184
|
latitudesh_python_sdk/models/virtual_network_assignment.py,sha256=KQyhQcNP6atRo_0sVzJ9rCaI0Gy7VNftBDV1CTEg1zA,2035
|
|
181
185
|
latitudesh_python_sdk/models/virtual_network_assignment_data.py,sha256=nMsJhFY7oxGs26NLXnkARnYeM70sIvPI8T9v2pTJFJI,1842
|
|
@@ -184,26 +188,26 @@ latitudesh_python_sdk/models/virtual_network_data.py,sha256=xrIBGqlK5Wl-QaGP1G3p
|
|
|
184
188
|
latitudesh_python_sdk/models/virtual_networks.py,sha256=CInkU44JPaUKAuodEGNMZEvmVkX7SsAYnwvAkJLvz6I,724
|
|
185
189
|
latitudesh_python_sdk/models/vpn_session_data_with_password.py,sha256=KxynuipC9LfmxhDLyhVVFtuYZfx5LTO647RQu1R-M50,2086
|
|
186
190
|
latitudesh_python_sdk/models/vpn_session_with_password.py,sha256=teCRCeVcGY9HQ44iFK4ppnk1-zPIeJKiHoUiG4R63II,568
|
|
187
|
-
latitudesh_python_sdk/operatingsystems_sdk.py,sha256=
|
|
188
|
-
latitudesh_python_sdk/plans.py,sha256=
|
|
189
|
-
latitudesh_python_sdk/privatenetworks.py,sha256=
|
|
190
|
-
latitudesh_python_sdk/projects_sdk.py,sha256=
|
|
191
|
+
latitudesh_python_sdk/operatingsystems_sdk.py,sha256=tUtycP8icwbVhWSLChrxfNrMIqTvpSp5UDXsas523Zo,9407
|
|
192
|
+
latitudesh_python_sdk/plans.py,sha256=mNIHx7D59oKXSI1jwp85NdhxwaixWg5J-6dvzVKE_eM,46795
|
|
193
|
+
latitudesh_python_sdk/privatenetworks.py,sha256=0SL2EC8DO9_vt4Y-l1cLfmzpbelaUNEqEqnj-9WsIS8,65775
|
|
194
|
+
latitudesh_python_sdk/projects_sdk.py,sha256=6hyjIyMzrUms4ZpoCpEDyor6vnapIkLy7ec6ntN0Ss8,35305
|
|
191
195
|
latitudesh_python_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
192
|
-
latitudesh_python_sdk/regions_sdk.py,sha256=
|
|
193
|
-
latitudesh_python_sdk/roles.py,sha256=
|
|
196
|
+
latitudesh_python_sdk/regions_sdk.py,sha256=kQA8wTFtcRwWmyeF6nlE1N3d8D7R2LkEsEqGK9U1R5A,16012
|
|
197
|
+
latitudesh_python_sdk/roles.py,sha256=r3NQL0i-ObiZA-LMtV8xWYJtA_mGuoiKKYY-w9mxE8k,15771
|
|
194
198
|
latitudesh_python_sdk/sdk.py,sha256=-Etsnl9l5H5tblAyWT94kOgn5sCe4AFw7VnCulO-plk,10431
|
|
195
199
|
latitudesh_python_sdk/sdkconfiguration.py,sha256=_6r2VPKUhg-vgvd3BKTCSXqFhI9UgZ3Y6fZJlML4E3A,1742
|
|
196
|
-
latitudesh_python_sdk/servers_sdk.py,sha256=
|
|
197
|
-
latitudesh_python_sdk/sshkeys_sdk.py,sha256=
|
|
198
|
-
latitudesh_python_sdk/storage.py,sha256=
|
|
199
|
-
latitudesh_python_sdk/tags.py,sha256=
|
|
200
|
-
latitudesh_python_sdk/teams_sdk.py,sha256=
|
|
201
|
-
latitudesh_python_sdk/teamsmembers.py,sha256
|
|
202
|
-
latitudesh_python_sdk/traffic_sdk.py,sha256=
|
|
200
|
+
latitudesh_python_sdk/servers_sdk.py,sha256=IMpaAZDk83Cy0RvTlZG5Gjn-ZfoOqTI9YI6yEr504Ag,145286
|
|
201
|
+
latitudesh_python_sdk/sshkeys_sdk.py,sha256=ASu4DPsP3HAmi551wmwE3Q8b3M9Np6_pvS8lJQ7SdQY,73660
|
|
202
|
+
latitudesh_python_sdk/storage.py,sha256=RuSh6gyI1GL00fsGfn7ePguqlVuQH9nBJ7fWRxh5-3I,29070
|
|
203
|
+
latitudesh_python_sdk/tags.py,sha256=DQnBGI-rj9xtZ3XXLr3aVH3D1-JrjgCZqKlZsjNTBj4,26941
|
|
204
|
+
latitudesh_python_sdk/teams_sdk.py,sha256=e6E7_bhpH1fGXlDytdpbKdX9tHt-L_L0HfhoOZ7hj_A,21830
|
|
205
|
+
latitudesh_python_sdk/teamsmembers.py,sha256=zXlovtJMUGvJQxLyD6Fspb3zcW9QJuYh6dW7AdEuM5o,23376
|
|
206
|
+
latitudesh_python_sdk/traffic_sdk.py,sha256=q4_cszDhDk9SHvMPDjOEpEnoKrFeotIv2qpzvboaCY4,15063
|
|
203
207
|
latitudesh_python_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
204
208
|
latitudesh_python_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
205
|
-
latitudesh_python_sdk/userdata_sdk.py,sha256=
|
|
206
|
-
latitudesh_python_sdk/userprofile.py,sha256=
|
|
209
|
+
latitudesh_python_sdk/userdata_sdk.py,sha256=uP5QtIg_itfiyf4o_b1w1BScHXp8MbjyXdwsVAhaozE,74205
|
|
210
|
+
latitudesh_python_sdk/userprofile.py,sha256=Ibq8lYkznj-MJoeDFDf5Zv83rvw_PZh9A10MbhQ1nnA,20983
|
|
207
211
|
latitudesh_python_sdk/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
|
|
208
212
|
latitudesh_python_sdk/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
|
|
209
213
|
latitudesh_python_sdk/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
@@ -217,12 +221,13 @@ latitudesh_python_sdk/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJya
|
|
|
217
221
|
latitudesh_python_sdk/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
|
218
222
|
latitudesh_python_sdk/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
|
219
223
|
latitudesh_python_sdk/utils/security.py,sha256=0lGVs6tLgl2Lkp3GRML9v35kE6DD6pmE1QrRpieSEEE,6011
|
|
220
|
-
latitudesh_python_sdk/utils/serializers.py,sha256=
|
|
224
|
+
latitudesh_python_sdk/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
|
|
225
|
+
latitudesh_python_sdk/utils/unmarshal_json_response.py,sha256=RHG27X5aZ2nWb1pQOpnHF0uvlyxRq7OCmHH5P0nDyY4,597
|
|
221
226
|
latitudesh_python_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
222
227
|
latitudesh_python_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
223
|
-
latitudesh_python_sdk/virtualmachines.py,sha256=
|
|
224
|
-
latitudesh_python_sdk/vpnsessions.py,sha256=
|
|
225
|
-
latitudesh_python_sdk-2.0.
|
|
226
|
-
latitudesh_python_sdk-2.0.
|
|
227
|
-
latitudesh_python_sdk-2.0.
|
|
228
|
-
latitudesh_python_sdk-2.0.
|
|
228
|
+
latitudesh_python_sdk/virtualmachines.py,sha256=mORIqZJWAyPN-0zOJDxdUEkU9YWfJdfIGpFP5QliCMQ,26574
|
|
229
|
+
latitudesh_python_sdk/vpnsessions.py,sha256=M3ruX9k1vdL7-_E_mZPrhlvY0XbDBcjJZ9LU1HIMUTw,29615
|
|
230
|
+
latitudesh_python_sdk-2.0.1.dist-info/LICENSE,sha256=cTh9W7-NHKTevDYJJSvZjNHAtXhzT2BaMUap_MUmlyY,1068
|
|
231
|
+
latitudesh_python_sdk-2.0.1.dist-info/METADATA,sha256=qrq-h4SimGmpIjtWUmLLcGY--11yb0sRVhdytAai1-U,40699
|
|
232
|
+
latitudesh_python_sdk-2.0.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
233
|
+
latitudesh_python_sdk-2.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|