ignos-api-client 2024.3.12.8830__py3-none-any.whl → 20260205.5.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.
- ignos/api/client/__init__.py +9 -3
- ignos/api/client/_client.py +194 -3
- ignos/api/client/_configuration.py +0 -1
- ignos/api/client/_patch.py +7 -6
- ignos/api/client/_utils/__init__.py +6 -0
- ignos/api/client/{_serialization.py → _utils/serialization.py} +324 -281
- ignos/api/client/_utils/utils.py +17 -0
- ignos/api/client/_version.py +1 -1
- ignos/api/client/aio/__init__.py +9 -3
- ignos/api/client/aio/_client.py +194 -3
- ignos/api/client/aio/_configuration.py +0 -1
- ignos/api/client/aio/_patch.py +7 -6
- ignos/api/client/aio/operations/__init__.py +126 -50
- ignos/api/client/aio/operations/_operations.py +30030 -12259
- ignos/api/client/aio/operations/_patch.py +7 -6
- ignos/api/client/models/__init__.py +1169 -501
- ignos/api/client/models/_enums.py +456 -1
- ignos/api/client/models/_models.py +35403 -17732
- ignos/api/client/models/_patch.py +7 -6
- ignos/api/client/operations/__init__.py +126 -50
- ignos/api/client/operations/_operations.py +37835 -15525
- ignos/api/client/operations/_patch.py +7 -6
- ignos_api_client-20260205.5.1.dist-info/METADATA +17 -0
- ignos_api_client-20260205.5.1.dist-info/RECORD +29 -0
- {ignos_api_client-2024.3.12.8830.dist-info → ignos_api_client-20260205.5.1.dist-info}/WHEEL +1 -1
- ignos_api_client-2024.3.12.8830.dist-info/METADATA +0 -12
- ignos_api_client-2024.3.12.8830.dist-info/RECORD +0 -27
- {ignos_api_client-2024.3.12.8830.dist-info → ignos_api_client-20260205.5.1.dist-info}/top_level.txt +0 -0
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# --------------------------------------------------------------------------
|
|
3
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
|
5
|
+
# --------------------------------------------------------------------------
|
|
5
6
|
"""Customize generated code here.
|
|
6
7
|
|
|
7
8
|
Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
|
|
8
9
|
"""
|
|
9
|
-
from typing import List
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
__all__: list[str] = [] # Add all objects you want publicly available to users at this package level
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
def patch_sdk():
|