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
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# --------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
|
5
|
+
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
6
|
+
# --------------------------------------------------------------------------
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def raise_if_not_implemented(cls, abstract_methods):
|
|
10
|
+
not_implemented = [f for f in abstract_methods if not callable(getattr(cls, f, None))]
|
|
11
|
+
if not_implemented:
|
|
12
|
+
raise NotImplementedError(
|
|
13
|
+
"The following methods on operation group '{}' are not implemented: '{}'."
|
|
14
|
+
" Please refer to https://aka.ms/azsdk/python/dpcodegen/python/customize to learn how to customize.".format(
|
|
15
|
+
cls.__name__, "', '".join(not_implemented)
|
|
16
|
+
)
|
|
17
|
+
)
|
ignos/api/client/_version.py
CHANGED
ignos/api/client/aio/__init__.py
CHANGED
|
@@ -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 IgnosPortal # 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
|
"IgnosPortal",
|
|
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()
|
ignos/api/client/aio/_client.py
CHANGED
|
@@ -8,13 +8,14 @@
|
|
|
8
8
|
|
|
9
9
|
from copy import deepcopy
|
|
10
10
|
from typing import Any, Awaitable, TYPE_CHECKING
|
|
11
|
+
from typing_extensions import Self
|
|
11
12
|
|
|
12
13
|
from azure.core import AsyncPipelineClient
|
|
13
14
|
from azure.core.pipeline import policies
|
|
14
15
|
from azure.core.rest import AsyncHttpResponse, HttpRequest
|
|
15
16
|
|
|
16
17
|
from .. import models as _models
|
|
17
|
-
from ..
|
|
18
|
+
from .._utils.serialization import Deserializer, Serializer
|
|
18
19
|
from ._configuration import IgnosPortalConfiguration
|
|
19
20
|
from .operations import (
|
|
20
21
|
AlertsOperations,
|
|
@@ -23,43 +24,78 @@ from .operations import (
|
|
|
23
24
|
CdfOperations,
|
|
24
25
|
CncFileTransferOperations,
|
|
25
26
|
CncSetupAgentOperations,
|
|
27
|
+
CncSetupFixturesOperations,
|
|
26
28
|
CncSetupOperations,
|
|
27
29
|
CompaniesOperations,
|
|
28
30
|
CountriesOperations,
|
|
31
|
+
CredentialsOperations,
|
|
29
32
|
CustomerOrdersOperations,
|
|
30
33
|
CustomersOperations,
|
|
31
34
|
DocumentTypesOperations,
|
|
32
35
|
DocumentsOperations,
|
|
36
|
+
DowntimeReasonsAdminOperations,
|
|
37
|
+
DowntimeReasonsAdminResourceOperations,
|
|
38
|
+
DowntimeReasonsOperations,
|
|
39
|
+
DowntimeReasonsResourceOperations,
|
|
33
40
|
ElectricalOperations,
|
|
41
|
+
ErpUsersOperations,
|
|
34
42
|
ExternalAccessOperations,
|
|
35
43
|
ExternalOperations,
|
|
36
44
|
ExternalServicesOperations,
|
|
45
|
+
GuestsOperations,
|
|
46
|
+
InventoryOperations,
|
|
47
|
+
KpiAdminOperations,
|
|
48
|
+
KpiAdminResourceOperations,
|
|
49
|
+
KpiOperations,
|
|
50
|
+
KpiResourceOperations,
|
|
37
51
|
LinksOperations,
|
|
38
52
|
MachineAlarmsOperations,
|
|
39
53
|
MachineUtilizationOperations,
|
|
40
54
|
MachinesOperations,
|
|
55
|
+
MaterialCertificateChecksOperations,
|
|
56
|
+
MaterialCertificateSpecificationsOperations,
|
|
57
|
+
MaterialCertificateTypesOperations,
|
|
41
58
|
MeOperations,
|
|
59
|
+
MeasurementFormSchemasAdminOperations,
|
|
42
60
|
MeasurementFormSchemasOperations,
|
|
61
|
+
MeasurementFormSettingsOperations,
|
|
62
|
+
MeasurementFormsInstancesAdminOperations,
|
|
63
|
+
MeasurementFormsInstancesInstanceAdminOperations,
|
|
43
64
|
MeasurementFormsInstancesOperations,
|
|
44
65
|
MeasuringToolsOperations,
|
|
45
66
|
MesDocumentsOperations,
|
|
67
|
+
MesEngineeringChangeOrdersOperations,
|
|
46
68
|
MesLinksOperations,
|
|
47
69
|
MesOperations,
|
|
70
|
+
MesOrMoveOperations,
|
|
48
71
|
MesProductionOrderOperations,
|
|
49
72
|
MesProductionScheduleOperations,
|
|
50
73
|
MesProjectsOperations,
|
|
74
|
+
MesPurchaseOrderOperations,
|
|
51
75
|
MesResourceOperations,
|
|
76
|
+
MoveBookingOperations,
|
|
77
|
+
MoveLocationsOperations,
|
|
78
|
+
MoveMaterialsOperations,
|
|
79
|
+
MoveNotificationsOperations,
|
|
80
|
+
MoveParcelsOperations,
|
|
81
|
+
MoveTrackingOperations,
|
|
52
82
|
MrbOperations,
|
|
53
83
|
OperatorCalculatorsOperations,
|
|
84
|
+
ParcelCategoryOperations,
|
|
54
85
|
PowerOperations,
|
|
55
86
|
PresentationOperations,
|
|
87
|
+
ProductionPoolsOperations,
|
|
88
|
+
PulseOperations,
|
|
89
|
+
ResourceUtilizationOperations,
|
|
56
90
|
ResourcesOperations,
|
|
57
91
|
SuppliersOperations,
|
|
58
92
|
SustainabilityOperations,
|
|
59
93
|
SystemHealthDashboardOperations,
|
|
60
94
|
TraceOperations,
|
|
61
95
|
UploadOperations,
|
|
96
|
+
UserAppSettingsOperations,
|
|
62
97
|
UsersOperations,
|
|
98
|
+
UtilizationOperations,
|
|
63
99
|
WeldingOperations,
|
|
64
100
|
WorkordersOperations,
|
|
65
101
|
WorkspaceTemplatesAdminOperations,
|
|
@@ -68,13 +104,22 @@ from .operations import (
|
|
|
68
104
|
)
|
|
69
105
|
|
|
70
106
|
if TYPE_CHECKING:
|
|
71
|
-
# pylint: disable=unused-import,ungrouped-imports
|
|
72
107
|
from azure.core.credentials_async import AsyncTokenCredential
|
|
73
108
|
|
|
74
109
|
|
|
75
110
|
class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
|
|
76
111
|
"""IgnosPortal.
|
|
77
112
|
|
|
113
|
+
:ivar material_certificate_checks: MaterialCertificateChecksOperations operations
|
|
114
|
+
:vartype material_certificate_checks:
|
|
115
|
+
ignos.api.client.aio.operations.MaterialCertificateChecksOperations
|
|
116
|
+
:ivar material_certificate_specifications: MaterialCertificateSpecificationsOperations
|
|
117
|
+
operations
|
|
118
|
+
:vartype material_certificate_specifications:
|
|
119
|
+
ignos.api.client.aio.operations.MaterialCertificateSpecificationsOperations
|
|
120
|
+
:ivar material_certificate_types: MaterialCertificateTypesOperations operations
|
|
121
|
+
:vartype material_certificate_types:
|
|
122
|
+
ignos.api.client.aio.operations.MaterialCertificateTypesOperations
|
|
78
123
|
:ivar alerts: AlertsOperations operations
|
|
79
124
|
:vartype alerts: ignos.api.client.aio.operations.AlertsOperations
|
|
80
125
|
:ivar assets: AssetsOperations operations
|
|
@@ -89,18 +134,36 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
89
134
|
:vartype cnc_setup: ignos.api.client.aio.operations.CncSetupOperations
|
|
90
135
|
:ivar cnc_setup_agent: CncSetupAgentOperations operations
|
|
91
136
|
:vartype cnc_setup_agent: ignos.api.client.aio.operations.CncSetupAgentOperations
|
|
137
|
+
:ivar cnc_setup_fixtures: CncSetupFixturesOperations operations
|
|
138
|
+
:vartype cnc_setup_fixtures: ignos.api.client.aio.operations.CncSetupFixturesOperations
|
|
92
139
|
:ivar countries: CountriesOperations operations
|
|
93
140
|
:vartype countries: ignos.api.client.aio.operations.CountriesOperations
|
|
141
|
+
:ivar credentials: CredentialsOperations operations
|
|
142
|
+
:vartype credentials: ignos.api.client.aio.operations.CredentialsOperations
|
|
94
143
|
:ivar customers: CustomersOperations operations
|
|
95
144
|
:vartype customers: ignos.api.client.aio.operations.CustomersOperations
|
|
96
145
|
:ivar documents: DocumentsOperations operations
|
|
97
146
|
:vartype documents: ignos.api.client.aio.operations.DocumentsOperations
|
|
98
147
|
:ivar document_types: DocumentTypesOperations operations
|
|
99
148
|
:vartype document_types: ignos.api.client.aio.operations.DocumentTypesOperations
|
|
149
|
+
:ivar downtime_reasons: DowntimeReasonsOperations operations
|
|
150
|
+
:vartype downtime_reasons: ignos.api.client.aio.operations.DowntimeReasonsOperations
|
|
151
|
+
:ivar downtime_reasons_admin: DowntimeReasonsAdminOperations operations
|
|
152
|
+
:vartype downtime_reasons_admin: ignos.api.client.aio.operations.DowntimeReasonsAdminOperations
|
|
153
|
+
:ivar downtime_reasons_admin_resource: DowntimeReasonsAdminResourceOperations operations
|
|
154
|
+
:vartype downtime_reasons_admin_resource:
|
|
155
|
+
ignos.api.client.aio.operations.DowntimeReasonsAdminResourceOperations
|
|
156
|
+
:ivar downtime_reasons_resource: DowntimeReasonsResourceOperations operations
|
|
157
|
+
:vartype downtime_reasons_resource:
|
|
158
|
+
ignos.api.client.aio.operations.DowntimeReasonsResourceOperations
|
|
100
159
|
:ivar companies: CompaniesOperations operations
|
|
101
160
|
:vartype companies: ignos.api.client.aio.operations.CompaniesOperations
|
|
102
161
|
:ivar customer_orders: CustomerOrdersOperations operations
|
|
103
162
|
:vartype customer_orders: ignos.api.client.aio.operations.CustomerOrdersOperations
|
|
163
|
+
:ivar erp_users: ErpUsersOperations operations
|
|
164
|
+
:vartype erp_users: ignos.api.client.aio.operations.ErpUsersOperations
|
|
165
|
+
:ivar production_pools: ProductionPoolsOperations operations
|
|
166
|
+
:vartype production_pools: ignos.api.client.aio.operations.ProductionPoolsOperations
|
|
104
167
|
:ivar resources: ResourcesOperations operations
|
|
105
168
|
:vartype resources: ignos.api.client.aio.operations.ResourcesOperations
|
|
106
169
|
:ivar workorders: WorkordersOperations operations
|
|
@@ -111,10 +174,20 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
111
174
|
:vartype external_access: ignos.api.client.aio.operations.ExternalAccessOperations
|
|
112
175
|
:ivar external_services: ExternalServicesOperations operations
|
|
113
176
|
:vartype external_services: ignos.api.client.aio.operations.ExternalServicesOperations
|
|
177
|
+
:ivar guests: GuestsOperations operations
|
|
178
|
+
:vartype guests: ignos.api.client.aio.operations.GuestsOperations
|
|
114
179
|
:ivar electrical: ElectricalOperations operations
|
|
115
180
|
:vartype electrical: ignos.api.client.aio.operations.ElectricalOperations
|
|
116
181
|
:ivar welding: WeldingOperations operations
|
|
117
182
|
:vartype welding: ignos.api.client.aio.operations.WeldingOperations
|
|
183
|
+
:ivar kpi: KpiOperations operations
|
|
184
|
+
:vartype kpi: ignos.api.client.aio.operations.KpiOperations
|
|
185
|
+
:ivar kpi_admin: KpiAdminOperations operations
|
|
186
|
+
:vartype kpi_admin: ignos.api.client.aio.operations.KpiAdminOperations
|
|
187
|
+
:ivar kpi_admin_resource: KpiAdminResourceOperations operations
|
|
188
|
+
:vartype kpi_admin_resource: ignos.api.client.aio.operations.KpiAdminResourceOperations
|
|
189
|
+
:ivar kpi_resource: KpiResourceOperations operations
|
|
190
|
+
:vartype kpi_resource: ignos.api.client.aio.operations.KpiResourceOperations
|
|
118
191
|
:ivar links: LinksOperations operations
|
|
119
192
|
:vartype links: ignos.api.client.aio.operations.LinksOperations
|
|
120
193
|
:ivar machine_alarms: MachineAlarmsOperations operations
|
|
@@ -125,20 +198,40 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
125
198
|
:vartype machine_utilization: ignos.api.client.aio.operations.MachineUtilizationOperations
|
|
126
199
|
:ivar me: MeOperations operations
|
|
127
200
|
:vartype me: ignos.api.client.aio.operations.MeOperations
|
|
201
|
+
:ivar measurement_form_schemas_admin: MeasurementFormSchemasAdminOperations operations
|
|
202
|
+
:vartype measurement_form_schemas_admin:
|
|
203
|
+
ignos.api.client.aio.operations.MeasurementFormSchemasAdminOperations
|
|
128
204
|
:ivar measurement_form_schemas: MeasurementFormSchemasOperations operations
|
|
129
205
|
:vartype measurement_form_schemas:
|
|
130
206
|
ignos.api.client.aio.operations.MeasurementFormSchemasOperations
|
|
207
|
+
:ivar measurement_form_settings: MeasurementFormSettingsOperations operations
|
|
208
|
+
:vartype measurement_form_settings:
|
|
209
|
+
ignos.api.client.aio.operations.MeasurementFormSettingsOperations
|
|
210
|
+
:ivar measurement_forms_instances_admin: MeasurementFormsInstancesAdminOperations operations
|
|
211
|
+
:vartype measurement_forms_instances_admin:
|
|
212
|
+
ignos.api.client.aio.operations.MeasurementFormsInstancesAdminOperations
|
|
131
213
|
:ivar measurement_forms_instances: MeasurementFormsInstancesOperations operations
|
|
132
214
|
:vartype measurement_forms_instances:
|
|
133
215
|
ignos.api.client.aio.operations.MeasurementFormsInstancesOperations
|
|
216
|
+
:ivar measurement_forms_instances_instance_admin:
|
|
217
|
+
MeasurementFormsInstancesInstanceAdminOperations operations
|
|
218
|
+
:vartype measurement_forms_instances_instance_admin:
|
|
219
|
+
ignos.api.client.aio.operations.MeasurementFormsInstancesInstanceAdminOperations
|
|
134
220
|
:ivar measuring_tools: MeasuringToolsOperations operations
|
|
135
221
|
:vartype measuring_tools: ignos.api.client.aio.operations.MeasuringToolsOperations
|
|
222
|
+
:ivar inventory: InventoryOperations operations
|
|
223
|
+
:vartype inventory: ignos.api.client.aio.operations.InventoryOperations
|
|
136
224
|
:ivar mes: MesOperations operations
|
|
137
225
|
:vartype mes: ignos.api.client.aio.operations.MesOperations
|
|
138
226
|
:ivar mes_documents: MesDocumentsOperations operations
|
|
139
227
|
:vartype mes_documents: ignos.api.client.aio.operations.MesDocumentsOperations
|
|
228
|
+
:ivar mes_engineering_change_orders: MesEngineeringChangeOrdersOperations operations
|
|
229
|
+
:vartype mes_engineering_change_orders:
|
|
230
|
+
ignos.api.client.aio.operations.MesEngineeringChangeOrdersOperations
|
|
140
231
|
:ivar mes_links: MesLinksOperations operations
|
|
141
232
|
:vartype mes_links: ignos.api.client.aio.operations.MesLinksOperations
|
|
233
|
+
:ivar mes_or_move: MesOrMoveOperations operations
|
|
234
|
+
:vartype mes_or_move: ignos.api.client.aio.operations.MesOrMoveOperations
|
|
142
235
|
:ivar mes_production_order: MesProductionOrderOperations operations
|
|
143
236
|
:vartype mes_production_order: ignos.api.client.aio.operations.MesProductionOrderOperations
|
|
144
237
|
:ivar mes_production_schedule: MesProductionScheduleOperations operations
|
|
@@ -146,8 +239,24 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
146
239
|
ignos.api.client.aio.operations.MesProductionScheduleOperations
|
|
147
240
|
:ivar mes_projects: MesProjectsOperations operations
|
|
148
241
|
:vartype mes_projects: ignos.api.client.aio.operations.MesProjectsOperations
|
|
242
|
+
:ivar mes_purchase_order: MesPurchaseOrderOperations operations
|
|
243
|
+
:vartype mes_purchase_order: ignos.api.client.aio.operations.MesPurchaseOrderOperations
|
|
149
244
|
:ivar mes_resource: MesResourceOperations operations
|
|
150
245
|
:vartype mes_resource: ignos.api.client.aio.operations.MesResourceOperations
|
|
246
|
+
:ivar move_booking: MoveBookingOperations operations
|
|
247
|
+
:vartype move_booking: ignos.api.client.aio.operations.MoveBookingOperations
|
|
248
|
+
:ivar move_locations: MoveLocationsOperations operations
|
|
249
|
+
:vartype move_locations: ignos.api.client.aio.operations.MoveLocationsOperations
|
|
250
|
+
:ivar move_materials: MoveMaterialsOperations operations
|
|
251
|
+
:vartype move_materials: ignos.api.client.aio.operations.MoveMaterialsOperations
|
|
252
|
+
:ivar move_notifications: MoveNotificationsOperations operations
|
|
253
|
+
:vartype move_notifications: ignos.api.client.aio.operations.MoveNotificationsOperations
|
|
254
|
+
:ivar move_parcels: MoveParcelsOperations operations
|
|
255
|
+
:vartype move_parcels: ignos.api.client.aio.operations.MoveParcelsOperations
|
|
256
|
+
:ivar move_tracking: MoveTrackingOperations operations
|
|
257
|
+
:vartype move_tracking: ignos.api.client.aio.operations.MoveTrackingOperations
|
|
258
|
+
:ivar parcel_category: ParcelCategoryOperations operations
|
|
259
|
+
:vartype parcel_category: ignos.api.client.aio.operations.ParcelCategoryOperations
|
|
151
260
|
:ivar mrb: MrbOperations operations
|
|
152
261
|
:vartype mrb: ignos.api.client.aio.operations.MrbOperations
|
|
153
262
|
:ivar operator_calculators: OperatorCalculatorsOperations operations
|
|
@@ -156,6 +265,10 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
156
265
|
:vartype power: ignos.api.client.aio.operations.PowerOperations
|
|
157
266
|
:ivar presentation: PresentationOperations operations
|
|
158
267
|
:vartype presentation: ignos.api.client.aio.operations.PresentationOperations
|
|
268
|
+
:ivar pulse: PulseOperations operations
|
|
269
|
+
:vartype pulse: ignos.api.client.aio.operations.PulseOperations
|
|
270
|
+
:ivar resource_utilization: ResourceUtilizationOperations operations
|
|
271
|
+
:vartype resource_utilization: ignos.api.client.aio.operations.ResourceUtilizationOperations
|
|
159
272
|
:ivar suppliers: SuppliersOperations operations
|
|
160
273
|
:vartype suppliers: ignos.api.client.aio.operations.SuppliersOperations
|
|
161
274
|
:ivar sustainability: SustainabilityOperations operations
|
|
@@ -167,8 +280,12 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
167
280
|
:vartype trace: ignos.api.client.aio.operations.TraceOperations
|
|
168
281
|
:ivar upload: UploadOperations operations
|
|
169
282
|
:vartype upload: ignos.api.client.aio.operations.UploadOperations
|
|
283
|
+
:ivar user_app_settings: UserAppSettingsOperations operations
|
|
284
|
+
:vartype user_app_settings: ignos.api.client.aio.operations.UserAppSettingsOperations
|
|
170
285
|
:ivar users: UsersOperations operations
|
|
171
286
|
:vartype users: ignos.api.client.aio.operations.UsersOperations
|
|
287
|
+
:ivar utilization: UtilizationOperations operations
|
|
288
|
+
:vartype utilization: ignos.api.client.aio.operations.UtilizationOperations
|
|
172
289
|
:ivar workspaces: WorkspacesOperations operations
|
|
173
290
|
:vartype workspaces: ignos.api.client.aio.operations.WorkspacesOperations
|
|
174
291
|
:ivar workspace_templates_admin: WorkspaceTemplatesAdminOperations operations
|
|
@@ -184,6 +301,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
184
301
|
|
|
185
302
|
def __init__(self, credential: "AsyncTokenCredential", *, endpoint: str = "", **kwargs: Any) -> None:
|
|
186
303
|
self._config = IgnosPortalConfiguration(credential=credential, **kwargs)
|
|
304
|
+
|
|
187
305
|
_policies = kwargs.pop("policies", None)
|
|
188
306
|
if _policies is None:
|
|
189
307
|
_policies = [
|
|
@@ -207,6 +325,15 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
207
325
|
self._serialize = Serializer(client_models)
|
|
208
326
|
self._deserialize = Deserializer(client_models)
|
|
209
327
|
self._serialize.client_side_validation = False
|
|
328
|
+
self.material_certificate_checks = MaterialCertificateChecksOperations(
|
|
329
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
330
|
+
)
|
|
331
|
+
self.material_certificate_specifications = MaterialCertificateSpecificationsOperations(
|
|
332
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
333
|
+
)
|
|
334
|
+
self.material_certificate_types = MaterialCertificateTypesOperations(
|
|
335
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
336
|
+
)
|
|
210
337
|
self.alerts = AlertsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
211
338
|
self.assets = AssetsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
212
339
|
self.azure_regions = AzureRegionsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
@@ -216,12 +343,32 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
216
343
|
)
|
|
217
344
|
self.cnc_setup = CncSetupOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
218
345
|
self.cnc_setup_agent = CncSetupAgentOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
346
|
+
self.cnc_setup_fixtures = CncSetupFixturesOperations(
|
|
347
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
348
|
+
)
|
|
219
349
|
self.countries = CountriesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
350
|
+
self.credentials = CredentialsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
220
351
|
self.customers = CustomersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
221
352
|
self.documents = DocumentsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
222
353
|
self.document_types = DocumentTypesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
354
|
+
self.downtime_reasons = DowntimeReasonsOperations(
|
|
355
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
356
|
+
)
|
|
357
|
+
self.downtime_reasons_admin = DowntimeReasonsAdminOperations(
|
|
358
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
359
|
+
)
|
|
360
|
+
self.downtime_reasons_admin_resource = DowntimeReasonsAdminResourceOperations(
|
|
361
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
362
|
+
)
|
|
363
|
+
self.downtime_reasons_resource = DowntimeReasonsResourceOperations(
|
|
364
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
365
|
+
)
|
|
223
366
|
self.companies = CompaniesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
224
367
|
self.customer_orders = CustomerOrdersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
368
|
+
self.erp_users = ErpUsersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
369
|
+
self.production_pools = ProductionPoolsOperations(
|
|
370
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
371
|
+
)
|
|
225
372
|
self.resources = ResourcesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
226
373
|
self.workorders = WorkordersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
227
374
|
self.external = ExternalOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
@@ -229,8 +376,15 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
229
376
|
self.external_services = ExternalServicesOperations(
|
|
230
377
|
self._client, self._config, self._serialize, self._deserialize
|
|
231
378
|
)
|
|
379
|
+
self.guests = GuestsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
232
380
|
self.electrical = ElectricalOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
233
381
|
self.welding = WeldingOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
382
|
+
self.kpi = KpiOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
383
|
+
self.kpi_admin = KpiAdminOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
384
|
+
self.kpi_admin_resource = KpiAdminResourceOperations(
|
|
385
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
386
|
+
)
|
|
387
|
+
self.kpi_resource = KpiResourceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
234
388
|
self.links = LinksOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
235
389
|
self.machine_alarms = MachineAlarmsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
236
390
|
self.machines = MachinesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
@@ -238,16 +392,33 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
238
392
|
self._client, self._config, self._serialize, self._deserialize
|
|
239
393
|
)
|
|
240
394
|
self.me = MeOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
395
|
+
self.measurement_form_schemas_admin = MeasurementFormSchemasAdminOperations(
|
|
396
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
397
|
+
)
|
|
241
398
|
self.measurement_form_schemas = MeasurementFormSchemasOperations(
|
|
242
399
|
self._client, self._config, self._serialize, self._deserialize
|
|
243
400
|
)
|
|
401
|
+
self.measurement_form_settings = MeasurementFormSettingsOperations(
|
|
402
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
403
|
+
)
|
|
404
|
+
self.measurement_forms_instances_admin = MeasurementFormsInstancesAdminOperations(
|
|
405
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
406
|
+
)
|
|
244
407
|
self.measurement_forms_instances = MeasurementFormsInstancesOperations(
|
|
245
408
|
self._client, self._config, self._serialize, self._deserialize
|
|
246
409
|
)
|
|
410
|
+
self.measurement_forms_instances_instance_admin = MeasurementFormsInstancesInstanceAdminOperations(
|
|
411
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
412
|
+
)
|
|
247
413
|
self.measuring_tools = MeasuringToolsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
414
|
+
self.inventory = InventoryOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
248
415
|
self.mes = MesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
249
416
|
self.mes_documents = MesDocumentsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
417
|
+
self.mes_engineering_change_orders = MesEngineeringChangeOrdersOperations(
|
|
418
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
419
|
+
)
|
|
250
420
|
self.mes_links = MesLinksOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
421
|
+
self.mes_or_move = MesOrMoveOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
251
422
|
self.mes_production_order = MesProductionOrderOperations(
|
|
252
423
|
self._client, self._config, self._serialize, self._deserialize
|
|
253
424
|
)
|
|
@@ -255,13 +426,29 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
255
426
|
self._client, self._config, self._serialize, self._deserialize
|
|
256
427
|
)
|
|
257
428
|
self.mes_projects = MesProjectsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
429
|
+
self.mes_purchase_order = MesPurchaseOrderOperations(
|
|
430
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
431
|
+
)
|
|
258
432
|
self.mes_resource = MesResourceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
433
|
+
self.move_booking = MoveBookingOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
434
|
+
self.move_locations = MoveLocationsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
435
|
+
self.move_materials = MoveMaterialsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
436
|
+
self.move_notifications = MoveNotificationsOperations(
|
|
437
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
438
|
+
)
|
|
439
|
+
self.move_parcels = MoveParcelsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
440
|
+
self.move_tracking = MoveTrackingOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
441
|
+
self.parcel_category = ParcelCategoryOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
259
442
|
self.mrb = MrbOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
260
443
|
self.operator_calculators = OperatorCalculatorsOperations(
|
|
261
444
|
self._client, self._config, self._serialize, self._deserialize
|
|
262
445
|
)
|
|
263
446
|
self.power = PowerOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
264
447
|
self.presentation = PresentationOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
448
|
+
self.pulse = PulseOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
449
|
+
self.resource_utilization = ResourceUtilizationOperations(
|
|
450
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
451
|
+
)
|
|
265
452
|
self.suppliers = SuppliersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
266
453
|
self.sustainability = SustainabilityOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
267
454
|
self.system_health_dashboard = SystemHealthDashboardOperations(
|
|
@@ -269,7 +456,11 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
269
456
|
)
|
|
270
457
|
self.trace = TraceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
271
458
|
self.upload = UploadOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
459
|
+
self.user_app_settings = UserAppSettingsOperations(
|
|
460
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
461
|
+
)
|
|
272
462
|
self.users = UsersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
463
|
+
self.utilization = UtilizationOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
273
464
|
self.workspaces = WorkspacesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
274
465
|
self.workspace_templates_admin = WorkspaceTemplatesAdminOperations(
|
|
275
466
|
self._client, self._config, self._serialize, self._deserialize
|
|
@@ -305,7 +496,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
305
496
|
async def close(self) -> None:
|
|
306
497
|
await self._client.close()
|
|
307
498
|
|
|
308
|
-
async def __aenter__(self) ->
|
|
499
|
+
async def __aenter__(self) -> Self:
|
|
309
500
|
await self._client.__aenter__()
|
|
310
501
|
return self
|
|
311
502
|
|
ignos/api/client/aio/_patch.py
CHANGED
|
@@ -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():
|