You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Incorporate basic metadata for data imported using the metadata feature
Use Case
This could allow better data governance in Nautobot, and allow for advanced data clean-up functionalities understanding which data souce takes more precedence
From the example:
... omittedcode ...
# Define the different metadata sources, in this case ServiceNowchoice_service_now=MetadataChoice(
metadata_type=source_cmdb_type,
value="SNOW"
)
... omittedcode ...
# For every object/fields, assign the sourcesource_cmdb_metadata=ObjectMetadata(
metadata_type=source_cmdb_type,
assigned_object=device,
scoped_fields=["name", "location", "primary_ip4", "device_type"] # Only these fields are sourced from the upstream CMDB
)
source_cmdb_metadata.value=choice_service_now.value
The text was updated successfully, but these errors were encountered:
Environment
Proposed Functionality
Incorporate basic metadata for data imported using the metadata feature
Use Case
This could allow better data governance in Nautobot, and allow for advanced data clean-up functionalities understanding which data souce takes more precedence
From the example:
The text was updated successfully, but these errors were encountered: