ignos-internal-api-client 20240926.0.10449__py3-none-any.whl → 20250905.0.12525__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/internal/api/client/__init__.py +9 -3
- ignos/internal/api/client/_client.py +2 -2
- ignos/internal/api/client/_configuration.py +1 -2
- ignos/internal/api/client/_patch.py +7 -6
- ignos/internal/api/client/_utils/__init__.py +6 -0
- ignos/internal/api/client/{_serialization.py → _utils/serialization.py} +70 -155
- ignos/internal/api/client/_version.py +1 -1
- ignos/internal/api/client/aio/__init__.py +9 -3
- ignos/internal/api/client/aio/_client.py +2 -2
- ignos/internal/api/client/aio/_configuration.py +1 -2
- ignos/internal/api/client/aio/_patch.py +7 -6
- ignos/internal/api/client/aio/operations/__init__.py +21 -15
- ignos/internal/api/client/aio/operations/_operations.py +191 -181
- ignos/internal/api/client/aio/operations/_patch.py +7 -6
- ignos/internal/api/client/models/__init__.py +58 -47
- ignos/internal/api/client/models/_models.py +38 -11
- ignos/internal/api/client/models/_patch.py +7 -6
- ignos/internal/api/client/operations/__init__.py +21 -15
- ignos/internal/api/client/operations/_operations.py +191 -174
- ignos/internal/api/client/operations/_patch.py +7 -6
- ignos_internal_api_client-20250905.0.12525.dist-info/METADATA +17 -0
- ignos_internal_api_client-20250905.0.12525.dist-info/RECORD +29 -0
- {ignos_internal_api_client-20240926.0.10449.dist-info → ignos_internal_api_client-20250905.0.12525.dist-info}/WHEEL +1 -1
- ignos_internal_api_client-20240926.0.10449.dist-info/METADATA +0 -13
- ignos_internal_api_client-20240926.0.10449.dist-info/RECORD +0 -28
- {ignos_internal_api_client-20240926.0.10449.dist-info → ignos_internal_api_client-20250905.0.12525.dist-info}/top_level.txt +0 -0
|
@@ -5,12 +5,18 @@
|
|
|
5
5
|
# Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
6
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
|
+
# pylint: disable=wrong-import-position
|
|
8
9
|
|
|
9
|
-
from
|
|
10
|
+
from typing import TYPE_CHECKING
|
|
11
|
+
|
|
12
|
+
if TYPE_CHECKING:
|
|
13
|
+
from ._patch import * # pylint: disable=unused-wildcard-import
|
|
14
|
+
|
|
15
|
+
from ._client import IgnosInternalApi # type: ignore
|
|
10
16
|
|
|
11
17
|
try:
|
|
12
18
|
from ._patch import __all__ as _patch_all
|
|
13
|
-
from ._patch import *
|
|
19
|
+
from ._patch import *
|
|
14
20
|
except ImportError:
|
|
15
21
|
_patch_all = []
|
|
16
22
|
from ._patch import patch_sdk as _patch_sdk
|
|
@@ -18,6 +24,6 @@ from ._patch import patch_sdk as _patch_sdk
|
|
|
18
24
|
__all__ = [
|
|
19
25
|
"IgnosInternalApi",
|
|
20
26
|
]
|
|
21
|
-
__all__.extend([p for p in _patch_all if p not in __all__])
|
|
27
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
|
22
28
|
|
|
23
29
|
_patch_sdk()
|
|
@@ -15,7 +15,7 @@ from azure.core.pipeline import policies
|
|
|
15
15
|
from azure.core.rest import AsyncHttpResponse, HttpRequest
|
|
16
16
|
|
|
17
17
|
from .. import models as _models
|
|
18
|
-
from ..
|
|
18
|
+
from .._utils.serialization import Deserializer, Serializer
|
|
19
19
|
from ._configuration import IgnosInternalApiConfiguration
|
|
20
20
|
from .operations import (
|
|
21
21
|
AppsOperations,
|
|
@@ -34,7 +34,6 @@ from .operations import (
|
|
|
34
34
|
)
|
|
35
35
|
|
|
36
36
|
if TYPE_CHECKING:
|
|
37
|
-
# pylint: disable=unused-import,ungrouped-imports
|
|
38
37
|
from azure.core.credentials_async import AsyncTokenCredential
|
|
39
38
|
|
|
40
39
|
|
|
@@ -77,6 +76,7 @@ class IgnosInternalApi: # pylint: disable=client-accepts-api-version-keyword,to
|
|
|
77
76
|
|
|
78
77
|
def __init__(self, credential: "AsyncTokenCredential", *, endpoint: str = "", **kwargs: Any) -> None:
|
|
79
78
|
self._config = IgnosInternalApiConfiguration(credential=credential, **kwargs)
|
|
79
|
+
|
|
80
80
|
_policies = kwargs.pop("policies", None)
|
|
81
81
|
if _policies is None:
|
|
82
82
|
_policies = [
|
|
@@ -13,11 +13,10 @@ from azure.core.pipeline import policies
|
|
|
13
13
|
from .._version import VERSION
|
|
14
14
|
|
|
15
15
|
if TYPE_CHECKING:
|
|
16
|
-
# pylint: disable=unused-import,ungrouped-imports
|
|
17
16
|
from azure.core.credentials_async import AsyncTokenCredential
|
|
18
17
|
|
|
19
18
|
|
|
20
|
-
class IgnosInternalApiConfiguration: # pylint: disable=too-many-instance-attributes
|
|
19
|
+
class IgnosInternalApiConfiguration: # pylint: disable=too-many-instance-attributes
|
|
21
20
|
"""Configuration for IgnosInternalApi.
|
|
22
21
|
|
|
23
22
|
Note that all parameters used to create this instance are saved as instance
|
|
@@ -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():
|
|
@@ -5,23 +5,29 @@
|
|
|
5
5
|
# Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
6
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
|
+
# pylint: disable=wrong-import-position
|
|
8
9
|
|
|
9
|
-
from
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
from .
|
|
13
|
-
|
|
14
|
-
from ._operations import
|
|
15
|
-
from ._operations import
|
|
16
|
-
from ._operations import
|
|
17
|
-
from ._operations import
|
|
18
|
-
from ._operations import
|
|
19
|
-
from ._operations import
|
|
20
|
-
from ._operations import
|
|
21
|
-
from ._operations import
|
|
10
|
+
from typing import TYPE_CHECKING
|
|
11
|
+
|
|
12
|
+
if TYPE_CHECKING:
|
|
13
|
+
from ._patch import * # pylint: disable=unused-wildcard-import
|
|
14
|
+
|
|
15
|
+
from ._operations import AppsOperations # type: ignore
|
|
16
|
+
from ._operations import AzureRegionsOperations # type: ignore
|
|
17
|
+
from ._operations import CdfClustersOperations # type: ignore
|
|
18
|
+
from ._operations import CountriesOperations # type: ignore
|
|
19
|
+
from ._operations import CustomersOperations # type: ignore
|
|
20
|
+
from ._operations import DatabasesOperations # type: ignore
|
|
21
|
+
from ._operations import ErpSyncOperations # type: ignore
|
|
22
|
+
from ._operations import PowerOperations # type: ignore
|
|
23
|
+
from ._operations import PresentationOperations # type: ignore
|
|
24
|
+
from ._operations import SustainabilitySetupOperations # type: ignore
|
|
25
|
+
from ._operations import TenantCredentialsOperations # type: ignore
|
|
26
|
+
from ._operations import TenantsOperations # type: ignore
|
|
27
|
+
from ._operations import UserOperations # type: ignore
|
|
22
28
|
|
|
23
29
|
from ._patch import __all__ as _patch_all
|
|
24
|
-
from ._patch import *
|
|
30
|
+
from ._patch import *
|
|
25
31
|
from ._patch import patch_sdk as _patch_sdk
|
|
26
32
|
|
|
27
33
|
__all__ = [
|
|
@@ -39,5 +45,5 @@ __all__ = [
|
|
|
39
45
|
"TenantsOperations",
|
|
40
46
|
"UserOperations",
|
|
41
47
|
]
|
|
42
|
-
__all__.extend([p for p in _patch_all if p not in __all__])
|
|
48
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
|
43
49
|
_patch_sdk()
|