infrahub-server 1.6.0b0__py3-none-any.whl → 1.6.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.
- infrahub/api/oauth2.py +33 -6
- infrahub/api/oidc.py +36 -6
- infrahub/auth.py +11 -0
- infrahub/auth_pkce.py +41 -0
- infrahub/config.py +9 -3
- infrahub/core/branch/models.py +3 -2
- infrahub/core/changelog/models.py +2 -2
- infrahub/core/constants/__init__.py +1 -0
- infrahub/core/graph/__init__.py +1 -1
- infrahub/core/integrity/object_conflict/conflict_recorder.py +1 -1
- infrahub/core/manager.py +36 -31
- infrahub/core/migrations/graph/__init__.py +2 -0
- infrahub/core/migrations/graph/m047_backfill_or_null_display_label.py +606 -0
- infrahub/core/models.py +5 -6
- infrahub/core/node/__init__.py +16 -13
- infrahub/core/node/create.py +36 -8
- infrahub/core/node/proposed_change.py +5 -3
- infrahub/core/node/standard.py +1 -1
- infrahub/core/protocols.py +1 -7
- infrahub/core/query/attribute.py +1 -1
- infrahub/core/query/node.py +9 -5
- infrahub/core/relationship/model.py +21 -4
- infrahub/core/schema/generic_schema.py +1 -1
- infrahub/core/schema/manager.py +8 -3
- infrahub/core/schema/schema_branch.py +35 -16
- infrahub/core/validators/attribute/choices.py +2 -2
- infrahub/core/validators/determiner.py +3 -6
- infrahub/database/__init__.py +1 -1
- infrahub/git/base.py +2 -3
- infrahub/git/models.py +13 -0
- infrahub/git/tasks.py +23 -19
- infrahub/git/utils.py +16 -9
- infrahub/graphql/app.py +6 -6
- infrahub/graphql/loaders/peers.py +6 -0
- infrahub/graphql/mutations/action.py +15 -7
- infrahub/graphql/mutations/hfid.py +1 -1
- infrahub/graphql/mutations/profile.py +8 -1
- infrahub/graphql/mutations/repository.py +3 -3
- infrahub/graphql/mutations/schema.py +4 -4
- infrahub/graphql/mutations/webhook.py +2 -2
- infrahub/graphql/queries/resource_manager.py +2 -3
- infrahub/graphql/queries/search.py +2 -3
- infrahub/graphql/resolvers/ipam.py +20 -0
- infrahub/graphql/resolvers/many_relationship.py +12 -11
- infrahub/graphql/resolvers/resolver.py +6 -2
- infrahub/graphql/resolvers/single_relationship.py +1 -11
- infrahub/log.py +1 -1
- infrahub/message_bus/messages/__init__.py +0 -12
- infrahub/profiles/node_applier.py +9 -0
- infrahub/proposed_change/branch_diff.py +1 -1
- infrahub/proposed_change/tasks.py +1 -1
- infrahub/repositories/create_repository.py +3 -3
- infrahub/task_manager/models.py +1 -1
- infrahub/task_manager/task.py +5 -5
- infrahub/trigger/setup.py +6 -9
- infrahub/utils.py +18 -0
- infrahub/validators/tasks.py +1 -1
- infrahub/workers/infrahub_async.py +7 -6
- infrahub_sdk/client.py +113 -1
- infrahub_sdk/ctl/AGENTS.md +67 -0
- infrahub_sdk/ctl/branch.py +175 -1
- infrahub_sdk/ctl/check.py +3 -3
- infrahub_sdk/ctl/cli_commands.py +9 -9
- infrahub_sdk/ctl/generator.py +2 -2
- infrahub_sdk/ctl/graphql.py +1 -2
- infrahub_sdk/ctl/importer.py +1 -2
- infrahub_sdk/ctl/repository.py +6 -49
- infrahub_sdk/ctl/task.py +2 -4
- infrahub_sdk/ctl/utils.py +2 -2
- infrahub_sdk/ctl/validate.py +1 -2
- infrahub_sdk/diff.py +80 -3
- infrahub_sdk/graphql/constants.py +14 -1
- infrahub_sdk/graphql/renderers.py +5 -1
- infrahub_sdk/node/attribute.py +0 -1
- infrahub_sdk/node/constants.py +3 -1
- infrahub_sdk/node/node.py +303 -3
- infrahub_sdk/node/related_node.py +1 -2
- infrahub_sdk/node/relationship.py +1 -2
- infrahub_sdk/protocols_base.py +0 -1
- infrahub_sdk/pytest_plugin/AGENTS.md +67 -0
- infrahub_sdk/schema/__init__.py +0 -3
- infrahub_sdk/timestamp.py +7 -7
- {infrahub_server-1.6.0b0.dist-info → infrahub_server-1.6.1.dist-info}/METADATA +2 -3
- {infrahub_server-1.6.0b0.dist-info → infrahub_server-1.6.1.dist-info}/RECORD +88 -84
- {infrahub_server-1.6.0b0.dist-info → infrahub_server-1.6.1.dist-info}/WHEEL +1 -1
- infrahub_testcontainers/container.py +2 -2
- {infrahub_server-1.6.0b0.dist-info → infrahub_server-1.6.1.dist-info}/entry_points.txt +0 -0
- {infrahub_server-1.6.0b0.dist-info → infrahub_server-1.6.1.dist-info}/licenses/LICENSE.txt +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
infrahub/__init__.py,sha256=OF6hovR3975Zu6-9DOL_Nh_FTgGn8kS_yOfQ-xp-chg,87
|
|
2
|
-
infrahub/auth.py,sha256=
|
|
2
|
+
infrahub/auth.py,sha256=RTv3SkkIVQ3nCt3GOeolD1qqveTHsNGA9DTNshOwtq0,15773
|
|
3
|
+
infrahub/auth_pkce.py,sha256=AwEyM7uUKGawOxWRnMb6-YQ6l421V72Y20fpm8fjeF8,1253
|
|
3
4
|
infrahub/components.py,sha256=lSLDCDwIZoakZ2iBrfHi9c3BxzugMiuiZO6V7Egt6tk,107
|
|
4
|
-
infrahub/config.py,sha256=
|
|
5
|
+
infrahub/config.py,sha256=Pe3lVJtzi_oGO683N0YXoaWuuBGEwhA6XT63QI4uqgM,41547
|
|
5
6
|
infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
|
|
6
7
|
infrahub/exceptions.py,sha256=cbM-f_2U-5ZFVZ_MaaXgs64k4M7uJ7fqDU2iCRoWlYY,11861
|
|
7
8
|
infrahub/helpers.py,sha256=KchbQqgipU4VjfwnDbzCGjnEv-4espw_g63Zw4KAhbo,251
|
|
8
9
|
infrahub/lock.py,sha256=rHBMLaHTGyY3GlJCzL7RiTj01QKhBi7V1e5Yx517x9Q,11002
|
|
9
|
-
infrahub/log.py,sha256=
|
|
10
|
+
infrahub/log.py,sha256=0PFE4CF5ID3xSNqZvzkCvK87H8_3cZCljgTmPijW68M,2819
|
|
10
11
|
infrahub/middleware.py,sha256=Su129MXkXazE9ODlIZ_KtuRHOakMsOHbVKIx15NKXpU,1547
|
|
11
12
|
infrahub/models.py,sha256=QmwJwo3hNCta8BXM7eLsD9qv1S73Rj0cC_crLpadHTc,715
|
|
12
13
|
infrahub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -15,7 +16,7 @@ infrahub/server.py,sha256=0GEM7cqhLIDlTLyhMKeGc0X6zlYJp_a2OpYiKJ5XblM,8566
|
|
|
15
16
|
infrahub/storage.py,sha256=bpK8m7GNlp5LHI0yXuFNZhhBVQpU7RZr7MeWCaAAPLk,1812
|
|
16
17
|
infrahub/trace.py,sha256=Hir9hMWx_6IKF_dhDnMxYjusJdy0ycjB5CHWge2wXNE,3759
|
|
17
18
|
infrahub/types.py,sha256=aea-_EXtaqhYq8-P5LGqkU9VitfMs_WU4WXOSsItrsg,11591
|
|
18
|
-
infrahub/utils.py,sha256=
|
|
19
|
+
infrahub/utils.py,sha256=0kUR8XcrOv3V-GSqXPHphJ6ZtPGAbQrfjVCmEiTo64U,3294
|
|
19
20
|
infrahub/visuals.py,sha256=N62G4oOOIYNFpvMjKq7uos-oZAZybGMp57uh5jsVX9w,627
|
|
20
21
|
infrahub/worker.py,sha256=zV9vLXtJzyqeTGtVolwZEHlLaBvGiUZv00qWpE-lnOM,353
|
|
21
22
|
infrahub/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -35,8 +36,8 @@ infrahub/api/exceptions.py,sha256=EjTAN2wawBRyxMWgmafdk2CUdmzAqNokP3QNobifQQI,29
|
|
|
35
36
|
infrahub/api/file.py,sha256=FnjXkQdSBThnNNYk8CMboEx_935pR1U6aHT0jxA0AdU,2258
|
|
36
37
|
infrahub/api/internal.py,sha256=KIcetkvLGgIqwjUHyuxReXDl46leU5a_4CmbKxbusNs,5375
|
|
37
38
|
infrahub/api/menu.py,sha256=xp5bj5JXQZA6ZEPWoTSGGSfTXZ1sVmehMxr3VSG7FlQ,1216
|
|
38
|
-
infrahub/api/oauth2.py,sha256=
|
|
39
|
-
infrahub/api/oidc.py,sha256=
|
|
39
|
+
infrahub/api/oauth2.py,sha256=A7tXoyEAqSG9ytwFvdWEtGkO3F-VXfLo7xzsRFOGlqw,6387
|
|
40
|
+
infrahub/api/oidc.py,sha256=yYvUQzn69MFY1yXuWuXE88vI96nU42pVeEL9xqU3bpU,9505
|
|
40
41
|
infrahub/api/query.py,sha256=l8WinRHzgc97avxUQ-pOOJEz7JAVmbBhFnjY4QzAIak,7464
|
|
41
42
|
infrahub/api/schema.py,sha256=bcF9s4385Rlaqnf5RSrFnPsuvqtsw9IhTDvorK9u5s0,18069
|
|
42
43
|
infrahub/api/storage.py,sha256=yWo7qsDn4SrX89wDsTKOfGTMdWYNsptAdt7Fhfzw1C0,2179
|
|
@@ -82,12 +83,12 @@ infrahub/core/account.py,sha256=6f1cIDWvL-HsbzL0UwWoCbDTzx55wzd_SkpQXiKDjcE,2747
|
|
|
82
83
|
infrahub/core/attribute.py,sha256=quW5lG-e4c3VjIhiSta12TUTB8Uv_Gmi8mwTenwBSIo,44921
|
|
83
84
|
infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
|
|
84
85
|
infrahub/core/initialization.py,sha256=MuhZR6VDFfEiQw_ZPm-LBcBQmpvEdaxovGWtx_YKtVc,22081
|
|
85
|
-
infrahub/core/manager.py,sha256=
|
|
86
|
+
infrahub/core/manager.py,sha256=iJB13eiYFNdUyYBFVdpP74IYo-4O46MMlsg7Gg_ACgM,47696
|
|
86
87
|
infrahub/core/merge.py,sha256=xH6w_w1wzebuyrYt8gqFYU3Mdc416D_HrhitluzYULo,12538
|
|
87
|
-
infrahub/core/models.py,sha256=
|
|
88
|
+
infrahub/core/models.py,sha256=YaEi52YAmgfl6aPm4tRkI0uq2eBdsteyJAzar6WFDP0,26658
|
|
88
89
|
infrahub/core/path.py,sha256=CTSnW6OcvnGNqTcOUZcVOMDSB4PLmeGYpY9U84uv9r8,6181
|
|
89
90
|
infrahub/core/property.py,sha256=mUf8JGUHSUVBaegN7TPmmJ2CnQRGo2d1rQEQQmdNmbU,5386
|
|
90
|
-
infrahub/core/protocols.py,sha256=
|
|
91
|
+
infrahub/core/protocols.py,sha256=QoDvLhsvLiJ7Jqouri31ja4apApVN4zmwm_59KTKhs8,12741
|
|
91
92
|
infrahub/core/protocols_base.py,sha256=cEi6giHtEUmaD0JWfDfWHJhEv_6wjaBA3oJRJCbvc6Q,3411
|
|
92
93
|
infrahub/core/registry.py,sha256=nGbFrg7cQPNW2JjDOGPkQ-igJSHTnuprMcHsAWyJLUM,8606
|
|
93
94
|
infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
|
|
@@ -95,13 +96,13 @@ infrahub/core/timestamp.py,sha256=htKK3byVUk23PWQyfIOKK9OmN0HWjJC4xcaRTnLNkjw,10
|
|
|
95
96
|
infrahub/core/utils.py,sha256=SzOlfsV5Ebp6VeJXARDIm4C3UUNZsNlXerlQbLMappc,9146
|
|
96
97
|
infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
|
|
97
98
|
infrahub/core/branch/enums.py,sha256=wE_TvKxd-r3zeHgLOMuZhsyKRwDWWC8BMxAEC_aX7A8,212
|
|
98
|
-
infrahub/core/branch/models.py,sha256=
|
|
99
|
+
infrahub/core/branch/models.py,sha256=NWbDbK5EjwafopEtiZVzArvxpZKHC8RcWPDyHmYZTcg,21268
|
|
99
100
|
infrahub/core/branch/needs_rebase_status.py,sha256=purrg93k9zWcV9NONjIdMF8cWLXEKHq6YjO0ayC3C04,407
|
|
100
101
|
infrahub/core/branch/tasks.py,sha256=RnQlWdFmAj3VIALb4WNaMiL7ZuvtGcW1zgdbnemjE-Q,23558
|
|
101
102
|
infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
103
|
infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
|
|
103
|
-
infrahub/core/changelog/models.py,sha256=
|
|
104
|
-
infrahub/core/constants/__init__.py,sha256=
|
|
104
|
+
infrahub/core/changelog/models.py,sha256=pA8Tvq37ia58rGZjFb6OWXIH974J43s3_LG9VEvt-tw,29832
|
|
105
|
+
infrahub/core/constants/__init__.py,sha256=MhxPie08FJBr9JQGmd2sdKHbyYRUsAhhDrzCfv6Mit8,10055
|
|
105
106
|
infrahub/core/constants/database.py,sha256=x5tWaT3e0WfCxxrHMcSoHUBMfcUzStLi133CqHjSosU,368
|
|
106
107
|
infrahub/core/constants/infrahubkind.py,sha256=mN1_h877Ti9fA6DLHE7TmBlx71flbF-trw2rS1HXfCI,3060
|
|
107
108
|
infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
|
|
@@ -170,13 +171,13 @@ infrahub/core/diff/query/update_conflict_query.py,sha256=kQkFazz88wnApr8UU_qb0ru
|
|
|
170
171
|
infrahub/core/diff/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
172
|
infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_SS4EQnM9JoY5ptx78,21337
|
|
172
173
|
infrahub/core/diff/repository/repository.py,sha256=u0QTMY1e2dknG_DuRAwzFt-Lp1_mdj5lqF2ymt77k9E,25581
|
|
173
|
-
infrahub/core/graph/__init__.py,sha256=
|
|
174
|
+
infrahub/core/graph/__init__.py,sha256=FMzJuQKTgUQn8LmPwha2EHaGv3YswDBNG-1ttoZzjAA,19
|
|
174
175
|
infrahub/core/graph/constraints.py,sha256=ePTN1FtvTX01R1CcnYDNDGwC82YyIIux2_Jnf0e0PeI,10397
|
|
175
176
|
infrahub/core/graph/index.py,sha256=A9jzEE_wldBJsEsflODeMt4GM8sPmmbHAJRNdFioR1k,1736
|
|
176
177
|
infrahub/core/graph/schema.py,sha256=o50Jcy6GBRk55RkDJSMIDDwHhLD7y_RWOirI9rCex4A,10776
|
|
177
178
|
infrahub/core/integrity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
178
179
|
infrahub/core/integrity/object_conflict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
|
-
infrahub/core/integrity/object_conflict/conflict_recorder.py,sha256=
|
|
180
|
+
infrahub/core/integrity/object_conflict/conflict_recorder.py,sha256=8wZqZ866qjTzW1w9ABm6eRvWc3a4-_UqMMR7P0j5WhY,6127
|
|
180
181
|
infrahub/core/ipam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
182
|
infrahub/core/ipam/constants.py,sha256=bKiDfCSerJFxFxwIanAixB8aodfOj_w3dRljuqZfXxA,289
|
|
182
183
|
infrahub/core/ipam/kinds_getter.py,sha256=XiIsJiX1FCRDWZI_ZjwV77w5p-hIhFmMVTkfN7VBOLs,1717
|
|
@@ -189,7 +190,7 @@ infrahub/core/migrations/__init__.py,sha256=ttA1YkKhiG9Zc0fwIIcMLIDCrIhN5xVOIh6o
|
|
|
189
190
|
infrahub/core/migrations/exceptions.py,sha256=gEAkWzjvN-IXr0YPqUrEqnu_GsR-uqucsu1QUaWhEmM,147
|
|
190
191
|
infrahub/core/migrations/runner.py,sha256=d_HxhO1RRh3Ec7cG5Z8SKV2X0mqc4J5Y9UZwHb4d6Co,2145
|
|
191
192
|
infrahub/core/migrations/shared.py,sha256=eP-OltT87Aw0I5MLm90YZ50iwxbNbC229eO8HPwC7kc,9575
|
|
192
|
-
infrahub/core/migrations/graph/__init__.py,sha256=
|
|
193
|
+
infrahub/core/migrations/graph/__init__.py,sha256=UAdfeIHwuRGb6F6tGykQOWLcT873k6VeUzkXvL4yztU,4638
|
|
193
194
|
infrahub/core/migrations/graph/load_schema_branch.py,sha256=OvjowaeDnx4djD1aGPjE7Rqyh1p843LSodOf_Frdt9U,1008
|
|
194
195
|
infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
|
|
195
196
|
infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
|
|
@@ -237,6 +238,7 @@ infrahub/core/migrations/graph/m043_create_hfid_display_label_in_db.py,sha256=gi
|
|
|
237
238
|
infrahub/core/migrations/graph/m044_backfill_hfid_display_label_in_db.py,sha256=FuV3EBWS4lY4dtOn7-1Qgo6J7j4XDq4s5yIQjfCCVDM,39575
|
|
238
239
|
infrahub/core/migrations/graph/m045_backfill_hfid_display_label_in_db_profile_template.py,sha256=mnND7TIdPSVcN9uJeYMmRpVjlAU6QBqfu7e1CS31D9Q,7934
|
|
239
240
|
infrahub/core/migrations/graph/m046_fill_agnostic_hfid_display_labels.py,sha256=labPu3UwH2L6X3VCVmNQHGSbRS-De0ihVzsaUiTf2so,10210
|
|
241
|
+
infrahub/core/migrations/graph/m047_backfill_or_null_display_label.py,sha256=0ZrkeYWKhWERGOg_IH74KNuJtV8bR0bw1jOEkeZBFtE,24328
|
|
240
242
|
infrahub/core/migrations/query/__init__.py,sha256=nUbKk8bX6Ei4RkLe0VNNAm7c-d2zDoAMgdFGkYW0Czw,850
|
|
241
243
|
infrahub/core/migrations/query/attribute_add.py,sha256=wKChMnqcd8hb8YCTIU3rUrtVqwHFSI5bdvXAPUcnRIA,4969
|
|
242
244
|
infrahub/core/migrations/query/attribute_remove.py,sha256=IhAPlv9jyZTWMf8f8HZJ8G0ImWebt-ER78NrP3vIWhU,5307
|
|
@@ -256,16 +258,16 @@ infrahub/core/migrations/schema/node_kind_update.py,sha256=sCKbjzkAOuWsjvQHAfHq9
|
|
|
256
258
|
infrahub/core/migrations/schema/node_remove.py,sha256=6Xzs0uT_MlDyFD4xqqmplijNJxGpdZ4Cosa0h5cVqC4,7143
|
|
257
259
|
infrahub/core/migrations/schema/placeholder_dummy.py,sha256=YBGFUVPi57ARbWgAmbtKD_Y6lkITOR6nFwov7IXVuzU,350
|
|
258
260
|
infrahub/core/migrations/schema/tasks.py,sha256=2J8gHGSP-WhxSi4GYhOc9xAJOg_S1ONm3YE4_ukLKxw,4164
|
|
259
|
-
infrahub/core/node/__init__.py,sha256=
|
|
261
|
+
infrahub/core/node/__init__.py,sha256=XGbwX930Xoeu8C6btYy_81HHMIRRl-O9JZziYRkhYgU,50212
|
|
260
262
|
infrahub/core/node/base.py,sha256=BAowVRCK_WC50yXym1kCyUppJDJnrODGU5uoj1s0Yd4,2564
|
|
261
|
-
infrahub/core/node/create.py,sha256=
|
|
263
|
+
infrahub/core/node/create.py,sha256=0Ph1coyamLVpoFI5HcGqOA3irTP73xalL5OVIua5zhQ,10329
|
|
262
264
|
infrahub/core/node/delete_validator.py,sha256=mj_HQXkTeP_A3po65-R5bCJnDM9CmFFmcUQIxwPlofc,10559
|
|
263
265
|
infrahub/core/node/ipam.py,sha256=wTulKQidGCSOENlZ0HDFQi_q7VRNap81wcgLI05NeGk,2721
|
|
264
266
|
infrahub/core/node/lock_utils.py,sha256=wIxqOv3xcNQR4J1hiNXE7rmgCyLKemY7lDBIDsWHM9U,4975
|
|
265
267
|
infrahub/core/node/node_property_attribute.py,sha256=CxBfLw7QGt2qOM0qpDaOg9d6DalaVZZd-GMxwq50yO0,8853
|
|
266
268
|
infrahub/core/node/permissions.py,sha256=uQzQ62IHcSly6fzPre0nQzlrkCIKzH4HyQkODKB3ZWM,2207
|
|
267
|
-
infrahub/core/node/proposed_change.py,sha256=
|
|
268
|
-
infrahub/core/node/standard.py,sha256=
|
|
269
|
+
infrahub/core/node/proposed_change.py,sha256=PzMI3YPFTWGhcQmxLyRZSxRA7y4I-e39lfUZoJ1mkjs,1657
|
|
270
|
+
infrahub/core/node/standard.py,sha256=w-v1tgGw2u5Epk2EI-Ycd2EAXQiIh0xf-wlDhGy7FkM,7288
|
|
269
271
|
infrahub/core/node/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
272
|
infrahub/core/node/constraints/attribute_uniqueness.py,sha256=lcHBk4d3bc12sywxRTnQs18VEm_S6pDcUhNnsXnb-uI,2162
|
|
271
273
|
infrahub/core/node/constraints/grouped_uniqueness.py,sha256=F5pmnXVuQNlVmdZY5FRxSGK4gGi1BK1IRgw4emCTlLw,9506
|
|
@@ -275,12 +277,12 @@ infrahub/core/node/resource_manager/ip_address_pool.py,sha256=pJa3peul-sNNN_tNNs
|
|
|
275
277
|
infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=z1CY7OM41p-X3dJcuGu7coDHDoGHvnB4puvmmleVmrU,5527
|
|
276
278
|
infrahub/core/node/resource_manager/number_pool.py,sha256=KaDxJdIspQ_riXcDGn6RSBDltxEIonmoj68vsQvhFwE,5829
|
|
277
279
|
infrahub/core/query/__init__.py,sha256=2qIMaODLwJ6pK6BUd5vODTlA15Aecf5I8_-J44UlCso,23089
|
|
278
|
-
infrahub/core/query/attribute.py,sha256=
|
|
280
|
+
infrahub/core/query/attribute.py,sha256=eHrxXo-5YV4oUOx9kaU0rMKv-9lCRcqz2PMWNtqPuUM,14867
|
|
279
281
|
infrahub/core/query/branch.py,sha256=yZ7lasZ06-F0P7t_l40GFWM_JP1q_6_IxRhiVxvEG4o,4809
|
|
280
282
|
infrahub/core/query/delete.py,sha256=7tPP1qtNV6QGYtmgE1RKsuQ9oxENnMTVkttLvJ2PiKg,1927
|
|
281
283
|
infrahub/core/query/diff.py,sha256=uvojpzJSZFdcuutPAbA74M6R85hN1fteBDS4ZufE8IA,38579
|
|
282
284
|
infrahub/core/query/ipam.py,sha256=CIYfqbzvXptBlYRrJlOu7zUv84orVNIkpt_7BpWLdpM,35440
|
|
283
|
-
infrahub/core/query/node.py,sha256=
|
|
285
|
+
infrahub/core/query/node.py,sha256=DIsraaMqvnaMx7tFVe6D7meamp8wESX3KEd8tZKL6vU,64497
|
|
284
286
|
infrahub/core/query/relationship.py,sha256=v4V9WNX4ucvD8QeC9oZfzCuMYmeyziGhVelMir7DYLk,49642
|
|
285
287
|
infrahub/core/query/resource_manager.py,sha256=uSvs1WZmdbyt_PjaUi9lXnYdPt-lhJV1RjYoUHYjQdk,16620
|
|
286
288
|
infrahub/core/query/standard_node.py,sha256=fkX6KlyWOkW3byP3MuedMj_mqIQIK0NxoEC7N9YQmQo,4931
|
|
@@ -289,7 +291,7 @@ infrahub/core/query/task.py,sha256=tLgn8S_KaLYLuOB66D1YM155teHZIHNThkt2iUiKKD4,3
|
|
|
289
291
|
infrahub/core/query/task_log.py,sha256=2RdthOAQrmpKZU8uhV_dJCPqwdsSA_1CYSKpL_eZ_yk,1120
|
|
290
292
|
infrahub/core/query/utils.py,sha256=t9LMvZWdmi10c3E0HAU_5m7x5zMHhYXsUjX7ZBl2RpU,1091
|
|
291
293
|
infrahub/core/relationship/__init__.py,sha256=broUBD0iwpSSGKJbUdG66uau67TQ_DRhqT_PFhuk1ag,154
|
|
292
|
-
infrahub/core/relationship/model.py,sha256=
|
|
294
|
+
infrahub/core/relationship/model.py,sha256=gTs7tDI9YQLbAZr7C7Q_Qkyq6XN0iDWamfyAvmVjduc,49431
|
|
293
295
|
infrahub/core/relationship/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
294
296
|
infrahub/core/relationship/constraints/count.py,sha256=Ndqj0DHiQNyQxrwLfDgAoa3NJ3kspym6NMVSeXqwoxY,4372
|
|
295
297
|
infrahub/core/relationship/constraints/interface.py,sha256=YJgbO7YxlOSo5rVveE2KQ2_8onUt9vMGl7V_2MnV32Y,344
|
|
@@ -304,12 +306,12 @@ infrahub/core/schema/basenode_schema.py,sha256=Se-pEYgnL2Y6_OSMZrl5BWgW9taBaBaqd
|
|
|
304
306
|
infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
|
|
305
307
|
infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
|
|
306
308
|
infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
|
|
307
|
-
infrahub/core/schema/generic_schema.py,sha256=
|
|
308
|
-
infrahub/core/schema/manager.py,sha256=
|
|
309
|
+
infrahub/core/schema/generic_schema.py,sha256=VzniSE6hH6ew3-gIODVe37l1TlF7u4iXHB0sbJfW_JA,1588
|
|
310
|
+
infrahub/core/schema/manager.py,sha256=Zz1kRc5g_-1U5xlj6kuOG1ltnpntkkbyMQeP1z0we-c,34476
|
|
309
311
|
infrahub/core/schema/node_schema.py,sha256=W2Jx5QXrQ5ygUEyTKnIHhj6Xe7jJ6Y-iQArEo05cWRI,6341
|
|
310
312
|
infrahub/core/schema/profile_schema.py,sha256=sV4lp1UyBye12M7BJcA2obb4tx3M9J5P89SLqkmFxJY,1237
|
|
311
313
|
infrahub/core/schema/relationship_schema.py,sha256=ryCvmUQl3HBo_Sk07Xl5rT48PPuhlBkYRmm-lSdfJPI,8445
|
|
312
|
-
infrahub/core/schema/schema_branch.py,sha256=
|
|
314
|
+
infrahub/core/schema/schema_branch.py,sha256=eLxy1lDR1K5F2OvO4h3jrr_V_8_1amoEc-QaGnXbTL4,120204
|
|
313
315
|
infrahub/core/schema/schema_branch_computed.py,sha256=14UUsQJDLMHkYhg7QMqeLiTF3PO8c8rGa90ul3F2ZZo,10629
|
|
314
316
|
infrahub/core/schema/schema_branch_display.py,sha256=bvXVSZZC1uilBicTXeUdrPkxIVuIIY0aLjkJQkvrTbY,6098
|
|
315
317
|
infrahub/core/schema/schema_branch_hfid.py,sha256=XcNV2nNbpOhif5HHN6wvXXuM-nY8eMWhlidr4g8riro,5276
|
|
@@ -346,7 +348,7 @@ infrahub/core/task/user_task.py,sha256=gPYMXdTekmmL3A3sTkOTYMfVOMTM_nlxE91JB6zKW
|
|
|
346
348
|
infrahub/core/validators/__init__.py,sha256=0287h4i-oCL1seKlcQmZtSdepn-25JBKo5XkRrsiXL8,3189
|
|
347
349
|
infrahub/core/validators/aggregated_checker.py,sha256=F-Q8L8U8VauAfDy1JnA5JWE0dXXTWo8PykbGTiSEA2g,4716
|
|
348
350
|
infrahub/core/validators/checks_runner.py,sha256=xaIfgRLrwDk-9GVx0UilSub8Ee3EPudi5GpY51C5xLk,2513
|
|
349
|
-
infrahub/core/validators/determiner.py,sha256=
|
|
351
|
+
infrahub/core/validators/determiner.py,sha256=kh0u-BcdDC4s0qyWVtRxrUxzDIz-RoRpkKI_wd1BPnE,9656
|
|
350
352
|
infrahub/core/validators/enum.py,sha256=-26-LtK2pB_oqRuDtOuUb7Qf634vvahagFHfswmcqrg,748
|
|
351
353
|
infrahub/core/validators/interface.py,sha256=OqSq8myM73Hik6pzZFVC42-_PHg4qwn2xJLd_AhYU1w,560
|
|
352
354
|
infrahub/core/validators/model.py,sha256=QtnEt3FBcsPk0cSROgsj93Zr20ZMI-yRXQOa-vEwpTw,1636
|
|
@@ -354,7 +356,7 @@ infrahub/core/validators/query.py,sha256=0PCDoYczx6mCthnQH3datjNIm-GKxqS24JkxpzN
|
|
|
354
356
|
infrahub/core/validators/shared.py,sha256=dhCz2oTM5JxA3mpcQvN83KIKIv-VNPSiG0lh4ZiTAFw,1345
|
|
355
357
|
infrahub/core/validators/tasks.py,sha256=Qb9q2l55NKhvWXCrZclVWvJhzsN3yniN7nsYqULl0wA,3930
|
|
356
358
|
infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
|
-
infrahub/core/validators/attribute/choices.py,sha256=
|
|
359
|
+
infrahub/core/validators/attribute/choices.py,sha256=Zt_iy6g2ANK4wBOgWqnhvU0dZ2ZYGvyhu93t7eNwj8Q,5380
|
|
358
360
|
infrahub/core/validators/attribute/enum.py,sha256=3PzkYUuzbt8NqRH4IP4cMjoDxzUvJzbNYC5ZpW5zKZQ,4161
|
|
359
361
|
infrahub/core/validators/attribute/kind.py,sha256=uzMo4Qf-AyvSlwgURgALd7QVMEl6237tb148-wgTDjE,4611
|
|
360
362
|
infrahub/core/validators/attribute/length.py,sha256=H0nP2x2ynzcbMnc6neIje01wXipbt8Wr49iNTqIvWxI,4526
|
|
@@ -381,7 +383,7 @@ infrahub/core/validators/uniqueness/checker.py,sha256=-vIgNSodeibpf6vScDDbON30XG
|
|
|
381
383
|
infrahub/core/validators/uniqueness/index.py,sha256=Jw1o-UVinQquNduZ5vCCzt8GUfIEdVzBo-1XyRti8F8,5068
|
|
382
384
|
infrahub/core/validators/uniqueness/model.py,sha256=Z5CyYOQfhyAnwNIev4AFjfXnfOoUWc4uR04Wz3C6Cy4,5617
|
|
383
385
|
infrahub/core/validators/uniqueness/query.py,sha256=0LXhPqRpV4Ho2CLxHP2fDs8AFvKJPKpUfHiW4SwFccg,22254
|
|
384
|
-
infrahub/database/__init__.py,sha256=
|
|
386
|
+
infrahub/database/__init__.py,sha256=aICjt8wG0kzY3dgUIzyJO-DCsLkT3eBbGlj6R5yYwdw,20766
|
|
385
387
|
infrahub/database/graph.py,sha256=fUYrUmRNFA_qvFSS7bvb7giqaIj1BLzhQY6dz7F_vCo,620
|
|
386
388
|
infrahub/database/index.py,sha256=ATLqw9Grqbq7haGGm14VSEPmcPniid--YATiffo4sA0,1676
|
|
387
389
|
infrahub/database/memgraph.py,sha256=Fg3xHP9s0MiBBmMvcEmsJvuIUSq8U_XCS362HDE9d1s,1742
|
|
@@ -472,21 +474,21 @@ infrahub/generators/constants.py,sha256=T_GuUuqzRwn7akkAD58TquJBU6EOzGmj1PC8q0yy
|
|
|
472
474
|
infrahub/generators/models.py,sha256=TjTz9tOAXHHFS51CtGPp_CrTE7Hv6RN5rvOxSee4s38,3682
|
|
473
475
|
infrahub/generators/tasks.py,sha256=tVH2J_Hsf53T3Hl5kh8sKt3A_hiyo6L-FnKMFG45U6M,10725
|
|
474
476
|
infrahub/git/__init__.py,sha256=KeQ9U8UI5jDj6KB6j00Oal7MZmtOD9vKqVgiezG_EQA,281
|
|
475
|
-
infrahub/git/base.py,sha256=
|
|
477
|
+
infrahub/git/base.py,sha256=xFehur-mffuRuzARMjBtoBp2-LB99lO9_dItDY7HHQ4,42015
|
|
476
478
|
infrahub/git/constants.py,sha256=XpzcAkXbsgXZgrXey74id1sXV8Q6EHb_4FNw7BndxyY,106
|
|
477
479
|
infrahub/git/directory.py,sha256=fozxLXXJPweHG95yQwQkR5yy3sfTdmHiczCAJnsUX54,861
|
|
478
480
|
infrahub/git/integrator.py,sha256=l3RQyGL-2SjYHf6cbALmjf8AweJPwkJGiJVJymeCgz8,63117
|
|
479
|
-
infrahub/git/models.py,sha256=
|
|
481
|
+
infrahub/git/models.py,sha256=hVnzx-DBvFwOCLC7h9IjprwLSb9XAeSdZaRwvv_5FTc,12974
|
|
480
482
|
infrahub/git/repository.py,sha256=dMUfQzB_tVLgtHsok8WiDOS4ImbLRaK-OTBYtS3YdpU,11770
|
|
481
|
-
infrahub/git/tasks.py,sha256=
|
|
482
|
-
infrahub/git/utils.py,sha256=
|
|
483
|
+
infrahub/git/tasks.py,sha256=_hDrk8jpWwUTJ2A4emC3gOMKWV93KQaU46YpR41nKX4,40571
|
|
484
|
+
infrahub/git/utils.py,sha256=TNw1QR-xF8EO2eQLmeUU3WGvLfIfPEDhsKR4FYp0Yb4,5805
|
|
483
485
|
infrahub/git/worktree.py,sha256=8IYJWOBytKUWwhMmMVehR4ceeO9e13nV-mvn3iVEgZY,1727
|
|
484
486
|
infrahub/git_credential/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
487
|
infrahub/git_credential/askpass.py,sha256=BL7e4Xkx5la7XFk-GQR6MXxV5B29Mzb5ZnVnljd7Xpw,1513
|
|
486
488
|
infrahub/git_credential/helper.py,sha256=cwSMKRTgqrqIBM66jEOtlj4MMLf647KJWmtnnVxFtTY,2337
|
|
487
489
|
infrahub/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
490
|
infrahub/graphql/analyzer.py,sha256=2-C1Wli0fXpXTVvNtP7IxiKWBJN97lqOeEP2L0oy3ho,30944
|
|
489
|
-
infrahub/graphql/app.py,sha256=
|
|
491
|
+
infrahub/graphql/app.py,sha256=JwLNHbsEBKLameZ2UhK2RRxnt6kt2AoQUUpHOvk8wCo,21186
|
|
490
492
|
infrahub/graphql/constants.py,sha256=iVvo3HK-ch7YmHw1Eg2E_ja3I45cNAwjpYahsnu85CI,37
|
|
491
493
|
infrahub/graphql/context.py,sha256=ahp-MvX_0glg9mSPbPVhEwvbYzrIKtaEAGt7CVnAusE,1681
|
|
492
494
|
infrahub/graphql/directives.py,sha256=wyIkJFp7l0J4JqNl1Lqu7YfKXP7glrewlQFMDTUAPcE,645
|
|
@@ -517,11 +519,11 @@ infrahub/graphql/auth/query_permission_checker/object_permission_checker.py,sha2
|
|
|
517
519
|
infrahub/graphql/auth/query_permission_checker/super_admin_checker.py,sha256=2RlJ1G-BmJIQW33SletzK1gIQ3nyEB2edTiX0xAjR2E,1550
|
|
518
520
|
infrahub/graphql/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
519
521
|
infrahub/graphql/loaders/node.py,sha256=p7qJxRpXSAddq2fcwJeaIRy-5ReSn2EUitQbDhlmdM4,2618
|
|
520
|
-
infrahub/graphql/loaders/peers.py,sha256=
|
|
522
|
+
infrahub/graphql/loaders/peers.py,sha256=fmLxF8rw6P2wgSxIBUvbnj1ZmpgQVU99SN5QFbeKbDM,3075
|
|
521
523
|
infrahub/graphql/loaders/shared.py,sha256=hUxLy8iVgfpEZiUMKNkUAeshPKKzEVSDMDsuaBbjJW4,389
|
|
522
524
|
infrahub/graphql/mutations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
523
525
|
infrahub/graphql/mutations/account.py,sha256=qxwawri2lMNVW-ERiUN5-8Z-6ZRxGFqYWg3oDBKvFak,5821
|
|
524
|
-
infrahub/graphql/mutations/action.py,sha256=
|
|
526
|
+
infrahub/graphql/mutations/action.py,sha256=Q7eigcRpIh3iwSXDPMelcGJdCHdaF1BYdEUX_Hc4UIQ,6900
|
|
525
527
|
infrahub/graphql/mutations/artifact_definition.py,sha256=K9iieMMHB8O8V1E6aO04tP2oMtiTRTA8B_0nWEHGWcc,3531
|
|
526
528
|
infrahub/graphql/mutations/attribute.py,sha256=a35MP8Pvy_42N5dkO3HKATgJDW6qy9ncDu5t8YI3AUE,2734
|
|
527
529
|
infrahub/graphql/mutations/branch.py,sha256=TKI2zxY-SOetlYylMWo0r1jV1c_3xsdl9TnBDXfZ0K8,11655
|
|
@@ -532,19 +534,19 @@ infrahub/graphql/mutations/diff_conflict.py,sha256=JngQfyKXCVlmtlqQ_VyabmrOEDOEK
|
|
|
532
534
|
infrahub/graphql/mutations/display_label.py,sha256=fXRs5-yIXECjGJ7G6ZtIGkTV4XHjdSTdyBLl64ddDik,4557
|
|
533
535
|
infrahub/graphql/mutations/generator.py,sha256=7YSg_0Q4fe2Qh9MdLcCUU5h1sWLTG5HcnuNNr5b1SCA,4566
|
|
534
536
|
infrahub/graphql/mutations/graphql_query.py,sha256=a8tCTrjJipwIghmxlcUkH1Hx_7tem5QhzrTczcwpuZM,3644
|
|
535
|
-
infrahub/graphql/mutations/hfid.py,sha256=
|
|
537
|
+
infrahub/graphql/mutations/hfid.py,sha256=vgoAqNrEGHeSsm7gfMgMBYP7QMsnWKyFFUTWKzaObSU,4876
|
|
536
538
|
infrahub/graphql/mutations/ipam.py,sha256=bXiqRmGraljxue5QxzKcuQrGxusVc9XY7St9BmGc-KY,17547
|
|
537
539
|
infrahub/graphql/mutations/main.py,sha256=s_UuTl3xtkRZHk143oGFvCw0ckwk6LRdgQ_wAL6cZ10,17196
|
|
538
540
|
infrahub/graphql/mutations/menu.py,sha256=NSdtUobZ-5dsQdBFfD1xyoE9dKw9FS62T_6UQM0cEUY,3790
|
|
539
541
|
infrahub/graphql/mutations/models.py,sha256=ilkSLr8OxVO9v3Ra_uDyUTJT9qPOmdPMqQbuWIydJMo,264
|
|
540
|
-
infrahub/graphql/mutations/profile.py,sha256=
|
|
542
|
+
infrahub/graphql/mutations/profile.py,sha256=CwPrnsO5hod6H7lmgx9agOI0YM3dKIxtUtzPCleE9r4,7708
|
|
541
543
|
infrahub/graphql/mutations/proposed_change.py,sha256=EJE4amNn0FP8w6ou5lEDrh31ZBJ2nBDUtXmiPjHGNgg,20384
|
|
542
544
|
infrahub/graphql/mutations/relationship.py,sha256=vNa0ylxktv-IjI0cti88Dqt0k3FLIEPp0cooyVrBfyc,21944
|
|
543
|
-
infrahub/graphql/mutations/repository.py,sha256=
|
|
545
|
+
infrahub/graphql/mutations/repository.py,sha256=X4cRfczDNhQHldn6u6Naq9ey9MG7dq1LNxscFsbgXqA,8595
|
|
544
546
|
infrahub/graphql/mutations/resource_manager.py,sha256=Qv4o-KPKoiEfpyR-bLZgceBWaoQYoJF0MBDIbwTK9BQ,11364
|
|
545
|
-
infrahub/graphql/mutations/schema.py,sha256=
|
|
547
|
+
infrahub/graphql/mutations/schema.py,sha256=qhwTeELT03rY0k9EkYyE-Ll_reU22GcSFiicTKOgxTM,13649
|
|
546
548
|
infrahub/graphql/mutations/tasks.py,sha256=GsZVSVfBr1NgNPEHY_OHA5Y9tIbimyEcrYE7XsXXwFw,3815
|
|
547
|
-
infrahub/graphql/mutations/webhook.py,sha256=
|
|
549
|
+
infrahub/graphql/mutations/webhook.py,sha256=bg4mscD1ajZda1GYwbZgTVV7L8QRPmFmSFjWHsg4N48,4918
|
|
548
550
|
infrahub/graphql/mutations/node_getter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
549
551
|
infrahub/graphql/mutations/node_getter/by_default_filter.py,sha256=_owbYHXWqJ6x4pyuVQyppZavL3ADlL6Uhp-jmiHOnaw,1257
|
|
550
552
|
infrahub/graphql/mutations/node_getter/by_hfid.py,sha256=txpj4xPeL3eYOB9lRiHEFxxcRf6bb6lyIJnhVCHr3x8,3120
|
|
@@ -559,17 +561,17 @@ infrahub/graphql/queries/internal.py,sha256=pcGLpLrY1fC_HxHNs8NAFjr5FTFzcgRlS1F7
|
|
|
559
561
|
infrahub/graphql/queries/ipam.py,sha256=2DboKHh-VpS8BXZB2V_2fLgWyKIQGJpQKIYs4jWQh6s,5110
|
|
560
562
|
infrahub/graphql/queries/proposed_change.py,sha256=C0bHWiDz-J_MQgdmuap9tIQaFahv-TSXizkcs90FZrU,3083
|
|
561
563
|
infrahub/graphql/queries/relationship.py,sha256=STAZa1Xo5fdMHKdEFLmuw-LDD2mo5qkOfeKLpKwu_30,2584
|
|
562
|
-
infrahub/graphql/queries/resource_manager.py,sha256=
|
|
563
|
-
infrahub/graphql/queries/search.py,sha256=
|
|
564
|
+
infrahub/graphql/queries/resource_manager.py,sha256=u3tsmp_7SnuRZbZoawnLY3u-XLeoC_IlFr4fYadR7O0,15189
|
|
565
|
+
infrahub/graphql/queries/search.py,sha256=22MCNHMHrc0C6MjMSNxzIdnDUug-Gp2NGtO4qPlkxIg,4994
|
|
564
566
|
infrahub/graphql/queries/status.py,sha256=BSCBT4abaswlfh7JZB8mk_rR-6FXIx-wxQA_YwiWvI4,2124
|
|
565
567
|
infrahub/graphql/queries/task.py,sha256=UG9Ur2CH5GOmfyk34ItqAPuCEkqIhdU-G1n6C3iK_lc,3921
|
|
566
568
|
infrahub/graphql/queries/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
567
569
|
infrahub/graphql/queries/diff/tree.py,sha256=QM4y7uQE-bP48bmfpWBfA22mcWEWTTrwZYCxIhBRz8Y,25256
|
|
568
570
|
infrahub/graphql/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
569
|
-
infrahub/graphql/resolvers/ipam.py,sha256=
|
|
570
|
-
infrahub/graphql/resolvers/many_relationship.py,sha256=
|
|
571
|
-
infrahub/graphql/resolvers/resolver.py,sha256=
|
|
572
|
-
infrahub/graphql/resolvers/single_relationship.py,sha256=
|
|
571
|
+
infrahub/graphql/resolvers/ipam.py,sha256=kGrr5X6nseA-N8UCK9Hh2V-U3txyL3wIX7oQYJ7oi-U,17625
|
|
572
|
+
infrahub/graphql/resolvers/many_relationship.py,sha256=ECWGpRUG22kvY6BkxCMNYex_ZaJopuEWgejGHD28wVY,9743
|
|
573
|
+
infrahub/graphql/resolvers/resolver.py,sha256=JABI1vNz88wUEQZtoCPvnyEOKMYGzmZM9v8lBf8pjRQ,12216
|
|
574
|
+
infrahub/graphql/resolvers/single_relationship.py,sha256=VHaZLPWeBmhZRwMEWr6tL-aJfjNPFl4ahr6kEP2gVaM,6373
|
|
573
575
|
infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
|
|
574
576
|
infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
|
|
575
577
|
infrahub/graphql/subscription/graphql_query.py,sha256=U9PwREMghxbuIoGWh3_rV33wKPzDyMILZ8_tuniwukg,2266
|
|
@@ -608,7 +610,7 @@ infrahub/menu/repository.py,sha256=IQpEbQ1u9WiCl7cWCoElEVH_E9qhcLTaTsrf8BWmges,5
|
|
|
608
610
|
infrahub/menu/utils.py,sha256=tkTAeVCTUWgLNvL9QiPwJwys6os1Q92nhigHXxMwyQo,272
|
|
609
611
|
infrahub/message_bus/__init__.py,sha256=MkDavdkUxCAJ_RCohO7cLBAzYTqftcXAI6hVj5FaoiE,3669
|
|
610
612
|
infrahub/message_bus/types.py,sha256=awEghaKn_UQFsx_7t1m_Gqh97VL5NSpZHHgU5ONrRBM,4535
|
|
611
|
-
infrahub/message_bus/messages/__init__.py,sha256
|
|
613
|
+
infrahub/message_bus/messages/__init__.py,sha256=trni-jbzHbKbUKrhF9pIvVNDARZlFhSv4tHdV2BFrO8,1352
|
|
612
614
|
infrahub/message_bus/messages/git_file_get.py,sha256=YoLJzkpNOIInhfVdTUCPEA_xf5LUZ09BRXDTDy8ZiVE,967
|
|
613
615
|
infrahub/message_bus/messages/git_repository_connectivity.py,sha256=O_x2EOXI9fhVQtz4nuQrRC3VB8FE6HOuAxcltImSF38,813
|
|
614
616
|
infrahub/message_bus/messages/refresh_git_fetch.py,sha256=LlxUse_N6HdoCbFEfnTETx6MuZDi0sjWFTj_BztnYpI,719
|
|
@@ -660,20 +662,20 @@ infrahub/prefect_server/database.py,sha256=v-uti6O__lK51zG_ICq8Drj8j7XlrkRZNZouR
|
|
|
660
662
|
infrahub/prefect_server/events.py,sha256=My0DSsjTENx7-L7_NxxKsBakoOElp95is4-yanS_SkI,869
|
|
661
663
|
infrahub/prefect_server/models.py,sha256=InAW7UrC1oASB-EqgpXQtdWnLZJ-Q93ezGUdLJD7nis,1203
|
|
662
664
|
infrahub/profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
663
|
-
infrahub/profiles/node_applier.py,sha256=
|
|
665
|
+
infrahub/profiles/node_applier.py,sha256=3hdDakRN-xGPJfzI8L_U2v7zIeCQxXHfB3sMWsqFynk,4753
|
|
664
666
|
infrahub/profiles/tasks.py,sha256=qDzCYKGW_8RZ17VlsZOYoAwWHqhNBoGeXl1k9a9fqhA,1538
|
|
665
667
|
infrahub/profiles/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
666
668
|
infrahub/profiles/queries/get_profile_data.py,sha256=pVvQhw18rBNtenwA6lWN8XUMwnTE4U9aHTx5KyFVq1Q,3529
|
|
667
669
|
infrahub/proposed_change/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
668
670
|
infrahub/proposed_change/action_checker.py,sha256=FlP5_Kz4kYu1AAAWhlSUVJUiXlkuXBUO8k8XcZq6kGI,7154
|
|
669
671
|
infrahub/proposed_change/approval_revoker.py,sha256=VgI07wpW0zpvLCxJ7F24EypqBZSw5GBgElFYCR68An0,1184
|
|
670
|
-
infrahub/proposed_change/branch_diff.py,sha256=
|
|
672
|
+
infrahub/proposed_change/branch_diff.py,sha256=cDKlmW8Vi5oWLt3FPSozM4fIwJEBDgnYF0zkYaktqG0,2363
|
|
671
673
|
infrahub/proposed_change/checker.py,sha256=ZhNEVJKsQbHH2UE1O35MfOVa8cK1QGEqGyn6MsOuqSQ,1558
|
|
672
674
|
infrahub/proposed_change/constants.py,sha256=auifG94Oo2cJ4RwZx4P-XDPDpKYPtEVxh013KPfiEdU,2080
|
|
673
675
|
infrahub/proposed_change/models.py,sha256=ivWJmEAihprKmwgaBGDJ4Koq4ETciE5GfDp86KHDnns,5892
|
|
674
|
-
infrahub/proposed_change/tasks.py,sha256=
|
|
676
|
+
infrahub/proposed_change/tasks.py,sha256=htnuLBc-J-R248XvKt10O2ELynTwk0bwUsyRnPJtm84,66710
|
|
675
677
|
infrahub/repositories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
676
|
-
infrahub/repositories/create_repository.py,sha256=
|
|
678
|
+
infrahub/repositories/create_repository.py,sha256=VaxUy35qok8xo7SCMDIl_C0KzAam7ZuqoJyEdDb39Ag,4659
|
|
677
679
|
infrahub/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
678
680
|
infrahub/schema/tasks.py,sha256=vEaWWksqrfwwCAIgPxscVU81W9PIxODX552Rtkte1Cs,947
|
|
679
681
|
infrahub/schema/triggers.py,sha256=LfvNorh2rFit-d8ip_ZoHvBL0D8ZlwH6BPduCp9uc5M,874
|
|
@@ -702,8 +704,8 @@ infrahub/services/adapters/workflow/worker.py,sha256=bg3Jw-8JrzdWs6qdW1klJqOQKq-
|
|
|
702
704
|
infrahub/task_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
703
705
|
infrahub/task_manager/constants.py,sha256=1t1BZRa8_y89gIDPNHzIbRKo63nHOP37-r5OvtHa56c,559
|
|
704
706
|
infrahub/task_manager/event.py,sha256=AVzfTt_jcsL9XgtMDEnhrb7w0xeZ84wB4ZNK2P3g4JA,14127
|
|
705
|
-
infrahub/task_manager/models.py,sha256=
|
|
706
|
-
infrahub/task_manager/task.py,sha256=
|
|
707
|
+
infrahub/task_manager/models.py,sha256=MBX4sykBu2iwn-raC64njGSw97Dpr6N96ps0BvgV9Ng,8932
|
|
708
|
+
infrahub/task_manager/task.py,sha256=MQvpW1fGSUdaHHueOg24QHqj2E99736sISD07v9wL-U,16268
|
|
707
709
|
infrahub/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
708
710
|
infrahub/tasks/artifact.py,sha256=q1MyQAbT77pD-pm8StHsF_JlTpEQreNc51JHJfnsTD4,1958
|
|
709
711
|
infrahub/tasks/check.py,sha256=37n1U1Knb3AV6kz2sw_IabL9pnlqceLVICWf9GdSxZE,687
|
|
@@ -726,11 +728,11 @@ infrahub/trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
726
728
|
infrahub/trigger/catalogue.py,sha256=62WmN3waxVGBLgcGIygcxLwA7HWk4ffbm2WQPgdimiE,976
|
|
727
729
|
infrahub/trigger/constants.py,sha256=u9_5A6gIUIrprzfEdwseYk2yTkwU0VPCjZTwL8b3T6s,22
|
|
728
730
|
infrahub/trigger/models.py,sha256=FqSvolmtJC9ChUTqgW7eeMXubWoHXnHWkGnDQ-MnsoE,8232
|
|
729
|
-
infrahub/trigger/setup.py,sha256=
|
|
731
|
+
infrahub/trigger/setup.py,sha256=NnEAE-GXqG5bmbxn5f023YDGuAbKSWR1Fe4fdY-N-7s,7755
|
|
730
732
|
infrahub/trigger/tasks.py,sha256=b_tdEKYpWYkDnv3m7cfwH5JanZdMBhro4Lzf0LV8_RI,1871
|
|
731
733
|
infrahub/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
732
734
|
infrahub/validators/events.py,sha256=5K5ACh7KaiRLJSdL3BGtL_3EtT63b8QR4H-4_9fB4ck,1550
|
|
733
|
-
infrahub/validators/tasks.py,sha256=
|
|
735
|
+
infrahub/validators/tasks.py,sha256=hR1DE1WsreiC2DhxOhV7U6qWrg_NqTrC8Y3sY54a6og,1380
|
|
734
736
|
infrahub/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
735
737
|
infrahub/webhook/gather.py,sha256=XNaIGiHDiMjjtSjsVbswOze7cLaL0MKJmvSbZBS-WT0,691
|
|
736
738
|
infrahub/webhook/models.py,sha256=GByXkZ2tAgtAJGjlfBRhvUneD7Btq8yHBC0HH8yIhR8,10487
|
|
@@ -738,7 +740,7 @@ infrahub/webhook/tasks.py,sha256=2msOOqqFStQbNje7Eq0glAdlprs-ASHii3qQXFIEyzE,725
|
|
|
738
740
|
infrahub/webhook/triggers.py,sha256=v1dzFV4wX0GO2n5hft_qzp-oJOA2P_9Q2eTcSP-i0pk,1574
|
|
739
741
|
infrahub/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
740
742
|
infrahub/workers/dependencies.py,sha256=454lvLnuV-siXUIIllPy2AM7U3IUDOWcTGqLNuCcIso,5271
|
|
741
|
-
infrahub/workers/infrahub_async.py,sha256=
|
|
743
|
+
infrahub/workers/infrahub_async.py,sha256=vTyMoI1h0caA9MahLc9edJG1rfnpqKKxGtJHKkR3tuE,10237
|
|
742
744
|
infrahub/workers/utils.py,sha256=m6FOKrYo53Aoj-JcEyQ7-J4Dc20R9JtHMDzTcqXiRpg,2407
|
|
743
745
|
infrahub/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
744
746
|
infrahub/workflows/catalogue.py,sha256=6IQadjuXIgGkmLGMQBdo0WUjXiU-RGPyrouNyfhM13Q,21496
|
|
@@ -753,13 +755,13 @@ infrahub_sdk/async_typer.py,sha256=gCE-ouMJa-qqf3eze6_z8Wi6mkc6ZeoJFm0vsz0JXaU,9
|
|
|
753
755
|
infrahub_sdk/batch.py,sha256=ScRlNyU2OWuflqk0NjSghtdWigxFSLXZFfH_YX3qnak,3811
|
|
754
756
|
infrahub_sdk/branch.py,sha256=Bub4CT4J52uBK3U7k5RqJENGKWw66d74XaqVkf_rpsg,13057
|
|
755
757
|
infrahub_sdk/checks.py,sha256=aJ4aCde9rMdCK4nl-fSF2rM__I1MkCVBcyiqlgRwDTw,5715
|
|
756
|
-
infrahub_sdk/client.py,sha256=
|
|
758
|
+
infrahub_sdk/client.py,sha256=_gb6ytKaBiix33iGzfWCsihOOpjYPCif6FHb2qpM7UA,114097
|
|
757
759
|
infrahub_sdk/config.py,sha256=jcDEQFoCPjxDOvpR6bKiTc8MZK6XTTGWmaRvpBT-BNw,8882
|
|
758
760
|
infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
|
|
759
761
|
infrahub_sdk/context.py,sha256=QgXZvtUrKolp6ML8TguVK87Wuu-3KyizZVV_N2F4oCw,400
|
|
760
762
|
infrahub_sdk/convert_object_type.py,sha256=HPwhlQhmPUSLtfC1RqFo9fsCvfdBgJyVrvgjkSOf5MM,2383
|
|
761
763
|
infrahub_sdk/data.py,sha256=4d8Fd1s7lTeOu8JWXsK2m2BM8t_5HG0Z73fnCZGc7Pc,841
|
|
762
|
-
infrahub_sdk/diff.py,sha256=
|
|
764
|
+
infrahub_sdk/diff.py,sha256=WtzmmZxgM8_JdE49W39A8-9hxytZ-_Iw0l2f51jyZEs,6380
|
|
763
765
|
infrahub_sdk/exceptions.py,sha256=wDSzuhySINDrWHS0qpxUhYEu7YUlTfrOOIRxZkm2jgI,5970
|
|
764
766
|
infrahub_sdk/generator.py,sha256=Sr8Ar1dM08SqmxqFYOrM0DPJmBxKhb_2WHR4SOnMZdE,3710
|
|
765
767
|
infrahub_sdk/groups.py,sha256=GL14ByW4GHrkqOLJ-_vGhu6bkYDxljqPtkErcQVehv0,711
|
|
@@ -768,59 +770,61 @@ infrahub_sdk/object_store.py,sha256=hL3WgpQewrhAZJ7iCRWQoseP18y80NtljBNLSHId6HI,
|
|
|
768
770
|
infrahub_sdk/operation.py,sha256=-GszX7cfPHrw4SJbBs4KN0cGOtPdE1APNWxlbgMaHuQ,2747
|
|
769
771
|
infrahub_sdk/playback.py,sha256=obAPYDO_3v6EN0aBDllI0T_5lPnCv_Mo3GYHR4Eczs8,1878
|
|
770
772
|
infrahub_sdk/protocols.py,sha256=-tMWGEQCyd7aC16OV1vhZJvLJ29LizuYSSICuWeI6h0,25381
|
|
771
|
-
infrahub_sdk/protocols_base.py,sha256=
|
|
773
|
+
infrahub_sdk/protocols_base.py,sha256=kF8RxX9FVv2RSmpoj8rdePg5YuD1YmJnn9hYDIaNfqw,5588
|
|
772
774
|
infrahub_sdk/queries.py,sha256=s4gnx67e-MNg-3jP4Vx1jreO9uiW3uYPllFQgaTODdQ,2308
|
|
773
775
|
infrahub_sdk/query_groups.py,sha256=TWd1Y3cwXV6Q-lFz6Dii7vEq-qeGP4UADdVSExmiQjI,10543
|
|
774
776
|
infrahub_sdk/recorder.py,sha256=_NPtSLX3-Dam6BHt7daLzv-IAVxvU-35GIGu7YtA08Y,2285
|
|
775
777
|
infrahub_sdk/repository.py,sha256=B9KWx2lVkMIZ-3RaVO9J9Sc8LXmVPxUVbBoL-jeMyXE,981
|
|
776
778
|
infrahub_sdk/store.py,sha256=rmTNiAZFebi3I_NOnErhZswZPMrUJrkfu81PHf5aOlE,14091
|
|
777
|
-
infrahub_sdk/timestamp.py,sha256=
|
|
779
|
+
infrahub_sdk/timestamp.py,sha256=PqzBiMdPXnbbpTRinhDnm_JG3sgWpu-D1uJ9mJ5mTuo,6445
|
|
778
780
|
infrahub_sdk/topological_sort.py,sha256=RqIGYxHlqOUHvMSAxbq6658TYLaEIdrFP4wyK3Hva5w,2456
|
|
779
781
|
infrahub_sdk/transforms.py,sha256=rClBQnaSuozz2bS-d5iJgnAjQF1FqYfX3Yc6iTH3b3Q,2348
|
|
780
782
|
infrahub_sdk/types.py,sha256=PIHTtI4MxgiAHHml_gCRyanLb5x7O4HK1pACRC3b88Q,1713
|
|
781
783
|
infrahub_sdk/utils.py,sha256=PwmAMe7CLQH6dIudrq4ZiLuOgqxn-Au2rNj0ZAU1Fwo,11924
|
|
782
784
|
infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
|
|
783
785
|
infrahub_sdk/yaml.py,sha256=PRsS7BEM-Xn5wRLAAG-YLTGRBEJy5Dnyim2YskFfe8I,5539
|
|
786
|
+
infrahub_sdk/ctl/AGENTS.md,sha256=vwsOzwGKd6R8dklsUtI9kq1C_Ecv4AGaUC_DVG1RNUo,1827
|
|
784
787
|
infrahub_sdk/ctl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
785
|
-
infrahub_sdk/ctl/branch.py,sha256=
|
|
786
|
-
infrahub_sdk/ctl/check.py,sha256=
|
|
788
|
+
infrahub_sdk/ctl/branch.py,sha256=nENLPHGAhnWLV_TLO9N_cD5evkA6Z8-C_oab1upYEYw,11420
|
|
789
|
+
infrahub_sdk/ctl/check.py,sha256=SDsPdM8oesfbwCiYG_60zFgtZMamEtgZkmvW2MxH408,7874
|
|
787
790
|
infrahub_sdk/ctl/cli.py,sha256=ufJwB4XacU2hnaZtGp9hcyf_heYx-dtowFE4eUzw2qE,293
|
|
788
|
-
infrahub_sdk/ctl/cli_commands.py,sha256=
|
|
791
|
+
infrahub_sdk/ctl/cli_commands.py,sha256=up6V_nrIya5grK2fXFrV92W3AxzEmLW31RaXYo4cdjA,18840
|
|
789
792
|
infrahub_sdk/ctl/client.py,sha256=6bmXmQta9qQCJ8HybQwt2uSF2X1Em91xNFpwiKFujxs,2083
|
|
790
793
|
infrahub_sdk/ctl/config.py,sha256=aZ_Dhe5uxH1AzTWUz3EN645I2fflRsqAULJr20E3Ki8,3176
|
|
791
794
|
infrahub_sdk/ctl/exceptions.py,sha256=02qfqdck_TP8CHZe4z8XNEIXMoDmJ0KjF_f0_7HYDrg,280
|
|
792
795
|
infrahub_sdk/ctl/exporter.py,sha256=CmqyKpf7q5Pu5Wfo_2HktiF12iD_3rJ9Ifb48BIoJdU,1876
|
|
793
|
-
infrahub_sdk/ctl/generator.py,sha256=
|
|
794
|
-
infrahub_sdk/ctl/graphql.py,sha256=
|
|
795
|
-
infrahub_sdk/ctl/importer.py,sha256=
|
|
796
|
+
infrahub_sdk/ctl/generator.py,sha256=S3yM_Ur8xs8_f3CUMOIOOItnHTgPLfwEVAWHGtf1Kl8,4592
|
|
797
|
+
infrahub_sdk/ctl/graphql.py,sha256=E2jO8wrGN-1fuP_V0yJXHc5LA3UQZNr-1Iw7lzd4SfA,6648
|
|
798
|
+
infrahub_sdk/ctl/importer.py,sha256=BO8uMNz57HfWRZqO9rnvhPXyOcSJ97Uj0qH-L4UuY2Y,1871
|
|
796
799
|
infrahub_sdk/ctl/menu.py,sha256=A0NHvu48qbo9aWYNc3nGMNMeXr4LnOr_HNKL5arBWNA,2690
|
|
797
800
|
infrahub_sdk/ctl/object.py,sha256=OEbAx0Yb0zbXxS2ZnXedZRZDHITQd3iAk_cWUlTHLvg,2706
|
|
798
801
|
infrahub_sdk/ctl/parameters.py,sha256=aU2H41svfG309m2WdH6R9H5xgQ4gevn3ItOu5ltuVas,413
|
|
799
802
|
infrahub_sdk/ctl/render.py,sha256=zrIz_KXq3QafgNiqqNeYt2JtD2PGOa0D5ujW6NqZdz8,1948
|
|
800
|
-
infrahub_sdk/ctl/repository.py,sha256=
|
|
803
|
+
infrahub_sdk/ctl/repository.py,sha256=l-VeO4K0nKC6Wxd0f5x_dwKJGv6HeBBC4-CRPXO5NgA,6611
|
|
801
804
|
infrahub_sdk/ctl/schema.py,sha256=CAq9OSkR1sMRSb-GclFR-dpbyxyRn8qfVeec2gqtc1Q,8099
|
|
802
|
-
infrahub_sdk/ctl/task.py,sha256=
|
|
805
|
+
infrahub_sdk/ctl/task.py,sha256=tpNA1zf73qKxfCzchcvK9TJrLvVP84Wb_xrvryTM6FU,3376
|
|
803
806
|
infrahub_sdk/ctl/transform.py,sha256=5qRqiKeEefs0rda6RAFAAj1jkCKdbPYE_t8O-n436LQ,414
|
|
804
|
-
infrahub_sdk/ctl/utils.py,sha256=
|
|
805
|
-
infrahub_sdk/ctl/validate.py,sha256=
|
|
807
|
+
infrahub_sdk/ctl/utils.py,sha256=OB9YTPM0W7Dx5ZTh0OH6Jn1yNYbYfP2wEIEKnGktcCs,7515
|
|
808
|
+
infrahub_sdk/ctl/validate.py,sha256=r8b84oWJJVS3ipzDsjyAx1B3U_1509ReK3QTSXkG9pw,3910
|
|
806
809
|
infrahub_sdk/graphql/__init__.py,sha256=cviPynthQYVJb3eMca2avfRWYYlIBMKYi7-Tn9c0cQI,329
|
|
807
|
-
infrahub_sdk/graphql/constants.py,sha256=
|
|
810
|
+
infrahub_sdk/graphql/constants.py,sha256=VcPJDeQh3r2AX3a5W-Vji6tRBtCqkEClUvQUtBoRPXk,323
|
|
808
811
|
infrahub_sdk/graphql/plugin.py,sha256=0-lR88aPa798lvVPGmqKKc9mrKR3otaxyPMhwlgwoK4,3161
|
|
809
812
|
infrahub_sdk/graphql/query.py,sha256=UtakHUwenYIUEioBtEKHAXKnExfLIsuuLMdtEpCOAN8,2267
|
|
810
|
-
infrahub_sdk/graphql/renderers.py,sha256=
|
|
813
|
+
infrahub_sdk/graphql/renderers.py,sha256=1TZJaqfv-eD6WYxx6ATcKmKEmHTlmFXf89G49uRVTd8,8681
|
|
811
814
|
infrahub_sdk/graphql/utils.py,sha256=eS6Sg0n7DsS4DZ3Lcfy7ytmd9Dy7AWkNXIdSICV0kGQ,1460
|
|
812
815
|
infrahub_sdk/node/__init__.py,sha256=clAUZ9lNVPFguelR5Sg9PzklAZruTKEm2xk-BaO68l8,1262
|
|
813
|
-
infrahub_sdk/node/attribute.py,sha256=
|
|
814
|
-
infrahub_sdk/node/constants.py,sha256=
|
|
815
|
-
infrahub_sdk/node/node.py,sha256=
|
|
816
|
+
infrahub_sdk/node/attribute.py,sha256=m2DZGSNgjTGiquItVy0timLOa3dUv5Z0lY1M7lMFWy8,4572
|
|
817
|
+
infrahub_sdk/node/constants.py,sha256=gxdHgFALm0lH-gEdM2QCfUPREUl8AZEESCu_rM47608,850
|
|
818
|
+
infrahub_sdk/node/node.py,sha256=MOEkIeK0o1n3MtBXfsyOg-hDZFqqX14EZojduqd7Nu0,89781
|
|
816
819
|
infrahub_sdk/node/parsers.py,sha256=sLDdT6neoYSZIjOCmq8Bgd0LK8FFoasjvJLuSz0whSU,543
|
|
817
820
|
infrahub_sdk/node/property.py,sha256=IjMQH4zCX1Y_bg0_H6X0PJwQb5VMJLuaOnqARmesCho,736
|
|
818
|
-
infrahub_sdk/node/related_node.py,sha256=
|
|
819
|
-
infrahub_sdk/node/relationship.py,sha256=
|
|
821
|
+
infrahub_sdk/node/related_node.py,sha256=rlrIp_gK1VyJ7u7rzUEIbepCPAv_5Vt8B5tAMvTcNAg,10094
|
|
822
|
+
infrahub_sdk/node/relationship.py,sha256=qTiSS65IgqqBL80a-ENIxJNhe6DjTlHlAw51QNuEyAw,13261
|
|
820
823
|
infrahub_sdk/protocols_generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
821
824
|
infrahub_sdk/protocols_generator/constants.py,sha256=8y5L7aqxhez6_10Cl2zUfNlHJCCosIVnxrOPKrwNVEw,820
|
|
822
825
|
infrahub_sdk/protocols_generator/generator.py,sha256=-VeWwZeqkhlg7aUnRkjGGqNHMrDandH0jHwVO6sNepg,5272
|
|
823
826
|
infrahub_sdk/protocols_generator/template.j2,sha256=cm2wsKXHXOiW7N_byxnE2vLnn8gHQ99rs56qVquTTDw,3722
|
|
827
|
+
infrahub_sdk/pytest_plugin/AGENTS.md,sha256=U8WYCFE4gf6xqYoU30PPnVOWu7Mo4CsfC-U33aOsde0,1790
|
|
824
828
|
infrahub_sdk/pytest_plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
825
829
|
infrahub_sdk/pytest_plugin/exceptions.py,sha256=CZTpfuVkeSrJPFDf62uQrd2CCW2A8ktcF5L_4INrzAI,2257
|
|
826
830
|
infrahub_sdk/pytest_plugin/loader.py,sha256=x9sOKGYQeDewx_y5RlGPF2C-ZV44eolfC0c6BOjDAug,4248
|
|
@@ -833,7 +837,7 @@ infrahub_sdk/pytest_plugin/items/check.py,sha256=ISK0Niae1hSvsKOZboOKJd6HUZGh8bl
|
|
|
833
837
|
infrahub_sdk/pytest_plugin/items/graphql_query.py,sha256=_OdF5BosbvAuH0b8-CiAFmcYpXGA_Ssnuvb1X6oX9GA,2353
|
|
834
838
|
infrahub_sdk/pytest_plugin/items/jinja2_transform.py,sha256=sHP_cGJ2wXeDT1nQLFv6DiM6bgJrs3OJe2_SaThx6yQ,4710
|
|
835
839
|
infrahub_sdk/pytest_plugin/items/python_transform.py,sha256=Qe5QcCeeXzSoKs6C20XVdgYRvm9ide5lFTCShzJDTVo,4183
|
|
836
|
-
infrahub_sdk/schema/__init__.py,sha256=
|
|
840
|
+
infrahub_sdk/schema/__init__.py,sha256=tX_Pq6L2dAsTWmEomoXtFj8NE-arSetBFx8BvtQ8Q0k,31132
|
|
837
841
|
infrahub_sdk/schema/main.py,sha256=Qz3J82G0tBwFwcvLul_Wn-75g3PFNYKCHpkp4I_lJuQ,12206
|
|
838
842
|
infrahub_sdk/schema/repository.py,sha256=3rFNlFqlUebnSaDSBiR2058DrEjnpvbrII46VIDkQyc,12568
|
|
839
843
|
infrahub_sdk/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -872,7 +876,7 @@ infrahub_sdk/transfer/importer/interface.py,sha256=TN7FH_LgThkBjrpWwkdTZIVJPtNkl
|
|
|
872
876
|
infrahub_sdk/transfer/importer/json.py,sha256=reZncjpeANRhgk6tZCeAlvD159jnfhV6W9QTtkySKUM,9685
|
|
873
877
|
infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
|
|
874
878
|
infrahub_testcontainers/constants.py,sha256=mZ4hLvcf4rKk9wC7EId4MQxAY0sk4V99deB04N0J2bg,85
|
|
875
|
-
infrahub_testcontainers/container.py,sha256=
|
|
879
|
+
infrahub_testcontainers/container.py,sha256=sQyyONsTrJufE-FD8_lTnHwxHm18k61VGG9vQIiaSwc,25346
|
|
876
880
|
infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=r1InyFOb4AF9-WCBJh2KI4vwq_SiCHKagjgUF4rOJFs,15111
|
|
877
881
|
infrahub_testcontainers/docker-compose.test.yml,sha256=NGh2ZRgHHHblfz0IqsDaF-3DQZobZrRaYQm-mTMnHlc,11509
|
|
878
882
|
infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTMFZJsnk,1305
|
|
@@ -883,8 +887,8 @@ infrahub_testcontainers/models.py,sha256=hT7WEX2o7gxTFPE9uhtP5yigKgP5YSsy2c3tFB-
|
|
|
883
887
|
infrahub_testcontainers/performance_test.py,sha256=_nf7Uk15mHwqpN4y7XUfI4JI54-UaXW-Yu4uwMIx21w,6185
|
|
884
888
|
infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
|
|
885
889
|
infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
|
|
886
|
-
infrahub_server-1.6.
|
|
887
|
-
infrahub_server-1.6.
|
|
888
|
-
infrahub_server-1.6.
|
|
889
|
-
infrahub_server-1.6.
|
|
890
|
-
infrahub_server-1.6.
|
|
890
|
+
infrahub_server-1.6.1.dist-info/METADATA,sha256=VB7CaatQzYcU337oiEq4fAs6P_tOohGrNzOs0q0HGG0,5898
|
|
891
|
+
infrahub_server-1.6.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
892
|
+
infrahub_server-1.6.1.dist-info/entry_points.txt,sha256=_xSAw1Wp-GslD95j4FESCxU1H7G7B9b42zp8-LAmC8Q,406
|
|
893
|
+
infrahub_server-1.6.1.dist-info/licenses/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
|
|
894
|
+
infrahub_server-1.6.1.dist-info/RECORD,,
|
|
@@ -33,7 +33,7 @@ PROJECT_ENV_VARIABLES: dict[str, str] = {
|
|
|
33
33
|
"MESSAGE_QUEUE_DOCKER_IMAGE": "rabbitmq:3.13.7-management",
|
|
34
34
|
"CACHE_DOCKER_IMAGE": "redis:7.2.11",
|
|
35
35
|
"INFRAHUB_TESTING_DOCKER_IMAGE": "registry.opsmill.io/opsmill/infrahub",
|
|
36
|
-
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', 4)} --logger-class infrahub.serve.log.GunicornLogger infrahub.server:app", # noqa: E501
|
|
36
|
+
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', '4')} --logger-class infrahub.serve.log.GunicornLogger infrahub.server:app", # noqa: E501
|
|
37
37
|
"INFRAHUB_TESTING_IMAGE_VERSION": infrahub_version,
|
|
38
38
|
"INFRAHUB_TESTING_PRODUCTION": "false",
|
|
39
39
|
"INFRAHUB_TESTING_DB_ADDRESS": "database",
|
|
@@ -149,7 +149,7 @@ class InfrahubDockerCompose(DockerCompose):
|
|
|
149
149
|
PROJECT_ENV_VARIABLES.update(
|
|
150
150
|
{
|
|
151
151
|
"INFRAHUB_TESTING_DOCKER_IMAGE": "registry.opsmill.io/opsmill/infrahub-enterprise",
|
|
152
|
-
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config community/backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', 4)} --logger-class infrahub.serve.log.GunicornLogger infrahub_enterprise.server:app", # noqa: E501
|
|
152
|
+
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config community/backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', '4')} --logger-class infrahub.serve.log.GunicornLogger infrahub_enterprise.server:app", # noqa: E501
|
|
153
153
|
"INFRAHUB_TESTING_WORKFLOW_DEFAULT_WORKER_TYPE": "infrahubentasync",
|
|
154
154
|
"INFRAHUB_TESTING_PREFECT_UI_ENABLED": "false",
|
|
155
155
|
"NEO4J_DOCKER_IMAGE": "neo4j:2025.03.0-enterprise",
|
|
File without changes
|
|
File without changes
|