infrahub-server 1.3.0b1__py3-none-any.whl → 1.3.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/actions/tasks.py +4 -11
- infrahub/branch/__init__.py +0 -0
- infrahub/branch/tasks.py +29 -0
- infrahub/branch/triggers.py +22 -0
- infrahub/cli/db.py +2 -2
- infrahub/computed_attribute/gather.py +3 -1
- infrahub/computed_attribute/tasks.py +23 -29
- infrahub/core/constants/__init__.py +5 -0
- infrahub/core/constants/database.py +1 -0
- infrahub/core/convert_object_type/conversion.py +1 -1
- infrahub/core/diff/query/save.py +67 -40
- infrahub/core/diff/query/time_range_query.py +0 -1
- infrahub/core/graph/__init__.py +1 -1
- infrahub/core/migrations/graph/__init__.py +6 -0
- infrahub/core/migrations/graph/m013_convert_git_password_credential.py +0 -2
- infrahub/core/migrations/graph/m029_duplicates_cleanup.py +662 -0
- infrahub/core/migrations/graph/m030_illegal_edges.py +82 -0
- infrahub/core/migrations/query/attribute_add.py +13 -9
- infrahub/core/migrations/query/relationship_duplicate.py +0 -1
- infrahub/core/migrations/schema/node_remove.py +0 -1
- infrahub/core/node/__init__.py +2 -0
- infrahub/core/node/base.py +1 -1
- infrahub/core/path.py +1 -1
- infrahub/core/protocols.py +1 -0
- infrahub/core/query/node.py +1 -1
- infrahub/core/query/relationship.py +2 -2
- infrahub/core/query/standard_node.py +19 -5
- infrahub/core/relationship/constraints/peer_relatives.py +72 -0
- infrahub/core/relationship/model.py +1 -1
- infrahub/core/schema/attribute_schema.py +26 -6
- infrahub/core/schema/basenode_schema.py +2 -2
- infrahub/core/schema/definitions/core/resource_pool.py +9 -0
- infrahub/core/schema/definitions/internal.py +9 -1
- infrahub/core/schema/generated/attribute_schema.py +4 -4
- infrahub/core/schema/generated/relationship_schema.py +6 -1
- infrahub/core/schema/manager.py +4 -2
- infrahub/core/schema/schema_branch.py +14 -5
- infrahub/core/validators/tasks.py +1 -1
- infrahub/database/__init__.py +1 -1
- infrahub/database/validation.py +100 -0
- infrahub/dependencies/builder/constraint/grouped/node_runner.py +2 -0
- infrahub/dependencies/builder/constraint/relationship_manager/peer_relatives.py +8 -0
- infrahub/dependencies/builder/diff/deserializer.py +1 -1
- infrahub/dependencies/registry.py +2 -0
- infrahub/events/models.py +1 -1
- infrahub/graphql/mutations/main.py +1 -1
- infrahub/graphql/mutations/resource_manager.py +4 -12
- infrahub/graphql/resolvers/many_relationship.py +1 -1
- infrahub/graphql/resolvers/resolver.py +2 -2
- infrahub/graphql/resolvers/single_relationship.py +1 -1
- infrahub/menu/menu.py +5 -4
- infrahub/message_bus/operations/refresh/registry.py +3 -3
- infrahub/patch/queries/delete_duplicated_edges.py +40 -29
- infrahub/pools/registration.py +22 -0
- infrahub/pools/tasks.py +56 -0
- infrahub/schema/__init__.py +0 -0
- infrahub/schema/tasks.py +27 -0
- infrahub/schema/triggers.py +23 -0
- infrahub/trigger/catalogue.py +4 -0
- infrahub/trigger/models.py +5 -4
- infrahub/trigger/setup.py +26 -2
- infrahub/trigger/tasks.py +1 -1
- infrahub/webhook/tasks.py +6 -9
- infrahub/workflows/catalogue.py +27 -1
- {infrahub_server-1.3.0b1.dist-info → infrahub_server-1.3.0b2.dist-info}/METADATA +1 -1
- {infrahub_server-1.3.0b1.dist-info → infrahub_server-1.3.0b2.dist-info}/RECORD +74 -61
- infrahub_testcontainers/container.py +239 -64
- infrahub_testcontainers/docker-compose-cluster.test.yml +321 -0
- infrahub_testcontainers/docker-compose.test.yml +1 -0
- infrahub_testcontainers/helpers.py +15 -1
- infrahub_testcontainers/plugin.py +9 -0
- infrahub/patch/queries/consolidate_duplicated_nodes.py +0 -106
- {infrahub_server-1.3.0b1.dist-info → infrahub_server-1.3.0b2.dist-info}/LICENSE.txt +0 -0
- {infrahub_server-1.3.0b1.dist-info → infrahub_server-1.3.0b2.dist-info}/WHEEL +0 -0
- {infrahub_server-1.3.0b1.dist-info → infrahub_server-1.3.0b2.dist-info}/entry_points.txt +0 -0
infrahub/trigger/setup.py
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
from typing import TYPE_CHECKING
|
|
1
|
+
from typing import TYPE_CHECKING, Awaitable, Callable
|
|
2
2
|
|
|
3
3
|
from prefect import get_run_logger, task
|
|
4
4
|
from prefect.automations import AutomationCore
|
|
5
5
|
from prefect.cache_policies import NONE
|
|
6
|
-
from prefect.client.orchestration import PrefectClient
|
|
6
|
+
from prefect.client.orchestration import PrefectClient, get_client
|
|
7
7
|
from prefect.client.schemas.filters import DeploymentFilter, DeploymentFilterName
|
|
8
8
|
from prefect.events.schemas.automations import Automation
|
|
9
9
|
|
|
10
|
+
from infrahub import lock
|
|
11
|
+
from infrahub.database import InfrahubDatabase
|
|
10
12
|
from infrahub.trigger.models import TriggerDefinition
|
|
11
13
|
|
|
12
14
|
from .models import TriggerSetupReport, TriggerType
|
|
@@ -27,6 +29,28 @@ def compare_automations(target: AutomationCore, existing: Automation) -> bool:
|
|
|
27
29
|
return target_dump == existing_dump
|
|
28
30
|
|
|
29
31
|
|
|
32
|
+
@task(name="trigger-setup-specific", task_run_name="Setup triggers of a specific kind", cache_policy=NONE) # type: ignore[arg-type]
|
|
33
|
+
async def setup_triggers_specific(
|
|
34
|
+
gatherer: Callable[[InfrahubDatabase | None], Awaitable[list[TriggerDefinition]]],
|
|
35
|
+
trigger_type: TriggerType,
|
|
36
|
+
db: InfrahubDatabase | None = None,
|
|
37
|
+
) -> TriggerSetupReport:
|
|
38
|
+
async with lock.registry.get(
|
|
39
|
+
name=f"configure-action-rules-{trigger_type.value}", namespace="trigger-rules", local=False
|
|
40
|
+
):
|
|
41
|
+
if db:
|
|
42
|
+
async with db.start_session(read_only=True) as dbs:
|
|
43
|
+
triggers = await gatherer(dbs)
|
|
44
|
+
else:
|
|
45
|
+
triggers = await gatherer(db)
|
|
46
|
+
async with get_client(sync_client=False) as prefect_client:
|
|
47
|
+
return await setup_triggers(
|
|
48
|
+
client=prefect_client,
|
|
49
|
+
triggers=triggers,
|
|
50
|
+
trigger_type=trigger_type,
|
|
51
|
+
) # type: ignore[misc]
|
|
52
|
+
|
|
53
|
+
|
|
30
54
|
@task(name="trigger-setup", task_run_name="Setup triggers", cache_policy=NONE) # type: ignore[arg-type]
|
|
31
55
|
async def setup_triggers(
|
|
32
56
|
client: PrefectClient,
|
infrahub/trigger/tasks.py
CHANGED
|
@@ -6,7 +6,7 @@ from infrahub.computed_attribute.gather import (
|
|
|
6
6
|
gather_trigger_computed_attribute_jinja2,
|
|
7
7
|
gather_trigger_computed_attribute_python,
|
|
8
8
|
)
|
|
9
|
-
from infrahub.services import InfrahubServices
|
|
9
|
+
from infrahub.services import InfrahubServices
|
|
10
10
|
from infrahub.trigger.catalogue import builtin_triggers
|
|
11
11
|
from infrahub.webhook.gather import gather_trigger_webhook
|
|
12
12
|
|
infrahub/webhook/tasks.py
CHANGED
|
@@ -14,7 +14,7 @@ from prefect.logging import get_run_logger
|
|
|
14
14
|
from infrahub.message_bus.types import KVTTL
|
|
15
15
|
from infrahub.services import InfrahubServices # noqa: TC001 needed for prefect flow
|
|
16
16
|
from infrahub.trigger.models import TriggerType
|
|
17
|
-
from infrahub.trigger.setup import
|
|
17
|
+
from infrahub.trigger.setup import setup_triggers_specific
|
|
18
18
|
from infrahub.workflows.utils import add_tags
|
|
19
19
|
|
|
20
20
|
from .gather import gather_trigger_webhook
|
|
@@ -111,16 +111,13 @@ async def webhook_process(
|
|
|
111
111
|
async def configure_webhook_all(service: InfrahubServices) -> None:
|
|
112
112
|
log = get_run_logger()
|
|
113
113
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
async with get_client(sync_client=False) as prefect_client:
|
|
117
|
-
await setup_triggers(
|
|
118
|
-
client=prefect_client,
|
|
119
|
-
triggers=triggers,
|
|
120
|
-
trigger_type=TriggerType.WEBHOOK,
|
|
121
|
-
) # type: ignore[misc]
|
|
114
|
+
async with service.database.start_session(read_only=True) as db:
|
|
115
|
+
triggers = await gather_trigger_webhook(db=db)
|
|
122
116
|
|
|
123
117
|
log.info(f"{len(triggers)} Webhooks automation configuration completed")
|
|
118
|
+
await setup_triggers_specific(
|
|
119
|
+
gatherer=gather_trigger_webhook, db=service.database, trigger_type=TriggerType.WEBHOOK
|
|
120
|
+
) # type: ignore[misc]
|
|
124
121
|
|
|
125
122
|
|
|
126
123
|
@flow(name="webhook-setup-automation-one", flow_run_name="Configurate webhook for {webhook_name}")
|
infrahub/workflows/catalogue.py
CHANGED
|
@@ -242,6 +242,14 @@ BRANCH_MERGE = WorkflowDefinition(
|
|
|
242
242
|
tags=[WorkflowTag.DATABASE_CHANGE],
|
|
243
243
|
)
|
|
244
244
|
|
|
245
|
+
BRANCH_MERGED = WorkflowDefinition(
|
|
246
|
+
name="branch-merged",
|
|
247
|
+
type=WorkflowType.CORE,
|
|
248
|
+
module="infrahub.branch.tasks",
|
|
249
|
+
function="branch_merged",
|
|
250
|
+
tags=[WorkflowTag.DATABASE_CHANGE],
|
|
251
|
+
)
|
|
252
|
+
|
|
245
253
|
BRANCH_MERGE_POST_PROCESS = WorkflowDefinition(
|
|
246
254
|
name="branch-merge-post-process",
|
|
247
255
|
type=WorkflowType.CORE,
|
|
@@ -250,7 +258,6 @@ BRANCH_MERGE_POST_PROCESS = WorkflowDefinition(
|
|
|
250
258
|
tags=[WorkflowTag.DATABASE_CHANGE],
|
|
251
259
|
)
|
|
252
260
|
|
|
253
|
-
|
|
254
261
|
BRANCH_MERGE_MUTATION = WorkflowDefinition(
|
|
255
262
|
name="merge-branch-mutation",
|
|
256
263
|
type=WorkflowType.CORE,
|
|
@@ -498,6 +505,14 @@ GIT_REPOSITORY_MERGE_CONFLICTS_CHECKS_RUN = WorkflowDefinition(
|
|
|
498
505
|
function="run_check_merge_conflicts",
|
|
499
506
|
)
|
|
500
507
|
|
|
508
|
+
SCHEMA_UPDATED = WorkflowDefinition(
|
|
509
|
+
name="schema-updated",
|
|
510
|
+
type=WorkflowType.CORE,
|
|
511
|
+
module="infrahub.schema.tasks",
|
|
512
|
+
function="schema_updated",
|
|
513
|
+
)
|
|
514
|
+
|
|
515
|
+
|
|
501
516
|
TRIGGER_CONFIGURE_ALL = WorkflowDefinition(
|
|
502
517
|
name="trigger-configure-all",
|
|
503
518
|
type=WorkflowType.CORE,
|
|
@@ -506,6 +521,14 @@ TRIGGER_CONFIGURE_ALL = WorkflowDefinition(
|
|
|
506
521
|
)
|
|
507
522
|
|
|
508
523
|
|
|
524
|
+
VALIDATE_SCHEMA_NUMBER_POOLS = WorkflowDefinition(
|
|
525
|
+
name="validate-schema-number-pools",
|
|
526
|
+
type=WorkflowType.CORE,
|
|
527
|
+
module="infrahub.pools.tasks",
|
|
528
|
+
function="validate_schema_number_pools",
|
|
529
|
+
)
|
|
530
|
+
|
|
531
|
+
|
|
509
532
|
worker_pools = [INFRAHUB_WORKER_POOL]
|
|
510
533
|
|
|
511
534
|
workflows = [
|
|
@@ -517,6 +540,7 @@ workflows = [
|
|
|
517
540
|
BRANCH_CREATE,
|
|
518
541
|
BRANCH_DELETE,
|
|
519
542
|
BRANCH_MERGE,
|
|
543
|
+
BRANCH_MERGED,
|
|
520
544
|
BRANCH_MERGE_MUTATION,
|
|
521
545
|
BRANCH_MERGE_POST_PROCESS,
|
|
522
546
|
BRANCH_REBASE,
|
|
@@ -564,6 +588,7 @@ workflows = [
|
|
|
564
588
|
REQUEST_PROPOSED_CHANGE_USER_TESTS,
|
|
565
589
|
RUN_GENERATOR_AS_CHECK,
|
|
566
590
|
SCHEMA_APPLY_MIGRATION,
|
|
591
|
+
SCHEMA_UPDATED,
|
|
567
592
|
SCHEMA_VALIDATE_MIGRATION,
|
|
568
593
|
TRANSFORM_JINJA2_RENDER,
|
|
569
594
|
TRANSFORM_PYTHON_RENDER,
|
|
@@ -572,6 +597,7 @@ workflows = [
|
|
|
572
597
|
TRIGGER_GENERATOR_DEFINITION_RUN,
|
|
573
598
|
TRIGGER_UPDATE_JINJA_COMPUTED_ATTRIBUTES,
|
|
574
599
|
TRIGGER_UPDATE_PYTHON_COMPUTED_ATTRIBUTES,
|
|
600
|
+
VALIDATE_SCHEMA_NUMBER_POOLS,
|
|
575
601
|
WEBHOOK_CONFIGURE_ALL,
|
|
576
602
|
WEBHOOK_CONFIGURE_ONE,
|
|
577
603
|
WEBHOOK_DELETE_AUTOMATION,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: infrahub-server
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.0b2
|
|
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: AGPL-3.0-only
|
|
6
6
|
Author: OpsMill
|
|
@@ -5,7 +5,7 @@ infrahub/actions/gather.py,sha256=Xd7s2f5cBdn-EIjugm1bB3MI1BDPvWV19EsJ1CwKR1A,47
|
|
|
5
5
|
infrahub/actions/models.py,sha256=9Zdsn0CQ4oj7-K96JDU8CLCMQN80aU3osy6FRFF6L9I,8372
|
|
6
6
|
infrahub/actions/parsers.py,sha256=VmBDCeg66ouR8bHncaMvOv6QyjvNx_ST5inkIaU1XHQ,3838
|
|
7
7
|
infrahub/actions/schema.py,sha256=9o4ftaNWudXfmgJHkXHNdsmRt56Xouut92wi0Q5e5pg,12349
|
|
8
|
-
infrahub/actions/tasks.py,sha256=
|
|
8
|
+
infrahub/actions/tasks.py,sha256=Oaz6sku7E_2aadh4fFIjDeZn9YUGIY6zhzVlctQ3xbw,3820
|
|
9
9
|
infrahub/actions/triggers.py,sha256=5BKt8NkafArs8tdSQUb2uBtJVXfZrYUePByOn9d7-1Y,772
|
|
10
10
|
infrahub/api/__init__.py,sha256=dtRtBRpEgt7Y9Zdwy85jpSr8qfO_2xNTgTQLCJPQiZI,2182
|
|
11
11
|
infrahub/api/artifact.py,sha256=NfdtV6d5npb2yRPo5qcEkcvHZII8pmby0X8HEFhnzVc,3928
|
|
@@ -32,10 +32,13 @@ infrahub/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
32
32
|
infrahub/artifacts/models.py,sha256=hbU1kbPrRgwuCiFPTdGJp3XICr77_61vgqy7e_ckzSk,2039
|
|
33
33
|
infrahub/artifacts/tasks.py,sha256=0eo7IKZ8wiMWyLEO4fCZJjFtnk9e94bGVS442TbWgq4,3821
|
|
34
34
|
infrahub/auth.py,sha256=g4pQX4kI1k-iWIQNduXODhpeZXIjY3XqLslh7QFRBq4,9194
|
|
35
|
+
infrahub/branch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
infrahub/branch/tasks.py,sha256=09AtjKpA5TC9NxsNt3oE--1pHeh1h1hRYvY41YfMt90,1059
|
|
37
|
+
infrahub/branch/triggers.py,sha256=4sywoEX79fY2NkaGe6tTHnmytf4k6gXDm2FJHkkRJOw,793
|
|
35
38
|
infrahub/cli/__init__.py,sha256=zQjE9zMrwAmk_4qb5mbUgNi06g3HKvrPwQvJLQmv9JY,1814
|
|
36
39
|
infrahub/cli/constants.py,sha256=CoCeTMnfsA3j7ArdLKLZK4VPxOM7ls17qpxGJmND0m8,129
|
|
37
40
|
infrahub/cli/context.py,sha256=20CJj_D1VhigR9uhTDPHiVHnV7vzsgK8v-uLKs06kzA,398
|
|
38
|
-
infrahub/cli/db.py,sha256=
|
|
41
|
+
infrahub/cli/db.py,sha256=mQ0BYcYwhzzp2YLC0CiBLOSVGz_egLgZTi1BuoTiurE,28395
|
|
39
42
|
infrahub/cli/events.py,sha256=nJmowQgTxRs6qaT41A71Ei9jm6qtYaL2amAT5TA1H_k,1726
|
|
40
43
|
infrahub/cli/git_agent.py,sha256=ajT9-kdd3xLIysOPe8GqZyCDMkpNyhqfWjBg9HPWVcg,5240
|
|
41
44
|
infrahub/cli/patch.py,sha256=ztOkWyo0l_Wo0WX10bvSqGZibKzowrwx82oi69cjwkY,6018
|
|
@@ -45,9 +48,9 @@ infrahub/cli/upgrade.py,sha256=GQWzga8AFTvfS_VY6s1Nmf_J1UJb533IUVQiF_FC9r0,5031
|
|
|
45
48
|
infrahub/components.py,sha256=lSLDCDwIZoakZ2iBrfHi9c3BxzugMiuiZO6V7Egt6tk,107
|
|
46
49
|
infrahub/computed_attribute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
50
|
infrahub/computed_attribute/constants.py,sha256=oTMPEfRuf2mcfCkBpRLWRALO6nsLHpFm9jJGu0lowS4,446
|
|
48
|
-
infrahub/computed_attribute/gather.py,sha256=
|
|
51
|
+
infrahub/computed_attribute/gather.py,sha256=xhH4dsgCjRFyFshns4Iu3sloe5m1bVMRdeQAJjFdyYU,8220
|
|
49
52
|
infrahub/computed_attribute/models.py,sha256=P_MijLwCVd7394oyTTfYQ3HmX5wIF966jdchuZaLRbs,17361
|
|
50
|
-
infrahub/computed_attribute/tasks.py,sha256=
|
|
53
|
+
infrahub/computed_attribute/tasks.py,sha256=BTjdm3F1Z590p39lvnx5m_NqtXssqAVLcXrJNXcno1E,17643
|
|
51
54
|
infrahub/computed_attribute/triggers.py,sha256=ve1cUj0CZ7dU1VtZkxET9LD8StszKIL9mCkTZpCeUaI,2304
|
|
52
55
|
infrahub/config.py,sha256=XxyVP8hT7zKxRRMkKzqgUargAqnsI2BRc8jBZqVYF5E,35665
|
|
53
56
|
infrahub/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -62,8 +65,8 @@ infrahub/core/branch/tasks.py,sha256=_5tuv068xczwGYB2MZffPIdchhhgm1ciqOawdIO2pAo
|
|
|
62
65
|
infrahub/core/changelog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
66
|
infrahub/core/changelog/diff.py,sha256=0BxCpsgJ-38x5BBz5XDtAvc9FPy82M0NlzXl8nQ-c70,13752
|
|
64
67
|
infrahub/core/changelog/models.py,sha256=UgfJdOFUkMmjeUKe1mPCO7WE3jNENw0UJU3LWFf20HQ,29920
|
|
65
|
-
infrahub/core/constants/__init__.py,sha256=
|
|
66
|
-
infrahub/core/constants/database.py,sha256=
|
|
68
|
+
infrahub/core/constants/__init__.py,sha256=bGtrM1KSLKRglOpA116Uh-C1O6gJF3hRQR2zGjOTcc8,8789
|
|
69
|
+
infrahub/core/constants/database.py,sha256=x5tWaT3e0WfCxxrHMcSoHUBMfcUzStLi133CqHjSosU,368
|
|
67
70
|
infrahub/core/constants/infrahubkind.py,sha256=rwkstd1z3RX3DN5V778nmA4w9W-4ViV_INMNgjPqRVc,2918
|
|
68
71
|
infrahub/core/constants/relationship_label.py,sha256=AWbWghu5MoAKg2DBE-ysdzSOXnWoWdBn98zpIHzn_co,87
|
|
69
72
|
infrahub/core/constants/schema.py,sha256=uuddQniyGlSlvKjM5mQ_V2VhgZmQ8fUCAHysbZLvTEU,2006
|
|
@@ -71,7 +74,7 @@ infrahub/core/constraint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
71
74
|
infrahub/core/constraint/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
75
|
infrahub/core/constraint/node/runner.py,sha256=43ngwnu6fvxzdX0ZUUCSTzGtKBc8fSRSGSX1sovZvxQ,1863
|
|
73
76
|
infrahub/core/convert_object_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
-
infrahub/core/convert_object_type/conversion.py,sha256=
|
|
77
|
+
infrahub/core/convert_object_type/conversion.py,sha256=sSVjQ7UxCTJMgj8brU_7TFt4t_S7yaMh0HMibY2udhk,5562
|
|
75
78
|
infrahub/core/convert_object_type/schema_mapping.py,sha256=xf7xQwjGd3HQ-N7_J7dwuY4RUR9sivKoy7Vwl4YlsBM,2485
|
|
76
79
|
infrahub/core/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
80
|
infrahub/core/diff/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -120,9 +123,9 @@ infrahub/core/diff/query/has_conflicts_query.py,sha256=kt0Z606vP2r1g7OqW2RrYj9Lb
|
|
|
120
123
|
infrahub/core/diff/query/merge.py,sha256=duFTAd81BcoztSEIhK4KP6vpbWvrefSV_Xb97vrQlaM,32149
|
|
121
124
|
infrahub/core/diff/query/merge_tracking_id.py,sha256=VLGsKuOCIMYe0I-0r01YHF5iaLYIkfSCVQatHM-ybFA,833
|
|
122
125
|
infrahub/core/diff/query/roots_metadata.py,sha256=FT-48amqoR2RS4CkfnnXGI7Z5uOL4hm7IdZiz3SFHRo,2182
|
|
123
|
-
infrahub/core/diff/query/save.py,sha256=
|
|
126
|
+
infrahub/core/diff/query/save.py,sha256=xBKWpWfRWfaP7g523xKMK82ogg0AfVQTTMeyz8oe-o0,22956
|
|
124
127
|
infrahub/core/diff/query/summary_counts_enricher.py,sha256=HuMeQfa2Ce0qFmGTSfUV-LncauEsBDhdDcs1QpZOETA,9957
|
|
125
|
-
infrahub/core/diff/query/time_range_query.py,sha256=
|
|
128
|
+
infrahub/core/diff/query/time_range_query.py,sha256=Xv9_Y_UJ45UsqfxosoAxXMY47-EpO6fHNIqdwFpysBQ,2976
|
|
126
129
|
infrahub/core/diff/query/update_conflict_query.py,sha256=kQkFazz88wnApr8UU_qb0ruzhmrhWiqhbErukSAMhLA,1212
|
|
127
130
|
infrahub/core/diff/query_parser.py,sha256=6OWI_ynplysO6VH1vCfqiV_VmXvAfoa-bIRJ7heVTjY,37217
|
|
128
131
|
infrahub/core/diff/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -130,7 +133,7 @@ infrahub/core/diff/repository/deserializer.py,sha256=bhN9ao8HxqKyRz273QGLNV9z9_S
|
|
|
130
133
|
infrahub/core/diff/repository/repository.py,sha256=b54YvGDaFg3FEDNjOTS-WC3Rvtq4bdpDb1NGEKURnqg,25851
|
|
131
134
|
infrahub/core/diff/tasks.py,sha256=7_k-ZNcJZsiDp-xCZvCQfPJjg0xRxpaGTiVVNuRPfBI,3322
|
|
132
135
|
infrahub/core/enums.py,sha256=qGbhRVoH43Xi0iDkUfWdQiKapJbLT9UKsCobFk_paIk,491
|
|
133
|
-
infrahub/core/graph/__init__.py,sha256=
|
|
136
|
+
infrahub/core/graph/__init__.py,sha256=2EUPjmgYV1tf8ln4lfXK57uUCRFRuanN9SNHZmXdy24,19
|
|
134
137
|
infrahub/core/graph/constraints.py,sha256=lmuzrKDFoeSKRiLtycB9PXi6zhMYghczKrPYvfWyy90,10396
|
|
135
138
|
infrahub/core/graph/index.py,sha256=IHLP-zPRp7HJYLGHMRDRXQp8RC69ztP10Tr5NcL2j4Y,1736
|
|
136
139
|
infrahub/core/graph/schema.py,sha256=FmEPPb1XOFv3nnS_XJCuUqlp8HsStX5A2frHjlhoqvE,10105
|
|
@@ -149,7 +152,7 @@ infrahub/core/ipam/utilization.py,sha256=d-zpXCaWsHgJxBLopCDd7y4sJYvHcIzzpYhbTMI
|
|
|
149
152
|
infrahub/core/manager.py,sha256=NaUuSY7Veesa67epQRuQ2TJD0-ooUSnvNRIUZCntV3g,47576
|
|
150
153
|
infrahub/core/merge.py,sha256=bZvToLKyphJlWMbQAzGuSHcrG2DfeqL69KSfqb1wWdc,10430
|
|
151
154
|
infrahub/core/migrations/__init__.py,sha256=syPb3-Irf11dXCHgbT0UdmTnEBbpf4wXJ3m8ADYXDpk,1175
|
|
152
|
-
infrahub/core/migrations/graph/__init__.py,sha256=
|
|
155
|
+
infrahub/core/migrations/graph/__init__.py,sha256=e0OzJEAn1qvtPghPwan8kWrLzDXX9eaw7YgbFlAZevA,2872
|
|
153
156
|
infrahub/core/migrations/graph/m001_add_version_to_graph.py,sha256=YcLN6cFjE6IGheXR4Ujb6CcyY8bJ7WE289hcKJaENOc,1515
|
|
154
157
|
infrahub/core/migrations/graph/m002_attribute_is_default.py,sha256=wB6f2N_ChTvGajqHD-OWCG5ahRMDhhXZuwo79ieq_II,1036
|
|
155
158
|
infrahub/core/migrations/graph/m003_relationship_parent_optional.py,sha256=Aya-s98XfE9C7YluOwEjilwgnjaBnZxp27w_Xdv_NmU,2330
|
|
@@ -162,7 +165,7 @@ infrahub/core/migrations/graph/m009_add_generate_profile_attr.py,sha256=7FfjKyVY
|
|
|
162
165
|
infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py,sha256=M4Orq480PzwBEz85QZqdBh-1arJdIwXNwnPA6cWy5Yg,1366
|
|
163
166
|
infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py,sha256=TYQ1jXNucLIBbqLS35nUb_72OmMspXexSSW83Ax0oEw,1980
|
|
164
167
|
infrahub/core/migrations/graph/m012_convert_account_generic.py,sha256=XvOKS0CSJSOdXQfan7N_Nrak6CB75r9xyT5rErUb61w,10998
|
|
165
|
-
infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=
|
|
168
|
+
infrahub/core/migrations/graph/m013_convert_git_password_credential.py,sha256=Vq9jH4NK4LNH__2c_2wCRIHZg17-nxhfLB0CiMSdmNk,12734
|
|
166
169
|
infrahub/core/migrations/graph/m014_remove_index_attr_value.py,sha256=Amds1gl8YtNIekU0tSXpHzdfk8UFqChC2LOLfnQ1YTM,1441
|
|
167
170
|
infrahub/core/migrations/graph/m015_diff_format_update.py,sha256=DETKst0UNXmuE0aQJep1SJxukajZSK8avF9Z-c0W4ME,1267
|
|
168
171
|
infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py,sha256=hcnJN3dOoDfbKcEzlRPew2XbJ-hqsEsjkDSGEnjwbFs,1275
|
|
@@ -178,12 +181,14 @@ infrahub/core/migrations/graph/m025_uniqueness_nulls.py,sha256=n_g09PDLs1yo3dMYL
|
|
|
178
181
|
infrahub/core/migrations/graph/m026_0000_prefix_fix.py,sha256=7sP6nQZrqgzFyRUHKf5fKSX2LrzKEAAsiDsRSu9noJM,1944
|
|
179
182
|
infrahub/core/migrations/graph/m027_delete_isolated_nodes.py,sha256=aAfDUdhsR05CpehVeyLWQ1tRstgrF0HY2V5V6X5ALxM,1589
|
|
180
183
|
infrahub/core/migrations/graph/m028_delete_diffs.py,sha256=PwesD95KTTJsNbMX3NK6O_rGLR7hB-GEi7JIaXheiuQ,1397
|
|
184
|
+
infrahub/core/migrations/graph/m029_duplicates_cleanup.py,sha256=pXG1cmuEkBjDnPuuyugCJ-OsweOcm3GgorKcklwaAyU,28272
|
|
185
|
+
infrahub/core/migrations/graph/m030_illegal_edges.py,sha256=Saz7QmUqwuLiBtSBdQf54E1Bj3hz0k9KAOQ-pwPBH4g,2797
|
|
181
186
|
infrahub/core/migrations/query/__init__.py,sha256=JoWOUWlV6IzwxWxObsfCnAAKUOHJkE7dZlOsfB64ZEo,876
|
|
182
|
-
infrahub/core/migrations/query/attribute_add.py,sha256=
|
|
187
|
+
infrahub/core/migrations/query/attribute_add.py,sha256=LlhkIfVOR3TFSUJEV_4kU5JBKXsWwTsRiX1ySUPe4TU,3655
|
|
183
188
|
infrahub/core/migrations/query/attribute_rename.py,sha256=crY7divyLxUAnPsPK7xy_09eEPzr2Bc4FxyEB43Mnrc,6889
|
|
184
189
|
infrahub/core/migrations/query/delete_element_in_schema.py,sha256=QYw2LIpJGQXBPOTm6w9gFdCltZRd-V_YUh5l9HmGthg,7402
|
|
185
190
|
infrahub/core/migrations/query/node_duplicate.py,sha256=CXkGoa6Dqg4njdg8GSNQUwoDDnHgiOn2O45zU1vN9lE,8527
|
|
186
|
-
infrahub/core/migrations/query/relationship_duplicate.py,sha256=
|
|
191
|
+
infrahub/core/migrations/query/relationship_duplicate.py,sha256=hjUFjNqhaFc2tEg79BXR2xDr_4Wdmu9fVF02cTEICTk,7319
|
|
187
192
|
infrahub/core/migrations/query/schema_attribute_update.py,sha256=fLclNEgoikO_ddlFEo1ts-dZwTXITA85kdJ00fXFxqo,3382
|
|
188
193
|
infrahub/core/migrations/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
194
|
infrahub/core/migrations/schema/attribute_name_update.py,sha256=gebaeQX1MLmOxupTPcCzLJdeEQlUzs3XIl7T15-RdXY,1595
|
|
@@ -191,13 +196,13 @@ infrahub/core/migrations/schema/models.py,sha256=F1yp0GM-HutGdzhE0uPFq9JCTH9iHM3
|
|
|
191
196
|
infrahub/core/migrations/schema/node_attribute_add.py,sha256=4_g1W1wqfN3MT9GSAHAUEAZiLeAmvbUp88vauexTzdk,1085
|
|
192
197
|
infrahub/core/migrations/schema/node_attribute_remove.py,sha256=Il2ccGTlzP8bpXWJmhKxT4sFZEJxsP7tk2YXi9cgzyY,5283
|
|
193
198
|
infrahub/core/migrations/schema/node_kind_update.py,sha256=scVJz4FhiI2meIVSDTbc9Q6KfGksMDLMwnuxsaZX1aU,1454
|
|
194
|
-
infrahub/core/migrations/schema/node_remove.py,sha256=
|
|
199
|
+
infrahub/core/migrations/schema/node_remove.py,sha256=NdPNZH9qXf6HbyTMSaQ3aU58XWauAg861w_3D_Lc5tc,7124
|
|
195
200
|
infrahub/core/migrations/schema/placeholder_dummy.py,sha256=3T3dBwC_ZyehOJr2KRKFD6CXaq8QIjVk0N-nWAMvFYw,308
|
|
196
201
|
infrahub/core/migrations/schema/tasks.py,sha256=x6c_5N0pcQ_lTH5Vaqg2_MwlQ08I35BdX-8NhRDozBE,4165
|
|
197
202
|
infrahub/core/migrations/shared.py,sha256=e7HEBijWhG46UN8ODjSmxvGeK8KAQ3Twnj2q1dvb2m0,6983
|
|
198
203
|
infrahub/core/models.py,sha256=aqsqO2cP0MndeX6KZk4NEBmeIy6dE7Ob9UqsmjTIAtA,26149
|
|
199
|
-
infrahub/core/node/__init__.py,sha256
|
|
200
|
-
infrahub/core/node/base.py,sha256=
|
|
204
|
+
infrahub/core/node/__init__.py,sha256=-K2QRITWtZWj2DdTQr0F0KtTe_w9t-FXl0fR2pzHIj0,39993
|
|
205
|
+
infrahub/core/node/base.py,sha256=BAowVRCK_WC50yXym1kCyUppJDJnrODGU5uoj1s0Yd4,2564
|
|
201
206
|
infrahub/core/node/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
207
|
infrahub/core/node/constraints/attribute_uniqueness.py,sha256=9MThTmuqZ7RgK71ZZARlw1k1x3ARn1U67g2_Gatd6rE,2099
|
|
203
208
|
infrahub/core/node/constraints/grouped_uniqueness.py,sha256=GQ1-l4ZoZR6FoklHAdqCaNwX3TmW6qrvKYJEVtdPOfc,12056
|
|
@@ -211,9 +216,9 @@ infrahub/core/node/resource_manager/ip_address_pool.py,sha256=-UQT5kaXSNK-sp7KnT
|
|
|
211
216
|
infrahub/core/node/resource_manager/ip_prefix_pool.py,sha256=HRonATGel6Hk8svPv_I_OZx3VY33nx5jEkWsLbwpQaU,5048
|
|
212
217
|
infrahub/core/node/resource_manager/number_pool.py,sha256=XGzFYdodQ3ZZmia2hxHLEzfPJMAEVuj9PKgSeThmsYw,3837
|
|
213
218
|
infrahub/core/node/standard.py,sha256=Cfbq01InTVRUpp9l4R3nxn_tlX6V3HchjEJ4kSxjiZM,7170
|
|
214
|
-
infrahub/core/path.py,sha256=
|
|
219
|
+
infrahub/core/path.py,sha256=dHIZRrNOLafdlApt0rF8zRe3KwhRbfwA_mbLcJue-4s,5840
|
|
215
220
|
infrahub/core/property.py,sha256=rwsqeaIvCMkHfJYl4WfsNPAS7KS0POo5rAN7vAprXGA,5102
|
|
216
|
-
infrahub/core/protocols.py,sha256=
|
|
221
|
+
infrahub/core/protocols.py,sha256=oGoI6SVD6JgMe8asgR1UWrMtLguNHaSDfCt5_FjHcDg,12265
|
|
217
222
|
infrahub/core/protocols_base.py,sha256=cEi6giHtEUmaD0JWfDfWHJhEv_6wjaBA3oJRJCbvc6Q,3411
|
|
218
223
|
infrahub/core/query/__init__.py,sha256=2qIMaODLwJ6pK6BUd5vODTlA15Aecf5I8_-J44UlCso,23089
|
|
219
224
|
infrahub/core/query/attribute.py,sha256=DzwbElgTaZs6-nBYGmnDpBr9n0lmUPK3p7eyI30Snh8,11783
|
|
@@ -221,10 +226,10 @@ infrahub/core/query/branch.py,sha256=Fqycgk8kzhmc1H_-gfiw3c-ZjNjAHw64XU7OQUkhDi0
|
|
|
221
226
|
infrahub/core/query/delete.py,sha256=_PL97nz-ybF0JqDSYlTPhIa4oCxwPiFerwd8Wjw-x-8,1918
|
|
222
227
|
infrahub/core/query/diff.py,sha256=DOtPHIu45Yp8wvj8wp16me9E3AK7wVcVfzS2_LIZn2k,35952
|
|
223
228
|
infrahub/core/query/ipam.py,sha256=0glfVQmcKqMvNyK4GU_zRl2O9pjl7JBeavyE8VC-De4,28234
|
|
224
|
-
infrahub/core/query/node.py,sha256=
|
|
225
|
-
infrahub/core/query/relationship.py,sha256=
|
|
229
|
+
infrahub/core/query/node.py,sha256=yEDRmEsVUttO7CXNCXnRK0p98wmUHqwybavJS4gfOAo,65140
|
|
230
|
+
infrahub/core/query/relationship.py,sha256=WYViWg8tZh_39w2SDtRZnXFNtfcbSQam2h9_HLHs1e4,47521
|
|
226
231
|
infrahub/core/query/resource_manager.py,sha256=wT1sfY8A3E60jBVIB4UCE5lkOeNINnvE-XIbmZAJ8C8,12713
|
|
227
|
-
infrahub/core/query/standard_node.py,sha256=
|
|
232
|
+
infrahub/core/query/standard_node.py,sha256=mPBXyqk4RzoWRUX4NoojoVi8zk-sJ03GmzmUaWqOgSI,4825
|
|
228
233
|
infrahub/core/query/subquery.py,sha256=UE071w3wccdU_dtKLV-7mdeQ53DKXjPmNxDV0zd5Tpg,7588
|
|
229
234
|
infrahub/core/query/task.py,sha256=tLgn8S_KaLYLuOB66D1YM155teHZIHNThkt2iUiKKD4,3137
|
|
230
235
|
infrahub/core/query/task_log.py,sha256=2RdthOAQrmpKZU8uhV_dJCPqwdsSA_1CYSKpL_eZ_yk,1120
|
|
@@ -235,13 +240,14 @@ infrahub/core/relationship/constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
235
240
|
infrahub/core/relationship/constraints/count.py,sha256=4wSjiJtRd4fQ5qYNzGyWrt1WLV7x5Go2ZatMTtK79QQ,4157
|
|
236
241
|
infrahub/core/relationship/constraints/interface.py,sha256=96A_IRKAU6FCS3Nqiey5WmUnA4PO73nOlBk5DgUCjbc,296
|
|
237
242
|
infrahub/core/relationship/constraints/peer_kind.py,sha256=WdKR8dOozVEaoU8cw-CP0oRq6Q_jcV3My3-47mgu1i0,2499
|
|
243
|
+
infrahub/core/relationship/constraints/peer_relatives.py,sha256=kWaqh2jIIub12iHsU62eS1RAPYpm7wCvPCEwR0hZ7xo,2709
|
|
238
244
|
infrahub/core/relationship/constraints/profiles_kind.py,sha256=iUNnPNfOU44LBDGGPqEH0goXL9nF5mSq236XlvLsnjc,2436
|
|
239
|
-
infrahub/core/relationship/model.py,sha256=
|
|
245
|
+
infrahub/core/relationship/model.py,sha256=CiSJn6uGBuDrdP4K1Kl0w_A6Lq_FLoNZH4ksssZnXMM,47004
|
|
240
246
|
infrahub/core/root.py,sha256=8ZLSOtnmjQcrjqX2vxNO-AGopEUArmBPo_X5NeZBdP0,416
|
|
241
247
|
infrahub/core/schema/__init__.py,sha256=Q8kzfcX7zhpHThTBoQMMjcXG95DdHcfOWT4poS0QJEY,4035
|
|
242
248
|
infrahub/core/schema/attribute_parameters.py,sha256=S0vOpkq2rd6W2py8LIZ53MusUZDLELeBBRmCRU9ZmMw,5787
|
|
243
|
-
infrahub/core/schema/attribute_schema.py,sha256=
|
|
244
|
-
infrahub/core/schema/basenode_schema.py,sha256=
|
|
249
|
+
infrahub/core/schema/attribute_schema.py,sha256=Da7h3254LHqW4MuIEY6a_kbzhzhyVlCXEKU7f7DtN4Q,10228
|
|
250
|
+
infrahub/core/schema/basenode_schema.py,sha256=q-jytPJUaaOq9l6mGXOnAiE3HPIRQe7hSJijH_6mkNk,23376
|
|
245
251
|
infrahub/core/schema/computed_attribute.py,sha256=9rznZJpGqX8fxLx0EguPmww8LoHsadMtQQUKaMoJPcI,1809
|
|
246
252
|
infrahub/core/schema/constants.py,sha256=KtFrvwNckyKZSGIMD4XfxI5eFTZqBRiw54R7BE5h39Q,374
|
|
247
253
|
infrahub/core/schema/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -263,25 +269,25 @@ infrahub/core/schema/definitions/core/propose_change.py,sha256=zAmZuhKtTTTVfURkz
|
|
|
263
269
|
infrahub/core/schema/definitions/core/propose_change_comment.py,sha256=tCYy0uazr4bOeQeuOHtN-v1ilLxaIO9T7fxkr4mLmDQ,5743
|
|
264
270
|
infrahub/core/schema/definitions/core/propose_change_validator.py,sha256=IwrEQvutsxSFcDrcAFoevCzkwnPF3E6iyF0lUOi61RM,9947
|
|
265
271
|
infrahub/core/schema/definitions/core/repository.py,sha256=SZDztZRCqdAOXgURaZk1X-OPGXqBMrVur8_DhPcwQ_E,9630
|
|
266
|
-
infrahub/core/schema/definitions/core/resource_pool.py,sha256=
|
|
272
|
+
infrahub/core/schema/definitions/core/resource_pool.py,sha256=VIXOzsL6N04LoMo2lXdpLthlGDaG5D30nsrHb1SomoM,6366
|
|
267
273
|
infrahub/core/schema/definitions/core/template.py,sha256=rgYhpimxW0vhTmpo5cv_QA2I6MFT4r_ED7xA4BtzdKY,1037
|
|
268
274
|
infrahub/core/schema/definitions/core/transform.py,sha256=UB2TaBjabIiErivBR16srxq7fgYoKjmjZaVun8vxXvY,3061
|
|
269
275
|
infrahub/core/schema/definitions/core/webhook.py,sha256=YHeFMdsQDoG804iO6beozkfzln5cZnXKAsjB0Twlqw0,4224
|
|
270
276
|
infrahub/core/schema/definitions/deprecated.py,sha256=PUXfRupaxNT3R_a6eFnvAcvXKOZenVb7VnuLAskZfT0,829
|
|
271
|
-
infrahub/core/schema/definitions/internal.py,sha256=
|
|
277
|
+
infrahub/core/schema/definitions/internal.py,sha256=wp1sJ4LyXYUodC3wRpsC23qB-YGRgr-JuhN4N41FzVY,34210
|
|
272
278
|
infrahub/core/schema/dropdown.py,sha256=Vj4eGg9q3OLy3RZm7rjORifURntIMY9GHM7G4t-0Rcs,605
|
|
273
279
|
infrahub/core/schema/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
-
infrahub/core/schema/generated/attribute_schema.py,sha256=
|
|
280
|
+
infrahub/core/schema/generated/attribute_schema.py,sha256=ejb0weONsOG7o9-y2cgveK-FDPgdoIFWKoUopK4CBdE,5619
|
|
275
281
|
infrahub/core/schema/generated/base_node_schema.py,sha256=YR4FxbXd_K6Z0qim5oBQ4EsKSBJMf5DVCuoXZ8LnmMg,4428
|
|
276
282
|
infrahub/core/schema/generated/genericnode_schema.py,sha256=FvfeYfld9YeKHOzyH6G3zFkZP_ETrWfvvOpggLT8waY,1059
|
|
277
283
|
infrahub/core/schema/generated/node_schema.py,sha256=PMgbQX1PC5ixQsjOFw_bcEfa4txGNUI6BV6OkFDG3wQ,1631
|
|
278
|
-
infrahub/core/schema/generated/relationship_schema.py,sha256=
|
|
284
|
+
infrahub/core/schema/generated/relationship_schema.py,sha256=YR61XwzEa3w6TVQbnpduUaCWF6-tufUE87Jfu_Lw1Io,5597
|
|
279
285
|
infrahub/core/schema/generic_schema.py,sha256=4qXhCm4G_MgDqxZOut_AJwatU4onXBECKeS1UZcusr8,1340
|
|
280
|
-
infrahub/core/schema/manager.py,sha256=
|
|
286
|
+
infrahub/core/schema/manager.py,sha256=UEOPCq6iz4H1xcz_Copztk_03PamggL-pjtANruY3A4,32815
|
|
281
287
|
infrahub/core/schema/node_schema.py,sha256=ld_Wrqf-RsoEUVz_lKE0tcSf5n_oYZYtRI0lTqtd63o,6150
|
|
282
288
|
infrahub/core/schema/profile_schema.py,sha256=cOPSOt5KLgQ0nbqrAN_o33hY_pUtrKmiwSbY_YpVolI,1092
|
|
283
289
|
infrahub/core/schema/relationship_schema.py,sha256=lVbyQKMP2jPZZwZGK6DBvXdXfEQEsQGMbZ2WYxOZKTw,8261
|
|
284
|
-
infrahub/core/schema/schema_branch.py,sha256=
|
|
290
|
+
infrahub/core/schema/schema_branch.py,sha256=Y62-lZKrqFWVbfuxUbqhL_6CidZueb2TgFQZWnLvr7I,101665
|
|
285
291
|
infrahub/core/schema/schema_branch_computed.py,sha256=14UUsQJDLMHkYhg7QMqeLiTF3PO8c8rGa90ul3F2ZZo,10629
|
|
286
292
|
infrahub/core/schema/template_schema.py,sha256=O-PBS9IRM4JX6PxeoyZKwqZ0u0SdQ2zxWMc01PJ2_EA,1084
|
|
287
293
|
infrahub/core/task/__init__.py,sha256=Ied1NvKGJUDmff27z_-yWW8ArenHxGvSvQTaQyx1iHs,128
|
|
@@ -322,27 +328,29 @@ infrahub/core/validators/relationship/count.py,sha256=AjXLSx3LqG74rnpFXY0LBCahs5
|
|
|
322
328
|
infrahub/core/validators/relationship/optional.py,sha256=X1nGKt19RumNInZ0Ij-fEcq6-TrwrJcGOW4rrsQsdV8,4339
|
|
323
329
|
infrahub/core/validators/relationship/peer.py,sha256=zP-4GYG3YMlwPrPWzKkyHi-uYDmGpLg7mLql5alhikg,5463
|
|
324
330
|
infrahub/core/validators/shared.py,sha256=dhCz2oTM5JxA3mpcQvN83KIKIv-VNPSiG0lh4ZiTAFw,1345
|
|
325
|
-
infrahub/core/validators/tasks.py,sha256=
|
|
331
|
+
infrahub/core/validators/tasks.py,sha256=oaV1rOFiGOkbZYjpK2d5UTj_LFJAghSMKbO7w5fgvk0,3470
|
|
326
332
|
infrahub/core/validators/uniqueness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
333
|
infrahub/core/validators/uniqueness/checker.py,sha256=RpiLpIjbdkwwjivry-vjEkVim6ZoC-t2H5Bal7ngASQ,10375
|
|
328
334
|
infrahub/core/validators/uniqueness/index.py,sha256=Jw1o-UVinQquNduZ5vCCzt8GUfIEdVzBo-1XyRti8F8,5068
|
|
329
335
|
infrahub/core/validators/uniqueness/model.py,sha256=V2aejcuHPhgC5nTrS7xX0JFMzprVu90QAau-rUzruCY,5135
|
|
330
336
|
infrahub/core/validators/uniqueness/query.py,sha256=5HRjt4WlQCIP9krlKqkBNMJGgavKik8-Z11Q1_YllLk,11650
|
|
331
|
-
infrahub/database/__init__.py,sha256=
|
|
337
|
+
infrahub/database/__init__.py,sha256=6O0bJgTcc2HYinLZirOJaf9HhWbgrzfu9KT484UyCf8,20918
|
|
332
338
|
infrahub/database/index.py,sha256=ATLqw9Grqbq7haGGm14VSEPmcPniid--YATiffo4sA0,1676
|
|
333
339
|
infrahub/database/memgraph.py,sha256=Fg3xHP9s0MiBBmMvcEmsJvuIUSq8U_XCS362HDE9d1s,1742
|
|
334
340
|
infrahub/database/metrics.py,sha256=xU4OSKFbsxcw_yZlt_39PmGtF7S7yPbPuOIlSCu5sI0,739
|
|
335
341
|
infrahub/database/neo4j.py,sha256=ou7PGE9rbcVD4keBEFCDFm30MEexnijbZOo3kqrfW3k,2337
|
|
342
|
+
infrahub/database/validation.py,sha256=7JEG-5pEMFwyWxUgwFw-cWmzgaqt77dM5PNuFX9iLPc,4146
|
|
336
343
|
infrahub/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
344
|
infrahub/dependencies/builder/constraint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
345
|
infrahub/dependencies/builder/constraint/grouped/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
|
-
infrahub/dependencies/builder/constraint/grouped/node_runner.py,sha256=
|
|
346
|
+
infrahub/dependencies/builder/constraint/grouped/node_runner.py,sha256=3JJS8qN-RfGqfsF55pqL_OIAKHXzmvyj3FlQ5ZrIlQ0,1372
|
|
340
347
|
infrahub/dependencies/builder/constraint/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
348
|
infrahub/dependencies/builder/constraint/node/grouped_uniqueness.py,sha256=lDPINXeKuAoxwPcxG0p9HcnZFAnIiPLlWNz0yHApcIw,477
|
|
342
349
|
infrahub/dependencies/builder/constraint/node/uniqueness.py,sha256=3YzMLdhSBDCb78vMzufSzfoX6VKa7AwwTqNwuDL9q0E,489
|
|
343
350
|
infrahub/dependencies/builder/constraint/relationship_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
351
|
infrahub/dependencies/builder/constraint/relationship_manager/count.py,sha256=VJ4zMK2BYrC78mT7Ag9_tj4bvW2sMZNH-Xtsmls-r5I,452
|
|
345
352
|
infrahub/dependencies/builder/constraint/relationship_manager/peer_kind.py,sha256=ujU54uA8Xdb9BBhq5d-gpol1i3LdFdaPSnaersuAmNw,471
|
|
353
|
+
infrahub/dependencies/builder/constraint/relationship_manager/peer_relatives.py,sha256=g1kRTNFeR7c23Uys7CVPBMdynCZ8kiRlTIwS4hnsVrw,501
|
|
346
354
|
infrahub/dependencies/builder/constraint/relationship_manager/profiles_kind.py,sha256=vogawGQ7dDlcDX0ERNt8Dq1d7CokHB43yZkhB3AIrgo,495
|
|
347
355
|
infrahub/dependencies/builder/constraint/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
356
|
infrahub/dependencies/builder/constraint/schema/aggregated.py,sha256=2o8wGaeEDCKDgerMDGPTk-QKd32F90hjZHb5bekEY80,2682
|
|
@@ -369,7 +377,7 @@ infrahub/dependencies/builder/diff/conflicts_extractor.py,sha256=LL_Tvsp-I6R1q9I
|
|
|
369
377
|
infrahub/dependencies/builder/diff/coordinator.py,sha256=7Z4SwtkKicZLnWQl_sZFKpHkSWqa1co_ijsBExWlVQo,1479
|
|
370
378
|
infrahub/dependencies/builder/diff/data_check_conflict_recorder.py,sha256=ABMNwa0H6uo-WW_EjhFXMEdFkIJ2e6cBY9yPuiGbhUE,683
|
|
371
379
|
infrahub/dependencies/builder/diff/data_check_synchronizer.py,sha256=k8mc4yAd7hczXajaMfw9yQ04b3qtqD1Jm5G4uDbmNNc,890
|
|
372
|
-
infrahub/dependencies/builder/diff/deserializer.py,sha256=
|
|
380
|
+
infrahub/dependencies/builder/diff/deserializer.py,sha256=bC4ixLHGFtvIPKcSZpKwyGL9HjmS9ZSnjbMjJm4fT50,518
|
|
373
381
|
infrahub/dependencies/builder/diff/diff_merger.py,sha256=4b--RJTLE5I5jdcB9JirXanT29-yA5I1ad25GXOnHm4,775
|
|
374
382
|
infrahub/dependencies/builder/diff/enricher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
383
|
infrahub/dependencies/builder/diff/enricher/aggregated.py,sha256=G6v4ds0Vpx_6QXPBP7kiEZaUZ1BWJis-9WLxBDsSt_E,964
|
|
@@ -389,14 +397,14 @@ infrahub/dependencies/component/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
389
397
|
infrahub/dependencies/component/exceptions.py,sha256=B_ecp1bPThvFhnJRFiPkIQ6YPcHED5bk296fTcOHwcM,47
|
|
390
398
|
infrahub/dependencies/component/registry.py,sha256=E1K5uK7LU5MK6SxrUjajBw4K1I7dCyAMRfQBxV2yzq0,1435
|
|
391
399
|
infrahub/dependencies/interface.py,sha256=pVNdGYVeGlJgmBBlnv-3UYPXeZqZT8mx9Sg4SsqME40,446
|
|
392
|
-
infrahub/dependencies/registry.py,sha256=
|
|
400
|
+
infrahub/dependencies/registry.py,sha256=yKGfvuEt5z5wW90u3dIwDF5KEyJYfZsElnffjOD1OnA,4328
|
|
393
401
|
infrahub/events/__init__.py,sha256=MB4xQU5HyUrK5nOdEE31csO3KC0ARJv0m9FtcjdbbXQ,974
|
|
394
402
|
infrahub/events/artifact_action.py,sha256=05R-idXAA_JMWi4KrICKyyLTfIVANHg5WZ9uxsivbt8,2632
|
|
395
403
|
infrahub/events/branch_action.py,sha256=73j9oWwSLg65WAjpq_d2QcOKfcy8Y9kAjP8A2YrOOIM,4692
|
|
396
404
|
infrahub/events/constants.py,sha256=B6sv4eWA_A0I6IKjVG6A4sn0xdV-rHSztlTwoe2kphY,29
|
|
397
405
|
infrahub/events/generator.py,sha256=reEO-TefCvt5E9mayLXQJXfsKFc7sSIYg4P5g63kAsU,2716
|
|
398
406
|
infrahub/events/group_action.py,sha256=UWbvoCuk1gvDN5osIvYgs6UZmD8Xqfv2Iro5SIoNQ0Q,3960
|
|
399
|
-
infrahub/events/models.py,sha256=
|
|
407
|
+
infrahub/events/models.py,sha256=Ljwk1SJaLF0pcM_3K_D9plhce3f53bk6gTSW9GdYJSs,7229
|
|
400
408
|
infrahub/events/node_action.py,sha256=UagMAcK9gfCJYCnkGEAPuVHLpFzNvlqW1glXcKSn8dk,7093
|
|
401
409
|
infrahub/events/repository_action.py,sha256=5x0boObzGipVb_QGQfNOXBrtENs-SNAjruttBzG4HZg,919
|
|
402
410
|
infrahub/events/schema_action.py,sha256=IvsCvEWsnl7CArJT5DqBn7nF7xmE8JdOHdcVqjeLWGk,1429
|
|
@@ -459,7 +467,7 @@ infrahub/graphql/mutations/diff_conflict.py,sha256=JngQfyKXCVlmtlqQ_VyabmrOEDOEK
|
|
|
459
467
|
infrahub/graphql/mutations/generator.py,sha256=Ulw4whZm8Gc8lJjwfUFoFSsR0cOUliFKl87Oca4B9O0,3579
|
|
460
468
|
infrahub/graphql/mutations/graphql_query.py,sha256=mp_O2byChneCihUrEAFEiIAgJ1gW9WrgtwPetUQmkJw,3562
|
|
461
469
|
infrahub/graphql/mutations/ipam.py,sha256=wIN8OcTNCHVy32YgatWZi2Of-snFYBd4wlxOAJvE-AY,15961
|
|
462
|
-
infrahub/graphql/mutations/main.py,sha256=
|
|
470
|
+
infrahub/graphql/mutations/main.py,sha256=I4qE7mf-vQcDqPdW_8MsyRe_GtuPeHJj-pjB3_tzsPk,19716
|
|
463
471
|
infrahub/graphql/mutations/menu.py,sha256=u2UbOA-TFDRcZRGFkgYTmpGxN2IAUgOvJXd7SnsufyI,3708
|
|
464
472
|
infrahub/graphql/mutations/models.py,sha256=ilkSLr8OxVO9v3Ra_uDyUTJT9qPOmdPMqQbuWIydJMo,264
|
|
465
473
|
infrahub/graphql/mutations/node_getter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -470,7 +478,7 @@ infrahub/graphql/mutations/node_getter/interface.py,sha256=3MVTz_3EQnI7REp-ytQvg
|
|
|
470
478
|
infrahub/graphql/mutations/proposed_change.py,sha256=4y9YTE6f9Rqk_TC2K_uued1bECthE8DmrRm1wfxXzmM,10374
|
|
471
479
|
infrahub/graphql/mutations/relationship.py,sha256=b-zi8O0JZo52zVoGabIrWvIFh64PbhHzjF9klZ7p8ac,20139
|
|
472
480
|
infrahub/graphql/mutations/repository.py,sha256=Whrt1uYWt7Ro6omJYN8zc3D-poZ6bOBrpBHIG4odAmo,11316
|
|
473
|
-
infrahub/graphql/mutations/resource_manager.py,sha256=
|
|
481
|
+
infrahub/graphql/mutations/resource_manager.py,sha256=WsnVV37bnaegNySxBOY5G04GkB39Ky851H5H4ReHV30,10912
|
|
474
482
|
infrahub/graphql/mutations/schema.py,sha256=vOwP8SIcQxamhP_JwbeXPG5iOEwxHhHawgqU6bD-4us,12897
|
|
475
483
|
infrahub/graphql/mutations/tasks.py,sha256=j2t5pMXRQ1i3ohQ-WjfDaDNQpj-CnFnqYCTZ3y5p7ec,3806
|
|
476
484
|
infrahub/graphql/mutations/webhook.py,sha256=IW_WPpBRySd-mpbkuGnR28VpU9naM2bLZBjJOaAGuH4,4777
|
|
@@ -491,9 +499,9 @@ infrahub/graphql/queries/search.py,sha256=0_yp6yxPSy8TQoTmp6zpc3u0b1TRuGgUOiMTfZ
|
|
|
491
499
|
infrahub/graphql/queries/status.py,sha256=4GtTKOUBsVSHdPoWbGAka52V99iz39fsrgmWgm8HoIY,2116
|
|
492
500
|
infrahub/graphql/queries/task.py,sha256=-b443BY8XlE03F-RUcH3mxX_veuQP8Jf2GLCWKrAtWc,3914
|
|
493
501
|
infrahub/graphql/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
494
|
-
infrahub/graphql/resolvers/many_relationship.py,sha256=
|
|
495
|
-
infrahub/graphql/resolvers/resolver.py,sha256=
|
|
496
|
-
infrahub/graphql/resolvers/single_relationship.py,sha256=
|
|
502
|
+
infrahub/graphql/resolvers/many_relationship.py,sha256=5nrb6k6JQYubfGGXnU26XyCACaa1r040uU7N4faDfLQ,9765
|
|
503
|
+
infrahub/graphql/resolvers/resolver.py,sha256=CCavWqKZ9OfdZRJ57yw3hE320rIubfYF80aQ7Y3lGdo,11934
|
|
504
|
+
infrahub/graphql/resolvers/single_relationship.py,sha256=Fh8NJYfxWGSIddJsm7PpAacutY_UN_bdMQ3GdvA9W00,6978
|
|
497
505
|
infrahub/graphql/schema.py,sha256=oMenIbYKYu7m8j5i36jtrctlsusbqvADtEjzfMCORqg,3943
|
|
498
506
|
infrahub/graphql/subscription/__init__.py,sha256=rVgLryqg-kbzkd3Dywb1gMPsthR8wFqB7nluuRKKfrE,1154
|
|
499
507
|
infrahub/graphql/subscription/events.py,sha256=tDg9fy66dLmbXaf_9YC-3LmC1sqsj-smbq_LOsHdZ5Y,1838
|
|
@@ -524,7 +532,7 @@ infrahub/log.py,sha256=4FP80DGY5sk9R7CjcDpPiTfxuow-nfbhXWVpDByCVrw,2817
|
|
|
524
532
|
infrahub/menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
525
533
|
infrahub/menu/constants.py,sha256=z9aAxIBlAMXrjl3dXo0vZxBU0pcfh1FQOiqIussvpD0,195
|
|
526
534
|
infrahub/menu/generator.py,sha256=xdS_rSFTymhqtoVuQoQalTp_z5g9hNhryowbt09Dl3Y,5240
|
|
527
|
-
infrahub/menu/menu.py,sha256=
|
|
535
|
+
infrahub/menu/menu.py,sha256=jLnCghHbgrhbNG78uBtfLWrpKMisrQfZwybHC1hvXEc,13575
|
|
528
536
|
infrahub/menu/models.py,sha256=qh0W-Lut6DtszRABx9Xa1QG1q7SYQsBcNT21QuUBFYM,9839
|
|
529
537
|
infrahub/menu/repository.py,sha256=IQpEbQ1u9WiCl7cWCoElEVH_E9qhcLTaTsrf8BWmges,5044
|
|
530
538
|
infrahub/menu/utils.py,sha256=tkTAeVCTUWgLNvL9QiPwJwys6os1Q92nhigHXxMwyQo,272
|
|
@@ -541,7 +549,7 @@ infrahub/message_bus/operations/git/__init__.py,sha256=0Fbz1AnU8lWKdX7PS_b0BvjiK
|
|
|
541
549
|
infrahub/message_bus/operations/git/file.py,sha256=uW1dXVCMrQNC5-DFrVJ6PvfU47CQ2CQJec-bOXoBkjc,1472
|
|
542
550
|
infrahub/message_bus/operations/git/repository.py,sha256=eQ6csfEoCbyOTAgoA5mzHerW8-TlbrQaZQ4Htj6qZu8,2432
|
|
543
551
|
infrahub/message_bus/operations/refresh/__init__.py,sha256=vBuvTL4zRRpOMXATmckQ3bx2GnNwhxicFECA8-8ZZXk,47
|
|
544
|
-
infrahub/message_bus/operations/refresh/registry.py,sha256=
|
|
552
|
+
infrahub/message_bus/operations/refresh/registry.py,sha256=JOR-71kiSgEpbEeLJAxcNv7JoV5ORahV_Gr6ytKgZSQ,1357
|
|
545
553
|
infrahub/message_bus/operations/send/__init__.py,sha256=ivuUTAknLiWfArR44SxA40l0UKVkdHjtDIx0mg06IcE,39
|
|
546
554
|
infrahub/message_bus/operations/send/echo.py,sha256=m2z_ij7Bucl8u1E1rLAfL3fsrhKZhk_vNIvLqNErIEI,652
|
|
547
555
|
infrahub/message_bus/types.py,sha256=INOsBhOsPnTSB_6SvMWw1BrnRJZyDgG2c601IjSidgs,4418
|
|
@@ -557,8 +565,7 @@ infrahub/patch/plan_reader.py,sha256=uqHNYVBBkpmVIGwaxl2tlMNJd2tPVedNZoSmFSjTdow
|
|
|
557
565
|
infrahub/patch/plan_writer.py,sha256=x2u5Oe3ME3zXTdkz5hRnvp2EaQwt-r4LyuSATc2LkKs,4822
|
|
558
566
|
infrahub/patch/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
559
567
|
infrahub/patch/queries/base.py,sha256=wXtv4I-7l_u0kXJFbmFZZJ0_2_5yvuAJwmwiLqRq7AY,338
|
|
560
|
-
infrahub/patch/queries/
|
|
561
|
-
infrahub/patch/queries/delete_duplicated_edges.py,sha256=sJ2-qMg1jcF-qutY-_pTB6TFjtZBilDxDqHVbwHWKxU,6251
|
|
568
|
+
infrahub/patch/queries/delete_duplicated_edges.py,sha256=u3Co_8taoJm92pzfFK6PrDMk_URrftV-mYf5_I6ll4c,6758
|
|
562
569
|
infrahub/patch/runner.py,sha256=ZB4aOqlG77hJNtDyQtIXmi-2WgM07WSEFtWV2NItIqk,12594
|
|
563
570
|
infrahub/patch/vertex_adder.py,sha256=lhWELYWlHwkopGOECSHRfj1mb0-COheibsu95r2Hwzs,2796
|
|
564
571
|
infrahub/patch/vertex_deleter.py,sha256=czdb8T30k_-WSbcZUVS2-DvaN3Dp4j9ss2lAz8KN0mo,1302
|
|
@@ -575,6 +582,8 @@ infrahub/pools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
575
582
|
infrahub/pools/address.py,sha256=QouI4q09sPRTyXYQFL88l0qiQHsGgdYhttPu7Iq1lIM,773
|
|
576
583
|
infrahub/pools/number.py,sha256=z9mI939fgSoimoawzg56jJ9kKz0iffD8ONnSHbk3krs,2520
|
|
577
584
|
infrahub/pools/prefix.py,sha256=gS72R3rfA_nj51C6F-2nxzuGHlc8ci1IRRo918hndTU,1282
|
|
585
|
+
infrahub/pools/registration.py,sha256=Fb3psPJItii0aghV_oRbv4oKNb7Jv-V0a4gbBolhv0E,777
|
|
586
|
+
infrahub/pools/tasks.py,sha256=5UY00sDtV_7tXpdHTzKG5gotNI1zmwCAKKV0QvQykrM,2716
|
|
578
587
|
infrahub/prefect_server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
579
588
|
infrahub/prefect_server/app.py,sha256=By2HwjILkt07JLQciAEOcObmrBelL1mf6Woyz0TtEI0,396
|
|
580
589
|
infrahub/prefect_server/database.py,sha256=v-uti6O__lK51zG_ICq8Drj8j7XlrkRZNZouRK0y_4U,883
|
|
@@ -586,6 +595,9 @@ infrahub/proposed_change/constants.py,sha256=w8fPxKWJM1DzeClRd7Vr53hxkzl2Bq-rnXW
|
|
|
586
595
|
infrahub/proposed_change/models.py,sha256=ivWJmEAihprKmwgaBGDJ4Koq4ETciE5GfDp86KHDnns,5892
|
|
587
596
|
infrahub/proposed_change/tasks.py,sha256=-pLG-0ff6RlflzROWdhglPTtGKeBWCV7qhLte2xjaJ0,61873
|
|
588
597
|
infrahub/pytest_plugin.py,sha256=u3t0WgLMo9XmuQYeb28mccQ3xbnyv2Fv173YWl1zBiM,6678
|
|
598
|
+
infrahub/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
599
|
+
infrahub/schema/tasks.py,sha256=vEaWWksqrfwwCAIgPxscVU81W9PIxODX552Rtkte1Cs,947
|
|
600
|
+
infrahub/schema/triggers.py,sha256=LfvNorh2rFit-d8ip_ZoHvBL0D8ZlwH6BPduCp9uc5M,874
|
|
589
601
|
infrahub/serve/__init__.py,sha256=cWzvEH-Zwr1nQsoNJO9q1pef5KLuSK3VQLOumlnsQxk,73
|
|
590
602
|
infrahub/serve/gunicorn_config.py,sha256=BkClF6yjz-sIhZ-oDizXUmGSEE-FQSmy21JfVnRI5tA,102
|
|
591
603
|
infrahub/serve/log.py,sha256=qUidwbtE5AlyLHnWKVoEggOoHKhfMMjYlUH1d-iGwqg,953
|
|
@@ -635,11 +647,11 @@ infrahub/transformations/constants.py,sha256=_cVDcd8m1HCyKf8k_pAwdoaPTGD7524reuJ
|
|
|
635
647
|
infrahub/transformations/models.py,sha256=YuNLGcourz0ekBJyLnzuzLDfxkmmUVqGiabg69EI34w,1744
|
|
636
648
|
infrahub/transformations/tasks.py,sha256=zgaZzlPbzGAfQdk1hqjZetLoQL7EuaTI7o_Ofg29IRU,1981
|
|
637
649
|
infrahub/trigger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
638
|
-
infrahub/trigger/catalogue.py,sha256=
|
|
650
|
+
infrahub/trigger/catalogue.py,sha256=NxFUsvn2Tu0NR8GuOrhfZFc-8YFyF-W5BA0OnaBISqc,770
|
|
639
651
|
infrahub/trigger/constants.py,sha256=u9_5A6gIUIrprzfEdwseYk2yTkwU0VPCjZTwL8b3T6s,22
|
|
640
|
-
infrahub/trigger/models.py,sha256=
|
|
641
|
-
infrahub/trigger/setup.py,sha256=
|
|
642
|
-
infrahub/trigger/tasks.py,sha256=
|
|
652
|
+
infrahub/trigger/models.py,sha256=akPvpURi-jBfATZXOq9_vTddJ8Ysrya8mF2rte0EvYM,4874
|
|
653
|
+
infrahub/trigger/setup.py,sha256=oXxAPZc9MYOwY39Yf_LXsDFfsNSVQ2Bnos9BzTh4tKg,6257
|
|
654
|
+
infrahub/trigger/tasks.py,sha256=w-OYwcaxfOQfMpfB7aaajKyUW1ofGWUR0ytgPN0mziY,1506
|
|
643
655
|
infrahub/types.py,sha256=TSMRbtqsNh3hz3GaIUB2j4iPHTURzsp7z75e5JuTOao,11483
|
|
644
656
|
infrahub/utils.py,sha256=3p_bXmRGOTnXIMG9fZ9mFsKdBw2fU3VBFJT3YHrbvyw,2704
|
|
645
657
|
infrahub/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -649,14 +661,14 @@ infrahub/visuals.py,sha256=N62G4oOOIYNFpvMjKq7uos-oZAZybGMp57uh5jsVX9w,627
|
|
|
649
661
|
infrahub/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
650
662
|
infrahub/webhook/gather.py,sha256=XNaIGiHDiMjjtSjsVbswOze7cLaL0MKJmvSbZBS-WT0,691
|
|
651
663
|
infrahub/webhook/models.py,sha256=c_6Ng8BeoyUDb4TZInVruB7e8Faq_QQ8-00IVcEBwJM,10031
|
|
652
|
-
infrahub/webhook/tasks.py,sha256=
|
|
664
|
+
infrahub/webhook/tasks.py,sha256=LGkA7tCPKm50ZKyyFusZ6-CzBcXBv6W41jhbPHDCz4Y,7222
|
|
653
665
|
infrahub/webhook/triggers.py,sha256=v1dzFV4wX0GO2n5hft_qzp-oJOA2P_9Q2eTcSP-i0pk,1574
|
|
654
666
|
infrahub/worker.py,sha256=JtTM-temURUbpEy-bkKJuTt-GKoiHFDrOe9SyVTIXEM,49
|
|
655
667
|
infrahub/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
656
668
|
infrahub/workers/infrahub_async.py,sha256=NQ2HLmRFWW1_M9NZmmdkEctFCPgqGKFmweGlNkjdgyU,9207
|
|
657
669
|
infrahub/workers/utils.py,sha256=m6FOKrYo53Aoj-JcEyQ7-J4Dc20R9JtHMDzTcqXiRpg,2407
|
|
658
670
|
infrahub/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
659
|
-
infrahub/workflows/catalogue.py,sha256=
|
|
671
|
+
infrahub/workflows/catalogue.py,sha256=kREtW99HWgimEKx8qtHjwQ4nnq4x-mm_kA7K7Li9qhI,17879
|
|
660
672
|
infrahub/workflows/constants.py,sha256=7je2FF7tJH6x_ZNqHKZfQX91X7I5gmD8OECN3dE_eqI,651
|
|
661
673
|
infrahub/workflows/initialization.py,sha256=ZrmqxuSgPqHgQf35DDrUPcWV7PZOrUk0HMmn9JfGlec,3213
|
|
662
674
|
infrahub/workflows/models.py,sha256=uGBNla2xJqKnqARdq21vhXGHxM2ozDqioeBvT7zg3Jo,3439
|
|
@@ -773,18 +785,19 @@ infrahub_sdk/uuidt.py,sha256=Tz-4nHkJwbi39UT3gaIe2wJeZNAoBqf6tm3sw7LZbXc,2155
|
|
|
773
785
|
infrahub_sdk/yaml.py,sha256=512OKgxAYPt4QLBFlucUB4GgwKJ09dzgC86pO57YFFw,5018
|
|
774
786
|
infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
|
|
775
787
|
infrahub_testcontainers/constants.py,sha256=mZ4hLvcf4rKk9wC7EId4MQxAY0sk4V99deB04N0J2bg,85
|
|
776
|
-
infrahub_testcontainers/container.py,sha256=
|
|
777
|
-
infrahub_testcontainers/docker-compose.test.yml,sha256=
|
|
788
|
+
infrahub_testcontainers/container.py,sha256=dZE-9IiOU5oqanyJzZMPPHgXTx1L73yXZjVHQoRxJg8,19507
|
|
789
|
+
infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=noKd7NLr6GQOn1X4qukvpsRvg15unGS7BfPDG4xkKdM,12057
|
|
790
|
+
infrahub_testcontainers/docker-compose.test.yml,sha256=dVbmHdho_AgCRFJ62jNAbtcPd_JMyRWWgfqqMDmIhfc,8565
|
|
778
791
|
infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTMFZJsnk,1305
|
|
779
|
-
infrahub_testcontainers/helpers.py,sha256=
|
|
792
|
+
infrahub_testcontainers/helpers.py,sha256=3HAygJJmU1vBrD63Abiau6BGypYEeysTqRb6nkcmw7g,4573
|
|
780
793
|
infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
|
|
781
794
|
infrahub_testcontainers/measurements.py,sha256=gR-uTasSIFCXrwvnNpIpfsQIopKftT7pBiarCgIShaQ,2214
|
|
782
795
|
infrahub_testcontainers/models.py,sha256=ASYyvl7d_WQz_i7y8-3iab9hwwmCl3OCJavqVbe8nXU,954
|
|
783
796
|
infrahub_testcontainers/performance_test.py,sha256=hvwiy6tc_lWniYqGkqfOXVGAmA_IV15VOZqbiD9ezno,6149
|
|
784
|
-
infrahub_testcontainers/plugin.py,sha256=
|
|
797
|
+
infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
|
|
785
798
|
infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
|
|
786
|
-
infrahub_server-1.3.
|
|
787
|
-
infrahub_server-1.3.
|
|
788
|
-
infrahub_server-1.3.
|
|
789
|
-
infrahub_server-1.3.
|
|
790
|
-
infrahub_server-1.3.
|
|
799
|
+
infrahub_server-1.3.0b2.dist-info/LICENSE.txt,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
|
|
800
|
+
infrahub_server-1.3.0b2.dist-info/METADATA,sha256=HV6qkHVC2VqqIpJxCwzBx-tPvQPr1jMl1GOpc9Z5aSs,8207
|
|
801
|
+
infrahub_server-1.3.0b2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
802
|
+
infrahub_server-1.3.0b2.dist-info/entry_points.txt,sha256=UXIeFWDsrV-4IllNvUEd6KieYGzQfn9paga2YyABOQI,393
|
|
803
|
+
infrahub_server-1.3.0b2.dist-info/RECORD,,
|