cognite-toolkit 0.7.69__py3-none-any.whl → 0.7.71__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.
- cognite_toolkit/_cdf_tk/client/_resource_base.py +0 -22
- cognite_toolkit/_cdf_tk/client/api/infield.py +56 -204
- cognite_toolkit/_cdf_tk/client/api/instances.py +239 -16
- cognite_toolkit/_cdf_tk/client/cdf_client/responses.py +3 -3
- cognite_toolkit/_cdf_tk/client/resource_classes/infield.py +133 -72
- cognite_toolkit/_cdf_tk/client/resource_classes/instance_api.py +119 -79
- cognite_toolkit/_cdf_tk/client/resource_classes/legacy/location_filters.py +2 -2
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py +45 -46
- cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py +1 -2
- cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml +1 -1
- cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml +1 -1
- cognite_toolkit/_resources/cdf.toml +1 -1
- cognite_toolkit/_version.py +1 -1
- {cognite_toolkit-0.7.69.dist-info → cognite_toolkit-0.7.71.dist-info}/METADATA +1 -1
- {cognite_toolkit-0.7.69.dist-info → cognite_toolkit-0.7.71.dist-info}/RECORD +17 -17
- {cognite_toolkit-0.7.69.dist-info → cognite_toolkit-0.7.71.dist-info}/WHEEL +0 -0
- {cognite_toolkit-0.7.69.dist-info → cognite_toolkit-0.7.71.dist-info}/entry_points.txt +0 -0
|
@@ -8,13 +8,15 @@ from cognite.client.data_classes.data_modeling import NodeApplyResultList, NodeI
|
|
|
8
8
|
from cognite.client.exceptions import CogniteAPIError
|
|
9
9
|
from cognite.client.utils.useful_types import SequenceNotStr
|
|
10
10
|
|
|
11
|
+
from cognite_toolkit._cdf_tk.client.resource_classes.data_modeling._instance import InstanceSlimDefinition
|
|
11
12
|
from cognite_toolkit._cdf_tk.client.resource_classes.identifiers import ExternalId
|
|
12
13
|
from cognite_toolkit._cdf_tk.client.resource_classes.infield import (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
InFieldCDMLocationConfigRequest,
|
|
15
|
+
InFieldCDMLocationConfigResponse,
|
|
16
|
+
InFieldLocationConfigRequest,
|
|
17
|
+
InFieldLocationConfigResponse,
|
|
16
18
|
)
|
|
17
|
-
from cognite_toolkit._cdf_tk.client.resource_classes.instance_api import
|
|
19
|
+
from cognite_toolkit._cdf_tk.client.resource_classes.instance_api import TypedNodeIdentifier
|
|
18
20
|
from cognite_toolkit._cdf_tk.client.resource_classes.legacy.apm_config_v1 import (
|
|
19
21
|
APMConfig,
|
|
20
22
|
APMConfigList,
|
|
@@ -34,7 +36,7 @@ from cognite_toolkit._cdf_tk.utils.diff_list import diff_list_hashable, diff_lis
|
|
|
34
36
|
from .auth import GroupAllScopedCRUD
|
|
35
37
|
from .classic import AssetCRUD
|
|
36
38
|
from .data_organization import DataSetsCRUD
|
|
37
|
-
from .datamodel import SpaceCRUD
|
|
39
|
+
from .datamodel import SpaceCRUD, ViewCRUD
|
|
38
40
|
from .group_scoped import GroupResourceScopedCRUD
|
|
39
41
|
|
|
40
42
|
|
|
@@ -247,10 +249,12 @@ class InfieldV1CRUD(ResourceCRUD[str, APMConfigWrite, APMConfig]):
|
|
|
247
249
|
|
|
248
250
|
|
|
249
251
|
@final
|
|
250
|
-
class InFieldLocationConfigCRUD(
|
|
252
|
+
class InFieldLocationConfigCRUD(
|
|
253
|
+
ResourceCRUD[TypedNodeIdentifier, InFieldLocationConfigRequest, InFieldLocationConfigResponse]
|
|
254
|
+
):
|
|
251
255
|
folder_name = "cdf_applications"
|
|
252
|
-
resource_cls =
|
|
253
|
-
resource_write_cls =
|
|
256
|
+
resource_cls = InFieldLocationConfigResponse
|
|
257
|
+
resource_write_cls = InFieldLocationConfigRequest
|
|
254
258
|
kind = "InFieldLocationConfig"
|
|
255
259
|
yaml_cls = InfieldLocationConfigYAML
|
|
256
260
|
dependencies = frozenset({SpaceCRUD, GroupAllScopedCRUD, GroupResourceScopedCRUD})
|
|
@@ -261,7 +265,7 @@ class InFieldLocationConfigCRUD(ResourceCRUD[TypedNodeIdentifier, InfieldLocatio
|
|
|
261
265
|
return "infield location configs"
|
|
262
266
|
|
|
263
267
|
@classmethod
|
|
264
|
-
def get_id(cls, item:
|
|
268
|
+
def get_id(cls, item: InFieldLocationConfigRequest | InFieldLocationConfigResponse | dict) -> TypedNodeIdentifier:
|
|
265
269
|
if isinstance(item, dict):
|
|
266
270
|
return TypedNodeIdentifier(space=item["space"], external_id=item["externalId"])
|
|
267
271
|
return TypedNodeIdentifier(space=item.space, external_id=item.external_id)
|
|
@@ -275,7 +279,7 @@ class InFieldLocationConfigCRUD(ResourceCRUD[TypedNodeIdentifier, InfieldLocatio
|
|
|
275
279
|
|
|
276
280
|
@classmethod
|
|
277
281
|
def get_required_capability(
|
|
278
|
-
cls, items: Sequence[
|
|
282
|
+
cls, items: Sequence[InFieldLocationConfigRequest] | None, read_only: bool
|
|
279
283
|
) -> Capability | list[Capability]:
|
|
280
284
|
if not items or items is None:
|
|
281
285
|
return []
|
|
@@ -289,8 +293,10 @@ class InFieldLocationConfigCRUD(ResourceCRUD[TypedNodeIdentifier, InfieldLocatio
|
|
|
289
293
|
|
|
290
294
|
return DataModelInstancesAcl(actions, DataModelInstancesAcl.Scope.SpaceID(instance_spaces))
|
|
291
295
|
|
|
292
|
-
def dump_resource(
|
|
293
|
-
|
|
296
|
+
def dump_resource(
|
|
297
|
+
self, resource: InFieldLocationConfigResponse, local: dict[str, Any] | None = None
|
|
298
|
+
) -> dict[str, Any]:
|
|
299
|
+
dumped = resource.as_request_resource().dump()
|
|
294
300
|
local = local or {}
|
|
295
301
|
dumped.pop("instanceType", None)
|
|
296
302
|
if isinstance(cdf_dec := dumped.get("dataExplorationConfig"), dict):
|
|
@@ -305,33 +311,24 @@ class InFieldLocationConfigCRUD(ResourceCRUD[TypedNodeIdentifier, InfieldLocatio
|
|
|
305
311
|
|
|
306
312
|
return dumped
|
|
307
313
|
|
|
308
|
-
def create(self, items: Sequence[
|
|
309
|
-
|
|
310
|
-
config_ids = {config.as_id() for config in items}
|
|
311
|
-
# We filter out all the data exploration configs that were created along with the infield location configs
|
|
312
|
-
# as we only want to count the infield location configs here.
|
|
313
|
-
return [res for res in created if res.as_id() in config_ids]
|
|
314
|
+
def create(self, items: Sequence[InFieldLocationConfigRequest]) -> list[InstanceSlimDefinition]:
|
|
315
|
+
return self.client.infield.config.create(items)
|
|
314
316
|
|
|
315
|
-
def retrieve(self, ids: SequenceNotStr[TypedNodeIdentifier]) ->
|
|
316
|
-
return
|
|
317
|
+
def retrieve(self, ids: SequenceNotStr[TypedNodeIdentifier]) -> list[InFieldLocationConfigResponse]:
|
|
318
|
+
return self.client.infield.config.retrieve(list(ids))
|
|
317
319
|
|
|
318
|
-
def update(self, items: Sequence[
|
|
319
|
-
return self.
|
|
320
|
+
def update(self, items: Sequence[InFieldLocationConfigRequest]) -> Sized:
|
|
321
|
+
return self.client.infield.config.update(items)
|
|
320
322
|
|
|
321
323
|
def delete(self, ids: SequenceNotStr[TypedNodeIdentifier]) -> int:
|
|
322
|
-
|
|
323
|
-
retrieved = self.retrieve(list(ids))
|
|
324
|
-
# Then, we pass the entire resource to the delete method, which will delete both the InfieldLocationConfig
|
|
325
|
-
# and the linked DataExplorationConfig.
|
|
326
|
-
_ = self.client.infield.config.delete(retrieved)
|
|
327
|
-
return len(retrieved)
|
|
324
|
+
return len(self.client.infield.config.delete(list(ids)))
|
|
328
325
|
|
|
329
326
|
def _iterate(
|
|
330
327
|
self,
|
|
331
328
|
data_set_external_id: str | None = None,
|
|
332
329
|
space: str | None = None,
|
|
333
330
|
parent_ids: list[Hashable] | None = None,
|
|
334
|
-
) -> Iterable[
|
|
331
|
+
) -> Iterable[InFieldLocationConfigResponse]:
|
|
335
332
|
raise NotImplementedError(f"Iteration over {self.display_name} is not supported.")
|
|
336
333
|
|
|
337
334
|
def diff_list(
|
|
@@ -350,14 +347,14 @@ class InFieldLocationConfigCRUD(ResourceCRUD[TypedNodeIdentifier, InfieldLocatio
|
|
|
350
347
|
|
|
351
348
|
@final
|
|
352
349
|
class InFieldCDMLocationConfigCRUD(
|
|
353
|
-
ResourceCRUD[TypedNodeIdentifier,
|
|
350
|
+
ResourceCRUD[TypedNodeIdentifier, InFieldCDMLocationConfigRequest, InFieldCDMLocationConfigResponse]
|
|
354
351
|
):
|
|
355
352
|
folder_name = "cdf_applications"
|
|
356
|
-
resource_cls =
|
|
357
|
-
resource_write_cls =
|
|
353
|
+
resource_cls = InFieldCDMLocationConfigResponse
|
|
354
|
+
resource_write_cls = InFieldCDMLocationConfigRequest
|
|
358
355
|
kind = "InFieldCDMLocationConfig"
|
|
359
356
|
yaml_cls = InFieldCDMLocationConfigYAML
|
|
360
|
-
dependencies = frozenset({SpaceCRUD, GroupAllScopedCRUD, GroupResourceScopedCRUD})
|
|
357
|
+
dependencies = frozenset({SpaceCRUD, GroupAllScopedCRUD, GroupResourceScopedCRUD, ViewCRUD})
|
|
361
358
|
_doc_url = "Instances/operation/applyNodeAndEdges"
|
|
362
359
|
|
|
363
360
|
@property
|
|
@@ -365,7 +362,9 @@ class InFieldCDMLocationConfigCRUD(
|
|
|
365
362
|
return "infield CDM location configs"
|
|
366
363
|
|
|
367
364
|
@classmethod
|
|
368
|
-
def get_id(
|
|
365
|
+
def get_id(
|
|
366
|
+
cls, item: InFieldCDMLocationConfigRequest | InFieldCDMLocationConfigResponse | dict
|
|
367
|
+
) -> TypedNodeIdentifier:
|
|
369
368
|
if isinstance(item, dict):
|
|
370
369
|
return TypedNodeIdentifier(space=item["space"], external_id=item["externalId"])
|
|
371
370
|
return TypedNodeIdentifier(space=item.space, external_id=item.external_id)
|
|
@@ -379,7 +378,7 @@ class InFieldCDMLocationConfigCRUD(
|
|
|
379
378
|
|
|
380
379
|
@classmethod
|
|
381
380
|
def get_required_capability(
|
|
382
|
-
cls, items: Sequence[
|
|
381
|
+
cls, items: Sequence[InFieldCDMLocationConfigRequest] | None, read_only: bool
|
|
383
382
|
) -> Capability | list[Capability]:
|
|
384
383
|
if not items or items is None:
|
|
385
384
|
return []
|
|
@@ -393,8 +392,10 @@ class InFieldCDMLocationConfigCRUD(
|
|
|
393
392
|
|
|
394
393
|
return DataModelInstancesAcl(actions, DataModelInstancesAcl.Scope.SpaceID(instance_spaces))
|
|
395
394
|
|
|
396
|
-
def dump_resource(
|
|
397
|
-
|
|
395
|
+
def dump_resource(
|
|
396
|
+
self, resource: InFieldCDMLocationConfigResponse, local: dict[str, Any] | None = None
|
|
397
|
+
) -> dict[str, Any]:
|
|
398
|
+
dumped = resource.as_request_resource().dump(context="toolkit")
|
|
398
399
|
local = local or {}
|
|
399
400
|
if "existingVersion" not in local:
|
|
400
401
|
# Existing version is typically not set when creating nodes, but we get it back
|
|
@@ -403,27 +404,25 @@ class InFieldCDMLocationConfigCRUD(
|
|
|
403
404
|
dumped.pop("instanceType", None)
|
|
404
405
|
return dumped
|
|
405
406
|
|
|
406
|
-
def create(self, items: Sequence[
|
|
407
|
-
return self.client.infield.cdm_config.
|
|
407
|
+
def create(self, items: Sequence[InFieldCDMLocationConfigRequest]) -> list[InstanceSlimDefinition]:
|
|
408
|
+
return self.client.infield.cdm_config.create(items)
|
|
408
409
|
|
|
409
|
-
def retrieve(self, ids: SequenceNotStr[TypedNodeIdentifier]) -> list[
|
|
410
|
+
def retrieve(self, ids: SequenceNotStr[TypedNodeIdentifier]) -> list[InFieldCDMLocationConfigResponse]:
|
|
410
411
|
return self.client.infield.cdm_config.retrieve(list(ids))
|
|
411
412
|
|
|
412
|
-
def update(self, items: Sequence[
|
|
413
|
+
def update(self, items: Sequence[InFieldCDMLocationConfigRequest]) -> Sized:
|
|
413
414
|
return self.create(items)
|
|
414
415
|
|
|
415
416
|
def delete(self, ids: SequenceNotStr[TypedNodeIdentifier]) -> int:
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
_ = self.client.infield.cdm_config.delete(retrieved)
|
|
419
|
-
return len(retrieved)
|
|
417
|
+
deleted = self.client.infield.cdm_config.delete(list(ids))
|
|
418
|
+
return len(deleted)
|
|
420
419
|
|
|
421
420
|
def _iterate(
|
|
422
421
|
self,
|
|
423
422
|
data_set_external_id: str | None = None,
|
|
424
423
|
space: str | None = None,
|
|
425
424
|
parent_ids: list[Hashable] | None = None,
|
|
426
|
-
) -> Iterable[
|
|
425
|
+
) -> Iterable[InFieldCDMLocationConfigResponse]:
|
|
427
426
|
raise NotImplementedError(f"Iteration over {self.display_name} is not supported.")
|
|
428
427
|
|
|
429
428
|
def diff_list(
|
|
@@ -126,10 +126,9 @@ class LocationFilterCRUD(ResourceCRUD[str, LocationFilterWrite, LocationFilter])
|
|
|
126
126
|
|
|
127
127
|
def dump_resource(self, resource: LocationFilter, local: dict[str, Any] | None = None) -> dict[str, Any]:
|
|
128
128
|
dumped = resource.as_write().dump()
|
|
129
|
-
local = local or {}
|
|
130
129
|
if parent_id := dumped.pop("parentId", None):
|
|
131
130
|
dumped["parentExternalId"] = self.client.lookup.location_filters.external_id(parent_id)
|
|
132
|
-
if "dataModelingType"
|
|
131
|
+
if dumped.get("dataModelingType") == "HYBRID" and local is not None and "dataModelingType" not in local:
|
|
133
132
|
# Default set on server side
|
|
134
133
|
dumped.pop("dataModelingType")
|
|
135
134
|
if "assetCentric" not in dumped:
|
cognite_toolkit/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.7.
|
|
1
|
+
__version__ = "0.7.71"
|
|
@@ -29,7 +29,7 @@ cognite_toolkit/_cdf_tk/builders/_transformation.py,sha256=STB42zhzOW5M_-b8cKOQ_
|
|
|
29
29
|
cognite_toolkit/_cdf_tk/cdf_toml.py,sha256=VSWV9h44HusWIaKpWgjrOMrc3hDoPTTXBXlp6-NOrIM,9079
|
|
30
30
|
cognite_toolkit/_cdf_tk/client/__init__.py,sha256=a6rQXDGfW2g7K5WwrOW5oakh1TdFlBjUVjf9wusOox8,135
|
|
31
31
|
cognite_toolkit/_cdf_tk/client/_constants.py,sha256=COUGcea37mDF2sf6MGqJXWmecTY_6aCImslxXrYW1I0,73
|
|
32
|
-
cognite_toolkit/_cdf_tk/client/_resource_base.py,sha256=
|
|
32
|
+
cognite_toolkit/_cdf_tk/client/_resource_base.py,sha256=u8LEosIrcWsi7MnsOBEjBr_S8nFybX1W5fry0PInf18,6394
|
|
33
33
|
cognite_toolkit/_cdf_tk/client/_toolkit_client.py,sha256=P3zJeXdUDShf40XCAf9i9SjhZn7myo_COyMlJHfWr6s,5297
|
|
34
34
|
cognite_toolkit/_cdf_tk/client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
35
|
cognite_toolkit/_cdf_tk/client/api/agents.py,sha256=XtwYBKXZt_oyBmF0vVKyILrkVngd_YcgwMQPeI6w7Eo,3885
|
|
@@ -50,8 +50,8 @@ cognite_toolkit/_cdf_tk/client/api/hosted_extractor_jobs.py,sha256=l46ocQlWFEMqx
|
|
|
50
50
|
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_mappings.py,sha256=bqPRiAuaNMm35NPwtZ10WTcmshnrZcMSfa322Rav3eo,5084
|
|
51
51
|
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_sources.py,sha256=1gOm6HJ_oBj0ub-QPJqiod_yxBdmF_R3sOAFbhN2a88,5510
|
|
52
52
|
cognite_toolkit/_cdf_tk/client/api/hosted_extractors.py,sha256=sjo9M98_SNXoIcM1nYR8qPLhtP9zT64bd-7jt6leWYI,1004
|
|
53
|
-
cognite_toolkit/_cdf_tk/client/api/infield.py,sha256=
|
|
54
|
-
cognite_toolkit/_cdf_tk/client/api/instances.py,sha256=
|
|
53
|
+
cognite_toolkit/_cdf_tk/client/api/infield.py,sha256=ny8fBmbqTRg2aaCEdQ7JojjAvRII4TRfrkypteKlF5Q,4530
|
|
54
|
+
cognite_toolkit/_cdf_tk/client/api/instances.py,sha256=QmLd86-4i39k5j1qcx3YRuTwNTVsrCfU2ch3a-dkiLQ,16134
|
|
55
55
|
cognite_toolkit/_cdf_tk/client/api/labels.py,sha256=3gjJKJWfARA1yWehM2SyMY-B07-gclGUkAzeXiVnfJQ,4341
|
|
56
56
|
cognite_toolkit/_cdf_tk/client/api/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
cognite_toolkit/_cdf_tk/client/api/legacy/canvas.py,sha256=Xyded-e7dqu-l2PR3U9PZ3maSKyjH56ApTJTpCPAh08,9313
|
|
@@ -107,7 +107,7 @@ cognite_toolkit/_cdf_tk/client/api/workflows.py,sha256=aMZtNR5Q5dlvVK_TkSlpmdgh3
|
|
|
107
107
|
cognite_toolkit/_cdf_tk/client/api_client.py,sha256=CQdD_gfDqQkz5OYHrTnKvBvEvzHPdHDB1BkZPWRoahg,440
|
|
108
108
|
cognite_toolkit/_cdf_tk/client/cdf_client/__init__.py,sha256=jTu-l5BjBWOyQdhYMk9n9JFG7sN_xlCyC8X9KcYPReI,225
|
|
109
109
|
cognite_toolkit/_cdf_tk/client/cdf_client/api.py,sha256=ThRChQU-56zlfgxi6h_cALBr7kEd8Q_Nt03pvRCBHWs,14535
|
|
110
|
-
cognite_toolkit/_cdf_tk/client/cdf_client/responses.py,sha256=
|
|
110
|
+
cognite_toolkit/_cdf_tk/client/cdf_client/responses.py,sha256=0K_19_jXgTx_d657ldrytikv8ScGvW4EltOFrsB9raU,1056
|
|
111
111
|
cognite_toolkit/_cdf_tk/client/config.py,sha256=weMR43z-gqHMn-Jqvfmh_nJ0HbgEdyeCGtISuEf3OuY,4269
|
|
112
112
|
cognite_toolkit/_cdf_tk/client/http_client/__init__.py,sha256=_B_eB9yZ97ctfWFNrrK722R-WkMbktZECeiqZlUUee8,674
|
|
113
113
|
cognite_toolkit/_cdf_tk/client/http_client/_client.py,sha256=wPq3Sya_a-SbiMNoAGWFgdefeQN4a16xZ7ytS0F0TV0,15860
|
|
@@ -163,8 +163,8 @@ cognite_toolkit/_cdf_tk/client/resource_classes/hosted_extractor_source/_kafka.p
|
|
|
163
163
|
cognite_toolkit/_cdf_tk/client/resource_classes/hosted_extractor_source/_mqtt.py,sha256=RJhR5eAEkRt8Ze2r0vwmEZ-2azbDxQSlmUFxD1o2Ovk,1265
|
|
164
164
|
cognite_toolkit/_cdf_tk/client/resource_classes/hosted_extractor_source/_rest.py,sha256=OSiPMEH_dMCUC3L1QpIOmJSXyYYRlqt-_lHZpPTv9Sw,1729
|
|
165
165
|
cognite_toolkit/_cdf_tk/client/resource_classes/identifiers.py,sha256=Bu_pgcuRQAQxG8jQAKh1Kn1XuUU0MM421I0ydzj9jSk,1990
|
|
166
|
-
cognite_toolkit/_cdf_tk/client/resource_classes/infield.py,sha256=
|
|
167
|
-
cognite_toolkit/_cdf_tk/client/resource_classes/instance_api.py,sha256
|
|
166
|
+
cognite_toolkit/_cdf_tk/client/resource_classes/infield.py,sha256=hpL79vuvKOVWap0GNr-VYxdqBQvvuu3EPQDL7a-MrjU,6932
|
|
167
|
+
cognite_toolkit/_cdf_tk/client/resource_classes/instance_api.py,sha256=L5Qe6hqqFEIrw6JGK2DFvjQRH8N8fbJXFeQ51c5VH8s,7803
|
|
168
168
|
cognite_toolkit/_cdf_tk/client/resource_classes/label.py,sha256=-w7VxTOmHZkgiEjQ-trGY2JOWo-ZU4nqhmM2UrpkhEI,650
|
|
169
169
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
170
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/apm_config_v1.py,sha256=0bPq7R0qvdf8SMFS06kX7TXHIClDcJNHwdTBweQB-GU,20150
|
|
@@ -177,7 +177,7 @@ cognite_toolkit/_cdf_tk/client/resource_classes/legacy/extended_timeseries.py,sh
|
|
|
177
177
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/functions.py,sha256=r9vhkS7sJ-wCiwvtD9CDKKthAktDMS6FJWDsLzq6iJ8,378
|
|
178
178
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/graphql_data_models.py,sha256=N_1dfXSdsLlhw5uXreNfmSCo5bA4XeiZneMdnHWDgJI,4313
|
|
179
179
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/instances.py,sha256=aGV3XtBGwG1ELks3kqFkScO-MGC5zvcSZtYXOVWL2BE,2501
|
|
180
|
-
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/location_filters.py,sha256=
|
|
180
|
+
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/location_filters.py,sha256=At-Olj-daQcR239fVpUZuezbKkOY7jsIx-n1wxlWleQ,12156
|
|
181
181
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/migration.py,sha256=AoYgqwSoYn1ok_ksG9Lljb270J4zPF_qyJSu5ZHtD_Q,18632
|
|
182
182
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/pending_instances_ids.py,sha256=W99jhHMLzW_0TvZoaeeaeWXljN9GjuXPoFO-SRjsd-s,1888
|
|
183
183
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/project.py,sha256=y0rcIZvoTf5b3LPgz9ufUU2UTkDTyzz-HmNgH6cXRNA,1226
|
|
@@ -272,13 +272,13 @@ cognite_toolkit/_cdf_tk/cruds/_resource_cruds/configuration.py,sha256=Yargg3pzjf
|
|
|
272
272
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/data_organization.py,sha256=U0ItuoNr1KEtoFQAiIe-K19_72ht9-kGndFVgF-iC10,9524
|
|
273
273
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/datamodel.py,sha256=Deyx0iAxiGmw3jLuTA03Yf9Vx1YzehGSnOtg7i0JBPE,64878
|
|
274
274
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/extraction_pipeline.py,sha256=yzRGAp1h7G0LN1ix81ZXpq-QZw0qHAjlW8aNaI0ehT8,17712
|
|
275
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py,sha256=
|
|
275
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py,sha256=yiMjkr1d0Dgw4WRMIk0XhGzvd-Rqo3Kd0wfBfbZV89A,20762
|
|
276
276
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/file.py,sha256=LvlukwvRIQm8cX-YWfTGVjO74ZnPMDGv3m5Cd7pfgx8,14977
|
|
277
277
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/function.py,sha256=OSJlIiqyBqbSiEf4w7EGflMAk9Yvc96J3VFkYZlk3zw,29605
|
|
278
278
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/group_scoped.py,sha256=WEg8-CxMP64WfE_XXIlH114zM51K0uLaYa4atd992zI,1690
|
|
279
279
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/hosted_extractors.py,sha256=pRyClYj2-NwDJOr7jo2-yaduLirf1Uts_IrLKb5-nR0,17764
|
|
280
280
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/industrial_tool.py,sha256=iZJGzo02cVjs_9zcVobe84mkBe5HcTzFEZU7HAA1RZ0,7867
|
|
281
|
-
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py,sha256=
|
|
281
|
+
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py,sha256=sOZunu027t-2ocuICqc2WgRYOMVYxc7n2fVgXmIfkmo,12226
|
|
282
282
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/migration.py,sha256=8-7QgL4g-DMJHwBbOFAg4QscMNA1RMCqHfZYQlSNKU4,4467
|
|
283
283
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/raw.py,sha256=T_j0vJp8URJGsKeTi_bYvnNtdte_Axw5htmsu0CfG88,12104
|
|
284
284
|
cognite_toolkit/_cdf_tk/cruds/_resource_cruds/relationship.py,sha256=TO2Y6TZJEGxyKv7EMOtyyALz3Wyigp0mwBSQVTL-D5A,6330
|
|
@@ -432,13 +432,13 @@ cognite_toolkit/_repo_files/.gitignore,sha256=ip9kf9tcC5OguF4YF4JFEApnKYw0nG0vPi
|
|
|
432
432
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/README.md,sha256=OLA0D7yCX2tACpzvkA0IfkgQ4_swSd-OlJ1tYcTBpsA,240
|
|
433
433
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/deploy-pipeline.yml,sha256=brULcs8joAeBC_w_aoWjDDUHs3JheLMIR9ajPUK96nc,693
|
|
434
434
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/dry-run-pipeline.yml,sha256=OBFDhFWK1mlT4Dc6mDUE2Es834l8sAlYG50-5RxRtHk,723
|
|
435
|
-
cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=
|
|
436
|
-
cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=
|
|
437
|
-
cognite_toolkit/_resources/cdf.toml,sha256=
|
|
438
|
-
cognite_toolkit/_version.py,sha256
|
|
435
|
+
cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=Zo-JCD5QzdBiPWg286SgMWsX8PD1aiEhRv5rL64qF5M,667
|
|
436
|
+
cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=pJFvcZCFW1-Y6VUCDdy7l4PU8AS3RXL0d8R_LegghFs,2430
|
|
437
|
+
cognite_toolkit/_resources/cdf.toml,sha256=WJXABoSTdau2CfLaxY4YN8LMbH-NtqNgbtp0YERbkEI,475
|
|
438
|
+
cognite_toolkit/_version.py,sha256=EHuQcQUMUL8VzZ-ver1XABomeLZnhmhCJgAWbyfetj8,23
|
|
439
439
|
cognite_toolkit/demo/__init__.py,sha256=-m1JoUiwRhNCL18eJ6t7fZOL7RPfowhCuqhYFtLgrss,72
|
|
440
440
|
cognite_toolkit/demo/_base.py,sha256=6xKBUQpXZXGQ3fJ5f7nj7oT0s2n7OTAGIa17ZlKHZ5U,8052
|
|
441
|
-
cognite_toolkit-0.7.
|
|
442
|
-
cognite_toolkit-0.7.
|
|
443
|
-
cognite_toolkit-0.7.
|
|
444
|
-
cognite_toolkit-0.7.
|
|
441
|
+
cognite_toolkit-0.7.71.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
|
|
442
|
+
cognite_toolkit-0.7.71.dist-info/entry_points.txt,sha256=EtZ17K2mUjh-AY0QNU1CPIB_aDSSOdmtNI_4Fj967mA,84
|
|
443
|
+
cognite_toolkit-0.7.71.dist-info/METADATA,sha256=UoFCJt3xvXxfCWn4dSvtlFbDwFp-PCCxH9U2sMVUKqM,5026
|
|
444
|
+
cognite_toolkit-0.7.71.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|