infrahub-server 1.2.9rc0__py3-none-any.whl → 1.3.0a0__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 (166) hide show
  1. infrahub/actions/constants.py +86 -0
  2. infrahub/actions/gather.py +114 -0
  3. infrahub/actions/models.py +241 -0
  4. infrahub/actions/parsers.py +104 -0
  5. infrahub/actions/schema.py +382 -0
  6. infrahub/actions/tasks.py +126 -0
  7. infrahub/actions/triggers.py +21 -0
  8. infrahub/cli/db.py +1 -2
  9. infrahub/computed_attribute/models.py +13 -0
  10. infrahub/computed_attribute/tasks.py +48 -26
  11. infrahub/config.py +9 -0
  12. infrahub/core/account.py +24 -47
  13. infrahub/core/attribute.py +53 -14
  14. infrahub/core/branch/models.py +8 -9
  15. infrahub/core/branch/tasks.py +0 -2
  16. infrahub/core/constants/infrahubkind.py +8 -0
  17. infrahub/core/constraint/node/runner.py +1 -1
  18. infrahub/core/convert_object_type/__init__.py +0 -0
  19. infrahub/core/convert_object_type/conversion.py +122 -0
  20. infrahub/core/convert_object_type/schema_mapping.py +56 -0
  21. infrahub/core/diff/calculator.py +65 -11
  22. infrahub/core/diff/combiner.py +38 -31
  23. infrahub/core/diff/coordinator.py +44 -28
  24. infrahub/core/diff/data_check_synchronizer.py +3 -2
  25. infrahub/core/diff/enricher/hierarchy.py +36 -27
  26. infrahub/core/diff/ipam_diff_parser.py +5 -4
  27. infrahub/core/diff/merger/merger.py +46 -16
  28. infrahub/core/diff/merger/serializer.py +1 -0
  29. infrahub/core/diff/model/field_specifiers_map.py +64 -0
  30. infrahub/core/diff/model/path.py +58 -58
  31. infrahub/core/diff/parent_node_adder.py +14 -16
  32. infrahub/core/diff/query/all_conflicts.py +1 -5
  33. infrahub/core/diff/query/artifact.py +10 -20
  34. infrahub/core/diff/query/diff_get.py +3 -6
  35. infrahub/core/diff/query/drop_nodes.py +42 -0
  36. infrahub/core/diff/query/field_specifiers.py +8 -7
  37. infrahub/core/diff/query/field_summary.py +2 -4
  38. infrahub/core/diff/query/filters.py +15 -1
  39. infrahub/core/diff/query/merge.py +284 -101
  40. infrahub/core/diff/query/save.py +26 -34
  41. infrahub/core/diff/query/summary_counts_enricher.py +34 -54
  42. infrahub/core/diff/query_parser.py +55 -65
  43. infrahub/core/diff/repository/deserializer.py +38 -24
  44. infrahub/core/diff/repository/repository.py +31 -12
  45. infrahub/core/diff/tasks.py +3 -3
  46. infrahub/core/graph/__init__.py +1 -1
  47. infrahub/core/manager.py +14 -11
  48. infrahub/core/migrations/graph/__init__.py +2 -0
  49. infrahub/core/migrations/graph/m003_relationship_parent_optional.py +1 -2
  50. infrahub/core/migrations/graph/m013_convert_git_password_credential.py +2 -4
  51. infrahub/core/migrations/graph/m019_restore_rels_to_time.py +11 -22
  52. infrahub/core/migrations/graph/m020_duplicate_edges.py +3 -6
  53. infrahub/core/migrations/graph/m021_missing_hierarchy_merge.py +1 -2
  54. infrahub/core/migrations/graph/m024_missing_hierarchy_backfill.py +1 -2
  55. infrahub/core/migrations/graph/m027_delete_isolated_nodes.py +50 -0
  56. infrahub/core/migrations/graph/m028_delete_diffs.py +38 -0
  57. infrahub/core/migrations/query/attribute_add.py +1 -2
  58. infrahub/core/migrations/query/attribute_rename.py +3 -6
  59. infrahub/core/migrations/query/delete_element_in_schema.py +3 -6
  60. infrahub/core/migrations/query/node_duplicate.py +3 -6
  61. infrahub/core/migrations/query/relationship_duplicate.py +3 -6
  62. infrahub/core/migrations/schema/node_attribute_remove.py +3 -6
  63. infrahub/core/migrations/schema/node_remove.py +3 -6
  64. infrahub/core/models.py +29 -2
  65. infrahub/core/node/__init__.py +18 -4
  66. infrahub/core/node/create.py +211 -0
  67. infrahub/core/protocols.py +51 -0
  68. infrahub/core/protocols_base.py +3 -0
  69. infrahub/core/query/__init__.py +2 -2
  70. infrahub/core/query/branch.py +27 -17
  71. infrahub/core/query/diff.py +186 -81
  72. infrahub/core/query/ipam.py +10 -20
  73. infrahub/core/query/node.py +65 -49
  74. infrahub/core/query/relationship.py +156 -58
  75. infrahub/core/query/resource_manager.py +1 -2
  76. infrahub/core/query/subquery.py +4 -6
  77. infrahub/core/relationship/model.py +4 -1
  78. infrahub/core/schema/__init__.py +2 -1
  79. infrahub/core/schema/attribute_parameters.py +36 -0
  80. infrahub/core/schema/attribute_schema.py +83 -8
  81. infrahub/core/schema/basenode_schema.py +25 -1
  82. infrahub/core/schema/definitions/core/__init__.py +21 -0
  83. infrahub/core/schema/definitions/internal.py +13 -3
  84. infrahub/core/schema/generated/attribute_schema.py +9 -3
  85. infrahub/core/schema/schema_branch.py +15 -7
  86. infrahub/core/validators/__init__.py +5 -1
  87. infrahub/core/validators/attribute/choices.py +1 -2
  88. infrahub/core/validators/attribute/enum.py +1 -2
  89. infrahub/core/validators/attribute/kind.py +1 -2
  90. infrahub/core/validators/attribute/length.py +13 -6
  91. infrahub/core/validators/attribute/optional.py +1 -2
  92. infrahub/core/validators/attribute/regex.py +5 -5
  93. infrahub/core/validators/attribute/unique.py +1 -3
  94. infrahub/core/validators/determiner.py +18 -2
  95. infrahub/core/validators/enum.py +7 -0
  96. infrahub/core/validators/node/hierarchy.py +3 -6
  97. infrahub/core/validators/query.py +1 -3
  98. infrahub/core/validators/relationship/count.py +6 -12
  99. infrahub/core/validators/relationship/optional.py +2 -4
  100. infrahub/core/validators/relationship/peer.py +3 -8
  101. infrahub/core/validators/tasks.py +1 -1
  102. infrahub/core/validators/uniqueness/query.py +12 -9
  103. infrahub/database/__init__.py +1 -3
  104. infrahub/events/group_action.py +1 -0
  105. infrahub/graphql/analyzer.py +139 -18
  106. infrahub/graphql/app.py +1 -1
  107. infrahub/graphql/loaders/node.py +1 -1
  108. infrahub/graphql/loaders/peers.py +1 -1
  109. infrahub/graphql/manager.py +4 -0
  110. infrahub/graphql/mutations/action.py +164 -0
  111. infrahub/graphql/mutations/convert_object_type.py +62 -0
  112. infrahub/graphql/mutations/main.py +24 -175
  113. infrahub/graphql/mutations/proposed_change.py +21 -18
  114. infrahub/graphql/queries/convert_object_type_mapping.py +36 -0
  115. infrahub/graphql/queries/diff/tree.py +2 -1
  116. infrahub/graphql/queries/relationship.py +1 -1
  117. infrahub/graphql/resolvers/many_relationship.py +4 -4
  118. infrahub/graphql/resolvers/resolver.py +4 -4
  119. infrahub/graphql/resolvers/single_relationship.py +2 -2
  120. infrahub/graphql/schema.py +6 -0
  121. infrahub/graphql/subscription/graphql_query.py +2 -2
  122. infrahub/graphql/types/branch.py +1 -1
  123. infrahub/menu/menu.py +31 -0
  124. infrahub/message_bus/messages/__init__.py +0 -10
  125. infrahub/message_bus/operations/__init__.py +0 -8
  126. infrahub/message_bus/operations/refresh/registry.py +1 -1
  127. infrahub/patch/queries/consolidate_duplicated_nodes.py +3 -6
  128. infrahub/patch/queries/delete_duplicated_edges.py +5 -10
  129. infrahub/prefect_server/models.py +1 -19
  130. infrahub/proposed_change/models.py +68 -3
  131. infrahub/proposed_change/tasks.py +907 -30
  132. infrahub/task_manager/models.py +10 -6
  133. infrahub/telemetry/database.py +1 -1
  134. infrahub/telemetry/tasks.py +1 -1
  135. infrahub/trigger/catalogue.py +2 -0
  136. infrahub/trigger/models.py +29 -3
  137. infrahub/trigger/setup.py +51 -15
  138. infrahub/trigger/tasks.py +4 -5
  139. infrahub/types.py +1 -1
  140. infrahub/webhook/models.py +2 -1
  141. infrahub/workflows/catalogue.py +85 -0
  142. infrahub/workflows/initialization.py +1 -3
  143. infrahub_sdk/timestamp.py +2 -2
  144. {infrahub_server-1.2.9rc0.dist-info → infrahub_server-1.3.0a0.dist-info}/METADATA +4 -4
  145. {infrahub_server-1.2.9rc0.dist-info → infrahub_server-1.3.0a0.dist-info}/RECORD +153 -146
  146. infrahub_testcontainers/container.py +0 -1
  147. infrahub_testcontainers/docker-compose.test.yml +4 -4
  148. infrahub_testcontainers/helpers.py +8 -2
  149. infrahub_testcontainers/performance_test.py +6 -3
  150. infrahub/message_bus/messages/check_generator_run.py +0 -26
  151. infrahub/message_bus/messages/finalize_validator_execution.py +0 -15
  152. infrahub/message_bus/messages/proposed_change/base_with_diff.py +0 -16
  153. infrahub/message_bus/messages/proposed_change/request_proposedchange_refreshartifacts.py +0 -11
  154. infrahub/message_bus/messages/request_generatordefinition_check.py +0 -20
  155. infrahub/message_bus/messages/request_proposedchange_pipeline.py +0 -23
  156. infrahub/message_bus/operations/check/__init__.py +0 -3
  157. infrahub/message_bus/operations/check/generator.py +0 -156
  158. infrahub/message_bus/operations/finalize/__init__.py +0 -3
  159. infrahub/message_bus/operations/finalize/validator.py +0 -133
  160. infrahub/message_bus/operations/requests/__init__.py +0 -9
  161. infrahub/message_bus/operations/requests/generator_definition.py +0 -140
  162. infrahub/message_bus/operations/requests/proposed_change.py +0 -629
  163. /infrahub/{message_bus/messages/proposed_change → actions}/__init__.py +0 -0
  164. {infrahub_server-1.2.9rc0.dist-info → infrahub_server-1.3.0a0.dist-info}/LICENSE.txt +0 -0
  165. {infrahub_server-1.2.9rc0.dist-info → infrahub_server-1.3.0a0.dist-info}/WHEEL +0 -0
  166. {infrahub_server-1.2.9rc0.dist-info → infrahub_server-1.3.0a0.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,12 @@
1
1
  infrahub/__init__.py,sha256=OF6hovR3975Zu6-9DOL_Nh_FTgGn8kS_yOfQ-xp-chg,87
2
+ infrahub/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ infrahub/actions/constants.py,sha256=4d9eBP_t34sM4WRrlJNqG2az26u6fI-B-4UXT6RjwCM,2525
4
+ infrahub/actions/gather.py,sha256=Xd7s2f5cBdn-EIjugm1bB3MI1BDPvWV19EsJ1CwKR1A,4732
5
+ infrahub/actions/models.py,sha256=9Zdsn0CQ4oj7-K96JDU8CLCMQN80aU3osy6FRFF6L9I,8372
6
+ infrahub/actions/parsers.py,sha256=VmBDCeg66ouR8bHncaMvOv6QyjvNx_ST5inkIaU1XHQ,3838
7
+ infrahub/actions/schema.py,sha256=9o4ftaNWudXfmgJHkXHNdsmRt56Xouut92wi0Q5e5pg,12349
8
+ infrahub/actions/tasks.py,sha256=4CccFNTWFPMufk9L2RN1fa-LGxHkPGpGaxvjjWNcUos,4167
9
+ infrahub/actions/triggers.py,sha256=5BKt8NkafArs8tdSQUb2uBtJVXfZrYUePByOn9d7-1Y,772
2
10
  infrahub/api/__init__.py,sha256=dtRtBRpEgt7Y9Zdwy85jpSr8qfO_2xNTgTQLCJPQiZI,2182
3
11
  infrahub/api/artifact.py,sha256=NfdtV6d5npb2yRPo5qcEkcvHZII8pmby0X8HEFhnzVc,3928
4
12
  infrahub/api/auth.py,sha256=-YqPWBc5zXvGehf8IatHMl_y2xE6hpcfG7VcxnviFkc,1895
@@ -27,7 +35,7 @@ infrahub/auth.py,sha256=g4pQX4kI1k-iWIQNduXODhpeZXIjY3XqLslh7QFRBq4,9194
27
35
  infrahub/cli/__init__.py,sha256=zQjE9zMrwAmk_4qb5mbUgNi06g3HKvrPwQvJLQmv9JY,1814
28
36
  infrahub/cli/constants.py,sha256=CoCeTMnfsA3j7ArdLKLZK4VPxOM7ls17qpxGJmND0m8,129
29
37
  infrahub/cli/context.py,sha256=20CJj_D1VhigR9uhTDPHiVHnV7vzsgK8v-uLKs06kzA,398
30
- infrahub/cli/db.py,sha256=XmXcCJ0mRyLY22VliCQ_m2M4Xhy53Y9gPNLZHM4IDwU,28414
38
+ infrahub/cli/db.py,sha256=r53xD9aVSAKQ94ggHyEc6TIeeHIZ8Bq35QI8iuE-1mg,28407
31
39
  infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
32
40
  infrahub/cli/git_agent.py,sha256=ajT9-kdd3xLIysOPe8GqZyCDMkpNyhqfWjBg9HPWVcg,5240
33
41
  infrahub/cli/patch.py,sha256=ztOkWyo0l_Wo0WX10bvSqGZibKzowrwx82oi69cjwkY,6018
@@ -38,86 +46,91 @@ infrahub/components.py,sha256=lSLDCDwIZoakZ2iBrfHi9c3BxzugMiuiZO6V7Egt6tk,107
38
46
  infrahub/computed_attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
47
  infrahub/computed_attribute/constants.py,sha256=oTMPEfRuf2mcfCkBpRLWRALO6nsLHpFm9jJGu0lowS4,446
40
48
  infrahub/computed_attribute/gather.py,sha256=TSv6_CWZH1DYRv430jzyJpFJWKzwPGka5wFiL1jJ9rM,8096
41
- infrahub/computed_attribute/models.py,sha256=xAzLfZ8teEiJrfa8JOc3EAjikOMakj0LCvWmwGh9miQ,16789
42
- infrahub/computed_attribute/tasks.py,sha256=nyTMJ-mC0tsWtCy1rC6UrSA6a1wxPeppevtrn3KnqWI,16850
49
+ infrahub/computed_attribute/models.py,sha256=P_MijLwCVd7394oyTTfYQ3HmX5wIF966jdchuZaLRbs,17361
50
+ infrahub/computed_attribute/tasks.py,sha256=k3qNNKxF2lS9tZDRKrB_sKX552rpfM-Q-4yj6WJLvs4,17880
43
51
  infrahub/computed_attribute/triggers.py,sha256=ve1cUj0CZ7dU1VtZkxET9LD8StszKIL9mCkTZpCeUaI,2304
44
- infrahub/config.py,sha256=IXLp97Y2pxtGcQxwwuBSuBQotFGdHEtj1rf9EZ5z-_I,35255
52
+ infrahub/config.py,sha256=XxyVP8hT7zKxRRMkKzqgUargAqnsI2BRc8jBZqVYF5E,35665
45
53
  infrahub/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
54
  infrahub/constants/database.py,sha256=WmV1iuOk4xulxZHOVvO3sS_VF1eTf7fKh0TPe_RnfV4,507
47
55
  infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
48
56
  infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
49
- infrahub/core/account.py,sha256=_RL8QTRsA7XmaTfWSfE6GGy8Z1BEPK5BWoc_LUjDfyE,26507
50
- infrahub/core/attribute.py,sha256=TUw_yTUo8eJyy0_iD0p1CdI6xfyNvIPdTb3f7ZZS2sA,43003
57
+ infrahub/core/account.py,sha256=s8ZC7J8rtEvQZQjbVuiKMlPhl6aQjtAjbZhBejLC0X8,26182
58
+ infrahub/core/attribute.py,sha256=Xg833xxMJoF8jYo6pSNcGvs50c5BCE3AMWPUpLHtpNI,43868
51
59
  infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
52
- infrahub/core/branch/models.py,sha256=pu597Oe2N33cNdXDR59EgCFVHQOy1-hkl3UZnqSu-Vs,19471
53
- infrahub/core/branch/tasks.py,sha256=Q9dJtKbEieeQZJQ4FI5qlLvoQKnKmDHl1BcF_iaguUo,20984
60
+ infrahub/core/branch/models.py,sha256=8e0BXwbFV4zHMSpqAp1Zp4L8YlxBs0Mxpl9gMoFGeJ4,19539
61
+ infrahub/core/branch/tasks.py,sha256=_5tuv068xczwGYB2MZffPIdchhhgm1ciqOawdIO2pAo,20904
54
62
  infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
63
  infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
56
64
  infrahub/core/changelog/models.py,sha256=UgfJdOFUkMmjeUKe1mPCO7WE3jNENw0UJU3LWFf20HQ,29920
57
65
  infrahub/core/constants/__init__.py,sha256=Q2pEX_-Z1-TE5OM_PWKIPIvAOxuYzk2cWZnFjemkT2k,8618
58
66
  infrahub/core/constants/database.py,sha256=lxesWX2z6SZgGok1bAY6_pCBm5rFfu7k4ayMBr6w_Vo,336
59
- infrahub/core/constants/infrahubkind.py,sha256=08iJTK_RMMHbyF67bZLAIZFYiWaDv_IxU6Al53LPE6s,2492
67
+ infrahub/core/constants/infrahubkind.py,sha256=P06yY3V3XJ8s1SbIHQDdflQaTc7laxo-_aSP-likEiU,2826
60
68
  infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
61
69
  infrahub/core/constants/schema.py,sha256=uuddQniyGlSlvKjM5mQ_V2VhgZmQ8fUCAHysbZLvTEU,2006
62
70
  infrahub/core/constraint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
71
  infrahub/core/constraint/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- infrahub/core/constraint/node/runner.py,sha256=l60GfQxqn6OaLUvfVYddsWor9qy2NiMY_0avnIb_Heg,1848
72
+ infrahub/core/constraint/node/runner.py,sha256=43ngwnu6fvxzdX0ZUUCSTzGtKBc8fSRSGSX1sovZvxQ,1863
73
+ infrahub/core/convert_object_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ infrahub/core/convert_object_type/conversion.py,sha256=epBphv-ovtrDfCHcJbtWoD3M20i7WTqaQXjH951Xf2M,5579
75
+ infrahub/core/convert_object_type/schema_mapping.py,sha256=xf7xQwjGd3HQ-N7_J7dwuY4RUR9sivKoy7Vwl4YlsBM,2485
65
76
  infrahub/core/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
77
  infrahub/core/diff/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
78
  infrahub/core/diff/artifacts/calculator.py,sha256=qk1DspB3bkKeWJFesLbmziCALVnbRadjrez1kn_IZWU,4435
68
79
  infrahub/core/diff/branch_differ.py,sha256=62TRs3tGb4brQqCaVoI2iMIiPnny3_0_e9j-Mq-AXx4,7752
69
- infrahub/core/diff/calculator.py,sha256=1kGY-Pgp2ji4hg2KKWOcFXo3f5vmBuCcxSLRhZK1tD0,7250
70
- infrahub/core/diff/combiner.py,sha256=6Mcd8LY2qhnCJMJDWlm9fbLeAPm5Ari8N8fL_Rq1GLA,22904
80
+ infrahub/core/diff/calculator.py,sha256=Wn0IRqCujwfXXNQbi6n-npEE0UrcWi5qq58wAIBMZsM,9976
81
+ infrahub/core/diff/combiner.py,sha256=qL4WQsphB2sVnncgskSG_QcJBqBHjaK0vWU_apeTn-E,23508
71
82
  infrahub/core/diff/conflict_transferer.py,sha256=LZCuS9Dbr4yBf-bd3RF-9cPnaOvVWiU3KBmmwxbRZl0,3968
72
83
  infrahub/core/diff/conflicts_enricher.py,sha256=x6qiZOXO2A3BQ2Fm78apJ4WA7HLzPO84JomJfcyuyDg,12552
73
84
  infrahub/core/diff/conflicts_extractor.py,sha256=HysGoyNy9qMxfQ0Lh4AVZsRpHUBpezQNUa8cteVLb2k,9715
74
- infrahub/core/diff/coordinator.py,sha256=Gk9j9im6oQ_EEznw6XgJGARLOzUJwSA9vgO8GKKIaXw,25879
75
- infrahub/core/diff/data_check_synchronizer.py,sha256=g2Indp5Yw0FZon1pCzSopZQ5i_HLvCtlzcnIlYFb5X0,9138
85
+ infrahub/core/diff/coordinator.py,sha256=HDbz6dTIALTR6NzmGw1DnEb6o_VYDYbpZzP8TUqN7l4,27134
86
+ infrahub/core/diff/data_check_synchronizer.py,sha256=HcbYEIe-70MBiSR6P0AmAwgY9aFxYCJktxOiRcJaxj8,9241
76
87
  infrahub/core/diff/enricher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
88
  infrahub/core/diff/enricher/aggregated.py,sha256=-LnAeNKDo6mifjL3d3ylCg1A9dTZJBySngWPeF7DfrY,793
78
89
  infrahub/core/diff/enricher/cardinality_one.py,sha256=dKgoc0-9RwXG7N1zQc3S49eNZokvi5NzH7YFF3ag4RQ,6796
79
- infrahub/core/diff/enricher/hierarchy.py,sha256=kEodSDMgPWTNISehXgKKq_CfUZ9IFlngrdsJ9EosLhs,7934
90
+ infrahub/core/diff/enricher/hierarchy.py,sha256=07Klb-biUFIcMh0W1OZXkvDPtNcA_ITK22VDmexc8V8,8730
80
91
  infrahub/core/diff/enricher/interface.py,sha256=pmbWFPONRznDcAPMchVIRm0cTqMThkkwCby8XVLjGWU,265
81
92
  infrahub/core/diff/enricher/labels.py,sha256=GN0AwQRMLLlEN4Qt1_senZrkY0rUu2TbuiTppR_yI5g,10001
82
93
  infrahub/core/diff/enricher/path_identifier.py,sha256=NGCFDdv0Gr96avHkCdory7_4bzZxWTIwdBczJePx6Nw,3329
83
94
  infrahub/core/diff/enricher/summary_counts.py,sha256=A-lOe9C40qG5i9pLjMONoPvhbKIQYek6jzmJDHDFuxg,4840
84
95
  infrahub/core/diff/exceptions.py,sha256=R-i0mnzNwmHH9HQ1C7YAfL6tys-CbwQCIwTTmjfF_BM,546
85
- infrahub/core/diff/ipam_diff_parser.py,sha256=36DcP24bOpTT0bm3zKN6Fuyl_kaxl4t-DK8pSrOM99k,6580
96
+ infrahub/core/diff/ipam_diff_parser.py,sha256=HLpn93TiXX7UjchoJe7KNPa0jMX888UopXfr9tQwraw,6758
86
97
  infrahub/core/diff/merger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
- infrahub/core/diff/merger/merger.py,sha256=8XFpbUlx5GYcWq1AcwiHJaIx4Fpo0oNTysAYwXP06wk,3526
98
+ infrahub/core/diff/merger/merger.py,sha256=xf59lxtH_qy-cygFRpUiMbELjumCIO8mUsScvE1b5ag,4888
88
99
  infrahub/core/diff/merger/model.py,sha256=z1pjX0SXvZkqCqdcUKae73v6eEBrjUNotnkx0noe2wc,742
89
- infrahub/core/diff/merger/serializer.py,sha256=b6tSOkSkBTuxfKutHnSZGkC0_-PMitA9Im7f8RV4pDc,18410
100
+ infrahub/core/diff/merger/serializer.py,sha256=N5BJ5I2NkB5RtEMuhDfScM7v19PGCbuXCwts5mCfPuA,18473
90
101
  infrahub/core/diff/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
102
  infrahub/core/diff/model/diff.py,sha256=eS2TjZf9aWTZDvQ479t6C6iXXPtmBqulxA2jWxnEDuU,9501
92
- infrahub/core/diff/model/path.py,sha256=RObBch4BiSlJ4DRYidD7vTI90lca-rw6J0QjMawyNoY,30592
103
+ infrahub/core/diff/model/field_specifiers_map.py,sha256=59zsMRuYyb9OJEpH9BZQ9kf2DUiDOM3VtuDGvSK6dJQ,2632
104
+ infrahub/core/diff/model/path.py,sha256=xPDyDJni_LMoxcZjsge2XorpGZd1WHZztK0OkFj8e2g,30551
93
105
  infrahub/core/diff/models.py,sha256=wmOzW4xQ5YreDCr_i56YMFtxbM4-LRgZort49fGJ0BQ,441
94
- infrahub/core/diff/parent_node_adder.py,sha256=NWC47GxyRzM6tKxvrWTfmUs_yN3-1lh-LX25Bcxb9ps,2766
106
+ infrahub/core/diff/parent_node_adder.py,sha256=AFq2KJHGgUVem4WCg-9Qi9h6TTwt-JID1uGYGBrIZxQ,2840
95
107
  infrahub/core/diff/payload_builder.py,sha256=5R_QuPM5P_uQONmTDbtpIjhshs_OJCcXLnVYjWw-78Q,2094
96
108
  infrahub/core/diff/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
- infrahub/core/diff/query/all_conflicts.py,sha256=FYx3Ik0By454Vx4bStFmqa3nRI9GQycZyjqmugS01-4,3107
98
- infrahub/core/diff/query/artifact.py,sha256=lkxIwefAKFIZ_YuvbiU-SWJQzZMDsvZkw8sC62Rbg4k,8831
109
+ infrahub/core/diff/query/all_conflicts.py,sha256=gWLwkCR2AK0IJccnhcE8vkSHu5ugZfKTDhCoFi4yAJo,3058
110
+ infrahub/core/diff/query/artifact.py,sha256=wAlqqvcj1Vdw78tfPLvhvbiFrZLAXZ6vkkWn2VeilIs,8732
99
111
  infrahub/core/diff/query/delete_query.py,sha256=1SaVYjYbTrcWb_qUyuAsg90NwevufvWjLK6t2ri3SNs,860
100
- infrahub/core/diff/query/diff_get.py,sha256=1H4hqq4I_BO-NTMU9eIcAb3JkGRbnO49LFUdWwpie4c,7483
112
+ infrahub/core/diff/query/diff_get.py,sha256=SzlJAF5DNKcbavgVOxLKJ-o8EsuImTGE2uNPg9hcMq0,7438
101
113
  infrahub/core/diff/query/diff_summary.py,sha256=sypXfK4EO_BZBuohlv419AjgL5ZeRwMiwnI7IIlh0KE,3841
102
- infrahub/core/diff/query/field_specifiers.py,sha256=cFKMAlywS0hTK3TP2Zw8ebVw0C__1jgjutJp0r3M3vE,1540
103
- infrahub/core/diff/query/field_summary.py,sha256=WemzqgX94MQT50oLgaHDIVBvh6Tk2fdm7bT2L0YID48,3180
104
- infrahub/core/diff/query/filters.py,sha256=Rf2uLBJ_Ve64VC4p-sabGGxjKE9r64_9nJVYRo3M6cY,3644
114
+ infrahub/core/diff/query/drop_nodes.py,sha256=NP29dbW-z4s_rp_MtIwTl3FXElfCP6eqEpF_9r3Z3VA,1674
115
+ infrahub/core/diff/query/field_specifiers.py,sha256=XXtP2kwBxKnN7ALJN5DYuMyUl17ARnz4NJgeDzldm8w,1699
116
+ infrahub/core/diff/query/field_summary.py,sha256=-1p6xeyn0w6fQPrpOI6a9Id95wqtdxKUREulTH_yIec,3150
117
+ infrahub/core/diff/query/filters.py,sha256=McTtRNGg8fmnqTtNH-msfzH-8eKCBsM6-fitxTp5T8w,4324
105
118
  infrahub/core/diff/query/get_conflict_query.py,sha256=kpGZA4QZrXxv_vnoAP5oa9-347VzsNWUIBWcg7rg03U,892
106
119
  infrahub/core/diff/query/has_conflicts_query.py,sha256=kt0Z606vP2r1g7OqW2RrYj9LbiVkrzGfQ0AKCHx21XI,2547
107
- infrahub/core/diff/query/merge.py,sha256=RGPju7LltFehB9l0RZfiSQg5b2j3fKzoAXuGUvpQUmk,23417
120
+ infrahub/core/diff/query/merge.py,sha256=duFTAd81BcoztSEIhK4KP6vpbWvrefSV_Xb97vrQlaM,32149
108
121
  infrahub/core/diff/query/merge_tracking_id.py,sha256=VLGsKuOCIMYe0I-0r01YHF5iaLYIkfSCVQatHM-ybFA,833
109
122
  infrahub/core/diff/query/roots_metadata.py,sha256=FT-48amqoR2RS4CkfnnXGI7Z5uOL4hm7IdZiz3SFHRo,2182
110
- infrahub/core/diff/query/save.py,sha256=ZXapSA41HmBS2Oyx3spXPVqEcsaWcODnFZeeW4DoAAk,21665
111
- infrahub/core/diff/query/summary_counts_enricher.py,sha256=dSmbmbvLx8SE1DyAAw4mbLyW5BWLbMrYOnEchA2uBZc,10239
123
+ infrahub/core/diff/query/save.py,sha256=ZtL5nDma74zlCbaWCu1_33nifwRYOY9uDwnkcDUlXfI,21762
124
+ infrahub/core/diff/query/summary_counts_enricher.py,sha256=HuMeQfa2Ce0qFmGTSfUV-LncauEsBDhdDcs1QpZOETA,9957
112
125
  infrahub/core/diff/query/time_range_query.py,sha256=0pjsFBur8jcSU6su-iA4IMjnHw3RtNWI787wAPcyepI,3003
113
126
  infrahub/core/diff/query/update_conflict_query.py,sha256=kQkFazz88wnApr8UU_qb0ruzhmrhWiqhbErukSAMhLA,1212
114
- infrahub/core/diff/query_parser.py,sha256=p2CkVP_4r1YSFbB7j0j0ZTtsxb_YLSk58uY1OFhpcc0,37746
127
+ infrahub/core/diff/query_parser.py,sha256=6OWI_ynplysO6VH1vCfqiV_VmXvAfoa-bIRJ7heVTjY,37217
115
128
  infrahub/core/diff/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
- infrahub/core/diff/repository/deserializer.py,sha256=9CMYN17uQtDkp4w3PlCOnPIhE8R22wwOf7hJ-wcljC4,20661
117
- infrahub/core/diff/repository/repository.py,sha256=xgTzmd_fdc-n7iX8E83sd3fOz25O4P3CEDQFpRMZjpI,24946
118
- infrahub/core/diff/tasks.py,sha256=kHapEy7isn9zGsThYFauDkDnG-dIODanBaa-TaFD9EY,3278
129
+ infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_SS4EQnM9JoY5ptx78,21337
130
+ infrahub/core/diff/repository/repository.py,sha256=b54YvGDaFg3FEDNjOTS-WC3Rvtq4bdpDb1NGEKURnqg,25851
131
+ infrahub/core/diff/tasks.py,sha256=7_k-ZNcJZsiDp-xCZvCQfPJjg0xRxpaGTiVVNuRPfBI,3322
119
132
  infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
120
- infrahub/core/graph/__init__.py,sha256=vg81QN-hmdl7ziUJird8wna034Z7HFur47608DfljDY,19
133
+ infrahub/core/graph/__init__.py,sha256=Oqh1AEiVhTvWd71qOpyM6Qfxj59fjCI5OQE4mxZgDlM,19
121
134
  infrahub/core/graph/constraints.py,sha256=lmuzrKDFoeSKRiLtycB9PXi6zhMYghczKrPYvfWyy90,10396
122
135
  infrahub/core/graph/index.py,sha256=IHLP-zPRp7HJYLGHMRDRXQp8RC69ztP10Tr5NcL2j4Y,1736
123
136
  infrahub/core/graph/schema.py,sha256=FmEPPb1XOFv3nnS_XJCuUqlp8HsStX5A2frHjlhoqvE,10105
@@ -133,13 +146,13 @@ infrahub/core/ipam/reconciler.py,sha256=48do6rx12G25gaKuOguSrVdUDXVpMr3t6ogU1hdP
133
146
  infrahub/core/ipam/size.py,sha256=Iu7cVvN9MkilyG_AGvYm3g3dSDesKRVdDh_AKH7yAqk,614
134
147
  infrahub/core/ipam/tasks.py,sha256=TUoP6WZjQkd7DdGLxKnBVVH4SxTHkH2xmJCU8nRWqH8,1483
135
148
  infrahub/core/ipam/utilization.py,sha256=d-zpXCaWsHgJxBLopCDd7y4sJYvHcIzzpYhbTMIgH74,6733
136
- infrahub/core/manager.py,sha256=G_5A2mYkRkxUnDGjdauVdrEX2ZX5HPaHbxEHxDyOb6U,47467
149
+ infrahub/core/manager.py,sha256=NaUuSY7Veesa67epQRuQ2TJD0-ooUSnvNRIUZCntV3g,47576
137
150
  infrahub/core/merge.py,sha256=bZvToLKyphJlWMbQAzGuSHcrG2DfeqL69KSfqb1wWdc,10430
138
151
  infrahub/core/migrations/__init__.py,sha256=syPb3-Irf11dXCHgbT0UdmTnEBbpf4wXJ3m8ADYXDpk,1175
139
- infrahub/core/migrations/graph/__init__.py,sha256=CB4j35V5VRpJxnSJN_HOYzUv_cPMVCHwpFGYjWjhoaA,2608
152
+ infrahub/core/migrations/graph/__init__.py,sha256=510-WYc9fi_DG2H1MgXXcs57QuKDmRyf26Sf87f6qRI,2679
140
153
  infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
141
154
  infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
142
- infrahub/core/migrations/graph/m003_relationship_parent_optional.py,sha256=fRMmcOmBdHgOEjlf-5TaWsZ1Rzs6op1s75-r_jE_tZ0,2345
155
+ infrahub/core/migrations/graph/m003_relationship_parent_optional.py,sha256=Aya-s98XfE9C7YluOwEjilwgnjaBnZxp27w_Xdv_NmU,2330
143
156
  infrahub/core/migrations/graph/m004_add_attr_documentation.py,sha256=rxCVzE1ATMgLbXX9q-ldBiQJfK6ear5HoBwhykJIIRE,1743
144
157
  infrahub/core/migrations/graph/m005_add_rel_read_only.py,sha256=BXuuaM6In_hSJSFc586R54w5S2CI62tEQaXuoPzstpE,1344
145
158
  infrahub/core/migrations/graph/m006_add_rel_on_delete.py,sha256=Z6C72p786VaADYKD5ez8DD38avTHDxx8RNjbIy9Uc7g,1344
@@ -149,44 +162,47 @@ infrahub/core/migrations/graph/m009_add_generate_profile_attr.py,sha256=7FfjKyVY
149
162
  infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py,sha256=M4Orq480PzwBEz85QZqdBh-1arJdIwXNwnPA6cWy5Yg,1366
150
163
  infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py,sha256=TYQ1jXNucLIBbqLS35nUb_72OmMspXexSSW83Ax0oEw,1980
151
164
  infrahub/core/migrations/graph/m012_convert_account_generic.py,sha256=XvOKS0CSJSOdXQfan7N_Nrak6CB75r9xyT5rErUb61w,10998
152
- infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=-3tPM6RDPFlx0YFEohPTKUjvPsCNK-Q171PFCVmb5d4,12818
165
+ infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=5yhDZF6eRtwQpRH-_poQhIkw3qVzYGRPh6YPi9sw73Y,12788
153
166
  infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=Amds1gl8YtNIekU0tSXpHzdfk8UFqChC2LOLfnQ1YTM,1441
154
167
  infrahub/core/migrations/graph/m015_diff_format_update.py,sha256=DETKst0UNXmuE0aQJep1SJxukajZSK8avF9Z-c0W4ME,1267
155
168
  infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py,sha256=hcnJN3dOoDfbKcEzlRPew2XbJ-hqsEsjkDSGEnjwbFs,1275
156
169
  infrahub/core/migrations/graph/m017_add_core_profile.py,sha256=Z_--D73C8aUtmZPh1okxhY3ipf66vsLcvuIi6LphDTo,1361
157
170
  infrahub/core/migrations/graph/m018_uniqueness_nulls.py,sha256=uo_le3UmKw-BmLZa9OgxGfpVtKHoe7SxFj-eZNvFDWg,4677
158
- infrahub/core/migrations/graph/m019_restore_rels_to_time.py,sha256=bDV-HcttkI9spZINMeJmooACgcque7nvDACDitLRhbk,11782
159
- infrahub/core/migrations/graph/m020_duplicate_edges.py,sha256=I5lEO3dz-5Yi8vMTu6xGqkejaHUEPe0GmEVd8A8_gQ4,6770
160
- infrahub/core/migrations/graph/m021_missing_hierarchy_merge.py,sha256=5SMcIoZITEUrmW20PTpp3fm5jU548xoRhviTJoUz5NI,1638
171
+ infrahub/core/migrations/graph/m019_restore_rels_to_time.py,sha256=jsSrUWHxvvfJfS9XY8DjCW4RGsLIMyh_rxXEIBYUYJs,11617
172
+ infrahub/core/migrations/graph/m020_duplicate_edges.py,sha256=zzz7CLPynCUvfyXhUPD1RzzXUSOJhga_7vsHSoRDdPE,6749
173
+ infrahub/core/migrations/graph/m021_missing_hierarchy_merge.py,sha256=sd3its0zG2c8b36wIyhmcFUlwrIX34SyTegJsRQ-Wk4,1623
161
174
  infrahub/core/migrations/graph/m022_add_generate_template_attr.py,sha256=CmSxcXoWdjNXk4UxbUUeR7X49qiyNIIJuvigV9pOqNA,1748
162
175
  infrahub/core/migrations/graph/m023_deduplicate_cardinality_one_relationships.py,sha256=tW-su33h0K1zZk6GsOxqZcqpAsTNCmKo7kN88Te7jAA,3930
163
- infrahub/core/migrations/graph/m024_missing_hierarchy_backfill.py,sha256=NQm51OmkS4D6gCczo4OB1RlOtIU1SaV3qusu1kEF4_k,2502
176
+ infrahub/core/migrations/graph/m024_missing_hierarchy_backfill.py,sha256=_Ex13D1JYCSLcX_eXNgx_etcQXdqbxdgQ-6z7CpJKns,2487
164
177
  infrahub/core/migrations/graph/m025_uniqueness_nulls.py,sha256=n_g09PDLs1yo3dMYL00HH2VtmYkjV1sVnxFL0KL4hOg,863
165
178
  infrahub/core/migrations/graph/m026_0000_prefix_fix.py,sha256=7sP6nQZrqgzFyRUHKf5fKSX2LrzKEAAsiDsRSu9noJM,1944
179
+ infrahub/core/migrations/graph/m027_delete_isolated_nodes.py,sha256=aAfDUdhsR05CpehVeyLWQ1tRstgrF0HY2V5V6X5ALxM,1589
180
+ infrahub/core/migrations/graph/m028_delete_diffs.py,sha256=PwesD95KTTJsNbMX3NK6O_rGLR7hB-GEi7JIaXheiuQ,1397
166
181
  infrahub/core/migrations/query/__init__.py,sha256=JoWOUWlV6IzwxWxObsfCnAAKUOHJkE7dZlOsfB64ZEo,876
167
- infrahub/core/migrations/query/attribute_add.py,sha256=zvOwd9afCtfBpR-rEWePEAnbpoeQorzkcSmD4t8myYA,3510
168
- infrahub/core/migrations/query/attribute_rename.py,sha256=-p3AInP1dWRO-v-i8MSajDeK5_2LcJwYr2jqLQ_vbgs,6971
169
- infrahub/core/migrations/query/delete_element_in_schema.py,sha256=F5m_AM_DGprRClKo_QnkYm49xZVvw_zCDIdNO0oM_QU,7051
170
- infrahub/core/migrations/query/node_duplicate.py,sha256=EbS4rvA5YDiX5uguXjBRrArEGnYGKK-6M3yPvrs4PWw,8232
171
- infrahub/core/migrations/query/relationship_duplicate.py,sha256=thNA58vv0OBEpYB2S2Y9urfMLtoRi3UKCc_G04KcH_8,6993
182
+ infrahub/core/migrations/query/attribute_add.py,sha256=ILnEap5L5zYl6zq3EKq2f7GVKRpldgrGDJrtTYskFW4,3495
183
+ infrahub/core/migrations/query/attribute_rename.py,sha256=vHnil_BSPQbiv5Bzoz-dCaIITQzu4rHEyVY7tcWV7RY,6926
184
+ infrahub/core/migrations/query/delete_element_in_schema.py,sha256=QdIwXEUiLzSvGC90Zeq7sGCT7EczcIvsP-zpY84xuAs,7006
185
+ infrahub/core/migrations/query/node_duplicate.py,sha256=hfNVOD2QFSJjkIMIFYW_0tlunhf-N23CUzJzl0aSB6Y,8187
186
+ infrahub/core/migrations/query/relationship_duplicate.py,sha256=pQKaQVAlDIfVNzf9HtJUAWQBKHEAXf7HT0guLB9zO1M,6948
172
187
  infrahub/core/migrations/query/schema_attribute_update.py,sha256=fLclNEgoikO_ddlFEo1ts-dZwTXITA85kdJ00fXFxqo,3382
173
188
  infrahub/core/migrations/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
189
  infrahub/core/migrations/schema/attribute_name_update.py,sha256=gebaeQX1MLmOxupTPcCzLJdeEQlUzs3XIl7T15-RdXY,1595
175
190
  infrahub/core/migrations/schema/models.py,sha256=F1yp0GM-HutGdzhE0uPFq9JCTH9iHM3V4iDm2e2c4YU,1357
176
191
  infrahub/core/migrations/schema/node_attribute_add.py,sha256=4_g1W1wqfN3MT9GSAHAUEAZiLeAmvbUp88vauexTzdk,1085
177
- infrahub/core/migrations/schema/node_attribute_remove.py,sha256=pWja69aFjxblOf8x2KWqJ4cEko-MR6ihA0jTq7OOunM,5350
192
+ infrahub/core/migrations/schema/node_attribute_remove.py,sha256=2ZqbU8uo-2fsNALs6BnQFFvfhl9EsD4Nhn1oI4JEyFA,5305
178
193
  infrahub/core/migrations/schema/node_kind_update.py,sha256=scVJz4FhiI2meIVSDTbc9Q6KfGksMDLMwnuxsaZX1aU,1454
179
- infrahub/core/migrations/schema/node_remove.py,sha256=uQZ6VwDyB2SkcICyvJIjy7H4LG5OiYImh-DvalzJc5k,6858
194
+ infrahub/core/migrations/schema/node_remove.py,sha256=sdvDZawiNtVI6AH8XvpU_1nzeojAdYnQorfgbGtX0nQ,6813
180
195
  infrahub/core/migrations/schema/placeholder_dummy.py,sha256=3T3dBwC_ZyehOJr2KRKFD6CXaq8QIjVk0N-nWAMvFYw,308
181
196
  infrahub/core/migrations/schema/tasks.py,sha256=x6c_5N0pcQ_lTH5Vaqg2_MwlQ08I35BdX-8NhRDozBE,4165
182
197
  infrahub/core/migrations/shared.py,sha256=e7HEBijWhG46UN8ODjSmxvGeK8KAQ3Twnj2q1dvb2m0,6983
183
- infrahub/core/models.py,sha256=43iDtUwlsJ5G_F8IP4XoxLeoilfgjudhN3ZfS7esyh8,24840
184
- infrahub/core/node/__init__.py,sha256=y9-9QIenn6MtY7MdOMz72hUSWueAx6KJ6507pelgeyw,36770
198
+ infrahub/core/models.py,sha256=aqsqO2cP0MndeX6KZk4NEBmeIy6dE7Ob9UqsmjTIAtA,26149
199
+ infrahub/core/node/__init__.py,sha256=ptlkhYIRircSLqNEgwF9LxkpijIiYs1b1ej4iWL-zBM,37044
185
200
  infrahub/core/node/base.py,sha256=5HfcA2d3GPjEDqJAEHGF_eHh6RV3-QlNpAsTr499ZmI,2578
186
201
  infrahub/core/node/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
202
  infrahub/core/node/constraints/attribute_uniqueness.py,sha256=9MThTmuqZ7RgK71ZZARlw1k1x3ARn1U67g2_Gatd6rE,2099
188
203
  infrahub/core/node/constraints/grouped_uniqueness.py,sha256=GQ1-l4ZoZR6FoklHAdqCaNwX3TmW6qrvKYJEVtdPOfc,12056
189
204
  infrahub/core/node/constraints/interface.py,sha256=fwB32pRLxteQyKRArqekQ0RXlrDkyzp7Vmq03vSpUEo,291
205
+ infrahub/core/node/create.py,sha256=1mAFaMLqRmuONIwL549JQLFbOpEbP3rBQEb1D2VArcc,7752
190
206
  infrahub/core/node/delete_validator.py,sha256=mj_HQXkTeP_A3po65-R5bCJnDM9CmFFmcUQIxwPlofc,10559
191
207
  infrahub/core/node/ipam.py,sha256=NWb3TUlVQOGAzq1VvDwISLh61HML0jnalsJ7QojqGwQ,2669
192
208
  infrahub/core/node/permissions.py,sha256=uQzQ62IHcSly6fzPre0nQzlrkCIKzH4HyQkODKB3ZWM,2207
@@ -197,19 +213,19 @@ infrahub/core/node/resource_manager/number_pool.py,sha256=6mczrHTNd8jbXoW8Q6xHpB
197
213
  infrahub/core/node/standard.py,sha256=Niyc7mNxEGn6K7a1MXHkiLJhyTNR3uvTWLLbHvm6-Bo,7113
198
214
  infrahub/core/path.py,sha256=qHoC5cJwb3nwh-kUiuWqrCgkN2Dleatygn3KNid70sg,5844
199
215
  infrahub/core/property.py,sha256=rwsqeaIvCMkHfJYl4WfsNPAS7KS0POo5rAN7vAprXGA,5102
200
- infrahub/core/protocols.py,sha256=VvKNvfJxoQiaTF26Jam_6Yi_1GsGzGtuoZrFN5rxevA,11001
201
- infrahub/core/protocols_base.py,sha256=IqX1C82C4skCJrNiVLSYCIwIviPfp2sP7bOS6rLxhTk,3296
202
- infrahub/core/query/__init__.py,sha256=ftH8xHCAo8DfdYEx3-CBPuU2xpGOc83_ITNxZ4q4sNg,23055
216
+ infrahub/core/protocols.py,sha256=m0CRvwFRoUmye9MUFipHlcv5g5YV8YipSsCrx5EZueU,12064
217
+ infrahub/core/protocols_base.py,sha256=cEi6giHtEUmaD0JWfDfWHJhEv_6wjaBA3oJRJCbvc6Q,3411
218
+ infrahub/core/query/__init__.py,sha256=2qIMaODLwJ6pK6BUd5vODTlA15Aecf5I8_-J44UlCso,23089
203
219
  infrahub/core/query/attribute.py,sha256=DzwbElgTaZs6-nBYGmnDpBr9n0lmUPK3p7eyI30Snh8,11783
204
- infrahub/core/query/branch.py,sha256=5U0YRAcJUnWYwJWRJVhUG0_VRa18_NtDhp02VLKotM0,4641
220
+ infrahub/core/query/branch.py,sha256=Fqycgk8kzhmc1H_-gfiw3c-ZjNjAHw64XU7OQUkhDi0,4976
205
221
  infrahub/core/query/delete.py,sha256=_PL97nz-ybF0JqDSYlTPhIa4oCxwPiFerwd8Wjw-x-8,1918
206
- infrahub/core/query/diff.py,sha256=-hMyXsKfsBmxmSnboF-hN8IYa0aTPXJRUocMtOyyRs4,31987
207
- infrahub/core/query/ipam.py,sha256=66snB2ANAUcGk-Ke88Y1CIoXO7CCBOsOx8JZTFXnPfA,28384
208
- infrahub/core/query/node.py,sha256=GCR9BhMZFReqDKoAcJSYVZbEyCbxZCp1xsyqS-eXtGg,64069
209
- infrahub/core/query/relationship.py,sha256=b6_kfwzttfVHJ0_Ej3dRUg62cWs3wwZvp-YLlSubnQE,42567
210
- infrahub/core/query/resource_manager.py,sha256=rVksmyFSTGwiq0ZFp2I8kGuMI_F2__c9wE7LgYYeqow,12728
222
+ infrahub/core/query/diff.py,sha256=DOtPHIu45Yp8wvj8wp16me9E3AK7wVcVfzS2_LIZn2k,35952
223
+ infrahub/core/query/ipam.py,sha256=0glfVQmcKqMvNyK4GU_zRl2O9pjl7JBeavyE8VC-De4,28234
224
+ infrahub/core/query/node.py,sha256=WP2eJZLcbZdjtI_wkPwRe2B29I92RPZmwRD3mHRUIAQ,65138
225
+ infrahub/core/query/relationship.py,sha256=cMDpbCxtNqm9teY3Qt8vspq_Glaz1J1rbkyLBTSftXc,47573
226
+ infrahub/core/query/resource_manager.py,sha256=wT1sfY8A3E60jBVIB4UCE5lkOeNINnvE-XIbmZAJ8C8,12713
211
227
  infrahub/core/query/standard_node.py,sha256=stQfJqLaeqouaZtrlJhc9MsJUnW3tfheXrWHsM1vp7Q,4511
212
- infrahub/core/query/subquery.py,sha256=40MEDGSFPeXG6M4DpwfQfJMVqB_ET6WTMwhgueKV-AY,7586
228
+ infrahub/core/query/subquery.py,sha256=UE071w3wccdU_dtKLV-7mdeQ53DKXjPmNxDV0zd5Tpg,7588
213
229
  infrahub/core/query/task.py,sha256=tLgn8S_KaLYLuOB66D1YM155teHZIHNThkt2iUiKKD4,3137
214
230
  infrahub/core/query/task_log.py,sha256=2RdthOAQrmpKZU8uhV_dJCPqwdsSA_1CYSKpL_eZ_yk,1120
215
231
  infrahub/core/query/utils.py,sha256=t9LMvZWdmi10c3E0HAU_5m7x5zMHhYXsUjX7ZBl2RpU,1091
@@ -220,15 +236,16 @@ infrahub/core/relationship/constraints/count.py,sha256=4wSjiJtRd4fQ5qYNzGyWrt1WL
220
236
  infrahub/core/relationship/constraints/interface.py,sha256=96A_IRKAU6FCS3Nqiey5WmUnA4PO73nOlBk5DgUCjbc,296
221
237
  infrahub/core/relationship/constraints/peer_kind.py,sha256=WdKR8dOozVEaoU8cw-CP0oRq6Q_jcV3My3-47mgu1i0,2499
222
238
  infrahub/core/relationship/constraints/profiles_kind.py,sha256=iUNnPNfOU44LBDGGPqEH0goXL9nF5mSq236XlvLsnjc,2436
223
- infrahub/core/relationship/model.py,sha256=uLJ9HA5esUvwYO0MuTc1bb7mSBGYuD2EqTNK4fMHtjc,46948
239
+ infrahub/core/relationship/model.py,sha256=yRkJFVcn6abT2n82KdxsyTHDOoE24ATUT-Htu6Pize8,47008
224
240
  infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
225
- infrahub/core/schema/__init__.py,sha256=nzRFXRM2vlzS6HhRmEk2-HaZkOV6nOvLTPvt-ShMCvU,3978
226
- infrahub/core/schema/attribute_schema.py,sha256=e4HXS6Q3dU2V-RRvklmCTZKMSeYWkI6-ok7dyG23h5I,5260
227
- infrahub/core/schema/basenode_schema.py,sha256=4px_CJjhjT7m5eGVDXRT0VVLhJ9m3M85Z1_j1yPgZ64,22189
241
+ infrahub/core/schema/__init__.py,sha256=Q8kzfcX7zhpHThTBoQMMjcXG95DdHcfOWT4poS0QJEY,4035
242
+ infrahub/core/schema/attribute_parameters.py,sha256=Z_D38XUGXYReGfyG57rPVuEVcAyixv7Q0ZMHUT1KDsY,1175
243
+ infrahub/core/schema/attribute_schema.py,sha256=QonISceQmyqlXyqmNc2mtam09DmyWqNlKJEZZEZCHo4,8515
244
+ infrahub/core/schema/basenode_schema.py,sha256=PMAwig1Fu_pwp33d85UhvaLD_W0fwJ-xQKUDLpcJ7RY,23376
228
245
  infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
229
246
  infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
230
247
  infrahub/core/schema/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
- infrahub/core/schema/definitions/core/__init__.py,sha256=4-26SV_yzXYgsgbn4DxiQQI6TN_BGfOuq8-RsnNr-_o,4640
248
+ infrahub/core/schema/definitions/core/__init__.py,sha256=4HrmwcjOIhujcZ1OKtBGKBZtEH0Y78QQM2QEfonV_Zk,5231
232
249
  infrahub/core/schema/definitions/core/account.py,sha256=5-yJJJRtAi1MyJZw88pyTqAklUPTsBzMa2LZkf4FtOs,5421
233
250
  infrahub/core/schema/definitions/core/artifact.py,sha256=6TX4zgK2j2vO7F0lCYLv6Bu7GTAKlD0P3rO7yuXX85o,3954
234
251
  infrahub/core/schema/definitions/core/builtin.py,sha256=eSGZXXV_caLm2WHvRsK6c88EfLjkMlm7VAZ-JVAaEPw,703
@@ -251,10 +268,10 @@ infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2
251
268
  infrahub/core/schema/definitions/core/transform.py,sha256=UB2TaBjabIiErivBR16srxq7fgYoKjmjZaVun8vxXvY,3061
252
269
  infrahub/core/schema/definitions/core/webhook.py,sha256=YHeFMdsQDoG804iO6beozkfzln5cZnXKAsjB0Twlqw0,4224
253
270
  infrahub/core/schema/definitions/deprecated.py,sha256=PUXfRupaxNT3R_a6eFnvAcvXKOZenVb7VnuLAskZfT0,829
254
- infrahub/core/schema/definitions/internal.py,sha256=O1kchtswTl9SO35ph3zKBWQ6WrbDuawiPse4QV_E3_w,32849
271
+ infrahub/core/schema/definitions/internal.py,sha256=h_IxxuO8ky-8u3zw1SNOIfxGnP1Aju6LY2suDWuJerc,33444
255
272
  infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
256
273
  infrahub/core/schema/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
- infrahub/core/schema/generated/attribute_schema.py,sha256=rSAlf5EM2JQzV3NB59OBi1wzJ6WLPINS9l5pxoR-2bo,4949
274
+ infrahub/core/schema/generated/attribute_schema.py,sha256=AXvU82_YPDGjx-toSCnNcwzGQt9d0AZYyCMjqfT_OXw,5430
258
275
  infrahub/core/schema/generated/base_node_schema.py,sha256=YR4FxbXd_K6Z0qim5oBQ4EsKSBJMf5DVCuoXZ8LnmMg,4428
259
276
  infrahub/core/schema/generated/genericnode_schema.py,sha256=FvfeYfld9YeKHOzyH6G3zFkZP_ETrWfvvOpggLT8waY,1059
260
277
  infrahub/core/schema/generated/node_schema.py,sha256=PMgbQX1PC5ixQsjOFw_bcEfa4txGNUI6BV6OkFDG3wQ,1631
@@ -264,7 +281,7 @@ infrahub/core/schema/manager.py,sha256=4lPjjtE_MtJ0acJdYAJEkuK4jap3NnTdxB5esEB71
264
281
  infrahub/core/schema/node_schema.py,sha256=ld_Wrqf-RsoEUVz_lKE0tcSf5n_oYZYtRI0lTqtd63o,6150
265
282
  infrahub/core/schema/profile_schema.py,sha256=cOPSOt5KLgQ0nbqrAN_o33hY_pUtrKmiwSbY_YpVolI,1092
266
283
  infrahub/core/schema/relationship_schema.py,sha256=lVbyQKMP2jPZZwZGK6DBvXdXfEQEsQGMbZ2WYxOZKTw,8261
267
- infrahub/core/schema/schema_branch.py,sha256=9ut8iS4nUCjY81lJiX0VVTNWEA4K6bfS4yWpQe9NSTA,97723
284
+ infrahub/core/schema/schema_branch.py,sha256=nCPJAyfIEQRAR6y_cbFEWRWWCCoPD_Jfu10B7cj8E3A,98472
268
285
  infrahub/core/schema/schema_branch_computed.py,sha256=14UUsQJDLMHkYhg7QMqeLiTF3PO8c8rGa90ul3F2ZZo,10629
269
286
  infrahub/core/schema/template_schema.py,sha256=O-PBS9IRM4JX6PxeoyZKwqZ0u0SdQ2zxWMc01PJ2_EA,1084
270
287
  infrahub/core/task/__init__.py,sha256=Ied1NvKGJUDmff27z_-yWW8ArenHxGvSvQTaQyx1iHs,128
@@ -273,18 +290,19 @@ infrahub/core/task/task_log.py,sha256=Ihn8G2uW8K3wYz42qRjcddCSlspjN67apb44uirqxq
273
290
  infrahub/core/task/user_task.py,sha256=bjHR2lZf4N8t_RFZQ5YUAUeHiTX2NwClkTZHvu2oImw,4619
274
291
  infrahub/core/timestamp.py,sha256=htKK3byVUk23PWQyfIOKK9OmN0HWjJC4xcaRTnLNkjw,1031
275
292
  infrahub/core/utils.py,sha256=SzOlfsV5Ebp6VeJXARDIm4C3UUNZsNlXerlQbLMappc,9146
276
- infrahub/core/validators/__init__.py,sha256=i65HNcstldO3Q9gw4mFjmPo06WRhe-of1CejoeDVH5s,2153
293
+ infrahub/core/validators/__init__.py,sha256=LnR5DzAruHRl2xzAv7UAW1uEgEgP0A_ZlJ3J0-3hJhM,2471
277
294
  infrahub/core/validators/aggregated_checker.py,sha256=KA23ewrwOz8EsezsvF8cY4U0js_d5YPbeqESjG5sWl0,4719
278
295
  infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
279
- infrahub/core/validators/attribute/choices.py,sha256=CfEUR5xWcbKpsDZpPgWZzfRfh9isLAJY3kNE9RVPGD0,4298
280
- infrahub/core/validators/attribute/enum.py,sha256=1lc1eGv_FauvtWuMtq8qCtfsd_StJbMJVof8WVpqfHM,4242
281
- infrahub/core/validators/attribute/kind.py,sha256=fgYo2ArfQ5m_qrJbqfcDtVhEek6yj2ZHJz67zIpuNC8,4475
282
- infrahub/core/validators/attribute/length.py,sha256=I_EyUwHJ7K_pq0zJnJdR_SE40qr1gFRGSZdut9051cY,4263
283
- infrahub/core/validators/attribute/optional.py,sha256=lYfN8aRlC2HJ9t4Dv68R7f_PLeVClMShGf7Hf428UgE,3924
284
- infrahub/core/validators/attribute/regex.py,sha256=XQ8_Y5HwMWS4M25ECb5r308S7uTrrlfFTEePnBbomKA,4143
285
- infrahub/core/validators/attribute/unique.py,sha256=IhKlXTtKMQeplC-mQJJ_q9iJLTVMfxB3gyDXiYB20pM,5189
296
+ infrahub/core/validators/attribute/choices.py,sha256=jDeG2ho4WHIGhqZAHsdF13VHMCZuRj48oAvQ-g_o0nM,4283
297
+ infrahub/core/validators/attribute/enum.py,sha256=EsuFUdMj0HlUKOIpwGFBHYBB64br6355pMA5bHPBDW4,4227
298
+ infrahub/core/validators/attribute/kind.py,sha256=DUaNo---nevlHAOmSA--qYXwLbonzSBvJHKFmSU1Thg,4460
299
+ infrahub/core/validators/attribute/length.py,sha256=lnJJmW3oUqae_Eo8rZ5DHengz2rabtognhWQP7Akfk8,4592
300
+ infrahub/core/validators/attribute/optional.py,sha256=yC6K131trJOIa2D72Yiy6QSjNq80GdQteldyjTJiQOk,3909
301
+ infrahub/core/validators/attribute/regex.py,sha256=tYGK_NoR0lhhXjYh77AlzeDRQCrCl-8L8YApxaYEN9A,4267
302
+ infrahub/core/validators/attribute/unique.py,sha256=yPuh0tug8oXNNgrb7DN8sxkHHb5TlXHkMbYK_wz8zX8,5142
286
303
  infrahub/core/validators/checks_runner.py,sha256=FmOJDo1k4aYPXq6eZPqQc07KlohCDXVQkp4mypl5x_c,2448
287
- infrahub/core/validators/determiner.py,sha256=H17BP-3Nh9n4DYULIOpA7sT4H9LIH3PJLFMXX_MCCGI,7572
304
+ infrahub/core/validators/determiner.py,sha256=SY6Zvjp3cIrsypUi95sYPTqNJHR6HPfUv6lyY8DaqR8,8323
305
+ infrahub/core/validators/enum.py,sha256=6qtuGDUFcS3WZ_fGGo6UAb-uUmEa7TL6YXpjQ1PPsZw,311
288
306
  infrahub/core/validators/interface.py,sha256=OqSq8myM73Hik6pzZFVC42-_PHg4qwn2xJLd_AhYU1w,560
289
307
  infrahub/core/validators/model.py,sha256=QtnEt3FBcsPk0cSROgsj93Zr20ZMI-yRXQOa-vEwpTw,1636
290
308
  infrahub/core/validators/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -293,22 +311,22 @@ infrahub/core/validators/models/violation.py,sha256=HroSoltjf_F3XKTpgSC2b8Sb4dQR
293
311
  infrahub/core/validators/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
294
312
  infrahub/core/validators/node/attribute.py,sha256=TIvmDpJawp144tV99SJ73GVcFCn286B2QwDwok5TDVo,1747
295
313
  infrahub/core/validators/node/generate_profile.py,sha256=GUO-7Kb2G6Ec9-DFQ4Xr1cGRlvp30g07KB_JfQIl6fA,3151
296
- infrahub/core/validators/node/hierarchy.py,sha256=48q9ZhLtm7PCEj3Wo-B5HaQdICB6bMLvJHN421qmVIQ,7449
314
+ infrahub/core/validators/node/hierarchy.py,sha256=zTpNo8gTnoFFpkC8kMzud8ZLJwP0UyvzBDXNQCZ8SEU,7404
297
315
  infrahub/core/validators/node/inherit_from.py,sha256=gRgZEEG59UHzGOztHUqYD6eyLYHGV7wmz35njt2vKLY,3156
298
316
  infrahub/core/validators/node/relationship.py,sha256=OFBnc9NZEzK_fICo9yRtgJwRoQUghz3Ba-u3IxyjZ1c,1698
299
- infrahub/core/validators/query.py,sha256=VienmrocCrsBb5gupCD-T9uY9Gas_WspCYDbgb0Kf6M,1919
317
+ infrahub/core/validators/query.py,sha256=0PCDoYczx6mCthnQH3datjNIm-GKxqS24JkxpzNReus,1856
300
318
  infrahub/core/validators/relationship/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
- infrahub/core/validators/relationship/count.py,sha256=097U8nv52Txnx5fgWNiIX56-LgY0DILNu33ndxh3Ozg,8742
302
- infrahub/core/validators/relationship/optional.py,sha256=FFAUjS9TT-IM7qO6YhMQWLcI9S-CwtBSpoD0AdWsPls,4369
303
- infrahub/core/validators/relationship/peer.py,sha256=pg6dzv_aBvu2DOqKUXuyPa2IsoW0TYQU-tR2NMOJmAw,5609
319
+ infrahub/core/validators/relationship/count.py,sha256=AjXLSx3LqG74rnpFXY0LBCahs5aFl3GWjyCC2DwcyGA,8598
320
+ infrahub/core/validators/relationship/optional.py,sha256=X1nGKt19RumNInZ0Ij-fEcq6-TrwrJcGOW4rrsQsdV8,4339
321
+ infrahub/core/validators/relationship/peer.py,sha256=zP-4GYG3YMlwPrPWzKkyHi-uYDmGpLg7mLql5alhikg,5463
304
322
  infrahub/core/validators/shared.py,sha256=dhCz2oTM5JxA3mpcQvN83KIKIv-VNPSiG0lh4ZiTAFw,1345
305
- infrahub/core/validators/tasks.py,sha256=6UkGxLo00UZm13_fIiDmOnuDT5r8M415AQTfEFZ4hsY,3471
323
+ infrahub/core/validators/tasks.py,sha256=2lnF1o5YfhST7n9DyFoCKYkiTaV1NzX5nVOlBJbeoPY,3485
306
324
  infrahub/core/validators/uniqueness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
325
  infrahub/core/validators/uniqueness/checker.py,sha256=RpiLpIjbdkwwjivry-vjEkVim6ZoC-t2H5Bal7ngASQ,10375
308
326
  infrahub/core/validators/uniqueness/index.py,sha256=Jw1o-UVinQquNduZ5vCCzt8GUfIEdVzBo-1XyRti8F8,5068
309
327
  infrahub/core/validators/uniqueness/model.py,sha256=V2aejcuHPhgC5nTrS7xX0JFMzprVu90QAau-rUzruCY,5135
310
- infrahub/core/validators/uniqueness/query.py,sha256=gx2eInPf4GA4Q9U5oyyHYNPfCK-UxgW7704uk_XMM0o,11665
311
- infrahub/database/__init__.py,sha256=yDdkliw-BS7aj7akxvURIoaS_LCgBaz2vss_I9O0dH8,20544
328
+ infrahub/core/validators/uniqueness/query.py,sha256=5HRjt4WlQCIP9krlKqkBNMJGgavKik8-Z11Q1_YllLk,11650
329
+ infrahub/database/__init__.py,sha256=BPHMTIG-NOLN14Id4SQrcmEfzq0gRH8pqorL35757WQ,20459
312
330
  infrahub/database/index.py,sha256=ATLqw9Grqbq7haGGm14VSEPmcPniid--YATiffo4sA0,1676
313
331
  infrahub/database/memgraph.py,sha256=Fg3xHP9s0MiBBmMvcEmsJvuIUSq8U_XCS362HDE9d1s,1742
314
332
  infrahub/database/metrics.py,sha256=xU4OSKFbsxcw_yZlt_39PmGtF7S7yPbPuOIlSCu5sI0,739
@@ -375,7 +393,7 @@ infrahub/events/artifact_action.py,sha256=05R-idXAA_JMWi4KrICKyyLTfIVANHg5WZ9uxs
375
393
  infrahub/events/branch_action.py,sha256=73j9oWwSLg65WAjpq_d2QcOKfcy8Y9kAjP8A2YrOOIM,4692
376
394
  infrahub/events/constants.py,sha256=B6sv4eWA_A0I6IKjVG6A4sn0xdV-rHSztlTwoe2kphY,29
377
395
  infrahub/events/generator.py,sha256=reEO-TefCvt5E9mayLXQJXfsKFc7sSIYg4P5g63kAsU,2716
378
- infrahub/events/group_action.py,sha256=-svK6o9gZcoq_wjW_5WsUqX2G7vbahViTEN54y6FxXA,3893
396
+ infrahub/events/group_action.py,sha256=UWbvoCuk1gvDN5osIvYgs6UZmD8Xqfv2Iro5SIoNQ0Q,3960
379
397
  infrahub/events/models.py,sha256=IbYAeaL-wLFhv0WyTnh7EM0wSuRm1gnMl7ewvtzchm4,7244
380
398
  infrahub/events/node_action.py,sha256=UagMAcK9gfCJYCnkGEAPuVHLpFzNvlqW1glXcKSn8dk,7093
381
399
  infrahub/events/repository_action.py,sha256=5x0boObzGipVb_QGQfNOXBrtENs-SNAjruttBzG4HZg,919
@@ -400,11 +418,11 @@ infrahub/git_credential/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
400
418
  infrahub/git_credential/askpass.py,sha256=BL7e4Xkx5la7XFk-GQR6MXxV5B29Mzb5ZnVnljd7Xpw,1513
401
419
  infrahub/git_credential/helper.py,sha256=cwSMKRTgqrqIBM66jEOtlj4MMLf647KJWmtnnVxFtTY,2337
402
420
  infrahub/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
403
- infrahub/graphql/analyzer.py,sha256=LNdNbgCKWc50rwO3VrmbchRgYy6GvSDcRFdZXXmM_pI,26446
421
+ infrahub/graphql/analyzer.py,sha256=TAWo4AWMr33MFjK3YcYBxXSjdwRHxU2HzpIuY9tTHqU,30516
404
422
  infrahub/graphql/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
423
  infrahub/graphql/api/dependencies.py,sha256=-NMUA_N4tWcVpS6ksCebAyza-JTmHqyYY_QZizgBR1c,1690
406
424
  infrahub/graphql/api/endpoints.py,sha256=wH9eO3CFT-eoSe1Y32BhU9mIf6smEnPeP3tAxZkdt4g,1510
407
- infrahub/graphql/app.py,sha256=hpOxYacCjq2E97zzhP4XJllkpUgN5vkf9Pe_X3LJnNs,20990
425
+ infrahub/graphql/app.py,sha256=4xKptosI6SXlBfQSNJHHGNrdCRAZQ2uMTpPPKY3_mzE,21004
408
426
  infrahub/graphql/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
427
  infrahub/graphql/auth/query_permission_checker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
410
428
  infrahub/graphql/auth/query_permission_checker/anonymous_checker.py,sha256=ibsmGyOelLJbN2Kfkmffv-5D79h7tRc1Fez5tauFY8w,1377
@@ -420,24 +438,26 @@ infrahub/graphql/directives.py,sha256=wyIkJFp7l0J4JqNl1Lqu7YfKXP7glrewlQFMDTUAPc
420
438
  infrahub/graphql/enums.py,sha256=9F0XWfjQpC__0YRccYG1T-3qL1V8_PmlRlVpU1-n7nQ,820
421
439
  infrahub/graphql/initialization.py,sha256=e97vYE7lQZm7OJxJrhKA6kdxKJ4QOcVbTpoNHq9fweM,4446
422
440
  infrahub/graphql/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
423
- infrahub/graphql/loaders/node.py,sha256=ciATamtiU1-yHrvqnScjYlLRJJX2lyxlaDZVIXlL-7E,2604
424
- infrahub/graphql/loaders/peers.py,sha256=fOdgaaPBtBiiLKg8Rws4zXvpyCzUhszgxhDAeXkzETA,2785
441
+ infrahub/graphql/loaders/node.py,sha256=p7qJxRpXSAddq2fcwJeaIRy-5ReSn2EUitQbDhlmdM4,2618
442
+ infrahub/graphql/loaders/peers.py,sha256=wsB-ZtaU-BlR99EvWUbf6_SFhFJYOspz5QaTln_MZ4Q,2799
425
443
  infrahub/graphql/loaders/shared.py,sha256=hUxLy8iVgfpEZiUMKNkUAeshPKKzEVSDMDsuaBbjJW4,389
426
- infrahub/graphql/manager.py,sha256=1q3HcaIcg82-t7dq0M3uIAihmVka-7w2KKsols5UMww,45222
444
+ infrahub/graphql/manager.py,sha256=GfYUnom84scYUrWoHnwvbZKuK4t5K-ik4js5kGHJRhw,45572
427
445
  infrahub/graphql/metrics.py,sha256=viq_M57mDYd4DDK7suUttf1FJTgzQ3U50yOuSw_Nd-s,2267
428
446
  infrahub/graphql/models.py,sha256=7kr3DSO_rujPocMIfPyZ5Hwy3Mpnu4ySDMAIE9G5Y7Y,147
429
447
  infrahub/graphql/mutations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
430
448
  infrahub/graphql/mutations/account.py,sha256=O3KktPQcTW-fcH0g9oMxIDxLTpcIlgVfgJFURmOvB1A,5821
449
+ infrahub/graphql/mutations/action.py,sha256=FYHbiyBu6vOKVgIrUiB1UdpFIxGZ-cR7oXVdgZWl0dc,6575
431
450
  infrahub/graphql/mutations/artifact_definition.py,sha256=OQWSjPl88X0EetGpMXl3TLCJBAfXbts3foxNJObjkX0,3427
432
451
  infrahub/graphql/mutations/attribute.py,sha256=a35MP8Pvy_42N5dkO3HKATgJDW6qy9ncDu5t8YI3AUE,2734
433
452
  infrahub/graphql/mutations/branch.py,sha256=ixL_B-IQOStt7GYfSl6uJi4NIluN7dEWd5xlvam-mTI,10693
434
453
  infrahub/graphql/mutations/computed_attribute.py,sha256=T3ir4izEe44zSk63kEXJgYpJki-5vbTj14ulLuklxzM,4666
454
+ infrahub/graphql/mutations/convert_object_type.py,sha256=VYkuZUFn-AhaC4asBz3M2Llz4VNivM9MKvrLS6iGZyA,2214
435
455
  infrahub/graphql/mutations/diff.py,sha256=UfEkgIeKsxr79U0_ih7mhl0986rFITM_GDXevsWBSqo,4776
436
456
  infrahub/graphql/mutations/diff_conflict.py,sha256=JngQfyKXCVlmtlqQ_VyabmrOEDOEKYsoWbyYSc9TT5c,3147
437
457
  infrahub/graphql/mutations/generator.py,sha256=Ulw4whZm8Gc8lJjwfUFoFSsR0cOUliFKl87Oca4B9O0,3579
438
458
  infrahub/graphql/mutations/graphql_query.py,sha256=mp_O2byChneCihUrEAFEiIAgJ1gW9WrgtwPetUQmkJw,3562
439
459
  infrahub/graphql/mutations/ipam.py,sha256=wIN8OcTNCHVy32YgatWZi2Of-snFYBd4wlxOAJvE-AY,15961
440
- infrahub/graphql/mutations/main.py,sha256=EgO0U8U0FmgwuTrDrKuafSOWjO7pNR5YZzYYZbQMfec,26611
460
+ infrahub/graphql/mutations/main.py,sha256=zS2LJGTt87VZDg-8KR3QZQ79sc06A5a0f65-jbgCvbI,19737
441
461
  infrahub/graphql/mutations/menu.py,sha256=u2UbOA-TFDRcZRGFkgYTmpGxN2IAUgOvJXd7SnsufyI,3708
442
462
  infrahub/graphql/mutations/models.py,sha256=ilkSLr8OxVO9v3Ra_uDyUTJT9qPOmdPMqQbuWIydJMo,264
443
463
  infrahub/graphql/mutations/node_getter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -445,7 +465,7 @@ infrahub/graphql/mutations/node_getter/by_default_filter.py,sha256=_owbYHXWqJ6x4
445
465
  infrahub/graphql/mutations/node_getter/by_hfid.py,sha256=txpj4xPeL3eYOB9lRiHEFxxcRf6bb6lyIJnhVCHr3x8,3120
446
466
  infrahub/graphql/mutations/node_getter/by_id.py,sha256=azERy5XBUe4fYf4t1rhKEn64MlGfm_zH4k-tJU6W69s,856
447
467
  infrahub/graphql/mutations/node_getter/interface.py,sha256=3MVTz_3EQnI7REp-ytQvgJuEgWUmrmnRIqKpP8WHCyY,419
448
- infrahub/graphql/mutations/proposed_change.py,sha256=TyZF3adwbB517iVoOL5HC8ifGxddlcUciHxqJ9k55T0,10117
468
+ infrahub/graphql/mutations/proposed_change.py,sha256=4y9YTE6f9Rqk_TC2K_uued1bECthE8DmrRm1wfxXzmM,10374
449
469
  infrahub/graphql/mutations/relationship.py,sha256=b-zi8O0JZo52zVoGabIrWvIFh64PbhHzjF9klZ7p8ac,20139
450
470
  infrahub/graphql/mutations/repository.py,sha256=Whrt1uYWt7Ro6omJYN8zc3D-poZ6bOBrpBHIG4odAmo,11316
451
471
  infrahub/graphql/mutations/resource_manager.py,sha256=Nykdo4pIJ9BOossg24-dw_nU71qelYki896NIJk5O5I,8924
@@ -457,27 +477,28 @@ infrahub/graphql/permissions.py,sha256=ADPyCSZcli0PLgGrtO-EsEJjRuvlk9orYhJO06IE_
457
477
  infrahub/graphql/queries/__init__.py,sha256=LGmI88POb8a4fyjSuBEkOkCIYpU2FZEwOkxWuretmHc,789
458
478
  infrahub/graphql/queries/account.py,sha256=VB3HtLXf8s7VJxoA4G0ISBvn9hkQ9oTavKfRwTEju8A,5457
459
479
  infrahub/graphql/queries/branch.py,sha256=hEZF8xJHyXUOQOkWrfjbfrVhIrK70vKMeBGaLLnHQGY,792
480
+ infrahub/graphql/queries/convert_object_type_mapping.py,sha256=Nh-JivDRYnY7xwetUHxuq33jhnnho9jQwj0UM-VpAlQ,1197
460
481
  infrahub/graphql/queries/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
461
- infrahub/graphql/queries/diff/tree.py,sha256=HVF0OXQCRuztk9ybicRDkcxyivTEL6c1Q7EZR5KWocg,22928
482
+ infrahub/graphql/queries/diff/tree.py,sha256=4XcHIMDtJLA6nDBzGNn2WR_HeY_7lrmIU38CdK_qBIc,23026
462
483
  infrahub/graphql/queries/event.py,sha256=9kHi37WmM4bwGgnIPaPLVOaXp124tn10v60kNx5C7aU,4204
463
484
  infrahub/graphql/queries/internal.py,sha256=pcGLpLrY1fC_HxHNs8NAFjr5FTFzcgRlS1F7b65gqfE,647
464
485
  infrahub/graphql/queries/ipam.py,sha256=peN--58IhLgS06O44AEthefEkaVDc7f38Sib3JyGKu4,4106
465
- infrahub/graphql/queries/relationship.py,sha256=zeejoyxG4DD5hxfBKEpuxqMCrS9fNRZPNA48pU3XhPk,2568
486
+ infrahub/graphql/queries/relationship.py,sha256=QaSqr42NHW5wCbgHiYTI9Bgo7Qov9I0-jO8xcj-RBlU,2582
466
487
  infrahub/graphql/queries/resource_manager.py,sha256=VqULXcLZBgkisQOkuFRP-YtgAdkRxvifpcDyY9dzrNQ,14932
467
488
  infrahub/graphql/queries/search.py,sha256=0_yp6yxPSy8TQoTmp6zpc3u0b1TRuGgUOiMTfZo6LqU,4958
468
489
  infrahub/graphql/queries/status.py,sha256=4GtTKOUBsVSHdPoWbGAka52V99iz39fsrgmWgm8HoIY,2116
469
490
  infrahub/graphql/queries/task.py,sha256=i9OnZxa2dlMJ9T2aQzacCmsIE3eDrKlG1HdCXs2p-DU,3553
470
491
  infrahub/graphql/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
471
- infrahub/graphql/resolvers/many_relationship.py,sha256=Tq63gVz45iKnTT6Uj0-rVFuj7m8jnLcJzddZZWVnFzQ,9707
472
- infrahub/graphql/resolvers/resolver.py,sha256=ERHNGpXEUsGI3LVFRC4tNsHDJV48MIbvY6UWqQBmZNA,11874
473
- infrahub/graphql/resolvers/single_relationship.py,sha256=ncxRrl48uo1DAFjtL2QIJZTsqWSs0cMchsolzvVA-Po,6948
474
- infrahub/graphql/schema.py,sha256=ekON1ic2MVHSMG_yrHJ9Zfclo2dpVOpZ3IWdpgv4G_g,3691
492
+ infrahub/graphql/resolvers/many_relationship.py,sha256=B9D0cXlVIFntp7tDeZsvMjq30dsJpVRMCdLbeK9sqdI,9763
493
+ infrahub/graphql/resolvers/resolver.py,sha256=CgCfeARqwp9khmqdyq5G0W9q1Xvr6XapnSdWr-IW404,11930
494
+ infrahub/graphql/resolvers/single_relationship.py,sha256=TODob8c54RJmtrDjel-KU9XUv-zncvdmvtYP2_AcjoU,6976
495
+ infrahub/graphql/schema.py,sha256=oMenIbYKYu7m8j5i36jtrctlsusbqvADtEjzfMCORqg,3943
475
496
  infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
476
497
  infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
477
- infrahub/graphql/subscription/graphql_query.py,sha256=gXCVYmS4z419umnIJbwm2bNjy7E0XtSlQRF0OCqbpOE,2238
498
+ infrahub/graphql/subscription/graphql_query.py,sha256=U9PwREMghxbuIoGWh3_rV33wKPzDyMILZ8_tuniwukg,2266
478
499
  infrahub/graphql/types/__init__.py,sha256=oP4DhYAteHkc8LiQsIRHE1q2jaksfc-VvAO1urkmI4k,1895
479
500
  infrahub/graphql/types/attribute.py,sha256=bc2q44q8j5DTNdwBMe0SgG7Rbk8si1h-8SyqGIa-Rn0,6594
480
- infrahub/graphql/types/branch.py,sha256=8iaE3Zyo0PMIRm0Hcgwdli09po1YbIUFJBpZaFGZWJE,1409
501
+ infrahub/graphql/types/branch.py,sha256=CUYvw02AovhfJVi14QQvFMytB2zBSQqC_zJqmp5kv1Q,1423
481
502
  infrahub/graphql/types/common.py,sha256=3I3p1bPOorwWgTqKbHqcDB7AvNG0JMdRyzIGxUrrREA,401
482
503
  infrahub/graphql/types/context.py,sha256=PrgEOGq0ERAsbFFNDA40WMlids72StbL2q88nGW46cQ,405
483
504
  infrahub/graphql/types/enums.py,sha256=Va-39ysZXciR8arQGqRZo9piKb5b0oufUl6uiyijwNc,383
@@ -501,38 +522,24 @@ infrahub/log.py,sha256=4FP80DGY5sk9R7CjcDpPiTfxuow-nfbhXWVpDByCVrw,2817
501
522
  infrahub/menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
502
523
  infrahub/menu/constants.py,sha256=z9aAxIBlAMXrjl3dXo0vZxBU0pcfh1FQOiqIussvpD0,195
503
524
  infrahub/menu/generator.py,sha256=xdS_rSFTymhqtoVuQoQalTp_z5g9hNhryowbt09Dl3Y,5240
504
- infrahub/menu/menu.py,sha256=ojv0eRJZWLzlBdTyChpEqgCi4WoV8GaMT4fZgWwakYU,12210
525
+ infrahub/menu/menu.py,sha256=qJXdE2WfxPNTRTYfGVCE09X5ZCWe6hj9x03CjlmBfeQ,13572
505
526
  infrahub/menu/models.py,sha256=qh0W-Lut6DtszRABx9Xa1QG1q7SYQsBcNT21QuUBFYM,9839
506
527
  infrahub/menu/repository.py,sha256=IQpEbQ1u9WiCl7cWCoElEVH_E9qhcLTaTsrf8BWmges,5044
507
528
  infrahub/menu/utils.py,sha256=tkTAeVCTUWgLNvL9QiPwJwys6os1Q92nhigHXxMwyQo,272
508
529
  infrahub/message_bus/__init__.py,sha256=MkDavdkUxCAJ_RCohO7cLBAzYTqftcXAI6hVj5FaoiE,3669
509
- infrahub/message_bus/messages/__init__.py,sha256=Cr8sU-SeidNzB1pnEMFQ-P_xY4_IH87GNmpYb1dR_-c,2488
510
- infrahub/message_bus/messages/check_generator_run.py,sha256=l-3YmXbjFHSKfw53gVTa7SO7AYftGL25gdF0QJhhp4A,1535
511
- infrahub/message_bus/messages/finalize_validator_execution.py,sha256=7Q6Qjjk2tVXaIE7j2IwSfcTzJpPw_h_fE5LsBRtoofk,815
530
+ infrahub/message_bus/messages/__init__.py,sha256=-KzcxeTbCrVK2O6DvXqXuh0MyX-iYkkEU-WfrQGpIQg,1763
512
531
  infrahub/message_bus/messages/git_file_get.py,sha256=YoLJzkpNOIInhfVdTUCPEA_xf5LUZ09BRXDTDy8ZiVE,967
513
532
  infrahub/message_bus/messages/git_repository_connectivity.py,sha256=O_x2EOXI9fhVQtz4nuQrRC3VB8FE6HOuAxcltImSF38,813
514
- infrahub/message_bus/messages/proposed_change/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
515
- infrahub/message_bus/messages/proposed_change/base_with_diff.py,sha256=XiIAT8q-RZ4HWKKG9mjw5yvot2HN3s_VFIWm4M1H5HE,882
516
- infrahub/message_bus/messages/proposed_change/request_proposedchange_refreshartifacts.py,sha256=voud50YbiqrTfFrVQOAHbSTUtjB26Xy1pFeb2NF5nsI,390
517
533
  infrahub/message_bus/messages/refresh_git_fetch.py,sha256=LlxUse_N6HdoCbFEfnTETx6MuZDi0sjWFTj_BztnYpI,719
518
534
  infrahub/message_bus/messages/refresh_registry_branches.py,sha256=_48LCqM_IWoRRbIDDTfls89kTr4E0wlXDzQdCIvSxfo,192
519
535
  infrahub/message_bus/messages/refresh_registry_rebasedbranch.py,sha256=ozCj3kmNL8jFIW0sTrG02eYYvHaLU7kI31dUd3B5EMQ,275
520
- infrahub/message_bus/messages/request_generatordefinition_check.py,sha256=-gkRdM91CRlzTWcEF_NTBd1zHuQQqmafVADT0RchFoI,1115
521
- infrahub/message_bus/messages/request_proposedchange_pipeline.py,sha256=ePuAw2qvSmFYV66Xq3gVMiLhBVerAxw9E-9iq3_Btq4,1089
522
536
  infrahub/message_bus/messages/send_echo_request.py,sha256=Z9agbdXj1N8LdKFLKJzNnw3artk3b8WwQ-eA_MO1eAw,575
523
- infrahub/message_bus/operations/__init__.py,sha256=AAi0Bd-wWlGONMuypGvZpqAsVoniLC6M_BUQ8qZ15Bk,2233
524
- infrahub/message_bus/operations/check/__init__.py,sha256=o8-DkZSNc3FQllWcvOK8nUqEknZ1Ef0WaQpxnqgEFz4,49
525
- infrahub/message_bus/operations/check/generator.py,sha256=YMDF7tjvUR6figkw2VXr3PB1L8F4CuF7J944lcbP4qw,6757
526
- infrahub/message_bus/operations/finalize/__init__.py,sha256=5wo4BS6O_54Srh2249jRYzuLhJ42GjMJ7nuYaAbMCfo,49
527
- infrahub/message_bus/operations/finalize/validator.py,sha256=6SvWxyr5FSr0bGiCRGAoMdfgVsdyJah8l4KUbjG7EYM,5537
537
+ infrahub/message_bus/operations/__init__.py,sha256=mCaQPnfCp8WeNjxMVHeKGHsF1E_oSNHd0VrPOuglQ-A,1833
528
538
  infrahub/message_bus/operations/git/__init__.py,sha256=0Fbz1AnU8lWKdX7PS_b0BvjiKOPFqTcUXImTRYe6NLM,65
529
539
  infrahub/message_bus/operations/git/file.py,sha256=uW1dXVCMrQNC5-DFrVJ6PvfU47CQ2CQJec-bOXoBkjc,1472
530
540
  infrahub/message_bus/operations/git/repository.py,sha256=eQ6csfEoCbyOTAgoA5mzHerW8-TlbrQaZQ4Htj6qZu8,2432
531
541
  infrahub/message_bus/operations/refresh/__init__.py,sha256=vBuvTL4zRRpOMXATmckQ3bx2GnNwhxicFECA8-8ZZXk,47
532
- infrahub/message_bus/operations/refresh/registry.py,sha256=AWyIVoh7DvwqD_ihPAa6zbPogUGBZcz8tzTJpySoiUY,1301
533
- infrahub/message_bus/operations/requests/__init__.py,sha256=7BWa2wc4XSNk13zySOEUdFfcaldSIZT6WXdR6eDxk-U,131
534
- infrahub/message_bus/operations/requests/generator_definition.py,sha256=AE2x0NiGoyqD5PYp7XmmjzD23SqNCTyzI8KwcTcVurg,6093
535
- infrahub/message_bus/operations/requests/proposed_change.py,sha256=fILCF3QnsU2c8UAhDyYBjXbfFvj0QF6xbF37A7lLUPM,23044
542
+ infrahub/message_bus/operations/refresh/registry.py,sha256=dfLLISZ8qxwxFbGD5CaNguTicZBmACPMa82q6lAVXsM,1315
536
543
  infrahub/message_bus/operations/send/__init__.py,sha256=ivuUTAknLiWfArR44SxA40l0UKVkdHjtDIx0mg06IcE,39
537
544
  infrahub/message_bus/operations/send/echo.py,sha256=m2z_ij7Bucl8u1E1rLAfL3fsrhKZhk_vNIvLqNErIEI,652
538
545
  infrahub/message_bus/types.py,sha256=INOsBhOsPnTSB_6SvMWw1BrnRJZyDgG2c601IjSidgs,4418
@@ -548,8 +555,8 @@ infrahub/patch/plan_reader.py,sha256=uqHNYVBBkpmVIGwaxl2tlMNJd2tPVedNZoSmFSjTdow
548
555
  infrahub/patch/plan_writer.py,sha256=x2u5Oe3ME3zXTdkz5hRnvp2EaQwt-r4LyuSATc2LkKs,4822
549
556
  infrahub/patch/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
550
557
  infrahub/patch/queries/base.py,sha256=wXtv4I-7l_u0kXJFbmFZZJ0_2_5yvuAJwmwiLqRq7AY,338
551
- infrahub/patch/queries/consolidate_duplicated_nodes.py,sha256=R4n6XmACm_wJPd44ZD26VApCavTYtS2QblRvSIeJkDM,3961
552
- infrahub/patch/queries/delete_duplicated_edges.py,sha256=Td5LeNFASt8JH49ufaCZFHT3G8AocvYSw-ZfndqwP1A,6302
558
+ infrahub/patch/queries/consolidate_duplicated_nodes.py,sha256=gbpoqypq67BPeJnoGiepSuQdSBgDfQJhsA_dldFi1aI,3940
559
+ infrahub/patch/queries/delete_duplicated_edges.py,sha256=sJ2-qMg1jcF-qutY-_pTB6TFjtZBilDxDqHVbwHWKxU,6251
553
560
  infrahub/patch/runner.py,sha256=ZB4aOqlG77hJNtDyQtIXmi-2WgM07WSEFtWV2NItIqk,12594
554
561
  infrahub/patch/vertex_adder.py,sha256=lhWELYWlHwkopGOECSHRfj1mb0-COheibsu95r2Hwzs,2796
555
562
  infrahub/patch/vertex_deleter.py,sha256=czdb8T30k_-WSbcZUVS2-DvaN3Dp4j9ss2lAz8KN0mo,1302
@@ -570,12 +577,12 @@ infrahub/prefect_server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
570
577
  infrahub/prefect_server/app.py,sha256=By2HwjILkt07JLQciAEOcObmrBelL1mf6Woyz0TtEI0,396
571
578
  infrahub/prefect_server/database.py,sha256=v-uti6O__lK51zG_ICq8Drj8j7XlrkRZNZouRK0y_4U,883
572
579
  infrahub/prefect_server/events.py,sha256=My0DSsjTENx7-L7_NxxKsBakoOElp95is4-yanS_SkI,869
573
- infrahub/prefect_server/models.py,sha256=J3xNH-Y5IE-4zBErdkHvJR-cmuaVojhyjn1Ia7A5uBk,1991
580
+ infrahub/prefect_server/models.py,sha256=InAW7UrC1oASB-EqgpXQtdWnLZJ-Q93ezGUdLJD7nis,1203
574
581
  infrahub/proposed_change/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
575
582
  infrahub/proposed_change/branch_diff.py,sha256=Oerw3cHo51XPKwBsAmpO0T470Fg9mkpWViHVY51hToY,2303
576
583
  infrahub/proposed_change/constants.py,sha256=w8fPxKWJM1DzeClRd7Vr53hxkzl2Bq-rnXWfE2y3Bz0,1296
577
- infrahub/proposed_change/models.py,sha256=fAXs7k9xI6vdq02RqKrorzWmkQdtZ7u-J1NQAi4hPcg,2208
578
- infrahub/proposed_change/tasks.py,sha256=KQanaLHRdCJVY4w7QWWGtVFj8xJJNbbsQN1npLo1dZA,28731
584
+ infrahub/proposed_change/models.py,sha256=ivWJmEAihprKmwgaBGDJ4Koq4ETciE5GfDp86KHDnns,5892
585
+ infrahub/proposed_change/tasks.py,sha256=-pLG-0ff6RlflzROWdhglPTtGKeBWCV7qhLte2xjaJ0,61873
579
586
  infrahub/pytest_plugin.py,sha256=u3t0WgLMo9XmuQYeb28mccQ3xbnyv2Fv173YWl1zBiM,6678
580
587
  infrahub/serve/__init__.py,sha256=cWzvEH-Zwr1nQsoNJO9q1pef5KLuSK3VQLOumlnsQxk,73
581
588
  infrahub/serve/gunicorn_config.py,sha256=BkClF6yjz-sIhZ-oDizXUmGSEE-FQSmy21JfVnRI5tA,102
@@ -604,7 +611,7 @@ infrahub/storage.py,sha256=bpK8m7GNlp5LHI0yXuFNZhhBVQpU7RZr7MeWCaAAPLk,1812
604
611
  infrahub/task_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
605
612
  infrahub/task_manager/constants.py,sha256=1t1BZRa8_y89gIDPNHzIbRKo63nHOP37-r5OvtHa56c,559
606
613
  infrahub/task_manager/event.py,sha256=Dx6LHRMsx1B1BFz9HIyPqhujAK2DR-JjRB7RJVAH3ik,11091
607
- infrahub/task_manager/models.py,sha256=98hoEqScfwQVc-Col_rZE5UISccYlb-1fgT3nKklZSk,8100
614
+ infrahub/task_manager/models.py,sha256=Fesn0oaWkYuzSWOtNM4mycIJfCtpdg_JaN9GNB5uX14,8184
608
615
  infrahub/task_manager/task.py,sha256=yKZuQ8p6Q8dWECTH9jOITQdQb1RQlyAU3IG-8-ZO5Hc,11004
609
616
  infrahub/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
610
617
  infrahub/tasks/artifact.py,sha256=AJTbD6hv2q0QIMkCvxUtC8L7n1-8Ka2nC5yo_rb7Rjo,1983
@@ -615,10 +622,10 @@ infrahub/tasks/recurring.py,sha256=RJO2zdzCU-38Kb81lmCUbFQOBhGui8qn2QizTV4vj9I,4
615
622
  infrahub/tasks/registry.py,sha256=o1ybJvkNOSpFBvqem6wkOrtxqm6nqnbDA7JcptP-aC8,3169
616
623
  infrahub/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
617
624
  infrahub/telemetry/constants.py,sha256=_5mJAZaT_wTCaF7Yzsd---Zn1N6GZkoP_954GK8K4-c,184
618
- infrahub/telemetry/database.py,sha256=0yqrfotO3lF-ij15v-tG1nxtoUJppXzHaKubN0Jw9CQ,3097
625
+ infrahub/telemetry/database.py,sha256=9UVPOxRionVF65jjo8slRIaNBOv-KMRzq7I-7fe3wZE,3111
619
626
  infrahub/telemetry/models.py,sha256=q3h_wSX0A2OZgDHo05TXTgcHrzDSxx8hSyqRKPGLvwc,1405
620
627
  infrahub/telemetry/task_manager.py,sha256=x7bUCQ2jXi93VWmrjKZHZTzR3JhD7r0OhhqK7ymCnAM,2864
621
- infrahub/telemetry/tasks.py,sha256=fqzDjgeluBuQY_3hO6BLxShQb59B6GzHu8GTg6LEcAk,4443
628
+ infrahub/telemetry/tasks.py,sha256=8-eB6lCUOKCmy5SWFD5GAEu0Mz0T41aQWmENwGQbSfA,4457
622
629
  infrahub/telemetry/utils.py,sha256=K-gmj4QilO3HXAqJRzUwVcpqdA9KcM4RYJPU_zUYpHA,308
623
630
  infrahub/trace.py,sha256=Hir9hMWx_6IKF_dhDnMxYjusJdy0ycjB5CHWge2wXNE,3759
624
631
  infrahub/transformations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -626,12 +633,12 @@ infrahub/transformations/constants.py,sha256=_cVDcd8m1HCyKf8k_pAwdoaPTGD7524reuJ
626
633
  infrahub/transformations/models.py,sha256=YuNLGcourz0ekBJyLnzuzLDfxkmmUVqGiabg69EI34w,1744
627
634
  infrahub/transformations/tasks.py,sha256=zgaZzlPbzGAfQdk1hqjZetLoQL7EuaTI7o_Ofg29IRU,1981
628
635
  infrahub/trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
629
- infrahub/trigger/catalogue.py,sha256=jnMs0i6MureKREyFvGop3eWIlcszSDE5UuayODTEDBc,499
636
+ infrahub/trigger/catalogue.py,sha256=G83V8X7reod0Lc9YOEPo0INGK6q2lIeNdqQY_V4qqoY,596
630
637
  infrahub/trigger/constants.py,sha256=u9_5A6gIUIrprzfEdwseYk2yTkwU0VPCjZTwL8b3T6s,22
631
- infrahub/trigger/models.py,sha256=FQ7VDu9l1GL-zDrRLz8yIlWZSc0ugI8k0kjjvB21VA8,3805
632
- infrahub/trigger/setup.py,sha256=cq3PgJ3VVNufKGX63RXUA-nkhAqjhGapZtPP5bzJuxY,3727
633
- infrahub/trigger/tasks.py,sha256=NAGzdR314AHuvU1Juznh53T87iidJgXybeO1bYHmCzY,1420
634
- infrahub/types.py,sha256=qKmmmL1UGCAJ2O2P9YES9uEvrr0uVXt9KSLtktg_hsU,11322
638
+ infrahub/trigger/models.py,sha256=Q_Lj0iP-9PrALRSKjJl2mYB_Ip_d_Pe9GUhm79g9oF0,4787
639
+ infrahub/trigger/setup.py,sha256=uPtuAQo_OgeqLqOeDeQXI0wQR8GBcm-dA_z-KnsgeuM,5213
640
+ infrahub/trigger/tasks.py,sha256=QrJEQDWYxfLwbN-urC-bzChdF3qHrNlzQNC8vh7dobc,1546
641
+ infrahub/types.py,sha256=ADUrDarvflVlX_LIVNDFfny5v6vxHxF5cFlPRPi9kEA,11328
635
642
  infrahub/utils.py,sha256=3p_bXmRGOTnXIMG9fZ9mFsKdBw2fU3VBFJT3YHrbvyw,2704
636
643
  infrahub/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
637
644
  infrahub/validators/events.py,sha256=FA6fxksQMq-vn6747NWsMfkFZ3dsYpgP8u7G3p5MwSI,1501
@@ -639,7 +646,7 @@ infrahub/validators/tasks.py,sha256=BlhBRBzNC5Ozop6aj2pHzZxGopxWcQbU-H3cHes_zs0,
639
646
  infrahub/visuals.py,sha256=N62G4oOOIYNFpvMjKq7uos-oZAZybGMp57uh5jsVX9w,627
640
647
  infrahub/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
641
648
  infrahub/webhook/gather.py,sha256=XNaIGiHDiMjjtSjsVbswOze7cLaL0MKJmvSbZBS-WT0,691
642
- infrahub/webhook/models.py,sha256=micGF9JT4qcstx0FNaL1ycQnRo8BlbCNDXr-tRoVFUg,10007
649
+ infrahub/webhook/models.py,sha256=c_6Ng8BeoyUDb4TZInVruB7e8Faq_QQ8-00IVcEBwJM,10031
643
650
  infrahub/webhook/tasks.py,sha256=kQz0BzOOKUGogHKN2X_tSKYk-7rpHMQ1FKjmGugzEc0,7235
644
651
  infrahub/webhook/triggers.py,sha256=v1dzFV4wX0GO2n5hft_qzp-oJOA2P_9Q2eTcSP-i0pk,1574
645
652
  infrahub/worker.py,sha256=JtTM-temURUbpEy-bkKJuTt-GKoiHFDrOe9SyVTIXEM,49
@@ -647,9 +654,9 @@ infrahub/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
647
654
  infrahub/workers/infrahub_async.py,sha256=NQ2HLmRFWW1_M9NZmmdkEctFCPgqGKFmweGlNkjdgyU,9207
648
655
  infrahub/workers/utils.py,sha256=m6FOKrYo53Aoj-JcEyQ7-J4Dc20R9JtHMDzTcqXiRpg,2407
649
656
  infrahub/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
650
- infrahub/workflows/catalogue.py,sha256=fn1oNCreKCGPsThZBPZfzOvvyuz5nivFcTpSfI7xd2c,14659
657
+ infrahub/workflows/catalogue.py,sha256=TgW9zFRGVDr--pefZJXB1bOwJK-8VpOKGXPUlIjXTWQ,17241
651
658
  infrahub/workflows/constants.py,sha256=7je2FF7tJH6x_ZNqHKZfQX91X7I5gmD8OECN3dE_eqI,651
652
- infrahub/workflows/initialization.py,sha256=BJjSt9uz7fuNr2aahGbLdy1RUKw8AjxKrZ81cJswbxY,3219
659
+ infrahub/workflows/initialization.py,sha256=ZrmqxuSgPqHgQf35DDrUPcWV7PZOrUk0HMmn9JfGlec,3213
653
660
  infrahub/workflows/models.py,sha256=uGBNla2xJqKnqARdq21vhXGHxM2ozDqioeBvT7zg3Jo,3439
654
661
  infrahub/workflows/utils.py,sha256=DhN_NbpaJ_-I4a8GGtKcTfYf8EEJSuRX7PaO06dis-w,2730
655
662
  infrahub_sdk/__init__.py,sha256=weZAa06Ar0NO5IOKLQICtCceHUCKQxbkBxHebqQGJ1o,401
@@ -738,7 +745,7 @@ infrahub_sdk/testing/repository.py,sha256=9s4MMaMljbJe97Ua4bJgc64giQ2UMC0bD5qIqY
738
745
  infrahub_sdk/testing/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
739
746
  infrahub_sdk/testing/schemas/animal.py,sha256=a1vydXPttoPvsGbSHY5H89AEoi7AWE2JiCGRBE9LJS8,7403
740
747
  infrahub_sdk/testing/schemas/car_person.py,sha256=1VwgJMJvVggsQyRdSqDjiLrPzysz8cXFSFzSghVSVms,8940
741
- infrahub_sdk/timestamp.py,sha256=hRJdqH_4jfaTkXdxQqBGXNErHqvXX-SuoeKpguOCFjk,6101
748
+ infrahub_sdk/timestamp.py,sha256=qKCZK27W-C13gihxAMDooKBbOqE0py08YysJMW_Vf6E,6111
742
749
  infrahub_sdk/topological_sort.py,sha256=RqIGYxHlqOUHvMSAxbq6658TYLaEIdrFP4wyK3Hva5w,2456
743
750
  infrahub_sdk/transfer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
744
751
  infrahub_sdk/transfer/constants.py,sha256=kdYkVWif8v4IiWbbff3Mn3JnPCXD2ONI3SLXQM17Ljw,56
@@ -757,18 +764,18 @@ infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
757
764
  infrahub_sdk/yaml.py,sha256=512OKgxAYPt4QLBFlucUB4GgwKJ09dzgC86pO57YFFw,5018
758
765
  infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
759
766
  infrahub_testcontainers/constants.py,sha256=mZ4hLvcf4rKk9wC7EId4MQxAY0sk4V99deB04N0J2bg,85
760
- infrahub_testcontainers/container.py,sha256=-NccmHKJw8rnGY4nSgqIJdGBrX8eObi9kq7q7mQz1zs,12308
761
- infrahub_testcontainers/docker-compose.test.yml,sha256=3rUOn2UB_n5z_XlYykO6c6j35OMgyvZXwVSFqlem54Y,8465
767
+ infrahub_testcontainers/container.py,sha256=V_xMdUfzOeHZWc2y7jP5VSwWt6L0jaB4aFvdQeV45LA,12256
768
+ infrahub_testcontainers/docker-compose.test.yml,sha256=N-bz6k7KvjVPAW-acRZ_IxWKIjnWnto_Mq9sOEMDkB8,8485
762
769
  infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTMFZJsnk,1305
763
- infrahub_testcontainers/helpers.py,sha256=zsvBOql5qM2OX1ybPcklqF-nzWYHkZI3Gk3KZhxWOtU,3578
770
+ infrahub_testcontainers/helpers.py,sha256=pVmNjrs42q1lI2klBL-qeaY_UXeZdvwlDQSKR3Tr1EA,3863
764
771
  infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
765
772
  infrahub_testcontainers/measurements.py,sha256=gR-uTasSIFCXrwvnNpIpfsQIopKftT7pBiarCgIShaQ,2214
766
773
  infrahub_testcontainers/models.py,sha256=ASYyvl7d_WQz_i7y8-3iab9hwwmCl3OCJavqVbe8nXU,954
767
- infrahub_testcontainers/performance_test.py,sha256=CZ0YeGqnc9RCEPPk5-jFh0b0zFz-DYweOBF-Lfo0bc8,6037
774
+ infrahub_testcontainers/performance_test.py,sha256=hvwiy6tc_lWniYqGkqfOXVGAmA_IV15VOZqbiD9ezno,6149
768
775
  infrahub_testcontainers/plugin.py,sha256=g24SMg4EAqVe2N8i9F66EV34cNqIdDU4mRP7OeOJO1w,5381
769
776
  infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
770
- infrahub_server-1.2.9rc0.dist-info/LICENSE.txt,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
771
- infrahub_server-1.2.9rc0.dist-info/METADATA,sha256=TIOicC4ngay7aqMkXrQgH8F2VbmFQhQlAVh4rRs7y8o,8192
772
- infrahub_server-1.2.9rc0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
773
- infrahub_server-1.2.9rc0.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
774
- infrahub_server-1.2.9rc0.dist-info/RECORD,,
777
+ infrahub_server-1.3.0a0.dist-info/LICENSE.txt,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
778
+ infrahub_server-1.3.0a0.dist-info/METADATA,sha256=-P5Of3JN73QD3E_j1weCxXCxbJvzRw55JQvyMLJn2NU,8195
779
+ infrahub_server-1.3.0a0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
780
+ infrahub_server-1.3.0a0.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
781
+ infrahub_server-1.3.0a0.dist-info/RECORD,,