infrahub-server 1.4.10__py3-none-any.whl → 1.5.0b0__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 (103) hide show
  1. infrahub/actions/tasks.py +200 -16
  2. infrahub/api/artifact.py +3 -0
  3. infrahub/api/query.py +2 -0
  4. infrahub/api/schema.py +3 -0
  5. infrahub/auth.py +5 -5
  6. infrahub/cli/db.py +2 -2
  7. infrahub/config.py +7 -2
  8. infrahub/core/attribute.py +22 -19
  9. infrahub/core/branch/models.py +2 -2
  10. infrahub/core/branch/needs_rebase_status.py +11 -0
  11. infrahub/core/branch/tasks.py +2 -2
  12. infrahub/core/constants/__init__.py +1 -0
  13. infrahub/core/convert_object_type/object_conversion.py +201 -0
  14. infrahub/core/convert_object_type/repository_conversion.py +89 -0
  15. infrahub/core/convert_object_type/schema_mapping.py +27 -3
  16. infrahub/core/diff/query/artifact.py +1 -1
  17. infrahub/core/graph/__init__.py +1 -1
  18. infrahub/core/initialization.py +2 -2
  19. infrahub/core/manager.py +3 -81
  20. infrahub/core/migrations/graph/__init__.py +2 -0
  21. infrahub/core/migrations/graph/m040_profile_attrs_in_db.py +166 -0
  22. infrahub/core/node/__init__.py +23 -2
  23. infrahub/core/node/create.py +67 -35
  24. infrahub/core/node/lock_utils.py +98 -0
  25. infrahub/core/property.py +11 -0
  26. infrahub/core/protocols.py +1 -0
  27. infrahub/core/query/attribute.py +27 -15
  28. infrahub/core/query/node.py +47 -184
  29. infrahub/core/query/relationship.py +43 -26
  30. infrahub/core/query/subquery.py +0 -8
  31. infrahub/core/relationship/model.py +59 -19
  32. infrahub/core/schema/attribute_schema.py +0 -2
  33. infrahub/core/schema/definitions/core/repository.py +7 -0
  34. infrahub/core/schema/relationship_schema.py +0 -1
  35. infrahub/core/schema/schema_branch.py +3 -2
  36. infrahub/generators/models.py +31 -12
  37. infrahub/generators/tasks.py +3 -1
  38. infrahub/git/base.py +38 -1
  39. infrahub/graphql/api/dependencies.py +2 -4
  40. infrahub/graphql/api/endpoints.py +2 -2
  41. infrahub/graphql/app.py +2 -4
  42. infrahub/graphql/initialization.py +2 -3
  43. infrahub/graphql/manager.py +212 -137
  44. infrahub/graphql/middleware.py +12 -0
  45. infrahub/graphql/mutations/branch.py +11 -0
  46. infrahub/graphql/mutations/computed_attribute.py +110 -3
  47. infrahub/graphql/mutations/convert_object_type.py +34 -13
  48. infrahub/graphql/mutations/ipam.py +21 -8
  49. infrahub/graphql/mutations/main.py +37 -153
  50. infrahub/graphql/mutations/profile.py +195 -0
  51. infrahub/graphql/mutations/proposed_change.py +2 -1
  52. infrahub/graphql/mutations/repository.py +22 -83
  53. infrahub/graphql/mutations/webhook.py +1 -1
  54. infrahub/graphql/registry.py +173 -0
  55. infrahub/graphql/schema.py +4 -1
  56. infrahub/lock.py +52 -26
  57. infrahub/locks/__init__.py +0 -0
  58. infrahub/locks/tasks.py +37 -0
  59. infrahub/patch/plan_writer.py +2 -2
  60. infrahub/profiles/__init__.py +0 -0
  61. infrahub/profiles/node_applier.py +101 -0
  62. infrahub/profiles/queries/__init__.py +0 -0
  63. infrahub/profiles/queries/get_profile_data.py +99 -0
  64. infrahub/profiles/tasks.py +63 -0
  65. infrahub/repositories/__init__.py +0 -0
  66. infrahub/repositories/create_repository.py +113 -0
  67. infrahub/tasks/registry.py +6 -4
  68. infrahub/webhook/models.py +1 -1
  69. infrahub/workflows/catalogue.py +38 -3
  70. infrahub/workflows/models.py +17 -2
  71. infrahub_sdk/branch.py +5 -8
  72. infrahub_sdk/client.py +364 -84
  73. infrahub_sdk/convert_object_type.py +61 -0
  74. infrahub_sdk/ctl/check.py +2 -3
  75. infrahub_sdk/ctl/cli_commands.py +16 -12
  76. infrahub_sdk/ctl/config.py +8 -2
  77. infrahub_sdk/ctl/generator.py +2 -3
  78. infrahub_sdk/ctl/repository.py +39 -1
  79. infrahub_sdk/ctl/schema.py +12 -1
  80. infrahub_sdk/ctl/utils.py +4 -0
  81. infrahub_sdk/ctl/validate.py +5 -3
  82. infrahub_sdk/diff.py +4 -5
  83. infrahub_sdk/exceptions.py +2 -0
  84. infrahub_sdk/graphql.py +7 -2
  85. infrahub_sdk/node/attribute.py +2 -0
  86. infrahub_sdk/node/node.py +28 -20
  87. infrahub_sdk/playback.py +1 -2
  88. infrahub_sdk/protocols.py +40 -6
  89. infrahub_sdk/pytest_plugin/plugin.py +7 -4
  90. infrahub_sdk/pytest_plugin/utils.py +40 -0
  91. infrahub_sdk/repository.py +1 -2
  92. infrahub_sdk/schema/main.py +1 -0
  93. infrahub_sdk/spec/object.py +43 -4
  94. infrahub_sdk/spec/range_expansion.py +118 -0
  95. infrahub_sdk/timestamp.py +18 -6
  96. {infrahub_server-1.4.10.dist-info → infrahub_server-1.5.0b0.dist-info}/METADATA +6 -9
  97. {infrahub_server-1.4.10.dist-info → infrahub_server-1.5.0b0.dist-info}/RECORD +102 -84
  98. infrahub_testcontainers/models.py +2 -2
  99. infrahub_testcontainers/performance_test.py +4 -4
  100. infrahub/core/convert_object_type/conversion.py +0 -134
  101. {infrahub_server-1.4.10.dist-info → infrahub_server-1.5.0b0.dist-info}/LICENSE.txt +0 -0
  102. {infrahub_server-1.4.10.dist-info → infrahub_server-1.5.0b0.dist-info}/WHEEL +0 -0
  103. {infrahub_server-1.4.10.dist-info → infrahub_server-1.5.0b0.dist-info}/entry_points.txt +0 -0
@@ -5,10 +5,10 @@ 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=Oaz6sku7E_2aadh4fFIjDeZn9YUGIY6zhzVlctQ3xbw,3820
8
+ infrahub/actions/tasks.py,sha256=X41SgaXakpAQggXm1L6H7pUxmwlFWaKtb13dcsFsZ9U,10801
9
9
  infrahub/actions/triggers.py,sha256=5BKt8NkafArs8tdSQUb2uBtJVXfZrYUePByOn9d7-1Y,772
10
10
  infrahub/api/__init__.py,sha256=dtRtBRpEgt7Y9Zdwy85jpSr8qfO_2xNTgTQLCJPQiZI,2182
11
- infrahub/api/artifact.py,sha256=NfdtV6d5npb2yRPo5qcEkcvHZII8pmby0X8HEFhnzVc,3928
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
@@ -21,8 +21,8 @@ infrahub/api/internal.py,sha256=ZlE5BkdGcrmLq1RZOCvv8OBBL7iT7wHKGG9Kqc-TTKg,5339
21
21
  infrahub/api/menu.py,sha256=xp5bj5JXQZA6ZEPWoTSGGSfTXZ1sVmehMxr3VSG7FlQ,1216
22
22
  infrahub/api/oauth2.py,sha256=OwJEsASnQGptn5Aa-LN7_VqEEP4YeXYGOqfq71pD3u8,5642
23
23
  infrahub/api/oidc.py,sha256=HVbkLszrhLia6XUbeCnwWs97rehLYKwNN5yTFJ255rs,8473
24
- infrahub/api/query.py,sha256=xc5aAY0TLHnswdjiIpvThG974EKGVIXvZCbtdiiZkPw,7312
25
- infrahub/api/schema.py,sha256=dUSB51YXaWELZuXYI7UNemd60MJPPBv4m6-MexXOE0k,17450
24
+ infrahub/api/query.py,sha256=l8WinRHzgc97avxUQ-pOOJEz7JAVmbBhFnjY4QzAIak,7464
25
+ infrahub/api/schema.py,sha256=6FWZsNHF1XhH1apIeWXYJrdOVhUg8-q8XcUKBrwg990,17566
26
26
  infrahub/api/static/redoc.standalone.js,sha256=77kGx7mVN9EcdER2ZM4gQ-E-ra_N6AZq9QseAeD6kt0,1042008
27
27
  infrahub/api/static/swagger-ui-bundle.js,sha256=wuSp7wgUSDn_R8FCAgY-z-TlnnCk5xVKJr1Q2IDIi6E,1452753
28
28
  infrahub/api/static/swagger-ui.css,sha256=QBcPDuhZ0X-SExunBzKaiKBw5PZodNETZemnfSMvYRc,152071
@@ -31,7 +31,7 @@ infrahub/api/transformation.py,sha256=xGTLxh3gvohzpORLZy_MY2ZkUuFtKhVKR4ygWy8RYW
31
31
  infrahub/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  infrahub/artifacts/models.py,sha256=QMGEhEEUGE5cvNdSeJpq9G6u1Yw-bL6V0GwB18B2Tow,2133
33
33
  infrahub/artifacts/tasks.py,sha256=L2DOSvUB5ezcxLpy5cFKGzkLtNBjkRqo2Igs1n8eRUQ,3487
34
- infrahub/auth.py,sha256=TItFIxrPDcZGWq2w0lBdnmMrXy1Wrf5uzHuTk3urm2A,10199
34
+ infrahub/auth.py,sha256=oHhMsDikHD2GiHbdy8a942M84Ubt96z6M4kJIm2JJJE,10158
35
35
  infrahub/branch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  infrahub/branch/merge_mutation_checker.py,sha256=bKiQEWEqUqjQEIBDaOKZ2LwA9kgWCEyss80B5yGhPX8,1147
37
37
  infrahub/branch/tasks.py,sha256=09AtjKpA5TC9NxsNt3oE--1pHeh1h1hRYvY41YfMt90,1059
@@ -39,7 +39,7 @@ 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=hqZcklxTgAKuXWOthrltOdENsiiTthq6tqySxu4HPFE,37727
42
+ infrahub/cli/db.py,sha256=0GBgRFU79CFP8V_wJtq4Jka8bPb1s2Kjz5A84qn553E,37713
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
45
  infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
@@ -55,22 +55,23 @@ infrahub/computed_attribute/gather.py,sha256=xhH4dsgCjRFyFshns4Iu3sloe5m1bVMRdeQ
55
55
  infrahub/computed_attribute/models.py,sha256=P_MijLwCVd7394oyTTfYQ3HmX5wIF966jdchuZaLRbs,17361
56
56
  infrahub/computed_attribute/tasks.py,sha256=FMNJYPuLp2tBKP-ENNUlZhc6nkq78yl7817mCKTBt2g,17415
57
57
  infrahub/computed_attribute/triggers.py,sha256=ve1cUj0CZ7dU1VtZkxET9LD8StszKIL9mCkTZpCeUaI,2304
58
- infrahub/config.py,sha256=XV_dLvHnpb5zvgi_jkVZdsId481Jbs6VGWvNwYMkTTw,38957
58
+ infrahub/config.py,sha256=jWGDVIwZiRdn7TRw0LwcFD61zr5T0mUacQ9C2MYLoLg,39188
59
59
  infrahub/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
60
  infrahub/constants/database.py,sha256=WmV1iuOk4xulxZHOVvO3sS_VF1eTf7fKh0TPe_RnfV4,507
61
61
  infrahub/constants/environment.py,sha256=ry-6qsBzSumOjjiq1D3XNoquf1LWqFKiQSJj8t6nET4,32
62
62
  infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
63
63
  infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
64
64
  infrahub/core/account.py,sha256=6f1cIDWvL-HsbzL0UwWoCbDTzx55wzd_SkpQXiKDjcE,27477
65
- infrahub/core/attribute.py,sha256=f1-XLuRzbpG7T8y6pqQQqxQkbGDWhS5AZA2_r_mzY-A,44537
65
+ infrahub/core/attribute.py,sha256=cRbhDCwuq6l2ld5WpbZcvE0Lmyjtfvt0diROmY_JrZ4,44447
66
66
  infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
67
67
  infrahub/core/branch/enums.py,sha256=vGnaTCzikvMcLikKN25TJ8uCmhnD448dp1ve1_tLjwQ,186
68
- infrahub/core/branch/models.py,sha256=q8n1KNNPQ3bwz_cMJ_GwGsjF1FPcpazwdUYr6x4Gg-w,20296
69
- infrahub/core/branch/tasks.py,sha256=ReijjzGzS4aLB8h3FNrDqFN-xZ7bmxcrYW8zm_sFgZ8,20886
68
+ infrahub/core/branch/models.py,sha256=pI8_OvQX6u90mpRvwAPsj3YC9jNoP9uAEx-L6zntg8s,20355
69
+ infrahub/core/branch/needs_rebase_status.py,sha256=purrg93k9zWcV9NONjIdMF8cWLXEKHq6YjO0ayC3C04,407
70
+ infrahub/core/branch/tasks.py,sha256=yy5b2xzcZPEg3W0sHfqmaRaQ7WRXia65V7o1ZGokL1A,20896
70
71
  infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
72
  infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
72
73
  infrahub/core/changelog/models.py,sha256=UgfJdOFUkMmjeUKe1mPCO7WE3jNENw0UJU3LWFf20HQ,29920
73
- infrahub/core/constants/__init__.py,sha256=fw1Fmfrj_42ZH3hM41JTKeo26kqyIYbJx1T0eQ5wfZg,9783
74
+ infrahub/core/constants/__init__.py,sha256=h2yOMEXCjxt7HIrM1OfOGQ-tUz40xfqepxMvuIFijBA,9838
74
75
  infrahub/core/constants/database.py,sha256=x5tWaT3e0WfCxxrHMcSoHUBMfcUzStLi133CqHjSosU,368
75
76
  infrahub/core/constants/infrahubkind.py,sha256=65xU-8LYBcHbRc3PKAsuE_j37i-1Mpi0LmMXfCWSIUQ,3012
76
77
  infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
@@ -79,8 +80,9 @@ infrahub/core/constraint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
79
80
  infrahub/core/constraint/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
81
  infrahub/core/constraint/node/runner.py,sha256=5L_LCILXMLL4lOxJ_l9au3JpqDBKDPgpX-hZhwjjQMo,1920
81
82
  infrahub/core/convert_object_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- infrahub/core/convert_object_type/conversion.py,sha256=k4Er1VnuCU8I3MU5FXFbxNaoMRVw8UIEhsqOYDm1N_o,6196
83
- infrahub/core/convert_object_type/schema_mapping.py,sha256=xf7xQwjGd3HQ-N7_J7dwuY4RUR9sivKoy7Vwl4YlsBM,2485
83
+ infrahub/core/convert_object_type/object_conversion.py,sha256=dEzAC1IP8_Qj5c4rmrrn5S6ck5QmLKfKoGjQyBoJmn4,8931
84
+ infrahub/core/convert_object_type/repository_conversion.py,sha256=6H5nVp8tB4ZJ8KtPgTVKZsLWZWSp_u5Vsan7jT62u9s,4184
85
+ infrahub/core/convert_object_type/schema_mapping.py,sha256=uWjNXtWnq-HsMxGR05WfRfByXY3481lgUYAvkWvs6Lk,3170
84
86
  infrahub/core/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
87
  infrahub/core/diff/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
88
  infrahub/core/diff/artifacts/calculator.py,sha256=qk1DspB3bkKeWJFesLbmziCALVnbRadjrez1kn_IZWU,4435
@@ -116,7 +118,7 @@ infrahub/core/diff/parent_node_adder.py,sha256=AFq2KJHGgUVem4WCg-9Qi9h6TTwt-JID1
116
118
  infrahub/core/diff/payload_builder.py,sha256=5R_QuPM5P_uQONmTDbtpIjhshs_OJCcXLnVYjWw-78Q,2094
117
119
  infrahub/core/diff/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
120
  infrahub/core/diff/query/all_conflicts.py,sha256=gWLwkCR2AK0IJccnhcE8vkSHu5ugZfKTDhCoFi4yAJo,3058
119
- infrahub/core/diff/query/artifact.py,sha256=aYoLeFjFsSYkmHBhIlHMBnil2DkHawpxZ2aHokwn6eQ,9098
121
+ infrahub/core/diff/query/artifact.py,sha256=jopnYwuYEVvknCXqqI3TQnMH69ABfH49p1Zu6hH9dYY,9098
120
122
  infrahub/core/diff/query/delete_query.py,sha256=KMZ-HbSz2RKYqqMZ1Lj0mZBlWvkBYOyOvab2UCki1eo,1021
121
123
  infrahub/core/diff/query/diff_get.py,sha256=SzlJAF5DNKcbavgVOxLKJ-o8EsuImTGE2uNPg9hcMq0,7438
122
124
  infrahub/core/diff/query/diff_summary.py,sha256=sypXfK4EO_BZBuohlv419AjgL5ZeRwMiwnI7IIlh0KE,3841
@@ -139,11 +141,11 @@ infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_S
139
141
  infrahub/core/diff/repository/repository.py,sha256=u0QTMY1e2dknG_DuRAwzFt-Lp1_mdj5lqF2ymt77k9E,25581
140
142
  infrahub/core/diff/tasks.py,sha256=jSXlenTJ5Fc189Xvm971e3-gBDRnfN19cxNaWvEFwAE,3306
141
143
  infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
142
- infrahub/core/graph/__init__.py,sha256=pqEHefyIWiA492sH7qk0HW4SxWc4ugXBFIhpI4DyvFY,19
144
+ infrahub/core/graph/__init__.py,sha256=2_7AH-ObUmILq-7DD7GPDWYxj_MZxk3VgQCBMNBIroI,19
143
145
  infrahub/core/graph/constraints.py,sha256=lmuzrKDFoeSKRiLtycB9PXi6zhMYghczKrPYvfWyy90,10396
144
146
  infrahub/core/graph/index.py,sha256=A9jzEE_wldBJsEsflODeMt4GM8sPmmbHAJRNdFioR1k,1736
145
147
  infrahub/core/graph/schema.py,sha256=o50Jcy6GBRk55RkDJSMIDDwHhLD7y_RWOirI9rCex4A,10776
146
- infrahub/core/initialization.py,sha256=QUHRXUJu4TWqBYE_qvmu5Q77ZQYwLfSmYEzHgP6ziO0,21896
148
+ infrahub/core/initialization.py,sha256=G1Gnv5ILGfz3TaNDpBAdXGR8skNdAiSFPjj4PTk7-lU,21900
147
149
  infrahub/core/integrity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
150
  infrahub/core/integrity/object_conflict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
151
  infrahub/core/integrity/object_conflict/conflict_recorder.py,sha256=gDOx-Ohle0GxfsNm-FEaBMipaQLMxMVg3BoAHEhuK5E,6125
@@ -155,10 +157,10 @@ infrahub/core/ipam/reconciler.py,sha256=48do6rx12G25gaKuOguSrVdUDXVpMr3t6ogU1hdP
155
157
  infrahub/core/ipam/size.py,sha256=Iu7cVvN9MkilyG_AGvYm3g3dSDesKRVdDh_AKH7yAqk,614
156
158
  infrahub/core/ipam/tasks.py,sha256=SRVkCv6TBI_VfTZ_tL_ABDaPn3cUNR6vmBJCuahInjI,1492
157
159
  infrahub/core/ipam/utilization.py,sha256=d-zpXCaWsHgJxBLopCDd7y4sJYvHcIzzpYhbTMIgH74,6733
158
- infrahub/core/manager.py,sha256=xMXPwlaGNnghkRUW0ILwJAUlBQJZqo9cGp9GVyqkqYk,47564
160
+ infrahub/core/manager.py,sha256=ZDQsxVNZdOMNn-Dm0xgcGLrW3PtTNFMSVaLGnXWwcik,44103
159
161
  infrahub/core/merge.py,sha256=TNZpxjNYcl3dnvE8eYXaWSXFDYeEa8DDsS9XbR2XKlA,11217
160
162
  infrahub/core/migrations/__init__.py,sha256=dIExw90CrdTByeJqpiWkaZBclpAfzatG2H6fXx54su0,1305
161
- infrahub/core/migrations/graph/__init__.py,sha256=nCm3XHpKwSrekrOU0WFMVJlnIdJmf9KayjjERIYGx7Q,4225
163
+ infrahub/core/migrations/graph/__init__.py,sha256=jjNnb9CfB-1wyj3RrxGNmGfB85WP_r3gkBZMGSLXB0U,4294
162
164
  infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
163
165
  infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
164
166
  infrahub/core/migrations/graph/m003_relationship_parent_optional.py,sha256=Aya-s98XfE9C7YluOwEjilwgnjaBnZxp27w_Xdv_NmU,2330
@@ -198,6 +200,7 @@ infrahub/core/migrations/graph/m036_drop_attr_value_index.py,sha256=z2BplzX0mue3
198
200
  infrahub/core/migrations/graph/m037_index_attr_vals.py,sha256=bJB4yPWE73XA_ErUcnY90CR09_jbtA0jW6tE5U0GvQ4,22730
199
201
  infrahub/core/migrations/graph/m038_redo_0000_prefix_fix.py,sha256=8seWnXQhgEJDFLWxYHVcnMNDPcHq5C24c0RYrtn_WGE,2411
200
202
  infrahub/core/migrations/graph/m039_ipam_reconcile.py,sha256=gUf4Fo3CrzJ2hwbaKlQclripTDrI7cVk_GHsBlBNMKE,10916
203
+ infrahub/core/migrations/graph/m040_profile_attrs_in_db.py,sha256=gOa8BdKDnRB6PEtDnyjp9Nmu4Fb8ARSu9-hEICYQTuw,7488
201
204
  infrahub/core/migrations/query/__init__.py,sha256=JoWOUWlV6IzwxWxObsfCnAAKUOHJkE7dZlOsfB64ZEo,876
202
205
  infrahub/core/migrations/query/attribute_add.py,sha256=oitzB-PPAclfyNtcwCWJY3RdI5Zi4oEnR62BDzn1UQk,4835
203
206
  infrahub/core/migrations/query/attribute_rename.py,sha256=onb9Nanht1Tz47JgneAcFsuhqqvPS6dvI2nNjRupLLo,6892
@@ -217,15 +220,16 @@ infrahub/core/migrations/schema/placeholder_dummy.py,sha256=3T3dBwC_ZyehOJr2KRKF
217
220
  infrahub/core/migrations/schema/tasks.py,sha256=2J8gHGSP-WhxSi4GYhOc9xAJOg_S1ONm3YE4_ukLKxw,4164
218
221
  infrahub/core/migrations/shared.py,sha256=G72VIHtH4DOM09UOXZE2zfILGDej7nPKdvdfrPRMp7M,7921
219
222
  infrahub/core/models.py,sha256=xwEeXSTD4j13hbyZAjZAlrhXk1hHvWl9I7ve7uUbR7U,26649
220
- infrahub/core/node/__init__.py,sha256=mFoAxo1SYHmQ3Vp5KaHdsF584mnz75aCJfxzOEGNkn0,42514
223
+ infrahub/core/node/__init__.py,sha256=Rrpf2Ma2mEAidlDLnFWhb0o4Rr-dWk3G52pdcF4dpEQ,43383
221
224
  infrahub/core/node/base.py,sha256=BAowVRCK_WC50yXym1kCyUppJDJnrODGU5uoj1s0Yd4,2564
222
225
  infrahub/core/node/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
226
  infrahub/core/node/constraints/attribute_uniqueness.py,sha256=9MThTmuqZ7RgK71ZZARlw1k1x3ARn1U67g2_Gatd6rE,2099
224
227
  infrahub/core/node/constraints/grouped_uniqueness.py,sha256=F5pmnXVuQNlVmdZY5FRxSGK4gGi1BK1IRgw4emCTlLw,9506
225
228
  infrahub/core/node/constraints/interface.py,sha256=fwB32pRLxteQyKRArqekQ0RXlrDkyzp7Vmq03vSpUEo,291
226
- infrahub/core/node/create.py,sha256=-Yy81om_gARdeCs1mNNag-WMijVX8S27uBIN08BdEqQ,8138
229
+ infrahub/core/node/create.py,sha256=gDoa-HNLGaLK46u0uzHXPrYmyaATGAtMo9b_0fwFNm0,9331
227
230
  infrahub/core/node/delete_validator.py,sha256=mj_HQXkTeP_A3po65-R5bCJnDM9CmFFmcUQIxwPlofc,10559
228
231
  infrahub/core/node/ipam.py,sha256=NWb3TUlVQOGAzq1VvDwISLh61HML0jnalsJ7QojqGwQ,2669
232
+ infrahub/core/node/lock_utils.py,sha256=oSpQEwEa-IKtWrG0CZKt6d5PJn8_vD0SQu5q6lUCXjc,3826
229
233
  infrahub/core/node/permissions.py,sha256=uQzQ62IHcSly6fzPre0nQzlrkCIKzH4HyQkODKB3ZWM,2207
230
234
  infrahub/core/node/proposed_change.py,sha256=WXwii_MsWOkkd4A_5LVhmE5uIRHZnpNhoySbdXi-hPw,1617
231
235
  infrahub/core/node/resource_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -234,20 +238,20 @@ infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=SfP0i1aM5tTPU7wKmij
234
238
  infrahub/core/node/resource_manager/number_pool.py,sha256=QbPIbBJSGy8Et3PlsRXp7ToFZLO2bpQPk1P4PRtunLk,5762
235
239
  infrahub/core/node/standard.py,sha256=gvAY-1UWj4lUc8tqVZ8AqOFhCR5rhR--gI25g5AOD8o,7284
236
240
  infrahub/core/path.py,sha256=CTSnW6OcvnGNqTcOUZcVOMDSB4PLmeGYpY9U84uv9r8,6181
237
- infrahub/core/property.py,sha256=rwsqeaIvCMkHfJYl4WfsNPAS7KS0POo5rAN7vAprXGA,5102
238
- infrahub/core/protocols.py,sha256=CXwYfHHUgJIFMZvsv9Fc8VBAfvXDzy7Bu4RJvQNj6no,12546
241
+ infrahub/core/property.py,sha256=mUf8JGUHSUVBaegN7TPmmJ2CnQRGo2d1rQEQQmdNmbU,5386
242
+ infrahub/core/protocols.py,sha256=rIeTlKjQAH7ti2VlHEjCU63nfhQWi_ByhWqW4uz-zW8,12586
239
243
  infrahub/core/protocols_base.py,sha256=cEi6giHtEUmaD0JWfDfWHJhEv_6wjaBA3oJRJCbvc6Q,3411
240
244
  infrahub/core/query/__init__.py,sha256=2qIMaODLwJ6pK6BUd5vODTlA15Aecf5I8_-J44UlCso,23089
241
- infrahub/core/query/attribute.py,sha256=xojZIHX-XfXlN_jgM1TQ1Bp4dXr4oLEWlr2A7igTvIg,12658
245
+ infrahub/core/query/attribute.py,sha256=m5Rzqn4jlMRpl2d80UtUrkTIiJTisQf_Tfb6wyxRsV0,13058
242
246
  infrahub/core/query/branch.py,sha256=aIYyDxpnw_Zw2lqTnMEVlhPUaYckZtJJJU1SFUht1o0,4343
243
247
  infrahub/core/query/delete.py,sha256=7tPP1qtNV6QGYtmgE1RKsuQ9oxENnMTVkttLvJ2PiKg,1927
244
248
  infrahub/core/query/diff.py,sha256=jJCkZRo5jGaf-yPAnQ_5ju6sCnknDK0E7vGpqEnaU_k,36881
245
249
  infrahub/core/query/ipam.py,sha256=dOs_LZr-DONrCPw6t5Ug9mBPn8a-S2NKja3Vr-zIeaM,34523
246
- infrahub/core/query/node.py,sha256=OfWS9PfltP89aU4n0KhEjrvAkhAGj9Vl4hcfKcE9LD8,70969
247
- infrahub/core/query/relationship.py,sha256=GpaEcf8YRiVpqTxrp10NFOUCHeyE7SqhOFyf3F44eNo,48474
250
+ infrahub/core/query/node.py,sha256=jTxQ8ueFV3dREw6VRJM6nG9-ltuy6Sx5GgcHcjrLmeo,63975
251
+ infrahub/core/query/relationship.py,sha256=8FPCDN8yGDY6iGoC-NGb9XJNdpBugRUKLF1dFxUKjC0,49599
248
252
  infrahub/core/query/resource_manager.py,sha256=uSvs1WZmdbyt_PjaUi9lXnYdPt-lhJV1RjYoUHYjQdk,16620
249
253
  infrahub/core/query/standard_node.py,sha256=mPBXyqk4RzoWRUX4NoojoVi8zk-sJ03GmzmUaWqOgSI,4825
250
- infrahub/core/query/subquery.py,sha256=5ckxREMrlrELWKCcN_JqwmSHRRE7U3ry2iT_WKI7ARE,7620
254
+ infrahub/core/query/subquery.py,sha256=VAxY8wwkzrFQIGdQlxXUZ_iJZEtmTSru4sfs8hMNU7g,7215
251
255
  infrahub/core/query/task.py,sha256=tLgn8S_KaLYLuOB66D1YM155teHZIHNThkt2iUiKKD4,3137
252
256
  infrahub/core/query/task_log.py,sha256=2RdthOAQrmpKZU8uhV_dJCPqwdsSA_1CYSKpL_eZ_yk,1120
253
257
  infrahub/core/query/utils.py,sha256=t9LMvZWdmi10c3E0HAU_5m7x5zMHhYXsUjX7ZBl2RpU,1091
@@ -260,11 +264,11 @@ infrahub/core/relationship/constraints/peer_kind.py,sha256=Bropiav4y6r0iU2KfWJ_k
260
264
  infrahub/core/relationship/constraints/peer_parent.py,sha256=z7elpC8xS_ovAF28Haq-RNpFtTEiUehzowiDgYGT68U,2343
261
265
  infrahub/core/relationship/constraints/peer_relatives.py,sha256=Ye79l7njaWxZkU2chTOaptIjvKBIawsNCl0IQxCTDtM,2737
262
266
  infrahub/core/relationship/constraints/profiles_kind.py,sha256=nEZPGtGcmelZ1Nb8EPcQ-7_zCLCNIYwwWbU6C9fLj5E,2464
263
- infrahub/core/relationship/model.py,sha256=pfx6BXu3OG_Ew0mk5U3F1VuXBRjGlAqYhaQ9aUwdhLQ,47223
267
+ infrahub/core/relationship/model.py,sha256=ODoeqon82gtDiywvUs4as6IhhjWpXwhJg82SIABWjVI,48729
264
268
  infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
265
269
  infrahub/core/schema/__init__.py,sha256=Tif-BUwYWVQ0PJGZHFog6lFgnwZevXk3iBcr3zK__BU,4192
266
270
  infrahub/core/schema/attribute_parameters.py,sha256=ABL1GEsOl4_CcDvK9_NucGMaF6LUeOjAxbDQVm_G7eg,6516
267
- infrahub/core/schema/attribute_schema.py,sha256=up6STVQU7wstt16GEQBPqJUOszw_QtI0VkcTNFUTG7U,10469
271
+ infrahub/core/schema/attribute_schema.py,sha256=zVdhDq4k6NrM2a_gJcUz-JnsFygrc8xRNGX-aHbppHw,10382
268
272
  infrahub/core/schema/basenode_schema.py,sha256=p6TvskDZwSb58pQ0LliASS4IXpoRl27jmlFTz3FOcsM,28327
269
273
  infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
270
274
  infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
@@ -286,7 +290,7 @@ infrahub/core/schema/definitions/core/profile.py,sha256=ayJL3WoA4egIQ5ctomV6F2Nd
286
290
  infrahub/core/schema/definitions/core/propose_change.py,sha256=ba1eoMu_2At1I1wkN24TXh3OfNukeZGQeZ87D1YMK40,3982
287
291
  infrahub/core/schema/definitions/core/propose_change_comment.py,sha256=tCYy0uazr4bOeQeuOHtN-v1ilLxaIO9T7fxkr4mLmDQ,5743
288
292
  infrahub/core/schema/definitions/core/propose_change_validator.py,sha256=IwrEQvutsxSFcDrcAFoevCzkwnPF3E6iyF0lUOi61RM,9947
289
- infrahub/core/schema/definitions/core/repository.py,sha256=SZDztZRCqdAOXgURaZk1X-OPGXqBMrVur8_DhPcwQ_E,9630
293
+ infrahub/core/schema/definitions/core/repository.py,sha256=V6Uc819SOm4QtJvEfit5YFBEe8b2xxuFbO17QSBjOk0,9837
290
294
  infrahub/core/schema/definitions/core/resource_pool.py,sha256=VIXOzsL6N04LoMo2lXdpLthlGDaG5D30nsrHb1SomoM,6366
291
295
  infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2I6MFT4r_ED7xA4BtzdKY,1037
292
296
  infrahub/core/schema/definitions/core/transform.py,sha256=UB2TaBjabIiErivBR16srxq7fgYoKjmjZaVun8vxXvY,3061
@@ -304,8 +308,8 @@ infrahub/core/schema/generic_schema.py,sha256=KSd5fwMDR2hjrsb1vOaK83Lw5jJAob1FLo
304
308
  infrahub/core/schema/manager.py,sha256=ImD9jTctdkVc6UXyynP8PUZ2gE6wr87upTpelcLzBfI,33245
305
309
  infrahub/core/schema/node_schema.py,sha256=cWeQ2iu6Z9Ay6l2gYnPRnS0JAqYQccueYhpEcfep9Mo,6252
306
310
  infrahub/core/schema/profile_schema.py,sha256=sV4lp1UyBye12M7BJcA2obb4tx3M9J5P89SLqkmFxJY,1237
307
- infrahub/core/schema/relationship_schema.py,sha256=R-1iC1d70bBW0vWhgJhDB0_J3tRpOqcJmmLzh39NuYs,8501
308
- infrahub/core/schema/schema_branch.py,sha256=sqloV0TzPMoZopSqQpGP1RaZpRQ96N55KJjAvplzeLI,106245
311
+ infrahub/core/schema/relationship_schema.py,sha256=ryCvmUQl3HBo_Sk07Xl5rT48PPuhlBkYRmm-lSdfJPI,8445
312
+ infrahub/core/schema/schema_branch.py,sha256=daHNZnzJWco4G14t1f24XeQgy0Eg1lsa6b1gA1WnSGE,106329
309
313
  infrahub/core/schema/schema_branch_computed.py,sha256=14UUsQJDLMHkYhg7QMqeLiTF3PO8c8rGa90ul3F2ZZo,10629
310
314
  infrahub/core/schema/template_schema.py,sha256=cn7-qFUW_LNRfA5q6e1-PdzGSwubuCkLTL6uad2GhdQ,1229
311
315
  infrahub/core/task/__init__.py,sha256=Ied1NvKGJUDmff27z_-yWW8ArenHxGvSvQTaQyx1iHs,128
@@ -434,10 +438,10 @@ infrahub/events/utils.py,sha256=JmyKKKDjyD3LS9LlY9_AetL8hBb8EdEfRlreUihskTs,649
434
438
  infrahub/events/validator_action.py,sha256=nQJH-RWcgr3-tzmIldvPmu5O7dUAmv1qQnuxxypBEto,1881
435
439
  infrahub/exceptions.py,sha256=cbM-f_2U-5ZFVZ_MaaXgs64k4M7uJ7fqDU2iCRoWlYY,11861
436
440
  infrahub/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
- infrahub/generators/models.py,sha256=9qhSfsoG-uYux35HClAxSq7TRfkosqN3i_eQkeTokLs,1916
438
- infrahub/generators/tasks.py,sha256=Ci6lIbnUS6faGzbUjw1ggROpv17guZ-Z9HH9f6cAZv4,9563
441
+ infrahub/generators/models.py,sha256=_vYOXRheOk1J2eTHQvEXWHrLgvLmNXLh8wzVqfgy1Ao,3291
442
+ infrahub/generators/tasks.py,sha256=LNwG58hHO1c1gzjSa_33hI045i7RsM9pFas2GhS1Dfs,9706
439
443
  infrahub/git/__init__.py,sha256=KeQ9U8UI5jDj6KB6j00Oal7MZmtOD9vKqVgiezG_EQA,281
440
- infrahub/git/base.py,sha256=tEfhxYNc8bAcq1Pld7ZSK41w1fm48eMsF5QnMSKz50E,38716
444
+ infrahub/git/base.py,sha256=-zOrbaijG-HWWmZ09sxK8XT1vxx126FwCsZ3mDFBNos,40291
441
445
  infrahub/git/constants.py,sha256=XpzcAkXbsgXZgrXey74id1sXV8Q6EHb_4FNw7BndxyY,106
442
446
  infrahub/git/directory.py,sha256=fozxLXXJPweHG95yQwQkR5yy3sfTdmHiczCAJnsUX54,861
443
447
  infrahub/git/integrator.py,sha256=fpeOC1ycVYZixPcrR-TwmZXHgaAvXpPd50ys04GFXdg,62889
@@ -452,9 +456,9 @@ infrahub/git_credential/helper.py,sha256=cwSMKRTgqrqIBM66jEOtlj4MMLf647KJWmtnnVx
452
456
  infrahub/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
453
457
  infrahub/graphql/analyzer.py,sha256=TAWo4AWMr33MFjK3YcYBxXSjdwRHxU2HzpIuY9tTHqU,30516
454
458
  infrahub/graphql/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
455
- infrahub/graphql/api/dependencies.py,sha256=-NMUA_N4tWcVpS6ksCebAyza-JTmHqyYY_QZizgBR1c,1690
456
- infrahub/graphql/api/endpoints.py,sha256=wH9eO3CFT-eoSe1Y32BhU9mIf6smEnPeP3tAxZkdt4g,1510
457
- infrahub/graphql/app.py,sha256=ZoxFravB96Ax3DrQZM0MaK-OsWkFk6Rb-bao7IEE6TI,21177
459
+ infrahub/graphql/api/dependencies.py,sha256=tno-vUerO7dDFw_B95UTZnbqRiwl_VJIhzgwJe8wdRY,1643
460
+ infrahub/graphql/api/endpoints.py,sha256=13p_5dKDkFSGv4YoSrkIZxAGpF8-Kf__j8Vuj4E4rpU,1515
461
+ infrahub/graphql/app.py,sha256=LG7ZfPB1EXR7y__iY81ehEixhDfxuvLwd9PbCh3aRjc,21174
458
462
  infrahub/graphql/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
459
463
  infrahub/graphql/auth/query_permission_checker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
460
464
  infrahub/graphql/auth/query_permission_checker/anonymous_checker.py,sha256=ibsmGyOelLJbN2Kfkmffv-5D79h7tRc1Fez5tauFY8w,1377
@@ -469,28 +473,29 @@ infrahub/graphql/context.py,sha256=ahp-MvX_0glg9mSPbPVhEwvbYzrIKtaEAGt7CVnAusE,1
469
473
  infrahub/graphql/directives.py,sha256=wyIkJFp7l0J4JqNl1Lqu7YfKXP7glrewlQFMDTUAPcE,645
470
474
  infrahub/graphql/enums.py,sha256=9F0XWfjQpC__0YRccYG1T-3qL1V8_PmlRlVpU1-n7nQ,820
471
475
  infrahub/graphql/field_extractor.py,sha256=5trqnd8AfeFkn2W2ztrbpnZqgg1Zm9CzscF_oRonUzg,3127
472
- infrahub/graphql/initialization.py,sha256=e97vYE7lQZm7OJxJrhKA6kdxKJ4QOcVbTpoNHq9fweM,4446
476
+ infrahub/graphql/initialization.py,sha256=QjptovdrsBwmBP11I-YxgB2M0d4uLZKV4-x1XW3Lrkg,4466
473
477
  infrahub/graphql/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
478
  infrahub/graphql/loaders/node.py,sha256=p7qJxRpXSAddq2fcwJeaIRy-5ReSn2EUitQbDhlmdM4,2618
475
479
  infrahub/graphql/loaders/peers.py,sha256=wsB-ZtaU-BlR99EvWUbf6_SFhFJYOspz5QaTln_MZ4Q,2799
476
480
  infrahub/graphql/loaders/shared.py,sha256=hUxLy8iVgfpEZiUMKNkUAeshPKKzEVSDMDsuaBbjJW4,389
477
- infrahub/graphql/manager.py,sha256=9MAnX9kDGc-we27MwU9WhwQhuSdE7VFojdJqPIpPyLw,45737
481
+ infrahub/graphql/manager.py,sha256=xFXRCeKQW6AeN2V11OgJp5SzdkXdqAGbnOipFRtUQds,50061
478
482
  infrahub/graphql/metrics.py,sha256=viq_M57mDYd4DDK7suUttf1FJTgzQ3U50yOuSw_Nd-s,2267
483
+ infrahub/graphql/middleware.py,sha256=za8Aba-63_mVgc2j8us8giucwIXweR6c7_XN0-VEus4,604
479
484
  infrahub/graphql/models.py,sha256=7kr3DSO_rujPocMIfPyZ5Hwy3Mpnu4ySDMAIE9G5Y7Y,147
480
485
  infrahub/graphql/mutations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
481
486
  infrahub/graphql/mutations/account.py,sha256=qxwawri2lMNVW-ERiUN5-8Z-6ZRxGFqYWg3oDBKvFak,5821
482
487
  infrahub/graphql/mutations/action.py,sha256=HJ26jTIzDt9vuuszfCnHcTcSLpR8CVEaGUma_scLXGs,6791
483
488
  infrahub/graphql/mutations/artifact_definition.py,sha256=K9iieMMHB8O8V1E6aO04tP2oMtiTRTA8B_0nWEHGWcc,3531
484
489
  infrahub/graphql/mutations/attribute.py,sha256=a35MP8Pvy_42N5dkO3HKATgJDW6qy9ncDu5t8YI3AUE,2734
485
- infrahub/graphql/mutations/branch.py,sha256=ZzOuCk2kr50H5X6odCWyyaYdVSsSoMnLV47NLtPne4k,10867
486
- infrahub/graphql/mutations/computed_attribute.py,sha256=T3ir4izEe44zSk63kEXJgYpJki-5vbTj14ulLuklxzM,4666
487
- infrahub/graphql/mutations/convert_object_type.py,sha256=FLEeHyF-ZfPJxHIXwz0X7F6Zxi0J5idAVfN5_OTQpDI,2814
490
+ infrahub/graphql/mutations/branch.py,sha256=xXd8zIm3VWon268Y_QAQBPEKkJdee6tu84wAsJzD3-c,11357
491
+ infrahub/graphql/mutations/computed_attribute.py,sha256=JAPVjDrEC-a-bTVKD5pYW3QetD1gAhWub3HQj9swrqs,9376
492
+ infrahub/graphql/mutations/convert_object_type.py,sha256=Jh2Ao2FjxB2gHeTailr8nWT56by7mIKCREKvV9iuu4I,3927
488
493
  infrahub/graphql/mutations/diff.py,sha256=UfEkgIeKsxr79U0_ih7mhl0986rFITM_GDXevsWBSqo,4776
489
494
  infrahub/graphql/mutations/diff_conflict.py,sha256=JngQfyKXCVlmtlqQ_VyabmrOEDOEKYsoWbyYSc9TT5c,3147
490
495
  infrahub/graphql/mutations/generator.py,sha256=Ulw4whZm8Gc8lJjwfUFoFSsR0cOUliFKl87Oca4B9O0,3579
491
496
  infrahub/graphql/mutations/graphql_query.py,sha256=a8tCTrjJipwIghmxlcUkH1Hx_7tem5QhzrTczcwpuZM,3644
492
- infrahub/graphql/mutations/ipam.py,sha256=KnfIq6TD9Q649T8BI-pvUmtH5P7GX4UEsz0P22et0MI,16207
493
- infrahub/graphql/mutations/main.py,sha256=Zqq2zi24ZR8S8ikZ21F2_3kIqYc8tXtvDyit1Xz27vw,21938
497
+ infrahub/graphql/mutations/ipam.py,sha256=U0YjlMK5LrN53YTzg4xjq9nKDpSUikjMoyzs7XOF0LE,16521
498
+ infrahub/graphql/mutations/main.py,sha256=m0swcGOnkZ-nSRUv_joJfJ0387ZpYpbdM6mMvK43kxU,17387
494
499
  infrahub/graphql/mutations/menu.py,sha256=NSdtUobZ-5dsQdBFfD1xyoE9dKw9FS62T_6UQM0cEUY,3790
495
500
  infrahub/graphql/mutations/models.py,sha256=ilkSLr8OxVO9v3Ra_uDyUTJT9qPOmdPMqQbuWIydJMo,264
496
501
  infrahub/graphql/mutations/node_getter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -498,13 +503,14 @@ infrahub/graphql/mutations/node_getter/by_default_filter.py,sha256=_owbYHXWqJ6x4
498
503
  infrahub/graphql/mutations/node_getter/by_hfid.py,sha256=txpj4xPeL3eYOB9lRiHEFxxcRf6bb6lyIJnhVCHr3x8,3120
499
504
  infrahub/graphql/mutations/node_getter/by_id.py,sha256=azERy5XBUe4fYf4t1rhKEn64MlGfm_zH4k-tJU6W69s,856
500
505
  infrahub/graphql/mutations/node_getter/interface.py,sha256=3MVTz_3EQnI7REp-ytQvgJuEgWUmrmnRIqKpP8WHCyY,419
501
- infrahub/graphql/mutations/proposed_change.py,sha256=lCn6JQatwTt3hBre9yawzchgW7IzJBDCJ1u5xYvW9Kc,19998
506
+ infrahub/graphql/mutations/profile.py,sha256=7Lf_ITtZVdlcQ_Fc70JrHcUuv8AHVEbv-nvN4fOvVa0,7306
507
+ infrahub/graphql/mutations/proposed_change.py,sha256=LePFl5VGvtVbT7HHLPY9SXqfUDgqStLyNlPfwxWALOQ,20033
502
508
  infrahub/graphql/mutations/relationship.py,sha256=pOyqmJGuagrWeH8DlXaZ2X_F9Qrogx0OTOGvCjYpWT4,21937
503
- infrahub/graphql/mutations/repository.py,sha256=DzD8F0XOoiorPJl9iqORajnQo6nFMMzGB6uGIE6B38o,11398
509
+ infrahub/graphql/mutations/repository.py,sha256=Elum8rrgIZLIU2XI6H5vvEftIpqcLKqAyqPxlpuuQ4Q,8587
504
510
  infrahub/graphql/mutations/resource_manager.py,sha256=DvnmfXmS9bNYXjtgedGTKPdJmtdaCbM5qxl0OJ-t1yQ,11342
505
511
  infrahub/graphql/mutations/schema.py,sha256=6N70sGn-g5LNyfWwJZ-gonjbCY-Kc1IOukof3Np6pQQ,13568
506
512
  infrahub/graphql/mutations/tasks.py,sha256=GsZVSVfBr1NgNPEHY_OHA5Y9tIbimyEcrYE7XsXXwFw,3815
507
- infrahub/graphql/mutations/webhook.py,sha256=mCkUv2wvQMAx33BKYkj-Xlpi7rskojNQbqqbACAWzQw,4881
513
+ infrahub/graphql/mutations/webhook.py,sha256=me61Xp-Ntucmbg1yRi3FNSPMnop6keoJqALsEp3Cv2g,4912
508
514
  infrahub/graphql/parser.py,sha256=MBvCnj4J0zYCdIf86_sxKF1Y_eaI3KHlQqdBae958Ok,9035
509
515
  infrahub/graphql/permissions.py,sha256=ADPyCSZcli0PLgGrtO-EsEJjRuvlk9orYhJO06IE_NI,1022
510
516
  infrahub/graphql/queries/__init__.py,sha256=qrGUn_7wCK2urcAf88Puz7kXbzLmxDdNM9rkJSiHeVg,1066
@@ -522,12 +528,13 @@ infrahub/graphql/queries/resource_manager.py,sha256=8FnfABvyrSQS5sqf1CySjamjcZ-I
522
528
  infrahub/graphql/queries/search.py,sha256=Z1Llqi7Sd-2QL5HGHOF8IAHYbKoM3jMsdkMILeqakA8,4995
523
529
  infrahub/graphql/queries/status.py,sha256=BSCBT4abaswlfh7JZB8mk_rR-6FXIx-wxQA_YwiWvI4,2124
524
530
  infrahub/graphql/queries/task.py,sha256=UG9Ur2CH5GOmfyk34ItqAPuCEkqIhdU-G1n6C3iK_lc,3921
531
+ infrahub/graphql/registry.py,sha256=5aPKWeWbgAxhvozv2c23R2UNScJ1Zd-tNw9QHEGyrDY,8723
525
532
  infrahub/graphql/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
533
  infrahub/graphql/resolvers/ipam.py,sha256=p36FzgHQ5ZIG4Smf7EJ6h6w5sqTQcQxR27OjSOMsEOo,16698
527
534
  infrahub/graphql/resolvers/many_relationship.py,sha256=Xw5qodU6X2tw8uN7GLfWs-rxru_K56RWalBcJIZqJkA,9795
528
535
  infrahub/graphql/resolvers/resolver.py,sha256=MCX_R1OHSvaHncs8R1FNVNGIDm4wUdmf1NI8ZmDTUzY,11880
529
536
  infrahub/graphql/resolvers/single_relationship.py,sha256=atEvh5vWoc934B3tXZUYtF5iRnKdvM2gp8Kzsf5xogI,7008
530
- infrahub/graphql/schema.py,sha256=EQy0MX8V4ynYVGpepm52g5hfGzXB4OILL4qyj3hn2YU,4922
537
+ infrahub/graphql/schema.py,sha256=dOLxHEEO6gMaHAL0gXLDLJdCDc9zQ3eRY09QcrGtmNI,5143
531
538
  infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
532
539
  infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
533
540
  infrahub/graphql/subscription/graphql_query.py,sha256=U9PwREMghxbuIoGWh3_rV33wKPzDyMILZ8_tuniwukg,2266
@@ -552,7 +559,9 @@ infrahub/groups/models.py,sha256=YAeaJR01oJdUhhnll9sUvXcK1367hzclqzjd-CScY1s,783
552
559
  infrahub/groups/parsers.py,sha256=A60n-JmT-8F-7ATugV97R-mPWpRhNVNxqEbpibxiiUs,4260
553
560
  infrahub/groups/tasks.py,sha256=yg-VNj37iWdBHyPE9BhN2QzjVo2D8glnlO37pwGcdsU,1563
554
561
  infrahub/helpers.py,sha256=KchbQqgipU4VjfwnDbzCGjnEv-4espw_g63Zw4KAhbo,251
555
- infrahub/lock.py,sha256=EagMvKKPqWXKLvOpw2OXNPxNa1XLG0JNZgMzCU45EuA,8654
562
+ infrahub/lock.py,sha256=wuAdzQ8PCsJJHjIhJzO1-y5NQO1MSINhkoN1oGnJQyw,9408
563
+ infrahub/locks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
564
+ infrahub/locks/tasks.py,sha256=x0ihuIkSHLVj2kvefC_VF7ja_FhCAEnS0zi44P2h-jc,1383
556
565
  infrahub/log.py,sha256=4FP80DGY5sk9R7CjcDpPiTfxuow-nfbhXWVpDByCVrw,2817
557
566
  infrahub/menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
558
567
  infrahub/menu/constants.py,sha256=z9aAxIBlAMXrjl3dXo0vZxBU0pcfh1FQOiqIussvpD0,195
@@ -587,7 +596,7 @@ infrahub/patch/edge_deleter.py,sha256=sks0Pyec-ItAI5QT2MDL0PQN7g0iYWj6z8IxMnfd1r
587
596
  infrahub/patch/edge_updater.py,sha256=SJ1bbVT6S_vKhtkIpwPBOWgheLbT3KYIjZhumIpneZs,1104
588
597
  infrahub/patch/models.py,sha256=F7RC0WF2GjaLNVwqJNik3k8NSgV-ai0d6vHJ3qIdmMM,2952
589
598
  infrahub/patch/plan_reader.py,sha256=uqHNYVBBkpmVIGwaxl2tlMNJd2tPVedNZoSmFSjTdow,5460
590
- infrahub/patch/plan_writer.py,sha256=x2u5Oe3ME3zXTdkz5hRnvp2EaQwt-r4LyuSATc2LkKs,4822
599
+ infrahub/patch/plan_writer.py,sha256=IO2nifQXzJmZ7ZLa3B8ukk-Whg9b8K-py33wAEA5prQ,4808
591
600
  infrahub/patch/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
592
601
  infrahub/patch/queries/base.py,sha256=wXtv4I-7l_u0kXJFbmFZZJ0_2_5yvuAJwmwiLqRq7AY,338
593
602
  infrahub/patch/queries/delete_duplicated_edges.py,sha256=u3Co_8taoJm92pzfFK6PrDMk_URrftV-mYf5_I6ll4c,6758
@@ -616,6 +625,11 @@ infrahub/prefect_server/bootstrap.py,sha256=xnOaibo82jFISzzhzvZvSxJLvW5x9eqjGAuY
616
625
  infrahub/prefect_server/database.py,sha256=v-uti6O__lK51zG_ICq8Drj8j7XlrkRZNZouRK0y_4U,883
617
626
  infrahub/prefect_server/events.py,sha256=My0DSsjTENx7-L7_NxxKsBakoOElp95is4-yanS_SkI,869
618
627
  infrahub/prefect_server/models.py,sha256=InAW7UrC1oASB-EqgpXQtdWnLZJ-Q93ezGUdLJD7nis,1203
628
+ infrahub/profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
629
+ infrahub/profiles/node_applier.py,sha256=mOQ6Ygi7AzcCfInXHA5nVy56KAWUnMC0Y95loz0hw7g,4301
630
+ infrahub/profiles/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
631
+ infrahub/profiles/queries/get_profile_data.py,sha256=qt935eKTRi_td1nQg2rsoknuelVRiCBXVK_YPL-EtqI,3607
632
+ infrahub/profiles/tasks.py,sha256=qDzCYKGW_8RZ17VlsZOYoAwWHqhNBoGeXl1k9a9fqhA,1538
619
633
  infrahub/proposed_change/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
620
634
  infrahub/proposed_change/action_checker.py,sha256=FlP5_Kz4kYu1AAAWhlSUVJUiXlkuXBUO8k8XcZq6kGI,7154
621
635
  infrahub/proposed_change/approval_revoker.py,sha256=VgI07wpW0zpvLCxJ7F24EypqBZSw5GBgElFYCR68An0,1184
@@ -626,6 +640,8 @@ infrahub/proposed_change/models.py,sha256=ivWJmEAihprKmwgaBGDJ4Koq4ETciE5GfDp86K
626
640
  infrahub/proposed_change/tasks.py,sha256=-jAIhul4RCqx5MRWM1ITHoa1S7CEmQC06vsBKXfvTLk,64037
627
641
  infrahub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
628
642
  infrahub/pytest_plugin.py,sha256=u3t0WgLMo9XmuQYeb28mccQ3xbnyv2Fv173YWl1zBiM,6678
643
+ infrahub/repositories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
644
+ infrahub/repositories/create_repository.py,sha256=JZ_SpWFD78dL3c8HGgcp9-us-vV0Gu9G9kD8iksJGsc,4651
629
645
  infrahub/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
630
646
  infrahub/schema/tasks.py,sha256=vEaWWksqrfwwCAIgPxscVU81W9PIxODX552Rtkte1Cs,947
631
647
  infrahub/schema/triggers.py,sha256=LfvNorh2rFit-d8ip_ZoHvBL0D8ZlwH6BPduCp9uc5M,874
@@ -664,7 +680,7 @@ infrahub/tasks/check.py,sha256=37n1U1Knb3AV6kz2sw_IabL9pnlqceLVICWf9GdSxZE,687
664
680
  infrahub/tasks/dummy.py,sha256=6SxlQqQXZqgTuwLaAsK-p1O1TYNKfdGmUYjNJFNHe9s,1209
665
681
  infrahub/tasks/keepalive.py,sha256=D6yh3Vmlr1WCEpZibk2YLc2n0dCcX6tM62HCSxyGEu8,783
666
682
  infrahub/tasks/recurring.py,sha256=RJO2zdzCU-38Kb81lmCUbFQOBhGui8qn2QizTV4vj9I,447
667
- infrahub/tasks/registry.py,sha256=ncoiZ-GAkyeuKTy5gRkGzQhtx1rSLsMX4o9uZ1A0Kkk,4543
683
+ infrahub/tasks/registry.py,sha256=9kgzL3U_OUlQWj-kWomfquJQSiru_5saf25tEAmUhbs,4657
668
684
  infrahub/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
669
685
  infrahub/telemetry/constants.py,sha256=_5mJAZaT_wTCaF7Yzsd---Zn1N6GZkoP_954GK8K4-c,184
670
686
  infrahub/telemetry/database.py,sha256=9UVPOxRionVF65jjo8slRIaNBOv-KMRzq7I-7fe3wZE,3111
@@ -691,7 +707,7 @@ infrahub/validators/tasks.py,sha256=cFXL82lmTWvqoOyM4aJFRzE9PIsC2oVTeqcex47zGt8,
691
707
  infrahub/visuals.py,sha256=N62G4oOOIYNFpvMjKq7uos-oZAZybGMp57uh5jsVX9w,627
692
708
  infrahub/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
693
709
  infrahub/webhook/gather.py,sha256=XNaIGiHDiMjjtSjsVbswOze7cLaL0MKJmvSbZBS-WT0,691
694
- infrahub/webhook/models.py,sha256=6oiwCV4iayTWDKmSTpcFx83WA23paMXLsw4fFw15KHM,10477
710
+ infrahub/webhook/models.py,sha256=GByXkZ2tAgtAJGjlfBRhvUneD7Btq8yHBC0HH8yIhR8,10487
695
711
  infrahub/webhook/tasks.py,sha256=2msOOqqFStQbNje7Eq0glAdlprs-ASHii3qQXFIEyzE,7255
696
712
  infrahub/webhook/triggers.py,sha256=v1dzFV4wX0GO2n5hft_qzp-oJOA2P_9Q2eTcSP-i0pk,1574
697
713
  infrahub/worker.py,sha256=zV9vLXtJzyqeTGtVolwZEHlLaBvGiUZv00qWpE-lnOM,353
@@ -700,61 +716,62 @@ infrahub/workers/dependencies.py,sha256=byuliu9WrOGtQ-Zws8NSTq3LJwnqxIqQ7dcWP3KN
700
716
  infrahub/workers/infrahub_async.py,sha256=9itLnky6BuqWR92fuU-SShaSI-33eoSRfhOEZy0TH0g,7973
701
717
  infrahub/workers/utils.py,sha256=m6FOKrYo53Aoj-JcEyQ7-J4Dc20R9JtHMDzTcqXiRpg,2407
702
718
  infrahub/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
703
- infrahub/workflows/catalogue.py,sha256=cHV51ZQXQhyoEgCahppv--vyDYbjo-Duu2LemeRho_k,18283
719
+ infrahub/workflows/catalogue.py,sha256=IMl3VuGjqOs8LNesyyk-6TDxp5KusSoYh7yLbyT0GY8,19301
704
720
  infrahub/workflows/constants.py,sha256=7je2FF7tJH6x_ZNqHKZfQX91X7I5gmD8OECN3dE_eqI,651
705
721
  infrahub/workflows/initialization.py,sha256=Aj3tTD4tL9qhNgSnzFIMkTHab8FWWgL0JINaON9wjj0,3224
706
- infrahub/workflows/models.py,sha256=eCra3PFbX-GpiNLDG6WyqVXvSqRTz1eF4REm0doJFDY,3534
722
+ infrahub/workflows/models.py,sha256=5yx6ZHCVMcYd4uEvxLREEBZDHHyHzQ_PuAh7z2fJV7k,4113
707
723
  infrahub/workflows/utils.py,sha256=DhN_NbpaJ_-I4a8GGtKcTfYf8EEJSuRX7PaO06dis-w,2730
708
724
  infrahub_sdk/__init__.py,sha256=weZAa06Ar0NO5IOKLQICtCceHUCKQxbkBxHebqQGJ1o,401
709
725
  infrahub_sdk/_importer.py,sha256=8oHTMxa_AMO_qbfb3UXNfjSr31S5YJTcqe-YMrixY_E,2257
710
726
  infrahub_sdk/analyzer.py,sha256=UDJN372vdAiuAv2TEyPUlsSVoUfZN6obWkIokNNaHbA,4148
711
727
  infrahub_sdk/async_typer.py,sha256=Gj7E8EGdjA-XF404vr9cBt20mmbroQh7N68HXhWYx00,892
712
728
  infrahub_sdk/batch.py,sha256=LRZ_04ic56ll9FBjgXCYrJRDJcwB3wR1yX4grrQutDQ,3795
713
- infrahub_sdk/branch.py,sha256=hmtoIekQ1uusoJ6yEKlw6vrFMTAHJrXu-YsqqCQC_kc,12716
729
+ infrahub_sdk/branch.py,sha256=IoEOYVuuwJbKyrXqTEKp7aQHQknXOkwdLmEqjD9j594,12733
714
730
  infrahub_sdk/checks.py,sha256=rFHlEY8XEYcjpLCg6gd9a0R8vPnkxNp0OnXk-odsZKY,5707
715
- infrahub_sdk/client.py,sha256=0llKuTQFKRwtxjsWvavw2brOF5B0gJdxn8iIhxAcQzM,101611
731
+ infrahub_sdk/client.py,sha256=6OzZj5CJe0jokjlnpbwxYneQEAo2TFo27_VJTr7VWUI,110236
716
732
  infrahub_sdk/config.py,sha256=wnVRkaVO4Nd2IBLRVpLtrC-jjW399mgr1DprohTEzQQ,7936
717
733
  infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
718
734
  infrahub_sdk/context.py,sha256=QgXZvtUrKolp6ML8TguVK87Wuu-3KyizZVV_N2F4oCw,400
735
+ infrahub_sdk/convert_object_type.py,sha256=HPwhlQhmPUSLtfC1RqFo9fsCvfdBgJyVrvgjkSOf5MM,2383
719
736
  infrahub_sdk/ctl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
720
737
  infrahub_sdk/ctl/branch.py,sha256=GeGDNGNpew93MZblqhG0r45wqSz_p8CcQ9R8zuj_jmg,4742
721
- infrahub_sdk/ctl/check.py,sha256=HWsK1rTpGF2VvRBiS5KZrRxXrsAHDXoFS3wJkmq8pik,7895
738
+ infrahub_sdk/ctl/check.py,sha256=96brdjw82kAcq_3qDFQNqzLl8yJPHN8FqK-TJ0_TnXE,7890
722
739
  infrahub_sdk/ctl/cli.py,sha256=A9jJKYBo5opzIIyWYf6niyAHhy49V59g6biueMDFbpE,328
723
- infrahub_sdk/ctl/cli_commands.py,sha256=ShgWESs4_DjBK4nttXdVAYrJoTaxOvpEtMwSxft0Rrg,18560
740
+ infrahub_sdk/ctl/cli_commands.py,sha256=jnLVlZZQNW0WkSBMoxTE0aCncDVzwEuGHsDhCfvt9b4,18683
724
741
  infrahub_sdk/ctl/client.py,sha256=6bmXmQta9qQCJ8HybQwt2uSF2X1Em91xNFpwiKFujxs,2083
725
- infrahub_sdk/ctl/config.py,sha256=y3kTvfxDO2FKzgvaIXKPKOES7BqXT-s9Kuww7ROfs-4,3039
742
+ infrahub_sdk/ctl/config.py,sha256=aZ_Dhe5uxH1AzTWUz3EN645I2fflRsqAULJr20E3Ki8,3176
726
743
  infrahub_sdk/ctl/exceptions.py,sha256=RPdBtIj5qVvNqNR9Y-mPNF7kDUxXUUCac5msyitrBXo,272
727
744
  infrahub_sdk/ctl/exporter.py,sha256=CmqyKpf7q5Pu5Wfo_2HktiF12iD_3rJ9Ifb48BIoJdU,1876
728
- infrahub_sdk/ctl/generator.py,sha256=DngapUg3S7teYf12D5a9j6qDZjuD0Agyf32qtccuA7Q,4294
745
+ infrahub_sdk/ctl/generator.py,sha256=VcXXaLjgXqfY4P_cJ850husZdP3pGwxqF-lMnlJxMO0,4289
729
746
  infrahub_sdk/ctl/importer.py,sha256=0QSKzkynI4eeQHHsTIWlEaj7mPrTdscQeXrrOzqtyig,1908
730
747
  infrahub_sdk/ctl/menu.py,sha256=A0NHvu48qbo9aWYNc3nGMNMeXr4LnOr_HNKL5arBWNA,2690
731
748
  infrahub_sdk/ctl/object.py,sha256=OEbAx0Yb0zbXxS2ZnXedZRZDHITQd3iAk_cWUlTHLvg,2706
732
749
  infrahub_sdk/ctl/parameters.py,sha256=aU2H41svfG309m2WdH6R9H5xgQ4gevn3ItOu5ltuVas,413
733
750
  infrahub_sdk/ctl/render.py,sha256=zrIz_KXq3QafgNiqqNeYt2JtD2PGOa0D5ujW6NqZdz8,1948
734
- infrahub_sdk/ctl/repository.py,sha256=ykvPGT5yuj1iGF_C6hFWS8UIP8p334weYRVBEhFWt_U,6672
735
- infrahub_sdk/ctl/schema.py,sha256=6MZz36xwrT14eDeDyUG4EGWn-4Rv53DkaBJV1fqscvY,7070
751
+ infrahub_sdk/ctl/repository.py,sha256=Hbkt3mTDNEBvZ3yGm2S5tEW3ealcfuDuSCfI00p4TL4,7997
752
+ infrahub_sdk/ctl/schema.py,sha256=KxYbpzbYwuRlG5lMI8edANM4PSvWY2J-YraCFHLkVkQ,7429
736
753
  infrahub_sdk/ctl/transform.py,sha256=5qRqiKeEefs0rda6RAFAAj1jkCKdbPYE_t8O-n436LQ,414
737
- infrahub_sdk/ctl/utils.py,sha256=bvH5JfkLvN_84LeftM-GQU3s3fECbiHCVpBrrpRtJj4,7437
738
- infrahub_sdk/ctl/validate.py,sha256=dknc4kMBIdysZNtEBYyvhlFPyUYyLmc2a4OI4cjGj2c,3910
754
+ infrahub_sdk/ctl/utils.py,sha256=du6XksdFybfmst2MwH5KhVGrmjUkoxBsb5nQe_cRnXQ,7513
755
+ infrahub_sdk/ctl/validate.py,sha256=vnP5P--Sknf-Ni43zCW9qHab5AI9qz5h-11moMSzHGQ,3941
739
756
  infrahub_sdk/data.py,sha256=4d8Fd1s7lTeOu8JWXsK2m2BM8t_5HG0Z73fnCZGc7Pc,841
740
- infrahub_sdk/diff.py,sha256=Ms-3YyXo-DoF1feV9qP7GKakBYUNFsULZdy-yMEG71w,4258
741
- infrahub_sdk/exceptions.py,sha256=gZLfZhyDd0M-w5WMzzfPkFwha-aZirJ739N_OMN7Ujs,5728
757
+ infrahub_sdk/diff.py,sha256=DXENTLn1joKulVqV-uHp8WLiWstnDaccJ-gE4MWfwMM,4344
758
+ infrahub_sdk/exceptions.py,sha256=N52MjwbXzqE30H75ilqsBdK-12ZfSICNA5Zzfi639Mo,5826
742
759
  infrahub_sdk/generator.py,sha256=I00G7BdQohJFZ7wQru1SWcwO41gPbuQ3ZGEDVkLIn60,3403
743
- infrahub_sdk/graphql.py,sha256=zrxRveg8-t0FbLtOEMDiiW0vqtBHc2qaFRkiHF9Bp6g,7019
760
+ infrahub_sdk/graphql.py,sha256=L9cVc4xSK347QSUcrAbTjYwrfSD6-ttV0M5z9iuKZC8,7183
744
761
  infrahub_sdk/groups.py,sha256=GL14ByW4GHrkqOLJ-_vGhu6bkYDxljqPtkErcQVehv0,711
745
762
  infrahub_sdk/jinja2.py,sha256=lTfV9E_P5gApaX6RW9M8U8oixQi-0H3U8wcs8fdGVaU,1150
746
763
  infrahub_sdk/node/__init__.py,sha256=clAUZ9lNVPFguelR5Sg9PzklAZruTKEm2xk-BaO68l8,1262
747
- infrahub_sdk/node/attribute.py,sha256=oEY1qxip8ETEx9Q33NhSQo013zmzrmpVIFzSkEMUY8M,4547
764
+ infrahub_sdk/node/attribute.py,sha256=bjT-JJkSWDZDFIB49Vn6WBM-rSgGPZsazOMhDzvlfH0,4654
748
765
  infrahub_sdk/node/constants.py,sha256=TJO4uxvv7sc3FjoLdQdV7Ccymqz8AqxDenARst8awb4,775
749
- infrahub_sdk/node/node.py,sha256=LPl9w9CySrZSEXuTn6jXuSshQCzAPyehc8Kyzpsq5dE,73518
766
+ infrahub_sdk/node/node.py,sha256=xJMIGuIpOEs0lNA41SI5utq1FQAcn00YJMQqZSzQGU0,74149
750
767
  infrahub_sdk/node/parsers.py,sha256=sLDdT6neoYSZIjOCmq8Bgd0LK8FFoasjvJLuSz0whSU,543
751
768
  infrahub_sdk/node/property.py,sha256=8Mjkc8bp3kLlHyllwxDJlpJTuOA1ciMgY8mtH3dFVLM,728
752
769
  infrahub_sdk/node/related_node.py,sha256=fPMnZ83OZnnbimaPC14MdE3lR-kumAA6hbOhRlo1gms,10093
753
770
  infrahub_sdk/node/relationship.py,sha256=WEfPOZChQ8WadhG9UcdM3RP-bYuXGE3dm_6fPjfZNMA,13442
754
771
  infrahub_sdk/object_store.py,sha256=d-EDnxPpw_7BsbjbGbH50rjt-1-Ojj2zNrhFansP5hA,4299
755
772
  infrahub_sdk/operation.py,sha256=hsbZSjLbLsqvjZg5R5x_bOxxlteXJAk0fQy3mLrZhn4,2730
756
- infrahub_sdk/playback.py,sha256=ubkY1LiW_wFwm4auerdQ0zFJcFJZ1SYQT6-d4bxzaLg,1906
757
- infrahub_sdk/protocols.py,sha256=lmjBSrmpc-7j9H7mn0DaLpJa8eD2gQk2oy0u2HvGLOk,24209
773
+ infrahub_sdk/playback.py,sha256=obAPYDO_3v6EN0aBDllI0T_5lPnCv_Mo3GYHR4Eczs8,1878
774
+ infrahub_sdk/protocols.py,sha256=c3o917KolNWG0B54gW41vMmCXOPlYOTlHjkbcWxmWSU,25005
758
775
  infrahub_sdk/protocols_base.py,sha256=rw5gP9IEuV2e-DeFHMUoL43nVfxEeGmQKjoE3YZCV78,5616
759
776
  infrahub_sdk/protocols_generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
760
777
  infrahub_sdk/protocols_generator/constants.py,sha256=8y5L7aqxhez6_10Cl2zUfNlHJCCosIVnxrOPKrwNVEw,820
@@ -770,18 +787,19 @@ infrahub_sdk/pytest_plugin/items/jinja2_transform.py,sha256=N0zzrJ0Dar-ZHF-MQB-r
770
787
  infrahub_sdk/pytest_plugin/items/python_transform.py,sha256=ToIrTiAOYSJLyQh7exPrjnkpSWyx4BHhKhmF4F16M2E,4175
771
788
  infrahub_sdk/pytest_plugin/loader.py,sha256=x9sOKGYQeDewx_y5RlGPF2C-ZV44eolfC0c6BOjDAug,4248
772
789
  infrahub_sdk/pytest_plugin/models.py,sha256=2zpsLuBvtZEGe1yH57_JzKSk_wWhebz77R8Y-VfuD48,7131
773
- infrahub_sdk/pytest_plugin/plugin.py,sha256=Sv4eSZmAuTvQmtAAJU1FOz6tFuUdvdybIK6XuA1U6KM,4507
774
- infrahub_sdk/pytest_plugin/utils.py,sha256=AfSAgRXBGdx__8MNQJG7faw68ioZzk37CM4ZPBiVXBs,557
790
+ infrahub_sdk/pytest_plugin/plugin.py,sha256=iQ_VKfPdpMp9o9UWi7GhE6X0k1YH5P3DsD7_TmlAaTY,4700
791
+ infrahub_sdk/pytest_plugin/utils.py,sha256=yyVJ0yFN2gUSlCbsHD3_3PfqBqOmVhlsHR24qU5Cdpw,1866
775
792
  infrahub_sdk/queries.py,sha256=s4gnx67e-MNg-3jP4Vx1jreO9uiW3uYPllFQgaTODdQ,2308
776
793
  infrahub_sdk/query_groups.py,sha256=XMizAadkItEFgH8waXRg7jzckSWqK92YDcAPorwkids,10507
777
794
  infrahub_sdk/recorder.py,sha256=_NPtSLX3-Dam6BHt7daLzv-IAVxvU-35GIGu7YtA08Y,2285
778
- infrahub_sdk/repository.py,sha256=PbSHHl6ajIeZu1t4pH1j7qzR-DPOkGuzubcNM02NuV0,1011
795
+ infrahub_sdk/repository.py,sha256=P6n93Koh-MUpbdWKmKcS8YsztDOXBJf-W1Z5ZZMexOE,973
779
796
  infrahub_sdk/schema/__init__.py,sha256=26pGrfI5fiz5nq9uYxNYuTGWw6zYJCGuWaqJhSPsAiQ,28928
780
- infrahub_sdk/schema/main.py,sha256=Cph933k_b20PZEYlLdYcSmXtb4jL5vwxNCO8TTn_7vE,12182
797
+ infrahub_sdk/schema/main.py,sha256=an9mfg6hNOhxF3eR87NO3qc0oMFUcX0EEfiojWlQtLo,12219
781
798
  infrahub_sdk/schema/repository.py,sha256=oxACAok7fQbwdPhpzZJ8JMwMvHuMG1sNauf5-2cRQCU,12279
782
799
  infrahub_sdk/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
783
800
  infrahub_sdk/spec/menu.py,sha256=KG8KpDYqlVWsCQXCUlAX7P7Jbw3bB60hlTMRs0cohOk,1078
784
- infrahub_sdk/spec/object.py,sha256=yUgQYfvztpWyn9D8wTQfKmUIxM0jh12dYcy_C5Li9ME,24597
801
+ infrahub_sdk/spec/object.py,sha256=8urvLlZ25nXn4LSyo9qrW4-pT5v5Z56MS3UhG2c3WGU,26334
802
+ infrahub_sdk/spec/range_expansion.py,sha256=w86b-mz3iVLBVh9GqM4IXm2Q5N6-F5EzPFXSETEEcLc,5315
785
803
  infrahub_sdk/store.py,sha256=rmTNiAZFebi3I_NOnErhZswZPMrUJrkfu81PHf5aOlE,14091
786
804
  infrahub_sdk/task/__init__.py,sha256=6MTui97_uymZ9BBQGC9xRrT6qpzHc0YxkkKWIdW0FdM,210
787
805
  infrahub_sdk/task/constants.py,sha256=gj0Cx_0RV0G5KAjx9XvUsf4LfEDMjvGqxEg0qL0LknI,126
@@ -798,7 +816,7 @@ infrahub_sdk/testing/repository.py,sha256=9s4MMaMljbJe97Ua4bJgc64giQ2UMC0bD5qIqY
798
816
  infrahub_sdk/testing/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
799
817
  infrahub_sdk/testing/schemas/animal.py,sha256=a1vydXPttoPvsGbSHY5H89AEoi7AWE2JiCGRBE9LJS8,7403
800
818
  infrahub_sdk/testing/schemas/car_person.py,sha256=cKGfgT24q9qg06D9kGFihr1uZY2SJ_G4kWFFOEL_chg,8982
801
- infrahub_sdk/timestamp.py,sha256=qKCZK27W-C13gihxAMDooKBbOqE0py08YysJMW_Vf6E,6111
819
+ infrahub_sdk/timestamp.py,sha256=o313IliK5PkhjIM5HPxLAYxQGjcZpYUiVHxn1KMxLrg,6472
802
820
  infrahub_sdk/topological_sort.py,sha256=RqIGYxHlqOUHvMSAxbq6658TYLaEIdrFP4wyK3Hva5w,2456
803
821
  infrahub_sdk/transfer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
804
822
  infrahub_sdk/transfer/constants.py,sha256=kdYkVWif8v4IiWbbff3Mn3JnPCXD2ONI3SLXQM17Ljw,56
@@ -824,12 +842,12 @@ infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTM
824
842
  infrahub_testcontainers/helpers.py,sha256=rGEWIeUfDg4w1wJNCzTm7_H1oA58HaMSORjVlHw1aWA,4677
825
843
  infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
826
844
  infrahub_testcontainers/measurements.py,sha256=gR-uTasSIFCXrwvnNpIpfsQIopKftT7pBiarCgIShaQ,2214
827
- infrahub_testcontainers/models.py,sha256=ASYyvl7d_WQz_i7y8-3iab9hwwmCl3OCJavqVbe8nXU,954
828
- infrahub_testcontainers/performance_test.py,sha256=hvwiy6tc_lWniYqGkqfOXVGAmA_IV15VOZqbiD9ezno,6149
845
+ infrahub_testcontainers/models.py,sha256=-TScLFW3V7SOe3eS1C8ANKmabpxGDTX5xu-V1pgtnbs,940
846
+ infrahub_testcontainers/performance_test.py,sha256=k14E0loMNuvhIJKEItbeKdbcOC0NBM-HhSe0RnVhJJo,6117
829
847
  infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
830
848
  infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
831
- infrahub_server-1.4.10.dist-info/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
832
- infrahub_server-1.4.10.dist-info/METADATA,sha256=0kkkcbzuPM3vb9EnfBvIQGjm_t9Ow2qHs3pf0O_pCHk,6210
833
- infrahub_server-1.4.10.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
834
- infrahub_server-1.4.10.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
835
- infrahub_server-1.4.10.dist-info/RECORD,,
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,,
@@ -1,4 +1,4 @@
1
- from datetime import datetime, timezone
1
+ from datetime import UTC, datetime
2
2
  from enum import Enum
3
3
  from typing import Any
4
4
 
@@ -27,7 +27,7 @@ class InfrahubResultContext(BaseModel):
27
27
 
28
28
  class InfrahubActiveMeasurementItem(BaseModel):
29
29
  definition: MeasurementDefinition
30
- start_time: datetime = Field(default_factory=lambda: datetime.now(timezone.utc))
30
+ start_time: datetime = Field(default_factory=lambda: datetime.now(UTC))
31
31
  context: dict[str, Any] = Field(default_factory=dict)
32
32
 
33
33
 
@@ -1,6 +1,6 @@
1
1
  import hashlib
2
2
  import json
3
- from datetime import datetime, timezone
3
+ from datetime import UTC, datetime
4
4
  from types import TracebackType
5
5
  from typing import Any
6
6
 
@@ -35,7 +35,7 @@ class InfrahubPerformanceTest:
35
35
  self.env_vars = {}
36
36
  self.project_name = ""
37
37
  self.test_info = {}
38
- self.start_time = datetime.now(timezone.utc)
38
+ self.start_time = datetime.now(UTC)
39
39
  self.end_time: datetime | None = None
40
40
  self.results_url = results_url
41
41
  self.scraper_endpoint = ""
@@ -57,7 +57,7 @@ class InfrahubPerformanceTest:
57
57
 
58
58
  def finalize(self, session: pytest.Session) -> None:
59
59
  if self.initialized:
60
- self.end_time = datetime.now(timezone.utc)
60
+ self.end_time = datetime.now(UTC)
61
61
  self.extract_test_session_information(session)
62
62
  self.send_results()
63
63
 
@@ -129,7 +129,7 @@ class InfrahubPerformanceTest:
129
129
  if not exc_type and self.active_measurements:
130
130
  self.add_measurement(
131
131
  definition=self.active_measurements.definition,
132
- value=(datetime.now(timezone.utc) - self.active_measurements.start_time).total_seconds() * 1000,
132
+ value=(datetime.now(UTC) - self.active_measurements.start_time).total_seconds() * 1000,
133
133
  context=self.active_measurements.context,
134
134
  )
135
135