Skip to content

NetBox Design Deploy Task¤

task API name: design_deploy

The design_deploy task validates and renders optional Jinja2 YAML, then applies it as additive NetBox target state. It creates missing objects, updates supplied fields, and does not delete omitted objects. See the NetBox Design Specification for supported collections and nesting.

Inputs¤

Parameter Required Default Description
design Yes — YAML text, nf:// or git:// template URL, or parsed mapping
context No {} Input mapping, YAML text, or file URL validated by design_input_schema and exposed as context in Jinja2
instance No Worker default NetBox instance to target
dry_run No False Render and calculate changes without applying them
branch No None NetBox Branching plugin branch name

Design header¤

design_input_schema and jinja_functions are optional top-level sections. Put --- after them when the design body contains Jinja2 so the engine can read the header before rendering.

The header can be placed in a reusable file and included at the start of an nf:// or git:// design:

{% include "includes/design_schema.yaml" %}
---
design_input_schema:
  type: object
  additionalProperties: false
  properties:
    devices:
      type: array
      items:
        type: string
  required: [devices]

jinja_functions:
  allocate_vrf_route_target: nf://netbox/designs/functions/allocate_vrf_route_target.py
---
devices:
{% for device_name in context.devices %}
  - name: {{ device_name }}
{% endfor %}

vrfs:
  - name: CUSTOMER-A
    rd: "{{ allocate_vrf_route_target(100, rd_suffix=3) }}"

Inline JSON Schema is converted to a Pydantic model. design_input_schema may instead be an nf:// or git:// Python file containing a Pydantic model named DesignInput.

Every jinja_functions file must define a callable matching its mapping key:

def allocate_vrf_route_target(rd_prefix: int, rd_suffix: int = 1) -> str:
    return f"{rd_prefix}:{rd_suffix}"

The engine also provides these functions and filters:

Name Purpose
expand_range Expand strings such as Ethernet[1-4]
netbox.create_object Create or update one ordinary design object before later Jinja calls use it
netbox.create_prefix Allocate or reuse a prefix through create_prefix
netbox.create_ip Allocate or reuse an IP address through create_ip
netbox.create_vlan Allocate or reuse a VLAN through create_vlan
netbox.create_vlan_group Create or update a site-scoped VLAN group through create_vlan_group
netbox.create_asn Allocate or reuse an ASN through create_asn

Relative Jinja2 includes are supported for designs loaded through nf:// or git://:

{% include "includes/base_devices.yaml" %}

Output¤

The result groups object labels by action. diff contains desired create fields and field-level old/new update values.

{
    "created": {"devices": ["edge-1"]},
    "updated": {"interfaces": ["Ethernet1"]},
    "unchanged": {"sites": ["LAB-SITE"]},
}

Python example¤

result = client.run_job(
    "netbox",
    "design_deploy",
    workers="any",
    kwargs={
        "design": "nf://netbox/designs/site.yaml",
        "context": {"devices": ["edge-1", "edge-2"]},
    },
)

NFCLI example¤

nfcli> netbox design deploy design nf://netbox/designs/site.yaml context nf://netbox/designs/site-data.yaml

Notes / Gotchas¤

  • A design containing devices supplies undefined region, site, manufacturer, device role, and device type objects when mandatory references are omitted.
  • Allocation functions execute while Jinja2 renders. Create their parent prefix, VLAN group, ASN range, and other dependencies first with ordered Jinja calls at the top of the design.
  • Dry run cannot chain an allocation that depends on an object proposed earlier in the same render.
  • Jinja function and Pydantic model files execute as Python in the NetBox worker. Reference only deployment-controlled files.
  • Quote rendered values containing :, such as route distinguishers.

Troubleshooting¤

  • Input validation failed: compare context with design_input_schema.
  • Jinja function is not callable: ensure its Python function name matches the jinja_functions key.
  • Unsupported design collection: use a collection documented in the design specification.
  • Unable to resolve a reference: create the referenced object earlier or verify its natural key.
  • Allocation pool not found: create the parent prefix, VLAN group, or ASN range before deployment.

Python API Reference¤

Render, validate, and deploy an additive NetBox design.

Parameters:

Name Type Description Default
job Job

NorFab job injected by the task framework.

required
design Union[str, dict]

YAML design text, an nf:// or git:// design URL, or an already parsed design mapping.

required
context Union[str, dict]

User input exposed to Jinja2 through the context variable. If the design declares design_input_schema, the input is validated before the template is rendered.

{}
instance str

NetBox instance name. Uses the worker default when omitted.

None
dry_run bool

Calculate and return changes without applying them.

False
branch str

NetBox Branching plugin branch name.

None

Returns:

Type Description
Result

Result containing created, updated, and unchanged objects and diffs.

Raises:

Type Description
TypeError

If the design, design specification, or input data has an invalid type.

ValueError

If input validation fails, a declared Jinja function cannot be loaded, or the rendered design is invalid.

Source code in norfab\workers\netbox_worker\design_tasks.py
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
@Task(
    input=DesignDeployInput,
    output=DesignDeployResult,
    fastapi={"methods": ["POST"], "schema": NetboxFastApiArgs.model_json_schema()},
    mcp={
        "annotations": {
            "title": "Deploy Design",
            "readOnlyHint": False,
            "destructiveHint": False,
            "idempotentHint": True,
            "openWorldHint": True,
        }
    },
)
def design_deploy(
    self,
    job: Job,
    design: Union[str, dict],
    context: Union[str, dict] = {},
    instance: str = None,
    dry_run: bool = False,
    branch: str = None,
) -> Result:
    """Render, validate, and deploy an additive NetBox design.

    Args:
        job: NorFab job injected by the task framework.
        design: YAML design text, an ``nf://`` or ``git://`` design URL,
            or an already parsed design mapping.
        context: User input exposed to Jinja2 through the ``context``
            variable. If the design declares ``design_input_schema``, the
            input is validated before the template is rendered.
        instance: NetBox instance name. Uses the worker default when omitted.
        dry_run: Calculate and return changes without applying them.
        branch: NetBox Branching plugin branch name.

    Returns:
        Result containing created, updated, and unchanged objects and diffs.

    Raises:
        TypeError: If the design, design specification, or input data has
            an invalid type.
        ValueError: If input validation fails, a declared Jinja function
            cannot be loaded, or the rendered design is invalid.
    """
    instance = instance or self.default_instance
    ret = Result(
        task=f"{self.name}:design_deploy",
        result={"created": {}, "updated": {}, "unchanged": {}},
        resources=[instance],
        dry_run=dry_run,
        diff={},
    )
    if self.is_url(context):
        context = self.fetch_file(context, raise_on_fail=True)
    if isinstance(context, str):
        context = yaml.safe_load(context) or {}
    if not isinstance(context, dict):
        raise TypeError("Design context must be a dictionary or YAML mapping")

    if isinstance(design, dict):
        design = dict(design)
        input_schema = design.pop("design_input_schema", None)
        jinja_functions = design.pop("jinja_functions", {})
    elif isinstance(design, str):
        design_source = (
            self.fetch_file(design, raise_on_fail=True)
            if self.is_url(design)
            else design
        )
        header_source, separator, _ = design_source.partition("\n---")
        if separator and any(
            marker in header_source for marker in ("{{", "{%", "{#")
        ):
            if not self.is_url(design):
                raise ValueError(
                    "Jinja2 includes in the design header require an nf:// or git:// URL"
                )
            filepath = self.jinja2_fetch_template(design)
            header_source = (
                Environment(loader=FileSystemLoader(os.path.dirname(filepath)))
                .from_string(header_source)
                .render()
            )
        has_design_header = any(
            line.startswith(("design_input_schema:", "jinja_functions:"))
            for line in header_source.splitlines()
        )
        if (
            has_design_header
            and not separator
            and any(marker in design_source for marker in ("{{", "{%", "{#"))
        ):
            raise ValueError(
                "Separate the design metadata header from its Jinja2 body with ---"
            )
        design_header = (
            yaml.safe_load(header_source if separator else design_source) or {}
            if has_design_header
            else {}
        )
        input_schema = design_header.get("design_input_schema")
        jinja_functions = design_header.get("jinja_functions", {})
    else:
        raise TypeError("Design must be YAML text, a file URL, or a dictionary")

    if input_schema:
        model_globals = {}
        if isinstance(input_schema, str):
            if not self.is_url(input_schema):
                raise ValueError(
                    "Design input schema model must use an nf:// or git:// URL"
                )
            model_source = self.fetch_file(input_schema, raise_on_fail=True)
        elif isinstance(input_schema, dict):
            model_source = generate(
                input_schema,
                input_file_type=InputFileType.JsonSchema,
                output_model_type=DataModelType.PydanticV2BaseModel,
                class_name="DesignInput",
                disable_timestamp=True,
                formatters=[],
            )
        else:
            raise TypeError(
                "Design input schema must be JSON Schema or a Pydantic model URL"
            )
        exec(model_source, model_globals, model_globals)  # nosec B102
        input_model = model_globals.get("DesignInput")
        if not isinstance(input_model, type) or not issubclass(
            input_model, BaseModel
        ):
            raise ValueError(
                "Design input schema must define a Pydantic DesignInput model"
            )
        input_model.model_rebuild(_types_namespace=model_globals)
        context = input_model.model_validate(context).model_dump()

    loaded_functions = {}
    pending_ip_assignments = []
    inline_results = []
    if not isinstance(jinja_functions, dict):
        raise TypeError("Design jinja_functions must be a mapping")
    for function_name, function_url in jinja_functions.items():
        if not self.is_url(function_url):
            raise ValueError(
                f"Jinja function '{function_name}' must use an nf:// or git:// URL"
            )
        function_source = self.fetch_file(function_url, raise_on_fail=True)
        function_globals = {}
        exec(function_source, function_globals, function_globals)  # nosec B102
        function = function_globals.get(function_name)
        if not callable(function):
            raise ValueError(
                f"Jinja function file '{function_url}' must define "
                f"callable '{function_name}'"
            )
        loaded_functions[function_name] = function

    nb = self._get_pynetbox(instance, branch=branch, job=job)

    if isinstance(design, str):

        def create_ip(
            prefix: Union[str, dict],
            device: Union[str, None] = None,
            interface: Union[str, None] = None,
            **kwargs: Any,
        ) -> str:
            target_device = device and nb.dcim.devices.get(name=device)
            target_exists = (
                target_device
                and interface
                and nb.dcim.interfaces.get(
                    device_id=target_device.id, name=interface
                )
            )
            allocation = self.create_ip(
                job=job,
                prefix=prefix,
                device=device if target_exists else None,
                interface=interface if target_exists else None,
                **{
                    **kwargs,
                    "instance": instance,
                    "branch": branch,
                    "dry_run": dry_run,
                },
            )
            if device and interface and not target_exists:
                pending_ip_assignments.append(
                    (allocation.result["address"], device, interface)
                )
            return allocation.result["address"]

        def create_object(collection: str, **data: Any) -> Any:
            result = self.design_deploy(
                job=job,
                design={collection: [data]},
                instance=instance,
                dry_run=dry_run,
                branch=branch,
            )
            if result.failed:
                raise ValueError("; ".join(result.errors))
            inline_results.append(result)
            for field in ("name", "prefix", "address", "asn", "vid", "model"):
                if field in data:
                    return data[field]
            return data

        allocation_filters = {
            "netbox.create_object": create_object,
            "netbox.create_ip": create_ip,
            "netbox.create_prefix": lambda parent, description, prefixlen=30, **kwargs: self.create_prefix(
                job=job,
                parent=parent,
                description=description,
                prefixlen=prefixlen,
                **{
                    **kwargs,
                    "instance": instance,
                    "branch": branch,
                    "dry_run": dry_run,
                },
            ).result[
                "prefix"
            ],
            "netbox.create_asn": lambda asn_range, description=None, **kwargs: self.create_asn(
                job=job,
                asn_range=asn_range,
                description=description,
                **{
                    **kwargs,
                    "instance": instance,
                    "branch": branch,
                    "dry_run": dry_run,
                },
            ).result[
                "asn"
            ],
            "netbox.create_vlan": lambda vlan_group, name, **kwargs: self.create_vlan(
                job=job,
                vlan_group=vlan_group,
                name=name,
                **{
                    **kwargs,
                    "instance": instance,
                    "branch": branch,
                    "dry_run": dry_run,
                },
            ).result[
                "vid"
            ],
            "netbox.create_vlan_group": lambda name, site, vid_ranges, **kwargs: self.create_vlan_group(
                job=job,
                name=name,
                site=site,
                vid_ranges=vid_ranges,
                **{
                    **kwargs,
                    "instance": instance,
                    "branch": branch,
                    "dry_run": dry_run,
                },
            ).result[
                "name"
            ],
        }
        try:
            rendered_design = self.jinja2_render_templates(
                templates=[design],
                context={
                    "context": context,
                    **loaded_functions,
                    "dry_run": dry_run,
                    "netbox": SimpleNamespace(
                        **{
                            name.removeprefix("netbox."): function
                            for name, function in allocation_filters.items()
                        }
                    ),
                },
                filters={
                    **loaded_functions,
                    "expand_range": expand_alphanumeric_range,
                    **allocation_filters,
                },
            )
        except Exception as exc:
            message = (
                f"Design rendering or allocation failed: {exc}. "
                "Create allocation dependencies at the top of the design."
            )
            job.event(message, severity="ERROR")
            ret.failed = True
            ret.errors.append(message)
            return ret
        rendered_documents = [
            document
            for document in yaml.safe_load_all(rendered_design)
            if document is not None
        ]
        if rendered_documents:
            rendered_documents[0].pop("design_input_schema", None)
            rendered_documents[0].pop("jinja_functions", None)
            if not rendered_documents[0]:
                rendered_documents.pop(0)
        if len(rendered_documents) != 1:
            raise ValueError("Design must render to one YAML target-state document")
        design = rendered_documents[0]
        for inline_result in inline_results:
            for action, collections in inline_result.result.items():
                for collection, labels in collections.items():
                    ret.result[action].setdefault(collection, []).extend(labels)
            for collection, changes in inline_result.diff.items():
                ret.diff.setdefault(collection, {}).update(changes)
    if not isinstance(design, dict) or not design:
        raise ValueError("Design must be a non-empty YAML mapping")

    for collection, objects in design.items():
        if collection not in COLLECTION_OBJECT_TYPES:
            raise ValueError(f"Unsupported design collection '{collection}'")
        if not isinstance(objects, list):
            raise TypeError(f"Design collection '{collection}' must be a list")
        if not all(isinstance(item, dict) for item in objects):
            raise TypeError(
                f"Every object in design collection '{collection}' must be a mapping"
            )

    target_state = design
    devices = target_state.get("devices", [])
    if devices:
        target_state.setdefault("regions", [])
        target_state.setdefault("sites", [])
        target_state.setdefault("manufacturers", [])
        target_state.setdefault("device_roles", [])
        target_state.setdefault("device_types", [])
        if not any(
            item.get("name") == "undefined" for item in target_state["regions"]
        ):
            target_state["regions"].insert(0, {"name": "undefined"})
        if not any(
            item.get("name") == "undefined" for item in target_state["sites"]
        ):
            target_state["sites"].insert(
                0,
                {"name": "undefined", "region": "undefined", "status": "active"},
            )
        if not any(
            item.get("name") == "undefined"
            for item in target_state["manufacturers"]
        ):
            target_state["manufacturers"].insert(0, {"name": "undefined"})
        if not any(
            item.get("name") == "undefined" for item in target_state["device_roles"]
        ):
            target_state["device_roles"].insert(0, {"name": "undefined"})
        if not any(
            item.get("model") == "undefined"
            for item in target_state["device_types"]
        ):
            target_state["device_types"].insert(
                0, {"model": "undefined", "manufacturer": "undefined"}
            )
        for device in devices:
            device.setdefault("site", "undefined")
            device.setdefault("role", "undefined")
            device.setdefault("device_type", "undefined")
            device.setdefault("status", "active")

    for site in target_state.get("sites", []):
        site.setdefault("region", "undefined")
        site.setdefault("status", "active")
    for device_type in target_state.get("device_types", []):
        device_type.setdefault("manufacturer", "undefined")
    for interface in target_state.get("interfaces", []):
        interface.setdefault("type", "other")

    collection_sources = {
        collection: list(objects) for collection, objects in target_state.items()
    }
    for device in devices:
        for interface in device.get("interfaces", []):
            interface.setdefault("device", device["name"])
            interface.setdefault("type", "other")
            collection_sources.setdefault("interfaces", []).append(interface)
            for ip_address in interface.get("ip_addresses", []):
                ip_address.setdefault(
                    "interface",
                    {"device": device["name"], "name": interface["name"]},
                )
                collection_sources.setdefault("ip_addresses", []).append(ip_address)
            for mac_address in interface.get("mac_addresses", []):
                mac_address.setdefault(
                    "interface",
                    {"device": device["name"], "name": interface["name"]},
                )
                collection_sources.setdefault("mac_addresses", []).append(
                    mac_address
                )
        bgp = device.get("bgp", {})
        for session in [
            *device.get("bgp_sessions", []),
            *bgp.get("sessions", []),
        ]:
            session.setdefault("device", device["name"])
            if bgp.get("local_as") is not None:
                session.setdefault("local_as", bgp["local_as"])
            collection_sources.setdefault("bgp_sessions", []).append(session)
    for prefix in target_state.get("prefixes", []):
        collection_sources.setdefault("ip_addresses", []).extend(
            prefix.get("ip_addresses", [])
        )
    for vrf in target_state.get("vrfs", []):
        for field in ("import_targets", "export_targets"):
            for target in vrf.get(field, []):
                target = {"name": target} if isinstance(target, str) else target
                if not any(
                    item["name"] == target["name"]
                    for item in collection_sources.setdefault("route_targets", [])
                ):
                    collection_sources["route_targets"].append(target)

    ordered_collections = [
        collection
        for collection in CREATE_ORDER
        if collection in collection_sources
    ]
    ordered_collections.extend(
        collection
        for collection in collection_sources
        if collection not in ordered_collections
    )

    for collection in ordered_collections:
        object_type = COLLECTION_OBJECT_TYPES[collection]
        endpoint = _get_pynetbox_accessor(nb, object_type)
        create_payloads = []
        update_payloads = []
        create_labels = []
        update_labels = []

        for source in collection_sources[collection]:
            if not isinstance(source, dict):
                continue
            payload = {
                field: value
                for field, value in source.items()
                if field not in NESTED_FIELDS.get(collection, ())
            }
            special_filters = None
            special_label = None
            if collection == "interfaces":
                for field in ("untagged_vlan", "tagged_vlans"):
                    references = payload.get(field)
                    if references is None:
                        continue
                    references = (
                        references if isinstance(references, list) else [references]
                    )
                    resolved = []
                    for reference in references:
                        if isinstance(reference, int):
                            vlan = nb.ipam.vlans.get(reference)
                        else:
                            vlan_filters = dict(reference)
                            if "group" in vlan_filters:
                                vlan_filters["group__name"] = vlan_filters.pop(
                                    "group"
                                )
                            vlan = nb.ipam.vlans.get(**vlan_filters)
                        if not vlan:
                            raise ValueError(
                                f"Unable to resolve interface VLAN {reference}"
                            )
                        resolved.append(vlan.id)
                    payload[field] = (
                        resolved if field == "tagged_vlans" else resolved[0]
                    )
            if collection == "vrfs":
                for field in ("import_targets", "export_targets"):
                    if field not in payload:
                        continue
                    payload[field] = [
                        nb.ipam.route_targets.get(
                            name=(
                                target["name"]
                                if isinstance(target, dict)
                                else target
                            )
                        ).id
                        for target in payload[field]
                    ]
            if collection == "prefixes" and payload.get("site"):
                site_name = (
                    payload["site"]["name"]
                    if isinstance(payload["site"], dict)
                    else payload["site"]
                )
                site = nb.dcim.sites.get(name=site_name)
                if not site:
                    raise ValueError(f"Unable to resolve prefix site '{site_name}'")
                payload.pop("site")
                payload["scope_type"] = "dcim.site"
                payload["scope_id"] = site.id
            if collection == "asn_ranges" and payload.get("site"):
                site = nb.dcim.sites.get(name=payload.pop("site"))
                if not site:
                    raise ValueError("Unable to resolve ASN range site scope")
                rir = nb.ipam.rirs.get(name=payload["rir"])
                if not rir:
                    raise ValueError(
                        f"Unable to resolve ASN range RIR '{payload['rir']}'"
                    )
                payload["rir"] = rir.id
                payload["scope_type"] = "dcim.site"
                payload["scope_id"] = site.id
            if collection == "vlan_groups" and payload.get("scope"):
                if payload.get("scope_type") != "dcim.site":
                    raise ValueError("VLAN group scope must use 'dcim.site'")
                site = nb.dcim.sites.get(name=payload.pop("scope"))
                if not site:
                    raise ValueError("Unable to resolve VLAN group site scope")
                payload["scope_id"] = site.id
            if collection in ("connections", "cables"):
                for side in ("a_terminations", "b_terminations"):
                    resolved_terminations = []
                    for termination in payload[side]:
                        termination_type = termination.get(
                            "termination_type", "dcim.interface"
                        )
                        termination_endpoints = {
                            "dcim.interface": "dcim.interfaces",
                            "dcim.consoleport": "dcim.console-ports",
                            "dcim.consoleserverport": "dcim.console-server-ports",
                            "dcim.frontport": "dcim.front-ports",
                            "dcim.rearport": "dcim.rear-ports",
                            "dcim.powerport": "dcim.power-ports",
                            "dcim.poweroutlet": "dcim.power-outlets",
                        }
                        termination_endpoint = _get_pynetbox_accessor(
                            nb, termination_endpoints[termination_type]
                        )
                        termination_objects = self.bulk_filter(
                            termination_endpoint,
                            device=termination["device"],
                            name=termination["interface"],
                        )
                        if len(termination_objects) != 1:
                            raise ValueError(
                                f"Unable to resolve {side} termination "
                                f"'{termination['device']}:{termination['interface']}'"
                            )
                        resolved_terminations.append(
                            {
                                "object_type": termination_type,
                                "object_id": termination_objects[0].id,
                            }
                        )
                    payload[side] = resolved_terminations
            elif (
                collection in ("ip_addresses", "mac_addresses")
                and "interface" in source
            ):
                interface = nb.dcim.interfaces.get(
                    device=source["interface"]["device"],
                    name=source["interface"]["name"],
                )
                if not interface:
                    raise ValueError(
                        f"Unable to resolve {collection} interface {source['interface']}"
                    )
                payload.pop("interface")
                payload["assigned_object_type"] = "dcim.interface"
                payload["assigned_object_id"] = interface.id
            elif collection == "l2vpn_terminations":
                l2vpn = nb.vpn.l2vpns.get(name=source["l2vpn"])
                interface = nb.dcim.interfaces.get(
                    device=source["interface"]["device"],
                    name=source["interface"]["name"],
                )
                if not l2vpn or not interface:
                    raise ValueError(
                        f"Unable to resolve L2VPN termination {source}"
                    )
                payload = {
                    key: value
                    for key, value in payload.items()
                    if key not in ("l2vpn", "interface")
                }
                payload.update(
                    {
                        "l2vpn": l2vpn.id,
                        "assigned_object_type": "dcim.interface",
                        "assigned_object_id": interface.id,
                    }
                )
                special_filters = {
                    "l2vpn_id": l2vpn.id,
                    "interface_id": interface.id,
                }
                special_label = (
                    f"{source['l2vpn']}:"
                    f"{source['interface']['device']}:"
                    f"{source['interface']['name']}"
                )
            elif collection in (
                "vrrp_group_assignments",
                "fhrp_group_assignments",
            ):
                group = nb.ipam.fhrp_groups.get(name=source["group"])
                interface = nb.dcim.interfaces.get(
                    device=source["interface"]["device"],
                    name=source["interface"]["name"],
                )
                if not group or not interface:
                    raise ValueError(f"Unable to resolve VRRP assignment {source}")
                payload = {
                    "group": group.id,
                    "interface_type": "dcim.interface",
                    "interface_id": interface.id,
                    "priority": source.get("priority", 100),
                }
                special_filters = {
                    "group_id": group.id,
                    "interface_id": interface.id,
                }
                special_label = (
                    f"{source['group']}:"
                    f"{source['interface']['device']}:"
                    f"{source['interface']['name']}"
                )
            slug_source = SLUG_FIELDS.get(collection)
            if slug_source and slug_source in payload and "slug" not in payload:
                payload["slug"] = slugify(str(payload[slug_source]))
            for field, lookup_field in RELATION_FIELDS.get(collection, {}).items():
                if field in payload and isinstance(payload[field], str):
                    payload[field] = {lookup_field: payload[field]}

            identity_fields = IDENTITY_FIELDS.get(collection)
            if identity_fields is None:
                identity_fields = next(
                    (
                        (field,)
                        for field in (
                            "name",
                            "slug",
                            "model",
                            "prefix",
                            "address",
                            "asn",
                            "vid",
                            "cid",
                        )
                        if field in source
                    ),
                    None,
                )
            if identity_fields is None:
                raise ValueError(
                    f"Unable to identify {collection} object from {source}"
                )

            filters = special_filters or {}
            for field in (() if special_filters else identity_fields):
                if source.get(field) is None:
                    continue
                value = source[field]
                relation_identity = IDENTITY_RELATIONS.get((collection, field))
                if relation_identity:
                    related_type, filter_field = relation_identity
                    lookup_field = RELATION_FIELDS[collection][field]
                    lookup_value = (
                        value[lookup_field] if isinstance(value, dict) else value
                    )
                    related = self.bulk_filter(
                        _get_pynetbox_accessor(nb, related_type),
                        **{lookup_field: lookup_value},
                    )
                    if len(related) != 1:
                        raise ValueError(
                            f"Unable to resolve {collection}.{field} "
                            f"reference '{lookup_value}'"
                        )
                    filters[filter_field] = related[0].id
                elif isinstance(value, dict):
                    lookup_field = RELATION_FIELDS.get(collection, {}).get(field)
                    if lookup_field and lookup_field in value:
                        filters[field] = value[lookup_field]
                    else:
                        for key, nested_value in value.items():
                            filters[f"{field}__{key}"] = nested_value
                elif field in RELATION_FIELDS.get(collection, {}):
                    filters[field] = value
                else:
                    filters[field] = value
            if not filters:
                raise ValueError(
                    f"Unable to build identity for {collection} object from {source}"
                )

            matches = self.bulk_filter(endpoint, **filters)
            if (
                not matches
                and collection in ("prefixes", "ip_addresses")
                and source.get("vrf") is not None
                and source.get("description") is not None
            ):
                address_field = "prefix" if collection == "prefixes" else "address"
                matches = self.bulk_filter(
                    endpoint,
                    **{
                        address_field: source[address_field],
                        "description": source["description"],
                    },
                )
            if len(matches) > 1:
                raise ValueError(
                    f"Ambiguous {collection} identity {filters}: "
                    f"matched {len(matches)} objects"
                )

            label = special_label or str(
                source.get("name")
                or source.get("model")
                or source.get("prefix")
                or source.get("address")
                or source.get("mac_address")
                or source.get("asn")
                or source.get("vid")
                or source.get("cid")
            )
            if not matches:
                create_payloads.append(payload)
                create_labels.append(label)
                ret.diff.setdefault(collection, {})[label] = {
                    "action": "create",
                    "fields": payload,
                }
                continue

            current = dict(matches[0])
            changes = {}
            for field, desired in payload.items():
                if collection in ("connections", "cables") and field in (
                    "a_terminations",
                    "b_terminations",
                ):
                    continue
                if collection == "l2vpn_terminations" and field in (
                    "l2vpn",
                    "assigned_object_type",
                    "assigned_object_id",
                ):
                    continue
                if collection in (
                    "vrrp_group_assignments",
                    "fhrp_group_assignments",
                ) and field in ("group", "interface_type", "interface_id"):
                    continue
                actual = current.get(field)
                if (
                    collection in ("ip_addresses", "mac_addresses")
                    and field == "assigned_object_id"
                ):
                    actual = (current.get("assigned_object") or {}).get("id")
                if collection == "interfaces" and field in (
                    "untagged_vlan",
                    "tagged_vlans",
                ):
                    if field == "untagged_vlan":
                        actual = (
                            actual.get("id") if isinstance(actual, dict) else None
                        )
                    else:
                        actual = sorted(item["id"] for item in actual or [])
                        desired = sorted(desired)
                if collection == "vrfs" and field in (
                    "import_targets",
                    "export_targets",
                ):
                    actual = sorted(item["id"] for item in actual or [])
                    desired = sorted(desired)
                if isinstance(desired, dict):
                    if not isinstance(actual, dict):
                        actual = (
                            actual.serialize()
                            if hasattr(actual, "serialize")
                            else {}
                        )
                    if any(
                        str(actual.get(key)) != str(value)
                        for key, value in desired.items()
                    ):
                        changes[field] = {"old": actual, "new": desired}
                else:
                    if collection == "bgp_sessions" and isinstance(actual, dict):
                        bgp_value_fields = {
                            "device": "name",
                            "local_address": "address",
                            "remote_address": "address",
                            "local_as": "asn",
                            "remote_as": "asn",
                        }
                        if field in bgp_value_fields:
                            actual = actual.get(bgp_value_fields[field])
                            if (
                                field in ("local_address", "remote_address")
                                and actual
                            ):
                                actual = str(actual).split("/")[0]
                    if (
                        collection == "interfaces"
                        and field == "untagged_vlan"
                        and isinstance(actual, dict)
                    ):
                        actual = actual.get("id")
                    if isinstance(actual, dict) and "value" in actual:
                        actual = actual["value"]
                    elif hasattr(actual, "value"):
                        actual = actual.value
                    if collection == "asn_ranges" and field == "rir":
                        actual = (
                            actual.get("id")
                            if isinstance(actual, dict)
                            else getattr(actual, "id", actual)
                        )
                if not isinstance(desired, dict) and actual != desired:
                    changes[field] = {"old": actual, "new": desired}
            if changes:
                update_payloads.append({"id": matches[0].id, **payload})
                update_labels.append(label)
                ret.diff.setdefault(collection, {})[label] = {
                    "action": "update",
                    "fields": changes,
                }
            else:
                ret.result["unchanged"].setdefault(collection, []).append(label)

        if create_payloads:
            ret.result["created"].setdefault(collection, []).extend(create_labels)
            if not dry_run:
                if collection == "interfaces":
                    interfaces_by_device = {}
                    for payload in create_payloads:
                        device = payload["device"]["name"]
                        interfaces_by_device.setdefault(device, []).append(
                            {
                                field: value
                                for field, value in payload.items()
                                if field != "device"
                            }
                        )
                    for device, interfaces_data in interfaces_by_device.items():
                        self.create_device_interfaces(
                            job=job,
                            devices=[device],
                            interfaces_data=interfaces_data,
                            instance=instance,
                            branch=branch,
                        )
                elif collection == "bgp_sessions":
                    self.create_bgp_peering(
                        job=job,
                        bulk_create=create_payloads,
                        create_reverse=False,
                        instance=instance,
                        branch=branch,
                    )
                else:
                    self.crud_create(
                        job=job,
                        object_type=object_type,
                        data=create_payloads,
                        instance=instance,
                        branch=branch,
                    )
        if update_payloads:
            ret.result["updated"].setdefault(collection, []).extend(update_labels)
            if not dry_run:
                if collection == "bgp_sessions":
                    self.update_bgp_peering(
                        job=job,
                        bulk_update=[
                            {
                                field: value
                                for field, value in payload.items()
                                if field != "id"
                            }
                            for payload in update_payloads
                        ],
                        instance=instance,
                        branch=branch,
                    )
                else:
                    self.crud_update(
                        job=job,
                        object_type=object_type,
                        data=update_payloads,
                        instance=instance,
                        branch=branch,
                    )

    for address, device, interface in pending_ip_assignments:
        if dry_run:
            continue
        nb_interface = nb.dcim.interfaces.get(device=device, name=interface)
        nb_ip = nb.ipam.ip_addresses.get(address=address)
        if not nb_interface or not nb_ip:
            raise ValueError(
                f"Unable to assign '{address}' to '{device}:{interface}'"
            )
        nb_ip.update(
            {
                "assigned_object_type": "dcim.interface",
                "assigned_object_id": nb_interface.id,
            }
        )

    job.event(
        f"netbox design complete: "
        f"{sum(len(items) for items in ret.result['created'].values())} create, "
        f"{sum(len(items) for items in ret.result['updated'].values())} update, "
        f"{sum(len(items) for items in ret.result['unchanged'].values())} unchanged"
    )
    return ret