infrahub-server 1.4.0b1__py3-none-any.whl → 1.4.0rc0__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/schema.py +3 -7
- infrahub/cli/db.py +25 -0
- infrahub/cli/db_commands/__init__.py +0 -0
- infrahub/cli/db_commands/check_inheritance.py +284 -0
- infrahub/cli/upgrade.py +3 -0
- infrahub/config.py +4 -4
- infrahub/core/attribute.py +6 -0
- infrahub/core/constants/__init__.py +1 -0
- infrahub/core/graph/__init__.py +1 -1
- infrahub/core/initialization.py +26 -21
- infrahub/core/manager.py +2 -2
- infrahub/core/migrations/__init__.py +2 -0
- infrahub/core/migrations/graph/__init__.py +4 -2
- infrahub/core/migrations/graph/m033_deduplicate_relationship_vertices.py +1 -1
- infrahub/core/migrations/graph/m035_orphan_relationships.py +43 -0
- infrahub/core/migrations/graph/{m035_drop_attr_value_index.py → m036_drop_attr_value_index.py} +3 -3
- infrahub/core/migrations/graph/{m036_index_attr_vals.py → m037_index_attr_vals.py} +3 -3
- infrahub/core/migrations/query/node_duplicate.py +26 -3
- infrahub/core/migrations/schema/attribute_kind_update.py +156 -0
- infrahub/core/models.py +5 -1
- infrahub/core/node/resource_manager/ip_address_pool.py +50 -48
- infrahub/core/node/resource_manager/ip_prefix_pool.py +55 -53
- infrahub/core/node/resource_manager/number_pool.py +20 -18
- infrahub/core/query/branch.py +37 -20
- infrahub/core/query/node.py +15 -0
- infrahub/core/relationship/model.py +13 -13
- infrahub/core/schema/definitions/internal.py +1 -1
- infrahub/core/schema/generated/attribute_schema.py +1 -1
- infrahub/core/validators/attribute/kind.py +5 -1
- infrahub/core/validators/determiner.py +22 -2
- infrahub/events/__init__.py +2 -0
- infrahub/events/proposed_change_action.py +22 -0
- infrahub/graphql/context.py +1 -1
- infrahub/graphql/mutations/proposed_change.py +5 -0
- infrahub/graphql/mutations/relationship.py +1 -1
- infrahub/graphql/mutations/schema.py +14 -1
- infrahub/graphql/schema.py +3 -14
- infrahub/graphql/types/event.py +8 -0
- infrahub/permissions/__init__.py +3 -0
- infrahub/permissions/constants.py +13 -0
- infrahub/permissions/globals.py +32 -0
- infrahub/task_manager/event.py +5 -1
- infrahub_sdk/client.py +6 -6
- infrahub_sdk/ctl/repository.py +0 -51
- infrahub_sdk/ctl/schema.py +9 -9
- infrahub_sdk/protocols.py +6 -40
- infrahub_sdk/utils.py +9 -5
- {infrahub_server-1.4.0b1.dist-info → infrahub_server-1.4.0rc0.dist-info}/METADATA +4 -4
- {infrahub_server-1.4.0b1.dist-info → infrahub_server-1.4.0rc0.dist-info}/RECORD +52 -48
- {infrahub_server-1.4.0b1.dist-info → infrahub_server-1.4.0rc0.dist-info}/LICENSE.txt +0 -0
- {infrahub_server-1.4.0b1.dist-info → infrahub_server-1.4.0rc0.dist-info}/WHEEL +0 -0
- {infrahub_server-1.4.0b1.dist-info → infrahub_server-1.4.0rc0.dist-info}/entry_points.txt +0 -0
infrahub_sdk/ctl/schema.py
CHANGED
|
@@ -36,7 +36,7 @@ def validate_schema_content_and_exit(client: InfrahubClient, schemas: list[Schem
|
|
|
36
36
|
has_error: bool = False
|
|
37
37
|
for schema_file in schemas:
|
|
38
38
|
try:
|
|
39
|
-
client.schema.validate(data=schema_file.
|
|
39
|
+
client.schema.validate(data=schema_file.content)
|
|
40
40
|
except ValidationError as exc:
|
|
41
41
|
console.print(f"[red]Schema not valid, found '{len(exc.errors())}' error(s) in {schema_file.location}")
|
|
42
42
|
has_error = True
|
|
@@ -48,7 +48,7 @@ def validate_schema_content_and_exit(client: InfrahubClient, schemas: list[Schem
|
|
|
48
48
|
raise typer.Exit(1)
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
def display_schema_load_errors(response: dict[str, Any], schemas_data: list[
|
|
51
|
+
def display_schema_load_errors(response: dict[str, Any], schemas_data: list[dict]) -> None:
|
|
52
52
|
console.print("[red]Unable to load the schema:")
|
|
53
53
|
if "detail" not in response:
|
|
54
54
|
handle_non_detail_errors(response=response)
|
|
@@ -87,7 +87,7 @@ def handle_non_detail_errors(response: dict[str, Any]) -> None:
|
|
|
87
87
|
if "error" in response:
|
|
88
88
|
console.print(f" {response.get('error')}")
|
|
89
89
|
elif "errors" in response:
|
|
90
|
-
for error in response
|
|
90
|
+
for error in response.get("errors"):
|
|
91
91
|
console.print(f" {error.get('message')}")
|
|
92
92
|
else:
|
|
93
93
|
console.print(f" '{response}'")
|
|
@@ -97,9 +97,9 @@ def valid_error_path(loc_path: list[Any]) -> bool:
|
|
|
97
97
|
return len(loc_path) >= 6 and loc_path[0] == "body" and loc_path[1] == "schemas"
|
|
98
98
|
|
|
99
99
|
|
|
100
|
-
def get_node(schemas_data: list[
|
|
101
|
-
if schema_index < len(schemas_data) and node_index < len(schemas_data[schema_index].
|
|
102
|
-
return schemas_data[schema_index].
|
|
100
|
+
def get_node(schemas_data: list[dict], schema_index: int, node_index: int) -> dict | None:
|
|
101
|
+
if schema_index < len(schemas_data) and node_index < len(schemas_data[schema_index].content["nodes"]):
|
|
102
|
+
return schemas_data[schema_index].content["nodes"][node_index]
|
|
103
103
|
return None
|
|
104
104
|
|
|
105
105
|
|
|
@@ -122,7 +122,7 @@ async def load(
|
|
|
122
122
|
validate_schema_content_and_exit(client=client, schemas=schemas_data)
|
|
123
123
|
|
|
124
124
|
start_time = time.time()
|
|
125
|
-
response = await client.schema.load(schemas=[item.
|
|
125
|
+
response = await client.schema.load(schemas=[item.content for item in schemas_data], branch=branch)
|
|
126
126
|
loading_time = time.time() - start_time
|
|
127
127
|
|
|
128
128
|
if response.errors:
|
|
@@ -170,10 +170,10 @@ async def check(
|
|
|
170
170
|
client = initialize_client()
|
|
171
171
|
validate_schema_content_and_exit(client=client, schemas=schemas_data)
|
|
172
172
|
|
|
173
|
-
success, response = await client.schema.check(schemas=[item.
|
|
173
|
+
success, response = await client.schema.check(schemas=[item.content for item in schemas_data], branch=branch)
|
|
174
174
|
|
|
175
175
|
if not success:
|
|
176
|
-
display_schema_load_errors(response=response
|
|
176
|
+
display_schema_load_errors(response=response, schemas_data=schemas_data)
|
|
177
177
|
else:
|
|
178
178
|
for schema_file in schemas_data:
|
|
179
179
|
console.print(f"[green] schema '{schema_file.location}' is Valid!")
|
infrahub_sdk/protocols.py
CHANGED
|
@@ -233,10 +233,6 @@ class CoreWebhook(CoreNode):
|
|
|
233
233
|
validate_certificates: BooleanOptional
|
|
234
234
|
|
|
235
235
|
|
|
236
|
-
class CoreWeightedPoolResource(CoreNode):
|
|
237
|
-
allocation_weight: IntegerOptional
|
|
238
|
-
|
|
239
|
-
|
|
240
236
|
class LineageOwner(CoreNode):
|
|
241
237
|
pass
|
|
242
238
|
|
|
@@ -325,7 +321,6 @@ class CoreCheckDefinition(CoreTaskTarget):
|
|
|
325
321
|
|
|
326
322
|
|
|
327
323
|
class CoreCustomWebhook(CoreWebhook, CoreTaskTarget):
|
|
328
|
-
shared_key: StringOptional
|
|
329
324
|
transformation: RelatedNode
|
|
330
325
|
|
|
331
326
|
|
|
@@ -410,12 +405,12 @@ class CoreGraphQLQueryGroup(CoreGroup):
|
|
|
410
405
|
|
|
411
406
|
|
|
412
407
|
class CoreGroupAction(CoreAction):
|
|
413
|
-
|
|
408
|
+
add_members: Boolean
|
|
414
409
|
group: RelatedNode
|
|
415
410
|
|
|
416
411
|
|
|
417
412
|
class CoreGroupTriggerRule(CoreTriggerRule):
|
|
418
|
-
|
|
413
|
+
members_added: Boolean
|
|
419
414
|
group: RelatedNode
|
|
420
415
|
|
|
421
416
|
|
|
@@ -447,7 +442,7 @@ class CoreNodeTriggerAttributeMatch(CoreNodeTriggerMatch):
|
|
|
447
442
|
|
|
448
443
|
class CoreNodeTriggerRelationshipMatch(CoreNodeTriggerMatch):
|
|
449
444
|
relationship_name: String
|
|
450
|
-
|
|
445
|
+
added: Boolean
|
|
451
446
|
peer: StringOptional
|
|
452
447
|
|
|
453
448
|
|
|
@@ -462,7 +457,6 @@ class CoreNumberPool(CoreResourcePool, LineageSource):
|
|
|
462
457
|
node_attribute: String
|
|
463
458
|
start_range: Integer
|
|
464
459
|
end_range: Integer
|
|
465
|
-
pool_type: Enum
|
|
466
460
|
|
|
467
461
|
|
|
468
462
|
class CoreObjectPermission(CoreBasePermission):
|
|
@@ -487,10 +481,7 @@ class CoreProposedChange(CoreTaskTarget):
|
|
|
487
481
|
source_branch: String
|
|
488
482
|
destination_branch: String
|
|
489
483
|
state: Enum
|
|
490
|
-
is_draft: Boolean
|
|
491
|
-
total_comments: IntegerOptional
|
|
492
484
|
approved_by: RelationshipManager
|
|
493
|
-
rejected_by: RelationshipManager
|
|
494
485
|
reviewers: RelationshipManager
|
|
495
486
|
created_by: RelatedNode
|
|
496
487
|
comments: RelationshipManager
|
|
@@ -564,14 +555,6 @@ class InternalAccountToken(CoreNode):
|
|
|
564
555
|
account: RelatedNode
|
|
565
556
|
|
|
566
557
|
|
|
567
|
-
class InternalIPPrefixAvailable(BuiltinIPPrefix):
|
|
568
|
-
pass
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
class InternalIPRangeAvailable(BuiltinIPAddress):
|
|
572
|
-
last_address: IPHost
|
|
573
|
-
|
|
574
|
-
|
|
575
558
|
class InternalRefreshToken(CoreNode):
|
|
576
559
|
expiration: DateTime
|
|
577
560
|
account: RelatedNode
|
|
@@ -783,10 +766,6 @@ class CoreWebhookSync(CoreNodeSync):
|
|
|
783
766
|
validate_certificates: BooleanOptional
|
|
784
767
|
|
|
785
768
|
|
|
786
|
-
class CoreWeightedPoolResourceSync(CoreNodeSync):
|
|
787
|
-
allocation_weight: IntegerOptional
|
|
788
|
-
|
|
789
|
-
|
|
790
769
|
class LineageOwnerSync(CoreNodeSync):
|
|
791
770
|
pass
|
|
792
771
|
|
|
@@ -875,7 +854,6 @@ class CoreCheckDefinitionSync(CoreTaskTargetSync):
|
|
|
875
854
|
|
|
876
855
|
|
|
877
856
|
class CoreCustomWebhookSync(CoreWebhookSync, CoreTaskTargetSync):
|
|
878
|
-
shared_key: StringOptional
|
|
879
857
|
transformation: RelatedNodeSync
|
|
880
858
|
|
|
881
859
|
|
|
@@ -960,12 +938,12 @@ class CoreGraphQLQueryGroupSync(CoreGroupSync):
|
|
|
960
938
|
|
|
961
939
|
|
|
962
940
|
class CoreGroupActionSync(CoreActionSync):
|
|
963
|
-
|
|
941
|
+
add_members: Boolean
|
|
964
942
|
group: RelatedNodeSync
|
|
965
943
|
|
|
966
944
|
|
|
967
945
|
class CoreGroupTriggerRuleSync(CoreTriggerRuleSync):
|
|
968
|
-
|
|
946
|
+
members_added: Boolean
|
|
969
947
|
group: RelatedNodeSync
|
|
970
948
|
|
|
971
949
|
|
|
@@ -997,7 +975,7 @@ class CoreNodeTriggerAttributeMatchSync(CoreNodeTriggerMatchSync):
|
|
|
997
975
|
|
|
998
976
|
class CoreNodeTriggerRelationshipMatchSync(CoreNodeTriggerMatchSync):
|
|
999
977
|
relationship_name: String
|
|
1000
|
-
|
|
978
|
+
added: Boolean
|
|
1001
979
|
peer: StringOptional
|
|
1002
980
|
|
|
1003
981
|
|
|
@@ -1012,7 +990,6 @@ class CoreNumberPoolSync(CoreResourcePoolSync, LineageSourceSync):
|
|
|
1012
990
|
node_attribute: String
|
|
1013
991
|
start_range: Integer
|
|
1014
992
|
end_range: Integer
|
|
1015
|
-
pool_type: Enum
|
|
1016
993
|
|
|
1017
994
|
|
|
1018
995
|
class CoreObjectPermissionSync(CoreBasePermissionSync):
|
|
@@ -1037,10 +1014,7 @@ class CoreProposedChangeSync(CoreTaskTargetSync):
|
|
|
1037
1014
|
source_branch: String
|
|
1038
1015
|
destination_branch: String
|
|
1039
1016
|
state: Enum
|
|
1040
|
-
is_draft: Boolean
|
|
1041
|
-
total_comments: IntegerOptional
|
|
1042
1017
|
approved_by: RelationshipManagerSync
|
|
1043
|
-
rejected_by: RelationshipManagerSync
|
|
1044
1018
|
reviewers: RelationshipManagerSync
|
|
1045
1019
|
created_by: RelatedNodeSync
|
|
1046
1020
|
comments: RelationshipManagerSync
|
|
@@ -1114,14 +1088,6 @@ class InternalAccountTokenSync(CoreNodeSync):
|
|
|
1114
1088
|
account: RelatedNodeSync
|
|
1115
1089
|
|
|
1116
1090
|
|
|
1117
|
-
class InternalIPPrefixAvailableSync(BuiltinIPPrefixSync):
|
|
1118
|
-
pass
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
class InternalIPRangeAvailableSync(BuiltinIPAddressSync):
|
|
1122
|
-
last_address: IPHost
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
1091
|
class InternalRefreshTokenSync(CoreNodeSync):
|
|
1126
1092
|
expiration: DateTime
|
|
1127
1093
|
account: RelatedNodeSync
|
infrahub_sdk/utils.py
CHANGED
|
@@ -142,14 +142,18 @@ def deep_merge_dict(dicta: dict, dictb: dict, path: list | None = None) -> dict:
|
|
|
142
142
|
if path is None:
|
|
143
143
|
path = []
|
|
144
144
|
for key in dictb:
|
|
145
|
+
b_val = dictb[key]
|
|
145
146
|
if key in dicta:
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
a_val = dicta[key]
|
|
148
|
+
if isinstance(a_val, dict) and isinstance(b_val, dict):
|
|
149
|
+
deep_merge_dict(a_val, b_val, path + [str(key)])
|
|
150
|
+
elif isinstance(a_val, list) and isinstance(b_val, list):
|
|
149
151
|
# Merge lists
|
|
150
152
|
# Cannot use compare_list because list of dicts won't work (dict not hashable)
|
|
151
|
-
dicta[key] = [i for i in
|
|
152
|
-
elif
|
|
153
|
+
dicta[key] = [i for i in a_val if i not in b_val] + b_val
|
|
154
|
+
elif a_val is None and b_val is not None:
|
|
155
|
+
dicta[key] = b_val
|
|
156
|
+
elif a_val == b_val or (a_val is not None and b_val is None):
|
|
153
157
|
continue
|
|
154
158
|
else:
|
|
155
159
|
raise ValueError("Conflict at %s" % ".".join(path + [str(key)]))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: infrahub-server
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.0rc0
|
|
4
4
|
Summary: Infrahub is taking a new approach to Infrastructure Management by providing a new generation of datastore to organize and control all the data that defines how an infrastructure should run.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Author: OpsMill
|
|
@@ -23,7 +23,7 @@ Requires-Dist: copier (>=9.8.0,<10.0.0)
|
|
|
23
23
|
Requires-Dist: dulwich (>=0.22.7,<0.23.0)
|
|
24
24
|
Requires-Dist: email-validator (>=2.1,<2.2)
|
|
25
25
|
Requires-Dist: fast-depends (>=2.4.12,<3.0.0)
|
|
26
|
-
Requires-Dist: fastapi (
|
|
26
|
+
Requires-Dist: fastapi (==0.116.1)
|
|
27
27
|
Requires-Dist: fastapi-storages (>=0.3,<0.4)
|
|
28
28
|
Requires-Dist: gitpython (>=3,<4)
|
|
29
29
|
Requires-Dist: graphene (>=3.4,<3.5)
|
|
@@ -40,8 +40,8 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc (==1.28.1)
|
|
|
40
40
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http (==1.28.1)
|
|
41
41
|
Requires-Dist: opentelemetry-instrumentation-aio-pika (==0.49b1)
|
|
42
42
|
Requires-Dist: opentelemetry-instrumentation-fastapi (==0.49b1)
|
|
43
|
-
Requires-Dist: prefect (==3.4.
|
|
44
|
-
Requires-Dist: prefect-redis (==0.2.
|
|
43
|
+
Requires-Dist: prefect (==3.4.13)
|
|
44
|
+
Requires-Dist: prefect-redis (==0.2.4)
|
|
45
45
|
Requires-Dist: pyarrow (>=14,<15)
|
|
46
46
|
Requires-Dist: pydantic (>=2.10,<2.11)
|
|
47
47
|
Requires-Dist: pydantic-settings (>=2.8,<2.9)
|
|
@@ -22,7 +22,7 @@ infrahub/api/menu.py,sha256=xp5bj5JXQZA6ZEPWoTSGGSfTXZ1sVmehMxr3VSG7FlQ,1216
|
|
|
22
22
|
infrahub/api/oauth2.py,sha256=wFsWrwfyoNBC1JYzbt1nzU-OjjxWPARIBbE_14jzFmI,5493
|
|
23
23
|
infrahub/api/oidc.py,sha256=3fU-fNOoMkqEzoLuTmlhCVaZvL6M3sAub8RP1_LvCO8,8299
|
|
24
24
|
infrahub/api/query.py,sha256=6I95AxNS9O8aIopfObk9hYxlZHawRqESOKjjEDax6-g,7312
|
|
25
|
-
infrahub/api/schema.py,sha256=
|
|
25
|
+
infrahub/api/schema.py,sha256=dUSB51YXaWELZuXYI7UNemd60MJPPBv4m6-MexXOE0k,17450
|
|
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
|
|
@@ -39,13 +39,15 @@ infrahub/branch/triggers.py,sha256=4sywoEX79fY2NkaGe6tTHnmytf4k6gXDm2FJHkkRJOw,7
|
|
|
39
39
|
infrahub/cli/__init__.py,sha256=U0Ku6La8qpVpLdIkhCRqxQyvAFJG8WRZAh2yx6yzxCs,1781
|
|
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=hqZcklxTgAKuXWOthrltOdENsiiTthq6tqySxu4HPFE,37727
|
|
43
|
+
infrahub/cli/db_commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
+
infrahub/cli/db_commands/check_inheritance.py,sha256=a9aRg6yW0K5364Crqp_U9VDZjT9Shqu3on5nkuoZaYo,11389
|
|
43
45
|
infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
|
|
44
46
|
infrahub/cli/git_agent.py,sha256=ajT9-kdd3xLIysOPe8GqZyCDMkpNyhqfWjBg9HPWVcg,5240
|
|
45
47
|
infrahub/cli/patch.py,sha256=ztOkWyo0l_Wo0WX10bvSqGZibKzowrwx82oi69cjwkY,6018
|
|
46
48
|
infrahub/cli/server.py,sha256=zeKgJE9V0usSMVBwye0sRNNh6Ctj-nSZHqHbNskqyz4,2248
|
|
47
49
|
infrahub/cli/tasks.py,sha256=uVtMuUbcXwb6H3hnunUl9JJh99XShpWn2pwryVrR7hg,1952
|
|
48
|
-
infrahub/cli/upgrade.py,sha256=
|
|
50
|
+
infrahub/cli/upgrade.py,sha256=6NJ0y_CmVUVVo-ICER0rLFsMx_VcGUx_wH9OCErSJGA,4660
|
|
49
51
|
infrahub/components.py,sha256=lSLDCDwIZoakZ2iBrfHi9c3BxzugMiuiZO6V7Egt6tk,107
|
|
50
52
|
infrahub/computed_attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
53
|
infrahub/computed_attribute/constants.py,sha256=oTMPEfRuf2mcfCkBpRLWRALO6nsLHpFm9jJGu0lowS4,446
|
|
@@ -53,14 +55,14 @@ infrahub/computed_attribute/gather.py,sha256=xhH4dsgCjRFyFshns4Iu3sloe5m1bVMRdeQ
|
|
|
53
55
|
infrahub/computed_attribute/models.py,sha256=P_MijLwCVd7394oyTTfYQ3HmX5wIF966jdchuZaLRbs,17361
|
|
54
56
|
infrahub/computed_attribute/tasks.py,sha256=FMNJYPuLp2tBKP-ENNUlZhc6nkq78yl7817mCKTBt2g,17415
|
|
55
57
|
infrahub/computed_attribute/triggers.py,sha256=ve1cUj0CZ7dU1VtZkxET9LD8StszKIL9mCkTZpCeUaI,2304
|
|
56
|
-
infrahub/config.py,sha256=
|
|
58
|
+
infrahub/config.py,sha256=E207uq69Zzp2u4BHbZk4DZDL27kZtW1ODdTuu2QC_A8,37935
|
|
57
59
|
infrahub/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
60
|
infrahub/constants/database.py,sha256=WmV1iuOk4xulxZHOVvO3sS_VF1eTf7fKh0TPe_RnfV4,507
|
|
59
61
|
infrahub/constants/environment.py,sha256=ry-6qsBzSumOjjiq1D3XNoquf1LWqFKiQSJj8t6nET4,32
|
|
60
62
|
infrahub/context.py,sha256=8SZRKSECkkcsNNzDaKEUJ7Nyr0EzUfToAy969LXjQVk,1554
|
|
61
63
|
infrahub/core/__init__.py,sha256=z6EJBZyCYCBqinoBtX9li6BTBbbGV8WCkE_4CrEsmDA,104
|
|
62
64
|
infrahub/core/account.py,sha256=s8ZC7J8rtEvQZQjbVuiKMlPhl6aQjtAjbZhBejLC0X8,26182
|
|
63
|
-
infrahub/core/attribute.py,sha256=
|
|
65
|
+
infrahub/core/attribute.py,sha256=f1-XLuRzbpG7T8y6pqQQqxQkbGDWhS5AZA2_r_mzY-A,44537
|
|
64
66
|
infrahub/core/branch/__init__.py,sha256=h0oIj0gHp1xI-N1cYW8_N6VZ81CBOmLuiUt5cS5nKuk,49
|
|
65
67
|
infrahub/core/branch/enums.py,sha256=vGnaTCzikvMcLikKN25TJ8uCmhnD448dp1ve1_tLjwQ,186
|
|
66
68
|
infrahub/core/branch/models.py,sha256=q8n1KNNPQ3bwz_cMJ_GwGsjF1FPcpazwdUYr6x4Gg-w,20296
|
|
@@ -68,7 +70,7 @@ infrahub/core/branch/tasks.py,sha256=ReijjzGzS4aLB8h3FNrDqFN-xZ7bmxcrYW8zm_sFgZ8
|
|
|
68
70
|
infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
71
|
infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
|
|
70
72
|
infrahub/core/changelog/models.py,sha256=UgfJdOFUkMmjeUKe1mPCO7WE3jNENw0UJU3LWFf20HQ,29920
|
|
71
|
-
infrahub/core/constants/__init__.py,sha256=
|
|
73
|
+
infrahub/core/constants/__init__.py,sha256=fw1Fmfrj_42ZH3hM41JTKeo26kqyIYbJx1T0eQ5wfZg,9783
|
|
72
74
|
infrahub/core/constants/database.py,sha256=x5tWaT3e0WfCxxrHMcSoHUBMfcUzStLi133CqHjSosU,368
|
|
73
75
|
infrahub/core/constants/infrahubkind.py,sha256=65xU-8LYBcHbRc3PKAsuE_j37i-1Mpi0LmMXfCWSIUQ,3012
|
|
74
76
|
infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
|
|
@@ -137,11 +139,11 @@ infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_S
|
|
|
137
139
|
infrahub/core/diff/repository/repository.py,sha256=u0QTMY1e2dknG_DuRAwzFt-Lp1_mdj5lqF2ymt77k9E,25581
|
|
138
140
|
infrahub/core/diff/tasks.py,sha256=jSXlenTJ5Fc189Xvm971e3-gBDRnfN19cxNaWvEFwAE,3306
|
|
139
141
|
infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
|
|
140
|
-
infrahub/core/graph/__init__.py,sha256=
|
|
142
|
+
infrahub/core/graph/__init__.py,sha256=ZYp8RkLFWRjTvuZPPtnGwr38etrRSIUJZiJjqVJdf3o,19
|
|
141
143
|
infrahub/core/graph/constraints.py,sha256=lmuzrKDFoeSKRiLtycB9PXi6zhMYghczKrPYvfWyy90,10396
|
|
142
144
|
infrahub/core/graph/index.py,sha256=A9jzEE_wldBJsEsflODeMt4GM8sPmmbHAJRNdFioR1k,1736
|
|
143
145
|
infrahub/core/graph/schema.py,sha256=o50Jcy6GBRk55RkDJSMIDDwHhLD7y_RWOirI9rCex4A,10776
|
|
144
|
-
infrahub/core/initialization.py,sha256=
|
|
146
|
+
infrahub/core/initialization.py,sha256=QUHRXUJu4TWqBYE_qvmu5Q77ZQYwLfSmYEzHgP6ziO0,21896
|
|
145
147
|
infrahub/core/integrity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
148
|
infrahub/core/integrity/object_conflict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
149
|
infrahub/core/integrity/object_conflict/conflict_recorder.py,sha256=gDOx-Ohle0GxfsNm-FEaBMipaQLMxMVg3BoAHEhuK5E,6125
|
|
@@ -153,10 +155,10 @@ infrahub/core/ipam/reconciler.py,sha256=48do6rx12G25gaKuOguSrVdUDXVpMr3t6ogU1hdP
|
|
|
153
155
|
infrahub/core/ipam/size.py,sha256=Iu7cVvN9MkilyG_AGvYm3g3dSDesKRVdDh_AKH7yAqk,614
|
|
154
156
|
infrahub/core/ipam/tasks.py,sha256=SRVkCv6TBI_VfTZ_tL_ABDaPn3cUNR6vmBJCuahInjI,1492
|
|
155
157
|
infrahub/core/ipam/utilization.py,sha256=d-zpXCaWsHgJxBLopCDd7y4sJYvHcIzzpYhbTMIgH74,6733
|
|
156
|
-
infrahub/core/manager.py,sha256=
|
|
158
|
+
infrahub/core/manager.py,sha256=xMXPwlaGNnghkRUW0ILwJAUlBQJZqo9cGp9GVyqkqYk,47564
|
|
157
159
|
infrahub/core/merge.py,sha256=TNZpxjNYcl3dnvE8eYXaWSXFDYeEa8DDsS9XbR2XKlA,11217
|
|
158
|
-
infrahub/core/migrations/__init__.py,sha256=
|
|
159
|
-
infrahub/core/migrations/graph/__init__.py,sha256=
|
|
160
|
+
infrahub/core/migrations/__init__.py,sha256=dIExw90CrdTByeJqpiWkaZBclpAfzatG2H6fXx54su0,1305
|
|
161
|
+
infrahub/core/migrations/graph/__init__.py,sha256=RUaz8bfg8ifZjf6Hfl-J7F5qOP-UbOiFwlalzI9pSok,4091
|
|
160
162
|
infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
|
|
161
163
|
infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
|
|
162
164
|
infrahub/core/migrations/graph/m003_relationship_parent_optional.py,sha256=Aya-s98XfE9C7YluOwEjilwgnjaBnZxp27w_Xdv_NmU,2330
|
|
@@ -189,18 +191,20 @@ infrahub/core/migrations/graph/m029_duplicates_cleanup.py,sha256=DpOwTMzkdi9-kha
|
|
|
189
191
|
infrahub/core/migrations/graph/m030_illegal_edges.py,sha256=Saz7QmUqwuLiBtSBdQf54E1Bj3hz0k9KAOQ-pwPBH4g,2797
|
|
190
192
|
infrahub/core/migrations/graph/m031_check_number_attributes.py,sha256=s3sVoKIkrZAMVZtWWH8baJW42UCAePp5nMUKy5FDSiM,4944
|
|
191
193
|
infrahub/core/migrations/graph/m032_cleanup_orphaned_branch_relationships.py,sha256=AEc91iCtHWsNvhSuqZGLAn7wL5FWhiqM73OSwIeB7_0,3535
|
|
192
|
-
infrahub/core/migrations/graph/m033_deduplicate_relationship_vertices.py,sha256=
|
|
194
|
+
infrahub/core/migrations/graph/m033_deduplicate_relationship_vertices.py,sha256=YJ0XtOMdfjGPHWtzlMXIm3dX405cTdOoynUFztXVMQI,3735
|
|
193
195
|
infrahub/core/migrations/graph/m034_find_orphaned_schema_fields.py,sha256=FekohfsamyLNzGBeRBiZML94tz2fUcvTzttfv6mD1cw,3547
|
|
194
|
-
infrahub/core/migrations/graph/
|
|
195
|
-
infrahub/core/migrations/graph/
|
|
196
|
+
infrahub/core/migrations/graph/m035_orphan_relationships.py,sha256=K0J5gzFF5gY-QMom0tRGDckqw19aN0uSV8AZ8KdKSMo,1371
|
|
197
|
+
infrahub/core/migrations/graph/m036_drop_attr_value_index.py,sha256=z2BplzX0mue3lOxrM7xnWDNrs7N3TGdFKHZR-u0wDDY,1439
|
|
198
|
+
infrahub/core/migrations/graph/m037_index_attr_vals.py,sha256=bJB4yPWE73XA_ErUcnY90CR09_jbtA0jW6tE5U0GvQ4,22730
|
|
196
199
|
infrahub/core/migrations/query/__init__.py,sha256=JoWOUWlV6IzwxWxObsfCnAAKUOHJkE7dZlOsfB64ZEo,876
|
|
197
200
|
infrahub/core/migrations/query/attribute_add.py,sha256=oitzB-PPAclfyNtcwCWJY3RdI5Zi4oEnR62BDzn1UQk,4835
|
|
198
201
|
infrahub/core/migrations/query/attribute_rename.py,sha256=onb9Nanht1Tz47JgneAcFsuhqqvPS6dvI2nNjRupLLo,6892
|
|
199
202
|
infrahub/core/migrations/query/delete_element_in_schema.py,sha256=QYw2LIpJGQXBPOTm6w9gFdCltZRd-V_YUh5l9HmGthg,7402
|
|
200
|
-
infrahub/core/migrations/query/node_duplicate.py,sha256=
|
|
203
|
+
infrahub/core/migrations/query/node_duplicate.py,sha256=yaxeZBYd52jgEB5XY1PZxksTLpM9x1ZEFbwetFeRKTQ,9623
|
|
201
204
|
infrahub/core/migrations/query/relationship_duplicate.py,sha256=hjUFjNqhaFc2tEg79BXR2xDr_4Wdmu9fVF02cTEICTk,7319
|
|
202
205
|
infrahub/core/migrations/query/schema_attribute_update.py,sha256=fLclNEgoikO_ddlFEo1ts-dZwTXITA85kdJ00fXFxqo,3382
|
|
203
206
|
infrahub/core/migrations/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
|
+
infrahub/core/migrations/schema/attribute_kind_update.py,sha256=bJj33I9q1JlcA5RZG7elQVE8kaHcPJbgvm7RrdD86Po,6180
|
|
204
208
|
infrahub/core/migrations/schema/attribute_name_update.py,sha256=gebaeQX1MLmOxupTPcCzLJdeEQlUzs3XIl7T15-RdXY,1595
|
|
205
209
|
infrahub/core/migrations/schema/models.py,sha256=F1yp0GM-HutGdzhE0uPFq9JCTH9iHM3V4iDm2e2c4YU,1357
|
|
206
210
|
infrahub/core/migrations/schema/node_attribute_add.py,sha256=xFaSahGbBvloSeya5Xqh5KbmlfkqQ4jfN2_DvLFdxEs,3002
|
|
@@ -210,7 +214,7 @@ infrahub/core/migrations/schema/node_remove.py,sha256=NdPNZH9qXf6HbyTMSaQ3aU58XW
|
|
|
210
214
|
infrahub/core/migrations/schema/placeholder_dummy.py,sha256=3T3dBwC_ZyehOJr2KRKFD6CXaq8QIjVk0N-nWAMvFYw,308
|
|
211
215
|
infrahub/core/migrations/schema/tasks.py,sha256=2J8gHGSP-WhxSi4GYhOc9xAJOg_S1ONm3YE4_ukLKxw,4164
|
|
212
216
|
infrahub/core/migrations/shared.py,sha256=G72VIHtH4DOM09UOXZE2zfILGDej7nPKdvdfrPRMp7M,7921
|
|
213
|
-
infrahub/core/models.py,sha256=
|
|
217
|
+
infrahub/core/models.py,sha256=p2XwVzLiTNwz_4Bs4MTJD64wneR9bCUtfGs_ybBQn1c,26354
|
|
214
218
|
infrahub/core/node/__init__.py,sha256=6qtg-hzuH-hTxX4hJrhAB_lUmcIx404wyn35WhiMgZo,42435
|
|
215
219
|
infrahub/core/node/base.py,sha256=BAowVRCK_WC50yXym1kCyUppJDJnrODGU5uoj1s0Yd4,2564
|
|
216
220
|
infrahub/core/node/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -223,9 +227,9 @@ infrahub/core/node/ipam.py,sha256=NWb3TUlVQOGAzq1VvDwISLh61HML0jnalsJ7QojqGwQ,26
|
|
|
223
227
|
infrahub/core/node/permissions.py,sha256=uQzQ62IHcSly6fzPre0nQzlrkCIKzH4HyQkODKB3ZWM,2207
|
|
224
228
|
infrahub/core/node/proposed_change.py,sha256=WXwii_MsWOkkd4A_5LVhmE5uIRHZnpNhoySbdXi-hPw,1617
|
|
225
229
|
infrahub/core/node/resource_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
|
-
infrahub/core/node/resource_manager/ip_address_pool.py,sha256=
|
|
227
|
-
infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=
|
|
228
|
-
infrahub/core/node/resource_manager/number_pool.py,sha256=
|
|
230
|
+
infrahub/core/node/resource_manager/ip_address_pool.py,sha256=NPCVLTHLdG6BZTJ7MJkqlGCRMkr6V2PyL91ItuoNqpQ,5198
|
|
231
|
+
infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=SfP0i1aM5tTPU7wKmij4fwzGtmDPeg0s9LRfKMaANOU,5460
|
|
232
|
+
infrahub/core/node/resource_manager/number_pool.py,sha256=QbPIbBJSGy8Et3PlsRXp7ToFZLO2bpQPk1P4PRtunLk,5762
|
|
229
233
|
infrahub/core/node/standard.py,sha256=gvAY-1UWj4lUc8tqVZ8AqOFhCR5rhR--gI25g5AOD8o,7284
|
|
230
234
|
infrahub/core/path.py,sha256=CTSnW6OcvnGNqTcOUZcVOMDSB4PLmeGYpY9U84uv9r8,6181
|
|
231
235
|
infrahub/core/property.py,sha256=rwsqeaIvCMkHfJYl4WfsNPAS7KS0POo5rAN7vAprXGA,5102
|
|
@@ -233,11 +237,11 @@ infrahub/core/protocols.py,sha256=CXwYfHHUgJIFMZvsv9Fc8VBAfvXDzy7Bu4RJvQNj6no,12
|
|
|
233
237
|
infrahub/core/protocols_base.py,sha256=cEi6giHtEUmaD0JWfDfWHJhEv_6wjaBA3oJRJCbvc6Q,3411
|
|
234
238
|
infrahub/core/query/__init__.py,sha256=2qIMaODLwJ6pK6BUd5vODTlA15Aecf5I8_-J44UlCso,23089
|
|
235
239
|
infrahub/core/query/attribute.py,sha256=xojZIHX-XfXlN_jgM1TQ1Bp4dXr4oLEWlr2A7igTvIg,12658
|
|
236
|
-
infrahub/core/query/branch.py,sha256=
|
|
240
|
+
infrahub/core/query/branch.py,sha256=7gj83jDWPWjFUZud7lMQ0xwl9ag3FL-ZOlmY5Kuq7UU,4307
|
|
237
241
|
infrahub/core/query/delete.py,sha256=7tPP1qtNV6QGYtmgE1RKsuQ9oxENnMTVkttLvJ2PiKg,1927
|
|
238
242
|
infrahub/core/query/diff.py,sha256=jJCkZRo5jGaf-yPAnQ_5ju6sCnknDK0E7vGpqEnaU_k,36881
|
|
239
243
|
infrahub/core/query/ipam.py,sha256=dvP5K34Oj5cA1B42YhJml0fwSsnt-rt_ZWgcun8bFNU,28728
|
|
240
|
-
infrahub/core/query/node.py,sha256=
|
|
244
|
+
infrahub/core/query/node.py,sha256=OfWS9PfltP89aU4n0KhEjrvAkhAGj9Vl4hcfKcE9LD8,70969
|
|
241
245
|
infrahub/core/query/relationship.py,sha256=KmS9zrcr-RViXxiITXOjq1t0s-AfsICHk3wyyirZBfA,47817
|
|
242
246
|
infrahub/core/query/resource_manager.py,sha256=uSvs1WZmdbyt_PjaUi9lXnYdPt-lhJV1RjYoUHYjQdk,16620
|
|
243
247
|
infrahub/core/query/standard_node.py,sha256=mPBXyqk4RzoWRUX4NoojoVi8zk-sJ03GmzmUaWqOgSI,4825
|
|
@@ -254,7 +258,7 @@ infrahub/core/relationship/constraints/peer_kind.py,sha256=Bropiav4y6r0iU2KfWJ_k
|
|
|
254
258
|
infrahub/core/relationship/constraints/peer_parent.py,sha256=z7elpC8xS_ovAF28Haq-RNpFtTEiUehzowiDgYGT68U,2343
|
|
255
259
|
infrahub/core/relationship/constraints/peer_relatives.py,sha256=Ye79l7njaWxZkU2chTOaptIjvKBIawsNCl0IQxCTDtM,2737
|
|
256
260
|
infrahub/core/relationship/constraints/profiles_kind.py,sha256=nEZPGtGcmelZ1Nb8EPcQ-7_zCLCNIYwwWbU6C9fLj5E,2464
|
|
257
|
-
infrahub/core/relationship/model.py,sha256=
|
|
261
|
+
infrahub/core/relationship/model.py,sha256=mVptkvzEQJXORagSPK-FUjIWito1Sx6BlIMskp_EgxY,47173
|
|
258
262
|
infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
|
|
259
263
|
infrahub/core/schema/__init__.py,sha256=Tif-BUwYWVQ0PJGZHFog6lFgnwZevXk3iBcr3zK__BU,4192
|
|
260
264
|
infrahub/core/schema/attribute_parameters.py,sha256=ABL1GEsOl4_CcDvK9_NucGMaF6LUeOjAxbDQVm_G7eg,6516
|
|
@@ -286,10 +290,10 @@ infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2
|
|
|
286
290
|
infrahub/core/schema/definitions/core/transform.py,sha256=UB2TaBjabIiErivBR16srxq7fgYoKjmjZaVun8vxXvY,3061
|
|
287
291
|
infrahub/core/schema/definitions/core/webhook.py,sha256=rpJ0aw5e64C9WQ5xFx1FvJ7G9tsyZyYIib89OEM4pn4,4346
|
|
288
292
|
infrahub/core/schema/definitions/deprecated.py,sha256=PUXfRupaxNT3R_a6eFnvAcvXKOZenVb7VnuLAskZfT0,829
|
|
289
|
-
infrahub/core/schema/definitions/internal.py,sha256=
|
|
293
|
+
infrahub/core/schema/definitions/internal.py,sha256=KXXLBybIIfEE3HVCsQtlSCKSqTKQ7epa7-I64UvpFa4,34526
|
|
290
294
|
infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
|
|
291
295
|
infrahub/core/schema/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
292
|
-
infrahub/core/schema/generated/attribute_schema.py,sha256=
|
|
296
|
+
infrahub/core/schema/generated/attribute_schema.py,sha256=twhckKUz9SEMnDg-bUzTmTHn7W6MF0KFB6R5IFTYvzk,5618
|
|
293
297
|
infrahub/core/schema/generated/base_node_schema.py,sha256=YR4FxbXd_K6Z0qim5oBQ4EsKSBJMf5DVCuoXZ8LnmMg,4428
|
|
294
298
|
infrahub/core/schema/generated/genericnode_schema.py,sha256=FvfeYfld9YeKHOzyH6G3zFkZP_ETrWfvvOpggLT8waY,1059
|
|
295
299
|
infrahub/core/schema/generated/node_schema.py,sha256=PMgbQX1PC5ixQsjOFw_bcEfa4txGNUI6BV6OkFDG3wQ,1631
|
|
@@ -313,7 +317,7 @@ infrahub/core/validators/aggregated_checker.py,sha256=KA23ewrwOz8EsezsvF8cY4U0js
|
|
|
313
317
|
infrahub/core/validators/attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
318
|
infrahub/core/validators/attribute/choices.py,sha256=a5rMF80FARUvOHjyL9VfpKoQ5oNmQuTr9Kjh6Kr0fMA,4217
|
|
315
319
|
infrahub/core/validators/attribute/enum.py,sha256=3PzkYUuzbt8NqRH4IP4cMjoDxzUvJzbNYC5ZpW5zKZQ,4161
|
|
316
|
-
infrahub/core/validators/attribute/kind.py,sha256=
|
|
320
|
+
infrahub/core/validators/attribute/kind.py,sha256=uzMo4Qf-AyvSlwgURgALd7QVMEl6237tb148-wgTDjE,4611
|
|
317
321
|
infrahub/core/validators/attribute/length.py,sha256=H0nP2x2ynzcbMnc6neIje01wXipbt8Wr49iNTqIvWxI,4526
|
|
318
322
|
infrahub/core/validators/attribute/min_max.py,sha256=3x6iCJuVdt3vim6wPaF4Bar8RlR3FhJu3DYQiR2GZRI,5661
|
|
319
323
|
infrahub/core/validators/attribute/number_pool.py,sha256=edWmpHbme9YqWxeZJ5V0dvTCyIqLFyej2YNTyM-Emq4,4709
|
|
@@ -321,7 +325,7 @@ infrahub/core/validators/attribute/optional.py,sha256=qczSkKll4eKsutLgiVi_lCHgqa
|
|
|
321
325
|
infrahub/core/validators/attribute/regex.py,sha256=DENGbf3H5aS4dZZTeBQc39bJL8Ih70yITqXfpAR6etU,4201
|
|
322
326
|
infrahub/core/validators/attribute/unique.py,sha256=yPuh0tug8oXNNgrb7DN8sxkHHb5TlXHkMbYK_wz8zX8,5142
|
|
323
327
|
infrahub/core/validators/checks_runner.py,sha256=xaIfgRLrwDk-9GVx0UilSub8Ee3EPudi5GpY51C5xLk,2513
|
|
324
|
-
infrahub/core/validators/determiner.py,sha256=
|
|
328
|
+
infrahub/core/validators/determiner.py,sha256=PfD8W6gNfjyMBqmPZV-DkVef98p6Xo79-OrvgL9EmWs,9173
|
|
325
329
|
infrahub/core/validators/enum.py,sha256=RZLYqaMpl_yr91YqngqJ34QCqHIiebQDuDuUaz0B2Gc,747
|
|
326
330
|
infrahub/core/validators/interface.py,sha256=OqSq8myM73Hik6pzZFVC42-_PHg4qwn2xJLd_AhYU1w,560
|
|
327
331
|
infrahub/core/validators/model.py,sha256=QtnEt3FBcsPk0cSROgsj93Zr20ZMI-yRXQOa-vEwpTw,1636
|
|
@@ -413,7 +417,7 @@ infrahub/dependencies/component/exceptions.py,sha256=B_ecp1bPThvFhnJRFiPkIQ6YPcH
|
|
|
413
417
|
infrahub/dependencies/component/registry.py,sha256=E1K5uK7LU5MK6SxrUjajBw4K1I7dCyAMRfQBxV2yzq0,1435
|
|
414
418
|
infrahub/dependencies/interface.py,sha256=pVNdGYVeGlJgmBBlnv-3UYPXeZqZT8mx9Sg4SsqME40,446
|
|
415
419
|
infrahub/dependencies/registry.py,sha256=YNv73l66EIYDBLaxeeWfGStl8MY6Xz_HpQY1osXVoug,4520
|
|
416
|
-
infrahub/events/__init__.py,sha256=
|
|
420
|
+
infrahub/events/__init__.py,sha256=6BtpkdstvgnMYvUWc-q2dqiA08ZRaU-Xs4vmhWpOJXs,1702
|
|
417
421
|
infrahub/events/artifact_action.py,sha256=05R-idXAA_JMWi4KrICKyyLTfIVANHg5WZ9uxsivbt8,2632
|
|
418
422
|
infrahub/events/branch_action.py,sha256=73j9oWwSLg65WAjpq_d2QcOKfcy8Y9kAjP8A2YrOOIM,4692
|
|
419
423
|
infrahub/events/constants.py,sha256=VCbUeHSWRT308We7vDVYkopGlkQQ23UEIGzv9a8kyf0,121
|
|
@@ -421,7 +425,7 @@ infrahub/events/generator.py,sha256=J3G2-lixFVgrNqcEX2GiPz2nj6TTiUHs12za07U8NZg,
|
|
|
421
425
|
infrahub/events/group_action.py,sha256=UWbvoCuk1gvDN5osIvYgs6UZmD8Xqfv2Iro5SIoNQ0Q,3960
|
|
422
426
|
infrahub/events/models.py,sha256=Ljwk1SJaLF0pcM_3K_D9plhce3f53bk6gTSW9GdYJSs,7229
|
|
423
427
|
infrahub/events/node_action.py,sha256=UagMAcK9gfCJYCnkGEAPuVHLpFzNvlqW1glXcKSn8dk,7093
|
|
424
|
-
infrahub/events/proposed_change_action.py,sha256=
|
|
428
|
+
infrahub/events/proposed_change_action.py,sha256=EpBkEsHmiyRZiiIKGfxSHd1kwWOecKU70QmiDuHM8oY,8453
|
|
425
429
|
infrahub/events/repository_action.py,sha256=5x0boObzGipVb_QGQfNOXBrtENs-SNAjruttBzG4HZg,919
|
|
426
430
|
infrahub/events/schema_action.py,sha256=IvsCvEWsnl7CArJT5DqBn7nF7xmE8JdOHdcVqjeLWGk,1429
|
|
427
431
|
infrahub/events/utils.py,sha256=JmyKKKDjyD3LS9LlY9_AetL8hBb8EdEfRlreUihskTs,649
|
|
@@ -459,7 +463,7 @@ infrahub/graphql/auth/query_permission_checker/merge_operation_checker.py,sha256
|
|
|
459
463
|
infrahub/graphql/auth/query_permission_checker/object_permission_checker.py,sha256=5Af8bwtG5I-jxPQGOG_-qKV9bQFECn27e_gBoYDxXrs,8408
|
|
460
464
|
infrahub/graphql/auth/query_permission_checker/super_admin_checker.py,sha256=2RlJ1G-BmJIQW33SletzK1gIQ3nyEB2edTiX0xAjR2E,1550
|
|
461
465
|
infrahub/graphql/constants.py,sha256=iVvo3HK-ch7YmHw1Eg2E_ja3I45cNAwjpYahsnu85CI,37
|
|
462
|
-
infrahub/graphql/context.py,sha256=
|
|
466
|
+
infrahub/graphql/context.py,sha256=ahp-MvX_0glg9mSPbPVhEwvbYzrIKtaEAGt7CVnAusE,1681
|
|
463
467
|
infrahub/graphql/directives.py,sha256=wyIkJFp7l0J4JqNl1Lqu7YfKXP7glrewlQFMDTUAPcE,645
|
|
464
468
|
infrahub/graphql/enums.py,sha256=9F0XWfjQpC__0YRccYG1T-3qL1V8_PmlRlVpU1-n7nQ,820
|
|
465
469
|
infrahub/graphql/field_extractor.py,sha256=5trqnd8AfeFkn2W2ztrbpnZqgg1Zm9CzscF_oRonUzg,3127
|
|
@@ -492,11 +496,11 @@ infrahub/graphql/mutations/node_getter/by_default_filter.py,sha256=_owbYHXWqJ6x4
|
|
|
492
496
|
infrahub/graphql/mutations/node_getter/by_hfid.py,sha256=txpj4xPeL3eYOB9lRiHEFxxcRf6bb6lyIJnhVCHr3x8,3120
|
|
493
497
|
infrahub/graphql/mutations/node_getter/by_id.py,sha256=azERy5XBUe4fYf4t1rhKEn64MlGfm_zH4k-tJU6W69s,856
|
|
494
498
|
infrahub/graphql/mutations/node_getter/interface.py,sha256=3MVTz_3EQnI7REp-ytQvgJuEgWUmrmnRIqKpP8WHCyY,419
|
|
495
|
-
infrahub/graphql/mutations/proposed_change.py,sha256=
|
|
496
|
-
infrahub/graphql/mutations/relationship.py,sha256=
|
|
499
|
+
infrahub/graphql/mutations/proposed_change.py,sha256=lCn6JQatwTt3hBre9yawzchgW7IzJBDCJ1u5xYvW9Kc,19998
|
|
500
|
+
infrahub/graphql/mutations/relationship.py,sha256=pOyqmJGuagrWeH8DlXaZ2X_F9Qrogx0OTOGvCjYpWT4,21937
|
|
497
501
|
infrahub/graphql/mutations/repository.py,sha256=DzD8F0XOoiorPJl9iqORajnQo6nFMMzGB6uGIE6B38o,11398
|
|
498
502
|
infrahub/graphql/mutations/resource_manager.py,sha256=DvnmfXmS9bNYXjtgedGTKPdJmtdaCbM5qxl0OJ-t1yQ,11342
|
|
499
|
-
infrahub/graphql/mutations/schema.py,sha256=
|
|
503
|
+
infrahub/graphql/mutations/schema.py,sha256=6N70sGn-g5LNyfWwJZ-gonjbCY-Kc1IOukof3Np6pQQ,13568
|
|
500
504
|
infrahub/graphql/mutations/tasks.py,sha256=GsZVSVfBr1NgNPEHY_OHA5Y9tIbimyEcrYE7XsXXwFw,3815
|
|
501
505
|
infrahub/graphql/mutations/webhook.py,sha256=mCkUv2wvQMAx33BKYkj-Xlpi7rskojNQbqqbACAWzQw,4881
|
|
502
506
|
infrahub/graphql/parser.py,sha256=MBvCnj4J0zYCdIf86_sxKF1Y_eaI3KHlQqdBae958Ok,9035
|
|
@@ -521,7 +525,7 @@ infrahub/graphql/resolvers/ipam.py,sha256=p36FzgHQ5ZIG4Smf7EJ6h6w5sqTQcQxR27OjSO
|
|
|
521
525
|
infrahub/graphql/resolvers/many_relationship.py,sha256=Xw5qodU6X2tw8uN7GLfWs-rxru_K56RWalBcJIZqJkA,9795
|
|
522
526
|
infrahub/graphql/resolvers/resolver.py,sha256=MCX_R1OHSvaHncs8R1FNVNGIDm4wUdmf1NI8ZmDTUzY,11880
|
|
523
527
|
infrahub/graphql/resolvers/single_relationship.py,sha256=atEvh5vWoc934B3tXZUYtF5iRnKdvM2gp8Kzsf5xogI,7008
|
|
524
|
-
infrahub/graphql/schema.py,sha256=
|
|
528
|
+
infrahub/graphql/schema.py,sha256=EQy0MX8V4ynYVGpepm52g5hfGzXB4OILL4qyj3hn2YU,4922
|
|
525
529
|
infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
|
|
526
530
|
infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
|
|
527
531
|
infrahub/graphql/subscription/graphql_query.py,sha256=U9PwREMghxbuIoGWh3_rV33wKPzDyMILZ8_tuniwukg,2266
|
|
@@ -531,7 +535,7 @@ infrahub/graphql/types/branch.py,sha256=CUYvw02AovhfJVi14QQvFMytB2zBSQqC_zJqmp5k
|
|
|
531
535
|
infrahub/graphql/types/common.py,sha256=3I3p1bPOorwWgTqKbHqcDB7AvNG0JMdRyzIGxUrrREA,401
|
|
532
536
|
infrahub/graphql/types/context.py,sha256=PrgEOGq0ERAsbFFNDA40WMlids72StbL2q88nGW46cQ,405
|
|
533
537
|
infrahub/graphql/types/enums.py,sha256=Va-39ysZXciR8arQGqRZo9piKb5b0oufUl6uiyijwNc,383
|
|
534
|
-
infrahub/graphql/types/event.py,sha256=
|
|
538
|
+
infrahub/graphql/types/event.py,sha256=Wbf82dYjr5GX_jUdsEXQ0Xd9OmX9bPx4b7Cjm9e6j3Q,9161
|
|
535
539
|
infrahub/graphql/types/interface.py,sha256=Bi80p-FHMWRXjD0a7QwqSweSiRxYXd3iC1Xfq5JFLC0,879
|
|
536
540
|
infrahub/graphql/types/node.py,sha256=s6iKpATlO9ulKjyMEuP82CNVmgD1nRqL9YYbsU8ekjQ,1011
|
|
537
541
|
infrahub/graphql/types/permission.py,sha256=zptTaTR-ndIbcb8AEwBXm-TRxgr400T8untxmRi5DbA,1386
|
|
@@ -589,10 +593,10 @@ infrahub/patch/runner.py,sha256=ZB4aOqlG77hJNtDyQtIXmi-2WgM07WSEFtWV2NItIqk,1259
|
|
|
589
593
|
infrahub/patch/vertex_adder.py,sha256=lhWELYWlHwkopGOECSHRfj1mb0-COheibsu95r2Hwzs,2796
|
|
590
594
|
infrahub/patch/vertex_deleter.py,sha256=czdb8T30k_-WSbcZUVS2-DvaN3Dp4j9ss2lAz8KN0mo,1302
|
|
591
595
|
infrahub/patch/vertex_updater.py,sha256=FxQJEnwXdvj2WtwLorRbRAyocWUG9z_RDowflVKqPoU,1136
|
|
592
|
-
infrahub/permissions/__init__.py,sha256=
|
|
596
|
+
infrahub/permissions/__init__.py,sha256=JZtHCf5FC5OKYFcu6SWBArB9a9WFZVtJNxoWrmWweC4,732
|
|
593
597
|
infrahub/permissions/backend.py,sha256=azvyFOTne0Zy1yrc4t9u3GCkHI_x_OPSDV65yxmVPDQ,529
|
|
594
|
-
infrahub/permissions/constants.py,sha256=
|
|
595
|
-
infrahub/permissions/globals.py,sha256=
|
|
598
|
+
infrahub/permissions/constants.py,sha256=l79cAHWTesV15NZluUUUnCoBCFp6Ff22vYP4KYwn6o4,2123
|
|
599
|
+
infrahub/permissions/globals.py,sha256=_s_UtlTkkfXaQSwUPBpzFVgNN21DvOVL-5M0ceeFlsk,1500
|
|
596
600
|
infrahub/permissions/local_backend.py,sha256=JXUBGcYsi62Jmpz_sSueYGV3tqxV1WrNXpevhwKhr1w,1470
|
|
597
601
|
infrahub/permissions/manager.py,sha256=rt7P2rk7hsReWTHXd2gM6C8i_72SAHQb0CF0PxebI4I,6731
|
|
598
602
|
infrahub/permissions/report.py,sha256=kXNVbWp_q5mu6Qx8DUcHceZOdKkVqUZO8E7YWiA1n3o,5118
|
|
@@ -649,7 +653,7 @@ infrahub/services/scheduler.py,sha256=TbKg74oBINScHJYtV8_lOuQR2RjxqS6IfU_slyjpNY
|
|
|
649
653
|
infrahub/storage.py,sha256=bpK8m7GNlp5LHI0yXuFNZhhBVQpU7RZr7MeWCaAAPLk,1812
|
|
650
654
|
infrahub/task_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
651
655
|
infrahub/task_manager/constants.py,sha256=1t1BZRa8_y89gIDPNHzIbRKo63nHOP37-r5OvtHa56c,559
|
|
652
|
-
infrahub/task_manager/event.py,sha256=
|
|
656
|
+
infrahub/task_manager/event.py,sha256=n9q62qWHuqE-sxNDq0WRTovoNlBGT6o_8bJOYMLDHqA,13885
|
|
653
657
|
infrahub/task_manager/models.py,sha256=KoEEa7OZN3lxOgNgPWGQ_IK-yno27f3Q7k_zgVYkq2I,8541
|
|
654
658
|
infrahub/task_manager/task.py,sha256=Rtb_v0D43jMRq7cmi0XMpMX-WHRPPMDmE67yqLXAJ3o,12390
|
|
655
659
|
infrahub/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -706,7 +710,7 @@ infrahub_sdk/async_typer.py,sha256=Gj7E8EGdjA-XF404vr9cBt20mmbroQh7N68HXhWYx00,8
|
|
|
706
710
|
infrahub_sdk/batch.py,sha256=LRZ_04ic56ll9FBjgXCYrJRDJcwB3wR1yX4grrQutDQ,3795
|
|
707
711
|
infrahub_sdk/branch.py,sha256=hmtoIekQ1uusoJ6yEKlw6vrFMTAHJrXu-YsqqCQC_kc,12716
|
|
708
712
|
infrahub_sdk/checks.py,sha256=rFHlEY8XEYcjpLCg6gd9a0R8vPnkxNp0OnXk-odsZKY,5707
|
|
709
|
-
infrahub_sdk/client.py,sha256=
|
|
713
|
+
infrahub_sdk/client.py,sha256=WhavrpFegrS-b4ghGbO6CBbHLlzHnXGHkrLw9_fMF8I,101571
|
|
710
714
|
infrahub_sdk/config.py,sha256=wnVRkaVO4Nd2IBLRVpLtrC-jjW399mgr1DprohTEzQQ,7936
|
|
711
715
|
infrahub_sdk/constants.py,sha256=Ca66r09eDzpmMhfFAspKFSehSxOmoflVongP-UuBDc4,138
|
|
712
716
|
infrahub_sdk/context.py,sha256=QgXZvtUrKolp6ML8TguVK87Wuu-3KyizZVV_N2F4oCw,400
|
|
@@ -725,8 +729,8 @@ infrahub_sdk/ctl/menu.py,sha256=A0NHvu48qbo9aWYNc3nGMNMeXr4LnOr_HNKL5arBWNA,2690
|
|
|
725
729
|
infrahub_sdk/ctl/object.py,sha256=OEbAx0Yb0zbXxS2ZnXedZRZDHITQd3iAk_cWUlTHLvg,2706
|
|
726
730
|
infrahub_sdk/ctl/parameters.py,sha256=aU2H41svfG309m2WdH6R9H5xgQ4gevn3ItOu5ltuVas,413
|
|
727
731
|
infrahub_sdk/ctl/render.py,sha256=zrIz_KXq3QafgNiqqNeYt2JtD2PGOa0D5ujW6NqZdz8,1948
|
|
728
|
-
infrahub_sdk/ctl/repository.py,sha256=
|
|
729
|
-
infrahub_sdk/ctl/schema.py,sha256=
|
|
732
|
+
infrahub_sdk/ctl/repository.py,sha256=AcWFxAJ0qbsacXvP3ay5hlH_RwVZUllbHFVrFpqEr8Q,4900
|
|
733
|
+
infrahub_sdk/ctl/schema.py,sha256=791JU9ZylqeXQTy7xBMN_4WKnVQgbStvFvEZ8nAkOY8,7056
|
|
730
734
|
infrahub_sdk/ctl/transform.py,sha256=5qRqiKeEefs0rda6RAFAAj1jkCKdbPYE_t8O-n436LQ,414
|
|
731
735
|
infrahub_sdk/ctl/utils.py,sha256=bvH5JfkLvN_84LeftM-GQU3s3fECbiHCVpBrrpRtJj4,7437
|
|
732
736
|
infrahub_sdk/ctl/validate.py,sha256=dknc4kMBIdysZNtEBYyvhlFPyUYyLmc2a4OI4cjGj2c,3910
|
|
@@ -748,7 +752,7 @@ infrahub_sdk/node/relationship.py,sha256=WEfPOZChQ8WadhG9UcdM3RP-bYuXGE3dm_6fPjf
|
|
|
748
752
|
infrahub_sdk/object_store.py,sha256=d-EDnxPpw_7BsbjbGbH50rjt-1-Ojj2zNrhFansP5hA,4299
|
|
749
753
|
infrahub_sdk/operation.py,sha256=hsbZSjLbLsqvjZg5R5x_bOxxlteXJAk0fQy3mLrZhn4,2730
|
|
750
754
|
infrahub_sdk/playback.py,sha256=ubkY1LiW_wFwm4auerdQ0zFJcFJZ1SYQT6-d4bxzaLg,1906
|
|
751
|
-
infrahub_sdk/protocols.py,sha256=
|
|
755
|
+
infrahub_sdk/protocols.py,sha256=lmjBSrmpc-7j9H7mn0DaLpJa8eD2gQk2oy0u2HvGLOk,24209
|
|
752
756
|
infrahub_sdk/protocols_base.py,sha256=rw5gP9IEuV2e-DeFHMUoL43nVfxEeGmQKjoE3YZCV78,5616
|
|
753
757
|
infrahub_sdk/protocols_generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
754
758
|
infrahub_sdk/protocols_generator/constants.py,sha256=8y5L7aqxhez6_10Cl2zUfNlHJCCosIVnxrOPKrwNVEw,820
|
|
@@ -806,7 +810,7 @@ infrahub_sdk/transfer/importer/json.py,sha256=-Tlmg22TiBrEqXOSLMnUzlCFOZ2M0Q8lWy
|
|
|
806
810
|
infrahub_sdk/transfer/schema_sorter.py,sha256=ZoBjJGFT-6jQoKOLaoOPMAWzs7vGOeo7x6zOOP4LNv0,1244
|
|
807
811
|
infrahub_sdk/transforms.py,sha256=RLiB_CkM-JQSfyifChxxQVl2FrHKOGEf_YynSMKeFZU,2340
|
|
808
812
|
infrahub_sdk/types.py,sha256=UeZ1rDp4eyH12ApTcUD9a1OOtCp3IL1YZUeeZ06qF-I,1726
|
|
809
|
-
infrahub_sdk/utils.py,sha256=
|
|
813
|
+
infrahub_sdk/utils.py,sha256=zNoBV8nND10j_OQLmt_Sdz_8_vMgw9qQfpsjdm8O-0s,11881
|
|
810
814
|
infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
|
|
811
815
|
infrahub_sdk/yaml.py,sha256=PRsS7BEM-Xn5wRLAAG-YLTGRBEJy5Dnyim2YskFfe8I,5539
|
|
812
816
|
infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
|
|
@@ -822,8 +826,8 @@ infrahub_testcontainers/models.py,sha256=ASYyvl7d_WQz_i7y8-3iab9hwwmCl3OCJavqVbe
|
|
|
822
826
|
infrahub_testcontainers/performance_test.py,sha256=hvwiy6tc_lWniYqGkqfOXVGAmA_IV15VOZqbiD9ezno,6149
|
|
823
827
|
infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
|
|
824
828
|
infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
|
|
825
|
-
infrahub_server-1.4.
|
|
826
|
-
infrahub_server-1.4.
|
|
827
|
-
infrahub_server-1.4.
|
|
828
|
-
infrahub_server-1.4.
|
|
829
|
-
infrahub_server-1.4.
|
|
829
|
+
infrahub_server-1.4.0rc0.dist-info/LICENSE.txt,sha256=7GQO7kxVoQYnZtFrjZBKLRXbrGwwwimHPPOJtqXsozQ,11340
|
|
830
|
+
infrahub_server-1.4.0rc0.dist-info/METADATA,sha256=FObBxNeM6mm8rDQkHv4TvizDyTknKt1Yux2_3LnCksU,8274
|
|
831
|
+
infrahub_server-1.4.0rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
832
|
+
infrahub_server-1.4.0rc0.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
|
|
833
|
+
infrahub_server-1.4.0rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|