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 solves the problem of Python object attributes not being able to include spaces, while custom field names/labels may.
With Nautobot 2.0, the custom fields key
field needs to be a valid Python identifier. This will probably
simplify this a lot.
Example
Given a boolean custom field "Is Global" on the Provider model:
class ProviderModel(NautobotModel):
_model: Provider
_identifiers = ("name",)
_attributes = ("is_global",)
name: str
is_global: Annotated[bool, CustomFieldAnnotation(name="Is Global")
This then maps the model field 'is_global' to the custom field 'Is Global'.
Source code in nautobot_ssot/contrib.py
nautobot_ssot.contrib.NautobotModel
¶
Bases: DiffSyncModel
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.py
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 |
|
create(diffsync, ids, attrs)
classmethod
¶
Create the ORM object corresponding to this diffsync object.
Source code in nautobot_ssot/contrib.py
delete()
¶
get_from_db()
¶
Get the ORM object for this diffsync object from the database using the identifiers.
update(attrs)
¶
Update the ORM object corresponding to this diffsync object.
nautobot_ssot.contrib.NautobotAdapter
¶
Bases: DiffSync
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.py
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 |
|
load()
¶
Generic implementation of the load function.
Source code in nautobot_ssot/contrib.py
nautobot_ssot.jobs.base.DataSyncBaseJob
¶
Bases: BaseJob
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:
dry_run_default
- defaults to True if unspecifieddata_source
anddata_target
as labels (by default, will use thename
and/or "Nautobot" as appropriate)data_source_icon
anddata_target_icon
Source code in nautobot_ssot/jobs/base.py
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 |
|
__init__()
¶
Initialize a Job.
Source code in nautobot_ssot/jobs/base.py
as_form(data=None, files=None, initial=None, approval_view=False)
¶
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.kwargs (corresponds to the Job's
data
input, including 'dry_run' option) - self.job_result (as per Job API)
Source code in nautobot_ssot/jobs/base.py
load_target_adapter()
¶
Method to instantiate and load the TARGET adapter into self.target_adapter
.
Relevant available instance attributes include:
- self.kwargs (corresponds to the Job's
data
input, including 'dry_run' option) - self.job_result (as per Job API)
Source code in nautobot_ssot/jobs/base.py
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 |
---|---|
Union[models.Model, None]
|
Union[models.Model, None]: Nautobot model instance, or None |
Source code in nautobot_ssot/jobs/base.py
run(data, commit)
¶
Job entry point from Nautobot - do not override!
Source code in nautobot_ssot/jobs/base.py
sync_data()
¶
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.kwargs (corresponds to the Job's
data
input, including 'dry_run' option) - self.commit (should generally be True)
- self.sync (Sync instance tracking this job execution)
- self.job_result (as per Job API)
Source code in nautobot_ssot/jobs/base.py
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 |
|
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.