ignos-api-client 2024.5.28.9351__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 -15
- 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 -15
- ignos/api/client/aio/_configuration.py +0 -1
- ignos/api/client/aio/_patch.py +7 -6
- ignos/api/client/aio/operations/__init__.py +126 -56
- ignos/api/client/aio/operations/_operations.py +26854 -11389
- ignos/api/client/aio/operations/_patch.py +7 -6
- ignos/api/client/models/__init__.py +1148 -534
- ignos/api/client/models/_enums.py +429 -9
- ignos/api/client/models/_models.py +34315 -18073
- ignos/api/client/models/_patch.py +7 -6
- ignos/api/client/operations/__init__.py +126 -56
- ignos/api/client/operations/_operations.py +35952 -16398
- 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.5.28.9351.dist-info → ignos_api_client-20260205.5.1.dist-info}/WHEEL +1 -1
- ignos_api_client-2024.5.28.9351.dist-info/METADATA +0 -12
- ignos_api_client-2024.5.28.9351.dist-info/RECORD +0 -27
- {ignos_api_client-2024.5.28.9351.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,61 +8,94 @@
|
|
|
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,
|
|
21
22
|
AssetsOperations,
|
|
22
23
|
AzureRegionsOperations,
|
|
23
|
-
BookingOperations,
|
|
24
24
|
CdfOperations,
|
|
25
25
|
CncFileTransferOperations,
|
|
26
26
|
CncSetupAgentOperations,
|
|
27
|
+
CncSetupFixturesOperations,
|
|
27
28
|
CncSetupOperations,
|
|
28
29
|
CompaniesOperations,
|
|
29
30
|
CountriesOperations,
|
|
31
|
+
CredentialsOperations,
|
|
30
32
|
CustomerOrdersOperations,
|
|
31
33
|
CustomersOperations,
|
|
32
34
|
DocumentTypesOperations,
|
|
33
35
|
DocumentsOperations,
|
|
36
|
+
DowntimeReasonsAdminOperations,
|
|
37
|
+
DowntimeReasonsAdminResourceOperations,
|
|
38
|
+
DowntimeReasonsOperations,
|
|
39
|
+
DowntimeReasonsResourceOperations,
|
|
34
40
|
ElectricalOperations,
|
|
41
|
+
ErpUsersOperations,
|
|
35
42
|
ExternalAccessOperations,
|
|
36
43
|
ExternalOperations,
|
|
37
44
|
ExternalServicesOperations,
|
|
45
|
+
GuestsOperations,
|
|
46
|
+
InventoryOperations,
|
|
47
|
+
KpiAdminOperations,
|
|
48
|
+
KpiAdminResourceOperations,
|
|
49
|
+
KpiOperations,
|
|
50
|
+
KpiResourceOperations,
|
|
38
51
|
LinksOperations,
|
|
39
|
-
LocationsOperations,
|
|
40
52
|
MachineAlarmsOperations,
|
|
41
53
|
MachineUtilizationOperations,
|
|
42
54
|
MachinesOperations,
|
|
55
|
+
MaterialCertificateChecksOperations,
|
|
56
|
+
MaterialCertificateSpecificationsOperations,
|
|
57
|
+
MaterialCertificateTypesOperations,
|
|
43
58
|
MeOperations,
|
|
59
|
+
MeasurementFormSchemasAdminOperations,
|
|
44
60
|
MeasurementFormSchemasOperations,
|
|
61
|
+
MeasurementFormSettingsOperations,
|
|
62
|
+
MeasurementFormsInstancesAdminOperations,
|
|
63
|
+
MeasurementFormsInstancesInstanceAdminOperations,
|
|
45
64
|
MeasurementFormsInstancesOperations,
|
|
46
65
|
MeasuringToolsOperations,
|
|
47
66
|
MesDocumentsOperations,
|
|
67
|
+
MesEngineeringChangeOrdersOperations,
|
|
48
68
|
MesLinksOperations,
|
|
49
69
|
MesOperations,
|
|
70
|
+
MesOrMoveOperations,
|
|
50
71
|
MesProductionOrderOperations,
|
|
51
72
|
MesProductionScheduleOperations,
|
|
52
73
|
MesProjectsOperations,
|
|
74
|
+
MesPurchaseOrderOperations,
|
|
53
75
|
MesResourceOperations,
|
|
76
|
+
MoveBookingOperations,
|
|
77
|
+
MoveLocationsOperations,
|
|
78
|
+
MoveMaterialsOperations,
|
|
79
|
+
MoveNotificationsOperations,
|
|
80
|
+
MoveParcelsOperations,
|
|
81
|
+
MoveTrackingOperations,
|
|
54
82
|
MrbOperations,
|
|
55
83
|
OperatorCalculatorsOperations,
|
|
84
|
+
ParcelCategoryOperations,
|
|
56
85
|
PowerOperations,
|
|
57
86
|
PresentationOperations,
|
|
87
|
+
ProductionPoolsOperations,
|
|
88
|
+
PulseOperations,
|
|
89
|
+
ResourceUtilizationOperations,
|
|
58
90
|
ResourcesOperations,
|
|
59
91
|
SuppliersOperations,
|
|
60
92
|
SustainabilityOperations,
|
|
61
93
|
SystemHealthDashboardOperations,
|
|
62
94
|
TraceOperations,
|
|
63
|
-
TrackingOperations,
|
|
64
95
|
UploadOperations,
|
|
96
|
+
UserAppSettingsOperations,
|
|
65
97
|
UsersOperations,
|
|
98
|
+
UtilizationOperations,
|
|
66
99
|
WeldingOperations,
|
|
67
100
|
WorkordersOperations,
|
|
68
101
|
WorkspaceTemplatesAdminOperations,
|
|
@@ -71,21 +104,28 @@ from .operations import (
|
|
|
71
104
|
)
|
|
72
105
|
|
|
73
106
|
if TYPE_CHECKING:
|
|
74
|
-
# pylint: disable=unused-import,ungrouped-imports
|
|
75
107
|
from azure.core.credentials_async import AsyncTokenCredential
|
|
76
108
|
|
|
77
109
|
|
|
78
110
|
class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
|
|
79
111
|
"""IgnosPortal.
|
|
80
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
|
|
81
123
|
:ivar alerts: AlertsOperations operations
|
|
82
124
|
:vartype alerts: ignos.api.client.aio.operations.AlertsOperations
|
|
83
125
|
:ivar assets: AssetsOperations operations
|
|
84
126
|
:vartype assets: ignos.api.client.aio.operations.AssetsOperations
|
|
85
127
|
:ivar azure_regions: AzureRegionsOperations operations
|
|
86
128
|
:vartype azure_regions: ignos.api.client.aio.operations.AzureRegionsOperations
|
|
87
|
-
:ivar booking: BookingOperations operations
|
|
88
|
-
:vartype booking: ignos.api.client.aio.operations.BookingOperations
|
|
89
129
|
:ivar cdf: CdfOperations operations
|
|
90
130
|
:vartype cdf: ignos.api.client.aio.operations.CdfOperations
|
|
91
131
|
:ivar cnc_file_transfer: CncFileTransferOperations operations
|
|
@@ -94,18 +134,36 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
94
134
|
:vartype cnc_setup: ignos.api.client.aio.operations.CncSetupOperations
|
|
95
135
|
:ivar cnc_setup_agent: CncSetupAgentOperations operations
|
|
96
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
|
|
97
139
|
:ivar countries: CountriesOperations operations
|
|
98
140
|
:vartype countries: ignos.api.client.aio.operations.CountriesOperations
|
|
141
|
+
:ivar credentials: CredentialsOperations operations
|
|
142
|
+
:vartype credentials: ignos.api.client.aio.operations.CredentialsOperations
|
|
99
143
|
:ivar customers: CustomersOperations operations
|
|
100
144
|
:vartype customers: ignos.api.client.aio.operations.CustomersOperations
|
|
101
145
|
:ivar documents: DocumentsOperations operations
|
|
102
146
|
:vartype documents: ignos.api.client.aio.operations.DocumentsOperations
|
|
103
147
|
:ivar document_types: DocumentTypesOperations operations
|
|
104
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
|
|
105
159
|
:ivar companies: CompaniesOperations operations
|
|
106
160
|
:vartype companies: ignos.api.client.aio.operations.CompaniesOperations
|
|
107
161
|
:ivar customer_orders: CustomerOrdersOperations operations
|
|
108
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
|
|
109
167
|
:ivar resources: ResourcesOperations operations
|
|
110
168
|
:vartype resources: ignos.api.client.aio.operations.ResourcesOperations
|
|
111
169
|
:ivar workorders: WorkordersOperations operations
|
|
@@ -116,14 +174,22 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
116
174
|
:vartype external_access: ignos.api.client.aio.operations.ExternalAccessOperations
|
|
117
175
|
:ivar external_services: ExternalServicesOperations operations
|
|
118
176
|
:vartype external_services: ignos.api.client.aio.operations.ExternalServicesOperations
|
|
177
|
+
:ivar guests: GuestsOperations operations
|
|
178
|
+
:vartype guests: ignos.api.client.aio.operations.GuestsOperations
|
|
119
179
|
:ivar electrical: ElectricalOperations operations
|
|
120
180
|
:vartype electrical: ignos.api.client.aio.operations.ElectricalOperations
|
|
121
181
|
:ivar welding: WeldingOperations operations
|
|
122
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
|
|
123
191
|
:ivar links: LinksOperations operations
|
|
124
192
|
:vartype links: ignos.api.client.aio.operations.LinksOperations
|
|
125
|
-
:ivar locations: LocationsOperations operations
|
|
126
|
-
:vartype locations: ignos.api.client.aio.operations.LocationsOperations
|
|
127
193
|
:ivar machine_alarms: MachineAlarmsOperations operations
|
|
128
194
|
:vartype machine_alarms: ignos.api.client.aio.operations.MachineAlarmsOperations
|
|
129
195
|
:ivar machines: MachinesOperations operations
|
|
@@ -132,20 +198,40 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
132
198
|
:vartype machine_utilization: ignos.api.client.aio.operations.MachineUtilizationOperations
|
|
133
199
|
:ivar me: MeOperations operations
|
|
134
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
|
|
135
204
|
:ivar measurement_form_schemas: MeasurementFormSchemasOperations operations
|
|
136
205
|
:vartype measurement_form_schemas:
|
|
137
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
|
|
138
213
|
:ivar measurement_forms_instances: MeasurementFormsInstancesOperations operations
|
|
139
214
|
:vartype measurement_forms_instances:
|
|
140
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
|
|
141
220
|
:ivar measuring_tools: MeasuringToolsOperations operations
|
|
142
221
|
:vartype measuring_tools: ignos.api.client.aio.operations.MeasuringToolsOperations
|
|
222
|
+
:ivar inventory: InventoryOperations operations
|
|
223
|
+
:vartype inventory: ignos.api.client.aio.operations.InventoryOperations
|
|
143
224
|
:ivar mes: MesOperations operations
|
|
144
225
|
:vartype mes: ignos.api.client.aio.operations.MesOperations
|
|
145
226
|
:ivar mes_documents: MesDocumentsOperations operations
|
|
146
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
|
|
147
231
|
:ivar mes_links: MesLinksOperations operations
|
|
148
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
|
|
149
235
|
:ivar mes_production_order: MesProductionOrderOperations operations
|
|
150
236
|
:vartype mes_production_order: ignos.api.client.aio.operations.MesProductionOrderOperations
|
|
151
237
|
:ivar mes_production_schedule: MesProductionScheduleOperations operations
|
|
@@ -153,8 +239,24 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
153
239
|
ignos.api.client.aio.operations.MesProductionScheduleOperations
|
|
154
240
|
:ivar mes_projects: MesProjectsOperations operations
|
|
155
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
|
|
156
244
|
:ivar mes_resource: MesResourceOperations operations
|
|
157
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
|
|
158
260
|
:ivar mrb: MrbOperations operations
|
|
159
261
|
:vartype mrb: ignos.api.client.aio.operations.MrbOperations
|
|
160
262
|
:ivar operator_calculators: OperatorCalculatorsOperations operations
|
|
@@ -163,6 +265,10 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
163
265
|
:vartype power: ignos.api.client.aio.operations.PowerOperations
|
|
164
266
|
:ivar presentation: PresentationOperations operations
|
|
165
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
|
|
166
272
|
:ivar suppliers: SuppliersOperations operations
|
|
167
273
|
:vartype suppliers: ignos.api.client.aio.operations.SuppliersOperations
|
|
168
274
|
:ivar sustainability: SustainabilityOperations operations
|
|
@@ -172,12 +278,14 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
172
278
|
ignos.api.client.aio.operations.SystemHealthDashboardOperations
|
|
173
279
|
:ivar trace: TraceOperations operations
|
|
174
280
|
:vartype trace: ignos.api.client.aio.operations.TraceOperations
|
|
175
|
-
:ivar tracking: TrackingOperations operations
|
|
176
|
-
:vartype tracking: ignos.api.client.aio.operations.TrackingOperations
|
|
177
281
|
:ivar upload: UploadOperations operations
|
|
178
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
|
|
179
285
|
:ivar users: UsersOperations operations
|
|
180
286
|
:vartype users: ignos.api.client.aio.operations.UsersOperations
|
|
287
|
+
:ivar utilization: UtilizationOperations operations
|
|
288
|
+
:vartype utilization: ignos.api.client.aio.operations.UtilizationOperations
|
|
181
289
|
:ivar workspaces: WorkspacesOperations operations
|
|
182
290
|
:vartype workspaces: ignos.api.client.aio.operations.WorkspacesOperations
|
|
183
291
|
:ivar workspace_templates_admin: WorkspaceTemplatesAdminOperations operations
|
|
@@ -193,6 +301,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
193
301
|
|
|
194
302
|
def __init__(self, credential: "AsyncTokenCredential", *, endpoint: str = "", **kwargs: Any) -> None:
|
|
195
303
|
self._config = IgnosPortalConfiguration(credential=credential, **kwargs)
|
|
304
|
+
|
|
196
305
|
_policies = kwargs.pop("policies", None)
|
|
197
306
|
if _policies is None:
|
|
198
307
|
_policies = [
|
|
@@ -216,22 +325,50 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
216
325
|
self._serialize = Serializer(client_models)
|
|
217
326
|
self._deserialize = Deserializer(client_models)
|
|
218
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
|
+
)
|
|
219
337
|
self.alerts = AlertsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
220
338
|
self.assets = AssetsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
221
339
|
self.azure_regions = AzureRegionsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
222
|
-
self.booking = BookingOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
223
340
|
self.cdf = CdfOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
224
341
|
self.cnc_file_transfer = CncFileTransferOperations(
|
|
225
342
|
self._client, self._config, self._serialize, self._deserialize
|
|
226
343
|
)
|
|
227
344
|
self.cnc_setup = CncSetupOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
228
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
|
+
)
|
|
229
349
|
self.countries = CountriesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
350
|
+
self.credentials = CredentialsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
230
351
|
self.customers = CustomersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
231
352
|
self.documents = DocumentsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
232
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
|
+
)
|
|
233
366
|
self.companies = CompaniesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
234
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
|
+
)
|
|
235
372
|
self.resources = ResourcesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
236
373
|
self.workorders = WorkordersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
237
374
|
self.external = ExternalOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
@@ -239,26 +376,49 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
239
376
|
self.external_services = ExternalServicesOperations(
|
|
240
377
|
self._client, self._config, self._serialize, self._deserialize
|
|
241
378
|
)
|
|
379
|
+
self.guests = GuestsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
242
380
|
self.electrical = ElectricalOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
243
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)
|
|
244
388
|
self.links = LinksOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
245
|
-
self.locations = LocationsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
246
389
|
self.machine_alarms = MachineAlarmsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
247
390
|
self.machines = MachinesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
248
391
|
self.machine_utilization = MachineUtilizationOperations(
|
|
249
392
|
self._client, self._config, self._serialize, self._deserialize
|
|
250
393
|
)
|
|
251
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
|
+
)
|
|
252
398
|
self.measurement_form_schemas = MeasurementFormSchemasOperations(
|
|
253
399
|
self._client, self._config, self._serialize, self._deserialize
|
|
254
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
|
+
)
|
|
255
407
|
self.measurement_forms_instances = MeasurementFormsInstancesOperations(
|
|
256
408
|
self._client, self._config, self._serialize, self._deserialize
|
|
257
409
|
)
|
|
410
|
+
self.measurement_forms_instances_instance_admin = MeasurementFormsInstancesInstanceAdminOperations(
|
|
411
|
+
self._client, self._config, self._serialize, self._deserialize
|
|
412
|
+
)
|
|
258
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)
|
|
259
415
|
self.mes = MesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
260
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
|
+
)
|
|
261
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)
|
|
262
422
|
self.mes_production_order = MesProductionOrderOperations(
|
|
263
423
|
self._client, self._config, self._serialize, self._deserialize
|
|
264
424
|
)
|
|
@@ -266,22 +426,41 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
266
426
|
self._client, self._config, self._serialize, self._deserialize
|
|
267
427
|
)
|
|
268
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
|
+
)
|
|
269
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)
|
|
270
442
|
self.mrb = MrbOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
271
443
|
self.operator_calculators = OperatorCalculatorsOperations(
|
|
272
444
|
self._client, self._config, self._serialize, self._deserialize
|
|
273
445
|
)
|
|
274
446
|
self.power = PowerOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
275
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
|
+
)
|
|
276
452
|
self.suppliers = SuppliersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
277
453
|
self.sustainability = SustainabilityOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
278
454
|
self.system_health_dashboard = SystemHealthDashboardOperations(
|
|
279
455
|
self._client, self._config, self._serialize, self._deserialize
|
|
280
456
|
)
|
|
281
457
|
self.trace = TraceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
282
|
-
self.tracking = TrackingOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
283
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
|
+
)
|
|
284
462
|
self.users = UsersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
463
|
+
self.utilization = UtilizationOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
285
464
|
self.workspaces = WorkspacesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
286
465
|
self.workspace_templates_admin = WorkspaceTemplatesAdminOperations(
|
|
287
466
|
self._client, self._config, self._serialize, self._deserialize
|
|
@@ -317,7 +496,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
317
496
|
async def close(self) -> None:
|
|
318
497
|
await self._client.close()
|
|
319
498
|
|
|
320
|
-
async def __aenter__(self) ->
|
|
499
|
+
async def __aenter__(self) -> Self:
|
|
321
500
|
await self._client.__aenter__()
|
|
322
501
|
return self
|
|
323
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():
|