cognite-toolkit 0.7.0__tar.gz → 0.7.2__tar.gz

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.
Files changed (990) hide show
  1. cognite_toolkit-0.7.2/.gitignore +322 -0
  2. cognite_toolkit-0.7.2/PKG-INFO +84 -0
  3. cognite_toolkit-0.7.2/cdf.toml +29 -0
  4. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/apps/_upload_app.py +107 -0
  5. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/builders/__init__.py +40 -0
  6. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/builders/_base.py +178 -0
  7. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/commands/__init__.py +46 -0
  8. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/commands/_changes.py +697 -0
  9. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/constants.py +190 -0
  10. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/cruds/__init__.py +221 -0
  11. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/cruds/_base_cruds.py +466 -0
  12. cognite_toolkit-0.7.2/cognite_toolkit/_cdf_tk/utils/fileio/_writers.py +429 -0
  13. cognite_toolkit-0.7.2/cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml +27 -0
  14. cognite_toolkit-0.7.2/cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml +59 -0
  15. cognite_toolkit-0.7.2/cognite_toolkit/_resources/cdf.toml +18 -0
  16. cognite_toolkit-0.7.2/cognite_toolkit/_version.py +1 -0
  17. cognite_toolkit-0.7.2/last_changelog_entry.md +12 -0
  18. cognite_toolkit-0.7.2/last_git_message.txt +35 -0
  19. cognite_toolkit-0.7.2/last_version.txt +1 -0
  20. cognite_toolkit-0.7.2/pyproject.toml +127 -0
  21. cognite_toolkit-0.7.2/tests/data/__init__.py +43 -0
  22. cognite_toolkit-0.7.2/tests/data/auth_data/groups.json +341 -0
  23. cognite_toolkit-0.7.2/tests/data/auth_data/project_info.json +38 -0
  24. cognite_toolkit-0.7.2/tests/data/auth_data/rw-group.yaml +189 -0
  25. cognite_toolkit-0.7.2/tests/data/build_group_with_unknown_acl/_build_environment.yaml +7 -0
  26. cognite_toolkit-0.7.2/tests/data/build_group_with_unknown_acl/auth/1.group_with_unknown_acl.Group.yaml +11 -0
  27. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/data_models/demo.Space.yaml +3 -0
  28. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/data_sets/demo.DataSet.yaml +3 -0
  29. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/default.config.yaml +8 -0
  30. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/extraction_pipelines/ctx_files_direct_relation_write.ExtractionPipeline.yaml +54 -0
  31. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/extraction_pipelines/ctx_files_direct_relation_write.config.yaml +28 -0
  32. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/functions/contextualization_connection_writer/handler.py +342 -0
  33. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/functions/contextualization_connection_writer/requirements.txt +3 -0
  34. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/functions/write.Function.yaml +7 -0
  35. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/module.toml +3 -0
  36. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/raw/contextualization_state.DataBase.yaml +1 -0
  37. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/raw/contextualization_state.Table.yaml +2 -0
  38. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_common/raw/source.DataBase.yaml +1 -0
  39. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_ingestion/auth/user.Group.yaml +124 -0
  40. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_ingestion/auth/workflow.Group.yaml +114 -0
  41. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_ingestion/default.config.yaml +34 -0
  42. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_ingestion/module.toml +9 -0
  43. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_ingestion/workflows/ingest.Workflow.yaml +3 -0
  44. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_ingestion/workflows/trigger.WorkflowTrigger.yaml +9 -0
  45. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_ingestion/workflows/v1.WorkflowVersion.yaml +150 -0
  46. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/auth/workflow.Group.yaml +53 -0
  47. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/default.config.yaml +13 -0
  48. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/extraction_pipelines/extractor.Config.yaml +4 -0
  49. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/extraction_pipelines/extractor.ExtractionPipeline.yaml +11 -0
  50. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/module.toml +24 -0
  51. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/raw/timeseries.Table.yaml +2 -0
  52. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/transformations/population/timeseries.Transformation.sql +9 -0
  53. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/transformations/population/timeseries.Transformation.yaml +13 -0
  54. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/workflows/population.Workflow.yaml +3 -0
  55. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/workflows/trigger.WorkflowTrigger.yaml +9 -0
  56. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/cdf_pi/workflows/v1.WorkflowVersion.yaml +11 -0
  57. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/default.config.yaml +34 -0
  58. cognite_toolkit-0.7.2/tests/data/buildable_package/modules/packages.toml +12 -0
  59. cognite_toolkit-0.7.2/tests/data/calc_hash_data/requirements.txt +1 -0
  60. cognite_toolkit-0.7.2/tests/data/calc_hash_data/src/handler.py +13 -0
  61. cognite_toolkit-0.7.2/tests/data/cdf/core_containers_no_3d.yaml +1320 -0
  62. cognite_toolkit-0.7.2/tests/data/cdf/core_no_3d.yaml +3207 -0
  63. cognite_toolkit-0.7.2/tests/data/cdf/extractor_views.yaml +670 -0
  64. cognite_toolkit-0.7.2/tests/data/cdf_toml_data/cdf.toml +9 -0
  65. cognite_toolkit-0.7.2/tests/data/complete_org/cdf.toml +4 -0
  66. cognite_toolkit-0.7.2/tests/data/complete_org/config.dev.yaml +39 -0
  67. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/3dmodels/my_model.3DModel.yaml +4 -0
  68. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/README.md +3 -0
  69. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/agents/my.Agent.yaml +9 -0
  70. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/auth/all_scoped.Group.yaml +11 -0
  71. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/auth/my_security_category.SecurityCategory.yaml +1 -0
  72. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/auth/resource_scoped.Group.yaml +35 -0
  73. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/cdf_applications/basic.SearchConfig.yaml +10 -0
  74. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/cdf_applications/complex.SearchConfig.yaml +24 -0
  75. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/my.Event.yaml +13 -0
  76. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/my.Relationship.yaml +7 -0
  77. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/my_asset.Asset.yaml +8 -0
  78. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/my_labels.Label.yaml +8 -0
  79. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/my_sequence.Sequence.yaml +13 -0
  80. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/power_curve.Sequence.yaml +13 -0
  81. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/power_curve.SequenceRow.yaml +29 -0
  82. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/root.Asset.csv +2 -0
  83. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/classic/some.Asset.yaml +8 -0
  84. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/child.View.yaml +39 -0
  85. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/description.Container.yaml +9 -0
  86. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/edge.Container.yaml +8 -0
  87. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/edge.View.yaml +9 -0
  88. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/edge_nodes.Node.yaml +6 -0
  89. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/file_extension.Container.yaml +14 -0
  90. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/file_extension.View.yaml +21 -0
  91. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/instance.Space.yaml +1 -0
  92. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/knowledge_graph.space.yaml +2 -0
  93. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/location.DataModel.yaml +8 -0
  94. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/location.Space.yaml +1 -0
  95. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/my.Edge.yaml +19 -0
  96. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/name.Container.yaml +13 -0
  97. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/parent.View.yaml +32 -0
  98. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_modeling/types.Node.yaml +4 -0
  99. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/data_sets/data_sets.DataSet.yaml +7 -0
  100. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/default.config.yaml +1 -0
  101. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/extraction_pipelines/hamburg.config.yaml +20 -0
  102. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/extraction_pipelines/my.ExtractionPipeline.yaml +10 -0
  103. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/files/classic.FileMetadata.yaml +8 -0
  104. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/files/classicfile.txt +1 -0
  105. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/files/filecontent.txt +2 -0
  106. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/files/vanilla.CogniteFile.yaml +11 -0
  107. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/README.md +4 -0
  108. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/code_in_cognite_file.function.yaml +10 -0
  109. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/first.function.yaml +26 -0
  110. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/first.schedule.yaml +14 -0
  111. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/fn_data_modeling_only_function/handler.py +13 -0
  112. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/fn_data_modeling_only_function/requirements.txt +1 -0
  113. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/arbitrary.yaml +6 -0
  114. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/handler.py +26 -0
  115. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/requirements.txt +1 -0
  116. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/src/handler.py +13 -0
  117. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/hosted_extractors/destination.Destination.yaml +5 -0
  118. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/hosted_extractors/job.Job.yaml +7 -0
  119. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/hosted_extractors/mapping.Mapping.yaml +9 -0
  120. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/hosted_extractors/my_eventhub.Source.yaml +6 -0
  121. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/locations/data_model_based.LocationFilter.yaml +10 -0
  122. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/locations/nested.LocationFilter.yaml +9 -0
  123. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/locations/view_based.LocationFilter.yaml +10 -0
  124. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/raw/example.Table.csv +4 -0
  125. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/raw/example.Table.yaml +2 -0
  126. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/raw/staging.Database.yaml +1 -0
  127. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/robotics/navigation.Map.yaml +4 -0
  128. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/robotics/read_dial_gauge.DataPostProcessing.yaml +35 -0
  129. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/robotics/robot.RobotCapability.yaml +62 -0
  130. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/robotics/root.Frame.yaml +2 -0
  131. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/robotics/water_treatment_plant.Location.yaml +3 -0
  132. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/streamlit/myapp/main.py +15 -0
  133. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/streamlit/myapp/requirements.txt +2 -0
  134. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/streamlit/myapp.Streamlit.yaml +8 -0
  135. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/timeseries/datapoints.csv +6 -0
  136. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/timeseries/my_subscription.DatapointSubscription.yaml +10 -0
  137. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/timeseries/timeseries.yaml +18 -0
  138. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/transformations/first.notification.yaml +4 -0
  139. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/transformations/first.transformation.schedule.yaml +3 -0
  140. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/transformations/first.transformation.sql +5 -0
  141. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/transformations/first.transformation.yaml +15 -0
  142. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/transformations/inline.Transformation.yaml +10 -0
  143. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/workflows/first.Workflow.yaml +3 -0
  144. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/workflows/first.WorkflowTrigger.yaml +9 -0
  145. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/workflows/first.WorkflowVersion.yaml +31 -0
  146. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_file_expand_module/data_modeling/file.Space.yaml +1 -0
  147. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_file_expand_module/default.config.yaml +1 -0
  148. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_file_expand_module/files/filecontent.txt +1 -0
  149. cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_file_expand_module/files/my.CogniteFile.yaml +7 -0
  150. cognite_toolkit-0.7.2/tests/data/complete_org/modules/packages.toml +28 -0
  151. cognite_toolkit-0.7.2/tests/data/complete_org/modules/populate_model/data_modeling/PrimitiveNullable.container.yaml +103 -0
  152. cognite_toolkit-0.7.2/tests/data/complete_org/modules/populate_model/data_modeling/PrimitiveNullable.view.yaml +82 -0
  153. cognite_toolkit-0.7.2/tests/data/complete_org/modules/populate_model/data_modeling/instance.Space.yaml +1 -0
  154. cognite_toolkit-0.7.2/tests/data/complete_org/modules/populate_model/data_modeling/model.Space.yaml +1 -0
  155. cognite_toolkit-0.7.2/tests/data/complete_org/modules/populate_model/data_modeling/population.DataModel.yaml +8 -0
  156. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/cdf.toml +4 -0
  157. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/config.dev.yaml +16 -0
  158. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/cdf_applications/my_location.InFieldLocationConfig.yaml +44 -0
  159. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/cdf_applications/my_location.InfieldV1.yaml +14 -0
  160. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/data_modeling/AssetHierarchy.GraphQLSchema.yaml +7 -0
  161. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/data_modeling/AssetHierarchy.graphql +65 -0
  162. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/data_modeling/spaces.Space.yaml +2 -0
  163. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/data_sets/data_sets.DataSet.yaml +3 -0
  164. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/files/anotherfile.txt +1 -0
  165. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/files/config.FileMetadata.yaml +8 -0
  166. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/files/config_shop.yaml +4 -0
  167. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/files/extended.CogniteFile.yaml +15 -0
  168. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/fn_multi_file_function/handler.py +13 -0
  169. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/fn_multi_file_function/other_module.py +228 -0
  170. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/fn_multi_file_function/requirements.txt +2 -0
  171. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/multi_file.function.yaml +11 -0
  172. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/migration/default_asset.ResourceViewMapping.yaml +10 -0
  173. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/my_example_module/streams/my_stream.Streams.yaml +4 -0
  174. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/to_repeat/classic/my_asset.Asset.yaml +5 -0
  175. cognite_toolkit-0.7.2/tests/data/complete_org_alpha_flags/modules/to_repeat/data_sets/location.DataSet.yaml +3 -0
  176. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/cdf.toml +4 -0
  177. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/config.dev.yaml +6 -0
  178. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/3dmodels/my_model.3DModel.yaml +1 -0
  179. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/auth/my.Group.yaml +1 -0
  180. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/auth/my_security_category.SecurityCategory.yaml +1 -0
  181. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/classic/my.Event.yaml +1 -0
  182. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/classic/my.Relationship.yaml +1 -0
  183. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/classic/my_asset.Asset.yaml +1 -0
  184. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/classic/my_labels.Label.yaml +1 -0
  185. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/classic/my_sequence.Sequence.yaml +1 -0
  186. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/data_models/my.DataModel.yaml +3 -0
  187. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/data_models/my.Edge.yaml +2 -0
  188. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/data_models/my.View.yaml +3 -0
  189. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/data_models/name.Container.yaml +2 -0
  190. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/data_models/schema.Space.yaml +1 -0
  191. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/data_models/types.Node.yaml +2 -0
  192. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/data_sets/data_sets.DataSet.yaml +1 -0
  193. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/extraction_pipelines/hamburg.config.yaml +1 -0
  194. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/extraction_pipelines/my.ExtractionPipeline.yaml +1 -0
  195. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/files/classic.FileMetadata.yaml +1 -0
  196. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/files/vanilla.CogniteFile.yaml +2 -0
  197. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/locations/data_model_based.LocationFilter.yaml +1 -0
  198. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/raw/example.Table.yaml +2 -0
  199. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/raw/staging.Database.yaml +1 -0
  200. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/robotics/navigation.Map.yaml +1 -0
  201. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/robotics/read_dial_gauge.DataPostProcessing.yaml +1 -0
  202. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/robotics/robot.RobotCapability.yaml +1 -0
  203. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/robotics/root.Frame.yaml +1 -0
  204. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/robotics/water_treatment_plant.Location.yaml +1 -0
  205. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/timeseries/my_subscription.DatapointSubscription.yaml +1 -0
  206. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/timeseries/timeseries.yaml +1 -0
  207. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/transformations/first.notification.yaml +2 -0
  208. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/transformations/first.transformation.schedule.yaml +1 -0
  209. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/transformations/first.transformation.yaml +1 -0
  210. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/workflows/first.Workflow.yaml +1 -0
  211. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/workflows/first.WorkflowTrigger.yaml +1 -0
  212. cognite_toolkit-0.7.2/tests/data/complete_org_only_identifier/modules/identifier/workflows/first.WorkflowVersion.yaml +2 -0
  213. cognite_toolkit-0.7.2/tests/data/external_package/default.config.yaml +1 -0
  214. cognite_toolkit-0.7.2/tests/data/external_package/external_module_1/default.config.yaml +1 -0
  215. cognite_toolkit-0.7.2/tests/data/external_package/external_module_1/module.toml +5 -0
  216. cognite_toolkit-0.7.2/tests/data/external_package/external_module_2/default.config.yaml +1 -0
  217. cognite_toolkit-0.7.2/tests/data/external_package/external_module_2/module.toml +5 -0
  218. cognite_toolkit-0.7.2/tests/data/external_package/packages.toml +11 -0
  219. cognite_toolkit-0.7.2/tests/data/load_data/auth/1.my_group_list_combined.yaml +61 -0
  220. cognite_toolkit-0.7.2/tests/data/load_data/auth/1.my_group_scoped.yaml +33 -0
  221. cognite_toolkit-0.7.2/tests/data/load_data/auth/1.my_group_unscoped.yaml +17 -0
  222. cognite_toolkit-0.7.2/tests/data/load_data/data_sets/1.my_datasets.yaml +6 -0
  223. cognite_toolkit-0.7.2/tests/data/load_data/datamodels/snake_cased_view_property.yaml +12 -0
  224. cognite_toolkit-0.7.2/tests/data/load_data/files/my_file.FileMetadata.yaml +2 -0
  225. cognite_toolkit-0.7.2/tests/data/load_data/files/my_file.txt +4 -0
  226. cognite_toolkit-0.7.2/tests/data/load_data/functions/1.my_function.yaml +23 -0
  227. cognite_toolkit-0.7.2/tests/data/load_data/functions/1.my_functions.yaml +27 -0
  228. cognite_toolkit-0.7.2/tests/data/load_data/locations/exhaustive.LocationFilter.yaml +54 -0
  229. cognite_toolkit-0.7.2/tests/data/load_data/locations/minimum.LocationFilter.yaml +8 -0
  230. cognite_toolkit-0.7.2/tests/data/load_data/timeseries/wrong_case.yaml +8 -0
  231. cognite_toolkit-0.7.2/tests/data/load_data/timeseries_datapoints/datapoints.csv +11 -0
  232. cognite_toolkit-0.7.2/tests/data/naughty_project/README.md +3 -0
  233. cognite_toolkit-0.7.2/tests/data/naughty_project/cdf.toml +4 -0
  234. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/difficult_graphql/misbehaving_grandparent.GraphQLSchema.graphql +30 -0
  235. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/difficult_graphql/misbehaving_grandparent.GraphQLSchema.yaml +7 -0
  236. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/difficult_graphql/space.Space.yaml +1 -0
  237. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/encoding_issue/data_sets/ds_teste_data_team_1.DataSet.yaml +8 -0
  238. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/encoding_issue/transformations/create_data.py +19 -0
  239. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/encoding_issue/transformations/my_cp1252.Transformation.yaml +11 -0
  240. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/encoding_issue/transformations/my_utf-8.Transformation.yaml +11 -0
  241. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/multi_locations/first_location/locations/this.LocationFilter.yaml +3 -0
  242. cognite_toolkit-0.7.2/tests/data/naughty_project/modules/multi_locations/second_location/locations/this.LocationFilter.yaml +3 -0
  243. cognite_toolkit-0.7.2/tests/data/project_for_test/config.dev.yaml +32 -0
  244. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/a_module/auth/readonly.all.group.yaml +11 -0
  245. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/a_module/default.config.yaml +4 -0
  246. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/data_models/containers/my_container.container.yaml +20 -0
  247. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/data_models/data_models/my_data_model.datamodel.yaml +9 -0
  248. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/data_models/spaces/my_space.space.yaml +3 -0
  249. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/data_models/views/10.my_other_view.yaml +13 -0
  250. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/data_models/views/4.my_view.view.yaml +13 -0
  251. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/data_sets/file.DataSet.yaml +3 -0
  252. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/default.config.yaml +7 -0
  253. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/files/files.FileMetadata.yaml +4 -0
  254. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/another_module/files/my_text.txt +1 -0
  255. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/default.config.yaml +2 -0
  256. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/parent_module/child_module/data_sets/transformation.DataSet.yaml +3 -0
  257. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/parent_module/child_module/default.config.yaml +2 -0
  258. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/parent_module/child_module/transformations/tr_asset_oid_workmate_asset_hierarchy_example.Transformation.sql +8 -0
  259. cognite_toolkit-0.7.2/tests/data/project_for_test/modules/parent_module/child_module/transformations/tr_asset_oid_workmate_asset_hierarchy_example.Transformation.yaml +8 -0
  260. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/cdf.toml +4 -0
  261. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/config.dev.yaml +21 -0
  262. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/config.top_level_variables.yaml +17 -0
  263. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/data_modeling/my_model.GraphQLSchema.yaml +7 -0
  264. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/data_modeling/my_model.graphql +4 -0
  265. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/data_modeling/thespace.space.yaml +3 -0
  266. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/data_sets/datasets.DataSet.yaml +3 -0
  267. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/data_sets/extraction.DataSet.yaml +6 -0
  268. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/extraction_pipelines/my.ExtractionPipeline.yaml +8 -0
  269. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/raw/all.RawTable.yaml +10 -0
  270. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/timeseries/timeseries.yaml +5 -0
  271. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/transformations/my.Transformation.sql +8 -0
  272. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/transformations/my.Transformation.yaml +8 -0
  273. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/a_module/transformations/some.Notification.yaml +2 -0
  274. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/a_space.space.yaml +3 -0
  275. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/config.node.yaml +27 -0
  276. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/my.Container.yaml +13 -0
  277. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/my.View.yaml +26 -0
  278. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/data_sets/datasets.DataSet.yaml +3 -0
  279. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/robotics/navigation.Map.yaml +4 -0
  280. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/robotics/read_dial_gauge.DataPostProcessing.yaml +35 -0
  281. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/robotics/robot.RobotCapability.yaml +62 -0
  282. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/robotics/root.Frame.yaml +2 -0
  283. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/robotics/water_treatment_plant.Location.yaml +3 -0
  284. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/transformations/subfolder/my.Transformation.sql +8 -0
  285. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/transformations/subfolder/my.Transformation.yaml +8 -0
  286. cognite_toolkit-0.7.2/tests/data/project_no_cognite_modules/modules/another_module/transformations/subfolder/some.Notification.yaml +2 -0
  287. cognite_toolkit-0.7.2/tests/data/project_with_bad_modules/cdf.toml +4 -0
  288. cognite_toolkit-0.7.2/tests/data/project_with_bad_modules/config.ill_module.yaml +6 -0
  289. cognite_toolkit-0.7.2/tests/data/project_with_bad_modules/config.no_module.yaml +6 -0
  290. cognite_toolkit-0.7.2/tests/data/project_with_bad_modules/modules/ill_made_module/auth/1.my_group_scoped.yaml +33 -0
  291. cognite_toolkit-0.7.2/tests/data/project_with_bad_modules/modules/ill_made_module/spaces/apm_simple.space.yaml +3 -0
  292. cognite_toolkit-0.7.2/tests/data/project_with_bad_modules/modules/not_module/group/1.my_group_list_combined.yaml +61 -0
  293. cognite_toolkit-0.7.2/tests/data/project_with_duplicates/cdf.toml +4 -0
  294. cognite_toolkit-0.7.2/tests/data/project_with_duplicates/config.dev.yaml +16 -0
  295. cognite_toolkit-0.7.2/tests/data/project_with_duplicates/modules/examples/module1/data_models/my_space.space.yaml +1 -0
  296. cognite_toolkit-0.7.2/tests/data/project_with_duplicates/modules/models/module1/data_models/my_space.space.yaml +1 -0
  297. cognite_toolkit-0.7.2/tests/data/run_data/cdf.toml +18 -0
  298. cognite_toolkit-0.7.2/tests/data/run_data/config.dev.yaml +23 -0
  299. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3/handler.py +16 -0
  300. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3/part_of_code.yaml +1 -0
  301. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3/requirements.txt +1 -0
  302. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/functions/my.Function.yaml +13 -0
  303. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/functions/my.Schedule.yaml +22 -0
  304. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/workflows/population.Workflow.yaml +2 -0
  305. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/workflows/trigger.WorkflowTrigger.yaml +9 -0
  306. cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/workflows/v1.WorkflowVersion.yaml +14 -0
  307. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/1.Production.container.yaml +38 -0
  308. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/10.SimNode.container.yaml +22 -0
  309. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/12.SimSubNode.container.yaml +22 -0
  310. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/13.SimEdge.container.yaml +38 -0
  311. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/14.Property.container.yaml +67 -0
  312. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/15.Coordinate.container.yaml +41 -0
  313. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/16.Coordinates.container.yaml +49 -0
  314. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/17.ModelExecutionEnvironment.view.yaml +25 -0
  315. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/18.Coordinate.view.yaml +35 -0
  316. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/19.Coordinates.view.yaml +42 -0
  317. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/2.SimulationModel.container.yaml +44 -0
  318. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/20.SimEdge.view.yaml +47 -0
  319. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/21.ProductionTimeseries.view.yaml +23 -0
  320. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/22.SimNode.view.yaml +39 -0
  321. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/23.Production.view.yaml +58 -0
  322. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/24.SimSubNode.view.yaml +23 -0
  323. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/25.SimulationResultFile.view.yaml +23 -0
  324. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/26.InputProperty.view.yaml +17 -0
  325. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/28.OutputProperty.view.yaml +17 -0
  326. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/29.Property.view.yaml +69 -0
  327. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/3.strongly-coupled-model.datamodel.yaml +178 -0
  328. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/30.SimulationModel.view.yaml +81 -0
  329. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/31.SimNodeAndEdge.view.yaml +88 -0
  330. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/5.my.space.yaml +3 -0
  331. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/6.ModelExecutionEnvironment.container.yaml +32 -0
  332. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/7.ProductionTimeseries.container.yaml +22 -0
  333. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/8.SimNodeAndEdge.container.yaml +48 -0
  334. cognite_toolkit-0.7.2/tests/data/strongly_coupled_model/data_modeling/9.SimulationResultFile.container.yaml +22 -0
  335. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest.Notification.yaml +2 -0
  336. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest.Schedule.yaml +3 -0
  337. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest.Transformation.yaml +31 -0
  338. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest.yaml +71 -0
  339. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest_to_asset.Notification.yaml +2 -0
  340. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest_to_asset.Schedule.yaml +2 -0
  341. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest_to_asset.Transformation.sql +15 -0
  342. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest_to_asset.Transformation.yaml +22 -0
  343. cognite_toolkit-0.7.2/tests/data/transformation_cli/manifest_to_asset.yaml +38 -0
  344. cognite_toolkit-0.7.2/tests/data/transformation_cli/transformation.sql +15 -0
  345. cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_builders/test_builder.py +66 -0
  346. cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_storageio/__init__.py +0 -0
  347. cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_tk_warnings/__init__.py +0 -0
  348. cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_utils/__init__.py +0 -0
  349. cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_utils/test_utils.py +397 -0
  350. cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_validation/__init__.py +0 -0
  351. cognite_toolkit-0.7.2/tests/test_unit/test_cli/__init__.py +0 -0
  352. cognite_toolkit-0.7.2/tests/test_unit/test_cli/test_build_deploy_snapshots/complete_org.yaml +1144 -0
  353. cognite_toolkit-0.7.2/tests/test_unit/test_cli/test_command_sequences.py +271 -0
  354. cognite_toolkit-0.7.2/uv.lock +2272 -0
  355. cognite_toolkit-0.7.0/.gitignore +0 -317
  356. cognite_toolkit-0.7.0/PKG-INFO +0 -84
  357. cognite_toolkit-0.7.0/cdf.toml +0 -29
  358. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/apps/_upload_app.py +0 -107
  359. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/builders/__init__.py +0 -40
  360. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/builders/_base.py +0 -192
  361. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/commands/__init__.py +0 -48
  362. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/commands/_changes.py +0 -733
  363. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/commands/dump_data.py +0 -489
  364. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/constants.py +0 -190
  365. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/cruds/__init__.py +0 -215
  366. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/cruds/_base_cruds.py +0 -480
  367. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/utils/fileio/_writers.py +0 -429
  368. cognite_toolkit-0.7.0/cognite_toolkit/_cdf_tk/utils/table_writers.py +0 -434
  369. cognite_toolkit-0.7.0/cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml +0 -27
  370. cognite_toolkit-0.7.0/cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml +0 -59
  371. cognite_toolkit-0.7.0/cognite_toolkit/_resources/cdf.toml +0 -18
  372. cognite_toolkit-0.7.0/cognite_toolkit/_version.py +0 -1
  373. cognite_toolkit-0.7.0/last_changelog_entry.md +0 -24
  374. cognite_toolkit-0.7.0/last_git_message.txt +0 -36
  375. cognite_toolkit-0.7.0/last_version.txt +0 -1
  376. cognite_toolkit-0.7.0/pyproject.toml +0 -127
  377. cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_builders/test_builder.py +0 -36
  378. cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_commands/test_dump_data.py +0 -292
  379. cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_utils/test_table_writers.py +0 -325
  380. cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_utils/test_utils.py +0 -397
  381. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_apm_base.yaml +0 -1
  382. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_auth_readwrite_all.yaml +0 -1
  383. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_cdm_extension.yaml +0 -1
  384. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_cdm_extension_full.yaml +0 -1
  385. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_connection_sql.yaml +0 -1
  386. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_entity_matching.yaml +0 -1
  387. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_infield_common.yaml +0 -1
  388. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_infield_location.yaml +0 -1
  389. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_infield_second_location.yaml +0 -1
  390. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_inrobot_common.yaml +0 -1
  391. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_inrobot_location.yaml +0 -1
  392. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_location_filter_asset_centric.yaml +0 -1
  393. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_location_filter_datamodel_based.yaml +0 -1
  394. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_p_and_id_parser.yaml +0 -1
  395. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_process_industry_extension.yaml +0 -1
  396. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_process_industry_extension_full.yaml +0 -1
  397. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_sap_assets.yaml +0 -1
  398. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_sap_events.yaml +0 -1
  399. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_scene.yaml +0 -1
  400. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_search.yaml +0 -1
  401. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_sharepoint.yaml +0 -1
  402. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/ice_cream_api.yaml +0 -1
  403. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/my_example_module.yaml +0 -1
  404. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/my_file_expand_module.yaml +0 -1
  405. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/my_module.yaml +0 -1
  406. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/oee.yaml +0 -1
  407. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_clean_snapshots/populate_model.yaml +0 -1
  408. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_apm_base.yaml +0 -702
  409. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_auth_readwrite_all.yaml +0 -607
  410. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_cdm_extension.yaml +0 -638
  411. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_cdm_extension_full.yaml +0 -2180
  412. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_connection_sql.yaml +0 -122
  413. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_entity_matching.yaml +0 -199
  414. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_infield_common.yaml +0 -56
  415. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_infield_location.yaml +0 -467
  416. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_infield_second_location.yaml +0 -467
  417. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_inrobot_common.yaml +0 -856
  418. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_inrobot_location.yaml +0 -316
  419. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_location_filter_asset_centric.yaml +0 -40
  420. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_location_filter_datamodel_based.yaml +0 -14
  421. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_p_and_id_parser.yaml +0 -71
  422. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_process_industry_extension.yaml +0 -942
  423. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_process_industry_extension_full.yaml +0 -2486
  424. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_sap_assets.yaml +0 -95
  425. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_sap_events.yaml +0 -100
  426. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_scene.yaml +0 -660
  427. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_search.yaml +0 -11
  428. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_sharepoint.yaml +0 -23
  429. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/complete_org.yaml +0 -1144
  430. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/ice_cream_api.yaml +0 -1
  431. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/my_example_module.yaml +0 -833
  432. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/my_file_expand_module.yaml +0 -34
  433. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/my_module.yaml +0 -1
  434. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/oee.yaml +0 -1
  435. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_build_deploy_snapshots/populate_model.yaml +0 -202
  436. cognite_toolkit-0.7.0/tests/test_unit/test_cli/test_command_sequences.py +0 -271
  437. cognite_toolkit-0.7.0/uv.lock +0 -2272
  438. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.cursorignore +0 -0
  439. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.gemini/styleguide.md +0 -0
  440. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.github/CODEOWNERS +0 -0
  441. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.github/pull_request_template.md +0 -0
  442. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.github/renovate.json +0 -0
  443. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.github/workflows/demo.yml +0 -0
  444. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.github/workflows/release.yaml +0 -0
  445. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.markdownlint.yaml +0 -0
  446. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.pre-commit-config.yaml +0 -0
  447. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/.vscode/launch.json +0 -0
  448. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/CONTRIBUTING.md +0 -0
  449. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/Dockerfile +0 -0
  450. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/LIBRARIES.md +0 -0
  451. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/LICENSE +0 -0
  452. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/README.md +0 -0
  453. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/branding/toolkit.png +0 -0
  454. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/branding/toolkit.svg +0 -0
  455. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/branding/toolkit.txt +0 -0
  456. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cdf-tk +0 -0
  457. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cdf-tk-dev.py +0 -0
  458. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/__init__.py +0 -0
  459. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf.py +0 -0
  460. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/__init__.py +0 -0
  461. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/__init__.py +0 -0
  462. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_auth_app.py +0 -0
  463. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_core_app.py +0 -0
  464. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_data_app.py +0 -0
  465. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_dev_app.py +0 -0
  466. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_download_app.py +0 -0
  467. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_dump_app.py +0 -0
  468. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_landing_app.py +0 -0
  469. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_migrate_app.py +0 -0
  470. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_modules_app.py +0 -0
  471. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_profile_app.py +0 -0
  472. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_purge.py +0 -0
  473. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_repo_app.py +0 -0
  474. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/apps/_run.py +0 -0
  475. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/builders/_datamodels.py +0 -0
  476. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/builders/_file.py +0 -0
  477. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/builders/_function.py +0 -0
  478. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/builders/_location.py +0 -0
  479. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/builders/_raw.py +0 -0
  480. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/builders/_streamlit.py +0 -0
  481. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/builders/_transformation.py +0 -0
  482. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cdf_toml.py +0 -0
  483. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/__init__.py +0 -0
  484. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/_constants.py +0 -0
  485. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/_toolkit_client.py +0 -0
  486. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/__init__.py +0 -0
  487. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/canvas.py +0 -0
  488. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/charts.py +0 -0
  489. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/dml.py +0 -0
  490. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/extended_data_modeling.py +0 -0
  491. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/extended_files.py +0 -0
  492. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/extended_functions.py +0 -0
  493. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/extended_raw.py +0 -0
  494. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/extended_timeseries.py +0 -0
  495. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/fixed_transformations.py +0 -0
  496. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/infield.py +0 -0
  497. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/location_filters.py +0 -0
  498. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/lookup.py +0 -0
  499. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/migration.py +0 -0
  500. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/project.py +0 -0
  501. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/__init__.py +0 -0
  502. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/api.py +0 -0
  503. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/capabilities.py +0 -0
  504. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/data_postprocessing.py +0 -0
  505. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/frames.py +0 -0
  506. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/locations.py +0 -0
  507. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/maps.py +0 -0
  508. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/robots.py +0 -0
  509. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/robotics/utlis.py +0 -0
  510. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/search.py +0 -0
  511. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/search_config.py +0 -0
  512. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/streams.py +0 -0
  513. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/token.py +0 -0
  514. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api/verify.py +0 -0
  515. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/api_client.py +0 -0
  516. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/config.py +0 -0
  517. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/__init__.py +0 -0
  518. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/api_classes.py +0 -0
  519. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/apm_config_v1.py +0 -0
  520. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/base.py +0 -0
  521. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/canvas.py +0 -0
  522. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/capabilities.py +0 -0
  523. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/charts.py +0 -0
  524. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/charts_data.py +0 -0
  525. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/extendable_cognite_file.py +0 -0
  526. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/extended_filemetadata.py +0 -0
  527. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/extended_filemetdata.py +0 -0
  528. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/extended_timeseries.py +0 -0
  529. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/functions.py +0 -0
  530. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/graphql_data_models.py +0 -0
  531. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/infield.py +0 -0
  532. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/instance_api.py +0 -0
  533. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/instances.py +0 -0
  534. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/location_filters.py +0 -0
  535. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/migration.py +0 -0
  536. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/pending_instances_ids.py +0 -0
  537. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/project.py +0 -0
  538. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/raw.py +0 -0
  539. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/robotics.py +0 -0
  540. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/search_config.py +0 -0
  541. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/sequences.py +0 -0
  542. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/streamlit_.py +0 -0
  543. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/data_classes/streams.py +0 -0
  544. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/testing.py +0 -0
  545. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/utils/__init__.py +0 -0
  546. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/utils/_concurrency.py +0 -0
  547. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/client/utils/_http_client.py +0 -0
  548. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_base.py +0 -0
  549. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_cli_commands.py +0 -0
  550. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_download.py +0 -0
  551. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/__init__.py +0 -0
  552. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/canvas.py +0 -0
  553. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/command.py +0 -0
  554. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/conversion.py +0 -0
  555. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/creators.py +0 -0
  556. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/data_classes.py +0 -0
  557. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/data_mapper.py +0 -0
  558. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/data_model.py +0 -0
  559. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/default_mappings.py +0 -0
  560. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/issues.py +0 -0
  561. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py +0 -0
  562. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/prepare.py +0 -0
  563. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_migrate/selectors.py +0 -0
  564. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_profile.py +0 -0
  565. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_purge.py +0 -0
  566. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_questionary_style.py +0 -0
  567. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_upload.py +0 -0
  568. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_utils.py +0 -0
  569. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/_virtual_env.py +0 -0
  570. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/auth.py +0 -0
  571. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/build_cmd.py +0 -0
  572. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/clean.py +0 -0
  573. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/collect.py +0 -0
  574. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/deploy.py +0 -0
  575. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/dump_resource.py +0 -0
  576. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/featureflag.py +0 -0
  577. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/init.py +0 -0
  578. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/modules.py +0 -0
  579. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/pull.py +0 -0
  580. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/repo.py +0 -0
  581. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/commands/run.py +0 -0
  582. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_data_cruds.py +0 -0
  583. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/__init__.py +0 -0
  584. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/agent.py +0 -0
  585. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/auth.py +0 -0
  586. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/classic.py +0 -0
  587. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/configuration.py +0 -0
  588. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/data_organization.py +0 -0
  589. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/datamodel.py +0 -0
  590. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/extraction_pipeline.py +0 -0
  591. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py +0 -0
  592. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/file.py +0 -0
  593. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/function.py +0 -0
  594. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/group_scoped.py +0 -0
  595. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/hosted_extractors.py +0 -0
  596. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/industrial_tool.py +0 -0
  597. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py +0 -0
  598. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/migration.py +0 -0
  599. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/raw.py +0 -0
  600. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/relationship.py +0 -0
  601. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/robotics.py +0 -0
  602. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/streams.py +0 -0
  603. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/three_d_model.py +0 -0
  604. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/timeseries.py +0 -0
  605. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/transformation.py +0 -0
  606. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/workflow.py +0 -0
  607. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/cruds/_worker.py +0 -0
  608. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/__init__.py +0 -0
  609. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_base.py +0 -0
  610. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_build_files.py +0 -0
  611. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_build_variables.py +0 -0
  612. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_built_modules.py +0 -0
  613. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_built_resources.py +0 -0
  614. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_config_yaml.py +0 -0
  615. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_deploy_results.py +0 -0
  616. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_module_directories.py +0 -0
  617. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_module_resources.py +0 -0
  618. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_module_toml.py +0 -0
  619. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_packages.py +0 -0
  620. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_tracking_info.py +0 -0
  621. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/data_classes/_yaml_comments.py +0 -0
  622. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/exceptions.py +0 -0
  623. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/feature_flags.py +0 -0
  624. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/hints.py +0 -0
  625. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/plugins.py +0 -0
  626. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/protocols.py +0 -0
  627. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/prototypes/commands/__init__.py +0 -0
  628. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/prototypes/commands/import_.py +0 -0
  629. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/prototypes/import_app.py +0 -0
  630. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/__init__.py +0 -0
  631. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/agent.py +0 -0
  632. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/agent_tools.py +0 -0
  633. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/asset.py +0 -0
  634. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/authentication.py +0 -0
  635. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/base.py +0 -0
  636. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/capabilities.py +0 -0
  637. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/cognitefile.py +0 -0
  638. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/container_field_definitions.py +0 -0
  639. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/containers.py +0 -0
  640. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/data_model.py +0 -0
  641. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/datapoint_subscription.py +0 -0
  642. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/dataset.py +0 -0
  643. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/event.py +0 -0
  644. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/extraction_pipeline.py +0 -0
  645. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/extraction_pipeline_config.py +0 -0
  646. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/filemetadata.py +0 -0
  647. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/function_schedule.py +0 -0
  648. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/functions.py +0 -0
  649. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/graphql_model.py +0 -0
  650. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/groups.py +0 -0
  651. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_destination.py +0 -0
  652. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_job.py +0 -0
  653. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_mapping.py +0 -0
  654. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_source.py +0 -0
  655. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/infield_location_config.py +0 -0
  656. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/infield_v1.py +0 -0
  657. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/instance.py +0 -0
  658. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/labels.py +0 -0
  659. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/location.py +0 -0
  660. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/migration.py +0 -0
  661. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/raw_database_table.py +0 -0
  662. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/relationship.py +0 -0
  663. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/robotics/__init__.py +0 -0
  664. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/robotics/capability.py +0 -0
  665. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/robotics/data_postprocessing.py +0 -0
  666. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/robotics/frame.py +0 -0
  667. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/robotics/location.py +0 -0
  668. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/robotics/map.py +0 -0
  669. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/search_config.py +0 -0
  670. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/securitycategories.py +0 -0
  671. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/sequence.py +0 -0
  672. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/space.py +0 -0
  673. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/streamlit_.py +0 -0
  674. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/streams.py +0 -0
  675. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/threedmodels.py +0 -0
  676. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/timeseries.py +0 -0
  677. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/transformation_destination.py +0 -0
  678. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/transformation_notification.py +0 -0
  679. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/transformation_schedule.py +0 -0
  680. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/transformations.py +0 -0
  681. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/view_field_definitions.py +0 -0
  682. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/views.py +0 -0
  683. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/workflow.py +0 -0
  684. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/workflow_trigger.py +0 -0
  685. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/resource_classes/workflow_version.py +0 -0
  686. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/__init__.py +0 -0
  687. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_annotations.py +0 -0
  688. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_applications.py +0 -0
  689. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_asset_centric.py +0 -0
  690. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_base.py +0 -0
  691. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_data_classes.py +0 -0
  692. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_datapoints.py +0 -0
  693. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_file_content.py +0 -0
  694. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_instances.py +0 -0
  695. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/_raw.py +0 -0
  696. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/__init__.py +0 -0
  697. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_asset_centric.py +0 -0
  698. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_base.py +0 -0
  699. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_canvas.py +0 -0
  700. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_charts.py +0 -0
  701. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_datapoints.py +0 -0
  702. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_file_content.py +0 -0
  703. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_instances.py +0 -0
  704. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/storageio/selectors/_raw.py +0 -0
  705. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/tk_warnings/__init__.py +0 -0
  706. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/tk_warnings/base.py +0 -0
  707. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/tk_warnings/fileread.py +0 -0
  708. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/tk_warnings/other.py +0 -0
  709. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/tracker.py +0 -0
  710. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/__init__.py +0 -0
  711. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/_auxiliary.py +0 -0
  712. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/aggregators.py +0 -0
  713. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/auth.py +0 -0
  714. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/auxiliary.py +0 -0
  715. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/cdf.py +0 -0
  716. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/cicd.py +0 -0
  717. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/cli_args.py +0 -0
  718. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/collection.py +0 -0
  719. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/diff_list.py +0 -0
  720. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/dtype_conversion.py +0 -0
  721. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/file.py +0 -0
  722. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/fileio/__init__.py +0 -0
  723. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/fileio/_base.py +0 -0
  724. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/fileio/_compression.py +0 -0
  725. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/fileio/_readers.py +0 -0
  726. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/graphql_parser.py +0 -0
  727. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/hashing.py +0 -0
  728. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/http_client/__init__.py +0 -0
  729. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/http_client/_client.py +0 -0
  730. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/http_client/_data_classes.py +0 -0
  731. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/http_client/_exception.py +0 -0
  732. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/http_client/_tracker.py +0 -0
  733. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/interactive_select.py +0 -0
  734. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/modules.py +0 -0
  735. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/producer_worker.py +0 -0
  736. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/progress_tracker.py +0 -0
  737. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/repository.py +0 -0
  738. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/sentry_utils.py +0 -0
  739. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/sql_parser.py +0 -0
  740. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/text.py +0 -0
  741. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/thread_safe_dict.py +0 -0
  742. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/useful_types.py +0 -0
  743. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/utils/validate_access.py +0 -0
  744. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_cdf_tk/validation.py +0 -0
  745. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_repo_files/.env.tmpl +0 -0
  746. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_repo_files/.gitignore +0 -0
  747. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_repo_files/AzureDevOps/.devops/README.md +0 -0
  748. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_repo_files/AzureDevOps/.devops/deploy-pipeline.yml +0 -0
  749. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/_repo_files/AzureDevOps/.devops/dry-run-pipeline.yml +0 -0
  750. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/demo/__init__.py +0 -0
  751. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/cognite_toolkit/demo/_base.py +0 -0
  752. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/demo/README.md +0 -0
  753. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/demo/__init__.py +0 -0
  754. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/demo/config.demo.yaml +0 -0
  755. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/demo/preproc.py +0 -0
  756. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/dev.py +0 -0
  757. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/module_upgrade/README.md +0 -0
  758. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/module_upgrade/__init__.py +0 -0
  759. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/module_upgrade/run_check.py +0 -0
  760. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/README.md +0 -0
  761. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/__init__.py +0 -0
  762. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/auth_utils.py +0 -0
  763. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/conftest.py +0 -0
  764. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/constants.py +0 -0
  765. {cognite_toolkit-0.7.0/tests/test_integration → cognite_toolkit-0.7.2/tests/data/calc_hash_data/src}/__init__.py +0 -0
  766. {cognite_toolkit-0.7.0/tests/test_integration/test_commands → cognite_toolkit-0.7.2/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/src}/__init__.py +0 -0
  767. /cognite_toolkit-0.7.0/tests/test_integration/test_cruds/__init__.py → /cognite_toolkit-0.7.2/tests/data/external_package/external_module_1/raw/.gitkeep +0 -0
  768. /cognite_toolkit-0.7.0/tests/test_integration/test_storageio/__init__.py → /cognite_toolkit-0.7.2/tests/data/external_package/external_module_2/raw/.gitkeep +0 -0
  769. {cognite_toolkit-0.7.0/tests/test_integration/test_toolkit_client → cognite_toolkit-0.7.2/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3}/__init__.py +0 -0
  770. {cognite_toolkit-0.7.0/tests/test_integration/test_utils → cognite_toolkit-0.7.2/tests/test_integration}/__init__.py +0 -0
  771. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/conftest.py +0 -0
  772. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/constants.py +0 -0
  773. {cognite_toolkit-0.7.0/tests/test_unit → cognite_toolkit-0.7.2/tests/test_integration/test_commands}/__init__.py +0 -0
  774. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_deploy.py +0 -0
  775. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_deploy_data_model.py +0 -0
  776. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_download_command.py +0 -0
  777. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_dump_data_model.py +0 -0
  778. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_dump_extraction_pipeline.py +0 -0
  779. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_dump_transformation.py +0 -0
  780. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_migrate_assets.py +0 -0
  781. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_migrate_files.py +0 -0
  782. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_migrate_prepare.py +0 -0
  783. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_profile.py +0 -0
  784. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_purge.py +0 -0
  785. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_commands/test_upload.py +0 -0
  786. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk → cognite_toolkit-0.7.2/tests/test_integration/test_cruds}/__init__.py +0 -0
  787. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_cruds/test_resource_crud_containers.py +0 -0
  788. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_cruds/test_resource_cruds.py +0 -0
  789. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_builders → cognite_toolkit-0.7.2/tests/test_integration/test_storageio}/__init__.py +0 -0
  790. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_storageio/test_applications.py +0 -0
  791. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_storageio/test_filecontent.py +0 -0
  792. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_client → cognite_toolkit-0.7.2/tests/test_integration/test_toolkit_client}/__init__.py +0 -0
  793. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/conftest.py +0 -0
  794. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_canvas.py +0 -0
  795. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_charts.py +0 -0
  796. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_extended_files.py +0 -0
  797. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_extended_functions.py +0 -0
  798. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_extended_timeseries.py +0 -0
  799. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_infield.py +0 -0
  800. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_instances.py +0 -0
  801. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_locations.py +0 -0
  802. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_lookup.py +0 -0
  803. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_migration.py +0 -0
  804. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_projects.py +0 -0
  805. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_raw_profile.py +0 -0
  806. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_robotics.py +0 -0
  807. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_search_config.py +0 -0
  808. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_toolkit_client/test_streams.py +0 -0
  809. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_commands → cognite_toolkit-0.7.2/tests/test_integration/test_utils}/__init__.py +0 -0
  810. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_utils/test_aggregators.py +0 -0
  811. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_utils/test_cdf.py +0 -0
  812. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_integration/test_utils/test_http_client.py +0 -0
  813. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd → cognite_toolkit-0.7.2/tests/test_unit}/__init__.py +0 -0
  814. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/approval_client/__init__.py +0 -0
  815. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/approval_client/client.py +0 -0
  816. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/approval_client/config.py +0 -0
  817. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/approval_client/data_classes.py +0 -0
  818. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/approval_client/test_toolkit_client_mock.py +0 -0
  819. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/conftest.py +0 -0
  820. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/get_type_hints.py +0 -0
  821. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_cruds → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk}/__init__.py +0 -0
  822. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/constants.py +0 -0
  823. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/snapshots/load_data_snapshots/files.yaml +0 -0
  824. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/snapshots/load_data_snapshots/timeseries.yaml +0 -0
  825. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_data_classes → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_builders}/__init__.py +0 -0
  826. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_builders/test_location_builder.py +0 -0
  827. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_resource_classes → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_client}/__init__.py +0 -0
  828. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/conftest.py +0 -0
  829. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_apm_config_v1.py +0 -0
  830. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_canvas.py +0 -0
  831. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_capabilities.py +0 -0
  832. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_charts.py +0 -0
  833. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_client_config.py +0 -0
  834. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_extended_filemetadata.py +0 -0
  835. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_extended_functions.py +0 -0
  836. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_extended_timeseries.py +0 -0
  837. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_instances.py +0 -0
  838. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_lookup.py +0 -0
  839. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_migration.py +0 -0
  840. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_raw_data_classes.py +0 -0
  841. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_resource_view_mapping.py +0 -0
  842. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_search_config.py +0 -0
  843. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_client/test_token_api.py +0 -0
  844. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_storageio → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_commands}/__init__.py +0 -0
  845. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_auth.py +0 -0
  846. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_build.py +0 -0
  847. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_clean.py +0 -0
  848. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_deploy.py +0 -0
  849. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_download.py +0 -0
  850. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_dump_resource.py +0 -0
  851. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_import.py +0 -0
  852. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_init.py +0 -0
  853. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_tk_warnings → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd}/__init__.py +0 -0
  854. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_command.py +0 -0
  855. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_conversion.py +0 -0
  856. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_creator.py +0 -0
  857. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_data_classes.py +0 -0
  858. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_data_mapper.py +0 -0
  859. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_migrate_canvas.py +0 -0
  860. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_migration_io.py +0 -0
  861. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_migration_issues.py +0 -0
  862. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_modules.py +0 -0
  863. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_profile.py +0 -0
  864. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_pull.py +0 -0
  865. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_purge.py +0 -0
  866. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_run.py +0 -0
  867. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_commands/test_upload.py +0 -0
  868. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_utils → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_cruds}/__init__.py +0 -0
  869. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_base.py +0 -0
  870. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_classic.py +0 -0
  871. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_container.py +0 -0
  872. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_data_model.py +0 -0
  873. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_data_set.py +0 -0
  874. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_extraction_pipeline.py +0 -0
  875. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_fieldops.py +0 -0
  876. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_file_metadata.py +0 -0
  877. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_function.py +0 -0
  878. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_group.py +0 -0
  879. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_hosted_extractor.py +0 -0
  880. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_industrial_tool.py +0 -0
  881. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_locations.py +0 -0
  882. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_raw_file.py +0 -0
  883. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_time_series.py +0 -0
  884. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_timeseries.py +0 -0
  885. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_transformation.py +0 -0
  886. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_view.py +0 -0
  887. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_worker.py +0 -0
  888. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_cruds/test_workflow.py +0 -0
  889. {cognite_toolkit-0.7.0/tests/test_unit/test_cdf_tk/test_validation → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_data_classes}/__init__.py +0 -0
  890. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/conftest.py +0 -0
  891. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_build_config_yaml.py +0 -0
  892. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_build_variables.py +0 -0
  893. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_built_modules.py +0 -0
  894. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_cdf_toml.py +0 -0
  895. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_config_yaml.py +0 -0
  896. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_packages.py +0 -0
  897. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_plugins.py +0 -0
  898. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_tracking_info.py +0 -0
  899. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/test_yaml_comments.py +0 -0
  900. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_data_classes/tests_module_directories.py +0 -0
  901. {cognite_toolkit-0.7.0/tests/test_unit/test_cli → cognite_toolkit-0.7.2/tests/test_unit/test_cdf_tk/test_resource_classes}/__init__.py +0 -0
  902. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_agents.py +0 -0
  903. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_asset.py +0 -0
  904. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_capabilities.py +0 -0
  905. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_cognitefile.py +0 -0
  906. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_containers.py +0 -0
  907. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_data_model.py +0 -0
  908. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_datapoint_subscription_yaml.py +0 -0
  909. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_dataset.py +0 -0
  910. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_event.py +0 -0
  911. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_extraction_pipeline.py +0 -0
  912. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_extraction_pipeline_config.py +0 -0
  913. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_filemetadata.py +0 -0
  914. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_functions.py +0 -0
  915. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_functionschedule.py +0 -0
  916. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_graphql_model.py +0 -0
  917. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_groups.py +0 -0
  918. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_destination.py +0 -0
  919. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_jobs.py +0 -0
  920. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_mapping.py +0 -0
  921. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_source.py +0 -0
  922. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_infield_location_config.py +0 -0
  923. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_infield_v1.py +0 -0
  924. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_instance.py +0 -0
  925. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_labels.py +0 -0
  926. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_location.py +0 -0
  927. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_migration.py +0 -0
  928. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_raw_database_table.py +0 -0
  929. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_relationships.py +0 -0
  930. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_capability.py +0 -0
  931. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_data_postprocessing.py +0 -0
  932. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_frame.py +0 -0
  933. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_location.py +0 -0
  934. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_map.py +0 -0
  935. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_search_config.py +0 -0
  936. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_securitycategories.py +0 -0
  937. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_sequence.py +0 -0
  938. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_space.py +0 -0
  939. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_streamlit.py +0 -0
  940. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_streams.py +0 -0
  941. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_threedmodels.py +0 -0
  942. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_timeseries.py +0 -0
  943. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_transformation_notification.py +0 -0
  944. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_transformation_schedule.py +0 -0
  945. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_transformations.py +0 -0
  946. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_view.py +0 -0
  947. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_workflow.py +0 -0
  948. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_workflow_triggers.py +0 -0
  949. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_resource_classes/test_workflow_version.py +0 -0
  950. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_annotations.py +0 -0
  951. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_applications.py +0 -0
  952. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_asset_centric.py +0 -0
  953. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_data_classes.py +0 -0
  954. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_filecontent.py +0 -0
  955. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_instance_io.py +0 -0
  956. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_raw.py +0 -0
  957. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_storageio/test_selectors.py +0 -0
  958. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_tk_warnings/test_warnings_metatest.py +0 -0
  959. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_tracker.py +0 -0
  960. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_aggregators.py +0 -0
  961. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_auth.py +0 -0
  962. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_auxiliary.py +0 -0
  963. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_cdf.py +0 -0
  964. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_cli_args.py +0 -0
  965. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_collection.py +0 -0
  966. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_dtype_conversion.py +0 -0
  967. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_file.py +0 -0
  968. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_fileio.py +0 -0
  969. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_graphql_parser.py +0 -0
  970. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_http_client.py +0 -0
  971. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_interactive_select.py +0 -0
  972. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_producer_worker.py +0 -0
  973. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_progress_tracker.py +0 -0
  974. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_text.py +0 -0
  975. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_thread_safe_dict.py +0 -0
  976. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_utils/test_validate_access.py +0 -0
  977. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_validation/test_read_yaml.py +0 -0
  978. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/test_validation/test_validate_resource_pydantic.py +0 -0
  979. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cdf_tk/tests_constants.py +0 -0
  980. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_behavior.py +0 -0
  981. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_common.yaml +0 -0
  982. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_ingestion.yaml +0 -0
  983. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_pi.yaml +0 -0
  984. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_common.yaml +0 -0
  985. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_ingestion.yaml +0 -0
  986. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_pi.yaml +0 -0
  987. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_cli/test_build_deploy_snapshots/complete_org_alpha_flags.yaml +0 -0
  988. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/test_toolkit_release_process.py +0 -0
  989. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/test_unit/utils.py +0 -0
  990. {cognite_toolkit-0.7.0 → cognite_toolkit-0.7.2}/tests/trigger_mixpanel_event.py +0 -0
@@ -0,0 +1,322 @@
1
+ # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2
+ # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,python,macos,git,windows
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,python,macos,git,windows
4
+
5
+ ### Git ###
6
+ # Created by git for backups. To disable backups in Git:
7
+ # $ git config --global mergetool.keepBackup false
8
+ *.orig
9
+
10
+ # Created by git when using merge tools for conflicts
11
+ *.BACKUP.*
12
+ *.BASE.*
13
+ *.LOCAL.*
14
+ *.REMOTE.*
15
+ *_BACKUP_*.txt
16
+ *_BASE_*.txt
17
+ *_LOCAL_*.txt
18
+ *_REMOTE_*.txt
19
+
20
+ ### macOS ###
21
+ # General
22
+ .DS_Store
23
+ .AppleDouble
24
+ .LSOverride
25
+
26
+ # Icon must end with two \r
27
+ Icon
28
+
29
+
30
+ # Thumbnails
31
+ ._*
32
+
33
+ # Files that might appear in the root of a volume
34
+ .DocumentRevisions-V100
35
+ .fseventsd
36
+ .Spotlight-V100
37
+ .TemporaryItems
38
+ .Trashes
39
+ .VolumeIcon.icns
40
+ .com.apple.timemachine.donotpresent
41
+
42
+ # Directories potentially created on remote AFP share
43
+ .AppleDB
44
+ .AppleDesktop
45
+ Network Trash Folder
46
+ Temporary Items
47
+ .apdisk
48
+
49
+ ### macOS Patch ###
50
+ # iCloud generated files
51
+ *.icloud
52
+
53
+ ### Python ###
54
+ # Byte-compiled / optimized / DLL files
55
+ __pycache__/
56
+ *.py[cod]
57
+ *$py.class
58
+
59
+ # C extensions
60
+ *.so
61
+
62
+ # Distribution / packaging
63
+ .Python
64
+ build/
65
+ develop-eggs/
66
+ dist/
67
+ downloads/
68
+ eggs/
69
+ .eggs/
70
+ lib/
71
+ lib64/
72
+ parts/
73
+ sdist/
74
+ var/
75
+ wheels/
76
+ share/python-wheels/
77
+ *.egg-info/
78
+ .installed.cfg
79
+ *.egg
80
+ MANIFEST
81
+
82
+ # PyInstaller
83
+ # Usually these files are written by a python script from a template
84
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
85
+ *.manifest
86
+ *.spec
87
+
88
+ # Installer logs
89
+ pip-log.txt
90
+ pip-delete-this-directory.txt
91
+
92
+ # Unit test / coverage reports
93
+ htmlcov/
94
+ .tox/
95
+ .nox/
96
+ .coverage
97
+ .coverage.*
98
+ .cache
99
+ nosetests.xml
100
+ coverage.xml
101
+ *.cover
102
+ *.py,cover
103
+ .hypothesis/
104
+ .pytest_cache/
105
+ cover/
106
+
107
+ # Translations
108
+ *.mo
109
+ *.pot
110
+
111
+ # Django stuff:
112
+ *.log
113
+ local_settings.py
114
+ db.sqlite3
115
+ db.sqlite3-journal
116
+
117
+ # Flask stuff:
118
+ instance/
119
+ .webassets-cache
120
+
121
+ # Scrapy stuff:
122
+ .scrapy
123
+
124
+ # Sphinx documentation
125
+ docs/_build/
126
+
127
+ # PyBuilder
128
+ .pybuilder/
129
+ target/
130
+
131
+ # Jupyter Notebook
132
+ .ipynb_checkpoints
133
+
134
+ # IPython
135
+ profile_default/
136
+ ipython_config.py
137
+
138
+ # pyenv
139
+ # For a library or package, you might want to ignore these files since the code is
140
+ # intended to run in multiple environments; otherwise, check them in:
141
+ .python-version
142
+
143
+ # pipenv
144
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
145
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
146
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
147
+ # install all needed dependencies.
148
+ #Pipfile.lock
149
+
150
+ # poetry
151
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
152
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
153
+ # commonly ignored for libraries.
154
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
155
+ #poetry.lock
156
+
157
+ # pdm
158
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
159
+ #pdm.lock
160
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
161
+ # in version control.
162
+ # https://pdm.fming.dev/#use-with-ide
163
+ .pdm.toml
164
+
165
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
166
+ __pypackages__/
167
+
168
+ # Celery stuff
169
+ celerybeat-schedule
170
+ celerybeat.pid
171
+
172
+ # SageMath parsed files
173
+ *.sage.py
174
+
175
+ # Environments
176
+ *.env
177
+ .venv
178
+ .local/
179
+ env/
180
+ venv/
181
+ ENV/
182
+ env.bak/
183
+ venv.bak/
184
+
185
+ # Spyder project settings
186
+ .spyderproject
187
+ .spyproject
188
+
189
+ # Rope project settings
190
+ .ropeproject
191
+
192
+ # mkdocs documentation
193
+ /site
194
+
195
+ # mypy
196
+ .mypy_cache/
197
+ .dmypy.json
198
+ dmypy.json
199
+
200
+ # Pyre type checker
201
+ .pyre/
202
+
203
+ # pytype static type analyzer
204
+ .pytype/
205
+
206
+ # Cython debug symbols
207
+ cython_debug/
208
+
209
+ # PyCharm
210
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
211
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
212
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
213
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
214
+ .idea/
215
+
216
+ ### Python Patch ###
217
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
218
+ poetry.toml
219
+
220
+ # ruff
221
+ .ruff_cache/
222
+
223
+ # LSP config files
224
+ pyrightconfig.json
225
+
226
+ ### VisualStudioCode ###
227
+ .vscode/*
228
+ .vscode/settings.json
229
+ !.vscode/tasks.json
230
+ !.vscode/launch.json
231
+ !.vscode/extensions.json
232
+ !.vscode/*.code-snippets
233
+
234
+ # Local History for Visual Studio Code
235
+ .history/
236
+
237
+ # Built Visual Studio Code Extensions
238
+ *.vsix
239
+
240
+ ### VisualStudioCode Patch ###
241
+ # Ignore all local history of files
242
+ .history
243
+ .ionide
244
+
245
+ ### Windows ###
246
+ # Windows thumbnail cache files
247
+ Thumbs.db
248
+ Thumbs.db:encryptable
249
+ ehthumbs.db
250
+ ehthumbs_vista.db
251
+
252
+ # Dump file
253
+ *.stackdump
254
+
255
+ # Folder config file
256
+ [Dd]esktop.ini
257
+
258
+ # Recycle Bin used on file shares
259
+ $RECYCLE.BIN/
260
+
261
+ # Windows Installer files
262
+ *.cab
263
+ *.msi
264
+ *.msix
265
+ *.msm
266
+ *.msp
267
+
268
+ # Windows shortcuts
269
+ *.lnk
270
+
271
+ # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,python,macos,git,windows
272
+
273
+ # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
274
+
275
+ tmp/
276
+ playground/
277
+ new_project/
278
+ # If you need to update the cognite_toolkit template files for local.yaml and config.yaml, comment below
279
+ local.yaml
280
+ config.yaml
281
+ !demo/config.yaml
282
+ demo_project/
283
+ tests/tests_unit/pytest-project/
284
+ my_project/
285
+ my_organization/
286
+ *.bck
287
+
288
+ # Hide environments used for migration testing
289
+ **/.venv*
290
+ module_upgrade/tmp*
291
+
292
+ cognite_toolkit/config.local.yaml
293
+ **/.venv*
294
+ .venv.*
295
+ build.*
296
+ cognite_toolkit/.env.*
297
+ cognite_toolkit/modules/*
298
+ module_upgrade/project_inits
299
+ function_local_venvs/
300
+ tests/data/run_data/build_info.dev.yaml
301
+ orgdir*
302
+ module_upgrade/cdf.toml
303
+ # Org used by bootcamp
304
+ ice-cream-dataops
305
+ module_upgrade/*.log
306
+ needle/
307
+
308
+ tmp.py
309
+ tmp*.py
310
+ my_*/
311
+ function_local_venvs*/
312
+ qa_pending_id/
313
+ tests/**/cdf.toml
314
+
315
+ *.xlsx
316
+ data/
317
+ migration_logs*/
318
+ !tests/data/
319
+ !tests/data/**
320
+ tests/data/**/__pycache__/
321
+ build_info.dev.yaml
322
+ tests/data/run_data/function_local_venvs*/**
@@ -0,0 +1,84 @@
1
+ Metadata-Version: 2.4
2
+ Name: cognite_toolkit
3
+ Version: 0.7.2
4
+ Summary: Official Cognite Data Fusion tool for project templates and configuration deployment
5
+ Project-URL: Homepage, https://docs.cognite.com/cdf/deploy/cdf_toolkit/
6
+ Project-URL: Changelog, https://github.com/cognitedata/toolkit/releases
7
+ Project-URL: GitHub, https://github.com/cognitedata/toolkit
8
+ Project-URL: Documentation, https://docs.cognite.com/cdf/deploy/cdf_toolkit/references/resource_library
9
+ Author-email: Cognite AS <support@cognite.com>
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ Requires-Python: >=3.10
13
+ Requires-Dist: cognite-sdk<8.0.0,>=7.87.0
14
+ Requires-Dist: filelock>=3.18.0
15
+ Requires-Dist: httpx>=0.28.1
16
+ Requires-Dist: mixpanel>=4.10.1
17
+ Requires-Dist: packaging>=25
18
+ Requires-Dist: pandas<3.0.0,>=1.5.3
19
+ Requires-Dist: pip>=25.0.1
20
+ Requires-Dist: pydantic>=2.11.0
21
+ Requires-Dist: python-dateutil>=2.9.0
22
+ Requires-Dist: python-dotenv>=1.0.0
23
+ Requires-Dist: pyyaml>=6.0.1
24
+ Requires-Dist: questionary>=2.0.1
25
+ Requires-Dist: rich>=13.9.4
26
+ Requires-Dist: sentry-sdk>=2.1.0
27
+ Requires-Dist: toml>=0.10.2
28
+ Requires-Dist: tomli<3.0.0,>=2.0.1; python_version < '3.11'
29
+ Requires-Dist: typer<1.0.0,>=0.12.0
30
+ Requires-Dist: typing-extensions>=4.0.0
31
+ Provides-Extra: sql
32
+ Requires-Dist: sqlparse>=0.5.3; extra == 'sql'
33
+ Provides-Extra: table
34
+ Requires-Dist: openpyxl>=3.1.5; extra == 'table'
35
+ Requires-Dist: pyarrow>=20.0.0; extra == 'table'
36
+ Description-Content-Type: text/markdown
37
+
38
+ # Cognite Data Fusion Toolkit
39
+
40
+ [![release](https://img.shields.io/github/actions/workflow/status/cognitedata/toolkit/release.yaml?style=for-the-badge)](https://github.com/cognitedata/toolkit/actions/workflows/release.yaml)
41
+ [![Github](https://shields.io/badge/github-cognite/toolkit-green?logo=github&style=for-the-badge)](https://github.com/cognitedata/toolkit)
42
+ [![PyPI](https://img.shields.io/pypi/v/cognite-toolkit?style=for-the-badge)](https://pypi.org/project/cognite-toolkit/)
43
+ [![Downloads](https://img.shields.io/pypi/dm/cognite-toolkit?style=for-the-badge)](https://pypistats.org/packages/cognite-toolkit)
44
+ [![GitHub](https://img.shields.io/github/license/cognitedata/toolkit?style=for-the-badge)](https://github.com/cognitedata/toolkit/blob/master/LICENSE)
45
+ [![Docker Pulls](https://img.shields.io/docker/pulls/cognite/toolkit?style=for-the-badge)](https://hub.docker.com/r/cognite/toolkit)
46
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=for-the-badge)](https://github.com/astral-sh/ruff)
47
+ [![mypy](https://img.shields.io/badge/mypy-checked-000000.svg?style=for-the-badge&color=blue)](http://mypy-lang.org)
48
+
49
+ The CDF Toolkit is a command-line interface (`cdf`) used for configuring and administrating
50
+ Cognite Data Fusion (CDF) projects. It ships with modularised `templates` that helps you
51
+ configure Cognite Data Fusion according to best practices.
52
+
53
+ It supports three different modes of operation:
54
+
55
+ 1. As an **interactive command-line tool** used alongside the Cognite Data Fusion web application to retrieve and
56
+ push configuration of the different Cognite Data Fusion services like data sets, data models, transformations,
57
+ and more. This mode also supports configuration of new Cognite Data Fusion projects to quickly get started.
58
+ 2. As tool to support the **project life-cycle by scripting and automating** configuration and management of Cognite Data
59
+ Fusion projects where CDF configurations are kept as yaml-files that can be checked into version
60
+ control. This mode also supports DevOps workflows with development, staging, and production projects.
61
+ 3. As a **tool to deploy official Cognite project templates** to your Cognite Data Fusion project. The tool comes
62
+ bundled with templates useful for getting started with Cognite Data Fusion, as well as for specific use cases
63
+ delivered by Cognite or its partners. You can also create your own templates and share them.
64
+
65
+ ## Usage
66
+
67
+ Install the Toolkit by running:
68
+
69
+ ```bash
70
+ pip install cognite-toolkit
71
+ ```
72
+
73
+ Then run `cdf --help` to get started with the interactive command-line tool.
74
+
75
+ ## For more information
76
+
77
+ More details about the tool can be found at
78
+ [docs.cognite.com](https://docs.cognite.com/cdf/deploy/cdf_toolkit/).
79
+
80
+ You can find an overview of the modules and packages in the
81
+ [module and package documentation](https://docs.cognite.com/cdf/deploy/cdf_toolkit/references/resource_library).
82
+
83
+ See [./CONTRIBUTING.md](./CONTRIBUTING.md) for information about how to contribute to the `cdf-tk` tool or
84
+ templates.
@@ -0,0 +1,29 @@
1
+ [cdf]
2
+ default_organization_dir = "cognite_toolkit"
3
+ #default_env = "dev"
4
+ file_encoding = "utf-8"
5
+
6
+ [alpha_flags]
7
+ graphql = true
8
+ import-cmd = true
9
+ module-repeat = true
10
+ profile = true
11
+ infield = true
12
+ migrate = true
13
+ streams = true
14
+
15
+ [plugins]
16
+ run = true
17
+ dump = true
18
+ dev = true
19
+ data = true
20
+
21
+ [modules]
22
+ # This is the version of the modules. It should not be changed manually.
23
+ # It will be updated by the 'cdf modules upgrade' command.
24
+ version = "0.7.2"
25
+
26
+
27
+ [library.toolkit-data]
28
+ url = "https://github.com/cognitedata/toolkit-data/releases/download/latest/packages.zip"
29
+ checksum = "sha256:b70c207a78d6c94e0977a733571420b250ca641ac8802d8310f1ffe05bf7b2eb"
@@ -0,0 +1,107 @@
1
+ from pathlib import Path
2
+ from typing import Annotated, Any
3
+
4
+ import questionary
5
+ import typer
6
+ from questionary import Choice
7
+
8
+ from cognite_toolkit._cdf_tk.commands import UploadCommand
9
+ from cognite_toolkit._cdf_tk.constants import DATA_DEFAULT_DIR, DATA_MANIFEST_SUFFIX, DATA_RESOURCE_DIR
10
+ from cognite_toolkit._cdf_tk.utils.auth import EnvironmentVariables
11
+
12
+ DEFAULT_INPUT_DIR = Path.cwd() / DATA_DEFAULT_DIR
13
+
14
+
15
+ class UploadApp(typer.Typer):
16
+ def __init__(self, *args: Any, **kwargs: Any) -> None:
17
+ super().__init__(*args, **kwargs)
18
+ self.callback(invoke_without_command=True)(self.upload_main)
19
+ self.command("dir")(self.upload_dir)
20
+
21
+ @staticmethod
22
+ def upload_main(ctx: typer.Context) -> None:
23
+ """Commands to upload data to CDF."""
24
+ if ctx.invoked_subcommand is None:
25
+ print("Use [bold yellow]cdf upload --help[/] for more information.")
26
+ return None
27
+
28
+ @staticmethod
29
+ def upload_dir(
30
+ ctx: typer.Context,
31
+ input_dir: Annotated[
32
+ Path | None,
33
+ typer.Argument(
34
+ help="The directory containing the data to upload. If not specified, an interactive prompt will ask for the directory.",
35
+ exists=True,
36
+ file_okay=False,
37
+ dir_okay=True,
38
+ resolve_path=True,
39
+ ),
40
+ ] = None,
41
+ dry_run: Annotated[
42
+ bool,
43
+ typer.Option(
44
+ "--dry-run",
45
+ "-d",
46
+ help="If set, the command will not actually upload the data, but will print what would be uploaded.",
47
+ ),
48
+ ] = False,
49
+ deploy_resources: Annotated[
50
+ bool,
51
+ typer.Option(
52
+ "--deploy-resources",
53
+ "-r",
54
+ help="If set, the command will look for resource configuration files in adjacent folders and create them if they do not exist.",
55
+ ),
56
+ ] = False,
57
+ verbose: Annotated[
58
+ bool,
59
+ typer.Option(
60
+ "--verbose",
61
+ "-v",
62
+ help="Turn on to get more verbose output when running the command",
63
+ ),
64
+ ] = False,
65
+ ) -> None:
66
+ """Commands to upload data to CDF."""
67
+ cmd = UploadCommand()
68
+ if input_dir is None:
69
+ input_candidate = sorted({p.parent for p in DEFAULT_INPUT_DIR.rglob(f"*/**{DATA_MANIFEST_SUFFIX}")})
70
+ if not input_candidate:
71
+ typer.echo(f"No data manifests found in default directory: {DEFAULT_INPUT_DIR}")
72
+ raise typer.Exit(code=1)
73
+ input_dir = questionary.select(
74
+ "Select the input directory containing the data to upload:",
75
+ choices=[Choice(str(option.name), value=option) for option in input_candidate],
76
+ ).ask()
77
+ if input_dir is None:
78
+ typer.echo("No input directory selected. Exiting.")
79
+ raise typer.Exit(code=1)
80
+ dry_run = questionary.confirm("Proceed with dry run?", default=dry_run).ask()
81
+ if dry_run is None:
82
+ typer.echo("No selection made for dry run. Exiting.")
83
+ raise typer.Exit(code=1)
84
+ resource_dir = Path(input_dir) / DATA_RESOURCE_DIR
85
+ if resource_dir.exists():
86
+ if resource_dir.is_relative_to(Path.cwd()):
87
+ display_name = resource_dir.relative_to(Path.cwd()).as_posix()
88
+ else:
89
+ display_name = resource_dir.as_posix()
90
+
91
+ deploy_resources = questionary.confirm(
92
+ f"Deploy resources found in {display_name!r}?", default=deploy_resources
93
+ ).ask()
94
+ if deploy_resources is None:
95
+ typer.echo("No selection made for deploying resources. Exiting.")
96
+ raise typer.Exit(code=1)
97
+
98
+ client = EnvironmentVariables.create_from_environment().get_client()
99
+ cmd.run(
100
+ lambda: cmd.upload(
101
+ input_dir=input_dir,
102
+ dry_run=dry_run,
103
+ verbose=verbose,
104
+ deploy_resources=deploy_resources,
105
+ client=client,
106
+ )
107
+ )
@@ -0,0 +1,40 @@
1
+ from collections.abc import Callable
2
+ from pathlib import Path
3
+
4
+ from cognite_toolkit._cdf_tk.tk_warnings import ToolkitWarning
5
+
6
+ from ._base import Builder, DefaultBuilder, get_resource_crud
7
+ from ._datamodels import DataModelBuilder
8
+ from ._file import FileBuilder
9
+ from ._function import FunctionBuilder
10
+ from ._location import LocationBuilder
11
+ from ._raw import RawBuilder
12
+ from ._streamlit import StreamlitBuilder
13
+ from ._transformation import TransformationBuilder
14
+
15
+
16
+ def create_builder(
17
+ resource_folder: str,
18
+ build_dir: Path | None,
19
+ warn: Callable[[ToolkitWarning], None] | None = None,
20
+ ) -> Builder:
21
+ if builder_cls := _BUILDER_BY_RESOURCE_FOLDER.get(resource_folder):
22
+ return builder_cls(build_dir, warn=warn) # type: ignore[abstract]
23
+
24
+ return DefaultBuilder(build_dir, resource_folder, warn)
25
+
26
+
27
+ _BUILDER_BY_RESOURCE_FOLDER = {_builder._resource_folder: _builder for _builder in Builder.__subclasses__()}
28
+ __all__ = [
29
+ "Builder",
30
+ "DataModelBuilder",
31
+ "DefaultBuilder",
32
+ "FileBuilder",
33
+ "FunctionBuilder",
34
+ "LocationBuilder",
35
+ "RawBuilder",
36
+ "StreamlitBuilder",
37
+ "TransformationBuilder",
38
+ "create_builder",
39
+ "get_resource_crud",
40
+ ]