infrahub-server 1.7.0b0__py3-none-any.whl → 1.7.0rc0__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 (112) hide show
  1. infrahub/api/exceptions.py +2 -2
  2. infrahub/cli/db.py +48 -22
  3. infrahub/core/account.py +12 -9
  4. infrahub/core/diff/branch_differ.py +1 -1
  5. infrahub/core/diff/conflict_transferer.py +1 -1
  6. infrahub/core/diff/data_check_synchronizer.py +1 -1
  7. infrahub/core/diff/enricher/cardinality_one.py +1 -1
  8. infrahub/core/diff/enricher/hierarchy.py +1 -1
  9. infrahub/core/diff/enricher/labels.py +1 -1
  10. infrahub/core/diff/merger/merger.py +1 -1
  11. infrahub/core/diff/repository/repository.py +3 -1
  12. infrahub/core/graph/constraints.py +1 -1
  13. infrahub/core/ipam/reconciler.py +8 -6
  14. infrahub/core/ipam/utilization.py +8 -15
  15. infrahub/core/manager.py +1 -26
  16. infrahub/core/merge.py +1 -1
  17. infrahub/core/migrations/graph/m012_convert_account_generic.py +12 -12
  18. infrahub/core/migrations/graph/m013_convert_git_password_credential.py +4 -4
  19. infrahub/core/migrations/graph/m041_deleted_dup_edges.py +1 -1
  20. infrahub/core/migrations/graph/m049_remove_is_visible_relationship.py +16 -1
  21. infrahub/core/migrations/query/__init__.py +2 -2
  22. infrahub/core/migrations/query/schema_attribute_update.py +1 -1
  23. infrahub/core/migrations/schema/attribute_name_update.py +1 -1
  24. infrahub/core/migrations/schema/attribute_supports_profile.py +2 -2
  25. infrahub/core/migrations/schema/node_attribute_add.py +1 -1
  26. infrahub/core/migrations/schema/node_attribute_remove.py +1 -1
  27. infrahub/core/migrations/schema/node_kind_update.py +1 -1
  28. infrahub/core/node/__init__.py +1 -1
  29. infrahub/core/node/base.py +9 -5
  30. infrahub/core/node/delete_validator.py +1 -1
  31. infrahub/core/order.py +30 -0
  32. infrahub/core/protocols.py +1 -0
  33. infrahub/core/protocols_base.py +4 -0
  34. infrahub/core/query/__init__.py +8 -5
  35. infrahub/core/query/attribute.py +3 -3
  36. infrahub/core/query/branch.py +1 -1
  37. infrahub/core/query/delete.py +1 -1
  38. infrahub/core/query/diff.py +3 -3
  39. infrahub/core/query/ipam.py +104 -43
  40. infrahub/core/query/node.py +454 -101
  41. infrahub/core/query/relationship.py +83 -26
  42. infrahub/core/query/resource_manager.py +107 -18
  43. infrahub/core/relationship/constraints/count.py +1 -1
  44. infrahub/core/relationship/constraints/peer_kind.py +1 -1
  45. infrahub/core/relationship/constraints/peer_parent.py +1 -1
  46. infrahub/core/relationship/constraints/peer_relatives.py +1 -1
  47. infrahub/core/relationship/constraints/profiles_kind.py +1 -1
  48. infrahub/core/relationship/constraints/profiles_removal.py +1 -1
  49. infrahub/core/schema/attribute_schema.py +0 -13
  50. infrahub/core/schema/basenode_schema.py +3 -0
  51. infrahub/core/schema/definitions/core/__init__.py +8 -2
  52. infrahub/core/schema/definitions/core/account.py +10 -10
  53. infrahub/core/schema/definitions/core/artifact.py +14 -8
  54. infrahub/core/schema/definitions/core/check.py +10 -4
  55. infrahub/core/schema/definitions/core/generator.py +26 -6
  56. infrahub/core/schema/definitions/core/graphql_query.py +1 -1
  57. infrahub/core/schema/definitions/core/group.py +9 -2
  58. infrahub/core/schema/definitions/core/ipam.py +80 -10
  59. infrahub/core/schema/definitions/core/menu.py +41 -7
  60. infrahub/core/schema/definitions/core/permission.py +16 -2
  61. infrahub/core/schema/definitions/core/profile.py +16 -2
  62. infrahub/core/schema/definitions/core/propose_change.py +24 -4
  63. infrahub/core/schema/definitions/core/propose_change_comment.py +23 -11
  64. infrahub/core/schema/definitions/core/propose_change_validator.py +50 -21
  65. infrahub/core/schema/definitions/core/repository.py +10 -0
  66. infrahub/core/schema/definitions/core/resource_pool.py +8 -1
  67. infrahub/core/schema/definitions/core/template.py +19 -2
  68. infrahub/core/schema/definitions/core/transform.py +11 -5
  69. infrahub/core/schema/definitions/core/webhook.py +27 -9
  70. infrahub/core/schema/schema_branch.py +68 -2
  71. infrahub/core/utils.py +3 -3
  72. infrahub/core/validators/aggregated_checker.py +1 -1
  73. infrahub/core/validators/attribute/choices.py +1 -1
  74. infrahub/core/validators/attribute/enum.py +1 -1
  75. infrahub/core/validators/attribute/kind.py +1 -1
  76. infrahub/core/validators/attribute/length.py +1 -1
  77. infrahub/core/validators/attribute/min_max.py +1 -1
  78. infrahub/core/validators/attribute/number_pool.py +1 -1
  79. infrahub/core/validators/attribute/optional.py +1 -1
  80. infrahub/core/validators/attribute/regex.py +1 -1
  81. infrahub/core/validators/node/attribute.py +1 -1
  82. infrahub/core/validators/node/relationship.py +1 -1
  83. infrahub/core/validators/relationship/peer.py +1 -1
  84. infrahub/database/__init__.py +1 -1
  85. infrahub/git/utils.py +1 -1
  86. infrahub/graphql/app.py +2 -2
  87. infrahub/graphql/field_extractor.py +1 -1
  88. infrahub/graphql/manager.py +9 -1
  89. infrahub/graphql/mutations/account.py +1 -1
  90. infrahub/graphql/order.py +14 -0
  91. infrahub/graphql/queries/diff/tree.py +5 -5
  92. infrahub/graphql/queries/resource_manager.py +25 -24
  93. infrahub/graphql/resolvers/ipam.py +3 -3
  94. infrahub/graphql/resolvers/resolver.py +44 -3
  95. infrahub/graphql/types/standard_node.py +8 -4
  96. infrahub/menu/repository.py +1 -1
  97. infrahub/patch/queries/base.py +1 -1
  98. infrahub/pools/number.py +1 -8
  99. infrahub/profiles/node_applier.py +1 -1
  100. infrahub/profiles/queries/get_profile_data.py +1 -1
  101. infrahub/proposed_change/action_checker.py +1 -1
  102. infrahub/services/__init__.py +1 -1
  103. infrahub/services/adapters/cache/nats.py +1 -1
  104. infrahub/webhook/gather.py +1 -1
  105. infrahub/webhook/tasks.py +22 -6
  106. {infrahub_server-1.7.0b0.dist-info → infrahub_server-1.7.0rc0.dist-info}/METADATA +1 -1
  107. {infrahub_server-1.7.0b0.dist-info → infrahub_server-1.7.0rc0.dist-info}/RECORD +111 -110
  108. infrahub_testcontainers/models.py +3 -3
  109. infrahub/graphql/models.py +0 -36
  110. {infrahub_server-1.7.0b0.dist-info → infrahub_server-1.7.0rc0.dist-info}/WHEEL +0 -0
  111. {infrahub_server-1.7.0b0.dist-info → infrahub_server-1.7.0rc0.dist-info}/entry_points.txt +0 -0
  112. {infrahub_server-1.7.0b0.dist-info → infrahub_server-1.7.0rc0.dist-info}/licenses/LICENSE.txt +0 -0
@@ -32,7 +32,7 @@ infrahub/api/artifact.py,sha256=VDP308JiOFVzA3uhXu_YN40jHxITqHY3xUMdsk4FgSo,4110
32
32
  infrahub/api/auth.py,sha256=-YqPWBc5zXvGehf8IatHMl_y2xE6hpcfG7VcxnviFkc,1895
33
33
  infrahub/api/dependencies.py,sha256=3qJyKcKiGQKY2DzL4snBvYvih9JW7NAC1dAprXx5e1k,4733
34
34
  infrahub/api/exception_handlers.py,sha256=o1gRUbC7MBuygGFq7eyTRejXHM0ZIKt76RRwV4nmUN0,904
35
- infrahub/api/exceptions.py,sha256=EjTAN2wawBRyxMWgmafdk2CUdmzAqNokP3QNobifQQI,291
35
+ infrahub/api/exceptions.py,sha256=b90MOQ1Ta5OeTRbBlN9o1s-4OmjX8ZZUpcsgN55ZkG4,307
36
36
  infrahub/api/file.py,sha256=FnjXkQdSBThnNNYk8CMboEx_935pR1U6aHT0jxA0AdU,2258
37
37
  infrahub/api/internal.py,sha256=KIcetkvLGgIqwjUHyuxReXDl46leU5a_4CmbKxbusNs,5375
38
38
  infrahub/api/menu.py,sha256=xp5bj5JXQZA6ZEPWoTSGGSfTXZ1sVmehMxr3VSG7FlQ,1216
@@ -58,7 +58,7 @@ infrahub/branch/triggers.py,sha256=4sywoEX79fY2NkaGe6tTHnmytf4k6gXDm2FJHkkRJOw,7
58
58
  infrahub/cli/__init__.py,sha256=h0vY_rhHMzRWLowKTnDa0UUf4GC_-3MsB7S5nFA2Tc8,4054
59
59
  infrahub/cli/constants.py,sha256=CoCeTMnfsA3j7ArdLKLZK4VPxOM7ls17qpxGJmND0m8,129
60
60
  infrahub/cli/context.py,sha256=u2EYq9-vjzzfZdIYIbYmTG67nYSsyVFDPBtJ3KgE7KY,494
61
- infrahub/cli/db.py,sha256=ABK7UzKtn0nShCgR3oFsA0mwmOp1xG37Atxf4fHwQZ8,40314
61
+ infrahub/cli/db.py,sha256=ft77szmk5wJ8r4bLFf6QPLRbnclNnd4OkZdEGLqWa6Q,41181
62
62
  infrahub/cli/dev.py,sha256=jf_wpkz1rNQGrHnGcPZtn7W561XsK3-mr3HDm6Wwj1g,4861
63
63
  infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
64
64
  infrahub/cli/git_agent.py,sha256=ajT9-kdd3xLIysOPe8GqZyCDMkpNyhqfWjBg9HPWVcg,5240
@@ -80,21 +80,22 @@ infrahub/constants/database.py,sha256=p0Ga54CQLnjziSWmLRDzdUUBJs2ImPWPyPPozofmGh
80
80
  infrahub/constants/enums.py,sha256=laTVribgqd38pB_5_cIhTrIAnl8kK_nQenzBYHPgbKE,197
81
81
  infrahub/constants/environment.py,sha256=ry-6qsBzSumOjjiq1D3XNoquf1LWqFKiQSJj8t6nET4,32
82
82
  infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
83
- infrahub/core/account.py,sha256=6f1cIDWvL-HsbzL0UwWoCbDTzx55wzd_SkpQXiKDjcE,27477
83
+ infrahub/core/account.py,sha256=7hfw2CTFXRgzQPCfXyKxEvA6CCtT7aLwEJIH15mS1Cs,27502
84
84
  infrahub/core/attribute.py,sha256=aChYIDfCKp9cAe_DXeS-NhANrD_D3btnJloNr6Q0J2o,44173
85
85
  infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
86
86
  infrahub/core/initialization.py,sha256=MuhZR6VDFfEiQw_ZPm-LBcBQmpvEdaxovGWtx_YKtVc,22081
87
- infrahub/core/manager.py,sha256=WsPY4WvfewRovH0Jr7at3O1hGSrs7uspLRda4w4yn5A,49641
88
- infrahub/core/merge.py,sha256=xH6w_w1wzebuyrYt8gqFYU3Mdc416D_HrhitluzYULo,12538
87
+ infrahub/core/manager.py,sha256=obv-mZbj2wRFSSjcO3hq8EDYE4ZNyygaosVXCHKk5yk,49055
88
+ infrahub/core/merge.py,sha256=iVzSbdMHsRB-Myiddey6dNsOSKRq2l_4KUBFAxw-oKM,12546
89
89
  infrahub/core/models.py,sha256=m-ZwfpoktI7Q4oLxQ4WJyVLOutpEtyf3PgIMkou9wDw,26718
90
+ infrahub/core/order.py,sha256=3nFgOPgAB8Ww0ncKnZEPeFBs00Eazjovk8VnrRRHTEc,928
90
91
  infrahub/core/path.py,sha256=CTSnW6OcvnGNqTcOUZcVOMDSB4PLmeGYpY9U84uv9r8,6181
91
92
  infrahub/core/property.py,sha256=iwqtCjrztaTMxfbhP2a9iCfqbCp746-S5oEOlWKRiq4,5364
92
- infrahub/core/protocols.py,sha256=QoDvLhsvLiJ7Jqouri31ja4apApVN4zmwm_59KTKhs8,12741
93
- infrahub/core/protocols_base.py,sha256=lEYsXs5Xee7wpcdZ-xcLqKKTV9bHWIlfw5RC28lzQhg,3539
93
+ infrahub/core/protocols.py,sha256=Gpld1PBEIVGoNTYA2Xj2UCn0_i-rexqeEUaGgChtQ6E,12761
94
+ infrahub/core/protocols_base.py,sha256=Hd62uso82a7by9zjDWcFLt5I8Reyf1gYyqn4pm5MJag,3747
94
95
  infrahub/core/registry.py,sha256=nGbFrg7cQPNW2JjDOGPkQ-igJSHTnuprMcHsAWyJLUM,8606
95
96
  infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
96
97
  infrahub/core/timestamp.py,sha256=htKK3byVUk23PWQyfIOKK9OmN0HWjJC4xcaRTnLNkjw,1031
97
- infrahub/core/utils.py,sha256=aPV2dMvLJ8fwW5xlU2HM34-ZFbq83GCR_Gdv5WEi8aA,8521
98
+ infrahub/core/utils.py,sha256=13cIMOXPU0cS5g6sbFklC8C9yLM0PpMhjytVlCIouEQ,8504
98
99
  infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
99
100
  infrahub/core/branch/enums.py,sha256=wE_TvKxd-r3zeHgLOMuZhsyKRwDWWC8BMxAEC_aX7A8,212
100
101
  infrahub/core/branch/models.py,sha256=h0MVFj--IMf6cu9txLBn01sorPa7xZG4z79XsOdjCvU,20118
@@ -116,14 +117,14 @@ infrahub/core/convert_object_type/object_conversion.py,sha256=dEzAC1IP8_Qj5c4rmr
116
117
  infrahub/core/convert_object_type/repository_conversion.py,sha256=5WmX1__cvv8KsgLlKi3lLkptGCafiPuId_DZGMm6PXA,4152
117
118
  infrahub/core/convert_object_type/schema_mapping.py,sha256=uWjNXtWnq-HsMxGR05WfRfByXY3481lgUYAvkWvs6Lk,3170
118
119
  infrahub/core/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- infrahub/core/diff/branch_differ.py,sha256=62TRs3tGb4brQqCaVoI2iMIiPnny3_0_e9j-Mq-AXx4,7752
120
+ infrahub/core/diff/branch_differ.py,sha256=bufhv53hzge6t6ZwuMNwVK7-B3lXPFHjscq6agCKXb8,7760
120
121
  infrahub/core/diff/calculator.py,sha256=KQIxvrzNVDLKBhPux3-3boyEsXgSvJm8kzhJ0R88E_c,10104
121
122
  infrahub/core/diff/combiner.py,sha256=qL4WQsphB2sVnncgskSG_QcJBqBHjaK0vWU_apeTn-E,23508
122
- infrahub/core/diff/conflict_transferer.py,sha256=LZCuS9Dbr4yBf-bd3RF-9cPnaOvVWiU3KBmmwxbRZl0,3968
123
+ infrahub/core/diff/conflict_transferer.py,sha256=yQgO_UrQ9KriaktruLjPSwFwjKNXYpoxufzmEUpXdMo,3976
123
124
  infrahub/core/diff/conflicts_enricher.py,sha256=x6qiZOXO2A3BQ2Fm78apJ4WA7HLzPO84JomJfcyuyDg,12552
124
125
  infrahub/core/diff/conflicts_extractor.py,sha256=HysGoyNy9qMxfQ0Lh4AVZsRpHUBpezQNUa8cteVLb2k,9715
125
126
  infrahub/core/diff/coordinator.py,sha256=HVwybo5ga_CieAjhYcPbYsT3y8j27yeb8twFuDOoPgw,27458
126
- infrahub/core/diff/data_check_synchronizer.py,sha256=c0FyIj2RFBIZNWv_U8Y84RgiIShKVJH0nRtc6jsm5JI,9273
127
+ infrahub/core/diff/data_check_synchronizer.py,sha256=DLolZsAQ35A7qg991duS0cExgz2wfWSBWmAa367bmQk,9281
127
128
  infrahub/core/diff/diff_locker.py,sha256=b4F0rUQln1iK2zwMrJ-2l-1cM782HFut7wUgqZ63W1g,1066
128
129
  infrahub/core/diff/exceptions.py,sha256=R-i0mnzNwmHH9HQ1C7YAfL6tys-CbwQCIwTTmjfF_BM,546
129
130
  infrahub/core/diff/ipam_diff_parser.py,sha256=HLpn93TiXX7UjchoJe7KNPa0jMX888UopXfr9tQwraw,6758
@@ -136,14 +137,14 @@ infrahub/core/diff/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
136
137
  infrahub/core/diff/artifacts/calculator.py,sha256=qk1DspB3bkKeWJFesLbmziCALVnbRadjrez1kn_IZWU,4435
137
138
  infrahub/core/diff/enricher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
139
  infrahub/core/diff/enricher/aggregated.py,sha256=-LnAeNKDo6mifjL3d3ylCg1A9dTZJBySngWPeF7DfrY,793
139
- infrahub/core/diff/enricher/cardinality_one.py,sha256=VOsz-5_MI9IpQNXGLTZjWpbgeM6AsEkGmTlJeVowrfI,6798
140
- infrahub/core/diff/enricher/hierarchy.py,sha256=4WGVut-mYjDl8CfKqMStsOrLzQe45g5wagN4fl8UmWE,8876
140
+ infrahub/core/diff/enricher/cardinality_one.py,sha256=jX6evEJQm2EKAYGr4EOHqY27Gl0fG7H0pJx_JSDJvio,6806
141
+ infrahub/core/diff/enricher/hierarchy.py,sha256=x1qnefQm2gPBRTgPnjC3HRnQkVQA4ZPuE_fDw5Zt7PI,8884
141
142
  infrahub/core/diff/enricher/interface.py,sha256=pmbWFPONRznDcAPMchVIRm0cTqMThkkwCby8XVLjGWU,265
142
- infrahub/core/diff/enricher/labels.py,sha256=GN0AwQRMLLlEN4Qt1_senZrkY0rUu2TbuiTppR_yI5g,10001
143
+ infrahub/core/diff/enricher/labels.py,sha256=OUD9IDh01aBZBf75v5inTdRfbjAdW2d9MUDDTOGoptg,10009
143
144
  infrahub/core/diff/enricher/path_identifier.py,sha256=NGCFDdv0Gr96avHkCdory7_4bzZxWTIwdBczJePx6Nw,3329
144
145
  infrahub/core/diff/enricher/summary_counts.py,sha256=A-lOe9C40qG5i9pLjMONoPvhbKIQYek6jzmJDHDFuxg,4840
145
146
  infrahub/core/diff/merger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
- infrahub/core/diff/merger/merger.py,sha256=dWfD6fF2JSnpbTHYkCApPzuIuQB7jULYpW473_fwJWc,5942
147
+ infrahub/core/diff/merger/merger.py,sha256=6vqg-zqJIKrr1fZOgb_gD8ow4LSScDvCz68Bwxl96PM,5950
147
148
  infrahub/core/diff/merger/model.py,sha256=z1pjX0SXvZkqCqdcUKae73v6eEBrjUNotnkx0noe2wc,742
148
149
  infrahub/core/diff/merger/serializer.py,sha256=V7nRLpoKYrabuyvqzOWab6_QGlWWVQQzG6PV9v5W9zc,18152
149
150
  infrahub/core/diff/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -171,9 +172,9 @@ infrahub/core/diff/query/time_range_query.py,sha256=Xv9_Y_UJ45UsqfxosoAxXMY47-Ep
171
172
  infrahub/core/diff/query/update_conflict_query.py,sha256=kQkFazz88wnApr8UU_qb0ruzhmrhWiqhbErukSAMhLA,1212
172
173
  infrahub/core/diff/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
174
  infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_SS4EQnM9JoY5ptx78,21337
174
- infrahub/core/diff/repository/repository.py,sha256=u0QTMY1e2dknG_DuRAwzFt-Lp1_mdj5lqF2ymt77k9E,25581
175
+ infrahub/core/diff/repository/repository.py,sha256=k7oUcEDO6Yzmwue_Civ6EYEs2kGa_SQ1odmbaRZsRV4,25603
175
176
  infrahub/core/graph/__init__.py,sha256=CYohqJP6FKsi56sLc3A4KdPPGpmoMr4TUF6H3nn7EoU,19
176
- infrahub/core/graph/constraints.py,sha256=S_77M-86ZiqpN4pqXKaPH_NQaM0UwgWwcH7e0qpvgzc,10409
177
+ infrahub/core/graph/constraints.py,sha256=Ze3JASivU--QI2mLqheN52O06R-FPqc9Fd474BBT3gI,10417
177
178
  infrahub/core/graph/index.py,sha256=A9jzEE_wldBJsEsflODeMt4GM8sPmmbHAJRNdFioR1k,1736
178
179
  infrahub/core/graph/schema.py,sha256=YRfus_CgOGjAlQlp2dYI2e60ISdlWa1l9caDrelKoUI,10287
179
180
  infrahub/core/integrity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -183,10 +184,10 @@ infrahub/core/ipam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
183
184
  infrahub/core/ipam/constants.py,sha256=bKiDfCSerJFxFxwIanAixB8aodfOj_w3dRljuqZfXxA,289
184
185
  infrahub/core/ipam/kinds_getter.py,sha256=XiIsJiX1FCRDWZI_ZjwV77w5p-hIhFmMVTkfN7VBOLs,1717
185
186
  infrahub/core/ipam/model.py,sha256=_X4_g9Qhsp0046IkQXsPcskJk6LIhbbDmCiz2ieNT6M,170
186
- infrahub/core/ipam/reconciler.py,sha256=48do6rx12G25gaKuOguSrVdUDXVpMr3t6ogU1hdPZvs,8991
187
+ infrahub/core/ipam/reconciler.py,sha256=aUdowrwNgpj0-ji01yvEizajZ4IaIZodVwbZMMyqK-w,9006
187
188
  infrahub/core/ipam/size.py,sha256=Iu7cVvN9MkilyG_AGvYm3g3dSDesKRVdDh_AKH7yAqk,614
188
189
  infrahub/core/ipam/tasks.py,sha256=SRVkCv6TBI_VfTZ_tL_ABDaPn3cUNR6vmBJCuahInjI,1492
189
- infrahub/core/ipam/utilization.py,sha256=OKFvcCoxFTkYnwibLhBM2Kbb2vsyI4eX07gtCf_7UXI,6743
190
+ infrahub/core/ipam/utilization.py,sha256=iGRqJtLY926BcBdkFkgfhmyx3WSpayOGvI7abnksd9E,6391
190
191
  infrahub/core/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
192
  infrahub/core/metadata/interface.py,sha256=KsoGXfrv1UyM2yOrW8gHqQzxzhWGjDrqhiOlShsxiHo,996
192
193
  infrahub/core/metadata/model.py,sha256=Cq2aZ8CX6A56KGOaoJDHbcQdKYUHCM7-rn724D-mWSY,977
@@ -209,8 +210,8 @@ infrahub/core/migrations/graph/m008_add_human_friendly_id.py,sha256=7zswLvod5iTp
209
210
  infrahub/core/migrations/graph/m009_add_generate_profile_attr.py,sha256=7FfjKyVYOebU51SeRtRYkTWKX26SBQx2dfofi7TiQQ8,1346
210
211
  infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py,sha256=M4Orq480PzwBEz85QZqdBh-1arJdIwXNwnPA6cWy5Yg,1366
211
212
  infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py,sha256=TYQ1jXNucLIBbqLS35nUb_72OmMspXexSSW83Ax0oEw,1980
212
- infrahub/core/migrations/graph/m012_convert_account_generic.py,sha256=NT7JI47xWaWf8zLVyw4LE8uyjjdMQGui_7lqt8xrvlI,11086
213
- infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=Ws6r6aFYog3yy1nEfbS64FlRt8TCvoSXtrR0f3xtWQk,12420
213
+ infrahub/core/migrations/graph/m012_convert_account_generic.py,sha256=3rxBid6s5rpNDb_2KIXWrKFmqamm1jjrrsa0HYQyHc4,11182
214
+ infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=IJv_ugXcF5rn2Qp4ICF7xFK6GdnaniIeHKbxslztEvY,12452
214
215
  infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=Amds1gl8YtNIekU0tSXpHzdfk8UFqChC2LOLfnQ1YTM,1441
215
216
  infrahub/core/migrations/graph/m015_diff_format_update.py,sha256=fMnUja-VgKbCxtx4Rh3PnA_s3iidaYunJWEkw0AD51w,1169
216
217
  infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py,sha256=FpeGlCdRN8why_6P8ijR4-hFTbE-m95lDNfBwNet1TU,1177
@@ -238,7 +239,7 @@ infrahub/core/migrations/graph/m037_index_attr_vals.py,sha256=pc-223N-jhAglpPIeU
238
239
  infrahub/core/migrations/graph/m038_redo_0000_prefix_fix.py,sha256=FzMF8Eoqk9O3Pcd4gL6QryJwivGzRwmkWZhUJ5nsI-s,2509
239
240
  infrahub/core/migrations/graph/m039_ipam_reconcile.py,sha256=yRWTE73Rq1Qh6tPLu98w60zJdx8cgdO7_DL-g10x87s,11112
240
241
  infrahub/core/migrations/graph/m040_duplicated_attributes.py,sha256=2LxsG-CfcZnBirwGhwYL4kU-g3oxl6lNSM12vZTZ7Gw,2930
241
- infrahub/core/migrations/graph/m041_deleted_dup_edges.py,sha256=ydQ73MuhCNhl8cDrZ5N_jCP5vFCUIQTlJTGiTHMQVeM,5911
242
+ infrahub/core/migrations/graph/m041_deleted_dup_edges.py,sha256=K2f7JLK_FUQmz5X2v7XvnPaoc4xmIZy_AmWV3EggZq8,5919
242
243
  infrahub/core/migrations/graph/m042_profile_attrs_in_db.py,sha256=KdEaNPHovJxxiNL3CFRjWBnNzaMdidj1nmW5Jbhrt-4,6431
243
244
  infrahub/core/migrations/graph/m043_create_hfid_display_label_in_db.py,sha256=giICX6Dwd_z1GaWTWyX3KD5Va34LGth0Vv2uyaof044,7290
244
245
  infrahub/core/migrations/graph/m044_backfill_hfid_display_label_in_db.py,sha256=FuV3EBWS4lY4dtOn7-1Qgo6J7j4XDq4s5yIQjfCCVDM,39575
@@ -246,31 +247,31 @@ infrahub/core/migrations/graph/m045_backfill_hfid_display_label_in_db_profile_te
246
247
  infrahub/core/migrations/graph/m046_fill_agnostic_hfid_display_labels.py,sha256=labPu3UwH2L6X3VCVmNQHGSbRS-De0ihVzsaUiTf2so,10210
247
248
  infrahub/core/migrations/graph/m047_backfill_or_null_display_label.py,sha256=0ZrkeYWKhWERGOg_IH74KNuJtV8bR0bw1jOEkeZBFtE,24328
248
249
  infrahub/core/migrations/graph/m048_undelete_rel_props.py,sha256=6xlWsWtzzDwtyGmdRGKZa3hCpt-mp5QX7hNeJMnw3NM,5647
249
- infrahub/core/migrations/graph/m049_remove_is_visible_relationship.py,sha256=bNOt4pUU0bHrqEo22ruQxfRfLrTvzljUpLELd2wrdzc,1173
250
+ infrahub/core/migrations/graph/m049_remove_is_visible_relationship.py,sha256=mByjFKV0F815XNVArsEljSOAP2u-nQzUfPMD3xc7c5Q,1662
250
251
  infrahub/core/migrations/graph/m050_backfill_vertex_metadata.py,sha256=d2g899pTR7pUhChKXrRpGRIS7AsI8721gnz_QQe9HoM,6289
251
- infrahub/core/migrations/query/__init__.py,sha256=nUbKk8bX6Ei4RkLe0VNNAm7c-d2zDoAMgdFGkYW0Czw,850
252
+ infrahub/core/migrations/query/__init__.py,sha256=uMfOD0Bb4k2yOcYk_4oKT3PxxhdPfHJBT0w6rUbRJJQ,866
252
253
  infrahub/core/migrations/query/attribute_add.py,sha256=AobAoXAwQu8c3X0Pcz7-3Al2U2l2kBk27cjgaS5Do6A,5422
253
254
  infrahub/core/migrations/query/attribute_remove.py,sha256=me_DUc8GYimhJALYgM6lUtnWZfkTx9LDbrFOyjAIceU,6058
254
255
  infrahub/core/migrations/query/attribute_rename.py,sha256=64Yl7R-YGP0bXIGvcxo5T3J-wsWfM8hGL4TUvF6mVn0,7843
255
256
  infrahub/core/migrations/query/delete_element_in_schema.py,sha256=QYw2LIpJGQXBPOTm6w9gFdCltZRd-V_YUh5l9HmGthg,7402
256
257
  infrahub/core/migrations/query/node_duplicate.py,sha256=ef0-VVDvcuhActRods-bZRsGZM2AXXCUtgoy3ZU5BeE,10449
257
258
  infrahub/core/migrations/query/relationship_duplicate.py,sha256=hjUFjNqhaFc2tEg79BXR2xDr_4Wdmu9fVF02cTEICTk,7319
258
- infrahub/core/migrations/query/schema_attribute_update.py,sha256=fLclNEgoikO_ddlFEo1ts-dZwTXITA85kdJ00fXFxqo,3382
259
+ infrahub/core/migrations/query/schema_attribute_update.py,sha256=yFTpHhy3LYhRwPGjFFP5kXHVj5kCtZaXeO6fvhURCFk,3390
259
260
  infrahub/core/migrations/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
261
  infrahub/core/migrations/schema/attribute_kind_update.py,sha256=h4T7EQqW1SejWVmglufX47zKSA8dGPVtyuPquwO1rkI,7047
261
- infrahub/core/migrations/schema/attribute_name_update.py,sha256=gebaeQX1MLmOxupTPcCzLJdeEQlUzs3XIl7T15-RdXY,1595
262
- infrahub/core/migrations/schema/attribute_supports_profile.py,sha256=w7zosMYnPvH-r0Modr5N_uf5Ijpm0dT-3E8u0p4EWrc,3572
262
+ infrahub/core/migrations/schema/attribute_name_update.py,sha256=YgGg01F5_3vDoCkCERJy4RgopasI_Zou2l3cm0IbpCU,1603
263
+ infrahub/core/migrations/schema/attribute_supports_profile.py,sha256=Lw5-G1HNn5MJuUieYlWu1K6Pjz44lkbFqpYWEMl2d_4,3588
263
264
  infrahub/core/migrations/schema/models.py,sha256=DqEgIeUpdk1qtzifmELI4hzQjbhUV5fpPdmdDRrbnaU,1479
264
- infrahub/core/migrations/schema/node_attribute_add.py,sha256=bHowmQnyYBM1FxUB447TImQX61HpKlZFb4uU6m57XLQ,4498
265
- infrahub/core/migrations/schema/node_attribute_remove.py,sha256=H27FjhSYrKlRKrNFYQb_oHFx54FqJZc1GHJD8cij3ws,935
266
- infrahub/core/migrations/schema/node_kind_update.py,sha256=sCKbjzkAOuWsjvQHAfHq9HBY3woMA3wJx-B2mFwdvnA,1473
265
+ infrahub/core/migrations/schema/node_attribute_add.py,sha256=OYYA98SUz28rmvENBva7tT1JeGhfYNtqVCiOdqvQEx8,4506
266
+ infrahub/core/migrations/schema/node_attribute_remove.py,sha256=bzi8JjkmD5cgJPaAyDlsqQuupGumHEJFUIdGpkKQ_pA,943
267
+ infrahub/core/migrations/schema/node_kind_update.py,sha256=AWaC9P0SVECer-Np7TzI-bY4T_iwH6CAzX7O_6l-P48,1481
267
268
  infrahub/core/migrations/schema/node_remove.py,sha256=uw4XSf2COeB5S4GjWJ2sB7G0C48AkFc2N3euwCkgQDk,8103
268
269
  infrahub/core/migrations/schema/placeholder_dummy.py,sha256=YBGFUVPi57ARbWgAmbtKD_Y6lkITOR6nFwov7IXVuzU,350
269
270
  infrahub/core/migrations/schema/tasks.py,sha256=YHe593EKFj5_Ys9ZAIFK8dgdP7_6sGgb5rBXCFE9QjM,4304
270
- infrahub/core/node/__init__.py,sha256=ktb6R_YNOI0d1W8L2vrSyhJz0whDAeehlKSvInmC8_k,54678
271
- infrahub/core/node/base.py,sha256=BAowVRCK_WC50yXym1kCyUppJDJnrODGU5uoj1s0Yd4,2564
271
+ infrahub/core/node/__init__.py,sha256=KjrUV5xqSO9EJuvj66KSE9c2xjlPIBrdwbSj2Lv2ios,54686
272
+ infrahub/core/node/base.py,sha256=jZ0Ct--HpC8HuwunYQOT0JiIgEPfaCBpFN5hkpCJtTg,2748
272
273
  infrahub/core/node/create.py,sha256=KVPx2r5Hk6_l18pnp5_ih2oKxr9xJP6WgxuqH1E9EZ0,10519
273
- infrahub/core/node/delete_validator.py,sha256=mj_HQXkTeP_A3po65-R5bCJnDM9CmFFmcUQIxwPlofc,10559
274
+ infrahub/core/node/delete_validator.py,sha256=ru9UxE6mMCD-60uEMX-GxlprOes8_HoB8uGk-_qudRo,10567
274
275
  infrahub/core/node/ipam.py,sha256=wTulKQidGCSOENlZ0HDFQi_q7VRNap81wcgLI05NeGk,2721
275
276
  infrahub/core/node/lock_utils.py,sha256=wIxqOv3xcNQR4J1hiNXE7rmgCyLKemY7lDBIDsWHM9U,4975
276
277
  infrahub/core/node/node_property_attribute.py,sha256=CxBfLw7QGt2qOM0qpDaOg9d6DalaVZZd-GMxwq50yO0,8853
@@ -285,15 +286,15 @@ infrahub/core/node/resource_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
285
286
  infrahub/core/node/resource_manager/ip_address_pool.py,sha256=pJa3peul-sNNN_tNNsMn8TB6Jp8cbuh4xwrIf6-3Nd0,5265
286
287
  infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=z1CY7OM41p-X3dJcuGu7coDHDoGHvnB4puvmmleVmrU,5527
287
288
  infrahub/core/node/resource_manager/number_pool.py,sha256=KaDxJdIspQ_riXcDGn6RSBDltxEIonmoj68vsQvhFwE,5829
288
- infrahub/core/query/__init__.py,sha256=rebc95AeVhHKRGBlDAx5iZhVLo-qWSEOTi5AUxuLbBA,23175
289
- infrahub/core/query/attribute.py,sha256=pKyK42htObQzVAL6PIioait4maf02xmwgT7WA5nSdzs,18791
290
- infrahub/core/query/branch.py,sha256=2FWQKtSXLmWa7FY1YpsGQnyslzaH-ErveZWdwszsJBM,4227
291
- infrahub/core/query/delete.py,sha256=7tPP1qtNV6QGYtmgE1RKsuQ9oxENnMTVkttLvJ2PiKg,1927
292
- infrahub/core/query/diff.py,sha256=Wvm38hUh_AQxummOVFjPctJutrw3kBWleDFwq3WWQzE,38539
293
- infrahub/core/query/ipam.py,sha256=CIYfqbzvXptBlYRrJlOu7zUv84orVNIkpt_7BpWLdpM,35440
294
- infrahub/core/query/node.py,sha256=mcuyIVxMCHN0HuGFUIMQTf6v9fEhkf3Xp0KmEy8mpwI,79750
295
- infrahub/core/query/relationship.py,sha256=qbc8sCMQQ0NMhyPdtQz3MLNM1LfNe2ugsBsAZeF5gME,55872
296
- infrahub/core/query/resource_manager.py,sha256=uSvs1WZmdbyt_PjaUi9lXnYdPt-lhJV1RjYoUHYjQdk,16620
289
+ infrahub/core/query/__init__.py,sha256=rF2D4frSvwgE5TKigpBhs6Rt3ybUtu6-tJJwHnHE9ag,23659
290
+ infrahub/core/query/attribute.py,sha256=RLdbKGe1tgMZriCwGYnmx6IJQR9vKIarXqngnGPqM1Y,18815
291
+ infrahub/core/query/branch.py,sha256=EClhNGFh97bu_5UUD1BWpmqKOM3VnZlQKO2t4X_Ea34,4235
292
+ infrahub/core/query/delete.py,sha256=CzD5qayFuHv_fRY-5wyl_EuDejcMvjpJN8M0JdvQ5AM,1935
293
+ infrahub/core/query/diff.py,sha256=mVoDBWqhojKR2ExGqxrYesYTIBDvzTtZIcY69wHw3Do,38563
294
+ infrahub/core/query/ipam.py,sha256=cTZmMa20tsSQC1CWMM4zqzt8HzMdFtK5symdYCqXmb8,37836
295
+ infrahub/core/query/node.py,sha256=s6d51GzWLO5CITrO72j2_xLJK7iH8gPjl7sWoCLkkBY,94788
296
+ infrahub/core/query/relationship.py,sha256=VITglhoKuMxJyU9RBmIsdjT56lFIqObapsy0UdzWTUc,57910
297
+ infrahub/core/query/resource_manager.py,sha256=Yttw-RFhOWyOVAAUcbYkzeWO6fVfbotDV2crMnXab_Y,19661
297
298
  infrahub/core/query/standard_node.py,sha256=5m4przBJAoiTxDxjF8SYoc7gxJlgRgllsTgsmSI0O-s,5855
298
299
  infrahub/core/query/subquery.py,sha256=VAxY8wwkzrFQIGdQlxXUZ_iJZEtmTSru4sfs8hMNU7g,7215
299
300
  infrahub/core/query/task.py,sha256=tLgn8S_KaLYLuOB66D1YM155teHZIHNThkt2iUiKKD4,3137
@@ -302,17 +303,17 @@ infrahub/core/query/utils.py,sha256=mv0lNuBUKnIkQtz8B7QUh829BL4P-qD1_Ljk283FzSg,
302
303
  infrahub/core/relationship/__init__.py,sha256=broUBD0iwpSSGKJbUdG66uau67TQ_DRhqT_PFhuk1ag,154
303
304
  infrahub/core/relationship/model.py,sha256=ZO30qRhknogakJ1NNchF9ygBGZjuc64KWT-TDy8anOs,57292
304
305
  infrahub/core/relationship/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- infrahub/core/relationship/constraints/count.py,sha256=Ndqj0DHiQNyQxrwLfDgAoa3NJ3kspym6NMVSeXqwoxY,4372
306
+ infrahub/core/relationship/constraints/count.py,sha256=wFPHJwsI9r_F4eY4UcUCdomv8QvHNgrYrsLgJTOU00c,4380
306
307
  infrahub/core/relationship/constraints/interface.py,sha256=YJgbO7YxlOSo5rVveE2KQ2_8onUt9vMGl7V_2MnV32Y,344
307
- infrahub/core/relationship/constraints/peer_kind.py,sha256=Bropiav4y6r0iU2KfWJ_kmyIoBHWxhsyzs4S1mVR0SI,2547
308
- infrahub/core/relationship/constraints/peer_parent.py,sha256=z7elpC8xS_ovAF28Haq-RNpFtTEiUehzowiDgYGT68U,2343
309
- infrahub/core/relationship/constraints/peer_relatives.py,sha256=Ye79l7njaWxZkU2chTOaptIjvKBIawsNCl0IQxCTDtM,2737
310
- infrahub/core/relationship/constraints/profiles_kind.py,sha256=nEZPGtGcmelZ1Nb8EPcQ-7_zCLCNIYwwWbU6C9fLj5E,2464
311
- infrahub/core/relationship/constraints/profiles_removal.py,sha256=gpv6_V5XYfg9Br_N5IE35khzrJPDlntjGCVA7Sm0DWs,7834
308
+ infrahub/core/relationship/constraints/peer_kind.py,sha256=Eg3m-zTV-CPR_pwwQMIta_KCFA9COlKfhSzB2SntTXg,2555
309
+ infrahub/core/relationship/constraints/peer_parent.py,sha256=yuMLmv0h4Awd6vqDn_UJglsveReA3gpBIFsFD1wNasQ,2351
310
+ infrahub/core/relationship/constraints/peer_relatives.py,sha256=8jw1tT7qKZU7DGC6EK3ClUDgDnAduvuFHNHMnWTAuxo,2745
311
+ infrahub/core/relationship/constraints/profiles_kind.py,sha256=SrOfR8ME4jMZjAdBoWn06eihxKy-I43cSZNLLj-0Glo,2472
312
+ infrahub/core/relationship/constraints/profiles_removal.py,sha256=P1fD2tYpduDqt5Y9k9W7cz6aVubSn5dN_P1Fbsbj93Y,7842
312
313
  infrahub/core/schema/__init__.py,sha256=_vOy96uKjAxj8nvTR0qzHcnIYUzdVAAcUIk2kyUKjCQ,6641
313
314
  infrahub/core/schema/attribute_parameters.py,sha256=ABL1GEsOl4_CcDvK9_NucGMaF6LUeOjAxbDQVm_G7eg,6516
314
- infrahub/core/schema/attribute_schema.py,sha256=EYPSn8Sxm-kqhBuhAiITlQ9m2z_sILKjgcT0-XZnh0M,10511
315
- infrahub/core/schema/basenode_schema.py,sha256=Se-pEYgnL2Y6_OSMZrl5BWgW9taBaBaqddL2NoXfArE,29765
315
+ infrahub/core/schema/attribute_schema.py,sha256=2gbkWjEC8_D4nxcaBbs50fF1-kzVxVKqG0tPVnqQ848,9691
316
+ infrahub/core/schema/basenode_schema.py,sha256=m9SWsxHgufHYsEiJ7CAgF6OL-whwDCQV-OulLcfF798,29860
316
317
  infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
317
318
  infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
318
319
  infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
@@ -321,7 +322,7 @@ infrahub/core/schema/manager.py,sha256=oy1tjW2rppsPhEt5Gztyyc2B-CUBfYTzxpsDYxWl8
321
322
  infrahub/core/schema/node_schema.py,sha256=W2Jx5QXrQ5ygUEyTKnIHhj6Xe7jJ6Y-iQArEo05cWRI,6341
322
323
  infrahub/core/schema/profile_schema.py,sha256=sV4lp1UyBye12M7BJcA2obb4tx3M9J5P89SLqkmFxJY,1237
323
324
  infrahub/core/schema/relationship_schema.py,sha256=Ixrt6j7mWa5XrLJlq_8szEohrpqE2dLzlPjSxHRGp-o,8639
324
- infrahub/core/schema/schema_branch.py,sha256=a-iPg6Hls7c3otWEZ-vnUdrePLbiXEIA1z49wGm6B5g,121930
325
+ infrahub/core/schema/schema_branch.py,sha256=iXNvLievx-xABgXqHu4UcA28i8ok1ysCADUkd7bm0v0,124795
325
326
  infrahub/core/schema/schema_branch_computed.py,sha256=14UUsQJDLMHkYhg7QMqeLiTF3PO8c8rGa90ul3F2ZZo,10629
326
327
  infrahub/core/schema/schema_branch_display.py,sha256=bvXVSZZC1uilBicTXeUdrPkxIVuIIY0aLjkJQkvrTbY,6098
327
328
  infrahub/core/schema/schema_branch_hfid.py,sha256=XcNV2nNbpOhif5HHN6wvXXuM-nY8eMWhlidr4g8riro,5276
@@ -329,34 +330,34 @@ infrahub/core/schema/template_schema.py,sha256=cn7-qFUW_LNRfA5q6e1-PdzGSwubuCkLT
329
330
  infrahub/core/schema/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
331
  infrahub/core/schema/definitions/deprecated.py,sha256=PUXfRupaxNT3R_a6eFnvAcvXKOZenVb7VnuLAskZfT0,829
331
332
  infrahub/core/schema/definitions/internal.py,sha256=oP7R2azocYDbtBehfkOwGecAjupFMoSPLyPZbkVmuZw,35136
332
- infrahub/core/schema/definitions/core/__init__.py,sha256=7E267s83j8YkZqh4xiO-WpQy_dgcdLdHKVsbLe4NrQ8,5652
333
- infrahub/core/schema/definitions/core/account.py,sha256=5-yJJJRtAi1MyJZw88pyTqAklUPTsBzMa2LZkf4FtOs,5421
334
- infrahub/core/schema/definitions/core/artifact.py,sha256=6TX4zgK2j2vO7F0lCYLv6Bu7GTAKlD0P3rO7yuXX85o,3954
333
+ infrahub/core/schema/definitions/core/__init__.py,sha256=s90SEZ8HYgxFM1Bfn0s3vyXskpWoRRVdiwt0GxT76uc,5770
334
+ infrahub/core/schema/definitions/core/account.py,sha256=YJ1y-lvHavohoJtEfebHJkgteWaCmB5rTW_fM0Sfcnc,5631
335
+ infrahub/core/schema/definitions/core/artifact.py,sha256=aPO2KoNhFoLOpU1AQVpm1EvM8pOmcGLYxSnsW4rhEAc,4553
335
336
  infrahub/core/schema/definitions/core/builtin.py,sha256=eSGZXXV_caLm2WHvRsK6c88EfLjkMlm7VAZ-JVAaEPw,703
336
- infrahub/core/schema/definitions/core/check.py,sha256=PV7DHOaKivEtYO2s1ZBQdzQspptew7KLsA3r1_4ubx8,2152
337
+ infrahub/core/schema/definitions/core/check.py,sha256=2ateU-oKomO3dDd6TdDqLaHGST2rK4cCJSZdQH6vvNo,2563
337
338
  infrahub/core/schema/definitions/core/core.py,sha256=wpe0p4V0vpA70epcP0ZEXBEek17yP-t1TOQigNkUrmw,395
338
- infrahub/core/schema/definitions/core/generator.py,sha256=eSJ6KQg1BX6pFkniRWNNMjRV0LefgMht4mkNSe9pRoM,3394
339
- infrahub/core/schema/definitions/core/graphql_query.py,sha256=FOTJ7RoQpLqEbkqs2zWG2RhbrU-bVDRPko7xpz-h9Vs,2477
340
- infrahub/core/schema/definitions/core/group.py,sha256=BHfK1BTGv7MWfuwrjbWOWk9HNKuSEw6XfH0VEQGR8Lk,5021
341
- infrahub/core/schema/definitions/core/ipam.py,sha256=d62UBBiu7ldbQU3i--rYRub7YPsKHzyKashGqy9bRB0,7906
339
+ infrahub/core/schema/definitions/core/generator.py,sha256=4mCoTKoyNgJ0kCsIEQXbdpeHsTvJL26ANPbL9mzDrF4,4170
340
+ infrahub/core/schema/definitions/core/graphql_query.py,sha256=PUJHyQssULvao9i0X-07gkKAgRai3wtFBaCSrNNJ6aw,2517
341
+ infrahub/core/schema/definitions/core/group.py,sha256=d7XpNgseF5xVNi8-uoKA0sVSqAicu0km6bcCuBUXDk4,5209
342
+ infrahub/core/schema/definitions/core/ipam.py,sha256=D6mRYCp__tAZSDH6Leb2l8ofLy_FiCALK3QzOGQf630,9316
342
343
  infrahub/core/schema/definitions/core/lineage.py,sha256=Yb8Keh915Miv36azaoDdsBvNDJJNtYestur3o_uXw7o,498
343
- infrahub/core/schema/definitions/core/menu.py,sha256=PA5-b8d9t3eLr2SH89rnt1LW0B7hZIgeMQvdkR3Rfzc,1733
344
- infrahub/core/schema/definitions/core/permission.py,sha256=jvirBuZArJevM7cc0u0hf70M3DKAOsO_kohV9ib0N_o,5535
345
- infrahub/core/schema/definitions/core/profile.py,sha256=ayJL3WoA4egIQ5ctomV6F2NdIUPj4lJ2zAKd2MMilTk,680
346
- infrahub/core/schema/definitions/core/propose_change.py,sha256=ba1eoMu_2At1I1wkN24TXh3OfNukeZGQeZ87D1YMK40,3982
347
- infrahub/core/schema/definitions/core/propose_change_comment.py,sha256=tCYy0uazr4bOeQeuOHtN-v1ilLxaIO9T7fxkr4mLmDQ,5743
348
- infrahub/core/schema/definitions/core/propose_change_validator.py,sha256=IwrEQvutsxSFcDrcAFoevCzkwnPF3E6iyF0lUOi61RM,9947
349
- infrahub/core/schema/definitions/core/repository.py,sha256=V6Uc819SOm4QtJvEfit5YFBEe8b2xxuFbO17QSBjOk0,9837
350
- infrahub/core/schema/definitions/core/resource_pool.py,sha256=VIXOzsL6N04LoMo2lXdpLthlGDaG5D30nsrHb1SomoM,6366
351
- infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2I6MFT4r_ED7xA4BtzdKY,1037
352
- infrahub/core/schema/definitions/core/transform.py,sha256=xCALwCPQFdU7NYyOjbL7d2QoRBrQUrO-gJNH2c74hS0,3061
353
- infrahub/core/schema/definitions/core/webhook.py,sha256=rpJ0aw5e64C9WQ5xFx1FvJ7G9tsyZyYIib89OEM4pn4,4346
344
+ infrahub/core/schema/definitions/core/menu.py,sha256=iJXjdEI9A_pFDZWxGJp-xmyScwGqvb_wfySepq97x9g,2563
345
+ infrahub/core/schema/definitions/core/permission.py,sha256=WbqBNMcm172r86GmkmNQR4emZ_GM4J6XBm6AEbvzviw,5942
346
+ infrahub/core/schema/definitions/core/profile.py,sha256=eTX-hSVoV_Lex5AmQWdonGzI4XIPP06ZtcxPxcfUlD4,991
347
+ infrahub/core/schema/definitions/core/propose_change.py,sha256=iq0UWB3UhJKVAwLUDYOhStj2QCpy6XipK9m_h5QEMlk,4506
348
+ infrahub/core/schema/definitions/core/propose_change_comment.py,sha256=zgLRGC2bIPBWOK-nqpcxCV-WMdYFSqyX-dlikVSvXQI,6473
349
+ infrahub/core/schema/definitions/core/propose_change_validator.py,sha256=GGiYWoVbrqhnokXOLSDZT7DMjfhePEf0QJw5Q6OFMkk,11664
350
+ infrahub/core/schema/definitions/core/repository.py,sha256=WJSxLYwxSsFLjxZhCd5BChKlfC_aI21xqAU3O0ObH0E,10498
351
+ infrahub/core/schema/definitions/core/resource_pool.py,sha256=RUW5SY9W8hEXHiPFna4WVIHVwX_J44YLvdfW_P494ck,6572
352
+ infrahub/core/schema/definitions/core/template.py,sha256=s71MzeHmihUcTmXkXQpsUhlpviR2axJp8JZos61hOC4,1332
353
+ infrahub/core/schema/definitions/core/transform.py,sha256=fSs6Q1OOt-OtXmajOs_HUww03qbuD8sQzo6lhKc7a6E,3446
354
+ infrahub/core/schema/definitions/core/webhook.py,sha256=ZS6XJdrAxIK6h-XFTsSXxdtLD3_efP48R9lUVECyPxU,4988
354
355
  infrahub/core/task/__init__.py,sha256=Ied1NvKGJUDmff27z_-yWW8ArenHxGvSvQTaQyx1iHs,128
355
356
  infrahub/core/task/task.py,sha256=11E64Y294yozFKP9jk4O0-15rE6Iof_a1b6qKDP4pmo,3956
356
357
  infrahub/core/task/task_log.py,sha256=Ihn8G2uW8K3wYz42qRjcddCSlspjN67apb44uirqxqA,986
357
358
  infrahub/core/task/user_task.py,sha256=gPYMXdTekmmL3A3sTkOTYMfVOMTM_nlxE91JB6zKWOk,4613
358
359
  infrahub/core/validators/__init__.py,sha256=0287h4i-oCL1seKlcQmZtSdepn-25JBKo5XkRrsiXL8,3189
359
- infrahub/core/validators/aggregated_checker.py,sha256=F-Q8L8U8VauAfDy1JnA5JWE0dXXTWo8PykbGTiSEA2g,4716
360
+ infrahub/core/validators/aggregated_checker.py,sha256=l8aKOck8QeISc6mL6avu03orC43Uft0osM_C563hgj4,4724
360
361
  infrahub/core/validators/checks_runner.py,sha256=xaIfgRLrwDk-9GVx0UilSub8Ee3EPudi5GpY51C5xLk,2513
361
362
  infrahub/core/validators/determiner.py,sha256=__1HCwqbdQPrIEIPnGyQjotiR0IfEqfLakTLM2bzadw,9686
362
363
  infrahub/core/validators/enum.py,sha256=-26-LtK2pB_oqRuDtOuUb7Qf634vvahagFHfswmcqrg,748
@@ -366,34 +367,34 @@ infrahub/core/validators/query.py,sha256=0PCDoYczx6mCthnQH3datjNIm-GKxqS24JkxpzN
366
367
  infrahub/core/validators/shared.py,sha256=dhCz2oTM5JxA3mpcQvN83KIKIv-VNPSiG0lh4ZiTAFw,1345
367
368
  infrahub/core/validators/tasks.py,sha256=Qb9q2l55NKhvWXCrZclVWvJhzsN3yniN7nsYqULl0wA,3930
368
369
  infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
- infrahub/core/validators/attribute/choices.py,sha256=Zt_iy6g2ANK4wBOgWqnhvU0dZ2ZYGvyhu93t7eNwj8Q,5380
370
- infrahub/core/validators/attribute/enum.py,sha256=3PzkYUuzbt8NqRH4IP4cMjoDxzUvJzbNYC5ZpW5zKZQ,4161
371
- infrahub/core/validators/attribute/kind.py,sha256=uzMo4Qf-AyvSlwgURgALd7QVMEl6237tb148-wgTDjE,4611
372
- infrahub/core/validators/attribute/length.py,sha256=H0nP2x2ynzcbMnc6neIje01wXipbt8Wr49iNTqIvWxI,4526
373
- infrahub/core/validators/attribute/min_max.py,sha256=3x6iCJuVdt3vim6wPaF4Bar8RlR3FhJu3DYQiR2GZRI,5661
374
- infrahub/core/validators/attribute/number_pool.py,sha256=edWmpHbme9YqWxeZJ5V0dvTCyIqLFyej2YNTyM-Emq4,4709
375
- infrahub/core/validators/attribute/optional.py,sha256=qczSkKll4eKsutLgiVi_lCHgqa8ASmQbWOa00dXyxwg,3801
376
- infrahub/core/validators/attribute/regex.py,sha256=DENGbf3H5aS4dZZTeBQc39bJL8Ih70yITqXfpAR6etU,4201
370
+ infrahub/core/validators/attribute/choices.py,sha256=UV0L6PsqQzseKrTZC_JZSjgq48memY4JIKwgF01dgyY,5388
371
+ infrahub/core/validators/attribute/enum.py,sha256=SnCw-8lV1x9gU-EjVOxNXoCQSvOi7H4PtVyrRVUXZ1Y,4169
372
+ infrahub/core/validators/attribute/kind.py,sha256=IRpN-TBfUd5KWMnTjo4n4_s7LP0-SPRNPGwXKMB-lzQ,4619
373
+ infrahub/core/validators/attribute/length.py,sha256=KwX85EKJHaNVBRdtt39vLYJrD206mVkLIIVDV5xQiz0,4534
374
+ infrahub/core/validators/attribute/min_max.py,sha256=mxwshXSPEEntRsS3RwwONFhD8ya6NiiP0Z6gnUrhBpo,5669
375
+ infrahub/core/validators/attribute/number_pool.py,sha256=Uvz9yBjYqFB5Wz9oMt9Tle9xCy3bZrbpx7TmMTPh-Kc,4717
376
+ infrahub/core/validators/attribute/optional.py,sha256=yMk61xTkFgvkeAZhy0xS6D_tKpTKTKRw6rctX2H0ttY,3809
377
+ infrahub/core/validators/attribute/regex.py,sha256=WSeZGZBjXXAajXoGXSxh6AwhkYQZw2YBw_aDkl0PHnY,4209
377
378
  infrahub/core/validators/attribute/unique.py,sha256=yPuh0tug8oXNNgrb7DN8sxkHHb5TlXHkMbYK_wz8zX8,5142
378
379
  infrahub/core/validators/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
379
380
  infrahub/core/validators/models/validate_migration.py,sha256=As2n7QtXwZ1bfAboPosg_3xwrXTgB9OeCEclqO1lBzs,1424
380
381
  infrahub/core/validators/models/violation.py,sha256=HroSoltjf_F3XKTpgSC2b8Sb4dQRZOo4IeY5nqNVjF4,176
381
382
  infrahub/core/validators/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
382
- infrahub/core/validators/node/attribute.py,sha256=q3CppqN9KeaLXFPp9Py11VBvrKIwmbPhFM7kk0UVWh8,2526
383
+ infrahub/core/validators/node/attribute.py,sha256=a50K1e7xTREeku3mk3n0rx-Nqdtg-V-t5HxhP61XCSU,2534
383
384
  infrahub/core/validators/node/generate_profile.py,sha256=GUO-7Kb2G6Ec9-DFQ4Xr1cGRlvp30g07KB_JfQIl6fA,3151
384
385
  infrahub/core/validators/node/hierarchy.py,sha256=zTpNo8gTnoFFpkC8kMzud8ZLJwP0UyvzBDXNQCZ8SEU,7404
385
386
  infrahub/core/validators/node/inherit_from.py,sha256=gRgZEEG59UHzGOztHUqYD6eyLYHGV7wmz35njt2vKLY,3156
386
- infrahub/core/validators/node/relationship.py,sha256=OFBnc9NZEzK_fICo9yRtgJwRoQUghz3Ba-u3IxyjZ1c,1698
387
+ infrahub/core/validators/node/relationship.py,sha256=VtwJS8gSwf27rH8J2A15EazLwlsZSYFSXc45UgzvrPg,1706
387
388
  infrahub/core/validators/relationship/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
388
389
  infrahub/core/validators/relationship/count.py,sha256=AjXLSx3LqG74rnpFXY0LBCahs5aFl3GWjyCC2DwcyGA,8598
389
390
  infrahub/core/validators/relationship/optional.py,sha256=X1nGKt19RumNInZ0Ij-fEcq6-TrwrJcGOW4rrsQsdV8,4339
390
- infrahub/core/validators/relationship/peer.py,sha256=4Kij_nR2ekyFyv78W_-BIwS8VAE4qIilmDmtn_IXjj0,12800
391
+ infrahub/core/validators/relationship/peer.py,sha256=CdJm-Fo7f7WxgVdkJ8ZpHse0ya_pGfE2M-l4eFF7KEE,12808
391
392
  infrahub/core/validators/uniqueness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
392
393
  infrahub/core/validators/uniqueness/checker.py,sha256=-vIgNSodeibpf6vScDDbON30XGoL2YUa-TLQjj58pFI,10531
393
394
  infrahub/core/validators/uniqueness/index.py,sha256=Jw1o-UVinQquNduZ5vCCzt8GUfIEdVzBo-1XyRti8F8,5068
394
395
  infrahub/core/validators/uniqueness/model.py,sha256=Z5CyYOQfhyAnwNIev4AFjfXnfOoUWc4uR04Wz3C6Cy4,5617
395
396
  infrahub/core/validators/uniqueness/query.py,sha256=0LXhPqRpV4Ho2CLxHP2fDs8AFvKJPKpUfHiW4SwFccg,22254
396
- infrahub/database/__init__.py,sha256=-bAhBDSK29tB05eVOUHMRmkmMhOWjlVpY5ZjahCAI8Q,20783
397
+ infrahub/database/__init__.py,sha256=kIkW19zlBMKhBYPejvDBCvXwx0SbP8Of2XlnyvE6Xhc,20791
397
398
  infrahub/database/graph.py,sha256=fUYrUmRNFA_qvFSS7bvb7giqaIj1BLzhQY6dz7F_vCo,620
398
399
  infrahub/database/index.py,sha256=ATLqw9Grqbq7haGGm14VSEPmcPniid--YATiffo4sA0,1676
399
400
  infrahub/database/memgraph.py,sha256=Fg3xHP9s0MiBBmMvcEmsJvuIUSq8U_XCS362HDE9d1s,1742
@@ -492,25 +493,25 @@ infrahub/git/integrator.py,sha256=snRevyQCOZrkjSv2u4bxvmDkMjWuke0zHTTZ_z9p3mg,63
492
493
  infrahub/git/models.py,sha256=hVnzx-DBvFwOCLC7h9IjprwLSb9XAeSdZaRwvv_5FTc,12974
493
494
  infrahub/git/repository.py,sha256=dMUfQzB_tVLgtHsok8WiDOS4ImbLRaK-OTBYtS3YdpU,11770
494
495
  infrahub/git/tasks.py,sha256=uCPo0HbeMvMPTryZPcB3ucFS0bIAUQROm-YoojruYZ4,40580
495
- infrahub/git/utils.py,sha256=TNw1QR-xF8EO2eQLmeUU3WGvLfIfPEDhsKR4FYp0Yb4,5805
496
+ infrahub/git/utils.py,sha256=4IYqWrkv-01_6ZBjAm0JS02sPueBJ7jJ8_j7twiol44,5801
496
497
  infrahub/git/worktree.py,sha256=8IYJWOBytKUWwhMmMVehR4ceeO9e13nV-mvn3iVEgZY,1727
497
498
  infrahub/git_credential/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
498
499
  infrahub/git_credential/askpass.py,sha256=BL7e4Xkx5la7XFk-GQR6MXxV5B29Mzb5ZnVnljd7Xpw,1513
499
500
  infrahub/git_credential/helper.py,sha256=cwSMKRTgqrqIBM66jEOtlj4MMLf647KJWmtnnVxFtTY,2337
500
501
  infrahub/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
501
502
  infrahub/graphql/analyzer.py,sha256=2-C1Wli0fXpXTVvNtP7IxiKWBJN97lqOeEP2L0oy3ho,30944
502
- infrahub/graphql/app.py,sha256=JwLNHbsEBKLameZ2UhK2RRxnt6kt2AoQUUpHOvk8wCo,21186
503
+ infrahub/graphql/app.py,sha256=5BudFFwmV0LJizN0m4Cioe5-DbpTp5-QxHUhwlPIHpk,21139
503
504
  infrahub/graphql/constants.py,sha256=WVBKH667qD7R2JkqHNjhct_Ay64Iej5qRsFLfQhrgwc,142
504
505
  infrahub/graphql/context.py,sha256=92Vmkph0DWb7JIONrP30KQppWH0g8tbWpHuE-qke5UI,1713
505
506
  infrahub/graphql/directives.py,sha256=wyIkJFp7l0J4JqNl1Lqu7YfKXP7glrewlQFMDTUAPcE,645
506
507
  infrahub/graphql/enums.py,sha256=9F0XWfjQpC__0YRccYG1T-3qL1V8_PmlRlVpU1-n7nQ,820
507
- infrahub/graphql/field_extractor.py,sha256=5trqnd8AfeFkn2W2ztrbpnZqgg1Zm9CzscF_oRonUzg,3127
508
+ infrahub/graphql/field_extractor.py,sha256=S0eeTF-vnfry73NbYSLi4KNCyeZS1lAS82r5Tde2tts,3135
508
509
  infrahub/graphql/initialization.py,sha256=G-eHsJhNbCrTXzxSkqXi_1v2NycrIltN5pSKDTJ8EuA,4998
509
- infrahub/graphql/manager.py,sha256=6wFJRMy_ASNO8h2X-VhaBX2yPNSi7tMaaNuuZeTOzlM,57653
510
+ infrahub/graphql/manager.py,sha256=O4ORoSemGCp5urQZz6TFiSnhpojSNmAjoxVlh63MjtU,57996
510
511
  infrahub/graphql/metadata.py,sha256=8P3KMGb5ybNQ3abWz8E7hsfsTTwU2SuJEH47zGoEDro,3856
511
512
  infrahub/graphql/metrics.py,sha256=viq_M57mDYd4DDK7suUttf1FJTgzQ3U50yOuSw_Nd-s,2267
512
513
  infrahub/graphql/middleware.py,sha256=za8Aba-63_mVgc2j8us8giucwIXweR6c7_XN0-VEus4,604
513
- infrahub/graphql/models.py,sha256=vYJfAn1Fi7Td3iSU6_tTAkda2fIsVaxRFRustTDE9RQ,1099
514
+ infrahub/graphql/order.py,sha256=PG1c6Yk6f8sEqK16zTcKM9CIWgsw8NInVcseoaNtvyc,357
514
515
  infrahub/graphql/parser.py,sha256=MBvCnj4J0zYCdIf86_sxKF1Y_eaI3KHlQqdBae958Ok,9035
515
516
  infrahub/graphql/permissions.py,sha256=ADPyCSZcli0PLgGrtO-EsEJjRuvlk9orYhJO06IE_NI,1022
516
517
  infrahub/graphql/registry.py,sha256=5aPKWeWbgAxhvozv2c23R2UNScJ1Zd-tNw9QHEGyrDY,8723
@@ -535,7 +536,7 @@ infrahub/graphql/loaders/node.py,sha256=A-iKJdJy6CWX-UeKYzpw_f0e3qL6Ap6k5BCTKU5l
535
536
  infrahub/graphql/loaders/peers.py,sha256=ZGEYom6taYMH_ilg28rpf44I74sVW5nuLvn3EVsnYNs,3076
536
537
  infrahub/graphql/loaders/shared.py,sha256=hUxLy8iVgfpEZiUMKNkUAeshPKKzEVSDMDsuaBbjJW4,389
537
538
  infrahub/graphql/mutations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
538
- infrahub/graphql/mutations/account.py,sha256=8miICIuZPaEbcy0VwoiDOvv4VsQka8ELrMhTXEJNN84,5885
539
+ infrahub/graphql/mutations/account.py,sha256=fz2fZqAzYQSDNPbIEJMBXzPbaxOKyq2cUcICBVkkZxw,5896
539
540
  infrahub/graphql/mutations/action.py,sha256=Q7eigcRpIh3iwSXDPMelcGJdCHdaF1BYdEUX_Hc4UIQ,6900
540
541
  infrahub/graphql/mutations/artifact_definition.py,sha256=K9iieMMHB8O8V1E6aO04tP2oMtiTRTA8B_0nWEHGWcc,3531
541
542
  infrahub/graphql/mutations/attribute.py,sha256=A9EjnWHsCNpxjVAs7lz_S2clM3qiw4gyFuckptt0EOw,2652
@@ -574,17 +575,17 @@ infrahub/graphql/queries/internal.py,sha256=pcGLpLrY1fC_HxHNs8NAFjr5FTFzcgRlS1F7
574
575
  infrahub/graphql/queries/ipam.py,sha256=2DboKHh-VpS8BXZB2V_2fLgWyKIQGJpQKIYs4jWQh6s,5110
575
576
  infrahub/graphql/queries/proposed_change.py,sha256=C0bHWiDz-J_MQgdmuap9tIQaFahv-TSXizkcs90FZrU,3083
576
577
  infrahub/graphql/queries/relationship.py,sha256=STAZa1Xo5fdMHKdEFLmuw-LDD2mo5qkOfeKLpKwu_30,2584
577
- infrahub/graphql/queries/resource_manager.py,sha256=u3tsmp_7SnuRZbZoawnLY3u-XLeoC_IlFr4fYadR7O0,15189
578
+ infrahub/graphql/queries/resource_manager.py,sha256=26sFcRHi7yodP-zPD3y2RmdK6ed26BF2tDzYxIRbuGA,15098
578
579
  infrahub/graphql/queries/search.py,sha256=22MCNHMHrc0C6MjMSNxzIdnDUug-Gp2NGtO4qPlkxIg,4994
579
580
  infrahub/graphql/queries/status.py,sha256=BSCBT4abaswlfh7JZB8mk_rR-6FXIx-wxQA_YwiWvI4,2124
580
581
  infrahub/graphql/queries/task.py,sha256=UG9Ur2CH5GOmfyk34ItqAPuCEkqIhdU-G1n6C3iK_lc,3921
581
582
  infrahub/graphql/queries/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
582
- infrahub/graphql/queries/diff/tree.py,sha256=QM4y7uQE-bP48bmfpWBfA22mcWEWTTrwZYCxIhBRz8Y,25256
583
+ infrahub/graphql/queries/diff/tree.py,sha256=nCnjQbCP6VzV8ZEO62NYa5_Eiz9Pd-KAC9ms6gmqkUs,25251
583
584
  infrahub/graphql/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
584
585
  infrahub/graphql/resolvers/account_metadata.py,sha256=LeMyK1A57DSdCVJEIF503SJ7fwhn-2aKWFQtxCIjcW0,2965
585
- infrahub/graphql/resolvers/ipam.py,sha256=wNg-T_EWax3kxo5_0aF9Ka3fgFLyMG74kSBYD0MD3FM,17663
586
+ infrahub/graphql/resolvers/ipam.py,sha256=HM8JYJfKeyLHN9NSuIJXQNY_kR8EhO6NLKy42nQG0wE,17606
586
587
  infrahub/graphql/resolvers/many_relationship.py,sha256=o0hjKa6yO8qAu2AaFXB79biJ_eVzJo-OE5MaSTjGNoc,11650
587
- infrahub/graphql/resolvers/resolver.py,sha256=TyT1MGbNNOL-b1fiiPXraqzQb3TLh0KJQEHicC2pMUk,12439
588
+ infrahub/graphql/resolvers/resolver.py,sha256=5BQDc3w-ABJEl9NUX1g2vJlQtdDiC8Obs-jVYropXLQ,14303
588
589
  infrahub/graphql/resolvers/single_relationship.py,sha256=uTk-60zMF6a_PSoIMcG-mt3MyjGRnJumzaPFQXGM0FY,9626
589
590
  infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
590
591
  infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
@@ -601,7 +602,7 @@ infrahub/graphql/types/metadata.py,sha256=t0Ei-POOUVvEngPeVbIhI3q_cmoy6ruqhfmoFy
601
602
  infrahub/graphql/types/node.py,sha256=KTPI7iS1LQoDjSyjg81s7fc0UzsRlsjwCHhLMmrABJc,1553
602
603
  infrahub/graphql/types/permission.py,sha256=zptTaTR-ndIbcb8AEwBXm-TRxgr400T8untxmRi5DbA,1386
603
604
  infrahub/graphql/types/relationship.py,sha256=FdWLOLKPWkjxrGZhxvj3SlBAGnKyfVbbHqMYFOy9lC0,771
604
- infrahub/graphql/types/standard_node.py,sha256=1NFVwX9kFWIeAe-8m01NasUeWi5T1LlFEry0KsvX4rk,1830
605
+ infrahub/graphql/types/standard_node.py,sha256=aQ0c33WXq6wppF6NVLLe0q4EgaERb2GpuK695hh8WqM,1844
605
606
  infrahub/graphql/types/task.py,sha256=ozjcm24Qj81JmiR2scW5APlPGs__dhFIGjlqzYXSnoo,1439
606
607
  infrahub/graphql/types/task_log.py,sha256=jqB2SzIDVaVHRKbe10IFOvbzUv4pbTv-lb0ydwkdt7w,753
607
608
  infrahub/groups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -621,7 +622,7 @@ infrahub/menu/constants.py,sha256=z9aAxIBlAMXrjl3dXo0vZxBU0pcfh1FQOiqIussvpD0,19
621
622
  infrahub/menu/generator.py,sha256=G1e0-SE2wWRMKXYc8BQxUW_T6EMedN6mMqrz9PfkeXo,5674
622
623
  infrahub/menu/menu.py,sha256=jLnCghHbgrhbNG78uBtfLWrpKMisrQfZwybHC1hvXEc,13575
623
624
  infrahub/menu/models.py,sha256=qh0W-Lut6DtszRABx9Xa1QG1q7SYQsBcNT21QuUBFYM,9839
624
- infrahub/menu/repository.py,sha256=IQpEbQ1u9WiCl7cWCoElEVH_E9qhcLTaTsrf8BWmges,5044
625
+ infrahub/menu/repository.py,sha256=ajeV7nHjr4Bq9vwkHW3q40guk6hbLyK6nbgWZDtelgU,5052
625
626
  infrahub/menu/utils.py,sha256=tkTAeVCTUWgLNvL9QiPwJwys6os1Q92nhigHXxMwyQo,272
626
627
  infrahub/message_bus/__init__.py,sha256=MkDavdkUxCAJ_RCohO7cLBAzYTqftcXAI6hVj5FaoiE,3669
627
628
  infrahub/message_bus/types.py,sha256=awEghaKn_UQFsx_7t1m_Gqh97VL5NSpZHHgU5ONrRBM,4535
@@ -653,7 +654,7 @@ infrahub/patch/vertex_adder.py,sha256=lhWELYWlHwkopGOECSHRfj1mb0-COheibsu95r2Hwz
653
654
  infrahub/patch/vertex_deleter.py,sha256=czdb8T30k_-WSbcZUVS2-DvaN3Dp4j9ss2lAz8KN0mo,1302
654
655
  infrahub/patch/vertex_updater.py,sha256=FxQJEnwXdvj2WtwLorRbRAyocWUG9z_RDowflVKqPoU,1136
655
656
  infrahub/patch/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
656
- infrahub/patch/queries/base.py,sha256=wXtv4I-7l_u0kXJFbmFZZJ0_2_5yvuAJwmwiLqRq7AY,338
657
+ infrahub/patch/queries/base.py,sha256=N6wir7h5kbKaPixALsNtGT1lXGGL3HEVGATV_SiQYJo,346
657
658
  infrahub/patch/queries/delete_duplicated_edges.py,sha256=u3Co_8taoJm92pzfFK6PrDMk_URrftV-mYf5_I6ll4c,6758
658
659
  infrahub/permissions/__init__.py,sha256=JZtHCf5FC5OKYFcu6SWBArB9a9WFZVtJNxoWrmWweC4,732
659
660
  infrahub/permissions/backend.py,sha256=azvyFOTne0Zy1yrc4t9u3GCkHI_x_OPSDV65yxmVPDQ,529
@@ -666,7 +667,7 @@ infrahub/permissions/types.py,sha256=cQQ0lJKlkufmJ7TQO2CM2yi0Y_yL-F7waFrjGumvkIE
666
667
  infrahub/pools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
667
668
  infrahub/pools/address.py,sha256=QouI4q09sPRTyXYQFL88l0qiQHsGgdYhttPu7Iq1lIM,773
668
669
  infrahub/pools/models.py,sha256=wCnxuaRHtOtuiSB0hiF60b-YjzORPN8U2ryetHcRALk,278
669
- infrahub/pools/number.py,sha256=z9mI939fgSoimoawzg56jJ9kKz0iffD8ONnSHbk3krs,2520
670
+ infrahub/pools/number.py,sha256=CmHaZdytDKqjc9ug6B4wku837NhK5NRrTWdaMGb4JxI,2273
670
671
  infrahub/pools/prefix.py,sha256=hMN3eVgjDMVnW0VMkHUFCtWJ29mVUY-2uxD1S2kaYkk,1338
671
672
  infrahub/pools/registration.py,sha256=Fb3psPJItii0aghV_oRbv4oKNb7Jv-V0a4gbBolhv0E,777
672
673
  infrahub/pools/tasks.py,sha256=lBJjpgGrzS0lXXa8uGijKAf-LfgEzHgv-Goy-4YW1b8,6395
@@ -680,13 +681,13 @@ infrahub/profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
680
681
  infrahub/profiles/gather.py,sha256=0Lf6txNSl15KUymsTGiDOK8id6y2ssQK3aq5nqvCKxg,2574
681
682
  infrahub/profiles/mandatory_fields_checker.py,sha256=02JkmQd78aIzrpMdcVj-gqsqmjZWcQA_zl7kr79St5M,4085
682
683
  infrahub/profiles/models.py,sha256=P3GaazNVeI_V1w4EgFpRDWue2rkXncyzqEkEpdE2aXw,2450
683
- infrahub/profiles/node_applier.py,sha256=cuu9iobEsSV8GTqgy1Z9LXU0sA0WMYnc_B5wcgZqvQU,10888
684
+ infrahub/profiles/node_applier.py,sha256=5_eMzMSWHHGlMGIceuj_OGReLt-ouw_JdIBPRgchoP4,10896
684
685
  infrahub/profiles/tasks.py,sha256=gGB7k8JwBB4TYLUk638WEseZOGPU2cgP7UP0MTqXlHg,4324
685
686
  infrahub/profiles/triggers.py,sha256=D_47oqY1_8MvY0Jz0sjdk5z-WEXLdER-0dCbdbPn7Ag,951
686
687
  infrahub/profiles/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
687
- infrahub/profiles/queries/get_profile_data.py,sha256=Wj7x6Y4SrPVmp2AuOv52psIk656s328e2KQg9v6NauE,7955
688
+ infrahub/profiles/queries/get_profile_data.py,sha256=Db2_o31qqXy2uBLHaNgPrKzlAP-eNIv3Rl6DDhbcg_Q,7963
688
689
  infrahub/proposed_change/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
689
- infrahub/proposed_change/action_checker.py,sha256=FlP5_Kz4kYu1AAAWhlSUVJUiXlkuXBUO8k8XcZq6kGI,7154
690
+ infrahub/proposed_change/action_checker.py,sha256=fmHEFcUav6sMTbex_Iuxo62dh112-xGSaiMB3LLIKkQ,7162
690
691
  infrahub/proposed_change/approval_revoker.py,sha256=VgI07wpW0zpvLCxJ7F24EypqBZSw5GBgElFYCR68An0,1184
691
692
  infrahub/proposed_change/branch_diff.py,sha256=cDKlmW8Vi5oWLt3FPSozM4fIwJEBDgnYF0zkYaktqG0,2363
692
693
  infrahub/proposed_change/checker.py,sha256=ZhNEVJKsQbHH2UE1O35MfOVa8cK1QGEqGyn6MsOuqSQ,1558
@@ -702,13 +703,13 @@ infrahub/serve/__init__.py,sha256=cWzvEH-Zwr1nQsoNJO9q1pef5KLuSK3VQLOumlnsQxk,73
702
703
  infrahub/serve/gunicorn_config.py,sha256=BkClF6yjz-sIhZ-oDizXUmGSEE-FQSmy21JfVnRI5tA,102
703
704
  infrahub/serve/log.py,sha256=qUidwbtE5AlyLHnWKVoEggOoHKhfMMjYlUH1d-iGwqg,953
704
705
  infrahub/serve/worker.py,sha256=nNGQORkUM474UiFNfb0GBHo2vx-NuAuZCcscwoKnGwE,1371
705
- infrahub/services/__init__.py,sha256=DYSrfTfq4M32yWFvCJJRDIHzSZUUd5Lrn8thNAw7O_U,6446
706
+ infrahub/services/__init__.py,sha256=K6NP-5cfkwH73PHU6tIT9_Jfscrf-axTkrchGaCLvwM,6454
706
707
  infrahub/services/component.py,sha256=hPEHtFBIClLz8GNByKP4bABVZXN9CcfT__p0KQWnlWw,5688
707
708
  infrahub/services/protocols.py,sha256=Ci4cnWK6L_R_5V2qAPnQpHtKXYS0hktp7CoJWIbcbc0,754
708
709
  infrahub/services/scheduler.py,sha256=TbKg74oBINScHJYtV8_lOuQR2RjxqS6IfU_slyjpNYw,3246
709
710
  infrahub/services/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
710
711
  infrahub/services/adapters/cache/__init__.py,sha256=WsEthxQbcyCOA2M_FzfQr0Cymo4hprCq0m6Vg55uMXo,1919
711
- infrahub/services/adapters/cache/nats.py,sha256=FLGqgDuqf1MD7PRxngiCA1jDdh307ypvaKEMK2P4oxU,5697
712
+ infrahub/services/adapters/cache/nats.py,sha256=kt8XPR07uSIF07o6GHAWbuQPqIWuYSMP8vcpdBZv-YM,5705
712
713
  infrahub/services/adapters/cache/redis.py,sha256=PKFdPncLI59w-KUaHSwgQm9VSJkO2h7xMh9xl-aID7I,2115
713
714
  infrahub/services/adapters/event/__init__.py,sha256=KUA6mW-9JF1haFu4D0G8CTETcR7y_yvpTg7avbQ0wgM,1372
714
715
  infrahub/services/adapters/http/__init__.py,sha256=_IZUvukHSSd8TdgslW5hLGwQ6GNPYanpPX7aClSh3zM,686
@@ -753,9 +754,9 @@ infrahub/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
753
754
  infrahub/validators/events.py,sha256=5K5ACh7KaiRLJSdL3BGtL_3EtT63b8QR4H-4_9fB4ck,1550
754
755
  infrahub/validators/tasks.py,sha256=5KTXqsSyEMQnm5HWPXe62XwRCca161pypUeASKfa-3Q,1442
755
756
  infrahub/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
756
- infrahub/webhook/gather.py,sha256=XNaIGiHDiMjjtSjsVbswOze7cLaL0MKJmvSbZBS-WT0,691
757
+ infrahub/webhook/gather.py,sha256=AU0USUFdtObn97FitA6UBzHx8iI1_IWHUJUisjDHNiU,715
757
758
  infrahub/webhook/models.py,sha256=uWpUMghXDq6Y85CEInGbIAOtDIxfnJFGhFYPHIsjQFQ,10496
758
- infrahub/webhook/tasks.py,sha256=YvuGopZzUoJYt0Lk17QqnRNPmqQ-_qaUBwNMTz1feJk,7259
759
+ infrahub/webhook/tasks.py,sha256=Sq3CwLcxTSuedMBOtYhAHnuqhducmu_wDf3UBFlfnug,8043
759
760
  infrahub/webhook/triggers.py,sha256=v1dzFV4wX0GO2n5hft_qzp-oJOA2P_9Q2eTcSP-i0pk,1574
760
761
  infrahub/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
761
762
  infrahub/workers/dependencies.py,sha256=hbjq6BCBlWWR03vIYNQwtj2HxtNlQ6dvci4thPkKiKs,5373
@@ -902,12 +903,12 @@ infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTM
902
903
  infrahub_testcontainers/helpers.py,sha256=7Cat-Q4bcblg5oLvMW1lwMZ7fxxc5Ba9Q2pvATNcR-A,4883
903
904
  infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
904
905
  infrahub_testcontainers/measurements.py,sha256=gR-uTasSIFCXrwvnNpIpfsQIopKftT7pBiarCgIShaQ,2214
905
- infrahub_testcontainers/models.py,sha256=hT7WEX2o7gxTFPE9uhtP5yigKgP5YSsy2c3tFB-fR7E,1007
906
+ infrahub_testcontainers/models.py,sha256=rEOe8SLcWV65U6pFT-5wl8NXdtGCPq9OtGzXcOnCOis,990
906
907
  infrahub_testcontainers/performance_test.py,sha256=_nf7Uk15mHwqpN4y7XUfI4JI54-UaXW-Yu4uwMIx21w,6185
907
908
  infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
908
909
  infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
909
- infrahub_server-1.7.0b0.dist-info/METADATA,sha256=Q4QKSUSSUmu6IZ7aPEAuJ4MDiD335VTVccXEoMX7qTM,5938
910
- infrahub_server-1.7.0b0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
911
- infrahub_server-1.7.0b0.dist-info/entry_points.txt,sha256=_xSAw1Wp-GslD95j4FESCxU1H7G7B9b42zp8-LAmC8Q,406
912
- infrahub_server-1.7.0b0.dist-info/licenses/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
913
- infrahub_server-1.7.0b0.dist-info/RECORD,,
910
+ infrahub_server-1.7.0rc0.dist-info/METADATA,sha256=CFIHt2dxlTp-Pk06a37o2PuD9cfP01Fg_S5NYhGJ5Wk,5939
911
+ infrahub_server-1.7.0rc0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
912
+ infrahub_server-1.7.0rc0.dist-info/entry_points.txt,sha256=_xSAw1Wp-GslD95j4FESCxU1H7G7B9b42zp8-LAmC8Q,406
913
+ infrahub_server-1.7.0rc0.dist-info/licenses/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
914
+ infrahub_server-1.7.0rc0.dist-info/RECORD,,
@@ -2,7 +2,7 @@ from __future__ import annotations
2
2
 
3
3
  from datetime import datetime, timezone
4
4
  from enum import Enum
5
- from typing import Any, Union
5
+ from typing import Any
6
6
 
7
7
  from pydantic import BaseModel, Field
8
8
 
@@ -23,7 +23,7 @@ class MeasurementDefinition(BaseModel):
23
23
 
24
24
  class InfrahubResultContext(BaseModel):
25
25
  name: str
26
- value: Union[int, float, str]
26
+ value: int | float | str
27
27
  unit: ContextUnit
28
28
 
29
29
 
@@ -35,6 +35,6 @@ class InfrahubActiveMeasurementItem(BaseModel):
35
35
 
36
36
  class InfrahubMeasurementItem(BaseModel):
37
37
  name: str
38
- value: Union[int, float, str]
38
+ value: int | float | str
39
39
  unit: ContextUnit
40
40
  context: dict[str, Any] = Field(default_factory=dict)
@@ -1,36 +0,0 @@
1
- from __future__ import annotations
2
-
3
- from dataclasses import dataclass
4
- from typing import TYPE_CHECKING, Any
5
-
6
- from infrahub.exceptions import ValidationError
7
-
8
- if TYPE_CHECKING:
9
- from infrahub.constants.enums import OrderDirection
10
-
11
-
12
- @dataclass
13
- class NodeMetaOrder:
14
- created_at: OrderDirection | None = None
15
- updated_at: OrderDirection | None = None
16
-
17
-
18
- @dataclass
19
- class OrderModel:
20
- # Corresponds to infrahub.graphql.manager.OrderInput
21
- disable: bool | None = None
22
- node_metadata: NodeMetaOrder | None = None
23
-
24
- @classmethod
25
- def from_input(cls, input_data: dict[str, Any] | None) -> OrderModel | None:
26
- """Convert the dictionary type input data from GraphQL into an OrderModel instance."""
27
- if not input_data:
28
- return None
29
-
30
- order_model = cls(**input_data)
31
- order_model.validate()
32
- return order_model
33
-
34
- def validate(self) -> None:
35
- if self.node_metadata and self.node_metadata.created_at and self.node_metadata.updated_at:
36
- raise ValidationError("Cannot order by both created_at and updated_at simultaneously.")