infrahub-server 1.2.7__py3-none-any.whl → 1.2.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. infrahub/api/transformation.py +1 -0
  2. infrahub/artifacts/models.py +4 -0
  3. infrahub/cli/db.py +1 -1
  4. infrahub/computed_attribute/tasks.py +1 -0
  5. infrahub/config.py +2 -1
  6. infrahub/constants/__init__.py +0 -0
  7. infrahub/core/constants/__init__.py +1 -0
  8. infrahub/core/graph/index.py +3 -1
  9. infrahub/core/manager.py +16 -5
  10. infrahub/core/migrations/graph/m014_remove_index_attr_value.py +7 -8
  11. infrahub/core/protocols.py +1 -0
  12. infrahub/core/query/node.py +96 -29
  13. infrahub/core/schema/definitions/core/builtin.py +2 -4
  14. infrahub/core/schema/definitions/core/transform.py +1 -0
  15. infrahub/core/validators/aggregated_checker.py +2 -2
  16. infrahub/core/validators/uniqueness/query.py +8 -3
  17. infrahub/database/__init__.py +2 -10
  18. infrahub/database/index.py +1 -1
  19. infrahub/database/memgraph.py +2 -1
  20. infrahub/database/neo4j.py +1 -1
  21. infrahub/git/integrator.py +27 -3
  22. infrahub/git/models.py +4 -0
  23. infrahub/git/tasks.py +3 -0
  24. infrahub/git_credential/helper.py +2 -2
  25. infrahub/message_bus/operations/requests/proposed_change.py +6 -0
  26. infrahub/message_bus/types.py +3 -0
  27. infrahub/patch/queries/consolidate_duplicated_nodes.py +109 -0
  28. infrahub/patch/queries/delete_duplicated_edges.py +138 -0
  29. infrahub/proposed_change/tasks.py +1 -0
  30. infrahub/server.py +3 -1
  31. infrahub/transformations/models.py +3 -0
  32. infrahub/transformations/tasks.py +1 -0
  33. infrahub/webhook/models.py +3 -0
  34. infrahub_sdk/client.py +4 -4
  35. infrahub_sdk/config.py +17 -0
  36. infrahub_sdk/ctl/cli_commands.py +7 -1
  37. infrahub_sdk/ctl/generator.py +2 -2
  38. infrahub_sdk/generator.py +12 -66
  39. infrahub_sdk/operation.py +80 -0
  40. infrahub_sdk/protocols.py +12 -0
  41. infrahub_sdk/recorder.py +3 -0
  42. infrahub_sdk/schema/repository.py +4 -0
  43. infrahub_sdk/transforms.py +15 -27
  44. {infrahub_server-1.2.7.dist-info → infrahub_server-1.2.8.dist-info}/METADATA +2 -2
  45. {infrahub_server-1.2.7.dist-info → infrahub_server-1.2.8.dist-info}/RECORD +50 -46
  46. infrahub_testcontainers/docker-compose.test.yml +2 -0
  47. /infrahub/{database/constants.py → constants/database.py} +0 -0
  48. {infrahub_server-1.2.7.dist-info → infrahub_server-1.2.8.dist-info}/LICENSE.txt +0 -0
  49. {infrahub_server-1.2.7.dist-info → infrahub_server-1.2.8.dist-info}/WHEEL +0 -0
  50. {infrahub_server-1.2.7.dist-info → infrahub_server-1.2.8.dist-info}/entry_points.txt +0 -0
infrahub_sdk/protocols.py CHANGED
@@ -154,6 +154,10 @@ class CoreMenu(CoreNode):
154
154
  children: RelationshipManager
155
155
 
156
156
 
157
+ class CoreObjectComponentTemplate(CoreNode):
158
+ template_name: String
159
+
160
+
157
161
  class CoreObjectTemplate(CoreNode):
158
162
  template_name: String
159
163
 
@@ -205,6 +209,7 @@ class CoreWebhook(CoreNode):
205
209
  name: String
206
210
  event_type: Enum
207
211
  branch_scope: Dropdown
212
+ node_kind: StringOptional
208
213
  description: StringOptional
209
214
  url: URL
210
215
  validate_certificates: BooleanOptional
@@ -479,6 +484,7 @@ class CoreTransformJinja2(CoreTransformation):
479
484
  class CoreTransformPython(CoreTransformation):
480
485
  file_path: String
481
486
  class_name: String
487
+ convert_query_response: BooleanOptional
482
488
 
483
489
 
484
490
  class CoreUserValidator(CoreValidator):
@@ -625,6 +631,10 @@ class CoreMenuSync(CoreNodeSync):
625
631
  children: RelationshipManagerSync
626
632
 
627
633
 
634
+ class CoreObjectComponentTemplateSync(CoreNodeSync):
635
+ template_name: String
636
+
637
+
628
638
  class CoreObjectTemplateSync(CoreNodeSync):
629
639
  template_name: String
630
640
 
@@ -676,6 +686,7 @@ class CoreWebhookSync(CoreNodeSync):
676
686
  name: String
677
687
  event_type: Enum
678
688
  branch_scope: Dropdown
689
+ node_kind: StringOptional
679
690
  description: StringOptional
680
691
  url: URL
681
692
  validate_certificates: BooleanOptional
@@ -950,6 +961,7 @@ class CoreTransformJinja2Sync(CoreTransformationSync):
950
961
  class CoreTransformPythonSync(CoreTransformationSync):
951
962
  file_path: String
952
963
  class_name: String
964
+ convert_query_response: BooleanOptional
953
965
 
954
966
 
955
967
  class CoreUserValidatorSync(CoreValidatorSync):
infrahub_sdk/recorder.py CHANGED
@@ -31,6 +31,9 @@ class NoRecorder:
31
31
  def default(cls) -> NoRecorder:
32
32
  return cls()
33
33
 
34
+ def __eq__(self, other: object) -> bool:
35
+ return isinstance(other, NoRecorder)
36
+
34
37
 
35
38
  class JSONRecorder(BaseSettings):
36
39
  model_config = SettingsConfigDict(env_prefix="INFRAHUB_JSON_RECORDER_")
@@ -117,6 +117,10 @@ class InfrahubPythonTransformConfig(InfrahubRepositoryConfigElement):
117
117
  name: str = Field(..., description="The name of the Transform")
118
118
  file_path: Path = Field(..., description="The file within the repository with the transform code.")
119
119
  class_name: str = Field(default="Transform", description="The name of the transform class to run.")
120
+ convert_query_response: bool = Field(
121
+ default=False,
122
+ description="Decide if the transform should convert the result of the GraphQL query to SDK InfrahubNode objects.",
123
+ )
120
124
 
121
125
  def load_class(self, import_root: str | None = None, relative_path: str | None = None) -> type[InfrahubTransform]:
122
126
  module = import_module(module_path=self.file_path, import_root=import_root, relative_path=relative_path)
@@ -5,34 +5,38 @@ import os
5
5
  from abc import abstractmethod
6
6
  from typing import TYPE_CHECKING, Any
7
7
 
8
- from infrahub_sdk.repository import GitRepoManager
9
-
10
- from .exceptions import UninitializedError
8
+ from .operation import InfrahubOperation
11
9
 
12
10
  if TYPE_CHECKING:
13
11
  from . import InfrahubClient
12
+ from .node import InfrahubNode
14
13
 
15
14
  INFRAHUB_TRANSFORM_VARIABLE_TO_IMPORT = "INFRAHUB_TRANSFORMS"
16
15
 
17
16
 
18
- class InfrahubTransform:
17
+ class InfrahubTransform(InfrahubOperation):
19
18
  name: str | None = None
20
19
  query: str
21
20
  timeout: int = 10
22
21
 
23
22
  def __init__(
24
23
  self,
24
+ client: InfrahubClient,
25
+ infrahub_node: type[InfrahubNode],
26
+ convert_query_response: bool = False,
25
27
  branch: str = "",
26
28
  root_directory: str = "",
27
29
  server_url: str = "",
28
- client: InfrahubClient | None = None,
29
30
  ):
30
- self.git: GitRepoManager
31
+ super().__init__(
32
+ client=client,
33
+ infrahub_node=infrahub_node,
34
+ convert_query_response=convert_query_response,
35
+ branch=branch,
36
+ root_directory=root_directory,
37
+ )
31
38
 
32
- self.branch = branch
33
39
  self.server_url = server_url or os.environ.get("INFRAHUB_URL", "http://127.0.0.1:8000")
34
- self.root_directory = root_directory or os.getcwd()
35
-
36
40
  self._client = client
37
41
 
38
42
  if not self.name:
@@ -43,24 +47,7 @@ class InfrahubTransform:
43
47
 
44
48
  @property
45
49
  def client(self) -> InfrahubClient:
46
- if self._client:
47
- return self._client
48
-
49
- raise UninitializedError("The client has not been initialized")
50
-
51
- @property
52
- def branch_name(self) -> str:
53
- """Return the name of the current git branch."""
54
-
55
- if self.branch:
56
- return self.branch
57
-
58
- if not hasattr(self, "git") or not self.git:
59
- self.git = GitRepoManager(self.root_directory)
60
-
61
- self.branch = str(self.git.active_branch)
62
-
63
- return self.branch
50
+ return self._init_client
64
51
 
65
52
  @abstractmethod
66
53
  def transform(self, data: dict) -> Any:
@@ -86,6 +73,7 @@ class InfrahubTransform:
86
73
  data = await self.collect_data()
87
74
 
88
75
  unpacked = data.get("data") or data
76
+ await self.process_nodes(data=unpacked)
89
77
 
90
78
  if asyncio.iscoroutinefunction(self.transform):
91
79
  return await self.transform(data=unpacked)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: infrahub-server
3
- Version: 1.2.7
3
+ Version: 1.2.8
4
4
  Summary: Infrahub is taking a new approach to Infrastructure Management by providing a new generation of datastore to organize and control all the data that defines how an infrastructure should run.
5
5
  Home-page: https://opsmill.com
6
6
  License: AGPL-3.0-only
@@ -39,7 +39,7 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc (==1.28.1)
39
39
  Requires-Dist: opentelemetry-exporter-otlp-proto-http (==1.28.1)
40
40
  Requires-Dist: opentelemetry-instrumentation-aio-pika (==0.49b1)
41
41
  Requires-Dist: opentelemetry-instrumentation-fastapi (==0.49b1)
42
- Requires-Dist: prefect (==3.3.4)
42
+ Requires-Dist: prefect (==3.3.7)
43
43
  Requires-Dist: prefect-redis (==0.2.2)
44
44
  Requires-Dist: pyarrow (>=14,<15)
45
45
  Requires-Dist: pydantic (>=2.10,<2.11)
@@ -19,15 +19,15 @@ infrahub/api/static/redoc.standalone.js,sha256=77kGx7mVN9EcdER2ZM4gQ-E-ra_N6AZq9
19
19
  infrahub/api/static/swagger-ui-bundle.js,sha256=wuSp7wgUSDn_R8FCAgY-z-TlnnCk5xVKJr1Q2IDIi6E,1452753
20
20
  infrahub/api/static/swagger-ui.css,sha256=QBcPDuhZ0X-SExunBzKaiKBw5PZodNETZemnfSMvYRc,152071
21
21
  infrahub/api/storage.py,sha256=yWo7qsDn4SrX89wDsTKOfGTMdWYNsptAdt7Fhfzw1C0,2179
22
- infrahub/api/transformation.py,sha256=Rel65Xr7rkB82g2kLaehUGxj9PmJRil2dNrxle0b-1k,5852
22
+ infrahub/api/transformation.py,sha256=xGTLxh3gvohzpORLZy_MY2ZkUuFtKhVKR4ygWy8RYWg,5932
23
23
  infrahub/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- infrahub/artifacts/models.py,sha256=_UDG3grxsM04BFe48ZIzBcgevVc_eYv3l0j-crISylk,1848
24
+ infrahub/artifacts/models.py,sha256=hbU1kbPrRgwuCiFPTdGJp3XICr77_61vgqy7e_ckzSk,2039
25
25
  infrahub/artifacts/tasks.py,sha256=0eo7IKZ8wiMWyLEO4fCZJjFtnk9e94bGVS442TbWgq4,3821
26
26
  infrahub/auth.py,sha256=g4pQX4kI1k-iWIQNduXODhpeZXIjY3XqLslh7QFRBq4,9194
27
27
  infrahub/cli/__init__.py,sha256=zQjE9zMrwAmk_4qb5mbUgNi06g3HKvrPwQvJLQmv9JY,1814
28
28
  infrahub/cli/constants.py,sha256=CoCeTMnfsA3j7ArdLKLZK4VPxOM7ls17qpxGJmND0m8,129
29
29
  infrahub/cli/context.py,sha256=20CJj_D1VhigR9uhTDPHiVHnV7vzsgK8v-uLKs06kzA,398
30
- infrahub/cli/db.py,sha256=W0_46WSljyO_-Df73ochDz-ZKdN8uwqypRuRi_4SSDc,27919
30
+ infrahub/cli/db.py,sha256=jJVFqCkCABMid_rNASE_gjsPSaOZL98pzXDRV_sEE7o,27976
31
31
  infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
32
32
  infrahub/cli/git_agent.py,sha256=ajT9-kdd3xLIysOPe8GqZyCDMkpNyhqfWjBg9HPWVcg,5240
33
33
  infrahub/cli/patch.py,sha256=ztOkWyo0l_Wo0WX10bvSqGZibKzowrwx82oi69cjwkY,6018
@@ -39,9 +39,11 @@ infrahub/computed_attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
39
39
  infrahub/computed_attribute/constants.py,sha256=oTMPEfRuf2mcfCkBpRLWRALO6nsLHpFm9jJGu0lowS4,446
40
40
  infrahub/computed_attribute/gather.py,sha256=TSv6_CWZH1DYRv430jzyJpFJWKzwPGka5wFiL1jJ9rM,8096
41
41
  infrahub/computed_attribute/models.py,sha256=xAzLfZ8teEiJrfa8JOc3EAjikOMakj0LCvWmwGh9miQ,16789
42
- infrahub/computed_attribute/tasks.py,sha256=IwsBqTS5rgCNgPzCLw6X7m9SZAJRCfiE06ZpObJGXmE,16775
42
+ infrahub/computed_attribute/tasks.py,sha256=nyTMJ-mC0tsWtCy1rC6UrSA6a1wxPeppevtrn3KnqWI,16850
43
43
  infrahub/computed_attribute/triggers.py,sha256=ve1cUj0CZ7dU1VtZkxET9LD8StszKIL9mCkTZpCeUaI,2304
44
- infrahub/config.py,sha256=J3R-k2I5WHNAHZaCJWRFSNOhCn_T4Is1E8WeQqDaPYI,35222
44
+ infrahub/config.py,sha256=IXLp97Y2pxtGcQxwwuBSuBQotFGdHEtj1rf9EZ5z-_I,35255
45
+ infrahub/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ infrahub/constants/database.py,sha256=WmV1iuOk4xulxZHOVvO3sS_VF1eTf7fKh0TPe_RnfV4,507
45
47
  infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
46
48
  infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
47
49
  infrahub/core/account.py,sha256=_RL8QTRsA7XmaTfWSfE6GGy8Z1BEPK5BWoc_LUjDfyE,26507
@@ -52,7 +54,7 @@ infrahub/core/branch/tasks.py,sha256=Q9dJtKbEieeQZJQ4FI5qlLvoQKnKmDHl1BcF_iaguUo
52
54
  infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
55
  infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
54
56
  infrahub/core/changelog/models.py,sha256=UgfJdOFUkMmjeUKe1mPCO7WE3jNENw0UJU3LWFf20HQ,29920
55
- infrahub/core/constants/__init__.py,sha256=0yESCw_I7KQzalo3gJ8Wjz0puLJH-DKsEQkhH7eyvG4,8578
57
+ infrahub/core/constants/__init__.py,sha256=Q2pEX_-Z1-TE5OM_PWKIPIvAOxuYzk2cWZnFjemkT2k,8618
56
58
  infrahub/core/constants/database.py,sha256=lxesWX2z6SZgGok1bAY6_pCBm5rFfu7k4ayMBr6w_Vo,336
57
59
  infrahub/core/constants/infrahubkind.py,sha256=08iJTK_RMMHbyF67bZLAIZFYiWaDv_IxU6Al53LPE6s,2492
58
60
  infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
@@ -117,7 +119,7 @@ infrahub/core/diff/tasks.py,sha256=kHapEy7isn9zGsThYFauDkDnG-dIODanBaa-TaFD9EY,3
117
119
  infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
118
120
  infrahub/core/graph/__init__.py,sha256=vg81QN-hmdl7ziUJird8wna034Z7HFur47608DfljDY,19
119
121
  infrahub/core/graph/constraints.py,sha256=lmuzrKDFoeSKRiLtycB9PXi6zhMYghczKrPYvfWyy90,10396
120
- infrahub/core/graph/index.py,sha256=oR6wyYpJbq2IVVzUdiuGyWA511hw2AvgklFoBmQk-bM,1619
122
+ infrahub/core/graph/index.py,sha256=IHLP-zPRp7HJYLGHMRDRXQp8RC69ztP10Tr5NcL2j4Y,1736
121
123
  infrahub/core/graph/schema.py,sha256=FmEPPb1XOFv3nnS_XJCuUqlp8HsStX5A2frHjlhoqvE,10105
122
124
  infrahub/core/initialization.py,sha256=S_E9W8aVn-vciCpJJMNE9ZkYvggDamK8ATVUbU0-y8A,20074
123
125
  infrahub/core/integrity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -131,7 +133,7 @@ infrahub/core/ipam/reconciler.py,sha256=48do6rx12G25gaKuOguSrVdUDXVpMr3t6ogU1hdP
131
133
  infrahub/core/ipam/size.py,sha256=Iu7cVvN9MkilyG_AGvYm3g3dSDesKRVdDh_AKH7yAqk,614
132
134
  infrahub/core/ipam/tasks.py,sha256=TUoP6WZjQkd7DdGLxKnBVVH4SxTHkH2xmJCU8nRWqH8,1483
133
135
  infrahub/core/ipam/utilization.py,sha256=d-zpXCaWsHgJxBLopCDd7y4sJYvHcIzzpYhbTMIgH74,6733
134
- infrahub/core/manager.py,sha256=v-Owvn60w85TIHrAtt5C9OF5vGdpf88ElTMDMGVacxE,46671
136
+ infrahub/core/manager.py,sha256=G_5A2mYkRkxUnDGjdauVdrEX2ZX5HPaHbxEHxDyOb6U,47467
135
137
  infrahub/core/merge.py,sha256=bZvToLKyphJlWMbQAzGuSHcrG2DfeqL69KSfqb1wWdc,10430
136
138
  infrahub/core/migrations/__init__.py,sha256=syPb3-Irf11dXCHgbT0UdmTnEBbpf4wXJ3m8ADYXDpk,1175
137
139
  infrahub/core/migrations/graph/__init__.py,sha256=CB4j35V5VRpJxnSJN_HOYzUv_cPMVCHwpFGYjWjhoaA,2608
@@ -148,7 +150,7 @@ infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py,sha256=
148
150
  infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py,sha256=TYQ1jXNucLIBbqLS35nUb_72OmMspXexSSW83Ax0oEw,1980
149
151
  infrahub/core/migrations/graph/m012_convert_account_generic.py,sha256=XvOKS0CSJSOdXQfan7N_Nrak6CB75r9xyT5rErUb61w,10998
150
152
  infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=-3tPM6RDPFlx0YFEohPTKUjvPsCNK-Q171PFCVmb5d4,12818
151
- infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=UVTDnF00W0TczEHy82ghLlhHgD6pwAA1lr--1XFW9AA,1413
153
+ infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=m7N4T52gnuXHf_c2Aelhu_-skRZIkdMT4LbfiRufruQ,1340
152
154
  infrahub/core/migrations/graph/m015_diff_format_update.py,sha256=DETKst0UNXmuE0aQJep1SJxukajZSK8avF9Z-c0W4ME,1267
153
155
  infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py,sha256=hcnJN3dOoDfbKcEzlRPew2XbJ-hqsEsjkDSGEnjwbFs,1275
154
156
  infrahub/core/migrations/graph/m017_add_core_profile.py,sha256=Z_--D73C8aUtmZPh1okxhY3ipf66vsLcvuIi6LphDTo,1361
@@ -195,7 +197,7 @@ infrahub/core/node/resource_manager/number_pool.py,sha256=6mczrHTNd8jbXoW8Q6xHpB
195
197
  infrahub/core/node/standard.py,sha256=Niyc7mNxEGn6K7a1MXHkiLJhyTNR3uvTWLLbHvm6-Bo,7113
196
198
  infrahub/core/path.py,sha256=qHoC5cJwb3nwh-kUiuWqrCgkN2Dleatygn3KNid70sg,5844
197
199
  infrahub/core/property.py,sha256=rwsqeaIvCMkHfJYl4WfsNPAS7KS0POo5rAN7vAprXGA,5102
198
- infrahub/core/protocols.py,sha256=sdM7Km666VloHRVPoo2mfE15GtC9cGmrtPmDl-vkniw,10957
200
+ infrahub/core/protocols.py,sha256=VvKNvfJxoQiaTF26Jam_6Yi_1GsGzGtuoZrFN5rxevA,11001
199
201
  infrahub/core/protocols_base.py,sha256=IqX1C82C4skCJrNiVLSYCIwIviPfp2sP7bOS6rLxhTk,3296
200
202
  infrahub/core/query/__init__.py,sha256=ftH8xHCAo8DfdYEx3-CBPuU2xpGOc83_ITNxZ4q4sNg,23055
201
203
  infrahub/core/query/attribute.py,sha256=DzwbElgTaZs6-nBYGmnDpBr9n0lmUPK3p7eyI30Snh8,11783
@@ -203,7 +205,7 @@ infrahub/core/query/branch.py,sha256=5U0YRAcJUnWYwJWRJVhUG0_VRa18_NtDhp02VLKotM0
203
205
  infrahub/core/query/delete.py,sha256=_PL97nz-ybF0JqDSYlTPhIa4oCxwPiFerwd8Wjw-x-8,1918
204
206
  infrahub/core/query/diff.py,sha256=-hMyXsKfsBmxmSnboF-hN8IYa0aTPXJRUocMtOyyRs4,31987
205
207
  infrahub/core/query/ipam.py,sha256=66snB2ANAUcGk-Ke88Y1CIoXO7CCBOsOx8JZTFXnPfA,28384
206
- infrahub/core/query/node.py,sha256=-gpEaJHND7MjpNT33EkMArEDoVGkienMa4E5QJT6Hgg,61784
208
+ infrahub/core/query/node.py,sha256=GCR9BhMZFReqDKoAcJSYVZbEyCbxZCp1xsyqS-eXtGg,64069
207
209
  infrahub/core/query/relationship.py,sha256=b6_kfwzttfVHJ0_Ej3dRUg62cWs3wwZvp-YLlSubnQE,42567
208
210
  infrahub/core/query/resource_manager.py,sha256=rVksmyFSTGwiq0ZFp2I8kGuMI_F2__c9wE7LgYYeqow,12728
209
211
  infrahub/core/query/standard_node.py,sha256=stQfJqLaeqouaZtrlJhc9MsJUnW3tfheXrWHsM1vp7Q,4511
@@ -229,7 +231,7 @@ infrahub/core/schema/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
229
231
  infrahub/core/schema/definitions/core/__init__.py,sha256=4-26SV_yzXYgsgbn4DxiQQI6TN_BGfOuq8-RsnNr-_o,4640
230
232
  infrahub/core/schema/definitions/core/account.py,sha256=5-yJJJRtAi1MyJZw88pyTqAklUPTsBzMa2LZkf4FtOs,5421
231
233
  infrahub/core/schema/definitions/core/artifact.py,sha256=6TX4zgK2j2vO7F0lCYLv6Bu7GTAKlD0P3rO7yuXX85o,3954
232
- infrahub/core/schema/definitions/core/builtin.py,sha256=Cd2crsxbmUMjeH8JwQZjGEEa7oVHfh2PPSqw0Xd6J5E,714
234
+ infrahub/core/schema/definitions/core/builtin.py,sha256=eSGZXXV_caLm2WHvRsK6c88EfLjkMlm7VAZ-JVAaEPw,703
233
235
  infrahub/core/schema/definitions/core/check.py,sha256=yhCgLEMAgkhI5OufxI1ZA9P2UoOXvkPcNG5neL6oH8s,2152
234
236
  infrahub/core/schema/definitions/core/core.py,sha256=wpe0p4V0vpA70epcP0ZEXBEek17yP-t1TOQigNkUrmw,395
235
237
  infrahub/core/schema/definitions/core/generator.py,sha256=gI8ZU7PLaT-AikKpwlL-gP9GBypHycqgJrgaHIitaj8,3201
@@ -246,7 +248,7 @@ infrahub/core/schema/definitions/core/propose_change_validator.py,sha256=IwrEQvu
246
248
  infrahub/core/schema/definitions/core/repository.py,sha256=SZDztZRCqdAOXgURaZk1X-OPGXqBMrVur8_DhPcwQ_E,9630
247
249
  infrahub/core/schema/definitions/core/resource_pool.py,sha256=Vr6CXpDInK4AlQCtwcWBAoZ5TDe3U_mruwEzT41iHZk,5411
248
250
  infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2I6MFT4r_ED7xA4BtzdKY,1037
249
- infrahub/core/schema/definitions/core/transform.py,sha256=Gh4OdUoQnVrHCep2V171dEPLQv7iMq2fW85v2WS173s,2964
251
+ infrahub/core/schema/definitions/core/transform.py,sha256=UB2TaBjabIiErivBR16srxq7fgYoKjmjZaVun8vxXvY,3061
250
252
  infrahub/core/schema/definitions/core/webhook.py,sha256=YHeFMdsQDoG804iO6beozkfzln5cZnXKAsjB0Twlqw0,4224
251
253
  infrahub/core/schema/definitions/deprecated.py,sha256=PUXfRupaxNT3R_a6eFnvAcvXKOZenVb7VnuLAskZfT0,829
252
254
  infrahub/core/schema/definitions/internal.py,sha256=O1kchtswTl9SO35ph3zKBWQ6WrbDuawiPse4QV_E3_w,32849
@@ -272,7 +274,7 @@ infrahub/core/task/user_task.py,sha256=bjHR2lZf4N8t_RFZQ5YUAUeHiTX2NwClkTZHvu2oI
272
274
  infrahub/core/timestamp.py,sha256=htKK3byVUk23PWQyfIOKK9OmN0HWjJC4xcaRTnLNkjw,1031
273
275
  infrahub/core/utils.py,sha256=SzOlfsV5Ebp6VeJXARDIm4C3UUNZsNlXerlQbLMappc,9146
274
276
  infrahub/core/validators/__init__.py,sha256=i65HNcstldO3Q9gw4mFjmPo06WRhe-of1CejoeDVH5s,2153
275
- infrahub/core/validators/aggregated_checker.py,sha256=-1Hpl0jgb91DF7OEs7QXsWyup8YAQAE1zI7VIm1fECg,4715
277
+ infrahub/core/validators/aggregated_checker.py,sha256=KA23ewrwOz8EsezsvF8cY4U0js_d5YPbeqESjG5sWl0,4719
276
278
  infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
279
  infrahub/core/validators/attribute/choices.py,sha256=CfEUR5xWcbKpsDZpPgWZzfRfh9isLAJY3kNE9RVPGD0,4298
278
280
  infrahub/core/validators/attribute/enum.py,sha256=1lc1eGv_FauvtWuMtq8qCtfsd_StJbMJVof8WVpqfHM,4242
@@ -305,14 +307,13 @@ infrahub/core/validators/uniqueness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
305
307
  infrahub/core/validators/uniqueness/checker.py,sha256=RpiLpIjbdkwwjivry-vjEkVim6ZoC-t2H5Bal7ngASQ,10375
306
308
  infrahub/core/validators/uniqueness/index.py,sha256=Jw1o-UVinQquNduZ5vCCzt8GUfIEdVzBo-1XyRti8F8,5068
307
309
  infrahub/core/validators/uniqueness/model.py,sha256=V2aejcuHPhgC5nTrS7xX0JFMzprVu90QAau-rUzruCY,5135
308
- infrahub/core/validators/uniqueness/query.py,sha256=em_DKmzv0kiKl6VhD9G4-LkrtuQj4mTxT5kc5ZgFv7M,10150
309
- infrahub/database/__init__.py,sha256=CQek6w4hoihLP9ClNya_QZ-UquXZTf9F3iNKPNpZBUw,21095
310
- infrahub/database/constants.py,sha256=WmV1iuOk4xulxZHOVvO3sS_VF1eTf7fKh0TPe_RnfV4,507
311
- infrahub/database/index.py,sha256=y0sWXO3tdIr1wL1XC9O6iNRV-Elu2KAXFOiYXRIIhN4,1659
310
+ infrahub/core/validators/uniqueness/query.py,sha256=85qm6L24QS3ei2eXaDlV5fsPJrT9EXufM0NRnvusZcM,10530
311
+ infrahub/database/__init__.py,sha256=UccasMzPVu3BqfkrgcIho8K9L_wjKM8dgBy06aE-mbw,20847
312
+ infrahub/database/index.py,sha256=ATLqw9Grqbq7haGGm14VSEPmcPniid--YATiffo4sA0,1676
312
313
  infrahub/database/manager.py,sha256=BDXNw1RNBeSFV-EZd0aGFbPNuoqlKwrkDqmYB7sy4tU,317
313
- infrahub/database/memgraph.py,sha256=jZNzoeXC4niWn3kzpp27tFYicehghFG68d4AHvjXoPk,2034
314
+ infrahub/database/memgraph.py,sha256=9-SHIVsb5BhufpJU09kr4UFFfo2lBo09-jbP2zPtgFg,2052
314
315
  infrahub/database/metrics.py,sha256=xU4OSKFbsxcw_yZlt_39PmGtF7S7yPbPuOIlSCu5sI0,739
315
- infrahub/database/neo4j.py,sha256=IE5lSevKqu-tJa3KF_bj_gOUx-SpZNdmGOl6oheNhiY,2624
316
+ infrahub/database/neo4j.py,sha256=PEJfmkRUeQ6l-XhCLed3yFoiztgzm3PaQt6pSgZqgCQ,2641
316
317
  infrahub/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
318
  infrahub/dependencies/builder/constraint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
319
  infrahub/dependencies/builder/constraint/grouped/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -390,15 +391,15 @@ infrahub/git/__init__.py,sha256=KeQ9U8UI5jDj6KB6j00Oal7MZmtOD9vKqVgiezG_EQA,281
390
391
  infrahub/git/base.py,sha256=WTYJ_LqiUhlaMs9QGt1X6pZrsCwmfUZ3eeZYOfZ9mts,38717
391
392
  infrahub/git/constants.py,sha256=XpzcAkXbsgXZgrXey74id1sXV8Q6EHb_4FNw7BndxyY,106
392
393
  infrahub/git/directory.py,sha256=fozxLXXJPweHG95yQwQkR5yy3sfTdmHiczCAJnsUX54,861
393
- infrahub/git/integrator.py,sha256=PkchhobfFdZKkS6vLkQEBuartLqSiT2Puj43fz-2fZk,57612
394
- infrahub/git/models.py,sha256=TwiJnknL3nRaFybttLIoVGC9Pqd5smxM4Lh7zTxaqmE,11961
394
+ infrahub/git/integrator.py,sha256=6AmCSvAIrzKN4Z1mOEwBJAmfFN8Y4IWiQEYgTlMR7QQ,58630
395
+ infrahub/git/models.py,sha256=ozk9alxQ8Ops1lw1g8iR3O7INuw1VPsEUr5Wceh9HQY,12152
395
396
  infrahub/git/repository.py,sha256=mjYeH3pKWRM3UuvcwRCWeE793FuPbSdY8VF1IYK-BxA,11603
396
- infrahub/git/tasks.py,sha256=EvquEalnUbZHvtFBZBt2BNsHILXCxzBWBKIbR7pgyGk,37102
397
+ infrahub/git/tasks.py,sha256=spvZGXNh5mM1TAh0xDFKjlrMjxm4fdEl_BU79FWHe10,37268
397
398
  infrahub/git/utils.py,sha256=xhWxlu_FbMqbrwanpPkex4hKRS_d2AFzlxI_6kVQllw,1741
398
399
  infrahub/git/worktree.py,sha256=8IYJWOBytKUWwhMmMVehR4ceeO9e13nV-mvn3iVEgZY,1727
399
400
  infrahub/git_credential/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
400
401
  infrahub/git_credential/askpass.py,sha256=BL7e4Xkx5la7XFk-GQR6MXxV5B29Mzb5ZnVnljd7Xpw,1513
401
- infrahub/git_credential/helper.py,sha256=ivKlFCbwYiC76zesRZkToeKT2cpaxWMs19qQo7tTYnk,2329
402
+ infrahub/git_credential/helper.py,sha256=cwSMKRTgqrqIBM66jEOtlj4MMLf647KJWmtnnVxFtTY,2337
402
403
  infrahub/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
403
404
  infrahub/graphql/analyzer.py,sha256=LNdNbgCKWc50rwO3VrmbchRgYy6GvSDcRFdZXXmM_pI,26446
404
405
  infrahub/graphql/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -532,10 +533,10 @@ infrahub/message_bus/operations/refresh/__init__.py,sha256=vBuvTL4zRRpOMXATmckQ3
532
533
  infrahub/message_bus/operations/refresh/registry.py,sha256=AWyIVoh7DvwqD_ihPAa6zbPogUGBZcz8tzTJpySoiUY,1301
533
534
  infrahub/message_bus/operations/requests/__init__.py,sha256=7BWa2wc4XSNk13zySOEUdFfcaldSIZT6WXdR6eDxk-U,131
534
535
  infrahub/message_bus/operations/requests/generator_definition.py,sha256=AE2x0NiGoyqD5PYp7XmmjzD23SqNCTyzI8KwcTcVurg,6093
535
- infrahub/message_bus/operations/requests/proposed_change.py,sha256=BepHKycBn6kXCAOHgwmOu7gVluuJ5LvchZnZ55Rt138,22800
536
+ infrahub/message_bus/operations/requests/proposed_change.py,sha256=fILCF3QnsU2c8UAhDyYBjXbfFvj0QF6xbF37A7lLUPM,23044
536
537
  infrahub/message_bus/operations/send/__init__.py,sha256=ivuUTAknLiWfArR44SxA40l0UKVkdHjtDIx0mg06IcE,39
537
538
  infrahub/message_bus/operations/send/echo.py,sha256=m2z_ij7Bucl8u1E1rLAfL3fsrhKZhk_vNIvLqNErIEI,652
538
- infrahub/message_bus/types.py,sha256=suudCrwuYXqoRVN6J9dbshRtK22BPxk0cdaCG8QKaxM,4258
539
+ infrahub/message_bus/types.py,sha256=INOsBhOsPnTSB_6SvMWw1BrnRJZyDgG2c601IjSidgs,4418
539
540
  infrahub/middleware.py,sha256=g6lPpXewWNcLjyzRsr7FjdTIbdc5H2HitGQX-L7itgI,657
540
541
  infrahub/models.py,sha256=QmwJwo3hNCta8BXM7eLsD9qv1S73Rj0cC_crLpadHTc,715
541
542
  infrahub/patch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -548,6 +549,8 @@ infrahub/patch/plan_reader.py,sha256=uqHNYVBBkpmVIGwaxl2tlMNJd2tPVedNZoSmFSjTdow
548
549
  infrahub/patch/plan_writer.py,sha256=x2u5Oe3ME3zXTdkz5hRnvp2EaQwt-r4LyuSATc2LkKs,4822
549
550
  infrahub/patch/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
550
551
  infrahub/patch/queries/base.py,sha256=wXtv4I-7l_u0kXJFbmFZZJ0_2_5yvuAJwmwiLqRq7AY,338
552
+ infrahub/patch/queries/consolidate_duplicated_nodes.py,sha256=R4n6XmACm_wJPd44ZD26VApCavTYtS2QblRvSIeJkDM,3961
553
+ infrahub/patch/queries/delete_duplicated_edges.py,sha256=Td5LeNFASt8JH49ufaCZFHT3G8AocvYSw-ZfndqwP1A,6302
551
554
  infrahub/patch/runner.py,sha256=ZB4aOqlG77hJNtDyQtIXmi-2WgM07WSEFtWV2NItIqk,12594
552
555
  infrahub/patch/vertex_adder.py,sha256=lhWELYWlHwkopGOECSHRfj1mb0-COheibsu95r2Hwzs,2796
553
556
  infrahub/patch/vertex_deleter.py,sha256=czdb8T30k_-WSbcZUVS2-DvaN3Dp4j9ss2lAz8KN0mo,1302
@@ -573,13 +576,13 @@ infrahub/proposed_change/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
573
576
  infrahub/proposed_change/branch_diff.py,sha256=Oerw3cHo51XPKwBsAmpO0T470Fg9mkpWViHVY51hToY,2303
574
577
  infrahub/proposed_change/constants.py,sha256=w8fPxKWJM1DzeClRd7Vr53hxkzl2Bq-rnXWfE2y3Bz0,1296
575
578
  infrahub/proposed_change/models.py,sha256=fAXs7k9xI6vdq02RqKrorzWmkQdtZ7u-J1NQAi4hPcg,2208
576
- infrahub/proposed_change/tasks.py,sha256=8jRavixDyQwVWtrQ5P6ON_vc2r2oAlVvlWXkhl-dO_A,28642
579
+ infrahub/proposed_change/tasks.py,sha256=KQanaLHRdCJVY4w7QWWGtVFj8xJJNbbsQN1npLo1dZA,28731
577
580
  infrahub/pytest_plugin.py,sha256=u3t0WgLMo9XmuQYeb28mccQ3xbnyv2Fv173YWl1zBiM,6678
578
581
  infrahub/serve/__init__.py,sha256=cWzvEH-Zwr1nQsoNJO9q1pef5KLuSK3VQLOumlnsQxk,73
579
582
  infrahub/serve/gunicorn_config.py,sha256=BkClF6yjz-sIhZ-oDizXUmGSEE-FQSmy21JfVnRI5tA,102
580
583
  infrahub/serve/log.py,sha256=qUidwbtE5AlyLHnWKVoEggOoHKhfMMjYlUH1d-iGwqg,953
581
584
  infrahub/serve/worker.py,sha256=nNGQORkUM474UiFNfb0GBHo2vx-NuAuZCcscwoKnGwE,1371
582
- infrahub/server.py,sha256=ruKMBwoYUDY3-7GuV6qYbsq-VkasCY6t9EZU-J9VkG4,8117
585
+ infrahub/server.py,sha256=xGyocYKV9NMDR03Fi_qdAtwNFKkLQBabyxXxnxcL9mc,8242
583
586
  infrahub/services/__init__.py,sha256=WQ9s6y0YFNrP8rRndKqQAB7iJa4-Q-5KvHxUXS4xlQA,7036
584
587
  infrahub/services/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
585
588
  infrahub/services/adapters/cache/__init__.py,sha256=QPHboyYJU3TkNQRGnXR8e12ktVj1tCoyEEVQr2cW05E,1816
@@ -621,8 +624,8 @@ infrahub/telemetry/utils.py,sha256=K-gmj4QilO3HXAqJRzUwVcpqdA9KcM4RYJPU_zUYpHA,3
621
624
  infrahub/trace.py,sha256=Hir9hMWx_6IKF_dhDnMxYjusJdy0ycjB5CHWge2wXNE,3759
622
625
  infrahub/transformations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
623
626
  infrahub/transformations/constants.py,sha256=_cVDcd8m1HCyKf8k_pAwdoaPTGD7524reuJTjMV-elc,31
624
- infrahub/transformations/models.py,sha256=s_nnl1dBUCizNXIFBzoQlLazTuqKD2CnqPXHV0m-qC4,1587
625
- infrahub/transformations/tasks.py,sha256=U38urAklu5RZmalcBddoiVRb4enZPuCn3XTZ9t6mHeU,1918
627
+ infrahub/transformations/models.py,sha256=YuNLGcourz0ekBJyLnzuzLDfxkmmUVqGiabg69EI34w,1744
628
+ infrahub/transformations/tasks.py,sha256=zgaZzlPbzGAfQdk1hqjZetLoQL7EuaTI7o_Ofg29IRU,1981
626
629
  infrahub/trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
627
630
  infrahub/trigger/catalogue.py,sha256=jnMs0i6MureKREyFvGop3eWIlcszSDE5UuayODTEDBc,499
628
631
  infrahub/trigger/constants.py,sha256=u9_5A6gIUIrprzfEdwseYk2yTkwU0VPCjZTwL8b3T6s,22
@@ -637,7 +640,7 @@ infrahub/validators/tasks.py,sha256=BlhBRBzNC5Ozop6aj2pHzZxGopxWcQbU-H3cHes_zs0,
637
640
  infrahub/visuals.py,sha256=N62G4oOOIYNFpvMjKq7uos-oZAZybGMp57uh5jsVX9w,627
638
641
  infrahub/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
639
642
  infrahub/webhook/gather.py,sha256=XNaIGiHDiMjjtSjsVbswOze7cLaL0MKJmvSbZBS-WT0,691
640
- infrahub/webhook/models.py,sha256=6kQx9AMWKdRJo-alNZ9obA6IvAnjt2QheTICkoG4d14,9813
643
+ infrahub/webhook/models.py,sha256=micGF9JT4qcstx0FNaL1ycQnRo8BlbCNDXr-tRoVFUg,10007
641
644
  infrahub/webhook/tasks.py,sha256=kQz0BzOOKUGogHKN2X_tSKYk-7rpHMQ1FKjmGugzEc0,7235
642
645
  infrahub/webhook/triggers.py,sha256=v1dzFV4wX0GO2n5hft_qzp-oJOA2P_9Q2eTcSP-i0pk,1574
643
646
  infrahub/worker.py,sha256=JtTM-temURUbpEy-bkKJuTt-GKoiHFDrOe9SyVTIXEM,49
@@ -657,20 +660,20 @@ infrahub_sdk/async_typer.py,sha256=Gj7E8EGdjA-XF404vr9cBt20mmbroQh7N68HXhWYx00,8
657
660
  infrahub_sdk/batch.py,sha256=LRZ_04ic56ll9FBjgXCYrJRDJcwB3wR1yX4grrQutDQ,3795
658
661
  infrahub_sdk/branch.py,sha256=hmtoIekQ1uusoJ6yEKlw6vrFMTAHJrXu-YsqqCQC_kc,12716
659
662
  infrahub_sdk/checks.py,sha256=rFHlEY8XEYcjpLCg6gd9a0R8vPnkxNp0OnXk-odsZKY,5707
660
- infrahub_sdk/client.py,sha256=j3ZiAB_8UN-kDd7CGMUSbFWFcdPrYGwkZmJBbvi4o1U,100721
661
- infrahub_sdk/config.py,sha256=irv7a1YRBGA8L9eMak6J7GG9dzG3sOQeKsyEOkJHw-s,7302
663
+ infrahub_sdk/client.py,sha256=wnCpzPJOtasLvOyzlmt1QGpN27Z0BeJwCIfbrvcHfWU,100817
664
+ infrahub_sdk/config.py,sha256=wnVRkaVO4Nd2IBLRVpLtrC-jjW399mgr1DprohTEzQQ,7936
662
665
  infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
663
666
  infrahub_sdk/context.py,sha256=QgXZvtUrKolp6ML8TguVK87Wuu-3KyizZVV_N2F4oCw,400
664
667
  infrahub_sdk/ctl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
665
668
  infrahub_sdk/ctl/branch.py,sha256=GeGDNGNpew93MZblqhG0r45wqSz_p8CcQ9R8zuj_jmg,4742
666
669
  infrahub_sdk/ctl/check.py,sha256=HWsK1rTpGF2VvRBiS5KZrRxXrsAHDXoFS3wJkmq8pik,7895
667
670
  infrahub_sdk/ctl/cli.py,sha256=A9jJKYBo5opzIIyWYf6niyAHhy49V59g6biueMDFbpE,328
668
- infrahub_sdk/ctl/cli_commands.py,sha256=2ucEJjPFWlLTD89d3A-u0yVt0_qEuoVmXLLTE6PnrYw,18397
671
+ infrahub_sdk/ctl/cli_commands.py,sha256=ShgWESs4_DjBK4nttXdVAYrJoTaxOvpEtMwSxft0Rrg,18560
669
672
  infrahub_sdk/ctl/client.py,sha256=6bmXmQta9qQCJ8HybQwt2uSF2X1Em91xNFpwiKFujxs,2083
670
673
  infrahub_sdk/ctl/config.py,sha256=y3kTvfxDO2FKzgvaIXKPKOES7BqXT-s9Kuww7ROfs-4,3039
671
674
  infrahub_sdk/ctl/exceptions.py,sha256=RPdBtIj5qVvNqNR9Y-mPNF7kDUxXUUCac5msyitrBXo,272
672
675
  infrahub_sdk/ctl/exporter.py,sha256=CmqyKpf7q5Pu5Wfo_2HktiF12iD_3rJ9Ifb48BIoJdU,1876
673
- infrahub_sdk/ctl/generator.py,sha256=sj_QcuUIy0Sd3jKXAP5Y-DZ6iuwWGwacegjYiCx0CPg,4166
676
+ infrahub_sdk/ctl/generator.py,sha256=RJ7OP5n0bgWAkU19AvghgNkCdIe-9InmGITLHfrosVo,4178
674
677
  infrahub_sdk/ctl/importer.py,sha256=0QSKzkynI4eeQHHsTIWlEaj7mPrTdscQeXrrOzqtyig,1908
675
678
  infrahub_sdk/ctl/menu.py,sha256=A0NHvu48qbo9aWYNc3nGMNMeXr4LnOr_HNKL5arBWNA,2690
676
679
  infrahub_sdk/ctl/object.py,sha256=OEbAx0Yb0zbXxS2ZnXedZRZDHITQd3iAk_cWUlTHLvg,2706
@@ -684,14 +687,15 @@ infrahub_sdk/ctl/validate.py,sha256=dknc4kMBIdysZNtEBYyvhlFPyUYyLmc2a4OI4cjGj2c,
684
687
  infrahub_sdk/data.py,sha256=4d8Fd1s7lTeOu8JWXsK2m2BM8t_5HG0Z73fnCZGc7Pc,841
685
688
  infrahub_sdk/diff.py,sha256=Ms-3YyXo-DoF1feV9qP7GKakBYUNFsULZdy-yMEG71w,4258
686
689
  infrahub_sdk/exceptions.py,sha256=gZLfZhyDd0M-w5WMzzfPkFwha-aZirJ739N_OMN7Ujs,5728
687
- infrahub_sdk/generator.py,sha256=9Je9mCfS6madP2WMD6gp9l8IkWhW_eIl5elnt9h7rvc,5592
690
+ infrahub_sdk/generator.py,sha256=I00G7BdQohJFZ7wQru1SWcwO41gPbuQ3ZGEDVkLIn60,3403
688
691
  infrahub_sdk/graphql.py,sha256=zrxRveg8-t0FbLtOEMDiiW0vqtBHc2qaFRkiHF9Bp6g,7019
689
692
  infrahub_sdk/groups.py,sha256=GL14ByW4GHrkqOLJ-_vGhu6bkYDxljqPtkErcQVehv0,711
690
693
  infrahub_sdk/jinja2.py,sha256=lTfV9E_P5gApaX6RW9M8U8oixQi-0H3U8wcs8fdGVaU,1150
691
694
  infrahub_sdk/node.py,sha256=XLkm3Fe39URXc_pigmJcb7JAWTgZoNrKTP7zMuwjfhw,91966
692
695
  infrahub_sdk/object_store.py,sha256=d-EDnxPpw_7BsbjbGbH50rjt-1-Ojj2zNrhFansP5hA,4299
696
+ infrahub_sdk/operation.py,sha256=hsbZSjLbLsqvjZg5R5x_bOxxlteXJAk0fQy3mLrZhn4,2730
693
697
  infrahub_sdk/playback.py,sha256=ubkY1LiW_wFwm4auerdQ0zFJcFJZ1SYQT6-d4bxzaLg,1906
694
- infrahub_sdk/protocols.py,sha256=LyiZcUvcT-ibgWYyYELjAPyAv42kxdhAPyFfac-RIZo,21569
698
+ infrahub_sdk/protocols.py,sha256=A_RNugWYeYO3rh5XvNHzWrZNTyk9xxPOypkiVA4DMxM,21871
695
699
  infrahub_sdk/protocols_base.py,sha256=J7eW8LO0MO19BiMPvYmyhSs6Es14Xk1xUolb0vWaFjo,4889
696
700
  infrahub_sdk/protocols_generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
697
701
  infrahub_sdk/protocols_generator/constants.py,sha256=wEqe9XGe1mTYBXSmJ8rjQs82dQ4jM50qb8uS2ZGcriI,791
@@ -711,11 +715,11 @@ infrahub_sdk/pytest_plugin/plugin.py,sha256=Sv4eSZmAuTvQmtAAJU1FOz6tFuUdvdybIK6X
711
715
  infrahub_sdk/pytest_plugin/utils.py,sha256=AfSAgRXBGdx__8MNQJG7faw68ioZzk37CM4ZPBiVXBs,557
712
716
  infrahub_sdk/queries.py,sha256=s4gnx67e-MNg-3jP4Vx1jreO9uiW3uYPllFQgaTODdQ,2308
713
717
  infrahub_sdk/query_groups.py,sha256=vcN67jWvDcVacXbgITOMt-UI_6T5eGrG4WJfb8LqUi4,10069
714
- infrahub_sdk/recorder.py,sha256=G134AfAwE5efSqArVJneurF2JIEuhvSJWWI3woPczgI,2194
718
+ infrahub_sdk/recorder.py,sha256=_NPtSLX3-Dam6BHt7daLzv-IAVxvU-35GIGu7YtA08Y,2285
715
719
  infrahub_sdk/repository.py,sha256=PbSHHl6ajIeZu1t4pH1j7qzR-DPOkGuzubcNM02NuV0,1011
716
720
  infrahub_sdk/schema/__init__.py,sha256=26pGrfI5fiz5nq9uYxNYuTGWw6zYJCGuWaqJhSPsAiQ,28928
717
721
  infrahub_sdk/schema/main.py,sha256=KSYYauatsRWI3EbI2lPff51n5dO2uUdcT-BmAo1D24A,12152
718
- infrahub_sdk/schema/repository.py,sha256=LJYqYRgeow_1oBgPl47yP4nmPzmkJpnr-J0xrh0gFAA,11301
722
+ infrahub_sdk/schema/repository.py,sha256=XpKDZ-KYFyS7k4fgy4ethDIBOC-oag0yZm-49GJdxcY,11495
719
723
  infrahub_sdk/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
720
724
  infrahub_sdk/spec/menu.py,sha256=KG8KpDYqlVWsCQXCUlAX7P7Jbw3bB60hlTMRs0cohOk,1078
721
725
  infrahub_sdk/spec/object.py,sha256=mip9OUezkA6YHxSFolsZt9eN_CjIxZE9-PGY2H7mKNM,24589
@@ -747,7 +751,7 @@ infrahub_sdk/transfer/importer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
747
751
  infrahub_sdk/transfer/importer/interface.py,sha256=TN7FH_LgThkBjrpWwkdTZIVJPtNklAYiK3Mn6RPs7IM,195
748
752
  infrahub_sdk/transfer/importer/json.py,sha256=-Tlmg22TiBrEqXOSLMnUzlCFOZ2M0Q8lWyPbwjUjifw,9654
749
753
  infrahub_sdk/transfer/schema_sorter.py,sha256=ZoBjJGFT-6jQoKOLaoOPMAWzs7vGOeo7x6zOOP4LNv0,1244
750
- infrahub_sdk/transforms.py,sha256=5fmoBBKWGhFCu0NLKlSF95GAbbCi2k25zWiWjtsd2dA,2558
754
+ infrahub_sdk/transforms.py,sha256=RLiB_CkM-JQSfyifChxxQVl2FrHKOGEf_YynSMKeFZU,2340
751
755
  infrahub_sdk/types.py,sha256=UeZ1rDp4eyH12ApTcUD9a1OOtCp3IL1YZUeeZ06qF-I,1726
752
756
  infrahub_sdk/utils.py,sha256=xBl-9yIxeil-7fbNgsAUzZSa178UYjsvLbeLNUHzYj0,12638
753
757
  infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
@@ -755,7 +759,7 @@ infrahub_sdk/yaml.py,sha256=512OKgxAYPt4QLBFlucUB4GgwKJ09dzgC86pO57YFFw,5018
755
759
  infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
756
760
  infrahub_testcontainers/constants.py,sha256=mZ4hLvcf4rKk9wC7EId4MQxAY0sk4V99deB04N0J2bg,85
757
761
  infrahub_testcontainers/container.py,sha256=HMWCwQpXgNnUYhGDNr1yEdfAO-t-TDzG2RgkZ1ye4tc,12257
758
- infrahub_testcontainers/docker-compose.test.yml,sha256=6zAf4sVr3cAfMtZgvKv8SX8uD9FolTsNFlhSfzs8eI0,8229
762
+ infrahub_testcontainers/docker-compose.test.yml,sha256=TmHum2G--SEo5h44bjP1RqHS8KnBv9rAOkPasnpUgUE,8317
759
763
  infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTMFZJsnk,1305
760
764
  infrahub_testcontainers/helpers.py,sha256=zsvBOql5qM2OX1ybPcklqF-nzWYHkZI3Gk3KZhxWOtU,3578
761
765
  infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
@@ -764,8 +768,8 @@ infrahub_testcontainers/models.py,sha256=ASYyvl7d_WQz_i7y8-3iab9hwwmCl3OCJavqVbe
764
768
  infrahub_testcontainers/performance_test.py,sha256=CZ0YeGqnc9RCEPPk5-jFh0b0zFz-DYweOBF-Lfo0bc8,6037
765
769
  infrahub_testcontainers/plugin.py,sha256=g24SMg4EAqVe2N8i9F66EV34cNqIdDU4mRP7OeOJO1w,5381
766
770
  infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
767
- infrahub_server-1.2.7.dist-info/LICENSE.txt,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
768
- infrahub_server-1.2.7.dist-info/METADATA,sha256=qt7S0mGiT7u4_-i-SSKcTFe2AaZubGIAMsJFCPdF740,8189
769
- infrahub_server-1.2.7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
770
- infrahub_server-1.2.7.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
771
- infrahub_server-1.2.7.dist-info/RECORD,,
771
+ infrahub_server-1.2.8.dist-info/LICENSE.txt,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
772
+ infrahub_server-1.2.8.dist-info/METADATA,sha256=lvl-T9FehKzl-kv6aXO5oYEg7KI9BWeO-MFIQT7fX90,8189
773
+ infrahub_server-1.2.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
774
+ infrahub_server-1.2.8.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
775
+ infrahub_server-1.2.8.dist-info/RECORD,,
@@ -123,6 +123,7 @@ services:
123
123
  INFRAHUB_INITIAL_AGENT_TOKEN: ${INFRAHUB_TESTING_INITIAL_AGENT_TOKEN}
124
124
  INFRAHUB_SECURITY_SECRET_KEY: ${INFRAHUB_TESTING_SECURITY_SECRET_KEY}
125
125
  PREFECT_API_URL: ${INFRAHUB_TESTING_PREFECT_API}
126
+ INFRAHUB_EXPERIMENTAL_VALUE_DB_INDEX:
126
127
  # Tracing
127
128
  INFRAHUB_TRACE_ENABLE: ${INFRAHUB_TRACE_ENABLE:-false}
128
129
  INFRAHUB_TRACE_EXPORTER_ENDPOINT:
@@ -169,6 +170,7 @@ services:
169
170
  INFRAHUB_WORKFLOW_ADDRESS: ${INFRAHUB_TESTING_WORKFLOW_ADDRESS}
170
171
  INFRAHUB_TIMEOUT: ${INFRAHUB_TESTING_TIMEOUT}
171
172
  PREFECT_API_URL: ${INFRAHUB_TESTING_PREFECT_API}
173
+ INFRAHUB_EXPERIMENTAL_VALUE_DB_INDEX:
172
174
  # Tracing
173
175
  INFRAHUB_TRACE_ENABLE: ${INFRAHUB_TRACE_ENABLE:-false}
174
176
  INFRAHUB_TRACE_EXPORTER_ENDPOINT: