infrahub-server 1.5.0b1__py3-none-any.whl → 1.5.0b2__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/internal.py +2 -0
- infrahub/api/oauth2.py +13 -19
- infrahub/api/oidc.py +15 -21
- infrahub/api/schema.py +24 -3
- infrahub/artifacts/models.py +2 -1
- infrahub/auth.py +137 -3
- infrahub/cli/__init__.py +2 -0
- infrahub/cli/db.py +83 -102
- infrahub/cli/dev.py +118 -0
- infrahub/cli/tasks.py +46 -0
- infrahub/cli/upgrade.py +30 -3
- infrahub/computed_attribute/tasks.py +20 -8
- infrahub/core/attribute.py +10 -2
- infrahub/core/branch/enums.py +1 -1
- infrahub/core/branch/models.py +7 -3
- infrahub/core/branch/tasks.py +68 -7
- infrahub/core/constants/__init__.py +3 -0
- infrahub/core/diff/query/artifact.py +1 -0
- infrahub/core/diff/query/field_summary.py +1 -0
- infrahub/core/graph/__init__.py +1 -1
- infrahub/core/initialization.py +5 -2
- infrahub/core/migrations/__init__.py +3 -0
- infrahub/core/migrations/exceptions.py +4 -0
- infrahub/core/migrations/graph/__init__.py +10 -13
- infrahub/core/migrations/graph/load_schema_branch.py +21 -0
- infrahub/core/migrations/graph/m013_convert_git_password_credential.py +1 -1
- infrahub/core/migrations/graph/m040_duplicated_attributes.py +81 -0
- infrahub/core/migrations/graph/m041_profile_attrs_in_db.py +145 -0
- infrahub/core/migrations/graph/m042_create_hfid_display_label_in_db.py +164 -0
- infrahub/core/migrations/graph/m043_backfill_hfid_display_label_in_db.py +866 -0
- infrahub/core/migrations/query/__init__.py +7 -8
- infrahub/core/migrations/query/attribute_add.py +8 -6
- infrahub/core/migrations/query/attribute_remove.py +134 -0
- infrahub/core/migrations/runner.py +54 -0
- infrahub/core/migrations/schema/attribute_kind_update.py +9 -3
- infrahub/core/migrations/schema/attribute_supports_profile.py +90 -0
- infrahub/core/migrations/schema/node_attribute_add.py +30 -2
- infrahub/core/migrations/schema/node_attribute_remove.py +13 -109
- infrahub/core/migrations/schema/node_kind_update.py +2 -1
- infrahub/core/migrations/schema/node_remove.py +2 -1
- infrahub/core/migrations/schema/placeholder_dummy.py +3 -2
- infrahub/core/migrations/shared.py +48 -14
- infrahub/core/node/__init__.py +16 -11
- infrahub/core/node/create.py +46 -63
- infrahub/core/node/lock_utils.py +70 -44
- infrahub/core/node/resource_manager/ip_address_pool.py +2 -1
- infrahub/core/node/resource_manager/ip_prefix_pool.py +2 -1
- infrahub/core/node/resource_manager/number_pool.py +2 -1
- infrahub/core/query/attribute.py +55 -0
- infrahub/core/query/ipam.py +1 -0
- infrahub/core/query/node.py +9 -3
- infrahub/core/query/relationship.py +1 -0
- infrahub/core/schema/__init__.py +56 -0
- infrahub/core/schema/attribute_schema.py +4 -0
- infrahub/core/schema/definitions/internal.py +2 -2
- infrahub/core/schema/generated/attribute_schema.py +2 -2
- infrahub/core/schema/manager.py +22 -1
- infrahub/core/schema/schema_branch.py +180 -22
- infrahub/database/graph.py +21 -0
- infrahub/display_labels/tasks.py +13 -7
- infrahub/events/branch_action.py +27 -1
- infrahub/generators/tasks.py +3 -7
- infrahub/git/base.py +4 -1
- infrahub/git/integrator.py +1 -1
- infrahub/git/models.py +2 -1
- infrahub/git/repository.py +22 -5
- infrahub/git/tasks.py +66 -10
- infrahub/git/utils.py +123 -1
- infrahub/graphql/api/endpoints.py +14 -4
- infrahub/graphql/manager.py +4 -9
- infrahub/graphql/mutations/convert_object_type.py +11 -1
- infrahub/graphql/mutations/display_label.py +17 -10
- infrahub/graphql/mutations/hfid.py +17 -10
- infrahub/graphql/mutations/ipam.py +54 -35
- infrahub/graphql/mutations/main.py +27 -28
- infrahub/graphql/schema_sort.py +170 -0
- infrahub/graphql/types/branch.py +4 -1
- infrahub/graphql/types/enums.py +3 -0
- infrahub/hfid/tasks.py +13 -7
- infrahub/lock.py +52 -12
- infrahub/message_bus/types.py +2 -1
- infrahub/permissions/constants.py +2 -0
- infrahub/proposed_change/tasks.py +25 -16
- infrahub/server.py +6 -2
- infrahub/services/__init__.py +2 -2
- infrahub/services/adapters/http/__init__.py +5 -0
- infrahub/services/adapters/workflow/worker.py +14 -3
- infrahub/task_manager/event.py +5 -0
- infrahub/task_manager/models.py +7 -0
- infrahub/task_manager/task.py +73 -0
- infrahub/trigger/setup.py +13 -4
- infrahub/trigger/tasks.py +3 -0
- infrahub/workers/dependencies.py +10 -1
- infrahub/workers/infrahub_async.py +10 -2
- infrahub/workflows/catalogue.py +8 -0
- infrahub/workflows/initialization.py +5 -0
- infrahub/workflows/utils.py +2 -1
- infrahub_sdk/client.py +13 -10
- infrahub_sdk/config.py +29 -2
- infrahub_sdk/ctl/schema.py +22 -7
- infrahub_sdk/schema/__init__.py +32 -4
- infrahub_sdk/spec/models.py +7 -0
- infrahub_sdk/spec/object.py +37 -102
- infrahub_sdk/spec/processors/__init__.py +0 -0
- infrahub_sdk/spec/processors/data_processor.py +10 -0
- infrahub_sdk/spec/processors/factory.py +34 -0
- infrahub_sdk/spec/processors/range_expand_processor.py +56 -0
- {infrahub_server-1.5.0b1.dist-info → infrahub_server-1.5.0b2.dist-info}/METADATA +3 -1
- {infrahub_server-1.5.0b1.dist-info → infrahub_server-1.5.0b2.dist-info}/RECORD +115 -101
- infrahub_testcontainers/container.py +114 -2
- infrahub_testcontainers/docker-compose-cluster.test.yml +5 -0
- infrahub_testcontainers/docker-compose.test.yml +5 -0
- infrahub/core/migrations/graph/m040_profile_attrs_in_db.py +0 -166
- infrahub/core/migrations/graph/m041_create_hfid_display_label_in_db.py +0 -97
- infrahub/core/migrations/graph/m042_backfill_hfid_display_label_in_db.py +0 -86
- {infrahub_server-1.5.0b1.dist-info → infrahub_server-1.5.0b2.dist-info}/LICENSE.txt +0 -0
- {infrahub_server-1.5.0b1.dist-info → infrahub_server-1.5.0b2.dist-info}/WHEEL +0 -0
- {infrahub_server-1.5.0b1.dist-info → infrahub_server-1.5.0b2.dist-info}/entry_points.txt +0 -0
|
@@ -17,44 +17,45 @@ infrahub/api/diff/validation_models.py,sha256=tiE2FSq8DbK0W17Ra_HWaHqgr67bRWi8D2
|
|
|
17
17
|
infrahub/api/exception_handlers.py,sha256=o1gRUbC7MBuygGFq7eyTRejXHM0ZIKt76RRwV4nmUN0,904
|
|
18
18
|
infrahub/api/exceptions.py,sha256=EjTAN2wawBRyxMWgmafdk2CUdmzAqNokP3QNobifQQI,291
|
|
19
19
|
infrahub/api/file.py,sha256=FnjXkQdSBThnNNYk8CMboEx_935pR1U6aHT0jxA0AdU,2258
|
|
20
|
-
infrahub/api/internal.py,sha256=
|
|
20
|
+
infrahub/api/internal.py,sha256=KIcetkvLGgIqwjUHyuxReXDl46leU5a_4CmbKxbusNs,5375
|
|
21
21
|
infrahub/api/menu.py,sha256=xp5bj5JXQZA6ZEPWoTSGGSfTXZ1sVmehMxr3VSG7FlQ,1216
|
|
22
|
-
infrahub/api/oauth2.py,sha256=
|
|
23
|
-
infrahub/api/oidc.py,sha256=
|
|
22
|
+
infrahub/api/oauth2.py,sha256=5CnhMhu-URhJN5GBkeRQg5IBqTg0F_cZT3N-C2t01-4,5471
|
|
23
|
+
infrahub/api/oidc.py,sha256=MYYUUnfFOW6zA4Sw_EoJuvNAwdHb1XRK-sxWTp_rE5s,8345
|
|
24
24
|
infrahub/api/query.py,sha256=l8WinRHzgc97avxUQ-pOOJEz7JAVmbBhFnjY4QzAIak,7464
|
|
25
|
-
infrahub/api/schema.py,sha256=
|
|
25
|
+
infrahub/api/schema.py,sha256=bcF9s4385Rlaqnf5RSrFnPsuvqtsw9IhTDvorK9u5s0,18069
|
|
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
|
|
29
29
|
infrahub/api/storage.py,sha256=yWo7qsDn4SrX89wDsTKOfGTMdWYNsptAdt7Fhfzw1C0,2179
|
|
30
30
|
infrahub/api/transformation.py,sha256=xGTLxh3gvohzpORLZy_MY2ZkUuFtKhVKR4ygWy8RYWg,5932
|
|
31
31
|
infrahub/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
infrahub/artifacts/models.py,sha256=
|
|
32
|
+
infrahub/artifacts/models.py,sha256=P0ehjcj8Nz3WyK08_bJuit62peQBWQv5h0eCXOSgDk0,2241
|
|
33
33
|
infrahub/artifacts/tasks.py,sha256=L2DOSvUB5ezcxLpy5cFKGzkLtNBjkRqo2Igs1n8eRUQ,3487
|
|
34
|
-
infrahub/auth.py,sha256=
|
|
34
|
+
infrahub/auth.py,sha256=aO_AYHVNwsc1zSPvNAMIQHd2rP8pX-bCqUXZsQYPZA4,15489
|
|
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
|
|
38
38
|
infrahub/branch/triggers.py,sha256=4sywoEX79fY2NkaGe6tTHnmytf4k6gXDm2FJHkkRJOw,793
|
|
39
|
-
infrahub/cli/__init__.py,sha256=
|
|
39
|
+
infrahub/cli/__init__.py,sha256=h0vY_rhHMzRWLowKTnDa0UUf4GC_-3MsB7S5nFA2Tc8,4054
|
|
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=
|
|
42
|
+
infrahub/cli/db.py,sha256=DEcg3hztgzBY6JDX5oWgdEJcbf522hdPdw_dHiPnDqE,38340
|
|
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/db_commands/clean_duplicate_schema_fields.py,sha256=qKVIfxBaBDQeROFP0VctAJqhTLVFyi-Zk6VymsWtJm4,8043
|
|
46
|
+
infrahub/cli/dev.py,sha256=k35OIPV1Yz_t-u1Zfoh7oa39L2k6OcOQhBkdFdQzJSQ,3772
|
|
46
47
|
infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
|
|
47
48
|
infrahub/cli/git_agent.py,sha256=ajT9-kdd3xLIysOPe8GqZyCDMkpNyhqfWjBg9HPWVcg,5240
|
|
48
49
|
infrahub/cli/patch.py,sha256=ztOkWyo0l_Wo0WX10bvSqGZibKzowrwx82oi69cjwkY,6018
|
|
49
50
|
infrahub/cli/server.py,sha256=zeKgJE9V0usSMVBwye0sRNNh6Ctj-nSZHqHbNskqyz4,2248
|
|
50
|
-
infrahub/cli/tasks.py,sha256=
|
|
51
|
-
infrahub/cli/upgrade.py,sha256=
|
|
51
|
+
infrahub/cli/tasks.py,sha256=6_2IRd0JCMJV0W9_bF6b-l67dlmBJ5izDtG4YkSaIW0,3364
|
|
52
|
+
infrahub/cli/upgrade.py,sha256=GaipSaJ02ND0Mel9FJZxEIIrAhOElqX3CdJaX-p5YA4,5393
|
|
52
53
|
infrahub/components.py,sha256=lSLDCDwIZoakZ2iBrfHi9c3BxzugMiuiZO6V7Egt6tk,107
|
|
53
54
|
infrahub/computed_attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
55
|
infrahub/computed_attribute/constants.py,sha256=oTMPEfRuf2mcfCkBpRLWRALO6nsLHpFm9jJGu0lowS4,446
|
|
55
56
|
infrahub/computed_attribute/gather.py,sha256=xhH4dsgCjRFyFshns4Iu3sloe5m1bVMRdeQAJjFdyYU,8220
|
|
56
57
|
infrahub/computed_attribute/models.py,sha256=P_MijLwCVd7394oyTTfYQ3HmX5wIF966jdchuZaLRbs,17361
|
|
57
|
-
infrahub/computed_attribute/tasks.py,sha256=
|
|
58
|
+
infrahub/computed_attribute/tasks.py,sha256=3HGVb6mat9kD5VFYBtdUhJx6KW_cRlh2hbgHDOVAwFo,17944
|
|
58
59
|
infrahub/computed_attribute/triggers.py,sha256=ve1cUj0CZ7dU1VtZkxET9LD8StszKIL9mCkTZpCeUaI,2304
|
|
59
60
|
infrahub/config.py,sha256=jWGDVIwZiRdn7TRw0LwcFD61zr5T0mUacQ9C2MYLoLg,39188
|
|
60
61
|
infrahub/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -63,16 +64,16 @@ infrahub/constants/environment.py,sha256=ry-6qsBzSumOjjiq1D3XNoquf1LWqFKiQSJj8t6
|
|
|
63
64
|
infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
|
|
64
65
|
infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
|
|
65
66
|
infrahub/core/account.py,sha256=6f1cIDWvL-HsbzL0UwWoCbDTzx55wzd_SkpQXiKDjcE,27477
|
|
66
|
-
infrahub/core/attribute.py,sha256=
|
|
67
|
+
infrahub/core/attribute.py,sha256=4_FvQI5EgCmOGKb8_N0c7k2kV1EbXwLqRgFsvOtQbVw,44907
|
|
67
68
|
infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
|
|
68
|
-
infrahub/core/branch/enums.py,sha256=
|
|
69
|
-
infrahub/core/branch/models.py,sha256=
|
|
69
|
+
infrahub/core/branch/enums.py,sha256=wE_TvKxd-r3zeHgLOMuZhsyKRwDWWC8BMxAEC_aX7A8,212
|
|
70
|
+
infrahub/core/branch/models.py,sha256=jNKf0C0hy9OnEVUm3D4kRpuxbBQze45sVQ8Caruzbgs,20574
|
|
70
71
|
infrahub/core/branch/needs_rebase_status.py,sha256=purrg93k9zWcV9NONjIdMF8cWLXEKHq6YjO0ayC3C04,407
|
|
71
|
-
infrahub/core/branch/tasks.py,sha256=
|
|
72
|
+
infrahub/core/branch/tasks.py,sha256=WxIdAuvfCRLctLABEsQCpjhWKe6naI84HCR3qwP1MSI,23358
|
|
72
73
|
infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
74
|
infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
|
|
74
75
|
infrahub/core/changelog/models.py,sha256=oVy-j4pWXs9PAuQgaRohFYsmdPBPNc7FZU3FzxS_klc,29828
|
|
75
|
-
infrahub/core/constants/__init__.py,sha256=
|
|
76
|
+
infrahub/core/constants/__init__.py,sha256=7-mVsipLD2sct17rqhsbmTo4PN7tWlSX9Oi_ejm1Rvo,9992
|
|
76
77
|
infrahub/core/constants/database.py,sha256=x5tWaT3e0WfCxxrHMcSoHUBMfcUzStLi133CqHjSosU,368
|
|
77
78
|
infrahub/core/constants/infrahubkind.py,sha256=mN1_h877Ti9fA6DLHE7TmBlx71flbF-trw2rS1HXfCI,3060
|
|
78
79
|
infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
|
|
@@ -119,13 +120,13 @@ infrahub/core/diff/parent_node_adder.py,sha256=AFq2KJHGgUVem4WCg-9Qi9h6TTwt-JID1
|
|
|
119
120
|
infrahub/core/diff/payload_builder.py,sha256=cJ8o8vNSANOrzK2dC4KoXCOffgnb6Mhi2Ko9MRdZoRU,2091
|
|
120
121
|
infrahub/core/diff/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
122
|
infrahub/core/diff/query/all_conflicts.py,sha256=gWLwkCR2AK0IJccnhcE8vkSHu5ugZfKTDhCoFi4yAJo,3058
|
|
122
|
-
infrahub/core/diff/query/artifact.py,sha256=
|
|
123
|
+
infrahub/core/diff/query/artifact.py,sha256=2VGXTAnsKiXrxtI-pj7Pkssxnpe6l2sBqqeiiYrTogU,9191
|
|
123
124
|
infrahub/core/diff/query/delete_query.py,sha256=KMZ-HbSz2RKYqqMZ1Lj0mZBlWvkBYOyOvab2UCki1eo,1021
|
|
124
125
|
infrahub/core/diff/query/diff_get.py,sha256=SzlJAF5DNKcbavgVOxLKJ-o8EsuImTGE2uNPg9hcMq0,7438
|
|
125
126
|
infrahub/core/diff/query/diff_summary.py,sha256=sypXfK4EO_BZBuohlv419AjgL5ZeRwMiwnI7IIlh0KE,3841
|
|
126
127
|
infrahub/core/diff/query/drop_nodes.py,sha256=NP29dbW-z4s_rp_MtIwTl3FXElfCP6eqEpF_9r3Z3VA,1674
|
|
127
128
|
infrahub/core/diff/query/field_specifiers.py,sha256=y_kPpPnOYQvUvdl6xc2sqQzVXODP4NQWIC55ya0x3ps,1702
|
|
128
|
-
infrahub/core/diff/query/field_summary.py,sha256
|
|
129
|
+
infrahub/core/diff/query/field_summary.py,sha256=nQ2WHF4TIc-UWHwstXyFRPnuokyjDu8GGjpGaHGfGoA,3183
|
|
129
130
|
infrahub/core/diff/query/filters.py,sha256=McTtRNGg8fmnqTtNH-msfzH-8eKCBsM6-fitxTp5T8w,4324
|
|
130
131
|
infrahub/core/diff/query/get_conflict_query.py,sha256=kpGZA4QZrXxv_vnoAP5oa9-347VzsNWUIBWcg7rg03U,892
|
|
131
132
|
infrahub/core/diff/query/has_conflicts_query.py,sha256=kt0Z606vP2r1g7OqW2RrYj9LbiVkrzGfQ0AKCHx21XI,2547
|
|
@@ -142,11 +143,11 @@ infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_S
|
|
|
142
143
|
infrahub/core/diff/repository/repository.py,sha256=u0QTMY1e2dknG_DuRAwzFt-Lp1_mdj5lqF2ymt77k9E,25581
|
|
143
144
|
infrahub/core/diff/tasks.py,sha256=jSXlenTJ5Fc189Xvm971e3-gBDRnfN19cxNaWvEFwAE,3306
|
|
144
145
|
infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
|
|
145
|
-
infrahub/core/graph/__init__.py,sha256=
|
|
146
|
+
infrahub/core/graph/__init__.py,sha256=aInunwnjVhKLaXxkomEUFRu3mB5vp1Bg-aNNljXOvDc,19
|
|
146
147
|
infrahub/core/graph/constraints.py,sha256=lmuzrKDFoeSKRiLtycB9PXi6zhMYghczKrPYvfWyy90,10396
|
|
147
148
|
infrahub/core/graph/index.py,sha256=A9jzEE_wldBJsEsflODeMt4GM8sPmmbHAJRNdFioR1k,1736
|
|
148
149
|
infrahub/core/graph/schema.py,sha256=o50Jcy6GBRk55RkDJSMIDDwHhLD7y_RWOirI9rCex4A,10776
|
|
149
|
-
infrahub/core/initialization.py,sha256=
|
|
150
|
+
infrahub/core/initialization.py,sha256=MuhZR6VDFfEiQw_ZPm-LBcBQmpvEdaxovGWtx_YKtVc,22081
|
|
150
151
|
infrahub/core/integrity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
152
|
infrahub/core/integrity/object_conflict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
153
|
infrahub/core/integrity/object_conflict/conflict_recorder.py,sha256=gDOx-Ohle0GxfsNm-FEaBMipaQLMxMVg3BoAHEhuK5E,6125
|
|
@@ -160,8 +161,10 @@ infrahub/core/ipam/tasks.py,sha256=SRVkCv6TBI_VfTZ_tL_ABDaPn3cUNR6vmBJCuahInjI,1
|
|
|
160
161
|
infrahub/core/ipam/utilization.py,sha256=OKFvcCoxFTkYnwibLhBM2Kbb2vsyI4eX07gtCf_7UXI,6743
|
|
161
162
|
infrahub/core/manager.py,sha256=IU5VfkHLCN4WhvqzI6DOEyCXo9fBT_st5BmN__A4vas,44183
|
|
162
163
|
infrahub/core/merge.py,sha256=TNZpxjNYcl3dnvE8eYXaWSXFDYeEa8DDsS9XbR2XKlA,11217
|
|
163
|
-
infrahub/core/migrations/__init__.py,sha256=
|
|
164
|
-
infrahub/core/migrations/
|
|
164
|
+
infrahub/core/migrations/__init__.py,sha256=ttA1YkKhiG9Zc0fwIIcMLIDCrIhN5xVOIh6ojFoy58o,1541
|
|
165
|
+
infrahub/core/migrations/exceptions.py,sha256=gEAkWzjvN-IXr0YPqUrEqnu_GsR-uqucsu1QUaWhEmM,147
|
|
166
|
+
infrahub/core/migrations/graph/__init__.py,sha256=kcfNR1FAw1adh3b07i6r7DuZ9Nabz8B2fphTD_n75Mw,4308
|
|
167
|
+
infrahub/core/migrations/graph/load_schema_branch.py,sha256=OvjowaeDnx4djD1aGPjE7Rqyh1p843LSodOf_Frdt9U,1008
|
|
165
168
|
infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
|
|
166
169
|
infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
|
|
167
170
|
infrahub/core/migrations/graph/m003_relationship_parent_optional.py,sha256=Aya-s98XfE9C7YluOwEjilwgnjaBnZxp27w_Xdv_NmU,2330
|
|
@@ -174,7 +177,7 @@ infrahub/core/migrations/graph/m009_add_generate_profile_attr.py,sha256=7FfjKyVY
|
|
|
174
177
|
infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py,sha256=M4Orq480PzwBEz85QZqdBh-1arJdIwXNwnPA6cWy5Yg,1366
|
|
175
178
|
infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py,sha256=TYQ1jXNucLIBbqLS35nUb_72OmMspXexSSW83Ax0oEw,1980
|
|
176
179
|
infrahub/core/migrations/graph/m012_convert_account_generic.py,sha256=NT7JI47xWaWf8zLVyw4LE8uyjjdMQGui_7lqt8xrvlI,11086
|
|
177
|
-
infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=
|
|
180
|
+
infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=WttTHp7e2CEhWDyY1vnZ9l-GFOdIu_0eQNGPYmzAnXY,12822
|
|
178
181
|
infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=Amds1gl8YtNIekU0tSXpHzdfk8UFqChC2LOLfnQ1YTM,1441
|
|
179
182
|
infrahub/core/migrations/graph/m015_diff_format_update.py,sha256=fMnUja-VgKbCxtx4Rh3PnA_s3iidaYunJWEkw0AD51w,1169
|
|
180
183
|
infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py,sha256=FpeGlCdRN8why_6P8ijR4-hFTbE-m95lDNfBwNet1TU,1177
|
|
@@ -201,58 +204,62 @@ infrahub/core/migrations/graph/m036_drop_attr_value_index.py,sha256=z2BplzX0mue3
|
|
|
201
204
|
infrahub/core/migrations/graph/m037_index_attr_vals.py,sha256=bJB4yPWE73XA_ErUcnY90CR09_jbtA0jW6tE5U0GvQ4,22730
|
|
202
205
|
infrahub/core/migrations/graph/m038_redo_0000_prefix_fix.py,sha256=8seWnXQhgEJDFLWxYHVcnMNDPcHq5C24c0RYrtn_WGE,2411
|
|
203
206
|
infrahub/core/migrations/graph/m039_ipam_reconcile.py,sha256=gUf4Fo3CrzJ2hwbaKlQclripTDrI7cVk_GHsBlBNMKE,10916
|
|
204
|
-
infrahub/core/migrations/graph/
|
|
205
|
-
infrahub/core/migrations/graph/
|
|
206
|
-
infrahub/core/migrations/graph/
|
|
207
|
-
infrahub/core/migrations/
|
|
208
|
-
infrahub/core/migrations/query/
|
|
207
|
+
infrahub/core/migrations/graph/m040_duplicated_attributes.py,sha256=2LxsG-CfcZnBirwGhwYL4kU-g3oxl6lNSM12vZTZ7Gw,2930
|
|
208
|
+
infrahub/core/migrations/graph/m041_profile_attrs_in_db.py,sha256=rETh38LViCwF08anssSHwnqbKLnyq9m67Ozq6WjFRTI,6197
|
|
209
|
+
infrahub/core/migrations/graph/m042_create_hfid_display_label_in_db.py,sha256=f31zm8YHVliEki9zk_hw6vkbq9Nt9i_PSKn4hEcBb7s,6987
|
|
210
|
+
infrahub/core/migrations/graph/m043_backfill_hfid_display_label_in_db.py,sha256=3oLuoIhfKwSzMTdrM-MeNT3_PoxAo2b7YDPqkpPd4Xc,38435
|
|
211
|
+
infrahub/core/migrations/query/__init__.py,sha256=nUbKk8bX6Ei4RkLe0VNNAm7c-d2zDoAMgdFGkYW0Czw,850
|
|
212
|
+
infrahub/core/migrations/query/attribute_add.py,sha256=wKChMnqcd8hb8YCTIU3rUrtVqwHFSI5bdvXAPUcnRIA,4969
|
|
213
|
+
infrahub/core/migrations/query/attribute_remove.py,sha256=IhAPlv9jyZTWMf8f8HZJ8G0ImWebt-ER78NrP3vIWhU,5307
|
|
209
214
|
infrahub/core/migrations/query/attribute_rename.py,sha256=onb9Nanht1Tz47JgneAcFsuhqqvPS6dvI2nNjRupLLo,6892
|
|
210
215
|
infrahub/core/migrations/query/delete_element_in_schema.py,sha256=QYw2LIpJGQXBPOTm6w9gFdCltZRd-V_YUh5l9HmGthg,7402
|
|
211
216
|
infrahub/core/migrations/query/node_duplicate.py,sha256=yaxeZBYd52jgEB5XY1PZxksTLpM9x1ZEFbwetFeRKTQ,9623
|
|
212
217
|
infrahub/core/migrations/query/relationship_duplicate.py,sha256=hjUFjNqhaFc2tEg79BXR2xDr_4Wdmu9fVF02cTEICTk,7319
|
|
213
218
|
infrahub/core/migrations/query/schema_attribute_update.py,sha256=fLclNEgoikO_ddlFEo1ts-dZwTXITA85kdJ00fXFxqo,3382
|
|
219
|
+
infrahub/core/migrations/runner.py,sha256=d_HxhO1RRh3Ec7cG5Z8SKV2X0mqc4J5Y9UZwHb4d6Co,2145
|
|
214
220
|
infrahub/core/migrations/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
|
-
infrahub/core/migrations/schema/attribute_kind_update.py,sha256=
|
|
221
|
+
infrahub/core/migrations/schema/attribute_kind_update.py,sha256=uJmGdNnAg2fDYqLUw_kM7qQXTdo_V785817u0DotUKo,6323
|
|
216
222
|
infrahub/core/migrations/schema/attribute_name_update.py,sha256=gebaeQX1MLmOxupTPcCzLJdeEQlUzs3XIl7T15-RdXY,1595
|
|
223
|
+
infrahub/core/migrations/schema/attribute_supports_profile.py,sha256=xEmLV1Km-GOpvUAia0izN9VWERveSGcikb0AHbuFs5g,3465
|
|
217
224
|
infrahub/core/migrations/schema/models.py,sha256=F1yp0GM-HutGdzhE0uPFq9JCTH9iHM3V4iDm2e2c4YU,1357
|
|
218
|
-
infrahub/core/migrations/schema/node_attribute_add.py,sha256=
|
|
219
|
-
infrahub/core/migrations/schema/node_attribute_remove.py,sha256=
|
|
220
|
-
infrahub/core/migrations/schema/node_kind_update.py,sha256=
|
|
221
|
-
infrahub/core/migrations/schema/node_remove.py,sha256=
|
|
222
|
-
infrahub/core/migrations/schema/placeholder_dummy.py,sha256=
|
|
225
|
+
infrahub/core/migrations/schema/node_attribute_add.py,sha256=qarLS4BU7-4k1HDf9RY0Ux8z3VyGqNFft06kRgVo8Og,4353
|
|
226
|
+
infrahub/core/migrations/schema/node_attribute_remove.py,sha256=H27FjhSYrKlRKrNFYQb_oHFx54FqJZc1GHJD8cij3ws,935
|
|
227
|
+
infrahub/core/migrations/schema/node_kind_update.py,sha256=sCKbjzkAOuWsjvQHAfHq9HBY3woMA3wJx-B2mFwdvnA,1473
|
|
228
|
+
infrahub/core/migrations/schema/node_remove.py,sha256=6Xzs0uT_MlDyFD4xqqmplijNJxGpdZ4Cosa0h5cVqC4,7143
|
|
229
|
+
infrahub/core/migrations/schema/placeholder_dummy.py,sha256=YBGFUVPi57ARbWgAmbtKD_Y6lkITOR6nFwov7IXVuzU,350
|
|
223
230
|
infrahub/core/migrations/schema/tasks.py,sha256=2J8gHGSP-WhxSi4GYhOc9xAJOg_S1ONm3YE4_ukLKxw,4164
|
|
224
|
-
infrahub/core/migrations/shared.py,sha256=
|
|
231
|
+
infrahub/core/migrations/shared.py,sha256=86oyFDvLI7TaEiOEk-mHeiyPimz1ZdhA2eFy0kQRXYI,9246
|
|
225
232
|
infrahub/core/models.py,sha256=xwEeXSTD4j13hbyZAjZAlrhXk1hHvWl9I7ve7uUbR7U,26649
|
|
226
|
-
infrahub/core/node/__init__.py,sha256=
|
|
233
|
+
infrahub/core/node/__init__.py,sha256=lLtq-kgwzaXKrmvIoDA47pOvaJQQ2RNA-93vqWtgb-4,48797
|
|
227
234
|
infrahub/core/node/base.py,sha256=BAowVRCK_WC50yXym1kCyUppJDJnrODGU5uoj1s0Yd4,2564
|
|
228
235
|
infrahub/core/node/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
236
|
infrahub/core/node/constraints/attribute_uniqueness.py,sha256=lcHBk4d3bc12sywxRTnQs18VEm_S6pDcUhNnsXnb-uI,2162
|
|
230
237
|
infrahub/core/node/constraints/grouped_uniqueness.py,sha256=F5pmnXVuQNlVmdZY5FRxSGK4gGi1BK1IRgw4emCTlLw,9506
|
|
231
238
|
infrahub/core/node/constraints/interface.py,sha256=fwB32pRLxteQyKRArqekQ0RXlrDkyzp7Vmq03vSpUEo,291
|
|
232
|
-
infrahub/core/node/create.py,sha256=
|
|
239
|
+
infrahub/core/node/create.py,sha256=m0DId8jWE_nLkOinecjcQvB60JVC4pNYLc_Y5-KsyoE,9053
|
|
233
240
|
infrahub/core/node/delete_validator.py,sha256=mj_HQXkTeP_A3po65-R5bCJnDM9CmFFmcUQIxwPlofc,10559
|
|
234
241
|
infrahub/core/node/ipam.py,sha256=NWb3TUlVQOGAzq1VvDwISLh61HML0jnalsJ7QojqGwQ,2669
|
|
235
|
-
infrahub/core/node/lock_utils.py,sha256=
|
|
242
|
+
infrahub/core/node/lock_utils.py,sha256=wIxqOv3xcNQR4J1hiNXE7rmgCyLKemY7lDBIDsWHM9U,4975
|
|
236
243
|
infrahub/core/node/node_property_attribute.py,sha256=afj7RHUtWe-Bz-k9Gv9EVbHTrv6SjSsNqnixMZwVsv4,8871
|
|
237
244
|
infrahub/core/node/permissions.py,sha256=uQzQ62IHcSly6fzPre0nQzlrkCIKzH4HyQkODKB3ZWM,2207
|
|
238
245
|
infrahub/core/node/proposed_change.py,sha256=WXwii_MsWOkkd4A_5LVhmE5uIRHZnpNhoySbdXi-hPw,1617
|
|
239
246
|
infrahub/core/node/resource_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
-
infrahub/core/node/resource_manager/ip_address_pool.py,sha256=
|
|
241
|
-
infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=
|
|
242
|
-
infrahub/core/node/resource_manager/number_pool.py,sha256=
|
|
247
|
+
infrahub/core/node/resource_manager/ip_address_pool.py,sha256=pJa3peul-sNNN_tNNsMn8TB6Jp8cbuh4xwrIf6-3Nd0,5265
|
|
248
|
+
infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=z1CY7OM41p-X3dJcuGu7coDHDoGHvnB4puvmmleVmrU,5527
|
|
249
|
+
infrahub/core/node/resource_manager/number_pool.py,sha256=KaDxJdIspQ_riXcDGn6RSBDltxEIonmoj68vsQvhFwE,5829
|
|
243
250
|
infrahub/core/node/standard.py,sha256=3LdSEc7_YZTHvuz1fAmJF3XBaYzIobrpD1oGfdigsrI,7290
|
|
244
251
|
infrahub/core/path.py,sha256=CTSnW6OcvnGNqTcOUZcVOMDSB4PLmeGYpY9U84uv9r8,6181
|
|
245
252
|
infrahub/core/property.py,sha256=mUf8JGUHSUVBaegN7TPmmJ2CnQRGo2d1rQEQQmdNmbU,5386
|
|
246
253
|
infrahub/core/protocols.py,sha256=QoDvLhsvLiJ7Jqouri31ja4apApVN4zmwm_59KTKhs8,12741
|
|
247
254
|
infrahub/core/protocols_base.py,sha256=cEi6giHtEUmaD0JWfDfWHJhEv_6wjaBA3oJRJCbvc6Q,3411
|
|
248
255
|
infrahub/core/query/__init__.py,sha256=2qIMaODLwJ6pK6BUd5vODTlA15Aecf5I8_-J44UlCso,23089
|
|
249
|
-
infrahub/core/query/attribute.py,sha256=
|
|
256
|
+
infrahub/core/query/attribute.py,sha256=rz0IJPD1wUhjzt20z8R-_gMYGJuNyShM_PDzKPLiF1M,14901
|
|
250
257
|
infrahub/core/query/branch.py,sha256=aIYyDxpnw_Zw2lqTnMEVlhPUaYckZtJJJU1SFUht1o0,4343
|
|
251
258
|
infrahub/core/query/delete.py,sha256=7tPP1qtNV6QGYtmgE1RKsuQ9oxENnMTVkttLvJ2PiKg,1927
|
|
252
259
|
infrahub/core/query/diff.py,sha256=jJCkZRo5jGaf-yPAnQ_5ju6sCnknDK0E7vGpqEnaU_k,36881
|
|
253
|
-
infrahub/core/query/ipam.py,sha256=
|
|
254
|
-
infrahub/core/query/node.py,sha256=
|
|
255
|
-
infrahub/core/query/relationship.py,sha256=
|
|
260
|
+
infrahub/core/query/ipam.py,sha256=gXzONPsUTDaAv2OBNp6yf5FlqTXjL7A-xjEFWmefIPg,34564
|
|
261
|
+
infrahub/core/query/node.py,sha256=KRJ6OHjGZ5uFODHIwWjG6QgCfF2OfxOJk21Y_ekMEYg,64753
|
|
262
|
+
infrahub/core/query/relationship.py,sha256=v4V9WNX4ucvD8QeC9oZfzCuMYmeyziGhVelMir7DYLk,49642
|
|
256
263
|
infrahub/core/query/resource_manager.py,sha256=uSvs1WZmdbyt_PjaUi9lXnYdPt-lhJV1RjYoUHYjQdk,16620
|
|
257
264
|
infrahub/core/query/standard_node.py,sha256=mPBXyqk4RzoWRUX4NoojoVi8zk-sJ03GmzmUaWqOgSI,4825
|
|
258
265
|
infrahub/core/query/subquery.py,sha256=VAxY8wwkzrFQIGdQlxXUZ_iJZEtmTSru4sfs8hMNU7g,7215
|
|
@@ -270,9 +277,9 @@ infrahub/core/relationship/constraints/peer_relatives.py,sha256=Ye79l7njaWxZkU2c
|
|
|
270
277
|
infrahub/core/relationship/constraints/profiles_kind.py,sha256=nEZPGtGcmelZ1Nb8EPcQ-7_zCLCNIYwwWbU6C9fLj5E,2464
|
|
271
278
|
infrahub/core/relationship/model.py,sha256=icbZQyh3oaICJTzZymUzXPzvThnJij2mRLll4Rr6bE8,48746
|
|
272
279
|
infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
|
|
273
|
-
infrahub/core/schema/__init__.py,sha256=
|
|
280
|
+
infrahub/core/schema/__init__.py,sha256=U1DWsadfu7Y3FUc51h9DNwXEq4Qa_yZ5w5Bip8pVpmw,6674
|
|
274
281
|
infrahub/core/schema/attribute_parameters.py,sha256=ABL1GEsOl4_CcDvK9_NucGMaF6LUeOjAxbDQVm_G7eg,6516
|
|
275
|
-
infrahub/core/schema/attribute_schema.py,sha256=
|
|
282
|
+
infrahub/core/schema/attribute_schema.py,sha256=kYyTtNtvz6Zli3Kw3dtLaR3RtnNdxNTtDG-kvXnmE5A,10502
|
|
276
283
|
infrahub/core/schema/basenode_schema.py,sha256=Se-pEYgnL2Y6_OSMZrl5BWgW9taBaBaqddL2NoXfArE,29765
|
|
277
284
|
infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
|
|
278
285
|
infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
|
|
@@ -300,20 +307,20 @@ infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2
|
|
|
300
307
|
infrahub/core/schema/definitions/core/transform.py,sha256=UB2TaBjabIiErivBR16srxq7fgYoKjmjZaVun8vxXvY,3061
|
|
301
308
|
infrahub/core/schema/definitions/core/webhook.py,sha256=rpJ0aw5e64C9WQ5xFx1FvJ7G9tsyZyYIib89OEM4pn4,4346
|
|
302
309
|
infrahub/core/schema/definitions/deprecated.py,sha256=PUXfRupaxNT3R_a6eFnvAcvXKOZenVb7VnuLAskZfT0,829
|
|
303
|
-
infrahub/core/schema/definitions/internal.py,sha256=
|
|
310
|
+
infrahub/core/schema/definitions/internal.py,sha256=oP7R2azocYDbtBehfkOwGecAjupFMoSPLyPZbkVmuZw,35136
|
|
304
311
|
infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
|
|
305
312
|
infrahub/core/schema/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
|
-
infrahub/core/schema/generated/attribute_schema.py,sha256=
|
|
313
|
+
infrahub/core/schema/generated/attribute_schema.py,sha256=eEbtRnSY01mdjwJJiXJsoZjgMJ6zsaS1OSJLDXLxt64,5628
|
|
307
314
|
infrahub/core/schema/generated/base_node_schema.py,sha256=0c9hN4O66HvDh4jrK6NAk37aRXhLtDXpJdBUbzGeukI,4646
|
|
308
315
|
infrahub/core/schema/generated/genericnode_schema.py,sha256=FvfeYfld9YeKHOzyH6G3zFkZP_ETrWfvvOpggLT8waY,1059
|
|
309
316
|
infrahub/core/schema/generated/node_schema.py,sha256=PMgbQX1PC5ixQsjOFw_bcEfa4txGNUI6BV6OkFDG3wQ,1631
|
|
310
317
|
infrahub/core/schema/generated/relationship_schema.py,sha256=F198_LNmQRV0xSEBPRA3vBAioEItpYZVNApOmdb8_E4,5851
|
|
311
318
|
infrahub/core/schema/generic_schema.py,sha256=KSd5fwMDR2hjrsb1vOaK83Lw5jJAob1FLoudgU5_E2Y,1594
|
|
312
|
-
infrahub/core/schema/manager.py,sha256=
|
|
319
|
+
infrahub/core/schema/manager.py,sha256=tFOMMB2WG_VO42kLfTAMigRZE-DPN_ObVJ6fC_ux7TE,34193
|
|
313
320
|
infrahub/core/schema/node_schema.py,sha256=W2Jx5QXrQ5ygUEyTKnIHhj6Xe7jJ6Y-iQArEo05cWRI,6341
|
|
314
321
|
infrahub/core/schema/profile_schema.py,sha256=sV4lp1UyBye12M7BJcA2obb4tx3M9J5P89SLqkmFxJY,1237
|
|
315
322
|
infrahub/core/schema/relationship_schema.py,sha256=ryCvmUQl3HBo_Sk07Xl5rT48PPuhlBkYRmm-lSdfJPI,8445
|
|
316
|
-
infrahub/core/schema/schema_branch.py,sha256=
|
|
323
|
+
infrahub/core/schema/schema_branch.py,sha256=kOt_qUPnLWOHDh7lCYiLB70WB3dn6T10ZA_aonk9sbg,119282
|
|
317
324
|
infrahub/core/schema/schema_branch_computed.py,sha256=14UUsQJDLMHkYhg7QMqeLiTF3PO8c8rGa90ul3F2ZZo,10629
|
|
318
325
|
infrahub/core/schema/schema_branch_display.py,sha256=geakFn1bgpqRdiVfvjoZs9iB2_XJw3MCD9PruWJZD84,5481
|
|
319
326
|
infrahub/core/schema/schema_branch_hfid.py,sha256=70G5NTqdORhDmE-0nfj8Y3snMjlWn-Rb-9dK1hhnyGA,4785
|
|
@@ -363,6 +370,7 @@ infrahub/core/validators/uniqueness/index.py,sha256=Jw1o-UVinQquNduZ5vCCzt8GUfIE
|
|
|
363
370
|
infrahub/core/validators/uniqueness/model.py,sha256=Z5CyYOQfhyAnwNIev4AFjfXnfOoUWc4uR04Wz3C6Cy4,5617
|
|
364
371
|
infrahub/core/validators/uniqueness/query.py,sha256=0LXhPqRpV4Ho2CLxHP2fDs8AFvKJPKpUfHiW4SwFccg,22254
|
|
365
372
|
infrahub/database/__init__.py,sha256=8d-SCvRddc0pszhr2NxBOdv-NjvC3TxxuB6GZKnySws,21170
|
|
373
|
+
infrahub/database/graph.py,sha256=fUYrUmRNFA_qvFSS7bvb7giqaIj1BLzhQY6dz7F_vCo,620
|
|
366
374
|
infrahub/database/index.py,sha256=ATLqw9Grqbq7haGGm14VSEPmcPniid--YATiffo4sA0,1676
|
|
367
375
|
infrahub/database/memgraph.py,sha256=Fg3xHP9s0MiBBmMvcEmsJvuIUSq8U_XCS362HDE9d1s,1742
|
|
368
376
|
infrahub/database/metrics.py,sha256=xU4OSKFbsxcw_yZlt_39PmGtF7S7yPbPuOIlSCu5sI0,739
|
|
@@ -432,11 +440,11 @@ infrahub/dependencies/registry.py,sha256=YNv73l66EIYDBLaxeeWfGStl8MY6Xz_HpQY1osX
|
|
|
432
440
|
infrahub/display_labels/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
433
441
|
infrahub/display_labels/gather.py,sha256=FVMB6dGh3rwUKvxlqHOYrmxAEOuRkw7AC4SHjtL3w5Y,1786
|
|
434
442
|
infrahub/display_labels/models.py,sha256=eOnbMy70qtw8je2ltYxW9BMSt2UO0T6H8ouHJATW_wE,9779
|
|
435
|
-
infrahub/display_labels/tasks.py,sha256=
|
|
443
|
+
infrahub/display_labels/tasks.py,sha256=LADymXZWPtCnrzz93uliNyBEeXSNhvdmZ0jBhXUIo2I,7009
|
|
436
444
|
infrahub/display_labels/triggers.py,sha256=dWMKAC5w525bz6MnDF8kQFbDsSL-qI8A7zcZRP2Xq6U,966
|
|
437
445
|
infrahub/events/__init__.py,sha256=6BtpkdstvgnMYvUWc-q2dqiA08ZRaU-Xs4vmhWpOJXs,1702
|
|
438
446
|
infrahub/events/artifact_action.py,sha256=-j_Sh-_NdJIGJhUDYm5DoZS--eIYsaMsejj36OUE6yk,2823
|
|
439
|
-
infrahub/events/branch_action.py,sha256=
|
|
447
|
+
infrahub/events/branch_action.py,sha256=mZNJYDifYQ_IFoJDzv3PEsVnMRwmTf5QvhbgY7O9A4c,5584
|
|
440
448
|
infrahub/events/constants.py,sha256=VCbUeHSWRT308We7vDVYkopGlkQQ23UEIGzv9a8kyf0,121
|
|
441
449
|
infrahub/events/generator.py,sha256=J3G2-lixFVgrNqcEX2GiPz2nj6TTiUHs12za07U8NZg,3958
|
|
442
450
|
infrahub/events/group_action.py,sha256=BvEBQCdn5MoKb7btx2Kb9dWoqOVummthY01oKNDaye0,3994
|
|
@@ -451,16 +459,16 @@ infrahub/exceptions.py,sha256=cbM-f_2U-5ZFVZ_MaaXgs64k4M7uJ7fqDU2iCRoWlYY,11861
|
|
|
451
459
|
infrahub/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
452
460
|
infrahub/generators/constants.py,sha256=T_GuUuqzRwn7akkAD58TquJBU6EOzGmj1PC8q0yyRo8,150
|
|
453
461
|
infrahub/generators/models.py,sha256=TjTz9tOAXHHFS51CtGPp_CrTE7Hv6RN5rvOxSee4s38,3682
|
|
454
|
-
infrahub/generators/tasks.py,sha256=
|
|
462
|
+
infrahub/generators/tasks.py,sha256=tVH2J_Hsf53T3Hl5kh8sKt3A_hiyo6L-FnKMFG45U6M,10725
|
|
455
463
|
infrahub/git/__init__.py,sha256=KeQ9U8UI5jDj6KB6j00Oal7MZmtOD9vKqVgiezG_EQA,281
|
|
456
|
-
infrahub/git/base.py,sha256
|
|
464
|
+
infrahub/git/base.py,sha256=kfk4FpAAWFl8pesM7ER5evzPAPGoRwW6ql1AJrktM1o,40353
|
|
457
465
|
infrahub/git/constants.py,sha256=XpzcAkXbsgXZgrXey74id1sXV8Q6EHb_4FNw7BndxyY,106
|
|
458
466
|
infrahub/git/directory.py,sha256=fozxLXXJPweHG95yQwQkR5yy3sfTdmHiczCAJnsUX54,861
|
|
459
|
-
infrahub/git/integrator.py,sha256=
|
|
460
|
-
infrahub/git/models.py,sha256=
|
|
461
|
-
infrahub/git/repository.py,sha256=
|
|
462
|
-
infrahub/git/tasks.py,sha256=
|
|
463
|
-
infrahub/git/utils.py,sha256=
|
|
467
|
+
infrahub/git/integrator.py,sha256=l3RQyGL-2SjYHf6cbALmjf8AweJPwkJGiJVJymeCgz8,63117
|
|
468
|
+
infrahub/git/models.py,sha256=i-6KsAm98B__bP23VVykhuMqadqCLfT0sJAIamRzLII,12358
|
|
469
|
+
infrahub/git/repository.py,sha256=Z8I-DMkT6hfBkm3bQwQgkbilTGEgFl14sV8sr3g73mA,11584
|
|
470
|
+
infrahub/git/tasks.py,sha256=cQ7nbcqEKq67qmmFyYFR4HfPyjs6sCl4zh2Hzce_N5Q,39610
|
|
471
|
+
infrahub/git/utils.py,sha256=1VCvxpXIpDWlM15Ix8IJEsMXNWMRG9gKLjaHb3RSTqg,5345
|
|
464
472
|
infrahub/git/worktree.py,sha256=8IYJWOBytKUWwhMmMVehR4ceeO9e13nV-mvn3iVEgZY,1727
|
|
465
473
|
infrahub/git_credential/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
474
|
infrahub/git_credential/askpass.py,sha256=BL7e4Xkx5la7XFk-GQR6MXxV5B29Mzb5ZnVnljd7Xpw,1513
|
|
@@ -469,7 +477,7 @@ infrahub/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
469
477
|
infrahub/graphql/analyzer.py,sha256=Y1c-9gd0vyZqFHib4kaA2G5Ct3A7X8AotA3Oh8vpaV0,30533
|
|
470
478
|
infrahub/graphql/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
471
479
|
infrahub/graphql/api/dependencies.py,sha256=tno-vUerO7dDFw_B95UTZnbqRiwl_VJIhzgwJe8wdRY,1643
|
|
472
|
-
infrahub/graphql/api/endpoints.py,sha256=
|
|
480
|
+
infrahub/graphql/api/endpoints.py,sha256=x-DJ-z3bOecv9Fn-RGyna-yG2dVjyPQJyJnC18ndxBs,1935
|
|
473
481
|
infrahub/graphql/app.py,sha256=LG7ZfPB1EXR7y__iY81ehEixhDfxuvLwd9PbCh3aRjc,21174
|
|
474
482
|
infrahub/graphql/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
483
|
infrahub/graphql/auth/query_permission_checker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -490,7 +498,7 @@ infrahub/graphql/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
490
498
|
infrahub/graphql/loaders/node.py,sha256=p7qJxRpXSAddq2fcwJeaIRy-5ReSn2EUitQbDhlmdM4,2618
|
|
491
499
|
infrahub/graphql/loaders/peers.py,sha256=wsB-ZtaU-BlR99EvWUbf6_SFhFJYOspz5QaTln_MZ4Q,2799
|
|
492
500
|
infrahub/graphql/loaders/shared.py,sha256=hUxLy8iVgfpEZiUMKNkUAeshPKKzEVSDMDsuaBbjJW4,389
|
|
493
|
-
infrahub/graphql/manager.py,sha256=
|
|
501
|
+
infrahub/graphql/manager.py,sha256=ykn2g1ekFdl4293m94pl6RLPFfz0uR6pyG3fgu4zXp0,49746
|
|
494
502
|
infrahub/graphql/metrics.py,sha256=viq_M57mDYd4DDK7suUttf1FJTgzQ3U50yOuSw_Nd-s,2267
|
|
495
503
|
infrahub/graphql/middleware.py,sha256=za8Aba-63_mVgc2j8us8giucwIXweR6c7_XN0-VEus4,604
|
|
496
504
|
infrahub/graphql/models.py,sha256=7kr3DSO_rujPocMIfPyZ5Hwy3Mpnu4ySDMAIE9G5Y7Y,147
|
|
@@ -501,15 +509,15 @@ infrahub/graphql/mutations/artifact_definition.py,sha256=K9iieMMHB8O8V1E6aO04tP2
|
|
|
501
509
|
infrahub/graphql/mutations/attribute.py,sha256=a35MP8Pvy_42N5dkO3HKATgJDW6qy9ncDu5t8YI3AUE,2734
|
|
502
510
|
infrahub/graphql/mutations/branch.py,sha256=xXd8zIm3VWon268Y_QAQBPEKkJdee6tu84wAsJzD3-c,11357
|
|
503
511
|
infrahub/graphql/mutations/computed_attribute.py,sha256=JAPVjDrEC-a-bTVKD5pYW3QetD1gAhWub3HQj9swrqs,9376
|
|
504
|
-
infrahub/graphql/mutations/convert_object_type.py,sha256=
|
|
512
|
+
infrahub/graphql/mutations/convert_object_type.py,sha256=zC4ehUds63gkY3QiPbFQeqdeFdM2L2bIkEM1gsdrAto,4462
|
|
505
513
|
infrahub/graphql/mutations/diff.py,sha256=UfEkgIeKsxr79U0_ih7mhl0986rFITM_GDXevsWBSqo,4776
|
|
506
514
|
infrahub/graphql/mutations/diff_conflict.py,sha256=JngQfyKXCVlmtlqQ_VyabmrOEDOEKYsoWbyYSc9TT5c,3147
|
|
507
|
-
infrahub/graphql/mutations/display_label.py,sha256=
|
|
515
|
+
infrahub/graphql/mutations/display_label.py,sha256=qPBjVA35x4ttcoNj779uYRxD4bAe22b3u5iit1_M66A,4570
|
|
508
516
|
infrahub/graphql/mutations/generator.py,sha256=7YSg_0Q4fe2Qh9MdLcCUU5h1sWLTG5HcnuNNr5b1SCA,4566
|
|
509
517
|
infrahub/graphql/mutations/graphql_query.py,sha256=a8tCTrjJipwIghmxlcUkH1Hx_7tem5QhzrTczcwpuZM,3644
|
|
510
|
-
infrahub/graphql/mutations/hfid.py,sha256=
|
|
511
|
-
infrahub/graphql/mutations/ipam.py,sha256=
|
|
512
|
-
infrahub/graphql/mutations/main.py,sha256=
|
|
518
|
+
infrahub/graphql/mutations/hfid.py,sha256=Ivun3zoJ5MAz4WnJeyD1Bew44K1w991shu59YzVTSao,4887
|
|
519
|
+
infrahub/graphql/mutations/ipam.py,sha256=mur8ib7OS4ygjsvbdefxwYPDQAL9TRJkNNSRA8NoICU,17526
|
|
520
|
+
infrahub/graphql/mutations/main.py,sha256=s_UuTl3xtkRZHk143oGFvCw0ckwk6LRdgQ_wAL6cZ10,17196
|
|
513
521
|
infrahub/graphql/mutations/menu.py,sha256=NSdtUobZ-5dsQdBFfD1xyoE9dKw9FS62T_6UQM0cEUY,3790
|
|
514
522
|
infrahub/graphql/mutations/models.py,sha256=ilkSLr8OxVO9v3Ra_uDyUTJT9qPOmdPMqQbuWIydJMo,264
|
|
515
523
|
infrahub/graphql/mutations/node_getter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -549,15 +557,16 @@ infrahub/graphql/resolvers/many_relationship.py,sha256=Xw5qodU6X2tw8uN7GLfWs-rxr
|
|
|
549
557
|
infrahub/graphql/resolvers/resolver.py,sha256=yS99x9ewDZn68NoylA1CzuFoMjPPdD3SNTHMs7Y3MI8,11966
|
|
550
558
|
infrahub/graphql/resolvers/single_relationship.py,sha256=atEvh5vWoc934B3tXZUYtF5iRnKdvM2gp8Kzsf5xogI,7008
|
|
551
559
|
infrahub/graphql/schema.py,sha256=Urr95dLCqvgiECCG4KAxNGmu9OQHHaYfzsimY1vtIE0,5342
|
|
560
|
+
infrahub/graphql/schema_sort.py,sha256=00e9RPq2iwqX4EuK4bNHsX-dMNWgHSw3z7_5kHYTl5U,5714
|
|
552
561
|
infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
|
|
553
562
|
infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
|
|
554
563
|
infrahub/graphql/subscription/graphql_query.py,sha256=U9PwREMghxbuIoGWh3_rV33wKPzDyMILZ8_tuniwukg,2266
|
|
555
564
|
infrahub/graphql/types/__init__.py,sha256=e9srmQo6Ct7IANyrFD0J9w40E0ccNkNK3EfkyqnZivM,1899
|
|
556
565
|
infrahub/graphql/types/attribute.py,sha256=W2s75jATNunn15lsHFNGA4RlDm1BIjt7PTSaM1wtK40,6600
|
|
557
|
-
infrahub/graphql/types/branch.py,sha256=
|
|
566
|
+
infrahub/graphql/types/branch.py,sha256=gzR8rO703KFdZE_VdzBgrkcH4ih1vJO2lGWW8HJM73w,1557
|
|
558
567
|
infrahub/graphql/types/common.py,sha256=3I3p1bPOorwWgTqKbHqcDB7AvNG0JMdRyzIGxUrrREA,401
|
|
559
568
|
infrahub/graphql/types/context.py,sha256=PrgEOGq0ERAsbFFNDA40WMlids72StbL2q88nGW46cQ,405
|
|
560
|
-
infrahub/graphql/types/enums.py,sha256=
|
|
569
|
+
infrahub/graphql/types/enums.py,sha256=IS8YcMopKEswuDFdRrJtw3rtAOm1VlDI-9ui1KW4jvI,488
|
|
561
570
|
infrahub/graphql/types/event.py,sha256=Wbf82dYjr5GX_jUdsEXQ0Xd9OmX9bPx4b7Cjm9e6j3Q,9161
|
|
562
571
|
infrahub/graphql/types/interface.py,sha256=Bi80p-FHMWRXjD0a7QwqSweSiRxYXd3iC1Xfq5JFLC0,879
|
|
563
572
|
infrahub/graphql/types/node.py,sha256=s6iKpATlO9ulKjyMEuP82CNVmgD1nRqL9YYbsU8ekjQ,1011
|
|
@@ -576,9 +585,9 @@ infrahub/helpers.py,sha256=KchbQqgipU4VjfwnDbzCGjnEv-4espw_g63Zw4KAhbo,251
|
|
|
576
585
|
infrahub/hfid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
586
|
infrahub/hfid/gather.py,sha256=ruv1NtzAuDO0Q6XsAjNsj0ujeXwqHxYOB1tVobPFf4U,1691
|
|
578
587
|
infrahub/hfid/models.py,sha256=DZ6bX0sIcYB6nEbdDWzEVs6seqa2FU3dTT3sTP1PCXw,9481
|
|
579
|
-
infrahub/hfid/tasks.py,sha256=
|
|
588
|
+
infrahub/hfid/tasks.py,sha256=gJKnQWywOXRcmGcrYb1-KovgA5SahQw9UiTtYfVjvMs,6764
|
|
580
589
|
infrahub/hfid/triggers.py,sha256=A0-oB1GvvfLJFQ9HsL44vFz-ZVgpsSKOhIkDUiL-5fw,912
|
|
581
|
-
infrahub/lock.py,sha256=
|
|
590
|
+
infrahub/lock.py,sha256=tebDPS_LZmTCA7M49LNtKwK_e_evqEcguuYoXnbbel8,10954
|
|
582
591
|
infrahub/locks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
583
592
|
infrahub/locks/tasks.py,sha256=x0ihuIkSHLVj2kvefC_VF7ja_FhCAEnS0zi44P2h-jc,1383
|
|
584
593
|
infrahub/log.py,sha256=4FP80DGY5sk9R7CjcDpPiTfxuow-nfbhXWVpDByCVrw,2817
|
|
@@ -605,7 +614,7 @@ infrahub/message_bus/operations/refresh/__init__.py,sha256=vBuvTL4zRRpOMXATmckQ3
|
|
|
605
614
|
infrahub/message_bus/operations/refresh/registry.py,sha256=ny-8_Gsd46CgdDm_ZXBwMpYdxNMU3t7CyglTWH3Q6Ww,1277
|
|
606
615
|
infrahub/message_bus/operations/send/__init__.py,sha256=ivuUTAknLiWfArR44SxA40l0UKVkdHjtDIx0mg06IcE,39
|
|
607
616
|
infrahub/message_bus/operations/send/echo.py,sha256=656IFCpl2EA6EQjA2iwdJtYyo4yKb6iiv4r3oqQEd6o,712
|
|
608
|
-
infrahub/message_bus/types.py,sha256=
|
|
617
|
+
infrahub/message_bus/types.py,sha256=o-Wn2pfb-xpQBYANJSX1szs6y8T8LJdRxz6OTMnv6ps,4470
|
|
609
618
|
infrahub/middleware.py,sha256=Su129MXkXazE9ODlIZ_KtuRHOakMsOHbVKIx15NKXpU,1547
|
|
610
619
|
infrahub/models.py,sha256=QmwJwo3hNCta8BXM7eLsD9qv1S73Rj0cC_crLpadHTc,715
|
|
611
620
|
infrahub/patch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -625,7 +634,7 @@ infrahub/patch/vertex_deleter.py,sha256=czdb8T30k_-WSbcZUVS2-DvaN3Dp4j9ss2lAz8KN
|
|
|
625
634
|
infrahub/patch/vertex_updater.py,sha256=FxQJEnwXdvj2WtwLorRbRAyocWUG9z_RDowflVKqPoU,1136
|
|
626
635
|
infrahub/permissions/__init__.py,sha256=JZtHCf5FC5OKYFcu6SWBArB9a9WFZVtJNxoWrmWweC4,732
|
|
627
636
|
infrahub/permissions/backend.py,sha256=azvyFOTne0Zy1yrc4t9u3GCkHI_x_OPSDV65yxmVPDQ,529
|
|
628
|
-
infrahub/permissions/constants.py,sha256=
|
|
637
|
+
infrahub/permissions/constants.py,sha256=ddT7VU0ia8JF3xFsj36mBxqqevR2hQO8UEUufnHcHPA,2399
|
|
629
638
|
infrahub/permissions/globals.py,sha256=_s_UtlTkkfXaQSwUPBpzFVgNN21DvOVL-5M0ceeFlsk,1500
|
|
630
639
|
infrahub/permissions/local_backend.py,sha256=JXUBGcYsi62Jmpz_sSueYGV3tqxV1WrNXpevhwKhr1w,1470
|
|
631
640
|
infrahub/permissions/manager.py,sha256=rt7P2rk7hsReWTHXd2gM6C8i_72SAHQb0CF0PxebI4I,6731
|
|
@@ -656,7 +665,7 @@ infrahub/proposed_change/branch_diff.py,sha256=IdMxf5zPmhybQKPPz7AlruNmLCKf5VISP
|
|
|
656
665
|
infrahub/proposed_change/checker.py,sha256=ZhNEVJKsQbHH2UE1O35MfOVa8cK1QGEqGyn6MsOuqSQ,1558
|
|
657
666
|
infrahub/proposed_change/constants.py,sha256=auifG94Oo2cJ4RwZx4P-XDPDpKYPtEVxh013KPfiEdU,2080
|
|
658
667
|
infrahub/proposed_change/models.py,sha256=ivWJmEAihprKmwgaBGDJ4Koq4ETciE5GfDp86KHDnns,5892
|
|
659
|
-
infrahub/proposed_change/tasks.py,sha256=
|
|
668
|
+
infrahub/proposed_change/tasks.py,sha256=XY4yTvw_RRjeUlbFSB9dpUHtM2ZaP6_METRSmu0mqxc,65316
|
|
660
669
|
infrahub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
661
670
|
infrahub/pytest_plugin.py,sha256=u3t0WgLMo9XmuQYeb28mccQ3xbnyv2Fv173YWl1zBiM,6678
|
|
662
671
|
infrahub/repositories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -668,14 +677,14 @@ infrahub/serve/__init__.py,sha256=cWzvEH-Zwr1nQsoNJO9q1pef5KLuSK3VQLOumlnsQxk,73
|
|
|
668
677
|
infrahub/serve/gunicorn_config.py,sha256=BkClF6yjz-sIhZ-oDizXUmGSEE-FQSmy21JfVnRI5tA,102
|
|
669
678
|
infrahub/serve/log.py,sha256=qUidwbtE5AlyLHnWKVoEggOoHKhfMMjYlUH1d-iGwqg,953
|
|
670
679
|
infrahub/serve/worker.py,sha256=nNGQORkUM474UiFNfb0GBHo2vx-NuAuZCcscwoKnGwE,1371
|
|
671
|
-
infrahub/server.py,sha256=
|
|
672
|
-
infrahub/services/__init__.py,sha256=
|
|
680
|
+
infrahub/server.py,sha256=0GEM7cqhLIDlTLyhMKeGc0X6zlYJp_a2OpYiKJ5XblM,8566
|
|
681
|
+
infrahub/services/__init__.py,sha256=DYSrfTfq4M32yWFvCJJRDIHzSZUUd5Lrn8thNAw7O_U,6446
|
|
673
682
|
infrahub/services/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
674
683
|
infrahub/services/adapters/cache/__init__.py,sha256=WsEthxQbcyCOA2M_FzfQr0Cymo4hprCq0m6Vg55uMXo,1919
|
|
675
684
|
infrahub/services/adapters/cache/nats.py,sha256=FLGqgDuqf1MD7PRxngiCA1jDdh307ypvaKEMK2P4oxU,5697
|
|
676
685
|
infrahub/services/adapters/cache/redis.py,sha256=PKFdPncLI59w-KUaHSwgQm9VSJkO2h7xMh9xl-aID7I,2115
|
|
677
686
|
infrahub/services/adapters/event/__init__.py,sha256=KUA6mW-9JF1haFu4D0G8CTETcR7y_yvpTg7avbQ0wgM,1372
|
|
678
|
-
infrahub/services/adapters/http/__init__.py,sha256=
|
|
687
|
+
infrahub/services/adapters/http/__init__.py,sha256=_IZUvukHSSd8TdgslW5hLGwQ6GNPYanpPX7aClSh3zM,686
|
|
679
688
|
infrahub/services/adapters/http/httpx.py,sha256=jUPbxnjYZzWxk7fnFt2D4eSbd4JmiAGZFPk0Tz-Eyo0,3652
|
|
680
689
|
infrahub/services/adapters/message_bus/__init__.py,sha256=CwhjOnRXJLYHfejG5vPAiz_8BEdvxTjgHAjNaIg8EtE,3180
|
|
681
690
|
infrahub/services/adapters/message_bus/local.py,sha256=Ly-_c4CcNI6Q3pRiks5CuTwcpekQKEWWnyYVl1QRfpw,2359
|
|
@@ -683,16 +692,16 @@ infrahub/services/adapters/message_bus/nats.py,sha256=T_kESHII4pggoRytZe1xOgZoBo
|
|
|
683
692
|
infrahub/services/adapters/message_bus/rabbitmq.py,sha256=x8KTt6dvV7cObpK1LkmCLfI-kRu7AWsGqxiou9JM_xw,10795
|
|
684
693
|
infrahub/services/adapters/workflow/__init__.py,sha256=I9yA0lPJF4k3pznu6FJxsEVasgS4r7e5IsQqtpAXL84,1643
|
|
685
694
|
infrahub/services/adapters/workflow/local.py,sha256=C8VgrgmxQOKpNN11Iili1EJ4VRR0yGNZDkO7fR2MSXg,1487
|
|
686
|
-
infrahub/services/adapters/workflow/worker.py,sha256=
|
|
695
|
+
infrahub/services/adapters/workflow/worker.py,sha256=bg3Jw-8JrzdWs6qdW1klJqOQKq-Al4wiX5xNhuJVB7k,3749
|
|
687
696
|
infrahub/services/component.py,sha256=hPEHtFBIClLz8GNByKP4bABVZXN9CcfT__p0KQWnlWw,5688
|
|
688
697
|
infrahub/services/protocols.py,sha256=Ci4cnWK6L_R_5V2qAPnQpHtKXYS0hktp7CoJWIbcbc0,754
|
|
689
698
|
infrahub/services/scheduler.py,sha256=TbKg74oBINScHJYtV8_lOuQR2RjxqS6IfU_slyjpNYw,3246
|
|
690
699
|
infrahub/storage.py,sha256=bpK8m7GNlp5LHI0yXuFNZhhBVQpU7RZr7MeWCaAAPLk,1812
|
|
691
700
|
infrahub/task_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
692
701
|
infrahub/task_manager/constants.py,sha256=1t1BZRa8_y89gIDPNHzIbRKo63nHOP37-r5OvtHa56c,559
|
|
693
|
-
infrahub/task_manager/event.py,sha256=
|
|
694
|
-
infrahub/task_manager/models.py,sha256=
|
|
695
|
-
infrahub/task_manager/task.py,sha256=
|
|
702
|
+
infrahub/task_manager/event.py,sha256=AVzfTt_jcsL9XgtMDEnhrb7w0xeZ84wB4ZNK2P3g4JA,14127
|
|
703
|
+
infrahub/task_manager/models.py,sha256=WJxyCJPznSck8sUiGhCmfqN5SpKabLPBuTjiHC7vhNE,8940
|
|
704
|
+
infrahub/task_manager/task.py,sha256=CAc7ZMZtQ1uniSnvtmVWSBb4kMOLJEzDob0xiKUDvTQ,15308
|
|
696
705
|
infrahub/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
697
706
|
infrahub/tasks/artifact.py,sha256=q1MyQAbT77pD-pm8StHsF_JlTpEQreNc51JHJfnsTD4,1958
|
|
698
707
|
infrahub/tasks/check.py,sha256=37n1U1Knb3AV6kz2sw_IabL9pnlqceLVICWf9GdSxZE,687
|
|
@@ -716,8 +725,8 @@ infrahub/trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
716
725
|
infrahub/trigger/catalogue.py,sha256=62WmN3waxVGBLgcGIygcxLwA7HWk4ffbm2WQPgdimiE,976
|
|
717
726
|
infrahub/trigger/constants.py,sha256=u9_5A6gIUIrprzfEdwseYk2yTkwU0VPCjZTwL8b3T6s,22
|
|
718
727
|
infrahub/trigger/models.py,sha256=niFKtFpgUovIllKKImAkyqeBMUUxcqSHBNf6jBGbGzQ,4968
|
|
719
|
-
infrahub/trigger/setup.py,sha256=
|
|
720
|
-
infrahub/trigger/tasks.py,sha256=
|
|
728
|
+
infrahub/trigger/setup.py,sha256=EZxsneu-da-nXtHtsl5jSicKr8B9uWd-2YCq1J-4fko,6537
|
|
729
|
+
infrahub/trigger/tasks.py,sha256=b_tdEKYpWYkDnv3m7cfwH5JanZdMBhro4Lzf0LV8_RI,1871
|
|
721
730
|
infrahub/types.py,sha256=aea-_EXtaqhYq8-P5LGqkU9VitfMs_WU4WXOSsItrsg,11591
|
|
722
731
|
infrahub/utils.py,sha256=3p_bXmRGOTnXIMG9fZ9mFsKdBw2fU3VBFJT3YHrbvyw,2704
|
|
723
732
|
infrahub/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -731,15 +740,15 @@ infrahub/webhook/tasks.py,sha256=2msOOqqFStQbNje7Eq0glAdlprs-ASHii3qQXFIEyzE,725
|
|
|
731
740
|
infrahub/webhook/triggers.py,sha256=v1dzFV4wX0GO2n5hft_qzp-oJOA2P_9Q2eTcSP-i0pk,1574
|
|
732
741
|
infrahub/worker.py,sha256=zV9vLXtJzyqeTGtVolwZEHlLaBvGiUZv00qWpE-lnOM,353
|
|
733
742
|
infrahub/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
734
|
-
infrahub/workers/dependencies.py,sha256=
|
|
735
|
-
infrahub/workers/infrahub_async.py,sha256=
|
|
743
|
+
infrahub/workers/dependencies.py,sha256=454lvLnuV-siXUIIllPy2AM7U3IUDOWcTGqLNuCcIso,5271
|
|
744
|
+
infrahub/workers/infrahub_async.py,sha256=5CGtzOVcvlCMWAGWyTATk5bI1eYVxv8zzkls1BjgLow,8415
|
|
736
745
|
infrahub/workers/utils.py,sha256=m6FOKrYo53Aoj-JcEyQ7-J4Dc20R9JtHMDzTcqXiRpg,2407
|
|
737
746
|
infrahub/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
738
|
-
infrahub/workflows/catalogue.py,sha256=
|
|
747
|
+
infrahub/workflows/catalogue.py,sha256=6IQadjuXIgGkmLGMQBdo0WUjXiU-RGPyrouNyfhM13Q,21496
|
|
739
748
|
infrahub/workflows/constants.py,sha256=7je2FF7tJH6x_ZNqHKZfQX91X7I5gmD8OECN3dE_eqI,651
|
|
740
|
-
infrahub/workflows/initialization.py,sha256=
|
|
749
|
+
infrahub/workflows/initialization.py,sha256=jpLEQilsawx46oEOMPyRVzGNt7xqWun15ajlIINhU38,4132
|
|
741
750
|
infrahub/workflows/models.py,sha256=5yx6ZHCVMcYd4uEvxLREEBZDHHyHzQ_PuAh7z2fJV7k,4113
|
|
742
|
-
infrahub/workflows/utils.py,sha256=
|
|
751
|
+
infrahub/workflows/utils.py,sha256=nJ0K3FtIy-MG0O33h_p5ggU7rxF3Fdj5fIWJ1D7Jl7A,2833
|
|
743
752
|
infrahub_sdk/__init__.py,sha256=weZAa06Ar0NO5IOKLQICtCceHUCKQxbkBxHebqQGJ1o,401
|
|
744
753
|
infrahub_sdk/_importer.py,sha256=8oHTMxa_AMO_qbfb3UXNfjSr31S5YJTcqe-YMrixY_E,2257
|
|
745
754
|
infrahub_sdk/analyzer.py,sha256=UDJN372vdAiuAv2TEyPUlsSVoUfZN6obWkIokNNaHbA,4148
|
|
@@ -747,8 +756,8 @@ infrahub_sdk/async_typer.py,sha256=Gj7E8EGdjA-XF404vr9cBt20mmbroQh7N68HXhWYx00,8
|
|
|
747
756
|
infrahub_sdk/batch.py,sha256=LRZ_04ic56ll9FBjgXCYrJRDJcwB3wR1yX4grrQutDQ,3795
|
|
748
757
|
infrahub_sdk/branch.py,sha256=IoEOYVuuwJbKyrXqTEKp7aQHQknXOkwdLmEqjD9j594,12733
|
|
749
758
|
infrahub_sdk/checks.py,sha256=iHBwAftYUUjqwe5MYf-PcPVhR0_opZ4nerjT2e4YJ1s,5707
|
|
750
|
-
infrahub_sdk/client.py,sha256=
|
|
751
|
-
infrahub_sdk/config.py,sha256=
|
|
759
|
+
infrahub_sdk/client.py,sha256=s-Reao67HUxli7ZvAF-wRYaP2fPx6zX9gdJdYep1YfU,110229
|
|
760
|
+
infrahub_sdk/config.py,sha256=mckf2HE7zIjH946t3FWTAOJb2FsiTnHCCVOSzYHAjWY,8875
|
|
752
761
|
infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
|
|
753
762
|
infrahub_sdk/context.py,sha256=QgXZvtUrKolp6ML8TguVK87Wuu-3KyizZVV_N2F4oCw,400
|
|
754
763
|
infrahub_sdk/convert_object_type.py,sha256=HPwhlQhmPUSLtfC1RqFo9fsCvfdBgJyVrvgjkSOf5MM,2383
|
|
@@ -769,7 +778,7 @@ infrahub_sdk/ctl/object.py,sha256=OEbAx0Yb0zbXxS2ZnXedZRZDHITQd3iAk_cWUlTHLvg,27
|
|
|
769
778
|
infrahub_sdk/ctl/parameters.py,sha256=aU2H41svfG309m2WdH6R9H5xgQ4gevn3ItOu5ltuVas,413
|
|
770
779
|
infrahub_sdk/ctl/render.py,sha256=zrIz_KXq3QafgNiqqNeYt2JtD2PGOa0D5ujW6NqZdz8,1948
|
|
771
780
|
infrahub_sdk/ctl/repository.py,sha256=Hbkt3mTDNEBvZ3yGm2S5tEW3ealcfuDuSCfI00p4TL4,7997
|
|
772
|
-
infrahub_sdk/ctl/schema.py,sha256=
|
|
781
|
+
infrahub_sdk/ctl/schema.py,sha256=CAq9OSkR1sMRSb-GclFR-dpbyxyRn8qfVeec2gqtc1Q,8099
|
|
773
782
|
infrahub_sdk/ctl/transform.py,sha256=5qRqiKeEefs0rda6RAFAAj1jkCKdbPYE_t8O-n436LQ,414
|
|
774
783
|
infrahub_sdk/ctl/utils.py,sha256=du6XksdFybfmst2MwH5KhVGrmjUkoxBsb5nQe_cRnXQ,7513
|
|
775
784
|
infrahub_sdk/ctl/validate.py,sha256=vnP5P--Sknf-Ni43zCW9qHab5AI9qz5h-11moMSzHGQ,3941
|
|
@@ -818,12 +827,17 @@ infrahub_sdk/queries.py,sha256=s4gnx67e-MNg-3jP4Vx1jreO9uiW3uYPllFQgaTODdQ,2308
|
|
|
818
827
|
infrahub_sdk/query_groups.py,sha256=XMizAadkItEFgH8waXRg7jzckSWqK92YDcAPorwkids,10507
|
|
819
828
|
infrahub_sdk/recorder.py,sha256=_NPtSLX3-Dam6BHt7daLzv-IAVxvU-35GIGu7YtA08Y,2285
|
|
820
829
|
infrahub_sdk/repository.py,sha256=P6n93Koh-MUpbdWKmKcS8YsztDOXBJf-W1Z5ZZMexOE,973
|
|
821
|
-
infrahub_sdk/schema/__init__.py,sha256=
|
|
830
|
+
infrahub_sdk/schema/__init__.py,sha256=RJfDVulWRJ3DoCvHzpQYx_mwk6XGCIAVM6L5dRjcqL8,31300
|
|
822
831
|
infrahub_sdk/schema/main.py,sha256=an9mfg6hNOhxF3eR87NO3qc0oMFUcX0EEfiojWlQtLo,12219
|
|
823
832
|
infrahub_sdk/schema/repository.py,sha256=nv33K9ZwejDEYrgUs0V-t8TnB-18T_AnqvioRGdiEhM,12581
|
|
824
833
|
infrahub_sdk/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
825
834
|
infrahub_sdk/spec/menu.py,sha256=KG8KpDYqlVWsCQXCUlAX7P7Jbw3bB60hlTMRs0cohOk,1078
|
|
826
|
-
infrahub_sdk/spec/
|
|
835
|
+
infrahub_sdk/spec/models.py,sha256=BU0cyIn67KOhN3N3NB9T06NrK4fS7yFiCoL_Jpjtqsc,143
|
|
836
|
+
infrahub_sdk/spec/object.py,sha256=6e34XfaH7_HMeFnHMbhGC3L2yFafc9vPCNtCwHAjAVI,26863
|
|
837
|
+
infrahub_sdk/spec/processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
838
|
+
infrahub_sdk/spec/processors/data_processor.py,sha256=_ZooqKoJq-2PKcpDV_ZSQ5KizFmmkXuOhGQS5pDNEoQ,312
|
|
839
|
+
infrahub_sdk/spec/processors/factory.py,sha256=Y8UnJSVDdGDTHOj2jLKFUqvX8tR0oyzhY9GcyzFO9yA,1129
|
|
840
|
+
infrahub_sdk/spec/processors/range_expand_processor.py,sha256=PTeoT_GsdoHthLQSE9WuvFghr2QCGvgfdzLadfubkhc,2175
|
|
827
841
|
infrahub_sdk/spec/range_expansion.py,sha256=QOlPYSw2lLv9QAS2Sma9NFadbdFFqkhFqk5pbrFldbE,5326
|
|
828
842
|
infrahub_sdk/store.py,sha256=rmTNiAZFebi3I_NOnErhZswZPMrUJrkfu81PHf5aOlE,14091
|
|
829
843
|
infrahub_sdk/task/__init__.py,sha256=6MTui97_uymZ9BBQGC9xRrT6qpzHc0YxkkKWIdW0FdM,210
|
|
@@ -860,9 +874,9 @@ infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
|
|
|
860
874
|
infrahub_sdk/yaml.py,sha256=PRsS7BEM-Xn5wRLAAG-YLTGRBEJy5Dnyim2YskFfe8I,5539
|
|
861
875
|
infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
|
|
862
876
|
infrahub_testcontainers/constants.py,sha256=mZ4hLvcf4rKk9wC7EId4MQxAY0sk4V99deB04N0J2bg,85
|
|
863
|
-
infrahub_testcontainers/container.py,sha256=
|
|
864
|
-
infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=
|
|
865
|
-
infrahub_testcontainers/docker-compose.test.yml,sha256=
|
|
877
|
+
infrahub_testcontainers/container.py,sha256=VHsTETUX6a-XlgZ4fgexJMRL7nytkF7lQXujep2STTY,24931
|
|
878
|
+
infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=WFWQLDoeS0E5MfjlOejfwaFMNu8ejsJ6ay7iuLonlCc,15108
|
|
879
|
+
infrahub_testcontainers/docker-compose.test.yml,sha256=BSZ8C3tEg7g6a9Qm4TcCIqxgX1RkqSjfF8y8fcs3SZ0,11506
|
|
866
880
|
infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTMFZJsnk,1305
|
|
867
881
|
infrahub_testcontainers/helpers.py,sha256=rGEWIeUfDg4w1wJNCzTm7_H1oA58HaMSORjVlHw1aWA,4677
|
|
868
882
|
infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
|
|
@@ -871,8 +885,8 @@ infrahub_testcontainers/models.py,sha256=-TScLFW3V7SOe3eS1C8ANKmabpxGDTX5xu-V1pg
|
|
|
871
885
|
infrahub_testcontainers/performance_test.py,sha256=k14E0loMNuvhIJKEItbeKdbcOC0NBM-HhSe0RnVhJJo,6117
|
|
872
886
|
infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
|
|
873
887
|
infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
|
|
874
|
-
infrahub_server-1.5.
|
|
875
|
-
infrahub_server-1.5.
|
|
876
|
-
infrahub_server-1.5.
|
|
877
|
-
infrahub_server-1.5.
|
|
878
|
-
infrahub_server-1.5.
|
|
888
|
+
infrahub_server-1.5.0b2.dist-info/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
|
|
889
|
+
infrahub_server-1.5.0b2.dist-info/METADATA,sha256=Mq3cNdMjbTJH4X6zUSupgN4a9ijxAvk-R7-IguEXANk,6129
|
|
890
|
+
infrahub_server-1.5.0b2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
891
|
+
infrahub_server-1.5.0b2.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
|
|
892
|
+
infrahub_server-1.5.0b2.dist-info/RECORD,,
|