Code reference¶
This page aims to provide an API overview of the different functions and classes you may need when implementing an SSoT job.
nautobot_ssot.contrib.CustomFieldAnnotation
dataclass
¶
Map a model field to an arbitrary custom field name.
For usage with typing.Annotated.
This exists to map model fields to their corresponding custom fields. This serves to explicitly differentiate normal fields from custom fields.
Note that for backwards compatibility purposes it is also possible to use CustomFieldAnnotation.name instead of
CustomFieldAnnotation.key.
Example
Given a boolean custom field with label "Is Global" and key "is_global" on the Provider model:
class ProviderModel(NautobotModel):
_model: Provider
_identifiers = ("name",)
_attributes = ("is_global",)
name: str
is_global: Annotated[bool, CustomFieldAnnotation(key="is_global")
This then maps the model field 'is_global' to the custom field with the key 'is_global'.
Source code in nautobot_ssot/contrib/types.py
__post_init__()
¶
Compatibility layer with using 'name' instead of 'key'.
If self.key isn't set, fall back to the old behaviour.
Source code in nautobot_ssot/contrib/types.py
nautobot_ssot.contrib.NautobotModel
¶
Bases: DiffSyncModel, BaseNautobotModel
Base model for any diffsync models interfacing with Nautobot through the ORM.
This provides the create, update and delete operations in a generic fashion, meaning you don't have to
implement them yourself.
In order to accomplish this, the _model field has to be set on subclasses to map them to the corresponding ORM
model class.
Source code in nautobot_ssot/contrib/model.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 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 | |
create(adapter, ids, attrs)
classmethod
¶
Create the ORM object corresponding to this diffsync object.
Source code in nautobot_ssot/contrib/model.py
delete()
¶
Delete the ORM object corresponding to this diffsync object.
Source code in nautobot_ssot/contrib/model.py
get_from_db()
¶
Get the ORM object for this diffsync object from the database using the primary key.
Source code in nautobot_ssot/contrib/model.py
get_queryset()
classmethod
¶
get_synced_attributes()
classmethod
¶
Return a list of parameters synced as part of the SSoT Process.
update(attrs)
¶
Update the ORM object corresponding to this diffsync object.
Source code in nautobot_ssot/contrib/model.py
nautobot_ssot.contrib.NautobotAdapter
¶
Bases: Adapter, BaseNautobotAdapter
Adapter for loading data from Nautobot through the ORM.
This adapter is able to infer how to load data from Nautobot based on how the models attached to it are defined.
Source code in nautobot_ssot/contrib/adapter.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 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 | |
__init__(*args, job, sync=None, **kwargs)
¶
Instantiate this class, but do not load data immediately from the local system.
Source code in nautobot_ssot/contrib/adapter.py
get_from_orm_cache(parameters, model_class)
¶
get_or_create_metadatatype()
¶
Retrieve or create a MetadataType object to track the last sync time of this SSoT job.
Source code in nautobot_ssot/contrib/adapter.py
invalidate_cache(zero_out_hits=True)
¶
Deprecated, kept for backwards compatibility.
Source code in nautobot_ssot/contrib/adapter.py
load()
¶
Generic implementation of the load function.
Source code in nautobot_ssot/contrib/adapter.py
nautobot_ssot.jobs.base.DataSyncBaseJob
¶
Bases: Job
Common base class for data synchronization jobs.
Works mostly as per the BaseJob API, with the following changes:
- Concrete subclasses are responsible for implementing
self.sync_data()(or related hooks), notself.run(). - Subclasses may optionally define any Meta field supported by Jobs, as well as the following:
dryrun_default- defaults to True if unspecifieddata_sourceanddata_targetas labels (by default, will use thenameand/or "Nautobot" as appropriate)data_source_iconanddata_target_icon
Source code in nautobot_ssot/jobs/base.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 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 | |
__init__()
¶
Initialize a Job.
Source code in nautobot_ssot/jobs/base.py
as_form(data=None, files=None, initial=None, approval_view=False)
classmethod
¶
Render this instance as a Django form for user inputs, including a "Dry run" field.
Source code in nautobot_ssot/jobs/base.py
calculate_diff()
¶
Method to calculate the difference from SOURCE to TARGET adapter and store in self.diff.
This is a generic implementation that you could overwrite completely in your custom logic.
Source code in nautobot_ssot/jobs/base.py
config_information()
classmethod
¶
Return a dict of user-facing configuration information {property: value}.
Note that this will be rendered 'as-is' in the UI, so as a general practice this should NOT include sensitive information such as passwords!
Source code in nautobot_ssot/jobs/base.py
data_mappings()
classmethod
¶
data_source()
¶
data_source_icon()
¶
data_target()
¶
data_target_icon()
¶
execute_sync()
¶
Method to synchronize the difference from self.diff, from SOURCE to TARGET adapter.
This is a generic implementation that you could overwrite completely in your custom logic.
Source code in nautobot_ssot/jobs/base.py
load_source_adapter()
¶
Method to instantiate and load the SOURCE adapter into self.source_adapter.
Relevant available instance attributes include:
- self.job_result (as per Job API)
load_target_adapter()
¶
Method to instantiate and load the TARGET adapter into self.target_adapter.
Relevant available instance attributes include:
- self.job_result (as per Job API)
lookup_object(model_name, unique_id)
¶
Look up the Nautobot record, if any, identified by the args.
Optional helper method used to build more detailed/accurate SyncLogEntry records from DiffSync logs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_name |
str
|
DiffSyncModel class name or similar class/model label. |
required |
unique_id |
str
|
DiffSyncModel unique_id or similar unique identifier. |
required |
Returns:
| Type | Description |
|---|---|
Optional[BaseModel]
|
Optional[BaseModel]: Nautobot model instance, or None |
Source code in nautobot_ssot/jobs/base.py
run(*args, **kwargs)
¶
Job entry point from Nautobot - do not override!
Source code in nautobot_ssot/jobs/base.py
sync_data(memory_profiling)
¶
Method to load data from adapters, calculate diffs and sync (if not dry-run).
It is composed by 4 methods: - self.load_source_adapter: instantiates the source adapter (self.source_adapter) and loads its data - self.load_target_adapter: instantiates the target adapter (self.target_adapter) and loads its data - self.calculate_diff: generates the diff from source to target adapter and stores it in self.diff - self.execute_sync: if not dry-run, uses the self.diff to synchronize from source to target
This is a generic implementation that you could overwrite completely in you custom logic. Available instance attributes include:
- self.sync (Sync instance tracking this job execution)
- self.job_result (as per Job API)
Source code in nautobot_ssot/jobs/base.py
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 | |
sync_log(action, status, message='', diff=None, synced_object=None, object_repr='')
¶
Log a action message as a SyncLogEntry.
Source code in nautobot_ssot/jobs/base.py
nautobot_ssot.jobs.DataSource
¶
Bases: DataSyncBaseJob
Base class for Jobs that sync data from another data source to Nautobot.
Source code in nautobot_ssot/jobs/base.py
data_target()
¶
nautobot_ssot.jobs.DataTarget
¶
Bases: DataSyncBaseJob
Base class for Jobs that sync data to another data target from Nautobot.