infrahub-server 1.5.0b0__py3-none-any.whl → 1.5.0b1__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 (104) hide show
  1. infrahub/actions/tasks.py +8 -0
  2. infrahub/api/diff/diff.py +1 -1
  3. infrahub/cli/db.py +24 -0
  4. infrahub/cli/db_commands/clean_duplicate_schema_fields.py +212 -0
  5. infrahub/core/attribute.py +3 -3
  6. infrahub/core/branch/tasks.py +2 -1
  7. infrahub/core/changelog/models.py +4 -12
  8. infrahub/core/constants/infrahubkind.py +1 -0
  9. infrahub/core/diff/model/path.py +4 -0
  10. infrahub/core/diff/payload_builder.py +1 -1
  11. infrahub/core/graph/__init__.py +1 -1
  12. infrahub/core/ipam/utilization.py +1 -1
  13. infrahub/core/manager.py +6 -3
  14. infrahub/core/migrations/graph/__init__.py +4 -0
  15. infrahub/core/migrations/graph/m041_create_hfid_display_label_in_db.py +97 -0
  16. infrahub/core/migrations/graph/m042_backfill_hfid_display_label_in_db.py +86 -0
  17. infrahub/core/migrations/schema/node_attribute_add.py +5 -2
  18. infrahub/core/migrations/shared.py +5 -6
  19. infrahub/core/node/__init__.py +142 -40
  20. infrahub/core/node/constraints/attribute_uniqueness.py +3 -1
  21. infrahub/core/node/node_property_attribute.py +230 -0
  22. infrahub/core/node/standard.py +1 -1
  23. infrahub/core/protocols.py +7 -1
  24. infrahub/core/query/node.py +14 -1
  25. infrahub/core/registry.py +2 -2
  26. infrahub/core/relationship/constraints/count.py +1 -1
  27. infrahub/core/relationship/model.py +1 -1
  28. infrahub/core/schema/basenode_schema.py +42 -2
  29. infrahub/core/schema/definitions/core/__init__.py +2 -0
  30. infrahub/core/schema/definitions/core/generator.py +2 -0
  31. infrahub/core/schema/definitions/core/group.py +16 -2
  32. infrahub/core/schema/definitions/internal.py +14 -1
  33. infrahub/core/schema/generated/base_node_schema.py +6 -1
  34. infrahub/core/schema/node_schema.py +5 -2
  35. infrahub/core/schema/schema_branch.py +134 -0
  36. infrahub/core/schema/schema_branch_display.py +123 -0
  37. infrahub/core/schema/schema_branch_hfid.py +114 -0
  38. infrahub/core/validators/aggregated_checker.py +1 -1
  39. infrahub/core/validators/determiner.py +12 -1
  40. infrahub/core/validators/relationship/peer.py +1 -1
  41. infrahub/core/validators/tasks.py +1 -1
  42. infrahub/display_labels/__init__.py +0 -0
  43. infrahub/display_labels/gather.py +48 -0
  44. infrahub/display_labels/models.py +240 -0
  45. infrahub/display_labels/tasks.py +186 -0
  46. infrahub/display_labels/triggers.py +22 -0
  47. infrahub/events/group_action.py +1 -1
  48. infrahub/events/node_action.py +1 -1
  49. infrahub/generators/constants.py +7 -0
  50. infrahub/generators/models.py +7 -0
  51. infrahub/generators/tasks.py +31 -15
  52. infrahub/git/integrator.py +22 -14
  53. infrahub/graphql/analyzer.py +1 -1
  54. infrahub/graphql/mutations/display_label.py +111 -0
  55. infrahub/graphql/mutations/generator.py +25 -7
  56. infrahub/graphql/mutations/hfid.py +118 -0
  57. infrahub/graphql/mutations/relationship.py +2 -2
  58. infrahub/graphql/mutations/resource_manager.py +2 -2
  59. infrahub/graphql/mutations/schema.py +5 -5
  60. infrahub/graphql/queries/resource_manager.py +1 -1
  61. infrahub/graphql/resolvers/resolver.py +2 -0
  62. infrahub/graphql/schema.py +4 -0
  63. infrahub/groups/tasks.py +1 -1
  64. infrahub/hfid/__init__.py +0 -0
  65. infrahub/hfid/gather.py +48 -0
  66. infrahub/hfid/models.py +240 -0
  67. infrahub/hfid/tasks.py +185 -0
  68. infrahub/hfid/triggers.py +22 -0
  69. infrahub/lock.py +15 -4
  70. infrahub/middleware.py +26 -1
  71. infrahub/proposed_change/tasks.py +10 -1
  72. infrahub/server.py +16 -3
  73. infrahub/services/__init__.py +8 -5
  74. infrahub/trigger/catalogue.py +4 -0
  75. infrahub/trigger/models.py +2 -0
  76. infrahub/trigger/tasks.py +3 -0
  77. infrahub/workflows/catalogue.py +72 -0
  78. infrahub/workflows/initialization.py +16 -0
  79. infrahub_sdk/checks.py +1 -1
  80. infrahub_sdk/ctl/cli_commands.py +2 -0
  81. infrahub_sdk/ctl/generator.py +4 -0
  82. infrahub_sdk/ctl/graphql.py +184 -0
  83. infrahub_sdk/ctl/schema.py +6 -2
  84. infrahub_sdk/generator.py +7 -1
  85. infrahub_sdk/graphql/__init__.py +12 -0
  86. infrahub_sdk/graphql/constants.py +1 -0
  87. infrahub_sdk/graphql/plugin.py +85 -0
  88. infrahub_sdk/graphql/query.py +77 -0
  89. infrahub_sdk/{graphql.py → graphql/renderers.py} +81 -73
  90. infrahub_sdk/graphql/utils.py +40 -0
  91. infrahub_sdk/protocols.py +14 -0
  92. infrahub_sdk/schema/__init__.py +38 -0
  93. infrahub_sdk/schema/repository.py +8 -0
  94. infrahub_sdk/spec/object.py +84 -10
  95. infrahub_sdk/spec/range_expansion.py +1 -1
  96. infrahub_sdk/transforms.py +1 -1
  97. {infrahub_server-1.5.0b0.dist-info → infrahub_server-1.5.0b1.dist-info}/METADATA +5 -4
  98. {infrahub_server-1.5.0b0.dist-info → infrahub_server-1.5.0b1.dist-info}/RECORD +104 -79
  99. infrahub_testcontainers/container.py +1 -1
  100. infrahub_testcontainers/docker-compose-cluster.test.yml +1 -1
  101. infrahub_testcontainers/docker-compose.test.yml +1 -1
  102. {infrahub_server-1.5.0b0.dist-info → infrahub_server-1.5.0b1.dist-info}/LICENSE.txt +0 -0
  103. {infrahub_server-1.5.0b0.dist-info → infrahub_server-1.5.0b1.dist-info}/WHEEL +0 -0
  104. {infrahub_server-1.5.0b0.dist-info → infrahub_server-1.5.0b1.dist-info}/entry_points.txt +0 -0
@@ -5,14 +5,14 @@ infrahub/actions/gather.py,sha256=s6RaegkD9zx7WL8ePS6eGam8TlUA3TH38tarLmQeT98,47
5
5
  infrahub/actions/models.py,sha256=7EVJuGLqEy71sop1XEDLpuAZfLc9ei3hxXPy2FeyY4U,8558
6
6
  infrahub/actions/parsers.py,sha256=L0ZE2gvhSoBZHuHok0wO4UeWo8fyhbnpuMTHHZX_W7c,3997
7
7
  infrahub/actions/schema.py,sha256=tFLVFEOckxIdtrNqZVdVGuhf7UVACG6CIM6QG-Nj3ks,13111
8
- infrahub/actions/tasks.py,sha256=X41SgaXakpAQggXm1L6H7pUxmwlFWaKtb13dcsFsZ9U,10801
8
+ infrahub/actions/tasks.py,sha256=Rbq2P97cs4vC98lyqeC_4z6J0Z1HmG5C9i4YJncC7TI,11208
9
9
  infrahub/actions/triggers.py,sha256=5BKt8NkafArs8tdSQUb2uBtJVXfZrYUePByOn9d7-1Y,772
10
10
  infrahub/api/__init__.py,sha256=dtRtBRpEgt7Y9Zdwy85jpSr8qfO_2xNTgTQLCJPQiZI,2182
11
11
  infrahub/api/artifact.py,sha256=Epqht3e9WjNuQt2N-0m9K7PRTwG883odTknb3Aknr8E,4058
12
12
  infrahub/api/auth.py,sha256=-YqPWBc5zXvGehf8IatHMl_y2xE6hpcfG7VcxnviFkc,1895
13
13
  infrahub/api/dependencies.py,sha256=dwPRQgRjxAsv_O-TteUQpQFEAzhdQUjQ6oKjnI9zuLI,4958
14
14
  infrahub/api/diff/__init__.py,sha256=oXlDkl0C-nHNCdXcLN-KmCUdUICOzk_b0RFgjeYwt7s,47
15
- infrahub/api/diff/diff.py,sha256=Ac42sRQD7__iVBWXqqysZlJtqMTTfHN6j8pbbrPNvqM,2873
15
+ infrahub/api/diff/diff.py,sha256=HcPdLHJGlZqKSgfg3jKirVCmW1s1JRdkn5j3uQ1QCnk,2870
16
16
  infrahub/api/diff/validation_models.py,sha256=tiE2FSq8DbK0W17Ra_HWaHqgr67bRWi8D2TDy54-XCY,1327
17
17
  infrahub/api/exception_handlers.py,sha256=o1gRUbC7MBuygGFq7eyTRejXHM0ZIKt76RRwV4nmUN0,904
18
18
  infrahub/api/exceptions.py,sha256=EjTAN2wawBRyxMWgmafdk2CUdmzAqNokP3QNobifQQI,291
@@ -39,9 +39,10 @@ infrahub/branch/triggers.py,sha256=4sywoEX79fY2NkaGe6tTHnmytf4k6gXDm2FJHkkRJOw,7
39
39
  infrahub/cli/__init__.py,sha256=d8x7c4CIq66zul2w9TdT82qjR5cMXV2zSujovJ4kV00,3948
40
40
  infrahub/cli/constants.py,sha256=CoCeTMnfsA3j7ArdLKLZK4VPxOM7ls17qpxGJmND0m8,129
41
41
  infrahub/cli/context.py,sha256=u2EYq9-vjzzfZdIYIbYmTG67nYSsyVFDPBtJ3KgE7KY,494
42
- infrahub/cli/db.py,sha256=0GBgRFU79CFP8V_wJtq4Jka8bPb1s2Kjz5A84qn553E,37713
42
+ infrahub/cli/db.py,sha256=jAww1AREbsJvOBmAYwROxwnoeUA4VrVAJE1z2VZV2Rk,38667
43
43
  infrahub/cli/db_commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
44
  infrahub/cli/db_commands/check_inheritance.py,sha256=a9aRg6yW0K5364Crqp_U9VDZjT9Shqu3on5nkuoZaYo,11389
45
+ infrahub/cli/db_commands/clean_duplicate_schema_fields.py,sha256=qKVIfxBaBDQeROFP0VctAJqhTLVFyi-Zk6VymsWtJm4,8043
45
46
  infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
46
47
  infrahub/cli/git_agent.py,sha256=ajT9-kdd3xLIysOPe8GqZyCDMkpNyhqfWjBg9HPWVcg,5240
47
48
  infrahub/cli/patch.py,sha256=ztOkWyo0l_Wo0WX10bvSqGZibKzowrwx82oi69cjwkY,6018
@@ -62,18 +63,18 @@ infrahub/constants/environment.py,sha256=ry-6qsBzSumOjjiq1D3XNoquf1LWqFKiQSJj8t6
62
63
  infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
63
64
  infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
64
65
  infrahub/core/account.py,sha256=6f1cIDWvL-HsbzL0UwWoCbDTzx55wzd_SkpQXiKDjcE,27477
65
- infrahub/core/attribute.py,sha256=cRbhDCwuq6l2ld5WpbZcvE0Lmyjtfvt0diROmY_JrZ4,44447
66
+ infrahub/core/attribute.py,sha256=hYvc4T0pKfZrrJH72eZOU2Jkray7ewNhYgic1_hcLHU,44552
66
67
  infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
67
68
  infrahub/core/branch/enums.py,sha256=vGnaTCzikvMcLikKN25TJ8uCmhnD448dp1ve1_tLjwQ,186
68
69
  infrahub/core/branch/models.py,sha256=pI8_OvQX6u90mpRvwAPsj3YC9jNoP9uAEx-L6zntg8s,20355
69
70
  infrahub/core/branch/needs_rebase_status.py,sha256=purrg93k9zWcV9NONjIdMF8cWLXEKHq6YjO0ayC3C04,407
70
- infrahub/core/branch/tasks.py,sha256=yy5b2xzcZPEg3W0sHfqmaRaQ7WRXia65V7o1ZGokL1A,20896
71
+ infrahub/core/branch/tasks.py,sha256=I4Fv9JKNMCT-7TtqV78o4EnUZI7zBp62-zZZ0w0pX6g,21013
71
72
  infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
73
  infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
73
- infrahub/core/changelog/models.py,sha256=UgfJdOFUkMmjeUKe1mPCO7WE3jNENw0UJU3LWFf20HQ,29920
74
+ infrahub/core/changelog/models.py,sha256=oVy-j4pWXs9PAuQgaRohFYsmdPBPNc7FZU3FzxS_klc,29828
74
75
  infrahub/core/constants/__init__.py,sha256=h2yOMEXCjxt7HIrM1OfOGQ-tUz40xfqepxMvuIFijBA,9838
75
76
  infrahub/core/constants/database.py,sha256=x5tWaT3e0WfCxxrHMcSoHUBMfcUzStLi133CqHjSosU,368
76
- infrahub/core/constants/infrahubkind.py,sha256=65xU-8LYBcHbRc3PKAsuE_j37i-1Mpi0LmMXfCWSIUQ,3012
77
+ infrahub/core/constants/infrahubkind.py,sha256=mN1_h877Ti9fA6DLHE7TmBlx71flbF-trw2rS1HXfCI,3060
77
78
  infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
78
79
  infrahub/core/constants/schema.py,sha256=uuddQniyGlSlvKjM5mQ_V2VhgZmQ8fUCAHysbZLvTEU,2006
79
80
  infrahub/core/constraint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -112,10 +113,10 @@ infrahub/core/diff/merger/serializer.py,sha256=N5BJ5I2NkB5RtEMuhDfScM7v19PGCbuXC
112
113
  infrahub/core/diff/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
114
  infrahub/core/diff/model/diff.py,sha256=eS2TjZf9aWTZDvQ479t6C6iXXPtmBqulxA2jWxnEDuU,9501
114
115
  infrahub/core/diff/model/field_specifiers_map.py,sha256=59zsMRuYyb9OJEpH9BZQ9kf2DUiDOM3VtuDGvSK6dJQ,2632
115
- infrahub/core/diff/model/path.py,sha256=lcKTS7hKvu3Rul0k_vxJTrz7G83HhPPedXlthKkr9ag,28844
116
+ infrahub/core/diff/model/path.py,sha256=UQHeYAoI-KWnuAbG6Z-v_eu_Ht5erEnk277WVQL5dlM,28954
116
117
  infrahub/core/diff/models.py,sha256=wmOzW4xQ5YreDCr_i56YMFtxbM4-LRgZort49fGJ0BQ,441
117
118
  infrahub/core/diff/parent_node_adder.py,sha256=AFq2KJHGgUVem4WCg-9Qi9h6TTwt-JID1uGYGBrIZxQ,2840
118
- infrahub/core/diff/payload_builder.py,sha256=5R_QuPM5P_uQONmTDbtpIjhshs_OJCcXLnVYjWw-78Q,2094
119
+ infrahub/core/diff/payload_builder.py,sha256=cJ8o8vNSANOrzK2dC4KoXCOffgnb6Mhi2Ko9MRdZoRU,2091
119
120
  infrahub/core/diff/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
121
  infrahub/core/diff/query/all_conflicts.py,sha256=gWLwkCR2AK0IJccnhcE8vkSHu5ugZfKTDhCoFi4yAJo,3058
121
122
  infrahub/core/diff/query/artifact.py,sha256=jopnYwuYEVvknCXqqI3TQnMH69ABfH49p1Zu6hH9dYY,9098
@@ -141,7 +142,7 @@ infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_S
141
142
  infrahub/core/diff/repository/repository.py,sha256=u0QTMY1e2dknG_DuRAwzFt-Lp1_mdj5lqF2ymt77k9E,25581
142
143
  infrahub/core/diff/tasks.py,sha256=jSXlenTJ5Fc189Xvm971e3-gBDRnfN19cxNaWvEFwAE,3306
143
144
  infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
144
- infrahub/core/graph/__init__.py,sha256=2_7AH-ObUmILq-7DD7GPDWYxj_MZxk3VgQCBMNBIroI,19
145
+ infrahub/core/graph/__init__.py,sha256=9uY9RcHyk7xrLbXeSGLcmHZsI36Unh9q1Ned3cxhnZQ,19
145
146
  infrahub/core/graph/constraints.py,sha256=lmuzrKDFoeSKRiLtycB9PXi6zhMYghczKrPYvfWyy90,10396
146
147
  infrahub/core/graph/index.py,sha256=A9jzEE_wldBJsEsflODeMt4GM8sPmmbHAJRNdFioR1k,1736
147
148
  infrahub/core/graph/schema.py,sha256=o50Jcy6GBRk55RkDJSMIDDwHhLD7y_RWOirI9rCex4A,10776
@@ -156,11 +157,11 @@ infrahub/core/ipam/model.py,sha256=_X4_g9Qhsp0046IkQXsPcskJk6LIhbbDmCiz2ieNT6M,1
156
157
  infrahub/core/ipam/reconciler.py,sha256=48do6rx12G25gaKuOguSrVdUDXVpMr3t6ogU1hdPZvs,8991
157
158
  infrahub/core/ipam/size.py,sha256=Iu7cVvN9MkilyG_AGvYm3g3dSDesKRVdDh_AKH7yAqk,614
158
159
  infrahub/core/ipam/tasks.py,sha256=SRVkCv6TBI_VfTZ_tL_ABDaPn3cUNR6vmBJCuahInjI,1492
159
- infrahub/core/ipam/utilization.py,sha256=d-zpXCaWsHgJxBLopCDd7y4sJYvHcIzzpYhbTMIgH74,6733
160
- infrahub/core/manager.py,sha256=ZDQsxVNZdOMNn-Dm0xgcGLrW3PtTNFMSVaLGnXWwcik,44103
160
+ infrahub/core/ipam/utilization.py,sha256=OKFvcCoxFTkYnwibLhBM2Kbb2vsyI4eX07gtCf_7UXI,6743
161
+ infrahub/core/manager.py,sha256=IU5VfkHLCN4WhvqzI6DOEyCXo9fBT_st5BmN__A4vas,44183
161
162
  infrahub/core/merge.py,sha256=TNZpxjNYcl3dnvE8eYXaWSXFDYeEa8DDsS9XbR2XKlA,11217
162
163
  infrahub/core/migrations/__init__.py,sha256=dIExw90CrdTByeJqpiWkaZBclpAfzatG2H6fXx54su0,1305
163
- infrahub/core/migrations/graph/__init__.py,sha256=jjNnb9CfB-1wyj3RrxGNmGfB85WP_r3gkBZMGSLXB0U,4294
164
+ infrahub/core/migrations/graph/__init__.py,sha256=62QOp-kB0SOyT1st8J7vfBsORMkFWYqbbiAGjtG3eAc,4458
164
165
  infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
165
166
  infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
166
167
  infrahub/core/migrations/graph/m003_relationship_parent_optional.py,sha256=Aya-s98XfE9C7YluOwEjilwgnjaBnZxp27w_Xdv_NmU,2330
@@ -201,6 +202,8 @@ infrahub/core/migrations/graph/m037_index_attr_vals.py,sha256=bJB4yPWE73XA_ErUcn
201
202
  infrahub/core/migrations/graph/m038_redo_0000_prefix_fix.py,sha256=8seWnXQhgEJDFLWxYHVcnMNDPcHq5C24c0RYrtn_WGE,2411
202
203
  infrahub/core/migrations/graph/m039_ipam_reconcile.py,sha256=gUf4Fo3CrzJ2hwbaKlQclripTDrI7cVk_GHsBlBNMKE,10916
203
204
  infrahub/core/migrations/graph/m040_profile_attrs_in_db.py,sha256=gOa8BdKDnRB6PEtDnyjp9Nmu4Fb8ARSu9-hEICYQTuw,7488
205
+ infrahub/core/migrations/graph/m041_create_hfid_display_label_in_db.py,sha256=kMfm40aoOusXguF122t9L7dtfUXUuN85soOG5UeY3iA,3902
206
+ infrahub/core/migrations/graph/m042_backfill_hfid_display_label_in_db.py,sha256=d3GGWfjaSVjizxzo4DnzqYwYSG3TXZ6dpXMRsTyYT38,3150
204
207
  infrahub/core/migrations/query/__init__.py,sha256=JoWOUWlV6IzwxWxObsfCnAAKUOHJkE7dZlOsfB64ZEo,876
205
208
  infrahub/core/migrations/query/attribute_add.py,sha256=oitzB-PPAclfyNtcwCWJY3RdI5Zi4oEnR62BDzn1UQk,4835
206
209
  infrahub/core/migrations/query/attribute_rename.py,sha256=onb9Nanht1Tz47JgneAcFsuhqqvPS6dvI2nNjRupLLo,6892
@@ -212,34 +215,35 @@ infrahub/core/migrations/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
212
215
  infrahub/core/migrations/schema/attribute_kind_update.py,sha256=bJj33I9q1JlcA5RZG7elQVE8kaHcPJbgvm7RrdD86Po,6180
213
216
  infrahub/core/migrations/schema/attribute_name_update.py,sha256=gebaeQX1MLmOxupTPcCzLJdeEQlUzs3XIl7T15-RdXY,1595
214
217
  infrahub/core/migrations/schema/models.py,sha256=F1yp0GM-HutGdzhE0uPFq9JCTH9iHM3V4iDm2e2c4YU,1357
215
- infrahub/core/migrations/schema/node_attribute_add.py,sha256=xFaSahGbBvloSeya5Xqh5KbmlfkqQ4jfN2_DvLFdxEs,3002
218
+ infrahub/core/migrations/schema/node_attribute_add.py,sha256=9c_ZTA4a6yDEFt1dpjTe05CkcLD3S8QSE82_RrfbOIQ,3027
216
219
  infrahub/core/migrations/schema/node_attribute_remove.py,sha256=Il2ccGTlzP8bpXWJmhKxT4sFZEJxsP7tk2YXi9cgzyY,5283
217
220
  infrahub/core/migrations/schema/node_kind_update.py,sha256=scVJz4FhiI2meIVSDTbc9Q6KfGksMDLMwnuxsaZX1aU,1454
218
221
  infrahub/core/migrations/schema/node_remove.py,sha256=NdPNZH9qXf6HbyTMSaQ3aU58XWauAg861w_3D_Lc5tc,7124
219
222
  infrahub/core/migrations/schema/placeholder_dummy.py,sha256=3T3dBwC_ZyehOJr2KRKFD6CXaq8QIjVk0N-nWAMvFYw,308
220
223
  infrahub/core/migrations/schema/tasks.py,sha256=2J8gHGSP-WhxSi4GYhOc9xAJOg_S1ONm3YE4_ukLKxw,4164
221
- infrahub/core/migrations/shared.py,sha256=G72VIHtH4DOM09UOXZE2zfILGDej7nPKdvdfrPRMp7M,7921
224
+ infrahub/core/migrations/shared.py,sha256=2_5fFk3ojKIopwCul1Xl-MH4zk_arJARF2M-FrXul40,7863
222
225
  infrahub/core/models.py,sha256=xwEeXSTD4j13hbyZAjZAlrhXk1hHvWl9I7ve7uUbR7U,26649
223
- infrahub/core/node/__init__.py,sha256=Rrpf2Ma2mEAidlDLnFWhb0o4Rr-dWk3G52pdcF4dpEQ,43383
226
+ infrahub/core/node/__init__.py,sha256=PZLEJUShkKcUtVdiRHtCGIZcOSUGmIF2zsKH59YJ9uM,48411
224
227
  infrahub/core/node/base.py,sha256=BAowVRCK_WC50yXym1kCyUppJDJnrODGU5uoj1s0Yd4,2564
225
228
  infrahub/core/node/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
- infrahub/core/node/constraints/attribute_uniqueness.py,sha256=9MThTmuqZ7RgK71ZZARlw1k1x3ARn1U67g2_Gatd6rE,2099
229
+ infrahub/core/node/constraints/attribute_uniqueness.py,sha256=lcHBk4d3bc12sywxRTnQs18VEm_S6pDcUhNnsXnb-uI,2162
227
230
  infrahub/core/node/constraints/grouped_uniqueness.py,sha256=F5pmnXVuQNlVmdZY5FRxSGK4gGi1BK1IRgw4emCTlLw,9506
228
231
  infrahub/core/node/constraints/interface.py,sha256=fwB32pRLxteQyKRArqekQ0RXlrDkyzp7Vmq03vSpUEo,291
229
232
  infrahub/core/node/create.py,sha256=gDoa-HNLGaLK46u0uzHXPrYmyaATGAtMo9b_0fwFNm0,9331
230
233
  infrahub/core/node/delete_validator.py,sha256=mj_HQXkTeP_A3po65-R5bCJnDM9CmFFmcUQIxwPlofc,10559
231
234
  infrahub/core/node/ipam.py,sha256=NWb3TUlVQOGAzq1VvDwISLh61HML0jnalsJ7QojqGwQ,2669
232
235
  infrahub/core/node/lock_utils.py,sha256=oSpQEwEa-IKtWrG0CZKt6d5PJn8_vD0SQu5q6lUCXjc,3826
236
+ infrahub/core/node/node_property_attribute.py,sha256=afj7RHUtWe-Bz-k9Gv9EVbHTrv6SjSsNqnixMZwVsv4,8871
233
237
  infrahub/core/node/permissions.py,sha256=uQzQ62IHcSly6fzPre0nQzlrkCIKzH4HyQkODKB3ZWM,2207
234
238
  infrahub/core/node/proposed_change.py,sha256=WXwii_MsWOkkd4A_5LVhmE5uIRHZnpNhoySbdXi-hPw,1617
235
239
  infrahub/core/node/resource_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
240
  infrahub/core/node/resource_manager/ip_address_pool.py,sha256=NPCVLTHLdG6BZTJ7MJkqlGCRMkr6V2PyL91ItuoNqpQ,5198
237
241
  infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=SfP0i1aM5tTPU7wKmij4fwzGtmDPeg0s9LRfKMaANOU,5460
238
242
  infrahub/core/node/resource_manager/number_pool.py,sha256=QbPIbBJSGy8Et3PlsRXp7ToFZLO2bpQPk1P4PRtunLk,5762
239
- infrahub/core/node/standard.py,sha256=gvAY-1UWj4lUc8tqVZ8AqOFhCR5rhR--gI25g5AOD8o,7284
243
+ infrahub/core/node/standard.py,sha256=3LdSEc7_YZTHvuz1fAmJF3XBaYzIobrpD1oGfdigsrI,7290
240
244
  infrahub/core/path.py,sha256=CTSnW6OcvnGNqTcOUZcVOMDSB4PLmeGYpY9U84uv9r8,6181
241
245
  infrahub/core/property.py,sha256=mUf8JGUHSUVBaegN7TPmmJ2CnQRGo2d1rQEQQmdNmbU,5386
242
- infrahub/core/protocols.py,sha256=rIeTlKjQAH7ti2VlHEjCU63nfhQWi_ByhWqW4uz-zW8,12586
246
+ infrahub/core/protocols.py,sha256=QoDvLhsvLiJ7Jqouri31ja4apApVN4zmwm_59KTKhs8,12741
243
247
  infrahub/core/protocols_base.py,sha256=cEi6giHtEUmaD0JWfDfWHJhEv_6wjaBA3oJRJCbvc6Q,3411
244
248
  infrahub/core/query/__init__.py,sha256=2qIMaODLwJ6pK6BUd5vODTlA15Aecf5I8_-J44UlCso,23089
245
249
  infrahub/core/query/attribute.py,sha256=m5Rzqn4jlMRpl2d80UtUrkTIiJTisQf_Tfb6wyxRsV0,13058
@@ -247,7 +251,7 @@ infrahub/core/query/branch.py,sha256=aIYyDxpnw_Zw2lqTnMEVlhPUaYckZtJJJU1SFUht1o0
247
251
  infrahub/core/query/delete.py,sha256=7tPP1qtNV6QGYtmgE1RKsuQ9oxENnMTVkttLvJ2PiKg,1927
248
252
  infrahub/core/query/diff.py,sha256=jJCkZRo5jGaf-yPAnQ_5ju6sCnknDK0E7vGpqEnaU_k,36881
249
253
  infrahub/core/query/ipam.py,sha256=dOs_LZr-DONrCPw6t5Ug9mBPn8a-S2NKja3Vr-zIeaM,34523
250
- infrahub/core/query/node.py,sha256=jTxQ8ueFV3dREw6VRJM6nG9-ltuy6Sx5GgcHcjrLmeo,63975
254
+ infrahub/core/query/node.py,sha256=MB8AvMJHD4G5DVM2LhDTcfyH3XI4hPLPMppk2Yw6phQ,64554
251
255
  infrahub/core/query/relationship.py,sha256=8FPCDN8yGDY6iGoC-NGb9XJNdpBugRUKLF1dFxUKjC0,49599
252
256
  infrahub/core/query/resource_manager.py,sha256=uSvs1WZmdbyt_PjaUi9lXnYdPt-lhJV1RjYoUHYjQdk,16620
253
257
  infrahub/core/query/standard_node.py,sha256=mPBXyqk4RzoWRUX4NoojoVi8zk-sJ03GmzmUaWqOgSI,4825
@@ -255,33 +259,33 @@ infrahub/core/query/subquery.py,sha256=VAxY8wwkzrFQIGdQlxXUZ_iJZEtmTSru4sfs8hMNU
255
259
  infrahub/core/query/task.py,sha256=tLgn8S_KaLYLuOB66D1YM155teHZIHNThkt2iUiKKD4,3137
256
260
  infrahub/core/query/task_log.py,sha256=2RdthOAQrmpKZU8uhV_dJCPqwdsSA_1CYSKpL_eZ_yk,1120
257
261
  infrahub/core/query/utils.py,sha256=t9LMvZWdmi10c3E0HAU_5m7x5zMHhYXsUjX7ZBl2RpU,1091
258
- infrahub/core/registry.py,sha256=eSDFD8gbE1rasYIuLQDWlTKO06HVfuDsuEdT9uqn-6U,8560
262
+ infrahub/core/registry.py,sha256=nGbFrg7cQPNW2JjDOGPkQ-igJSHTnuprMcHsAWyJLUM,8606
259
263
  infrahub/core/relationship/__init__.py,sha256=broUBD0iwpSSGKJbUdG66uau67TQ_DRhqT_PFhuk1ag,154
260
264
  infrahub/core/relationship/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
261
- infrahub/core/relationship/constraints/count.py,sha256=JfP_vjnGmhFPHEgbanxRkrO2fM0O-k2vqYbNuyj2OCs,4355
265
+ infrahub/core/relationship/constraints/count.py,sha256=Ndqj0DHiQNyQxrwLfDgAoa3NJ3kspym6NMVSeXqwoxY,4372
262
266
  infrahub/core/relationship/constraints/interface.py,sha256=YJgbO7YxlOSo5rVveE2KQ2_8onUt9vMGl7V_2MnV32Y,344
263
267
  infrahub/core/relationship/constraints/peer_kind.py,sha256=Bropiav4y6r0iU2KfWJ_kmyIoBHWxhsyzs4S1mVR0SI,2547
264
268
  infrahub/core/relationship/constraints/peer_parent.py,sha256=z7elpC8xS_ovAF28Haq-RNpFtTEiUehzowiDgYGT68U,2343
265
269
  infrahub/core/relationship/constraints/peer_relatives.py,sha256=Ye79l7njaWxZkU2chTOaptIjvKBIawsNCl0IQxCTDtM,2737
266
270
  infrahub/core/relationship/constraints/profiles_kind.py,sha256=nEZPGtGcmelZ1Nb8EPcQ-7_zCLCNIYwwWbU6C9fLj5E,2464
267
- infrahub/core/relationship/model.py,sha256=ODoeqon82gtDiywvUs4as6IhhjWpXwhJg82SIABWjVI,48729
271
+ infrahub/core/relationship/model.py,sha256=icbZQyh3oaICJTzZymUzXPzvThnJij2mRLll4Rr6bE8,48746
268
272
  infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
269
273
  infrahub/core/schema/__init__.py,sha256=Tif-BUwYWVQ0PJGZHFog6lFgnwZevXk3iBcr3zK__BU,4192
270
274
  infrahub/core/schema/attribute_parameters.py,sha256=ABL1GEsOl4_CcDvK9_NucGMaF6LUeOjAxbDQVm_G7eg,6516
271
275
  infrahub/core/schema/attribute_schema.py,sha256=zVdhDq4k6NrM2a_gJcUz-JnsFygrc8xRNGX-aHbppHw,10382
272
- infrahub/core/schema/basenode_schema.py,sha256=p6TvskDZwSb58pQ0LliASS4IXpoRl27jmlFTz3FOcsM,28327
276
+ infrahub/core/schema/basenode_schema.py,sha256=Se-pEYgnL2Y6_OSMZrl5BWgW9taBaBaqddL2NoXfArE,29765
273
277
  infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
274
278
  infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
275
279
  infrahub/core/schema/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
276
- infrahub/core/schema/definitions/core/__init__.py,sha256=_csCJOQvLaqwohCTStd8ajd6yJxFeupW4QXQr8iSiS4,5584
280
+ infrahub/core/schema/definitions/core/__init__.py,sha256=7E267s83j8YkZqh4xiO-WpQy_dgcdLdHKVsbLe4NrQ8,5652
277
281
  infrahub/core/schema/definitions/core/account.py,sha256=5-yJJJRtAi1MyJZw88pyTqAklUPTsBzMa2LZkf4FtOs,5421
278
282
  infrahub/core/schema/definitions/core/artifact.py,sha256=6TX4zgK2j2vO7F0lCYLv6Bu7GTAKlD0P3rO7yuXX85o,3954
279
283
  infrahub/core/schema/definitions/core/builtin.py,sha256=eSGZXXV_caLm2WHvRsK6c88EfLjkMlm7VAZ-JVAaEPw,703
280
284
  infrahub/core/schema/definitions/core/check.py,sha256=yhCgLEMAgkhI5OufxI1ZA9P2UoOXvkPcNG5neL6oH8s,2152
281
285
  infrahub/core/schema/definitions/core/core.py,sha256=wpe0p4V0vpA70epcP0ZEXBEek17yP-t1TOQigNkUrmw,395
282
- infrahub/core/schema/definitions/core/generator.py,sha256=gI8ZU7PLaT-AikKpwlL-gP9GBypHycqgJrgaHIitaj8,3201
286
+ infrahub/core/schema/definitions/core/generator.py,sha256=eSJ6KQg1BX6pFkniRWNNMjRV0LefgMht4mkNSe9pRoM,3394
283
287
  infrahub/core/schema/definitions/core/graphql_query.py,sha256=FOTJ7RoQpLqEbkqs2zWG2RhbrU-bVDRPko7xpz-h9Vs,2477
284
- infrahub/core/schema/definitions/core/group.py,sha256=MEaEPEESRTIfdWVg_-Q8W2u2GIhzbgTAPSJrY1R2Q9g,4529
288
+ infrahub/core/schema/definitions/core/group.py,sha256=BHfK1BTGv7MWfuwrjbWOWk9HNKuSEw6XfH0VEQGR8Lk,5021
285
289
  infrahub/core/schema/definitions/core/ipam.py,sha256=d62UBBiu7ldbQU3i--rYRub7YPsKHzyKashGqy9bRB0,7906
286
290
  infrahub/core/schema/definitions/core/lineage.py,sha256=Yb8Keh915Miv36azaoDdsBvNDJJNtYestur3o_uXw7o,498
287
291
  infrahub/core/schema/definitions/core/menu.py,sha256=PA5-b8d9t3eLr2SH89rnt1LW0B7hZIgeMQvdkR3Rfzc,1733
@@ -296,21 +300,23 @@ infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2
296
300
  infrahub/core/schema/definitions/core/transform.py,sha256=UB2TaBjabIiErivBR16srxq7fgYoKjmjZaVun8vxXvY,3061
297
301
  infrahub/core/schema/definitions/core/webhook.py,sha256=rpJ0aw5e64C9WQ5xFx1FvJ7G9tsyZyYIib89OEM4pn4,4346
298
302
  infrahub/core/schema/definitions/deprecated.py,sha256=PUXfRupaxNT3R_a6eFnvAcvXKOZenVb7VnuLAskZfT0,829
299
- infrahub/core/schema/definitions/internal.py,sha256=KXXLBybIIfEE3HVCsQtlSCKSqTKQ7epa7-I64UvpFa4,34526
303
+ infrahub/core/schema/definitions/internal.py,sha256=3V0DYQ7CRXdIaT19BZKTA9-lQIPiUcp5nhOOi1D8BkQ,35126
300
304
  infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
301
305
  infrahub/core/schema/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
306
  infrahub/core/schema/generated/attribute_schema.py,sha256=twhckKUz9SEMnDg-bUzTmTHn7W6MF0KFB6R5IFTYvzk,5618
303
- infrahub/core/schema/generated/base_node_schema.py,sha256=YR4FxbXd_K6Z0qim5oBQ4EsKSBJMf5DVCuoXZ8LnmMg,4428
307
+ infrahub/core/schema/generated/base_node_schema.py,sha256=0c9hN4O66HvDh4jrK6NAk37aRXhLtDXpJdBUbzGeukI,4646
304
308
  infrahub/core/schema/generated/genericnode_schema.py,sha256=FvfeYfld9YeKHOzyH6G3zFkZP_ETrWfvvOpggLT8waY,1059
305
309
  infrahub/core/schema/generated/node_schema.py,sha256=PMgbQX1PC5ixQsjOFw_bcEfa4txGNUI6BV6OkFDG3wQ,1631
306
310
  infrahub/core/schema/generated/relationship_schema.py,sha256=F198_LNmQRV0xSEBPRA3vBAioEItpYZVNApOmdb8_E4,5851
307
311
  infrahub/core/schema/generic_schema.py,sha256=KSd5fwMDR2hjrsb1vOaK83Lw5jJAob1FLoudgU5_E2Y,1594
308
312
  infrahub/core/schema/manager.py,sha256=ImD9jTctdkVc6UXyynP8PUZ2gE6wr87upTpelcLzBfI,33245
309
- infrahub/core/schema/node_schema.py,sha256=cWeQ2iu6Z9Ay6l2gYnPRnS0JAqYQccueYhpEcfep9Mo,6252
313
+ infrahub/core/schema/node_schema.py,sha256=W2Jx5QXrQ5ygUEyTKnIHhj6Xe7jJ6Y-iQArEo05cWRI,6341
310
314
  infrahub/core/schema/profile_schema.py,sha256=sV4lp1UyBye12M7BJcA2obb4tx3M9J5P89SLqkmFxJY,1237
311
315
  infrahub/core/schema/relationship_schema.py,sha256=ryCvmUQl3HBo_Sk07Xl5rT48PPuhlBkYRmm-lSdfJPI,8445
312
- infrahub/core/schema/schema_branch.py,sha256=daHNZnzJWco4G14t1f24XeQgy0Eg1lsa6b1gA1WnSGE,106329
316
+ infrahub/core/schema/schema_branch.py,sha256=e-xYCT9IjKv195rzRsyJonIfgQXV58Itjzli-fhJOSo,112967
313
317
  infrahub/core/schema/schema_branch_computed.py,sha256=14UUsQJDLMHkYhg7QMqeLiTF3PO8c8rGa90ul3F2ZZo,10629
318
+ infrahub/core/schema/schema_branch_display.py,sha256=geakFn1bgpqRdiVfvjoZs9iB2_XJw3MCD9PruWJZD84,5481
319
+ infrahub/core/schema/schema_branch_hfid.py,sha256=70G5NTqdORhDmE-0nfj8Y3snMjlWn-Rb-9dK1hhnyGA,4785
314
320
  infrahub/core/schema/template_schema.py,sha256=cn7-qFUW_LNRfA5q6e1-PdzGSwubuCkLTL6uad2GhdQ,1229
315
321
  infrahub/core/task/__init__.py,sha256=Ied1NvKGJUDmff27z_-yWW8ArenHxGvSvQTaQyx1iHs,128
316
322
  infrahub/core/task/task.py,sha256=WKU59GbSq5F_qJatiC4J76GGMYhw-BfpWwxMlvqr8WQ,3800
@@ -319,7 +325,7 @@ infrahub/core/task/user_task.py,sha256=bjHR2lZf4N8t_RFZQ5YUAUeHiTX2NwClkTZHvu2oI
319
325
  infrahub/core/timestamp.py,sha256=htKK3byVUk23PWQyfIOKK9OmN0HWjJC4xcaRTnLNkjw,1031
320
326
  infrahub/core/utils.py,sha256=SzOlfsV5Ebp6VeJXARDIm4C3UUNZsNlXerlQbLMappc,9146
321
327
  infrahub/core/validators/__init__.py,sha256=0287h4i-oCL1seKlcQmZtSdepn-25JBKo5XkRrsiXL8,3189
322
- infrahub/core/validators/aggregated_checker.py,sha256=KA23ewrwOz8EsezsvF8cY4U0js_d5YPbeqESjG5sWl0,4719
328
+ infrahub/core/validators/aggregated_checker.py,sha256=F-Q8L8U8VauAfDy1JnA5JWE0dXXTWo8PykbGTiSEA2g,4716
323
329
  infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
324
330
  infrahub/core/validators/attribute/choices.py,sha256=YFTt3pM5WzgtXpTLJVniWH-SG2784J07zy4elKNT4r4,5374
325
331
  infrahub/core/validators/attribute/enum.py,sha256=3PzkYUuzbt8NqRH4IP4cMjoDxzUvJzbNYC5ZpW5zKZQ,4161
@@ -331,7 +337,7 @@ infrahub/core/validators/attribute/optional.py,sha256=qczSkKll4eKsutLgiVi_lCHgqa
331
337
  infrahub/core/validators/attribute/regex.py,sha256=DENGbf3H5aS4dZZTeBQc39bJL8Ih70yITqXfpAR6etU,4201
332
338
  infrahub/core/validators/attribute/unique.py,sha256=yPuh0tug8oXNNgrb7DN8sxkHHb5TlXHkMbYK_wz8zX8,5142
333
339
  infrahub/core/validators/checks_runner.py,sha256=xaIfgRLrwDk-9GVx0UilSub8Ee3EPudi5GpY51C5xLk,2513
334
- infrahub/core/validators/determiner.py,sha256=PfD8W6gNfjyMBqmPZV-DkVef98p6Xo79-OrvgL9EmWs,9173
340
+ infrahub/core/validators/determiner.py,sha256=kpj75My8bmEaQLe4wFDXQuWpO_pBVFqjvIrNNswEGHI,9660
335
341
  infrahub/core/validators/enum.py,sha256=RZLYqaMpl_yr91YqngqJ34QCqHIiebQDuDuUaz0B2Gc,747
336
342
  infrahub/core/validators/interface.py,sha256=OqSq8myM73Hik6pzZFVC42-_PHg4qwn2xJLd_AhYU1w,560
337
343
  infrahub/core/validators/model.py,sha256=QtnEt3FBcsPk0cSROgsj93Zr20ZMI-yRXQOa-vEwpTw,1636
@@ -348,9 +354,9 @@ infrahub/core/validators/query.py,sha256=0PCDoYczx6mCthnQH3datjNIm-GKxqS24JkxpzN
348
354
  infrahub/core/validators/relationship/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
355
  infrahub/core/validators/relationship/count.py,sha256=AjXLSx3LqG74rnpFXY0LBCahs5aFl3GWjyCC2DwcyGA,8598
350
356
  infrahub/core/validators/relationship/optional.py,sha256=X1nGKt19RumNInZ0Ij-fEcq6-TrwrJcGOW4rrsQsdV8,4339
351
- infrahub/core/validators/relationship/peer.py,sha256=l6VxKWDn3qjD6y93RNNCjlhYe8tgag5aKhcC99vP2YI,12783
357
+ infrahub/core/validators/relationship/peer.py,sha256=4Kij_nR2ekyFyv78W_-BIwS8VAE4qIilmDmtn_IXjj0,12800
352
358
  infrahub/core/validators/shared.py,sha256=dhCz2oTM5JxA3mpcQvN83KIKIv-VNPSiG0lh4ZiTAFw,1345
353
- infrahub/core/validators/tasks.py,sha256=GhojeqH4YErlwyY3xzhW8hw4VS3JaB8-VQQKp5tdtLw,3913
359
+ infrahub/core/validators/tasks.py,sha256=Qb9q2l55NKhvWXCrZclVWvJhzsN3yniN7nsYqULl0wA,3930
354
360
  infrahub/core/validators/uniqueness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
361
  infrahub/core/validators/uniqueness/checker.py,sha256=5WbYjS4yfezsK0Ez35Vp9soJ9K0mA_w-lPSXrivjyQg,10494
356
362
  infrahub/core/validators/uniqueness/index.py,sha256=Jw1o-UVinQquNduZ5vCCzt8GUfIEdVzBo-1XyRti8F8,5068
@@ -423,14 +429,19 @@ infrahub/dependencies/component/exceptions.py,sha256=B_ecp1bPThvFhnJRFiPkIQ6YPcH
423
429
  infrahub/dependencies/component/registry.py,sha256=E1K5uK7LU5MK6SxrUjajBw4K1I7dCyAMRfQBxV2yzq0,1435
424
430
  infrahub/dependencies/interface.py,sha256=pVNdGYVeGlJgmBBlnv-3UYPXeZqZT8mx9Sg4SsqME40,446
425
431
  infrahub/dependencies/registry.py,sha256=YNv73l66EIYDBLaxeeWfGStl8MY6Xz_HpQY1osXVoug,4520
432
+ infrahub/display_labels/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
433
+ infrahub/display_labels/gather.py,sha256=FVMB6dGh3rwUKvxlqHOYrmxAEOuRkw7AC4SHjtL3w5Y,1786
434
+ infrahub/display_labels/models.py,sha256=eOnbMy70qtw8je2ltYxW9BMSt2UO0T6H8ouHJATW_wE,9779
435
+ infrahub/display_labels/tasks.py,sha256=pH5AF02p3_7L1ZGFP04aqAbnrgFLd5kA_PR1vwgHP-0,6734
436
+ infrahub/display_labels/triggers.py,sha256=dWMKAC5w525bz6MnDF8kQFbDsSL-qI8A7zcZRP2Xq6U,966
426
437
  infrahub/events/__init__.py,sha256=6BtpkdstvgnMYvUWc-q2dqiA08ZRaU-Xs4vmhWpOJXs,1702
427
438
  infrahub/events/artifact_action.py,sha256=-j_Sh-_NdJIGJhUDYm5DoZS--eIYsaMsejj36OUE6yk,2823
428
439
  infrahub/events/branch_action.py,sha256=73j9oWwSLg65WAjpq_d2QcOKfcy8Y9kAjP8A2YrOOIM,4692
429
440
  infrahub/events/constants.py,sha256=VCbUeHSWRT308We7vDVYkopGlkQQ23UEIGzv9a8kyf0,121
430
441
  infrahub/events/generator.py,sha256=J3G2-lixFVgrNqcEX2GiPz2nj6TTiUHs12za07U8NZg,3958
431
- infrahub/events/group_action.py,sha256=UWbvoCuk1gvDN5osIvYgs6UZmD8Xqfv2Iro5SIoNQ0Q,3960
442
+ infrahub/events/group_action.py,sha256=BvEBQCdn5MoKb7btx2Kb9dWoqOVummthY01oKNDaye0,3994
432
443
  infrahub/events/models.py,sha256=Ljwk1SJaLF0pcM_3K_D9plhce3f53bk6gTSW9GdYJSs,7229
433
- infrahub/events/node_action.py,sha256=UagMAcK9gfCJYCnkGEAPuVHLpFzNvlqW1glXcKSn8dk,7093
444
+ infrahub/events/node_action.py,sha256=JlYfDjSmZVGlUIRzuCKSwj01LApkNQKtjwP1ooWszw4,7127
434
445
  infrahub/events/proposed_change_action.py,sha256=EpBkEsHmiyRZiiIKGfxSHd1kwWOecKU70QmiDuHM8oY,8453
435
446
  infrahub/events/repository_action.py,sha256=5x0boObzGipVb_QGQfNOXBrtENs-SNAjruttBzG4HZg,919
436
447
  infrahub/events/schema_action.py,sha256=IvsCvEWsnl7CArJT5DqBn7nF7xmE8JdOHdcVqjeLWGk,1429
@@ -438,13 +449,14 @@ infrahub/events/utils.py,sha256=JmyKKKDjyD3LS9LlY9_AetL8hBb8EdEfRlreUihskTs,649
438
449
  infrahub/events/validator_action.py,sha256=nQJH-RWcgr3-tzmIldvPmu5O7dUAmv1qQnuxxypBEto,1881
439
450
  infrahub/exceptions.py,sha256=cbM-f_2U-5ZFVZ_MaaXgs64k4M7uJ7fqDU2iCRoWlYY,11861
440
451
  infrahub/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
441
- infrahub/generators/models.py,sha256=_vYOXRheOk1J2eTHQvEXWHrLgvLmNXLh8wzVqfgy1Ao,3291
442
- infrahub/generators/tasks.py,sha256=LNwG58hHO1c1gzjSa_33hI045i7RsM9pFas2GhS1Dfs,9706
452
+ infrahub/generators/constants.py,sha256=T_GuUuqzRwn7akkAD58TquJBU6EOzGmj1PC8q0yyRo8,150
453
+ infrahub/generators/models.py,sha256=TjTz9tOAXHHFS51CtGPp_CrTE7Hv6RN5rvOxSee4s38,3682
454
+ infrahub/generators/tasks.py,sha256=6bAvAcrwN0B9Z4Wo9jsuRGCyjn3WqdNVQhoeYFmeIjs,10736
443
455
  infrahub/git/__init__.py,sha256=KeQ9U8UI5jDj6KB6j00Oal7MZmtOD9vKqVgiezG_EQA,281
444
456
  infrahub/git/base.py,sha256=-zOrbaijG-HWWmZ09sxK8XT1vxx126FwCsZ3mDFBNos,40291
445
457
  infrahub/git/constants.py,sha256=XpzcAkXbsgXZgrXey74id1sXV8Q6EHb_4FNw7BndxyY,106
446
458
  infrahub/git/directory.py,sha256=fozxLXXJPweHG95yQwQkR5yy3sfTdmHiczCAJnsUX54,861
447
- infrahub/git/integrator.py,sha256=fpeOC1ycVYZixPcrR-TwmZXHgaAvXpPd50ys04GFXdg,62889
459
+ infrahub/git/integrator.py,sha256=dgOSLYN1l5X5utkRXT_65lljWvJTeEYo3jWDuF-7vQQ,63114
448
460
  infrahub/git/models.py,sha256=tu-YRNZ4nlYZ6QbBWhydFRcVa0nlN7Cl3k5U0yLi53Y,12250
449
461
  infrahub/git/repository.py,sha256=wPsJAA9aHTHdfw0gqCfkNHvcivs7JabsDf-uazptZt0,10928
450
462
  infrahub/git/tasks.py,sha256=QRBqmGODtuDJyHoL8wFOBeE0_cY-m5xRGaPbKn1-CzQ,37584
@@ -454,7 +466,7 @@ infrahub/git_credential/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
454
466
  infrahub/git_credential/askpass.py,sha256=BL7e4Xkx5la7XFk-GQR6MXxV5B29Mzb5ZnVnljd7Xpw,1513
455
467
  infrahub/git_credential/helper.py,sha256=cwSMKRTgqrqIBM66jEOtlj4MMLf647KJWmtnnVxFtTY,2337
456
468
  infrahub/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
457
- infrahub/graphql/analyzer.py,sha256=TAWo4AWMr33MFjK3YcYBxXSjdwRHxU2HzpIuY9tTHqU,30516
469
+ infrahub/graphql/analyzer.py,sha256=Y1c-9gd0vyZqFHib4kaA2G5Ct3A7X8AotA3Oh8vpaV0,30533
458
470
  infrahub/graphql/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
459
471
  infrahub/graphql/api/dependencies.py,sha256=tno-vUerO7dDFw_B95UTZnbqRiwl_VJIhzgwJe8wdRY,1643
460
472
  infrahub/graphql/api/endpoints.py,sha256=13p_5dKDkFSGv4YoSrkIZxAGpF8-Kf__j8Vuj4E4rpU,1515
@@ -492,8 +504,10 @@ infrahub/graphql/mutations/computed_attribute.py,sha256=JAPVjDrEC-a-bTVKD5pYW3Qe
492
504
  infrahub/graphql/mutations/convert_object_type.py,sha256=Jh2Ao2FjxB2gHeTailr8nWT56by7mIKCREKvV9iuu4I,3927
493
505
  infrahub/graphql/mutations/diff.py,sha256=UfEkgIeKsxr79U0_ih7mhl0986rFITM_GDXevsWBSqo,4776
494
506
  infrahub/graphql/mutations/diff_conflict.py,sha256=JngQfyKXCVlmtlqQ_VyabmrOEDOEKYsoWbyYSc9TT5c,3147
495
- infrahub/graphql/mutations/generator.py,sha256=Ulw4whZm8Gc8lJjwfUFoFSsR0cOUliFKl87Oca4B9O0,3579
507
+ infrahub/graphql/mutations/display_label.py,sha256=1Zp8FFeLuelnTYvbcpGONGJBhDFIj7iHSCoYjQZfVM0,4201
508
+ infrahub/graphql/mutations/generator.py,sha256=7YSg_0Q4fe2Qh9MdLcCUU5h1sWLTG5HcnuNNr5b1SCA,4566
496
509
  infrahub/graphql/mutations/graphql_query.py,sha256=a8tCTrjJipwIghmxlcUkH1Hx_7tem5QhzrTczcwpuZM,3644
510
+ infrahub/graphql/mutations/hfid.py,sha256=6sCxWyNJd3Yr1MMXhTs1o1fRKUxpI5RpJlvJ3tiEie4,4518
497
511
  infrahub/graphql/mutations/ipam.py,sha256=U0YjlMK5LrN53YTzg4xjq9nKDpSUikjMoyzs7XOF0LE,16521
498
512
  infrahub/graphql/mutations/main.py,sha256=m0swcGOnkZ-nSRUv_joJfJ0387ZpYpbdM6mMvK43kxU,17387
499
513
  infrahub/graphql/mutations/menu.py,sha256=NSdtUobZ-5dsQdBFfD1xyoE9dKw9FS62T_6UQM0cEUY,3790
@@ -505,10 +519,10 @@ infrahub/graphql/mutations/node_getter/by_id.py,sha256=azERy5XBUe4fYf4t1rhKEn64M
505
519
  infrahub/graphql/mutations/node_getter/interface.py,sha256=3MVTz_3EQnI7REp-ytQvgJuEgWUmrmnRIqKpP8WHCyY,419
506
520
  infrahub/graphql/mutations/profile.py,sha256=7Lf_ITtZVdlcQ_Fc70JrHcUuv8AHVEbv-nvN4fOvVa0,7306
507
521
  infrahub/graphql/mutations/proposed_change.py,sha256=LePFl5VGvtVbT7HHLPY9SXqfUDgqStLyNlPfwxWALOQ,20033
508
- infrahub/graphql/mutations/relationship.py,sha256=pOyqmJGuagrWeH8DlXaZ2X_F9Qrogx0OTOGvCjYpWT4,21937
522
+ infrahub/graphql/mutations/relationship.py,sha256=wAMmCcjQKLNrVeV9AnpC50sC0DufTS51SlPhGwn07bA,21943
509
523
  infrahub/graphql/mutations/repository.py,sha256=Elum8rrgIZLIU2XI6H5vvEftIpqcLKqAyqPxlpuuQ4Q,8587
510
- infrahub/graphql/mutations/resource_manager.py,sha256=DvnmfXmS9bNYXjtgedGTKPdJmtdaCbM5qxl0OJ-t1yQ,11342
511
- infrahub/graphql/mutations/schema.py,sha256=6N70sGn-g5LNyfWwJZ-gonjbCY-Kc1IOukof3Np6pQQ,13568
524
+ infrahub/graphql/mutations/resource_manager.py,sha256=y6_SlL-YaRflJ4CDe65dRXyZQHVk1SBxH-sIxmOKYIc,11336
525
+ infrahub/graphql/mutations/schema.py,sha256=5dsi5Xnnk--p6v9hZcgtaAXIizcfmE-faIJray7FyjA,13653
512
526
  infrahub/graphql/mutations/tasks.py,sha256=GsZVSVfBr1NgNPEHY_OHA5Y9tIbimyEcrYE7XsXXwFw,3815
513
527
  infrahub/graphql/mutations/webhook.py,sha256=me61Xp-Ntucmbg1yRi3FNSPMnop6keoJqALsEp3Cv2g,4912
514
528
  infrahub/graphql/parser.py,sha256=MBvCnj4J0zYCdIf86_sxKF1Y_eaI3KHlQqdBae958Ok,9035
@@ -524,7 +538,7 @@ infrahub/graphql/queries/internal.py,sha256=pcGLpLrY1fC_HxHNs8NAFjr5FTFzcgRlS1F7
524
538
  infrahub/graphql/queries/ipam.py,sha256=dXhzjMBusKDJTJ5gSK_RIVffrH3PVvlpCFdFJhxGFaU,5030
525
539
  infrahub/graphql/queries/proposed_change.py,sha256=C0bHWiDz-J_MQgdmuap9tIQaFahv-TSXizkcs90FZrU,3083
526
540
  infrahub/graphql/queries/relationship.py,sha256=STAZa1Xo5fdMHKdEFLmuw-LDD2mo5qkOfeKLpKwu_30,2584
527
- infrahub/graphql/queries/resource_manager.py,sha256=8FnfABvyrSQS5sqf1CySjamjcZ-IrXo8RsKAkNK662g,15306
541
+ infrahub/graphql/queries/resource_manager.py,sha256=L0non2b2UQ9auNsv7qky1NQ7sOYtt9dVX10_j66Mxx0,15303
528
542
  infrahub/graphql/queries/search.py,sha256=Z1Llqi7Sd-2QL5HGHOF8IAHYbKoM3jMsdkMILeqakA8,4995
529
543
  infrahub/graphql/queries/status.py,sha256=BSCBT4abaswlfh7JZB8mk_rR-6FXIx-wxQA_YwiWvI4,2124
530
544
  infrahub/graphql/queries/task.py,sha256=UG9Ur2CH5GOmfyk34ItqAPuCEkqIhdU-G1n6C3iK_lc,3921
@@ -532,9 +546,9 @@ infrahub/graphql/registry.py,sha256=5aPKWeWbgAxhvozv2c23R2UNScJ1Zd-tNw9QHEGyrDY,
532
546
  infrahub/graphql/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
533
547
  infrahub/graphql/resolvers/ipam.py,sha256=p36FzgHQ5ZIG4Smf7EJ6h6w5sqTQcQxR27OjSOMsEOo,16698
534
548
  infrahub/graphql/resolvers/many_relationship.py,sha256=Xw5qodU6X2tw8uN7GLfWs-rxru_K56RWalBcJIZqJkA,9795
535
- infrahub/graphql/resolvers/resolver.py,sha256=MCX_R1OHSvaHncs8R1FNVNGIDm4wUdmf1NI8ZmDTUzY,11880
549
+ infrahub/graphql/resolvers/resolver.py,sha256=yS99x9ewDZn68NoylA1CzuFoMjPPdD3SNTHMs7Y3MI8,11966
536
550
  infrahub/graphql/resolvers/single_relationship.py,sha256=atEvh5vWoc934B3tXZUYtF5iRnKdvM2gp8Kzsf5xogI,7008
537
- infrahub/graphql/schema.py,sha256=dOLxHEEO6gMaHAL0gXLDLJdCDc9zQ3eRY09QcrGtmNI,5143
551
+ infrahub/graphql/schema.py,sha256=Urr95dLCqvgiECCG4KAxNGmu9OQHHaYfzsimY1vtIE0,5342
538
552
  infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
539
553
  infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
540
554
  infrahub/graphql/subscription/graphql_query.py,sha256=U9PwREMghxbuIoGWh3_rV33wKPzDyMILZ8_tuniwukg,2266
@@ -557,9 +571,14 @@ infrahub/groups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
557
571
  infrahub/groups/ancestors.py,sha256=ORNXupyZLOhtuQ-TxToONqJn-2OHFBPGubz-2cQpSwc,981
558
572
  infrahub/groups/models.py,sha256=YAeaJR01oJdUhhnll9sUvXcK1367hzclqzjd-CScY1s,783
559
573
  infrahub/groups/parsers.py,sha256=A60n-JmT-8F-7ATugV97R-mPWpRhNVNxqEbpibxiiUs,4260
560
- infrahub/groups/tasks.py,sha256=yg-VNj37iWdBHyPE9BhN2QzjVo2D8glnlO37pwGcdsU,1563
574
+ infrahub/groups/tasks.py,sha256=VthFsyWwFveUehapjitBY1r1iODjWwW_KPsvvGE8oGw,1580
561
575
  infrahub/helpers.py,sha256=KchbQqgipU4VjfwnDbzCGjnEv-4espw_g63Zw4KAhbo,251
562
- infrahub/lock.py,sha256=wuAdzQ8PCsJJHjIhJzO1-y5NQO1MSINhkoN1oGnJQyw,9408
576
+ infrahub/hfid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
577
+ infrahub/hfid/gather.py,sha256=ruv1NtzAuDO0Q6XsAjNsj0ujeXwqHxYOB1tVobPFf4U,1691
578
+ infrahub/hfid/models.py,sha256=DZ6bX0sIcYB6nEbdDWzEVs6seqa2FU3dTT3sTP1PCXw,9481
579
+ infrahub/hfid/tasks.py,sha256=csMvtWJmlnX6V61Uf37ZOpnYby5kt-z37KdIdTkAqDM,6487
580
+ infrahub/hfid/triggers.py,sha256=A0-oB1GvvfLJFQ9HsL44vFz-ZVgpsSKOhIkDUiL-5fw,912
581
+ infrahub/lock.py,sha256=CWg9JQ7nGHCHMirML1nuR6cmtw2Zs0Xg_6rz-noqEjE,9721
563
582
  infrahub/locks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
564
583
  infrahub/locks/tasks.py,sha256=x0ihuIkSHLVj2kvefC_VF7ja_FhCAEnS0zi44P2h-jc,1383
565
584
  infrahub/log.py,sha256=4FP80DGY5sk9R7CjcDpPiTfxuow-nfbhXWVpDByCVrw,2817
@@ -587,7 +606,7 @@ infrahub/message_bus/operations/refresh/registry.py,sha256=ny-8_Gsd46CgdDm_ZXBwM
587
606
  infrahub/message_bus/operations/send/__init__.py,sha256=ivuUTAknLiWfArR44SxA40l0UKVkdHjtDIx0mg06IcE,39
588
607
  infrahub/message_bus/operations/send/echo.py,sha256=656IFCpl2EA6EQjA2iwdJtYyo4yKb6iiv4r3oqQEd6o,712
589
608
  infrahub/message_bus/types.py,sha256=FO03DpApTBozN8ZUgQRWO5zK2ymolhhJEwrRgDWLSEs,4438
590
- infrahub/middleware.py,sha256=g6lPpXewWNcLjyzRsr7FjdTIbdc5H2HitGQX-L7itgI,657
609
+ infrahub/middleware.py,sha256=Su129MXkXazE9ODlIZ_KtuRHOakMsOHbVKIx15NKXpU,1547
591
610
  infrahub/models.py,sha256=QmwJwo3hNCta8BXM7eLsD9qv1S73Rj0cC_crLpadHTc,715
592
611
  infrahub/patch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
593
612
  infrahub/patch/constants.py,sha256=dhJ9XGujYq_t3RL6PC3wvP47UPvf3MvMPrU-hISOv1U,479
@@ -637,7 +656,7 @@ infrahub/proposed_change/branch_diff.py,sha256=IdMxf5zPmhybQKPPz7AlruNmLCKf5VISP
637
656
  infrahub/proposed_change/checker.py,sha256=ZhNEVJKsQbHH2UE1O35MfOVa8cK1QGEqGyn6MsOuqSQ,1558
638
657
  infrahub/proposed_change/constants.py,sha256=auifG94Oo2cJ4RwZx4P-XDPDpKYPtEVxh013KPfiEdU,2080
639
658
  infrahub/proposed_change/models.py,sha256=ivWJmEAihprKmwgaBGDJ4Koq4ETciE5GfDp86KHDnns,5892
640
- infrahub/proposed_change/tasks.py,sha256=-jAIhul4RCqx5MRWM1ITHoa1S7CEmQC06vsBKXfvTLk,64037
659
+ infrahub/proposed_change/tasks.py,sha256=Zl0-RLVZ_h8PId3a-xltSkl291o_E2RaQFTw7sk_T7A,64689
641
660
  infrahub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
642
661
  infrahub/pytest_plugin.py,sha256=u3t0WgLMo9XmuQYeb28mccQ3xbnyv2Fv173YWl1zBiM,6678
643
662
  infrahub/repositories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -649,8 +668,8 @@ infrahub/serve/__init__.py,sha256=cWzvEH-Zwr1nQsoNJO9q1pef5KLuSK3VQLOumlnsQxk,73
649
668
  infrahub/serve/gunicorn_config.py,sha256=BkClF6yjz-sIhZ-oDizXUmGSEE-FQSmy21JfVnRI5tA,102
650
669
  infrahub/serve/log.py,sha256=qUidwbtE5AlyLHnWKVoEggOoHKhfMMjYlUH1d-iGwqg,953
651
670
  infrahub/serve/worker.py,sha256=nNGQORkUM474UiFNfb0GBHo2vx-NuAuZCcscwoKnGwE,1371
652
- infrahub/server.py,sha256=Ixj3vhwBX83TnsNCbZo8LGQpQk0nv7QEUVBpmCitC7k,8129
653
- infrahub/services/__init__.py,sha256=P9jeX6gKxpzbjyZDJ24N7cm9DYmfOu8njo44sHFvAko,6232
671
+ infrahub/server.py,sha256=9PEoZeVRtKuoVmqQdwzbrdvc2tzbK17LR6ZEKtpG9Dc,8361
672
+ infrahub/services/__init__.py,sha256=AnPEt8fbqmKehJoW4TRpePQcu97b3A65OGVnoukLPGg,6379
654
673
  infrahub/services/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
655
674
  infrahub/services/adapters/cache/__init__.py,sha256=WsEthxQbcyCOA2M_FzfQr0Cymo4hprCq0m6Vg55uMXo,1919
656
675
  infrahub/services/adapters/cache/nats.py,sha256=FLGqgDuqf1MD7PRxngiCA1jDdh307ypvaKEMK2P4oxU,5697
@@ -694,11 +713,11 @@ infrahub/transformations/constants.py,sha256=_cVDcd8m1HCyKf8k_pAwdoaPTGD7524reuJ
694
713
  infrahub/transformations/models.py,sha256=YuNLGcourz0ekBJyLnzuzLDfxkmmUVqGiabg69EI34w,1744
695
714
  infrahub/transformations/tasks.py,sha256=fxq1t5k0Uj9guEEQN4JSagF4ITVDP7_eyp9TxfQ80w8,1975
696
715
  infrahub/trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
697
- infrahub/trigger/catalogue.py,sha256=NxFUsvn2Tu0NR8GuOrhfZFc-8YFyF-W5BA0OnaBISqc,770
716
+ infrahub/trigger/catalogue.py,sha256=62WmN3waxVGBLgcGIygcxLwA7HWk4ffbm2WQPgdimiE,976
698
717
  infrahub/trigger/constants.py,sha256=u9_5A6gIUIrprzfEdwseYk2yTkwU0VPCjZTwL8b3T6s,22
699
- infrahub/trigger/models.py,sha256=akPvpURi-jBfATZXOq9_vTddJ8Ysrya8mF2rte0EvYM,4874
718
+ infrahub/trigger/models.py,sha256=niFKtFpgUovIllKKImAkyqeBMUUxcqSHBNf6jBGbGzQ,4968
700
719
  infrahub/trigger/setup.py,sha256=oXxAPZc9MYOwY39Yf_LXsDFfsNSVQ2Bnos9BzTh4tKg,6257
701
- infrahub/trigger/tasks.py,sha256=BR1cMOKzEWTF7d27zrnz_Nvz25QA1-zXxDk5ZbKsAJg,1517
720
+ infrahub/trigger/tasks.py,sha256=NCbxaLLiptgKj7aJnxzNURJm1B7tHa78IpJa7xE2VYM,1712
702
721
  infrahub/types.py,sha256=aea-_EXtaqhYq8-P5LGqkU9VitfMs_WU4WXOSsItrsg,11591
703
722
  infrahub/utils.py,sha256=3p_bXmRGOTnXIMG9fZ9mFsKdBw2fU3VBFJT3YHrbvyw,2704
704
723
  infrahub/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -716,9 +735,9 @@ infrahub/workers/dependencies.py,sha256=byuliu9WrOGtQ-Zws8NSTq3LJwnqxIqQ7dcWP3KN
716
735
  infrahub/workers/infrahub_async.py,sha256=9itLnky6BuqWR92fuU-SShaSI-33eoSRfhOEZy0TH0g,7973
717
736
  infrahub/workers/utils.py,sha256=m6FOKrYo53Aoj-JcEyQ7-J4Dc20R9JtHMDzTcqXiRpg,2407
718
737
  infrahub/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
719
- infrahub/workflows/catalogue.py,sha256=IMl3VuGjqOs8LNesyyk-6TDxp5KusSoYh7yLbyT0GY8,19301
738
+ infrahub/workflows/catalogue.py,sha256=tILq30KAfjHd55K4XVxuzzwJDrcevTB42Xq-3LM33fA,21270
720
739
  infrahub/workflows/constants.py,sha256=7je2FF7tJH6x_ZNqHKZfQX91X7I5gmD8OECN3dE_eqI,651
721
- infrahub/workflows/initialization.py,sha256=Aj3tTD4tL9qhNgSnzFIMkTHab8FWWgL0JINaON9wjj0,3224
740
+ infrahub/workflows/initialization.py,sha256=7urWF6rgk2O5ucPCWVfSfJ0weMRILXGw7qD1UFXJy-Q,3923
722
741
  infrahub/workflows/models.py,sha256=5yx6ZHCVMcYd4uEvxLREEBZDHHyHzQ_PuAh7z2fJV7k,4113
723
742
  infrahub/workflows/utils.py,sha256=DhN_NbpaJ_-I4a8GGtKcTfYf8EEJSuRX7PaO06dis-w,2730
724
743
  infrahub_sdk/__init__.py,sha256=weZAa06Ar0NO5IOKLQICtCceHUCKQxbkBxHebqQGJ1o,401
@@ -727,7 +746,7 @@ infrahub_sdk/analyzer.py,sha256=UDJN372vdAiuAv2TEyPUlsSVoUfZN6obWkIokNNaHbA,4148
727
746
  infrahub_sdk/async_typer.py,sha256=Gj7E8EGdjA-XF404vr9cBt20mmbroQh7N68HXhWYx00,892
728
747
  infrahub_sdk/batch.py,sha256=LRZ_04ic56ll9FBjgXCYrJRDJcwB3wR1yX4grrQutDQ,3795
729
748
  infrahub_sdk/branch.py,sha256=IoEOYVuuwJbKyrXqTEKp7aQHQknXOkwdLmEqjD9j594,12733
730
- infrahub_sdk/checks.py,sha256=rFHlEY8XEYcjpLCg6gd9a0R8vPnkxNp0OnXk-odsZKY,5707
749
+ infrahub_sdk/checks.py,sha256=iHBwAftYUUjqwe5MYf-PcPVhR0_opZ4nerjT2e4YJ1s,5707
731
750
  infrahub_sdk/client.py,sha256=6OzZj5CJe0jokjlnpbwxYneQEAo2TFo27_VJTr7VWUI,110236
732
751
  infrahub_sdk/config.py,sha256=wnVRkaVO4Nd2IBLRVpLtrC-jjW399mgr1DprohTEzQQ,7936
733
752
  infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
@@ -737,27 +756,33 @@ infrahub_sdk/ctl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
737
756
  infrahub_sdk/ctl/branch.py,sha256=GeGDNGNpew93MZblqhG0r45wqSz_p8CcQ9R8zuj_jmg,4742
738
757
  infrahub_sdk/ctl/check.py,sha256=96brdjw82kAcq_3qDFQNqzLl8yJPHN8FqK-TJ0_TnXE,7890
739
758
  infrahub_sdk/ctl/cli.py,sha256=A9jJKYBo5opzIIyWYf6niyAHhy49V59g6biueMDFbpE,328
740
- infrahub_sdk/ctl/cli_commands.py,sha256=jnLVlZZQNW0WkSBMoxTE0aCncDVzwEuGHsDhCfvt9b4,18683
759
+ infrahub_sdk/ctl/cli_commands.py,sha256=FSklsBh-yJ-8bBuhZAy_WekOu9AhgOhhZM0dE9M3Nl8,18771
741
760
  infrahub_sdk/ctl/client.py,sha256=6bmXmQta9qQCJ8HybQwt2uSF2X1Em91xNFpwiKFujxs,2083
742
761
  infrahub_sdk/ctl/config.py,sha256=aZ_Dhe5uxH1AzTWUz3EN645I2fflRsqAULJr20E3Ki8,3176
743
762
  infrahub_sdk/ctl/exceptions.py,sha256=RPdBtIj5qVvNqNR9Y-mPNF7kDUxXUUCac5msyitrBXo,272
744
763
  infrahub_sdk/ctl/exporter.py,sha256=CmqyKpf7q5Pu5Wfo_2HktiF12iD_3rJ9Ifb48BIoJdU,1876
745
- infrahub_sdk/ctl/generator.py,sha256=VcXXaLjgXqfY4P_cJ850husZdP3pGwxqF-lMnlJxMO0,4289
764
+ infrahub_sdk/ctl/generator.py,sha256=ObzzIrzD5R7NOxo2FRRoG6ft-cOpwX6HnDphpnmmbqk,4605
765
+ infrahub_sdk/ctl/graphql.py,sha256=C5g3Q2OWcYG9tu2S7vsR8Z8uw9MvjpAMxg8F-1oBLSc,6668
746
766
  infrahub_sdk/ctl/importer.py,sha256=0QSKzkynI4eeQHHsTIWlEaj7mPrTdscQeXrrOzqtyig,1908
747
767
  infrahub_sdk/ctl/menu.py,sha256=A0NHvu48qbo9aWYNc3nGMNMeXr4LnOr_HNKL5arBWNA,2690
748
768
  infrahub_sdk/ctl/object.py,sha256=OEbAx0Yb0zbXxS2ZnXedZRZDHITQd3iAk_cWUlTHLvg,2706
749
769
  infrahub_sdk/ctl/parameters.py,sha256=aU2H41svfG309m2WdH6R9H5xgQ4gevn3ItOu5ltuVas,413
750
770
  infrahub_sdk/ctl/render.py,sha256=zrIz_KXq3QafgNiqqNeYt2JtD2PGOa0D5ujW6NqZdz8,1948
751
771
  infrahub_sdk/ctl/repository.py,sha256=Hbkt3mTDNEBvZ3yGm2S5tEW3ealcfuDuSCfI00p4TL4,7997
752
- infrahub_sdk/ctl/schema.py,sha256=KxYbpzbYwuRlG5lMI8edANM4PSvWY2J-YraCFHLkVkQ,7429
772
+ infrahub_sdk/ctl/schema.py,sha256=67LbZKeA4lKjVuQc8DddFqZhVtEzGVOLFA755nzdVkw,7517
753
773
  infrahub_sdk/ctl/transform.py,sha256=5qRqiKeEefs0rda6RAFAAj1jkCKdbPYE_t8O-n436LQ,414
754
774
  infrahub_sdk/ctl/utils.py,sha256=du6XksdFybfmst2MwH5KhVGrmjUkoxBsb5nQe_cRnXQ,7513
755
775
  infrahub_sdk/ctl/validate.py,sha256=vnP5P--Sknf-Ni43zCW9qHab5AI9qz5h-11moMSzHGQ,3941
756
776
  infrahub_sdk/data.py,sha256=4d8Fd1s7lTeOu8JWXsK2m2BM8t_5HG0Z73fnCZGc7Pc,841
757
777
  infrahub_sdk/diff.py,sha256=DXENTLn1joKulVqV-uHp8WLiWstnDaccJ-gE4MWfwMM,4344
758
778
  infrahub_sdk/exceptions.py,sha256=N52MjwbXzqE30H75ilqsBdK-12ZfSICNA5Zzfi639Mo,5826
759
- infrahub_sdk/generator.py,sha256=I00G7BdQohJFZ7wQru1SWcwO41gPbuQ3ZGEDVkLIn60,3403
760
- infrahub_sdk/graphql.py,sha256=L9cVc4xSK347QSUcrAbTjYwrfSD6-ttV0M5z9iuKZC8,7183
779
+ infrahub_sdk/generator.py,sha256=Sr8Ar1dM08SqmxqFYOrM0DPJmBxKhb_2WHR4SOnMZdE,3710
780
+ infrahub_sdk/graphql/__init__.py,sha256=cviPynthQYVJb3eMca2avfRWYYlIBMKYi7-Tn9c0cQI,329
781
+ infrahub_sdk/graphql/constants.py,sha256=B1fE2NFok5RUo4yQ18NNatn4PHQIQtFO92Ip5w8aMi0,97
782
+ infrahub_sdk/graphql/plugin.py,sha256=0-lR88aPa798lvVPGmqKKc9mrKR3otaxyPMhwlgwoK4,3161
783
+ infrahub_sdk/graphql/query.py,sha256=gItG37yeZ_Lu-5-x-QpN864ivbhcUKdu5PKtgCuv-lU,2251
784
+ infrahub_sdk/graphql/renderers.py,sha256=TYSIlrhXRcIHDqt4EN84SXyydeao_tVmU8IZcf0_l_g,8583
785
+ infrahub_sdk/graphql/utils.py,sha256=eS6Sg0n7DsS4DZ3Lcfy7ytmd9Dy7AWkNXIdSICV0kGQ,1460
761
786
  infrahub_sdk/groups.py,sha256=GL14ByW4GHrkqOLJ-_vGhu6bkYDxljqPtkErcQVehv0,711
762
787
  infrahub_sdk/jinja2.py,sha256=lTfV9E_P5gApaX6RW9M8U8oixQi-0H3U8wcs8fdGVaU,1150
763
788
  infrahub_sdk/node/__init__.py,sha256=clAUZ9lNVPFguelR5Sg9PzklAZruTKEm2xk-BaO68l8,1262
@@ -771,7 +796,7 @@ infrahub_sdk/node/relationship.py,sha256=WEfPOZChQ8WadhG9UcdM3RP-bYuXGE3dm_6fPjf
771
796
  infrahub_sdk/object_store.py,sha256=d-EDnxPpw_7BsbjbGbH50rjt-1-Ojj2zNrhFansP5hA,4299
772
797
  infrahub_sdk/operation.py,sha256=hsbZSjLbLsqvjZg5R5x_bOxxlteXJAk0fQy3mLrZhn4,2730
773
798
  infrahub_sdk/playback.py,sha256=obAPYDO_3v6EN0aBDllI0T_5lPnCv_Mo3GYHR4Eczs8,1878
774
- infrahub_sdk/protocols.py,sha256=c3o917KolNWG0B54gW41vMmCXOPlYOTlHjkbcWxmWSU,25005
799
+ infrahub_sdk/protocols.py,sha256=-tMWGEQCyd7aC16OV1vhZJvLJ29LizuYSSICuWeI6h0,25381
775
800
  infrahub_sdk/protocols_base.py,sha256=rw5gP9IEuV2e-DeFHMUoL43nVfxEeGmQKjoE3YZCV78,5616
776
801
  infrahub_sdk/protocols_generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
777
802
  infrahub_sdk/protocols_generator/constants.py,sha256=8y5L7aqxhez6_10Cl2zUfNlHJCCosIVnxrOPKrwNVEw,820
@@ -793,13 +818,13 @@ infrahub_sdk/queries.py,sha256=s4gnx67e-MNg-3jP4Vx1jreO9uiW3uYPllFQgaTODdQ,2308
793
818
  infrahub_sdk/query_groups.py,sha256=XMizAadkItEFgH8waXRg7jzckSWqK92YDcAPorwkids,10507
794
819
  infrahub_sdk/recorder.py,sha256=_NPtSLX3-Dam6BHt7daLzv-IAVxvU-35GIGu7YtA08Y,2285
795
820
  infrahub_sdk/repository.py,sha256=P6n93Koh-MUpbdWKmKcS8YsztDOXBJf-W1Z5ZZMexOE,973
796
- infrahub_sdk/schema/__init__.py,sha256=26pGrfI5fiz5nq9uYxNYuTGWw6zYJCGuWaqJhSPsAiQ,28928
821
+ infrahub_sdk/schema/__init__.py,sha256=yGLRy5To7t7rghlkD3bNUK20wNz8_X-3UresHyAzgEs,30218
797
822
  infrahub_sdk/schema/main.py,sha256=an9mfg6hNOhxF3eR87NO3qc0oMFUcX0EEfiojWlQtLo,12219
798
- infrahub_sdk/schema/repository.py,sha256=oxACAok7fQbwdPhpzZJ8JMwMvHuMG1sNauf5-2cRQCU,12279
823
+ infrahub_sdk/schema/repository.py,sha256=nv33K9ZwejDEYrgUs0V-t8TnB-18T_AnqvioRGdiEhM,12581
799
824
  infrahub_sdk/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
800
825
  infrahub_sdk/spec/menu.py,sha256=KG8KpDYqlVWsCQXCUlAX7P7Jbw3bB60hlTMRs0cohOk,1078
801
- infrahub_sdk/spec/object.py,sha256=8urvLlZ25nXn4LSyo9qrW4-pT5v5Z56MS3UhG2c3WGU,26334
802
- infrahub_sdk/spec/range_expansion.py,sha256=w86b-mz3iVLBVh9GqM4IXm2Q5N6-F5EzPFXSETEEcLc,5315
826
+ infrahub_sdk/spec/object.py,sha256=fbooCwvYSqvkV1ZIKQcTKOfWCGBPhclb4TK2RWNmzvE,29050
827
+ infrahub_sdk/spec/range_expansion.py,sha256=QOlPYSw2lLv9QAS2Sma9NFadbdFFqkhFqk5pbrFldbE,5326
803
828
  infrahub_sdk/store.py,sha256=rmTNiAZFebi3I_NOnErhZswZPMrUJrkfu81PHf5aOlE,14091
804
829
  infrahub_sdk/task/__init__.py,sha256=6MTui97_uymZ9BBQGC9xRrT6qpzHc0YxkkKWIdW0FdM,210
805
830
  infrahub_sdk/task/constants.py,sha256=gj0Cx_0RV0G5KAjx9XvUsf4LfEDMjvGqxEg0qL0LknI,126
@@ -828,16 +853,16 @@ infrahub_sdk/transfer/importer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
828
853
  infrahub_sdk/transfer/importer/interface.py,sha256=TN7FH_LgThkBjrpWwkdTZIVJPtNklAYiK3Mn6RPs7IM,195
829
854
  infrahub_sdk/transfer/importer/json.py,sha256=-Tlmg22TiBrEqXOSLMnUzlCFOZ2M0Q8lWyPbwjUjifw,9654
830
855
  infrahub_sdk/transfer/schema_sorter.py,sha256=ZoBjJGFT-6jQoKOLaoOPMAWzs7vGOeo7x6zOOP4LNv0,1244
831
- infrahub_sdk/transforms.py,sha256=RLiB_CkM-JQSfyifChxxQVl2FrHKOGEf_YynSMKeFZU,2340
856
+ infrahub_sdk/transforms.py,sha256=4lDL76y-j_ilz8FoMpw-loXAdcSx5JfSQgvsF2XpeLc,2340
832
857
  infrahub_sdk/types.py,sha256=UeZ1rDp4eyH12ApTcUD9a1OOtCp3IL1YZUeeZ06qF-I,1726
833
858
  infrahub_sdk/utils.py,sha256=263i-xkGkPMpSH8n6G6IF8Yt54pHSoTjo5ef30MSWOw,11906
834
859
  infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
835
860
  infrahub_sdk/yaml.py,sha256=PRsS7BEM-Xn5wRLAAG-YLTGRBEJy5Dnyim2YskFfe8I,5539
836
861
  infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
837
862
  infrahub_testcontainers/constants.py,sha256=mZ4hLvcf4rKk9wC7EId4MQxAY0sk4V99deB04N0J2bg,85
838
- infrahub_testcontainers/container.py,sha256=OX3tylqFrqQ0tA2BFXI243LbWjRElgmcmL-hu_z1wQ8,20515
839
- infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=dgnujqpM6dVWoqcSiRgsqXkyzdO-jRunHIIDd-K6FHg,14763
840
- infrahub_testcontainers/docker-compose.test.yml,sha256=P7MR-YQ-_0wGdoYW3N5TI5-6FyzpKnzhi_k0OIqgtTc,11161
863
+ infrahub_testcontainers/container.py,sha256=RodXcIry-ppcpce_xnzpZuBHVinYyMq64NZ6cuCvhBE,20516
864
+ infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=3Zgupnt6rOCk5EK0PsUXJL1thmTbKzQelC3AeS3sGKA,14764
865
+ infrahub_testcontainers/docker-compose.test.yml,sha256=EWxll1vzAdOzTdJX3_um30nIygM-bSHPskF6AelSZRk,11162
841
866
  infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTMFZJsnk,1305
842
867
  infrahub_testcontainers/helpers.py,sha256=rGEWIeUfDg4w1wJNCzTm7_H1oA58HaMSORjVlHw1aWA,4677
843
868
  infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
@@ -846,8 +871,8 @@ infrahub_testcontainers/models.py,sha256=-TScLFW3V7SOe3eS1C8ANKmabpxGDTX5xu-V1pg
846
871
  infrahub_testcontainers/performance_test.py,sha256=k14E0loMNuvhIJKEItbeKdbcOC0NBM-HhSe0RnVhJJo,6117
847
872
  infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
848
873
  infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
849
- infrahub_server-1.5.0b0.dist-info/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
850
- infrahub_server-1.5.0b0.dist-info/METADATA,sha256=GtgzqzRLoO0_JRAMkMsQmvtx9qeyhcwp-sQi6Q0rDEQ,6007
851
- infrahub_server-1.5.0b0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
852
- infrahub_server-1.5.0b0.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
853
- infrahub_server-1.5.0b0.dist-info/RECORD,,
874
+ infrahub_server-1.5.0b1.dist-info/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
875
+ infrahub_server-1.5.0b1.dist-info/METADATA,sha256=3UrOzoag59wHRwEiJTFiRS89t504Far5X47aWHTGCiI,6049
876
+ infrahub_server-1.5.0b1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
877
+ infrahub_server-1.5.0b1.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
878
+ infrahub_server-1.5.0b1.dist-info/RECORD,,
@@ -29,7 +29,7 @@ INFRAHUB_SERVICES: dict[str, ContainerService] = {
29
29
 
30
30
  PROJECT_ENV_VARIABLES: dict[str, str] = {
31
31
  "MESSAGE_QUEUE_DOCKER_IMAGE": "rabbitmq:3.13.7-management",
32
- "CACHE_DOCKER_IMAGE": "redis:7.2.4",
32
+ "CACHE_DOCKER_IMAGE": "redis:7.2.11",
33
33
  "INFRAHUB_TESTING_DOCKER_IMAGE": "registry.opsmill.io/opsmill/infrahub",
34
34
  "INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', 4)} --logger-class infrahub.serve.log.GunicornLogger infrahub.server:app", # noqa: E501
35
35
  "INFRAHUB_TESTING_IMAGE_VERSION": infrahub_version,
@@ -37,7 +37,7 @@ services:
37
37
  - ${INFRAHUB_TESTING_MESSAGE_QUEUE_PORT:-0}:15692
38
38
 
39
39
  cache:
40
- image: ${CACHE_DOCKER_IMAGE:-redis:7.2.4}
40
+ image: ${CACHE_DOCKER_IMAGE:-redis:7.2.11}
41
41
  restart: unless-stopped
42
42
  healthcheck:
43
43
  test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
@@ -20,7 +20,7 @@ services:
20
20
  - ${INFRAHUB_TESTING_MESSAGE_QUEUE_PORT:-0}:15692
21
21
 
22
22
  cache:
23
- image: ${CACHE_DOCKER_IMAGE:-redis:7.2.4}
23
+ image: ${CACHE_DOCKER_IMAGE:-redis:7.2.11}
24
24
  restart: unless-stopped
25
25
  healthcheck:
26
26
  test: ["CMD-SHELL", "redis-cli ping | grep PONG"]