infrahub-server 1.7.0rc0__py3-none-any.whl → 1.7.1__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 (80) hide show
  1. infrahub/api/schema.py +5 -0
  2. infrahub/cli/db.py +6 -2
  3. infrahub/core/branch/models.py +11 -117
  4. infrahub/core/branch/tasks.py +7 -3
  5. infrahub/core/diff/merger/merger.py +5 -1
  6. infrahub/core/graph/__init__.py +1 -1
  7. infrahub/core/initialization.py +2 -1
  8. infrahub/core/migrations/graph/__init__.py +2 -0
  9. infrahub/core/migrations/graph/m014_remove_index_attr_value.py +3 -2
  10. infrahub/core/migrations/graph/m015_diff_format_update.py +3 -2
  11. infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py +3 -2
  12. infrahub/core/migrations/graph/m017_add_core_profile.py +6 -4
  13. infrahub/core/migrations/graph/m018_uniqueness_nulls.py +3 -4
  14. infrahub/core/migrations/graph/m020_duplicate_edges.py +3 -3
  15. infrahub/core/migrations/graph/m025_uniqueness_nulls.py +3 -4
  16. infrahub/core/migrations/graph/m026_0000_prefix_fix.py +4 -5
  17. infrahub/core/migrations/graph/m028_delete_diffs.py +3 -2
  18. infrahub/core/migrations/graph/m029_duplicates_cleanup.py +3 -2
  19. infrahub/core/migrations/graph/m031_check_number_attributes.py +4 -3
  20. infrahub/core/migrations/graph/m032_cleanup_orphaned_branch_relationships.py +3 -2
  21. infrahub/core/migrations/graph/m034_find_orphaned_schema_fields.py +3 -2
  22. infrahub/core/migrations/graph/m035_orphan_relationships.py +3 -3
  23. infrahub/core/migrations/graph/m036_drop_attr_value_index.py +3 -2
  24. infrahub/core/migrations/graph/m037_index_attr_vals.py +3 -2
  25. infrahub/core/migrations/graph/m038_redo_0000_prefix_fix.py +4 -5
  26. infrahub/core/migrations/graph/m039_ipam_reconcile.py +3 -2
  27. infrahub/core/migrations/graph/m041_deleted_dup_edges.py +3 -2
  28. infrahub/core/migrations/graph/m042_profile_attrs_in_db.py +5 -4
  29. infrahub/core/migrations/graph/m043_create_hfid_display_label_in_db.py +12 -5
  30. infrahub/core/migrations/graph/m044_backfill_hfid_display_label_in_db.py +15 -4
  31. infrahub/core/migrations/graph/m045_backfill_hfid_display_label_in_db_profile_template.py +10 -4
  32. infrahub/core/migrations/graph/m046_fill_agnostic_hfid_display_labels.py +6 -5
  33. infrahub/core/migrations/graph/m047_backfill_or_null_display_label.py +19 -5
  34. infrahub/core/migrations/graph/m048_undelete_rel_props.py +6 -4
  35. infrahub/core/migrations/graph/m049_remove_is_visible_relationship.py +3 -3
  36. infrahub/core/migrations/graph/m050_backfill_vertex_metadata.py +3 -3
  37. infrahub/core/migrations/graph/m051_subtract_branched_from_microsecond.py +39 -0
  38. infrahub/core/migrations/runner.py +6 -3
  39. infrahub/core/migrations/schema/attribute_kind_update.py +8 -11
  40. infrahub/core/migrations/schema/attribute_supports_profile.py +3 -8
  41. infrahub/core/migrations/schema/models.py +8 -0
  42. infrahub/core/migrations/schema/node_attribute_add.py +10 -13
  43. infrahub/core/migrations/schema/tasks.py +7 -1
  44. infrahub/core/migrations/shared.py +37 -30
  45. infrahub/core/node/__init__.py +2 -1
  46. infrahub/core/relationship/model.py +8 -2
  47. infrahub/core/schema/attribute_parameters.py +28 -1
  48. infrahub/core/schema/attribute_schema.py +9 -2
  49. infrahub/core/schema/manager.py +50 -38
  50. infrahub/core/validators/attribute/kind.py +5 -2
  51. infrahub/graphql/manager.py +8 -2
  52. infrahub/lock.py +7 -0
  53. infrahub/services/adapters/cache/redis.py +7 -0
  54. infrahub_sdk/analyzer.py +2 -2
  55. infrahub_sdk/branch.py +12 -39
  56. infrahub_sdk/checks.py +4 -4
  57. infrahub_sdk/client.py +36 -0
  58. infrahub_sdk/ctl/cli_commands.py +2 -1
  59. infrahub_sdk/ctl/graphql.py +15 -4
  60. infrahub_sdk/ctl/utils.py +2 -2
  61. infrahub_sdk/enums.py +6 -0
  62. infrahub_sdk/graphql/renderers.py +21 -0
  63. infrahub_sdk/graphql/utils.py +85 -0
  64. infrahub_sdk/node/attribute.py +12 -2
  65. infrahub_sdk/node/constants.py +11 -0
  66. infrahub_sdk/node/metadata.py +69 -0
  67. infrahub_sdk/node/node.py +65 -14
  68. infrahub_sdk/node/property.py +3 -0
  69. infrahub_sdk/node/related_node.py +24 -1
  70. infrahub_sdk/node/relationship.py +10 -1
  71. infrahub_sdk/operation.py +2 -2
  72. infrahub_sdk/schema/repository.py +1 -2
  73. infrahub_sdk/transforms.py +2 -2
  74. infrahub_sdk/types.py +18 -2
  75. {infrahub_server-1.7.0rc0.dist-info → infrahub_server-1.7.1.dist-info}/METADATA +6 -6
  76. {infrahub_server-1.7.0rc0.dist-info → infrahub_server-1.7.1.dist-info}/RECORD +80 -77
  77. {infrahub_server-1.7.0rc0.dist-info → infrahub_server-1.7.1.dist-info}/entry_points.txt +0 -1
  78. infrahub_testcontainers/performance_test.py +1 -1
  79. {infrahub_server-1.7.0rc0.dist-info → infrahub_server-1.7.1.dist-info}/WHEEL +0 -0
  80. {infrahub_server-1.7.0rc0.dist-info → infrahub_server-1.7.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -6,7 +6,7 @@ infrahub/config.py,sha256=bNUd3LPv063uu0PATskEhKzlwmSr2JYCJ_oqY0rqZsU,41808
6
6
  infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
7
7
  infrahub/exceptions.py,sha256=cbM-f_2U-5ZFVZ_MaaXgs64k4M7uJ7fqDU2iCRoWlYY,11861
8
8
  infrahub/helpers.py,sha256=KchbQqgipU4VjfwnDbzCGjnEv-4espw_g63Zw4KAhbo,251
9
- infrahub/lock.py,sha256=rHBMLaHTGyY3GlJCzL7RiTj01QKhBi7V1e5Yx517x9Q,11002
9
+ infrahub/lock.py,sha256=AtPvYQchlTixuI9TmMnmuqvEuTaMvp6Zk6Q0pRKu2VQ,11493
10
10
  infrahub/log.py,sha256=0PFE4CF5ID3xSNqZvzkCvK87H8_3cZCljgTmPijW68M,2819
11
11
  infrahub/middleware.py,sha256=Su129MXkXazE9ODlIZ_KtuRHOakMsOHbVKIx15NKXpU,1547
12
12
  infrahub/models.py,sha256=QmwJwo3hNCta8BXM7eLsD9qv1S73Rj0cC_crLpadHTc,715
@@ -39,7 +39,7 @@ infrahub/api/menu.py,sha256=xp5bj5JXQZA6ZEPWoTSGGSfTXZ1sVmehMxr3VSG7FlQ,1216
39
39
  infrahub/api/oauth2.py,sha256=A7tXoyEAqSG9ytwFvdWEtGkO3F-VXfLo7xzsRFOGlqw,6387
40
40
  infrahub/api/oidc.py,sha256=yYvUQzn69MFY1yXuWuXE88vI96nU42pVeEL9xqU3bpU,9505
41
41
  infrahub/api/query.py,sha256=l8WinRHzgc97avxUQ-pOOJEz7JAVmbBhFnjY4QzAIak,7464
42
- infrahub/api/schema.py,sha256=h-lCiU8HgrEvVzqLuT8YzdC9KHzTzrSC_ongGFE60dk,18205
42
+ infrahub/api/schema.py,sha256=3ZJk7khClsHWxLdMLpowJIvZkdEdGOSrDwCJGG-hd1s,18355
43
43
  infrahub/api/storage.py,sha256=yWo7qsDn4SrX89wDsTKOfGTMdWYNsptAdt7Fhfzw1C0,2179
44
44
  infrahub/api/transformation.py,sha256=8qbFMYnWcwfT9-OGiby7Eb90ExsbGT5-CiOYv0irJyI,6090
45
45
  infrahub/api/diff/__init__.py,sha256=oXlDkl0C-nHNCdXcLN-KmCUdUICOzk_b0RFgjeYwt7s,47
@@ -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=ft77szmk5wJ8r4bLFf6QPLRbnclNnd4OkZdEGLqWa6Q,41181
61
+ infrahub/cli/db.py,sha256=bo-tk-XuXGKuXT4SNuKFSqndT3IF_ip9Rby-1HYN-Ac,41351
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
@@ -83,7 +83,7 @@ infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
83
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
- infrahub/core/initialization.py,sha256=MuhZR6VDFfEiQw_ZPm-LBcBQmpvEdaxovGWtx_YKtVc,22081
86
+ infrahub/core/initialization.py,sha256=c8MtW4SVTREbBd4jAjgD4Mw9rMff3pu3treD0nLPAto,22143
87
87
  infrahub/core/manager.py,sha256=obv-mZbj2wRFSSjcO3hq8EDYE4ZNyygaosVXCHKk5yk,49055
88
88
  infrahub/core/merge.py,sha256=iVzSbdMHsRB-Myiddey6dNsOSKRq2l_4KUBFAxw-oKM,12546
89
89
  infrahub/core/models.py,sha256=m-ZwfpoktI7Q4oLxQ4WJyVLOutpEtyf3PgIMkou9wDw,26718
@@ -98,9 +98,9 @@ infrahub/core/timestamp.py,sha256=htKK3byVUk23PWQyfIOKK9OmN0HWjJC4xcaRTnLNkjw,10
98
98
  infrahub/core/utils.py,sha256=13cIMOXPU0cS5g6sbFklC8C9yLM0PpMhjytVlCIouEQ,8504
99
99
  infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
100
100
  infrahub/core/branch/enums.py,sha256=wE_TvKxd-r3zeHgLOMuZhsyKRwDWWC8BMxAEC_aX7A8,212
101
- infrahub/core/branch/models.py,sha256=h0MVFj--IMf6cu9txLBn01sorPa7xZG4z79XsOdjCvU,20118
101
+ infrahub/core/branch/models.py,sha256=oBut23qMCdLV832Z62U-bTG6SVc9SKJPXSmP4sZloxU,15782
102
102
  infrahub/core/branch/needs_rebase_status.py,sha256=purrg93k9zWcV9NONjIdMF8cWLXEKHq6YjO0ayC3C04,407
103
- infrahub/core/branch/tasks.py,sha256=pPtvv5g758ejRDPaH21AZiikFKJGYTdsvxuGwg1YFzo,24028
103
+ infrahub/core/branch/tasks.py,sha256=TxO1rdK7-sWSTw5hR964x0WdR3SSU_qcCl4hP4eAEN0,24215
104
104
  infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
105
  infrahub/core/changelog/diff.py,sha256=g33yRx0nyhqGIWvfyDz0OKy19qmoA34vdrYPLiAeswU,12476
106
106
  infrahub/core/changelog/models.py,sha256=KLp9248W1OSBKE7Ot2VcuPIK1jLdO3x0MC4FionQYGE,29410
@@ -144,7 +144,7 @@ infrahub/core/diff/enricher/labels.py,sha256=OUD9IDh01aBZBf75v5inTdRfbjAdW2d9MUD
144
144
  infrahub/core/diff/enricher/path_identifier.py,sha256=NGCFDdv0Gr96avHkCdory7_4bzZxWTIwdBczJePx6Nw,3329
145
145
  infrahub/core/diff/enricher/summary_counts.py,sha256=A-lOe9C40qG5i9pLjMONoPvhbKIQYek6jzmJDHDFuxg,4840
146
146
  infrahub/core/diff/merger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
- infrahub/core/diff/merger/merger.py,sha256=6vqg-zqJIKrr1fZOgb_gD8ow4LSScDvCz68Bwxl96PM,5950
147
+ infrahub/core/diff/merger/merger.py,sha256=MX69ZRRnEPNM0TxR3YvQSU6ZJ4ZaKsTh4NxAOaoACA0,6155
148
148
  infrahub/core/diff/merger/model.py,sha256=z1pjX0SXvZkqCqdcUKae73v6eEBrjUNotnkx0noe2wc,742
149
149
  infrahub/core/diff/merger/serializer.py,sha256=V7nRLpoKYrabuyvqzOWab6_QGlWWVQQzG6PV9v5W9zc,18152
150
150
  infrahub/core/diff/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -173,7 +173,7 @@ infrahub/core/diff/query/update_conflict_query.py,sha256=kQkFazz88wnApr8UU_qb0ru
173
173
  infrahub/core/diff/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
174
  infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_SS4EQnM9JoY5ptx78,21337
175
175
  infrahub/core/diff/repository/repository.py,sha256=k7oUcEDO6Yzmwue_Civ6EYEs2kGa_SQ1odmbaRZsRV4,25603
176
- infrahub/core/graph/__init__.py,sha256=CYohqJP6FKsi56sLc3A4KdPPGpmoMr4TUF6H3nn7EoU,19
176
+ infrahub/core/graph/__init__.py,sha256=WbpwzjRpt3wnKa9jOF-4A49ct5-YTB_rRGW9XhYaYww,19
177
177
  infrahub/core/graph/constraints.py,sha256=Ze3JASivU--QI2mLqheN52O06R-FPqc9Fd474BBT3gI,10417
178
178
  infrahub/core/graph/index.py,sha256=A9jzEE_wldBJsEsflODeMt4GM8sPmmbHAJRNdFioR1k,1736
179
179
  infrahub/core/graph/schema.py,sha256=YRfus_CgOGjAlQlp2dYI2e60ISdlWa1l9caDrelKoUI,10287
@@ -195,9 +195,9 @@ infrahub/core/metadata/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
195
195
  infrahub/core/metadata/query/node_metadata.py,sha256=rCqSUgM8QXh-ahRUcvy_gkcm9BmyQBexqV4QZ6VI-K0,10437
196
196
  infrahub/core/migrations/__init__.py,sha256=ttA1YkKhiG9Zc0fwIIcMLIDCrIhN5xVOIh6ojFoy58o,1541
197
197
  infrahub/core/migrations/exceptions.py,sha256=gEAkWzjvN-IXr0YPqUrEqnu_GsR-uqucsu1QUaWhEmM,147
198
- infrahub/core/migrations/runner.py,sha256=d_HxhO1RRh3Ec7cG5Z8SKV2X0mqc4J5Y9UZwHb4d6Co,2145
199
- infrahub/core/migrations/shared.py,sha256=3b5YBRYkYrBH9iqdaXnYLjG9bGtKicEEGOae6ZoxDwc,9909
200
- infrahub/core/migrations/graph/__init__.py,sha256=SFsg8IZI7VCbQe_9nTF3dzDJPkwngkNawBw_yW_ILMg,4860
198
+ infrahub/core/migrations/runner.py,sha256=r7pz_YB1HNbGo-rHFaXm_1oKJJo01YhaY0eWskiWftI,2295
199
+ infrahub/core/migrations/shared.py,sha256=C-JNzjYSUNSLA0NqktibZ-5k5VuVZgUqLET004uPjMo,10382
200
+ infrahub/core/migrations/graph/__init__.py,sha256=cJXZBNtNqymT8pUP6Mi4DP24ZrO_P3Z6CzShHd_mig0,4944
201
201
  infrahub/core/migrations/graph/load_schema_branch.py,sha256=OvjowaeDnx4djD1aGPjE7Rqyh1p843LSodOf_Frdt9U,1008
202
202
  infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
203
203
  infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
@@ -212,43 +212,44 @@ infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py,sha256=
212
212
  infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py,sha256=TYQ1jXNucLIBbqLS35nUb_72OmMspXexSSW83Ax0oEw,1980
213
213
  infrahub/core/migrations/graph/m012_convert_account_generic.py,sha256=3rxBid6s5rpNDb_2KIXWrKFmqamm1jjrrsa0HYQyHc4,11182
214
214
  infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=IJv_ugXcF5rn2Qp4ICF7xFK6GdnaniIeHKbxslztEvY,12452
215
- infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=Amds1gl8YtNIekU0tSXpHzdfk8UFqChC2LOLfnQ1YTM,1441
216
- infrahub/core/migrations/graph/m015_diff_format_update.py,sha256=fMnUja-VgKbCxtx4Rh3PnA_s3iidaYunJWEkw0AD51w,1169
217
- infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py,sha256=FpeGlCdRN8why_6P8ijR4-hFTbE-m95lDNfBwNet1TU,1177
218
- infrahub/core/migrations/graph/m017_add_core_profile.py,sha256=14MbeAuT5oVfEowyF9pHsAhVYoxGQgyU7gqxbptg8co,1482
219
- infrahub/core/migrations/graph/m018_uniqueness_nulls.py,sha256=YcAnaq3QimO-GmoImvb8AguPKT3ajyb23WUzcX-UIJw,4775
215
+ infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=5yBJYdtMMEsYSdkeDdOXDSDPLyp39hrml4tpt-AAbLw,1500
216
+ infrahub/core/migrations/graph/m015_diff_format_update.py,sha256=lW7dZ0ryvGiNIUoMyUL2ohVAGRHBF-BMjJhz1gOgsa0,1228
217
+ infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py,sha256=hOxcHtHW2SWDqlhrA_gaHUVabBszPY_-lbcXuqFlGDE,1236
218
+ infrahub/core/migrations/graph/m017_add_core_profile.py,sha256=8Hbk2l-dOy_KuXXifh3GTmTgyxny158zU84tTGqIQMU,1540
219
+ infrahub/core/migrations/graph/m018_uniqueness_nulls.py,sha256=oVQFQah0NLNnGRs31FSFd0xwSy9qt4MZf3T0j5zAt5A,4720
220
220
  infrahub/core/migrations/graph/m019_restore_rels_to_time.py,sha256=tjsD7FZh1i06sn-YxZ71WoT4bqB5doXcRwP0A0PSrZ4,11105
221
- infrahub/core/migrations/graph/m020_duplicate_edges.py,sha256=2Peeg3XQn6lUoIJhREoPBzuqmsBInOFHp_0YuuMMhvI,6483
221
+ infrahub/core/migrations/graph/m020_duplicate_edges.py,sha256=aj5zV-Ufl3btFbeJkur95W2PoB_31OeAsK3ea3_ORxo,6536
222
222
  infrahub/core/migrations/graph/m021_missing_hierarchy_merge.py,sha256=sd3its0zG2c8b36wIyhmcFUlwrIX34SyTegJsRQ-Wk4,1623
223
223
  infrahub/core/migrations/graph/m022_add_generate_template_attr.py,sha256=CmSxcXoWdjNXk4UxbUUeR7X49qiyNIIJuvigV9pOqNA,1748
224
224
  infrahub/core/migrations/graph/m023_deduplicate_cardinality_one_relationships.py,sha256=NwGnJdbjOWCm7bG-E9E5Uw2fRw4KzHZwaJLKBIVhTcw,3936
225
225
  infrahub/core/migrations/graph/m024_missing_hierarchy_backfill.py,sha256=_Ex13D1JYCSLcX_eXNgx_etcQXdqbxdgQ-6z7CpJKns,2487
226
- infrahub/core/migrations/graph/m025_uniqueness_nulls.py,sha256=rNUKWnGkGIpTwIwcoDtrsOdfUUu8RYipF4CT-ACEOw4,961
227
- infrahub/core/migrations/graph/m026_0000_prefix_fix.py,sha256=naHZrY4eNz1cDpuPQaawkxi-GTb3QNGhoU8NxrU31AU,2042
226
+ infrahub/core/migrations/graph/m025_uniqueness_nulls.py,sha256=fgUryRSyhG5Q6ARzCKrQdnE981IX41QWkANwUFAqSTg,906
227
+ infrahub/core/migrations/graph/m026_0000_prefix_fix.py,sha256=LHsU5QSIlC_Ka00mx1P3qCZ4bKh6M-3za6xTT2z0Y8M,1964
228
228
  infrahub/core/migrations/graph/m027_delete_isolated_nodes.py,sha256=aAfDUdhsR05CpehVeyLWQ1tRstgrF0HY2V5V6X5ALxM,1589
229
- infrahub/core/migrations/graph/m028_delete_diffs.py,sha256=c2FyUkbeuXfmsNxzcG11b0mD7KqCipyGq6SiFsFWaoM,1299
230
- infrahub/core/migrations/graph/m029_duplicates_cleanup.py,sha256=034hehLi8IUcvhKJTNOHlL1kAOJ9Jk-gBKJB5Y_j7Hs,28225
229
+ infrahub/core/migrations/graph/m028_delete_diffs.py,sha256=AaNR8hG_XRi-B4f1X8fjhFgoNTCIHBokPT_VlP6gJ2A,1358
230
+ infrahub/core/migrations/graph/m029_duplicates_cleanup.py,sha256=-7Q-GHX4mXVyoDdSQIOrmfdfYSFpHXamF6Ajt-_R2B0,28284
231
231
  infrahub/core/migrations/graph/m030_illegal_edges.py,sha256=Saz7QmUqwuLiBtSBdQf54E1Bj3hz0k9KAOQ-pwPBH4g,2797
232
- infrahub/core/migrations/graph/m031_check_number_attributes.py,sha256=CJvVfHHlf87QguEdpKeDo7uFmbsuWrEpoNGTvIIN0AY,5007
233
- infrahub/core/migrations/graph/m032_cleanup_orphaned_branch_relationships.py,sha256=AEc91iCtHWsNvhSuqZGLAn7wL5FWhiqM73OSwIeB7_0,3535
232
+ infrahub/core/migrations/graph/m031_check_number_attributes.py,sha256=IwrY5iimhG1ib1RnopH8n3XGMc8l_9f_iLOsLgnz7hk,5003
233
+ infrahub/core/migrations/graph/m032_cleanup_orphaned_branch_relationships.py,sha256=Db7SfmXDMrWo_xkBnRJZgLo-cs0riFH_VxEnPRWp96U,3594
234
234
  infrahub/core/migrations/graph/m033_deduplicate_relationship_vertices.py,sha256=YJ0XtOMdfjGPHWtzlMXIm3dX405cTdOoynUFztXVMQI,3735
235
- infrahub/core/migrations/graph/m034_find_orphaned_schema_fields.py,sha256=FekohfsamyLNzGBeRBiZML94tz2fUcvTzttfv6mD1cw,3547
236
- infrahub/core/migrations/graph/m035_orphan_relationships.py,sha256=K0J5gzFF5gY-QMom0tRGDckqw19aN0uSV8AZ8KdKSMo,1371
237
- infrahub/core/migrations/graph/m036_drop_attr_value_index.py,sha256=z2BplzX0mue3lOxrM7xnWDNrs7N3TGdFKHZR-u0wDDY,1439
238
- infrahub/core/migrations/graph/m037_index_attr_vals.py,sha256=pc-223N-jhAglpPIeUz3blFVnzFwLQS1Hc2-Tqx-EHg,22181
239
- infrahub/core/migrations/graph/m038_redo_0000_prefix_fix.py,sha256=FzMF8Eoqk9O3Pcd4gL6QryJwivGzRwmkWZhUJ5nsI-s,2509
240
- infrahub/core/migrations/graph/m039_ipam_reconcile.py,sha256=yRWTE73Rq1Qh6tPLu98w60zJdx8cgdO7_DL-g10x87s,11112
235
+ infrahub/core/migrations/graph/m034_find_orphaned_schema_fields.py,sha256=lTLONSOL3xbohel-3yDDH0LurbS-nTvnYQS8Orw1bjM,3606
236
+ infrahub/core/migrations/graph/m035_orphan_relationships.py,sha256=vnelev6ejhGR9jXLa1dVlnwMEmE_8rowb806VRMmlq8,1424
237
+ infrahub/core/migrations/graph/m036_drop_attr_value_index.py,sha256=nonVPbTJbj-YjeeTXZ2_AGpGfV470Ympkdd4z89WgfM,1498
238
+ infrahub/core/migrations/graph/m037_index_attr_vals.py,sha256=ARJdcJ961Yro--kPpBcECBdzbWICiC3TQUquy917uNk,22240
239
+ infrahub/core/migrations/graph/m038_redo_0000_prefix_fix.py,sha256=rKpzS5N6IrJzvP1RLfzAq0lIASf6Yq3TCInzhKsu_pY,2431
240
+ infrahub/core/migrations/graph/m039_ipam_reconcile.py,sha256=i2LjlBNBu_uSnsycX1q6N-JJ4kotN4NHky5gsg_rKYE,11171
241
241
  infrahub/core/migrations/graph/m040_duplicated_attributes.py,sha256=2LxsG-CfcZnBirwGhwYL4kU-g3oxl6lNSM12vZTZ7Gw,2930
242
- infrahub/core/migrations/graph/m041_deleted_dup_edges.py,sha256=K2f7JLK_FUQmz5X2v7XvnPaoc4xmIZy_AmWV3EggZq8,5919
243
- infrahub/core/migrations/graph/m042_profile_attrs_in_db.py,sha256=KdEaNPHovJxxiNL3CFRjWBnNzaMdidj1nmW5Jbhrt-4,6431
244
- infrahub/core/migrations/graph/m043_create_hfid_display_label_in_db.py,sha256=giICX6Dwd_z1GaWTWyX3KD5Va34LGth0Vv2uyaof044,7290
245
- infrahub/core/migrations/graph/m044_backfill_hfid_display_label_in_db.py,sha256=FuV3EBWS4lY4dtOn7-1Qgo6J7j4XDq4s5yIQjfCCVDM,39575
246
- infrahub/core/migrations/graph/m045_backfill_hfid_display_label_in_db_profile_template.py,sha256=mnND7TIdPSVcN9uJeYMmRpVjlAU6QBqfu7e1CS31D9Q,7934
247
- infrahub/core/migrations/graph/m046_fill_agnostic_hfid_display_labels.py,sha256=labPu3UwH2L6X3VCVmNQHGSbRS-De0ihVzsaUiTf2so,10210
248
- infrahub/core/migrations/graph/m047_backfill_or_null_display_label.py,sha256=0ZrkeYWKhWERGOg_IH74KNuJtV8bR0bw1jOEkeZBFtE,24328
249
- infrahub/core/migrations/graph/m048_undelete_rel_props.py,sha256=6xlWsWtzzDwtyGmdRGKZa3hCpt-mp5QX7hNeJMnw3NM,5647
250
- infrahub/core/migrations/graph/m049_remove_is_visible_relationship.py,sha256=mByjFKV0F815XNVArsEljSOAP2u-nQzUfPMD3xc7c5Q,1662
251
- infrahub/core/migrations/graph/m050_backfill_vertex_metadata.py,sha256=d2g899pTR7pUhChKXrRpGRIS7AsI8721gnz_QQe9HoM,6289
242
+ infrahub/core/migrations/graph/m041_deleted_dup_edges.py,sha256=2evgPYEKtD-c8Fn8GJWcG9hoSb_O2Gykz3RT64KbtyE,5978
243
+ infrahub/core/migrations/graph/m042_profile_attrs_in_db.py,sha256=A3cTqgnIStYOEuXX20ptvdoKLKUELe3vXPzGk43iE80,6517
244
+ infrahub/core/migrations/graph/m043_create_hfid_display_label_in_db.py,sha256=8yiMA4QguC0c_hN5oJDnfo86Nafpygkam9iSgKuuV_w,7465
245
+ infrahub/core/migrations/graph/m044_backfill_hfid_display_label_in_db.py,sha256=ZclOKxAX9wURWSkbk99s_JFs_7S-sjOZQywohVYV9Mg,39979
246
+ infrahub/core/migrations/graph/m045_backfill_hfid_display_label_in_db_profile_template.py,sha256=kdZbdxu6p9UQExw9pz-zUd1BxMjqU-mtnddG2zTsdww,8142
247
+ infrahub/core/migrations/graph/m046_fill_agnostic_hfid_display_labels.py,sha256=LvWHLncJJxo7ZhfLIb7BYF3yztzIARvnZlUIVPImwuo,10332
248
+ infrahub/core/migrations/graph/m047_backfill_or_null_display_label.py,sha256=EN8ngXnAS-luK433Ess2-npjItjVDxD4j-UGhCduW2Y,24691
249
+ infrahub/core/migrations/graph/m048_undelete_rel_props.py,sha256=kygR6t3iGlTmTaic9bSYnu6yaZu2wOJCxqgLnM6pzQQ,5752
250
+ infrahub/core/migrations/graph/m049_remove_is_visible_relationship.py,sha256=RXV87bib3vF26598dCRxI04E9tB4e3Li_nEIjXPztnw,1715
251
+ infrahub/core/migrations/graph/m050_backfill_vertex_metadata.py,sha256=hHvrUBfw-YU8Yl79MiNcxRoagq97yE-VU-W9WwRLB0o,6342
252
+ infrahub/core/migrations/graph/m051_subtract_branched_from_microsecond.py,sha256=iNEqL4sVDoMH2Q2k6GbrEzr7MS910l_PuCBv5AisZwI,1191
252
253
  infrahub/core/migrations/query/__init__.py,sha256=uMfOD0Bb4k2yOcYk_4oKT3PxxhdPfHJBT0w6rUbRJJQ,866
253
254
  infrahub/core/migrations/query/attribute_add.py,sha256=AobAoXAwQu8c3X0Pcz7-3Al2U2l2kBk27cjgaS5Do6A,5422
254
255
  infrahub/core/migrations/query/attribute_remove.py,sha256=me_DUc8GYimhJALYgM6lUtnWZfkTx9LDbrFOyjAIceU,6058
@@ -258,17 +259,17 @@ infrahub/core/migrations/query/node_duplicate.py,sha256=ef0-VVDvcuhActRods-bZRsG
258
259
  infrahub/core/migrations/query/relationship_duplicate.py,sha256=hjUFjNqhaFc2tEg79BXR2xDr_4Wdmu9fVF02cTEICTk,7319
259
260
  infrahub/core/migrations/query/schema_attribute_update.py,sha256=yFTpHhy3LYhRwPGjFFP5kXHVj5kCtZaXeO6fvhURCFk,3390
260
261
  infrahub/core/migrations/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
261
- infrahub/core/migrations/schema/attribute_kind_update.py,sha256=h4T7EQqW1SejWVmglufX47zKSA8dGPVtyuPquwO1rkI,7047
262
+ infrahub/core/migrations/schema/attribute_kind_update.py,sha256=hVYy4E4AKtceAIEpruFzenuLWpqt4ClMkPC2WpRzAe8,7023
262
263
  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
264
- infrahub/core/migrations/schema/models.py,sha256=DqEgIeUpdk1qtzifmELI4hzQjbhUV5fpPdmdDRrbnaU,1479
265
- infrahub/core/migrations/schema/node_attribute_add.py,sha256=OYYA98SUz28rmvENBva7tT1JeGhfYNtqVCiOdqvQEx8,4506
264
+ infrahub/core/migrations/schema/attribute_supports_profile.py,sha256=NsOpOSVLLtF-eBZ8BQVUPmllntPdUe1sjhugx0KdBxU,3383
265
+ infrahub/core/migrations/schema/models.py,sha256=YXFrghhS_fP_BgyaiUx94VCmlkVKQMJ1pKiUaUNn0ok,1725
266
+ infrahub/core/migrations/schema/node_attribute_add.py,sha256=fjvCQhh0Bb09TPXubBicWAz_Dr1obcAlhQR8TpqlJyY,4344
266
267
  infrahub/core/migrations/schema/node_attribute_remove.py,sha256=bzi8JjkmD5cgJPaAyDlsqQuupGumHEJFUIdGpkKQ_pA,943
267
268
  infrahub/core/migrations/schema/node_kind_update.py,sha256=AWaC9P0SVECer-Np7TzI-bY4T_iwH6CAzX7O_6l-P48,1481
268
269
  infrahub/core/migrations/schema/node_remove.py,sha256=uw4XSf2COeB5S4GjWJ2sB7G0C48AkFc2N3euwCkgQDk,8103
269
270
  infrahub/core/migrations/schema/placeholder_dummy.py,sha256=YBGFUVPi57ARbWgAmbtKD_Y6lkITOR6nFwov7IXVuzU,350
270
- infrahub/core/migrations/schema/tasks.py,sha256=YHe593EKFj5_Ys9ZAIFK8dgdP7_6sGgb5rBXCFE9QjM,4304
271
- infrahub/core/node/__init__.py,sha256=KjrUV5xqSO9EJuvj66KSE9c2xjlPIBrdwbSj2Lv2ios,54686
271
+ infrahub/core/migrations/schema/tasks.py,sha256=7qu1c8uWAUi1p_-6BoCmH9O3NcgmdxY2E3WMNb27FZM,4520
272
+ infrahub/core/node/__init__.py,sha256=yJGevFx0OSCev5BhXMZov4hpBu7sSu4DRsUrQax1b-w,54730
272
273
  infrahub/core/node/base.py,sha256=jZ0Ct--HpC8HuwunYQOT0JiIgEPfaCBpFN5hkpCJtTg,2748
273
274
  infrahub/core/node/create.py,sha256=KVPx2r5Hk6_l18pnp5_ih2oKxr9xJP6WgxuqH1E9EZ0,10519
274
275
  infrahub/core/node/delete_validator.py,sha256=ru9UxE6mMCD-60uEMX-GxlprOes8_HoB8uGk-_qudRo,10567
@@ -301,7 +302,7 @@ infrahub/core/query/task.py,sha256=tLgn8S_KaLYLuOB66D1YM155teHZIHNThkt2iUiKKD4,3
301
302
  infrahub/core/query/task_log.py,sha256=2RdthOAQrmpKZU8uhV_dJCPqwdsSA_1CYSKpL_eZ_yk,1120
302
303
  infrahub/core/query/utils.py,sha256=mv0lNuBUKnIkQtz8B7QUh829BL4P-qD1_Ljk283FzSg,1041
303
304
  infrahub/core/relationship/__init__.py,sha256=broUBD0iwpSSGKJbUdG66uau67TQ_DRhqT_PFhuk1ag,154
304
- infrahub/core/relationship/model.py,sha256=ZO30qRhknogakJ1NNchF9ygBGZjuc64KWT-TDy8anOs,57292
305
+ infrahub/core/relationship/model.py,sha256=cbmUweVEQEe_XRU37x-xU8on_WIkNY4IKIga4C9hEDE,57460
305
306
  infrahub/core/relationship/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
306
307
  infrahub/core/relationship/constraints/count.py,sha256=wFPHJwsI9r_F4eY4UcUCdomv8QvHNgrYrsLgJTOU00c,4380
307
308
  infrahub/core/relationship/constraints/interface.py,sha256=YJgbO7YxlOSo5rVveE2KQ2_8onUt9vMGl7V_2MnV32Y,344
@@ -311,14 +312,14 @@ infrahub/core/relationship/constraints/peer_relatives.py,sha256=8jw1tT7qKZU7DGC6
311
312
  infrahub/core/relationship/constraints/profiles_kind.py,sha256=SrOfR8ME4jMZjAdBoWn06eihxKy-I43cSZNLLj-0Glo,2472
312
313
  infrahub/core/relationship/constraints/profiles_removal.py,sha256=P1fD2tYpduDqt5Y9k9W7cz6aVubSn5dN_P1Fbsbj93Y,7842
313
314
  infrahub/core/schema/__init__.py,sha256=_vOy96uKjAxj8nvTR0qzHcnIYUzdVAAcUIk2kyUKjCQ,6641
314
- infrahub/core/schema/attribute_parameters.py,sha256=ABL1GEsOl4_CcDvK9_NucGMaF6LUeOjAxbDQVm_G7eg,6516
315
- infrahub/core/schema/attribute_schema.py,sha256=2gbkWjEC8_D4nxcaBbs50fF1-kzVxVKqG0tPVnqQ848,9691
315
+ infrahub/core/schema/attribute_parameters.py,sha256=EMkjs7x0Rakxqu-ckXJ0VZCPzRGrRt2DBoKX6OWrJWM,7477
316
+ infrahub/core/schema/attribute_schema.py,sha256=XbQOyWG1EVzOSUx6uQ9RjnP782DtJPqHjs7rIKeKh94,10058
316
317
  infrahub/core/schema/basenode_schema.py,sha256=m9SWsxHgufHYsEiJ7CAgF6OL-whwDCQV-OulLcfF798,29860
317
318
  infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
318
319
  infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
319
320
  infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
320
321
  infrahub/core/schema/generic_schema.py,sha256=VzniSE6hH6ew3-gIODVe37l1TlF7u4iXHB0sbJfW_JA,1588
321
- infrahub/core/schema/manager.py,sha256=oy1tjW2rppsPhEt5Gztyyc2B-CUBfYTzxpsDYxWl8qk,35451
322
+ infrahub/core/schema/manager.py,sha256=70VUn5OPFi5LPvdFJhUku_qkLL9_5BlFQKbt8npWQn4,36017
322
323
  infrahub/core/schema/node_schema.py,sha256=W2Jx5QXrQ5ygUEyTKnIHhj6Xe7jJ6Y-iQArEo05cWRI,6341
323
324
  infrahub/core/schema/profile_schema.py,sha256=sV4lp1UyBye12M7BJcA2obb4tx3M9J5P89SLqkmFxJY,1237
324
325
  infrahub/core/schema/relationship_schema.py,sha256=Ixrt6j7mWa5XrLJlq_8szEohrpqE2dLzlPjSxHRGp-o,8639
@@ -369,7 +370,7 @@ infrahub/core/validators/tasks.py,sha256=Qb9q2l55NKhvWXCrZclVWvJhzsN3yniN7nsYqUL
369
370
  infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
371
  infrahub/core/validators/attribute/choices.py,sha256=UV0L6PsqQzseKrTZC_JZSjgq48memY4JIKwgF01dgyY,5388
371
372
  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/kind.py,sha256=fitdZ5Div_0yeDBE_48yQ9f3dPZuM-21J3NrQoUxbiA,4720
373
374
  infrahub/core/validators/attribute/length.py,sha256=KwX85EKJHaNVBRdtt39vLYJrD206mVkLIIVDV5xQiz0,4534
374
375
  infrahub/core/validators/attribute/min_max.py,sha256=mxwshXSPEEntRsS3RwwONFhD8ya6NiiP0Z6gnUrhBpo,5669
375
376
  infrahub/core/validators/attribute/number_pool.py,sha256=Uvz9yBjYqFB5Wz9oMt9Tle9xCy3bZrbpx7TmMTPh-Kc,4717
@@ -507,7 +508,7 @@ infrahub/graphql/directives.py,sha256=wyIkJFp7l0J4JqNl1Lqu7YfKXP7glrewlQFMDTUAPc
507
508
  infrahub/graphql/enums.py,sha256=9F0XWfjQpC__0YRccYG1T-3qL1V8_PmlRlVpU1-n7nQ,820
508
509
  infrahub/graphql/field_extractor.py,sha256=S0eeTF-vnfry73NbYSLi4KNCyeZS1lAS82r5Tde2tts,3135
509
510
  infrahub/graphql/initialization.py,sha256=G-eHsJhNbCrTXzxSkqXi_1v2NycrIltN5pSKDTJ8EuA,4998
510
- infrahub/graphql/manager.py,sha256=O4ORoSemGCp5urQZz6TFiSnhpojSNmAjoxVlh63MjtU,57996
511
+ infrahub/graphql/manager.py,sha256=yk6WNxovYztClTg_2iPu5oBFcXQyEh5RAgX8hCeDFBo,58276
511
512
  infrahub/graphql/metadata.py,sha256=8P3KMGb5ybNQ3abWz8E7hsfsTTwU2SuJEH47zGoEDro,3856
512
513
  infrahub/graphql/metrics.py,sha256=viq_M57mDYd4DDK7suUttf1FJTgzQ3U50yOuSw_Nd-s,2267
513
514
  infrahub/graphql/middleware.py,sha256=za8Aba-63_mVgc2j8us8giucwIXweR6c7_XN0-VEus4,604
@@ -710,7 +711,7 @@ infrahub/services/scheduler.py,sha256=TbKg74oBINScHJYtV8_lOuQR2RjxqS6IfU_slyjpNY
710
711
  infrahub/services/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
711
712
  infrahub/services/adapters/cache/__init__.py,sha256=WsEthxQbcyCOA2M_FzfQr0Cymo4hprCq0m6Vg55uMXo,1919
712
713
  infrahub/services/adapters/cache/nats.py,sha256=kt8XPR07uSIF07o6GHAWbuQPqIWuYSMP8vcpdBZv-YM,5705
713
- infrahub/services/adapters/cache/redis.py,sha256=PKFdPncLI59w-KUaHSwgQm9VSJkO2h7xMh9xl-aID7I,2115
714
+ infrahub/services/adapters/cache/redis.py,sha256=cIAbjgidrD6f9IoN19bhcmEdoLuimz_5i9gWfdofn7o,2558
714
715
  infrahub/services/adapters/event/__init__.py,sha256=KUA6mW-9JF1haFu4D0G8CTETcR7y_yvpTg7avbQ0wgM,1372
715
716
  infrahub/services/adapters/http/__init__.py,sha256=_IZUvukHSSd8TdgslW5hLGwQ6GNPYanpPX7aClSh3zM,686
716
717
  infrahub/services/adapters/http/httpx.py,sha256=jUPbxnjYZzWxk7fnFt2D4eSbd4JmiAGZFPk0Tz-Eyo0,3652
@@ -770,24 +771,25 @@ infrahub/workflows/models.py,sha256=5yx6ZHCVMcYd4uEvxLREEBZDHHyHzQ_PuAh7z2fJV7k,
770
771
  infrahub/workflows/utils.py,sha256=nJ0K3FtIy-MG0O33h_p5ggU7rxF3Fdj5fIWJ1D7Jl7A,2833
771
772
  infrahub_sdk/__init__.py,sha256=weZAa06Ar0NO5IOKLQICtCceHUCKQxbkBxHebqQGJ1o,401
772
773
  infrahub_sdk/_importer.py,sha256=8oHTMxa_AMO_qbfb3UXNfjSr31S5YJTcqe-YMrixY_E,2257
773
- infrahub_sdk/analyzer.py,sha256=F4D6SSkdd7Z9ItUWInMqeHWNe6b1zVRpCxQROcW4m6Q,4156
774
+ infrahub_sdk/analyzer.py,sha256=oh1rfWtnALjhKkrDsmH-6MQ4XxQ22JSVUTxCwrqLEJY,4206
774
775
  infrahub_sdk/async_typer.py,sha256=gCE-ouMJa-qqf3eze6_z8Wi6mkc6ZeoJFm0vsz0JXaU,919
775
776
  infrahub_sdk/batch.py,sha256=ScRlNyU2OWuflqk0NjSghtdWigxFSLXZFfH_YX3qnak,3811
776
- infrahub_sdk/branch.py,sha256=Bub4CT4J52uBK3U7k5RqJENGKWw66d74XaqVkf_rpsg,13057
777
- infrahub_sdk/checks.py,sha256=aJ4aCde9rMdCK4nl-fSF2rM__I1MkCVBcyiqlgRwDTw,5715
778
- infrahub_sdk/client.py,sha256=_gb6ytKaBiix33iGzfWCsihOOpjYPCif6FHb2qpM7UA,114097
777
+ infrahub_sdk/branch.py,sha256=m14YDb3CGf97ENOOT1SeT9NoamaJGDjKgkeLi5nxVBI,11461
778
+ infrahub_sdk/checks.py,sha256=WuD0RDOMZtlrTF6a2W4BPrm8kojQ0CIL_7JJ948D2NQ,5732
779
+ infrahub_sdk/client.py,sha256=HOhLc69vgYLltwfl9-i5O2007kjWDldlRc8kYeiInqw,115863
779
780
  infrahub_sdk/config.py,sha256=jcDEQFoCPjxDOvpR6bKiTc8MZK6XTTGWmaRvpBT-BNw,8882
780
781
  infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
781
782
  infrahub_sdk/context.py,sha256=QgXZvtUrKolp6ML8TguVK87Wuu-3KyizZVV_N2F4oCw,400
782
783
  infrahub_sdk/convert_object_type.py,sha256=HPwhlQhmPUSLtfC1RqFo9fsCvfdBgJyVrvgjkSOf5MM,2383
783
784
  infrahub_sdk/data.py,sha256=4d8Fd1s7lTeOu8JWXsK2m2BM8t_5HG0Z73fnCZGc7Pc,841
784
785
  infrahub_sdk/diff.py,sha256=WtzmmZxgM8_JdE49W39A8-9hxytZ-_Iw0l2f51jyZEs,6380
786
+ infrahub_sdk/enums.py,sha256=saKB7XnbdN--12SgkuiBLuKKDIuiX6nDJ3OsY2zOEsk,91
785
787
  infrahub_sdk/exceptions.py,sha256=wDSzuhySINDrWHS0qpxUhYEu7YUlTfrOOIRxZkm2jgI,5970
786
788
  infrahub_sdk/generator.py,sha256=Sr8Ar1dM08SqmxqFYOrM0DPJmBxKhb_2WHR4SOnMZdE,3710
787
789
  infrahub_sdk/groups.py,sha256=GL14ByW4GHrkqOLJ-_vGhu6bkYDxljqPtkErcQVehv0,711
788
790
  infrahub_sdk/jinja2.py,sha256=lTfV9E_P5gApaX6RW9M8U8oixQi-0H3U8wcs8fdGVaU,1150
789
791
  infrahub_sdk/object_store.py,sha256=hL3WgpQewrhAZJ7iCRWQoseP18y80NtljBNLSHId6HI,4315
790
- infrahub_sdk/operation.py,sha256=-GszX7cfPHrw4SJbBs4KN0cGOtPdE1APNWxlbgMaHuQ,2747
792
+ infrahub_sdk/operation.py,sha256=Z0kdCYoD-oPHRUt0MPq0w4xeG-qoYKlASxC6Of7dyJQ,2764
791
793
  infrahub_sdk/playback.py,sha256=obAPYDO_3v6EN0aBDllI0T_5lPnCv_Mo3GYHR4Eczs8,1878
792
794
  infrahub_sdk/protocols.py,sha256=-tMWGEQCyd7aC16OV1vhZJvLJ29LizuYSSICuWeI6h0,25381
793
795
  infrahub_sdk/protocols_base.py,sha256=kF8RxX9FVv2RSmpoj8rdePg5YuD1YmJnn9hYDIaNfqw,5588
@@ -798,8 +800,8 @@ infrahub_sdk/repository.py,sha256=B9KWx2lVkMIZ-3RaVO9J9Sc8LXmVPxUVbBoL-jeMyXE,98
798
800
  infrahub_sdk/store.py,sha256=rmTNiAZFebi3I_NOnErhZswZPMrUJrkfu81PHf5aOlE,14091
799
801
  infrahub_sdk/timestamp.py,sha256=PqzBiMdPXnbbpTRinhDnm_JG3sgWpu-D1uJ9mJ5mTuo,6445
800
802
  infrahub_sdk/topological_sort.py,sha256=RqIGYxHlqOUHvMSAxbq6658TYLaEIdrFP4wyK3Hva5w,2456
801
- infrahub_sdk/transforms.py,sha256=rClBQnaSuozz2bS-d5iJgnAjQF1FqYfX3Yc6iTH3b3Q,2348
802
- infrahub_sdk/types.py,sha256=PIHTtI4MxgiAHHml_gCRyanLb5x7O4HK1pACRC3b88Q,1713
803
+ infrahub_sdk/transforms.py,sha256=qs9KzK6OqplASwjwfJYs3-tvotG2djv2kMS8RdEutrw,2348
804
+ infrahub_sdk/types.py,sha256=3GsG_mg_78XqvvleMkj1YOsN_e6-BHQdGRlSY9Y281A,2371
803
805
  infrahub_sdk/utils.py,sha256=PwmAMe7CLQH6dIudrq4ZiLuOgqxn-Au2rNj0ZAU1Fwo,11924
804
806
  infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
805
807
  infrahub_sdk/yaml.py,sha256=PRsS7BEM-Xn5wRLAAG-YLTGRBEJy5Dnyim2YskFfe8I,5539
@@ -808,13 +810,13 @@ infrahub_sdk/ctl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
808
810
  infrahub_sdk/ctl/branch.py,sha256=nENLPHGAhnWLV_TLO9N_cD5evkA6Z8-C_oab1upYEYw,11420
809
811
  infrahub_sdk/ctl/check.py,sha256=SDsPdM8oesfbwCiYG_60zFgtZMamEtgZkmvW2MxH408,7874
810
812
  infrahub_sdk/ctl/cli.py,sha256=ufJwB4XacU2hnaZtGp9hcyf_heYx-dtowFE4eUzw2qE,293
811
- infrahub_sdk/ctl/cli_commands.py,sha256=up6V_nrIya5grK2fXFrV92W3AxzEmLW31RaXYo4cdjA,18840
813
+ infrahub_sdk/ctl/cli_commands.py,sha256=Slg7J_p7ckJj5gMgc4rpgMSstMZZVpLrGQ9-UpeF98Y,18855
812
814
  infrahub_sdk/ctl/client.py,sha256=6bmXmQta9qQCJ8HybQwt2uSF2X1Em91xNFpwiKFujxs,2083
813
815
  infrahub_sdk/ctl/config.py,sha256=aZ_Dhe5uxH1AzTWUz3EN645I2fflRsqAULJr20E3Ki8,3176
814
816
  infrahub_sdk/ctl/exceptions.py,sha256=02qfqdck_TP8CHZe4z8XNEIXMoDmJ0KjF_f0_7HYDrg,280
815
817
  infrahub_sdk/ctl/exporter.py,sha256=CmqyKpf7q5Pu5Wfo_2HktiF12iD_3rJ9Ifb48BIoJdU,1876
816
818
  infrahub_sdk/ctl/generator.py,sha256=S3yM_Ur8xs8_f3CUMOIOOItnHTgPLfwEVAWHGtf1Kl8,4592
817
- infrahub_sdk/ctl/graphql.py,sha256=E2jO8wrGN-1fuP_V0yJXHc5LA3UQZNr-1Iw7lzd4SfA,6648
819
+ infrahub_sdk/ctl/graphql.py,sha256=Zx0MJJvRNNfSMmjqlJP20YUGJHs3TgC30EfCgn1oRhQ,7235
818
820
  infrahub_sdk/ctl/importer.py,sha256=BO8uMNz57HfWRZqO9rnvhPXyOcSJ97Uj0qH-L4UuY2Y,1871
819
821
  infrahub_sdk/ctl/menu.py,sha256=A0NHvu48qbo9aWYNc3nGMNMeXr4LnOr_HNKL5arBWNA,2690
820
822
  infrahub_sdk/ctl/object.py,sha256=OEbAx0Yb0zbXxS2ZnXedZRZDHITQd3iAk_cWUlTHLvg,2706
@@ -824,22 +826,23 @@ infrahub_sdk/ctl/repository.py,sha256=l-VeO4K0nKC6Wxd0f5x_dwKJGv6HeBBC4-CRPXO5Ng
824
826
  infrahub_sdk/ctl/schema.py,sha256=CAq9OSkR1sMRSb-GclFR-dpbyxyRn8qfVeec2gqtc1Q,8099
825
827
  infrahub_sdk/ctl/task.py,sha256=tpNA1zf73qKxfCzchcvK9TJrLvVP84Wb_xrvryTM6FU,3376
826
828
  infrahub_sdk/ctl/transform.py,sha256=5qRqiKeEefs0rda6RAFAAj1jkCKdbPYE_t8O-n436LQ,414
827
- infrahub_sdk/ctl/utils.py,sha256=OB9YTPM0W7Dx5ZTh0OH6Jn1yNYbYfP2wEIEKnGktcCs,7515
829
+ infrahub_sdk/ctl/utils.py,sha256=djLxkMcGiIOOMBUgBN8wxonya4PEFcAE-oB-4pVv7eA,7515
828
830
  infrahub_sdk/ctl/validate.py,sha256=r8b84oWJJVS3ipzDsjyAx1B3U_1509ReK3QTSXkG9pw,3910
829
831
  infrahub_sdk/graphql/__init__.py,sha256=cviPynthQYVJb3eMca2avfRWYYlIBMKYi7-Tn9c0cQI,329
830
832
  infrahub_sdk/graphql/constants.py,sha256=VcPJDeQh3r2AX3a5W-Vji6tRBtCqkEClUvQUtBoRPXk,323
831
833
  infrahub_sdk/graphql/plugin.py,sha256=0-lR88aPa798lvVPGmqKKc9mrKR3otaxyPMhwlgwoK4,3161
832
834
  infrahub_sdk/graphql/query.py,sha256=UtakHUwenYIUEioBtEKHAXKnExfLIsuuLMdtEpCOAN8,2267
833
- infrahub_sdk/graphql/renderers.py,sha256=1TZJaqfv-eD6WYxx6ATcKmKEmHTlmFXf89G49uRVTd8,8681
834
- infrahub_sdk/graphql/utils.py,sha256=eS6Sg0n7DsS4DZ3Lcfy7ytmd9Dy7AWkNXIdSICV0kGQ,1460
835
+ infrahub_sdk/graphql/renderers.py,sha256=wO4nhUw2KxvWI48NJY7W8ifuB_D_oycIOdwn-FIP2yQ,9320
836
+ infrahub_sdk/graphql/utils.py,sha256=knRhQTJSp-vYq9WG3kSQx-hsF2vzJVtrn2SF1ULJwVc,4874
835
837
  infrahub_sdk/node/__init__.py,sha256=clAUZ9lNVPFguelR5Sg9PzklAZruTKEm2xk-BaO68l8,1262
836
- infrahub_sdk/node/attribute.py,sha256=m2DZGSNgjTGiquItVy0timLOa3dUv5Z0lY1M7lMFWy8,4572
837
- infrahub_sdk/node/constants.py,sha256=lBWgoVGum9SfOH9JFj56JFfMtlLUTX2qvxTNzKfFbBc,882
838
- infrahub_sdk/node/node.py,sha256=MOEkIeK0o1n3MtBXfsyOg-hDZFqqX14EZojduqd7Nu0,89781
838
+ infrahub_sdk/node/attribute.py,sha256=nHMO_f31N5XgZ1SaPJQ_gvZtivbj4HK8YehV_82PAbE,5093
839
+ infrahub_sdk/node/constants.py,sha256=qlgp5PQTo_P1UFWvoVjaHyNPt1Tf_90p7tpMGE8UxOk,1366
840
+ infrahub_sdk/node/metadata.py,sha256=4HPWP6CkO1T9luI3iZnVD4PH3je__d3WbVJE43Dm7CM,2485
841
+ infrahub_sdk/node/node.py,sha256=qj-vUFMbiLi9UyiAklLZ24F2fvB9vHLbCAVyz7SXAQI,92366
839
842
  infrahub_sdk/node/parsers.py,sha256=sLDdT6neoYSZIjOCmq8Bgd0LK8FFoasjvJLuSz0whSU,543
840
- infrahub_sdk/node/property.py,sha256=IjMQH4zCX1Y_bg0_H6X0PJwQb5VMJLuaOnqARmesCho,736
841
- infrahub_sdk/node/related_node.py,sha256=r-0UkEjR2jYnjN89DvBatrax7fXYqjfNfLYZJEiPQLA,10635
842
- infrahub_sdk/node/relationship.py,sha256=YIELvhSJqEnncN6BAcQAguNDNTr66PHmJjl7gIlAPKM,13595
843
+ infrahub_sdk/node/property.py,sha256=fgTm3aumD3Myzs4g98r07U0soqijNJJct528x07HJI8,896
844
+ infrahub_sdk/node/related_node.py,sha256=ueIg7F9gbQwxzHqjmWdICtOvhrSFfXJ9CVCxFHx4hhs,11901
845
+ infrahub_sdk/node/relationship.py,sha256=2liBGgeoHzPA7G1ckFekiSxcjcVHNtVo9H_6ROl9B04,14129
843
846
  infrahub_sdk/protocols_generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
844
847
  infrahub_sdk/protocols_generator/constants.py,sha256=8y5L7aqxhez6_10Cl2zUfNlHJCCosIVnxrOPKrwNVEw,820
845
848
  infrahub_sdk/protocols_generator/generator.py,sha256=-VeWwZeqkhlg7aUnRkjGGqNHMrDandH0jHwVO6sNepg,5272
@@ -859,7 +862,7 @@ infrahub_sdk/pytest_plugin/items/jinja2_transform.py,sha256=sHP_cGJ2wXeDT1nQLFv6
859
862
  infrahub_sdk/pytest_plugin/items/python_transform.py,sha256=Qe5QcCeeXzSoKs6C20XVdgYRvm9ide5lFTCShzJDTVo,4183
860
863
  infrahub_sdk/schema/__init__.py,sha256=tX_Pq6L2dAsTWmEomoXtFj8NE-arSetBFx8BvtQ8Q0k,31132
861
864
  infrahub_sdk/schema/main.py,sha256=Qz3J82G0tBwFwcvLul_Wn-75g3PFNYKCHpkp4I_lJuQ,12206
862
- infrahub_sdk/schema/repository.py,sha256=3rFNlFqlUebnSaDSBiR2058DrEjnpvbrII46VIDkQyc,12568
865
+ infrahub_sdk/schema/repository.py,sha256=mecs80HEXpV2KFNOG3GhIAwCFXIEHdIreokA-7kREOI,12530
863
866
  infrahub_sdk/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
864
867
  infrahub_sdk/spec/menu.py,sha256=KG8KpDYqlVWsCQXCUlAX7P7Jbw3bB60hlTMRs0cohOk,1078
865
868
  infrahub_sdk/spec/models.py,sha256=BU0cyIn67KOhN3N3NB9T06NrK4fS7yFiCoL_Jpjtqsc,143
@@ -904,11 +907,11 @@ infrahub_testcontainers/helpers.py,sha256=7Cat-Q4bcblg5oLvMW1lwMZ7fxxc5Ba9Q2pvAT
904
907
  infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
905
908
  infrahub_testcontainers/measurements.py,sha256=gR-uTasSIFCXrwvnNpIpfsQIopKftT7pBiarCgIShaQ,2214
906
909
  infrahub_testcontainers/models.py,sha256=rEOe8SLcWV65U6pFT-5wl8NXdtGCPq9OtGzXcOnCOis,990
907
- infrahub_testcontainers/performance_test.py,sha256=_nf7Uk15mHwqpN4y7XUfI4JI54-UaXW-Yu4uwMIx21w,6185
910
+ infrahub_testcontainers/performance_test.py,sha256=CUgoXBVMDUBlBPzh47YTUOnqXuSyUJesKxvJVS_lKGE,6190
908
911
  infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
909
912
  infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
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,,
913
+ infrahub_server-1.7.1.dist-info/METADATA,sha256=Bm46KmwgKHAUyKhatEVkTXYXRSIGpR5gOElrRXdLOZM,6024
914
+ infrahub_server-1.7.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
915
+ infrahub_server-1.7.1.dist-info/entry_points.txt,sha256=A5PUS8vmKTN4UstaQS-cQBXtPybBVcDk-n4sWtiy0bk,340
916
+ infrahub_server-1.7.1.dist-info/licenses/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
917
+ infrahub_server-1.7.1.dist-info/RECORD,,
@@ -9,4 +9,3 @@ infrahubasync = infrahub.workers.infrahub_async
9
9
 
10
10
  [pytest11]
11
11
  pytest-infrahub = infrahub_sdk.pytest_plugin.plugin
12
- pytest-infrahub-performance-test = infrahub_testcontainers.plugin
@@ -86,7 +86,7 @@ class InfrahubPerformanceTest:
86
86
  self,
87
87
  definition: MeasurementDefinition,
88
88
  value: float | str,
89
- **kwargs: str | float,
89
+ **kwargs: dict[str, float],
90
90
  ) -> None:
91
91
  self.measurements.append(
92
92
  InfrahubMeasurementItem(