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
|
@@ -5,61 +5,105 @@
|
|
|
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
|
|
22
|
-
from ._operations import
|
|
23
|
-
from ._operations import
|
|
24
|
-
from ._operations import
|
|
25
|
-
from ._operations import
|
|
26
|
-
from ._operations import
|
|
27
|
-
from ._operations import
|
|
28
|
-
from ._operations import
|
|
29
|
-
from ._operations import
|
|
30
|
-
from ._operations import
|
|
31
|
-
from ._operations import
|
|
32
|
-
from ._operations import
|
|
33
|
-
from ._operations import
|
|
34
|
-
from ._operations import
|
|
35
|
-
from ._operations import
|
|
36
|
-
from ._operations import
|
|
37
|
-
from ._operations import
|
|
38
|
-
from ._operations import
|
|
39
|
-
from ._operations import
|
|
40
|
-
from ._operations import
|
|
41
|
-
from ._operations import
|
|
42
|
-
from ._operations import
|
|
43
|
-
from ._operations import
|
|
44
|
-
from ._operations import
|
|
45
|
-
from ._operations import
|
|
46
|
-
from ._operations import
|
|
47
|
-
from ._operations import
|
|
48
|
-
from ._operations import
|
|
49
|
-
from ._operations import
|
|
50
|
-
from ._operations import
|
|
51
|
-
from ._operations import
|
|
52
|
-
from ._operations import
|
|
53
|
-
from ._operations import
|
|
54
|
-
from ._operations import
|
|
55
|
-
from ._operations import
|
|
56
|
-
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 MaterialCertificateChecksOperations # type: ignore
|
|
16
|
+
from ._operations import MaterialCertificateSpecificationsOperations # type: ignore
|
|
17
|
+
from ._operations import MaterialCertificateTypesOperations # type: ignore
|
|
18
|
+
from ._operations import AlertsOperations # type: ignore
|
|
19
|
+
from ._operations import AssetsOperations # type: ignore
|
|
20
|
+
from ._operations import AzureRegionsOperations # type: ignore
|
|
21
|
+
from ._operations import CdfOperations # type: ignore
|
|
22
|
+
from ._operations import CncFileTransferOperations # type: ignore
|
|
23
|
+
from ._operations import CncSetupOperations # type: ignore
|
|
24
|
+
from ._operations import CncSetupAgentOperations # type: ignore
|
|
25
|
+
from ._operations import CncSetupFixturesOperations # type: ignore
|
|
26
|
+
from ._operations import CountriesOperations # type: ignore
|
|
27
|
+
from ._operations import CredentialsOperations # type: ignore
|
|
28
|
+
from ._operations import CustomersOperations # type: ignore
|
|
29
|
+
from ._operations import DocumentsOperations # type: ignore
|
|
30
|
+
from ._operations import DocumentTypesOperations # type: ignore
|
|
31
|
+
from ._operations import DowntimeReasonsOperations # type: ignore
|
|
32
|
+
from ._operations import DowntimeReasonsAdminOperations # type: ignore
|
|
33
|
+
from ._operations import DowntimeReasonsAdminResourceOperations # type: ignore
|
|
34
|
+
from ._operations import DowntimeReasonsResourceOperations # type: ignore
|
|
35
|
+
from ._operations import CompaniesOperations # type: ignore
|
|
36
|
+
from ._operations import CustomerOrdersOperations # type: ignore
|
|
37
|
+
from ._operations import ErpUsersOperations # type: ignore
|
|
38
|
+
from ._operations import ProductionPoolsOperations # type: ignore
|
|
39
|
+
from ._operations import ResourcesOperations # type: ignore
|
|
40
|
+
from ._operations import WorkordersOperations # type: ignore
|
|
41
|
+
from ._operations import ExternalOperations # type: ignore
|
|
42
|
+
from ._operations import ExternalAccessOperations # type: ignore
|
|
43
|
+
from ._operations import ExternalServicesOperations # type: ignore
|
|
44
|
+
from ._operations import GuestsOperations # type: ignore
|
|
45
|
+
from ._operations import ElectricalOperations # type: ignore
|
|
46
|
+
from ._operations import WeldingOperations # type: ignore
|
|
47
|
+
from ._operations import KpiOperations # type: ignore
|
|
48
|
+
from ._operations import KpiAdminOperations # type: ignore
|
|
49
|
+
from ._operations import KpiAdminResourceOperations # type: ignore
|
|
50
|
+
from ._operations import KpiResourceOperations # type: ignore
|
|
51
|
+
from ._operations import LinksOperations # type: ignore
|
|
52
|
+
from ._operations import MachineAlarmsOperations # type: ignore
|
|
53
|
+
from ._operations import MachinesOperations # type: ignore
|
|
54
|
+
from ._operations import MachineUtilizationOperations # type: ignore
|
|
55
|
+
from ._operations import MeOperations # type: ignore
|
|
56
|
+
from ._operations import MeasurementFormSchemasAdminOperations # type: ignore
|
|
57
|
+
from ._operations import MeasurementFormSchemasOperations # type: ignore
|
|
58
|
+
from ._operations import MeasurementFormSettingsOperations # type: ignore
|
|
59
|
+
from ._operations import MeasurementFormsInstancesAdminOperations # type: ignore
|
|
60
|
+
from ._operations import MeasurementFormsInstancesOperations # type: ignore
|
|
61
|
+
from ._operations import MeasurementFormsInstancesInstanceAdminOperations # type: ignore
|
|
62
|
+
from ._operations import MeasuringToolsOperations # type: ignore
|
|
63
|
+
from ._operations import InventoryOperations # type: ignore
|
|
64
|
+
from ._operations import MesOperations # type: ignore
|
|
65
|
+
from ._operations import MesDocumentsOperations # type: ignore
|
|
66
|
+
from ._operations import MesEngineeringChangeOrdersOperations # type: ignore
|
|
67
|
+
from ._operations import MesLinksOperations # type: ignore
|
|
68
|
+
from ._operations import MesOrMoveOperations # type: ignore
|
|
69
|
+
from ._operations import MesProductionOrderOperations # type: ignore
|
|
70
|
+
from ._operations import MesProductionScheduleOperations # type: ignore
|
|
71
|
+
from ._operations import MesProjectsOperations # type: ignore
|
|
72
|
+
from ._operations import MesPurchaseOrderOperations # type: ignore
|
|
73
|
+
from ._operations import MesResourceOperations # type: ignore
|
|
74
|
+
from ._operations import MoveBookingOperations # type: ignore
|
|
75
|
+
from ._operations import MoveLocationsOperations # type: ignore
|
|
76
|
+
from ._operations import MoveMaterialsOperations # type: ignore
|
|
77
|
+
from ._operations import MoveNotificationsOperations # type: ignore
|
|
78
|
+
from ._operations import MoveParcelsOperations # type: ignore
|
|
79
|
+
from ._operations import MoveTrackingOperations # type: ignore
|
|
80
|
+
from ._operations import ParcelCategoryOperations # type: ignore
|
|
81
|
+
from ._operations import MrbOperations # type: ignore
|
|
82
|
+
from ._operations import OperatorCalculatorsOperations # type: ignore
|
|
83
|
+
from ._operations import PowerOperations # type: ignore
|
|
84
|
+
from ._operations import PresentationOperations # type: ignore
|
|
85
|
+
from ._operations import PulseOperations # type: ignore
|
|
86
|
+
from ._operations import ResourceUtilizationOperations # type: ignore
|
|
87
|
+
from ._operations import SuppliersOperations # type: ignore
|
|
88
|
+
from ._operations import SustainabilityOperations # type: ignore
|
|
89
|
+
from ._operations import SystemHealthDashboardOperations # type: ignore
|
|
90
|
+
from ._operations import TraceOperations # type: ignore
|
|
91
|
+
from ._operations import UploadOperations # type: ignore
|
|
92
|
+
from ._operations import UserAppSettingsOperations # type: ignore
|
|
93
|
+
from ._operations import UsersOperations # type: ignore
|
|
94
|
+
from ._operations import UtilizationOperations # type: ignore
|
|
95
|
+
from ._operations import WorkspacesOperations # type: ignore
|
|
96
|
+
from ._operations import WorkspaceTemplatesAdminOperations # type: ignore
|
|
97
|
+
from ._operations import WorkspaceTemplatesOperations # type: ignore
|
|
57
98
|
|
|
58
99
|
from ._patch import __all__ as _patch_all
|
|
59
|
-
from ._patch import *
|
|
100
|
+
from ._patch import *
|
|
60
101
|
from ._patch import patch_sdk as _patch_sdk
|
|
61
102
|
|
|
62
103
|
__all__ = [
|
|
104
|
+
"MaterialCertificateChecksOperations",
|
|
105
|
+
"MaterialCertificateSpecificationsOperations",
|
|
106
|
+
"MaterialCertificateTypesOperations",
|
|
63
107
|
"AlertsOperations",
|
|
64
108
|
"AssetsOperations",
|
|
65
109
|
"AzureRegionsOperations",
|
|
@@ -67,47 +111,79 @@ __all__ = [
|
|
|
67
111
|
"CncFileTransferOperations",
|
|
68
112
|
"CncSetupOperations",
|
|
69
113
|
"CncSetupAgentOperations",
|
|
114
|
+
"CncSetupFixturesOperations",
|
|
70
115
|
"CountriesOperations",
|
|
116
|
+
"CredentialsOperations",
|
|
71
117
|
"CustomersOperations",
|
|
72
118
|
"DocumentsOperations",
|
|
73
119
|
"DocumentTypesOperations",
|
|
120
|
+
"DowntimeReasonsOperations",
|
|
121
|
+
"DowntimeReasonsAdminOperations",
|
|
122
|
+
"DowntimeReasonsAdminResourceOperations",
|
|
123
|
+
"DowntimeReasonsResourceOperations",
|
|
74
124
|
"CompaniesOperations",
|
|
75
125
|
"CustomerOrdersOperations",
|
|
126
|
+
"ErpUsersOperations",
|
|
127
|
+
"ProductionPoolsOperations",
|
|
76
128
|
"ResourcesOperations",
|
|
77
129
|
"WorkordersOperations",
|
|
78
130
|
"ExternalOperations",
|
|
79
131
|
"ExternalAccessOperations",
|
|
80
132
|
"ExternalServicesOperations",
|
|
133
|
+
"GuestsOperations",
|
|
81
134
|
"ElectricalOperations",
|
|
82
135
|
"WeldingOperations",
|
|
136
|
+
"KpiOperations",
|
|
137
|
+
"KpiAdminOperations",
|
|
138
|
+
"KpiAdminResourceOperations",
|
|
139
|
+
"KpiResourceOperations",
|
|
83
140
|
"LinksOperations",
|
|
84
141
|
"MachineAlarmsOperations",
|
|
85
142
|
"MachinesOperations",
|
|
86
143
|
"MachineUtilizationOperations",
|
|
87
144
|
"MeOperations",
|
|
145
|
+
"MeasurementFormSchemasAdminOperations",
|
|
88
146
|
"MeasurementFormSchemasOperations",
|
|
147
|
+
"MeasurementFormSettingsOperations",
|
|
148
|
+
"MeasurementFormsInstancesAdminOperations",
|
|
89
149
|
"MeasurementFormsInstancesOperations",
|
|
150
|
+
"MeasurementFormsInstancesInstanceAdminOperations",
|
|
90
151
|
"MeasuringToolsOperations",
|
|
152
|
+
"InventoryOperations",
|
|
91
153
|
"MesOperations",
|
|
92
154
|
"MesDocumentsOperations",
|
|
155
|
+
"MesEngineeringChangeOrdersOperations",
|
|
93
156
|
"MesLinksOperations",
|
|
157
|
+
"MesOrMoveOperations",
|
|
94
158
|
"MesProductionOrderOperations",
|
|
95
159
|
"MesProductionScheduleOperations",
|
|
96
160
|
"MesProjectsOperations",
|
|
161
|
+
"MesPurchaseOrderOperations",
|
|
97
162
|
"MesResourceOperations",
|
|
163
|
+
"MoveBookingOperations",
|
|
164
|
+
"MoveLocationsOperations",
|
|
165
|
+
"MoveMaterialsOperations",
|
|
166
|
+
"MoveNotificationsOperations",
|
|
167
|
+
"MoveParcelsOperations",
|
|
168
|
+
"MoveTrackingOperations",
|
|
169
|
+
"ParcelCategoryOperations",
|
|
98
170
|
"MrbOperations",
|
|
99
171
|
"OperatorCalculatorsOperations",
|
|
100
172
|
"PowerOperations",
|
|
101
173
|
"PresentationOperations",
|
|
174
|
+
"PulseOperations",
|
|
175
|
+
"ResourceUtilizationOperations",
|
|
102
176
|
"SuppliersOperations",
|
|
103
177
|
"SustainabilityOperations",
|
|
104
178
|
"SystemHealthDashboardOperations",
|
|
105
179
|
"TraceOperations",
|
|
106
180
|
"UploadOperations",
|
|
181
|
+
"UserAppSettingsOperations",
|
|
107
182
|
"UsersOperations",
|
|
183
|
+
"UtilizationOperations",
|
|
108
184
|
"WorkspacesOperations",
|
|
109
185
|
"WorkspaceTemplatesAdminOperations",
|
|
110
186
|
"WorkspaceTemplatesOperations",
|
|
111
187
|
]
|
|
112
|
-
__all__.extend([p for p in _patch_all if p not in __all__])
|
|
188
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
|
113
189
|
_patch_sdk()
|