infrahub-server 1.1.4__py3-none-any.whl → 1.1.6__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/artifact.py +4 -1
- infrahub/api/oidc.py +33 -4
- infrahub/api/transformation.py +2 -0
- infrahub/computed_attribute/tasks.py +9 -5
- infrahub/core/diff/calculator.py +127 -35
- infrahub/core/diff/coordinator.py +1 -2
- infrahub/core/diff/ipam_diff_parser.py +1 -1
- infrahub/core/diff/merger/serializer.py +15 -8
- infrahub/core/diff/model/path.py +0 -9
- infrahub/core/diff/query/all_conflicts.py +64 -0
- infrahub/core/diff/query/diff_get.py +17 -22
- infrahub/core/diff/query_parser.py +51 -28
- infrahub/core/diff/repository/deserializer.py +51 -47
- infrahub/core/diff/repository/repository.py +75 -33
- infrahub/core/merge.py +7 -5
- infrahub/core/query/diff.py +509 -758
- infrahub/core/relationship/model.py +11 -3
- infrahub/core/schema/schema_branch.py +16 -7
- infrahub/core/validators/aggregated_checker.py +34 -4
- infrahub/core/validators/node/hierarchy.py +1 -1
- infrahub/generators/tasks.py +12 -10
- infrahub/git/base.py +50 -8
- infrahub/git/integrator.py +30 -19
- infrahub/git/models.py +3 -2
- infrahub/git/repository.py +2 -2
- infrahub/git/tasks.py +19 -11
- infrahub/graphql/mutations/artifact_definition.py +10 -2
- infrahub/message_bus/messages/check_repository_usercheck.py +1 -0
- infrahub/message_bus/operations/check/repository.py +5 -2
- infrahub/message_bus/operations/requests/artifact_definition.py +1 -1
- infrahub/message_bus/operations/requests/proposed_change.py +4 -0
- infrahub/message_bus/types.py +1 -0
- infrahub/proposed_change/tasks.py +6 -1
- infrahub/storage.py +6 -5
- infrahub/transformations/constants.py +1 -0
- infrahub/transformations/models.py +3 -1
- infrahub/transformations/tasks.py +2 -2
- infrahub/webhook/models.py +9 -1
- infrahub/workflows/catalogue.py +2 -2
- infrahub_sdk/batch.py +2 -2
- infrahub_sdk/config.py +1 -1
- infrahub_sdk/ctl/check.py +1 -1
- infrahub_sdk/ctl/cli_commands.py +4 -4
- infrahub_sdk/ctl/exporter.py +2 -2
- infrahub_sdk/ctl/importer.py +6 -4
- infrahub_sdk/ctl/repository.py +56 -1
- infrahub_sdk/ctl/utils.py +2 -2
- infrahub_sdk/data.py +1 -1
- infrahub_sdk/node.py +1 -4
- infrahub_sdk/protocols.py +0 -1
- infrahub_sdk/pytest_plugin/items/graphql_query.py +1 -1
- infrahub_sdk/pytest_plugin/items/jinja2_transform.py +1 -1
- infrahub_sdk/pytest_plugin/items/python_transform.py +1 -1
- infrahub_sdk/schema/__init__.py +0 -3
- infrahub_sdk/testing/docker.py +30 -0
- infrahub_sdk/transfer/exporter/json.py +1 -1
- {infrahub_server-1.1.4.dist-info → infrahub_server-1.1.6.dist-info}/METADATA +1 -1
- {infrahub_server-1.1.4.dist-info → infrahub_server-1.1.6.dist-info}/RECORD +62 -60
- infrahub_testcontainers/docker-compose.test.yml +1 -1
- {infrahub_server-1.1.4.dist-info → infrahub_server-1.1.6.dist-info}/LICENSE.txt +0 -0
- {infrahub_server-1.1.4.dist-info → infrahub_server-1.1.6.dist-info}/WHEEL +0 -0
- {infrahub_server-1.1.4.dist-info → infrahub_server-1.1.6.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
infrahub/__init__.py,sha256=OF6hovR3975Zu6-9DOL_Nh_FTgGn8kS_yOfQ-xp-chg,87
|
|
2
2
|
infrahub/api/__init__.py,sha256=dtRtBRpEgt7Y9Zdwy85jpSr8qfO_2xNTgTQLCJPQiZI,2182
|
|
3
|
-
infrahub/api/artifact.py,sha256=
|
|
3
|
+
infrahub/api/artifact.py,sha256=7Rx0pLuna-s1IUsYt48lYVM4XMpWChCyceXsvGr1EIE,3670
|
|
4
4
|
infrahub/api/auth.py,sha256=-YqPWBc5zXvGehf8IatHMl_y2xE6hpcfG7VcxnviFkc,1895
|
|
5
5
|
infrahub/api/dependencies.py,sha256=v33X9fLAuZCX-Mn-0rB3MTntxh8qdBffp5Zl1XYrImQ,4708
|
|
6
6
|
infrahub/api/diff/__init__.py,sha256=oXlDkl0C-nHNCdXcLN-KmCUdUICOzk_b0RFgjeYwt7s,47
|
|
@@ -12,14 +12,14 @@ infrahub/api/file.py,sha256=FnjXkQdSBThnNNYk8CMboEx_935pR1U6aHT0jxA0AdU,2258
|
|
|
12
12
|
infrahub/api/internal.py,sha256=jBZ3mbnsACdkJt0QJNcEb2tKHqm6NkqNrGIBWNFdFF0,5124
|
|
13
13
|
infrahub/api/menu.py,sha256=xp5bj5JXQZA6ZEPWoTSGGSfTXZ1sVmehMxr3VSG7FlQ,1216
|
|
14
14
|
infrahub/api/oauth2.py,sha256=9rOAM2DPvuS25lHPc6M2YRx0Aso1NDHqqk62SevnMpE,5517
|
|
15
|
-
infrahub/api/oidc.py,sha256=
|
|
15
|
+
infrahub/api/oidc.py,sha256=NbLeygC6R9FWXz4CeuFOVjH9rr_07T8PCVTGlguFCnY,8323
|
|
16
16
|
infrahub/api/query.py,sha256=uZ93JJpaLzj9Y3O6IzxFGasLY26XTHLlyrwIJHd_kyg,6976
|
|
17
17
|
infrahub/api/schema.py,sha256=1IS6H03fplhkyXa9v0uADiIhz1bad04L95xStNGb1sY,16611
|
|
18
18
|
infrahub/api/static/redoc.standalone.js,sha256=77kGx7mVN9EcdER2ZM4gQ-E-ra_N6AZq9QseAeD6kt0,1042008
|
|
19
19
|
infrahub/api/static/swagger-ui-bundle.js,sha256=wuSp7wgUSDn_R8FCAgY-z-TlnnCk5xVKJr1Q2IDIi6E,1452753
|
|
20
20
|
infrahub/api/static/swagger-ui.css,sha256=QBcPDuhZ0X-SExunBzKaiKBw5PZodNETZemnfSMvYRc,152071
|
|
21
21
|
infrahub/api/storage.py,sha256=yWo7qsDn4SrX89wDsTKOfGTMdWYNsptAdt7Fhfzw1C0,2179
|
|
22
|
-
infrahub/api/transformation.py,sha256=
|
|
22
|
+
infrahub/api/transformation.py,sha256=KAshylWaAZgfdsQTIfYq4KsnBms40dU-DMm5At5qk4Q,5549
|
|
23
23
|
infrahub/auth.py,sha256=g4pQX4kI1k-iWIQNduXODhpeZXIjY3XqLslh7QFRBq4,9194
|
|
24
24
|
infrahub/cli/__init__.py,sha256=ORSAghLOFVuTf9wARz9QgLOZYmxjxw2j5neHbW-DITU,1781
|
|
25
25
|
infrahub/cli/context.py,sha256=20CJj_D1VhigR9uhTDPHiVHnV7vzsgK8v-uLKs06kzA,398
|
|
@@ -32,7 +32,7 @@ infrahub/components.py,sha256=lSLDCDwIZoakZ2iBrfHi9c3BxzugMiuiZO6V7Egt6tk,107
|
|
|
32
32
|
infrahub/computed_attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
infrahub/computed_attribute/constants.py,sha256=oTMPEfRuf2mcfCkBpRLWRALO6nsLHpFm9jJGu0lowS4,446
|
|
34
34
|
infrahub/computed_attribute/models.py,sha256=icUzsu0DrGoxMkBVXpNiv17rMo0OwpSE-QBJyWblMM0,2637
|
|
35
|
-
infrahub/computed_attribute/tasks.py,sha256=
|
|
35
|
+
infrahub/computed_attribute/tasks.py,sha256=rzzWBKrmCQ_ZXJ4Uv5XE7IDhdx39I0_HwyDTLYwkLKo,33238
|
|
36
36
|
infrahub/config.py,sha256=DQFXa6e6nbW6McdLVViuCcKYlGjw9ytmYDsKU5l-Jdo,33605
|
|
37
37
|
infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
|
|
38
38
|
infrahub/core/account.py,sha256=sggpuO_QpwYH7wXG_lZDnrB5Izmej486o_CYiYjYin8,26497
|
|
@@ -54,12 +54,12 @@ infrahub/core/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
54
54
|
infrahub/core/diff/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
infrahub/core/diff/artifacts/calculator.py,sha256=qk1DspB3bkKeWJFesLbmziCALVnbRadjrez1kn_IZWU,4435
|
|
56
56
|
infrahub/core/diff/branch_differ.py,sha256=9W9ZClBAQffcZWZOsRekzf4XOG9W_G-1jCR68uvfhPQ,7820
|
|
57
|
-
infrahub/core/diff/calculator.py,sha256=
|
|
57
|
+
infrahub/core/diff/calculator.py,sha256=1kGY-Pgp2ji4hg2KKWOcFXo3f5vmBuCcxSLRhZK1tD0,7250
|
|
58
58
|
infrahub/core/diff/combiner.py,sha256=k28aIP4vwCB-57fTPR37nFzUUtmj9qieH5Y_4iO6HX0,22811
|
|
59
59
|
infrahub/core/diff/conflict_transferer.py,sha256=LZCuS9Dbr4yBf-bd3RF-9cPnaOvVWiU3KBmmwxbRZl0,3968
|
|
60
60
|
infrahub/core/diff/conflicts_enricher.py,sha256=x6qiZOXO2A3BQ2Fm78apJ4WA7HLzPO84JomJfcyuyDg,12552
|
|
61
61
|
infrahub/core/diff/conflicts_extractor.py,sha256=HysGoyNy9qMxfQ0Lh4AVZsRpHUBpezQNUa8cteVLb2k,9715
|
|
62
|
-
infrahub/core/diff/coordinator.py,sha256=
|
|
62
|
+
infrahub/core/diff/coordinator.py,sha256=ngEeLTvQQ4qq0fJV_-xB8k21p9xJbQ3Ljow01Rr5m64,27707
|
|
63
63
|
infrahub/core/diff/data_check_synchronizer.py,sha256=WTY3xwZMTOwWmdmTxYxx6T1WTWmuoUo6QAX1WKoPqBY,5202
|
|
64
64
|
infrahub/core/diff/enricher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
65
|
infrahub/core/diff/enricher/aggregated.py,sha256=1T-19FYAefSQRcfH2nDZN3Y6qqj3oba209Bjutsgqh8,731
|
|
@@ -70,20 +70,21 @@ infrahub/core/diff/enricher/labels.py,sha256=9dD11moB8IxEzhGckKN5Ag83egmYV1XvpoL
|
|
|
70
70
|
infrahub/core/diff/enricher/path_identifier.py,sha256=EtCF3OAr_z3C5lXifurkaZeDDWZFPQi6HgFEfwCzxwc,3570
|
|
71
71
|
infrahub/core/diff/enricher/summary_counts.py,sha256=CheM-Fcla1-_CrU056Z_f6dcT090MIKDyvDuapF0db0,4807
|
|
72
72
|
infrahub/core/diff/exceptions.py,sha256=R-i0mnzNwmHH9HQ1C7YAfL6tys-CbwQCIwTTmjfF_BM,546
|
|
73
|
-
infrahub/core/diff/ipam_diff_parser.py,sha256=
|
|
73
|
+
infrahub/core/diff/ipam_diff_parser.py,sha256=HSqo1KUF9UZVruZ-AD8Koc24pEzqE1nNh8oMoCostSA,6620
|
|
74
74
|
infrahub/core/diff/merger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
infrahub/core/diff/merger/merger.py,sha256=tifn1difKENlB3OI0nGNY3QmGV0lKUUEbfBwKK3Blqs,3408
|
|
76
76
|
infrahub/core/diff/merger/model.py,sha256=z1pjX0SXvZkqCqdcUKae73v6eEBrjUNotnkx0noe2wc,742
|
|
77
|
-
infrahub/core/diff/merger/serializer.py,sha256=
|
|
77
|
+
infrahub/core/diff/merger/serializer.py,sha256=b6tSOkSkBTuxfKutHnSZGkC0_-PMitA9Im7f8RV4pDc,18410
|
|
78
78
|
infrahub/core/diff/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
79
|
infrahub/core/diff/model/diff.py,sha256=EM9yIkZauSeNP13RXn0RSz7IAdGOqUv3-QKJyAEfsD8,9589
|
|
80
|
-
infrahub/core/diff/model/path.py,sha256=
|
|
80
|
+
infrahub/core/diff/model/path.py,sha256=eWSx3XnoJUijPdWH-EQg36bzyEBgD7o90_I8yv7xyOE,29339
|
|
81
81
|
infrahub/core/diff/models.py,sha256=wmOzW4xQ5YreDCr_i56YMFtxbM4-LRgZort49fGJ0BQ,441
|
|
82
82
|
infrahub/core/diff/payload_builder.py,sha256=fzti6hA6bAWRySS3Y2fSoOhNwvQjeSRfyB76Dl6BkVg,1742
|
|
83
83
|
infrahub/core/diff/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
+
infrahub/core/diff/query/all_conflicts.py,sha256=OO_LmfuVOG0Ook7_MKGqEVs1ftWXtRWtq8wVsFBUu9Y,3024
|
|
84
85
|
infrahub/core/diff/query/artifact.py,sha256=tC2KYdCcxAjrMmLMjfwg3SwEiptxA5DrFjOCYkUXNQc,8815
|
|
85
86
|
infrahub/core/diff/query/delete_query.py,sha256=MKB-vaUByt8TbI1yyq_amk9FHhjnAAlY_BBi4MnrrFk,844
|
|
86
|
-
infrahub/core/diff/query/diff_get.py,sha256=
|
|
87
|
+
infrahub/core/diff/query/diff_get.py,sha256=Qoe2AKtsM6L3NoodqcDJI3hBrD2nfaNVRtm0sRSaIP0,7398
|
|
87
88
|
infrahub/core/diff/query/diff_summary.py,sha256=u3SkPQYa7SPreZ2_JHk4SPOS829MVa3rt-RZG908QAE,3825
|
|
88
89
|
infrahub/core/diff/query/drop_tracking_id.py,sha256=qu0-SdCDL0Lwf-0mKuBihGXOkfpMXOAm-_PkWtk_Tz0,816
|
|
89
90
|
infrahub/core/diff/query/field_specifiers.py,sha256=h-UP10pY0CCaJRb_pPzp1x8eLqwAKHP9-cMib-wvz2w,1402
|
|
@@ -96,10 +97,10 @@ infrahub/core/diff/query/roots_metadata.py,sha256=Kzfox3RD26fT51xjj5P9-XtHywkTk2
|
|
|
96
97
|
infrahub/core/diff/query/save.py,sha256=MewTGCvfT1eu2nX0W9vEK-GxI6A60dRT6LJiSB4YZLc,17453
|
|
97
98
|
infrahub/core/diff/query/time_range_query.py,sha256=lBzSwlMZpFd7t_bddu6D1mCnd3HLFNzDcqjoZMzbiAg,2914
|
|
98
99
|
infrahub/core/diff/query/update_conflict_query.py,sha256=z19Y2l9T78A-ydQbqoWYt-eSXhaxMkrD_oLMuaW9FdA,1196
|
|
99
|
-
infrahub/core/diff/query_parser.py,sha256=
|
|
100
|
+
infrahub/core/diff/query_parser.py,sha256=ph0xjvnGXtlvjdH6oAtxxYv9Yjufh-_5ItxvSUZ2bwk,36423
|
|
100
101
|
infrahub/core/diff/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
-
infrahub/core/diff/repository/deserializer.py,sha256=
|
|
102
|
-
infrahub/core/diff/repository/repository.py,sha256=
|
|
102
|
+
infrahub/core/diff/repository/deserializer.py,sha256=Cndi8QVmlfUht5acjuPm53mrNVg03KSzlHZWN6Mbr_8,20255
|
|
103
|
+
infrahub/core/diff/repository/repository.py,sha256=0zxS5MBI2S8wkDA_uxiymvENZYX325mEu_D3PcjlHEs,17001
|
|
103
104
|
infrahub/core/diff/tasks.py,sha256=vJf3HdgkvBG5b_mnmFmdpd9xDeBOuD4XFgNSd1Wbex8,3045
|
|
104
105
|
infrahub/core/enums.py,sha256=5wMcX9x6acU9CTa4B4b6rFwgRZ31N9c9TR3n2EO0BuI,490
|
|
105
106
|
infrahub/core/graph/__init__.py,sha256=jwgNlvRvVs2_s5YC1TqeLucoKBHQ4pDox1v0tbE9oIw,19
|
|
@@ -119,7 +120,7 @@ infrahub/core/ipam/size.py,sha256=Iu7cVvN9MkilyG_AGvYm3g3dSDesKRVdDh_AKH7yAqk,61
|
|
|
119
120
|
infrahub/core/ipam/tasks.py,sha256=5u5WCURGZ-jROScl2Ov0ulW-gMGm1f-5vXnbZbj4a1M,1479
|
|
120
121
|
infrahub/core/ipam/utilization.py,sha256=Urv0thyR6xYgwyQaZDnx170Wcw8nKKZkBymwNTMblX4,6827
|
|
121
122
|
infrahub/core/manager.py,sha256=e2rawz77UG3tLOz3J-JL6-UpJDyJui3uSDg_APnFnAE,46544
|
|
122
|
-
infrahub/core/merge.py,sha256=
|
|
123
|
+
infrahub/core/merge.py,sha256=ibXM0Rb8qVoBuGiW8q6JYdFsLQ9DS-PPTBoK4R2mPhg,10354
|
|
123
124
|
infrahub/core/migrations/__init__.py,sha256=PBewY3fZkqVMABRo_oTZkDtdD7HfCC9nCn-DXtTca1g,1150
|
|
124
125
|
infrahub/core/migrations/graph/__init__.py,sha256=nrPqecgr5myTmwnoucWV8ktzs3JoV5whm8WgKdKWfew,2043
|
|
125
126
|
infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=x_dYBnrZtNQiB6TSl4xwXR-Phn7-4EgrJce76ZfPe_c,1499
|
|
@@ -180,7 +181,7 @@ infrahub/core/query/__init__.py,sha256=iXvVvRB5s6f06UxBqkOucrbH7fOuUgyu1M8VXnlMN
|
|
|
180
181
|
infrahub/core/query/attribute.py,sha256=-84v73Je49QpYcdBcBS6Acj8i8uIGFaOxJyFd2kszD4,11756
|
|
181
182
|
infrahub/core/query/branch.py,sha256=OmYS1n1U4NEbDXBrPAM9lvh_qb_prbRdNnC07N1k-Mw,4561
|
|
182
183
|
infrahub/core/query/delete.py,sha256=BsCeUb11Le3NU2hLMcu05acvWrRVrGncxGxpkWTIzJE,1902
|
|
183
|
-
infrahub/core/query/diff.py,sha256=
|
|
184
|
+
infrahub/core/query/diff.py,sha256=PkNcQ3hgcf-2aT9enauYtoNJVf7z3stkY36QLRF7ZNU,30009
|
|
184
185
|
infrahub/core/query/ipam.py,sha256=xWCemBaiOA00eU3sB8XmOdNOJ1L69Lls3L2GIw5P_CU,28123
|
|
185
186
|
infrahub/core/query/node.py,sha256=UhVfDHvBAIualNNh6rL71snbG_-GaB2XCvTohezFInk,59348
|
|
186
187
|
infrahub/core/query/relationship.py,sha256=30oRyNAM59lYA1nV1Vi0istLke73UoB5aDVzoDbJ76I,35001
|
|
@@ -197,7 +198,7 @@ infrahub/core/relationship/constraints/count.py,sha256=q2KJu4azD3Ad2Zagjz2SUzxd5
|
|
|
197
198
|
infrahub/core/relationship/constraints/interface.py,sha256=96A_IRKAU6FCS3Nqiey5WmUnA4PO73nOlBk5DgUCjbc,296
|
|
198
199
|
infrahub/core/relationship/constraints/peer_kind.py,sha256=d0Ca4tLt45kU1yfe3UN793Dy6ad42mepvXOi8qgo68c,2520
|
|
199
200
|
infrahub/core/relationship/constraints/profiles_kind.py,sha256=ztnc5uh84h-IANHxn6HfIHcJJf4Cga_3waXEh7eIMrQ,2449
|
|
200
|
-
infrahub/core/relationship/model.py,sha256=
|
|
201
|
+
infrahub/core/relationship/model.py,sha256=Gw1FS6FKAq935aqwY6Vufj9gLu9-TDkwibPXkckcnCo,45373
|
|
201
202
|
infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
|
|
202
203
|
infrahub/core/schema/__init__.py,sha256=0L8vLxx7VwuqCkySA3PgZa91rfnIWeQcuwfeDqFqMZM,3926
|
|
203
204
|
infrahub/core/schema/attribute_schema.py,sha256=oyU-Z8BFLnyEy1q41uukfVQKMUevS0sZ8Ug2m_J3MXk,5022
|
|
@@ -220,7 +221,7 @@ infrahub/core/schema/manager.py,sha256=-2cL1CB4uo1i8CYH9eES3qO7TzCthtiDFmIZAslFj
|
|
|
220
221
|
infrahub/core/schema/node_schema.py,sha256=FQJ_l4I8U1Q5uw3c8mSZzvuLeU1bjP1VI_5C2wzW2-Q,6023
|
|
221
222
|
infrahub/core/schema/profile_schema.py,sha256=YnExPbJBz9kECjgMrFG-pLU2r5hI1RWap4lha_E3TjQ,1014
|
|
222
223
|
infrahub/core/schema/relationship_schema.py,sha256=KoLJABsX4i2mjCeIgC43MDDqFcXb26XLaa53ru80LOo,8064
|
|
223
|
-
infrahub/core/schema/schema_branch.py,sha256=
|
|
224
|
+
infrahub/core/schema/schema_branch.py,sha256=2O7p82LLZHBubEgfSvuaVX6KgNLkhUDASwc6S17BUxc,77669
|
|
224
225
|
infrahub/core/schema/schema_branch_computed.py,sha256=jon3PP_QSzKdJKpNu9uPAigdvx1xvOtac1CNCkt2D1U,7632
|
|
225
226
|
infrahub/core/task/__init__.py,sha256=Ied1NvKGJUDmff27z_-yWW8ArenHxGvSvQTaQyx1iHs,128
|
|
226
227
|
infrahub/core/task/task.py,sha256=GiQcOqKaWxjOEGHmNfwCTD6IgLkhHFIQ1_Ev_XvMSLc,3816
|
|
@@ -229,7 +230,7 @@ infrahub/core/task/user_task.py,sha256=Pa6h-3a4-lXdYlPhcEORE_Dt9rxn_KZNvm7hQhMHN
|
|
|
229
230
|
infrahub/core/timestamp.py,sha256=LzftyzfOJ1wedqm69mvkL_oHczzX3vGNuc7kk1KrK7U,1049
|
|
230
231
|
infrahub/core/utils.py,sha256=cphgwcCl-nHIEQ7Ea7k1Ees9TXgCqYcRpbT8-9Hz3To,9070
|
|
231
232
|
infrahub/core/validators/__init__.py,sha256=yl5EZcZxuQ1LYEDD_rEVBHuidRAqkcE_h2iiYSS8oYw,2185
|
|
232
|
-
infrahub/core/validators/aggregated_checker.py,sha256=
|
|
233
|
+
infrahub/core/validators/aggregated_checker.py,sha256=HSX_jEJGVGHRBEjpCl80daT6TX7nXtfuROSS8T2a4dc,4728
|
|
233
234
|
infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
235
|
infrahub/core/validators/attribute/choices.py,sha256=qADBw0qoWCaXDUak2kzztr_KZ8D-WdehCyx3ENcQW2k,4295
|
|
235
236
|
infrahub/core/validators/attribute/enum.py,sha256=R9Wrb7RdssTC355ftyoSCsUTQSxEfek7b7i8UcEddQA,4239
|
|
@@ -247,7 +248,7 @@ infrahub/core/validators/models/violation.py,sha256=HroSoltjf_F3XKTpgSC2b8Sb4dQR
|
|
|
247
248
|
infrahub/core/validators/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
248
249
|
infrahub/core/validators/node/attribute.py,sha256=g466gsIZX0rzrmxf0SZRdNz0oQFkfI_gWferKoqReNY,1760
|
|
249
250
|
infrahub/core/validators/node/generate_profile.py,sha256=p5coSFzxpjsiBFJ1ZaY-_N7177s9fipSpLQq09SCv9g,3148
|
|
250
|
-
infrahub/core/validators/node/hierarchy.py,sha256=
|
|
251
|
+
infrahub/core/validators/node/hierarchy.py,sha256=zMr9wKQXkboxOPCfSu5aumoAr8drSuDxwsDAjCJZ4O0,7455
|
|
251
252
|
infrahub/core/validators/node/inherit_from.py,sha256=ahalDag5Jn-DKr9sf3vmWw7jv69kJ8hBcOBEoLTRwhk,1976
|
|
252
253
|
infrahub/core/validators/node/relationship.py,sha256=ktUrSeyLUMKUcC8kCiTUh3VgQx2MK986UY80XHGUx0U,1711
|
|
253
254
|
infrahub/core/validators/query.py,sha256=L_eTQMMrX83W6fYpW0BUJG4clfgfR6jkETivbs9qPyE,1903
|
|
@@ -335,15 +336,15 @@ infrahub/events/schema_action.py,sha256=vyfGkUar8ZFy448qUb90mPd4GKNgmcMXqyV5U1K-
|
|
|
335
336
|
infrahub/exceptions.py,sha256=PfSJaVtvp6ITwJ6rEk4uhwJ-Ndr8FV_rW4SYZVD3fqM,10549
|
|
336
337
|
infrahub/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
338
|
infrahub/generators/models.py,sha256=PxRGLFgZj_GmJ3Ox9E8L69XXIouyhUVTcF2EYdpt1HE,1832
|
|
338
|
-
infrahub/generators/tasks.py,sha256=
|
|
339
|
+
infrahub/generators/tasks.py,sha256=rEB4W953P466MzEGyMTXtkWfwFRD7wDsUluuqMCOYtw,8646
|
|
339
340
|
infrahub/git/__init__.py,sha256=KeQ9U8UI5jDj6KB6j00Oal7MZmtOD9vKqVgiezG_EQA,281
|
|
340
|
-
infrahub/git/base.py,sha256=
|
|
341
|
+
infrahub/git/base.py,sha256=D5mkZ_7-gUVOIjR1kWh1jtfcinCTJgW93C997ajRsOE,37010
|
|
341
342
|
infrahub/git/constants.py,sha256=xOibCVP3fEkX4u88uTJDw6602HgiqS1GibpOUMdCzdM,165
|
|
342
343
|
infrahub/git/directory.py,sha256=fozxLXXJPweHG95yQwQkR5yy3sfTdmHiczCAJnsUX54,861
|
|
343
|
-
infrahub/git/integrator.py,sha256=
|
|
344
|
-
infrahub/git/models.py,sha256=
|
|
345
|
-
infrahub/git/repository.py,sha256=
|
|
346
|
-
infrahub/git/tasks.py,sha256=
|
|
344
|
+
infrahub/git/integrator.py,sha256=4k2e1vWrJ0ozQsaU-crkzhtXi-gFCIBfvL7xp8h0HB4,56912
|
|
345
|
+
infrahub/git/models.py,sha256=zrEusNMzbqTC8U3SCEeM7tZGegNPWUXYK6A6sD1wL5c,6610
|
|
346
|
+
infrahub/git/repository.py,sha256=tDGdRsIfcjjTtCZdIsTWl7u_Pax29O-Fz8J3Ewq-TbY,11693
|
|
347
|
+
infrahub/git/tasks.py,sha256=GHaILsSSbwwc9Pj6wnmolAfSTiVcpJ9Fh1RtW810gtE,23341
|
|
347
348
|
infrahub/git/worktree.py,sha256=px3zFGy3TpvWFzWR7zHWdRaegocDUZSajpsBd8caDs8,1758
|
|
348
349
|
infrahub/git_credential/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
350
|
infrahub/git_credential/askpass.py,sha256=kbluNIrwKJgdV6KnAMlCtOqxmVypj7pC423Fims5UZE,1544
|
|
@@ -374,7 +375,7 @@ infrahub/graphql/metrics.py,sha256=viq_M57mDYd4DDK7suUttf1FJTgzQ3U50yOuSw_Nd-s,2
|
|
|
374
375
|
infrahub/graphql/models.py,sha256=7kr3DSO_rujPocMIfPyZ5Hwy3Mpnu4ySDMAIE9G5Y7Y,147
|
|
375
376
|
infrahub/graphql/mutations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
376
377
|
infrahub/graphql/mutations/account.py,sha256=MR9hJQCY4LxwdxmhS4UI6GnmwGMdBlOrjq3r0Zx2qgA,5649
|
|
377
|
-
infrahub/graphql/mutations/artifact_definition.py,sha256=
|
|
378
|
+
infrahub/graphql/mutations/artifact_definition.py,sha256=DQofuL3YqLordJEl6MJqFtitwD85bUUKP97RIPavS0Q,3245
|
|
378
379
|
infrahub/graphql/mutations/attribute.py,sha256=a35MP8Pvy_42N5dkO3HKATgJDW6qy9ncDu5t8YI3AUE,2734
|
|
379
380
|
infrahub/graphql/mutations/branch.py,sha256=PmyoQKdFouDGjMUgy9vLyN3HJfyohS5D7DHpMiL8eKE,8533
|
|
380
381
|
infrahub/graphql/mutations/computed_attribute.py,sha256=bD9lF5JZhVKUbZsUBCKPAkQrvIdMMe1bCXxDdkEWOOM,4062
|
|
@@ -449,7 +450,7 @@ infrahub/message_bus/messages/check_artifact_create.py,sha256=ie_8LOPQUkQSEyc0Cr
|
|
|
449
450
|
infrahub/message_bus/messages/check_generator_run.py,sha256=oae5E4MeV2WGBjOAwnDWwrit8SVtm91DcTYnqLr56-Q,1444
|
|
450
451
|
infrahub/message_bus/messages/check_repository_checkdefinition.py,sha256=0MRU7AatXieegQ9JXEUj6tM1tVBJ5B_TzbH_OcUhDwc,1131
|
|
451
452
|
infrahub/message_bus/messages/check_repository_mergeconflicts.py,sha256=K-JblwTlSqnzo2BB_rSYbDlPl6LJ7XOAwT0ewG_pHVY,960
|
|
452
|
-
infrahub/message_bus/messages/check_repository_usercheck.py,sha256=
|
|
453
|
+
infrahub/message_bus/messages/check_repository_usercheck.py,sha256=mJ1_L9IbeBlWVRq-3405xIGSD81dBAyfS_B_YhPcO_I,1700
|
|
453
454
|
infrahub/message_bus/messages/event_branch_create.py,sha256=KdCiFoJ4zLJrt55RMqugIoMeN9jBIyZ6dUdKCeMR6T8,417
|
|
454
455
|
infrahub/message_bus/messages/event_branch_delete.py,sha256=2mxTg2DMAup4HjLJ38vD2GCUE7jvjxrb214rdgGLO6o,412
|
|
455
456
|
infrahub/message_bus/messages/event_branch_merge.py,sha256=6qMoRr_7gmgomJx5aRkJROQ4oTqDdUiUWg6Ulsh_Yow,305
|
|
@@ -476,7 +477,7 @@ infrahub/message_bus/operations/__init__.py,sha256=3aR-vjgfsiydBPBIZGrfZyRc42Jvx
|
|
|
476
477
|
infrahub/message_bus/operations/check/__init__.py,sha256=fEClyDpjem6WU8VYMT4eiOCYeSIphRWH9tMCb1sk_yo,97
|
|
477
478
|
infrahub/message_bus/operations/check/artifact.py,sha256=onfViUi0WBpxVkMV12oyyHFQbP4EhtpZrYJYPOT_TTE,3862
|
|
478
479
|
infrahub/message_bus/operations/check/generator.py,sha256=UbfMv19qdRUzCAHzWakpIWEtXepgvCbrkLILmE_aD2Y,6747
|
|
479
|
-
infrahub/message_bus/operations/check/repository.py,sha256=
|
|
480
|
+
infrahub/message_bus/operations/check/repository.py,sha256=DX6fVQv287sAEUUj4ohDvJy_QUjcGKkv6mpn9ZYawUw,11898
|
|
480
481
|
infrahub/message_bus/operations/event/__init__.py,sha256=D4jVZSs73S6tQtXNNHu6EgTbim317RKx5Z1q9VdHQXA,93
|
|
481
482
|
infrahub/message_bus/operations/event/branch.py,sha256=BgZro7nRQhnoL5lfeVT7zzwIUOsOO_p3oz7uVvbq9ZU,2406
|
|
482
483
|
infrahub/message_bus/operations/event/node.py,sha256=KhTIofJuST9pYRYyDI2MYy_JM9GWeHLDFcVkY0YVfmI,718
|
|
@@ -490,13 +491,13 @@ infrahub/message_bus/operations/git/repository.py,sha256=JSoQ7qtUTpIrFWNCRJcGYft
|
|
|
490
491
|
infrahub/message_bus/operations/refresh/__init__.py,sha256=vBuvTL4zRRpOMXATmckQ3bx2GnNwhxicFECA8-8ZZXk,47
|
|
491
492
|
infrahub/message_bus/operations/refresh/registry.py,sha256=AWyIVoh7DvwqD_ihPAa6zbPogUGBZcz8tzTJpySoiUY,1301
|
|
492
493
|
infrahub/message_bus/operations/requests/__init__.py,sha256=rfYGwmM0qWeQ-BMGYwyoSNF3EGrkrXZp7-UOyHjy49w,217
|
|
493
|
-
infrahub/message_bus/operations/requests/artifact_definition.py,sha256=
|
|
494
|
+
infrahub/message_bus/operations/requests/artifact_definition.py,sha256=iOBdguLKqYcqGjLQSJVyc1XS39FULo9HksBL-jqmQpE,6529
|
|
494
495
|
infrahub/message_bus/operations/requests/generator_definition.py,sha256=cTl-GICgxPVwLRx4yW7tTCOD3W2p2zKvRmZDcTvQ7RM,6105
|
|
495
|
-
infrahub/message_bus/operations/requests/proposed_change.py,sha256=
|
|
496
|
+
infrahub/message_bus/operations/requests/proposed_change.py,sha256=MegJsFyYHqrC4ocm43-fxfh-1X03v4Jz4z-QW6-gRJs,21361
|
|
496
497
|
infrahub/message_bus/operations/requests/repository.py,sha256=upeuacErScwFmO5FZRfoG5TvVRkWzLCbFuqrPmaxBh0,5064
|
|
497
498
|
infrahub/message_bus/operations/send/__init__.py,sha256=ivuUTAknLiWfArR44SxA40l0UKVkdHjtDIx0mg06IcE,39
|
|
498
499
|
infrahub/message_bus/operations/send/echo.py,sha256=WEqZaB8l2QUNp20Nta66Kh-lzxiZ7iwhrCwb75-EJaE,622
|
|
499
|
-
infrahub/message_bus/types.py,sha256=
|
|
500
|
+
infrahub/message_bus/types.py,sha256=Hui3N-j-by4DpB9eK98NPtr7VFueK65uoxLLxE3YQf8,5574
|
|
500
501
|
infrahub/middleware.py,sha256=g6lPpXewWNcLjyzRsr7FjdTIbdc5H2HitGQX-L7itgI,657
|
|
501
502
|
infrahub/models.py,sha256=QmwJwo3hNCta8BXM7eLsD9qv1S73Rj0cC_crLpadHTc,715
|
|
502
503
|
infrahub/permissions/__init__.py,sha256=hGEPIA1YuVFZKXSZ_IzckmIQZ9GPXAZB92Df_FGAKH4,468
|
|
@@ -513,7 +514,7 @@ infrahub/pools/prefix.py,sha256=J4MuYlrmvB0U1_pshvx2wEhSeCR3AeMcQa0TifdRjNU,7035
|
|
|
513
514
|
infrahub/proposed_change/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
514
515
|
infrahub/proposed_change/constants.py,sha256=w8fPxKWJM1DzeClRd7Vr53hxkzl2Bq-rnXWfE2y3Bz0,1296
|
|
515
516
|
infrahub/proposed_change/models.py,sha256=BlIAsteCgmOjV-k7Wvv70Ho6LJKQcPX9ClhQHHuxoT0,1182
|
|
516
|
-
infrahub/proposed_change/tasks.py,sha256=
|
|
517
|
+
infrahub/proposed_change/tasks.py,sha256=9Yw1cuaPxVI3T6USvxSDFZZ3OCHIaooz8mKX5uBk7r8,21771
|
|
517
518
|
infrahub/pytest_plugin.py,sha256=mzaxMiVqrXKJabHFpK5MvlaNjNKVeHJllQzK0HOtSo0,6722
|
|
518
519
|
infrahub/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
519
520
|
infrahub/schema/constants.py,sha256=CGwmuav3UHpvoQELLh4gKMfXKDsB8mLpsUPMu1nsrhg,48
|
|
@@ -542,7 +543,7 @@ infrahub/services/adapters/workflow/worker.py,sha256=wsBnDoGLFkDXBNzD46o4cP3C6VF
|
|
|
542
543
|
infrahub/services/component.py,sha256=R9J5445WWxwpOwgSvpt0bFehCNCuCp8z8eo7HGPgAls,5711
|
|
543
544
|
infrahub/services/protocols.py,sha256=JNkBXvd0oiqnApdGUMfgbhOG1duYdt9dLPeb5Ow4_5E,782
|
|
544
545
|
infrahub/services/scheduler.py,sha256=-i_iEWwqCMjfg-2rekmJGMpLrRVsZwFN8CcAtaAy03Y,3013
|
|
545
|
-
infrahub/storage.py,sha256=
|
|
546
|
+
infrahub/storage.py,sha256=FfLRYXzG69P_gEY91-5isgtFnI_QWIkkgL8-MhBQBJU,1864
|
|
546
547
|
infrahub/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
547
548
|
infrahub/support/macro.py,sha256=KX9Ky7i0yDG4kEK97YQJD71TbZ3DuNiwEu294YvWFEs,1816
|
|
548
549
|
infrahub/task_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -559,20 +560,21 @@ infrahub/tasks/registry.py,sha256=6nUlT9rDggpBZYmWV3Xtf10vb2GzM8m4YPP5CNSpOAA,31
|
|
|
559
560
|
infrahub/tasks/telemetry.py,sha256=n-ZBa7qcmaiM_wImm11gv5NvAPYvSiTkedcLgymvwos,5006
|
|
560
561
|
infrahub/trace.py,sha256=UUk5VeFR93S5zzh4v2tlEriPzZULWqC45xTpVauD1QA,3720
|
|
561
562
|
infrahub/transformations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
562
|
-
infrahub/transformations/
|
|
563
|
-
infrahub/transformations/
|
|
563
|
+
infrahub/transformations/constants.py,sha256=_cVDcd8m1HCyKf8k_pAwdoaPTGD7524reuJTjMV-elc,31
|
|
564
|
+
infrahub/transformations/models.py,sha256=s_nnl1dBUCizNXIFBzoQlLazTuqKD2CnqPXHV0m-qC4,1587
|
|
565
|
+
infrahub/transformations/tasks.py,sha256=GNd-_K6vKM-nD1VnGa5bh5YTsELd7z9YyEjCsMO3PdY,1874
|
|
564
566
|
infrahub/types.py,sha256=X-MZ6q8ykYRuDiU8ieaG_nLwFcMLKbs-MULG3Ojx8iU,11295
|
|
565
567
|
infrahub/utils.py,sha256=RL9HY0K2wMz-yHMOofdCBI9ayK9DUuZ-jVzELpTCp30,2382
|
|
566
568
|
infrahub/visuals.py,sha256=N62G4oOOIYNFpvMjKq7uos-oZAZybGMp57uh5jsVX9w,627
|
|
567
569
|
infrahub/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
568
570
|
infrahub/webhook/constants.py,sha256=rcd4ZEu72Xer7YXhem2zs3d1Heia2QyOWT5xb6bkOqc,108
|
|
569
|
-
infrahub/webhook/models.py,sha256=
|
|
571
|
+
infrahub/webhook/models.py,sha256=Gj7iRzWXyU7hkc36HXbIDw80RgAnRA3qUM78vcJdWqQ,4019
|
|
570
572
|
infrahub/webhook/tasks.py,sha256=oIXmaiSAYsQE_uOUTK-Se_p-5v8n9roGJK5wXTaF3oo,9657
|
|
571
573
|
infrahub/worker.py,sha256=JtTM-temURUbpEy-bkKJuTt-GKoiHFDrOe9SyVTIXEM,49
|
|
572
574
|
infrahub/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
573
575
|
infrahub/workers/infrahub_async.py,sha256=neDHdNBCZ5ZIVpzBzMT5XMKuzuud4k7fTjCYJSsUB5Q,8731
|
|
574
576
|
infrahub/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
|
-
infrahub/workflows/catalogue.py,sha256=
|
|
577
|
+
infrahub/workflows/catalogue.py,sha256=X5ILr3lwkr9dnIYS72nOnWSypHGDmVrRUug_aWH6z2I,13377
|
|
576
578
|
infrahub/workflows/constants.py,sha256=7je2FF7tJH6x_ZNqHKZfQX91X7I5gmD8OECN3dE_eqI,651
|
|
577
579
|
infrahub/workflows/initialization.py,sha256=0TrVsH69IiJhWfl92f9aWXzfJW5-rWBycOgDXPc6Gsg,3030
|
|
578
580
|
infrahub/workflows/models.py,sha256=Egyrlxsl3QiW7vITis7Lg8MznG9QLCUs9_KHzf_Qh3c,2573
|
|
@@ -581,55 +583,55 @@ infrahub_sdk/__init__.py,sha256=weZAa06Ar0NO5IOKLQICtCceHUCKQxbkBxHebqQGJ1o,401
|
|
|
581
583
|
infrahub_sdk/_importer.py,sha256=8oHTMxa_AMO_qbfb3UXNfjSr31S5YJTcqe-YMrixY_E,2257
|
|
582
584
|
infrahub_sdk/analyzer.py,sha256=UDJN372vdAiuAv2TEyPUlsSVoUfZN6obWkIokNNaHbA,4148
|
|
583
585
|
infrahub_sdk/async_typer.py,sha256=Gj7E8EGdjA-XF404vr9cBt20mmbroQh7N68HXhWYx00,892
|
|
584
|
-
infrahub_sdk/batch.py,sha256=
|
|
586
|
+
infrahub_sdk/batch.py,sha256=LRZ_04ic56ll9FBjgXCYrJRDJcwB3wR1yX4grrQutDQ,3795
|
|
585
587
|
infrahub_sdk/branch.py,sha256=hmtoIekQ1uusoJ6yEKlw6vrFMTAHJrXu-YsqqCQC_kc,12716
|
|
586
588
|
infrahub_sdk/checks.py,sha256=AmlCim-9Mbhpye_yYAaV_NM-pFL4_JvQGEVM3cJsaqY,5700
|
|
587
589
|
infrahub_sdk/client.py,sha256=yuD-uvx_5LLXqHm9sjo0jei1AH-xGgl4DhYJcoqH8uw,99592
|
|
588
590
|
infrahub_sdk/code_generator.py,sha256=UJoqofjO7WSHygORhok0RRUv7HG4aTcl6htczaKNBjc,4411
|
|
589
|
-
infrahub_sdk/config.py,sha256=
|
|
591
|
+
infrahub_sdk/config.py,sha256=xVKPFor6lwl1wVaWcvQywvVQXAMRlU7Sz0bk2hF8u48,7161
|
|
590
592
|
infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
|
|
591
593
|
infrahub_sdk/ctl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
592
594
|
infrahub_sdk/ctl/_file.py,sha256=FdbveH5t6jVZvANTGDYKRTt1BhfnL6D_6qKDiJlXxkE,498
|
|
593
595
|
infrahub_sdk/ctl/branch.py,sha256=CgKi7GwkI0cebbYOfaQQd3h7uG4JVmoEUVQHda_MOr4,4733
|
|
594
|
-
infrahub_sdk/ctl/check.py,sha256=
|
|
596
|
+
infrahub_sdk/ctl/check.py,sha256=t5WmvTx6qViWlnGEzyfmixyiA3uxsFGOLbhSju_QESA,7879
|
|
595
597
|
infrahub_sdk/ctl/cli.py,sha256=A9jJKYBo5opzIIyWYf6niyAHhy49V59g6biueMDFbpE,328
|
|
596
|
-
infrahub_sdk/ctl/cli_commands.py,sha256=
|
|
598
|
+
infrahub_sdk/ctl/cli_commands.py,sha256=d46DBf6hRynKEn_olTuaVnPF1qgo6paF0mlSPtENkGA,18889
|
|
597
599
|
infrahub_sdk/ctl/client.py,sha256=6bmXmQta9qQCJ8HybQwt2uSF2X1Em91xNFpwiKFujxs,2083
|
|
598
600
|
infrahub_sdk/ctl/config.py,sha256=y3kTvfxDO2FKzgvaIXKPKOES7BqXT-s9Kuww7ROfs-4,3039
|
|
599
601
|
infrahub_sdk/ctl/constants.py,sha256=owzqZB_xkTzxsYvX3NyuSwATzA0rIABmbKiWzuqz3aw,3229
|
|
600
602
|
infrahub_sdk/ctl/exceptions.py,sha256=U3y76emz3vbj55SHAeB58CEK80UFBVnSIBNUHpm_BNs,467
|
|
601
|
-
infrahub_sdk/ctl/exporter.py,sha256=
|
|
603
|
+
infrahub_sdk/ctl/exporter.py,sha256=cxnnLFGg845zgvzBGNrhJbvf3v771bMZmHZ509hqR60,1878
|
|
602
604
|
infrahub_sdk/ctl/generator.py,sha256=jVsI0w6CeQQuGpo1-bcR2_4jCgs00Owe7JU_tJdRp6c,4126
|
|
603
|
-
infrahub_sdk/ctl/importer.py,sha256=
|
|
605
|
+
infrahub_sdk/ctl/importer.py,sha256=VAFKlOY0YLscF79Rzws7n1NTOQORFoW2mvYORW4vbPU,1879
|
|
604
606
|
infrahub_sdk/ctl/menu.py,sha256=6cd_0KDiUUu73nXtDlg-oots8DKqaHcYBy-llpDEN4g,1465
|
|
605
607
|
infrahub_sdk/ctl/object.py,sha256=_E0DYtaoPZVAuaT-a4Ar6ZoIpsMsc0rn_0flEQKgfto,1284
|
|
606
608
|
infrahub_sdk/ctl/parameters.py,sha256=aU2H41svfG309m2WdH6R9H5xgQ4gevn3ItOu5ltuVas,413
|
|
607
609
|
infrahub_sdk/ctl/render.py,sha256=KJsZQ6iNW4u8K_dtEKmJxtTpkSMR_zP2YT-IP6Z85tc,401
|
|
608
|
-
infrahub_sdk/ctl/repository.py,sha256=
|
|
610
|
+
infrahub_sdk/ctl/repository.py,sha256=jyfRRE3mMPMEKJUIr5XfCdG9Y144MvDT86sE-op_mWY,4754
|
|
609
611
|
infrahub_sdk/ctl/schema.py,sha256=28eHiWWsuQgOVa8FiIa94pb6tk6-xTQXq9Il2MnbnkU,7060
|
|
610
612
|
infrahub_sdk/ctl/transform.py,sha256=5qRqiKeEefs0rda6RAFAAj1jkCKdbPYE_t8O-n436LQ,414
|
|
611
|
-
infrahub_sdk/ctl/utils.py,sha256=
|
|
613
|
+
infrahub_sdk/ctl/utils.py,sha256=dVYkbNkL221dVCE5QhP0l_Uq6AjAPIO0KTa4fcUiliA,6922
|
|
612
614
|
infrahub_sdk/ctl/validate.py,sha256=6DHhk6ubZih-FaNfX6m8G0HwOEJuJk6DFHCg1oAaZtQ,3879
|
|
613
|
-
infrahub_sdk/data.py,sha256=
|
|
615
|
+
infrahub_sdk/data.py,sha256=4d8Fd1s7lTeOu8JWXsK2m2BM8t_5HG0Z73fnCZGc7Pc,841
|
|
614
616
|
infrahub_sdk/diff.py,sha256=Ms-3YyXo-DoF1feV9qP7GKakBYUNFsULZdy-yMEG71w,4258
|
|
615
617
|
infrahub_sdk/exceptions.py,sha256=S563xPBgwvdXkVS42XLLTuCkdVnrXOZyDSY8aFd3udc,4436
|
|
616
618
|
infrahub_sdk/generator.py,sha256=TVxSDByNnnuqFOpmi2mBgUZnU07PudvH8J-aM8QtwMM,5242
|
|
617
619
|
infrahub_sdk/graphql.py,sha256=qw1HJ95-JhRS_zrsyDj5P_PWKuUNgoXvH1q-Kfs27IA,5861
|
|
618
620
|
infrahub_sdk/groups.py,sha256=GL14ByW4GHrkqOLJ-_vGhu6bkYDxljqPtkErcQVehv0,711
|
|
619
621
|
infrahub_sdk/jinja2.py,sha256=lTfV9E_P5gApaX6RW9M8U8oixQi-0H3U8wcs8fdGVaU,1150
|
|
620
|
-
infrahub_sdk/node.py,sha256=
|
|
622
|
+
infrahub_sdk/node.py,sha256=I2mgUWQD5gSIg3tp4cILu2TIHz57kSoLEDt8HHeuMqA,87320
|
|
621
623
|
infrahub_sdk/object_store.py,sha256=d-EDnxPpw_7BsbjbGbH50rjt-1-Ojj2zNrhFansP5hA,4299
|
|
622
624
|
infrahub_sdk/playback.py,sha256=ubkY1LiW_wFwm4auerdQ0zFJcFJZ1SYQT6-d4bxzaLg,1906
|
|
623
|
-
infrahub_sdk/protocols.py,sha256=
|
|
625
|
+
infrahub_sdk/protocols.py,sha256=1anewqFJNtAQKoAptHlDiiWCEP66pDlFNLMu1NbpRnM,21196
|
|
624
626
|
infrahub_sdk/protocols_base.py,sha256=9aE5K2mwZ0xAza_yBppVWVRDds9ALhQqJofOjT-Alao,3882
|
|
625
627
|
infrahub_sdk/pytest_plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
626
628
|
infrahub_sdk/pytest_plugin/exceptions.py,sha256=ek2WyTBPuZdxhJClOhLo4EcFdvgE4BP0q26OiAr-Sec,2185
|
|
627
629
|
infrahub_sdk/pytest_plugin/items/__init__.py,sha256=Au90dLk6lbSgRAoqrZOdYJ6m0lwFJYHFiAQHrcc6_rI,1026
|
|
628
630
|
infrahub_sdk/pytest_plugin/items/base.py,sha256=-S7Xp3Zf7oQkw8EuqUI9lWWBzhKTfNdkn0UUjSqX9Zc,3068
|
|
629
631
|
infrahub_sdk/pytest_plugin/items/check.py,sha256=cEF9jC61EJzlYCf1YUGF241XO7F7zhkHAg2T_EPmIN8,3364
|
|
630
|
-
infrahub_sdk/pytest_plugin/items/graphql_query.py,sha256=
|
|
631
|
-
infrahub_sdk/pytest_plugin/items/jinja2_transform.py,sha256=
|
|
632
|
-
infrahub_sdk/pytest_plugin/items/python_transform.py,sha256=
|
|
632
|
+
infrahub_sdk/pytest_plugin/items/graphql_query.py,sha256=q6MyqeuwwzHSUyZLGo3wyae8RbVjYSiEN_H6fm4cGT0,2340
|
|
633
|
+
infrahub_sdk/pytest_plugin/items/jinja2_transform.py,sha256=H9hJPO6LeZ07RlNlmwCs1CPm_6jygG6FMUyH1-GE_lA,5354
|
|
634
|
+
infrahub_sdk/pytest_plugin/items/python_transform.py,sha256=Yp5cy6CmlBFDCG2x40msRKiS3NTBdFWi9rmGGD95jcM,4114
|
|
633
635
|
infrahub_sdk/pytest_plugin/loader.py,sha256=x9sOKGYQeDewx_y5RlGPF2C-ZV44eolfC0c6BOjDAug,4248
|
|
634
636
|
infrahub_sdk/pytest_plugin/models.py,sha256=2zpsLuBvtZEGe1yH57_JzKSk_wWhebz77R8Y-VfuD48,7131
|
|
635
637
|
infrahub_sdk/pytest_plugin/plugin.py,sha256=Sv4eSZmAuTvQmtAAJU1FOz6tFuUdvdybIK6XuA1U6KM,4507
|
|
@@ -638,7 +640,7 @@ infrahub_sdk/queries.py,sha256=s4gnx67e-MNg-3jP4Vx1jreO9uiW3uYPllFQgaTODdQ,2308
|
|
|
638
640
|
infrahub_sdk/query_groups.py,sha256=Hg6MdjU9wSWQmtKktlmKCHcwjlodz7L_VPPou-jC8vk,11434
|
|
639
641
|
infrahub_sdk/recorder.py,sha256=G134AfAwE5efSqArVJneurF2JIEuhvSJWWI3woPczgI,2194
|
|
640
642
|
infrahub_sdk/repository.py,sha256=PbSHHl6ajIeZu1t4pH1j7qzR-DPOkGuzubcNM02NuV0,1011
|
|
641
|
-
infrahub_sdk/schema/__init__.py,sha256=
|
|
643
|
+
infrahub_sdk/schema/__init__.py,sha256=mC3nojBmJT9VVuiGPJjOAMfP-pUHWoG71I1K8VKLQTU,25841
|
|
642
644
|
infrahub_sdk/schema/main.py,sha256=rySdEBJNMVpulWKMRw3ARqSbZPiFBHRYR2nqZvYp1VY,10580
|
|
643
645
|
infrahub_sdk/schema/repository.py,sha256=AAITXGprCPb2WptJSRhj9gEbRrW1HHM-yEPYAgsztcU,11299
|
|
644
646
|
infrahub_sdk/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -646,7 +648,7 @@ infrahub_sdk/spec/menu.py,sha256=LvNLuBEkiLTMNgM3kseIzM7wQ_zK_2uXM_anUNu6Pfc,105
|
|
|
646
648
|
infrahub_sdk/spec/object.py,sha256=H55fctUrQUDbRrRJJQQcXHppVOeMye6ykBoo6lCasDw,5012
|
|
647
649
|
infrahub_sdk/store.py,sha256=kWJ9UvirLuSHLuDDzTd4-ualTkuRocy9W0J7TdL60Po,5734
|
|
648
650
|
infrahub_sdk/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
649
|
-
infrahub_sdk/testing/docker.py,sha256=
|
|
651
|
+
infrahub_sdk/testing/docker.py,sha256=O8RUA7ddor7A1eXCppRfXkzz3LAaYY1imFyzXj08TEM,1871
|
|
650
652
|
infrahub_sdk/testing/repository.py,sha256=9s4MMaMljbJe97Ua4bJgc64giQ2UMC0bD5qIqYd4YNk,3571
|
|
651
653
|
infrahub_sdk/testing/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
652
654
|
infrahub_sdk/testing/schemas/animal.py,sha256=5frpoBCeGaM05X8sFxIDQUH93JrPsa-kIYKb8xcQxcw,6796
|
|
@@ -658,7 +660,7 @@ infrahub_sdk/transfer/constants.py,sha256=kdYkVWif8v4IiWbbff3Mn3JnPCXD2ONI3SLXQM
|
|
|
658
660
|
infrahub_sdk/transfer/exceptions.py,sha256=MK-jvBTYMyasjQ_0qeQBLSP_ocob0yhrBDuJ2XLgUvU,237
|
|
659
661
|
infrahub_sdk/transfer/exporter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
660
662
|
infrahub_sdk/transfer/exporter/interface.py,sha256=6_X7Hay7VbE7TGYjmt2iv5AOrSe-skZP8nTALQzYzIw,297
|
|
661
|
-
infrahub_sdk/transfer/exporter/json.py,sha256=
|
|
663
|
+
infrahub_sdk/transfer/exporter/json.py,sha256=IqZpuxVXyZpjdhohGwNnTtQ4bzRQlZNrbRAdu4PryXE,6892
|
|
662
664
|
infrahub_sdk/transfer/importer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
663
665
|
infrahub_sdk/transfer/importer/interface.py,sha256=TN7FH_LgThkBjrpWwkdTZIVJPtNklAYiK3Mn6RPs7IM,195
|
|
664
666
|
infrahub_sdk/transfer/importer/json.py,sha256=-Tlmg22TiBrEqXOSLMnUzlCFOZ2M0Q8lWyPbwjUjifw,9654
|
|
@@ -670,10 +672,10 @@ infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
|
|
|
670
672
|
infrahub_sdk/yaml.py,sha256=dxdzEjuaG-OwF2XIcA2YXoFEmF4TeiwKju5K2uOQhgQ,2963
|
|
671
673
|
infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
|
|
672
674
|
infrahub_testcontainers/container.py,sha256=g0AOvnV3z_-wGCMOUBCaK4-U_ST38YvGXYqZbfGtKXY,4421
|
|
673
|
-
infrahub_testcontainers/docker-compose.test.yml,sha256=
|
|
675
|
+
infrahub_testcontainers/docker-compose.test.yml,sha256=lS-mXnL73rOVXs3nW1R_BsfSGH8_d38fwxVkH_3Uf9o,5352
|
|
674
676
|
infrahub_testcontainers/helpers.py,sha256=3K6Bbfcr19DwH9pfc-WE6ehqIUbAXx1NruVOkKJoXvY,2274
|
|
675
|
-
infrahub_server-1.1.
|
|
676
|
-
infrahub_server-1.1.
|
|
677
|
-
infrahub_server-1.1.
|
|
678
|
-
infrahub_server-1.1.
|
|
679
|
-
infrahub_server-1.1.
|
|
677
|
+
infrahub_server-1.1.6.dist-info/LICENSE.txt,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
|
|
678
|
+
infrahub_server-1.1.6.dist-info/METADATA,sha256=_2pIvHST_lQUNyM-tEl1ljmLfWpb9-mRHuvZw9F77LU,4702
|
|
679
|
+
infrahub_server-1.1.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
680
|
+
infrahub_server-1.1.6.dist-info/entry_points.txt,sha256=JNQoBcLpUyfeOMhls_-uX1CdJ8Vl-AFSh9UhzTcKdjA,329
|
|
681
|
+
infrahub_server-1.1.6.dist-info/RECORD,,
|
|
@@ -112,7 +112,7 @@ services:
|
|
|
112
112
|
- "storage_data:/opt/infrahub/storage"
|
|
113
113
|
tty: true
|
|
114
114
|
healthcheck:
|
|
115
|
-
test: curl -s -f -o /dev/null http://localhost:8000/api/
|
|
115
|
+
test: curl -s -f -o /dev/null http://localhost:8000/api/config || exit 1
|
|
116
116
|
interval: 5s
|
|
117
117
|
timeout: 5s
|
|
118
118
|
retries: 20
|
|
File without changes
|
|
File without changes
|
|
File without changes
|