| 标注 | 说明 | 数据类型 | 
| 输入公共设施网络 | 将导入指定追踪配置的公共设施网络。 | Utility Network; Utility Network Layer | 
| 输入文件 (.json) | 包含要导入的指定追踪配置的 .json 文件。 | File | 
派生输出
| 标注 | 说明 | 数据类型 | 
| 更新的公共设施网络 | 更新的公共设施网络。 | Utility Network | 
输入公共设施网络必须是 5 或更高版本。
当作为门户公共设施网络所有者或者具有管理员角色的门户帐户进行连接时,输入公共设施网络参数值可以来自作为数据库公共设施网络所有者建立的数据库连接。
指定追踪配置必须位于单个 .json 文件中。
.json 文件中的信息按以下格式存储:
[
	{
		"creator": "<property representing the connected portal account on creation>",
		"name": "<property  representing the name for the named trace configuration>",
		"description": "<property representing the description of the named trace configuration>",
		"traceType": <property representing the trace type>,
		"configuration": <property representing the collection of trace configuration parameters>,
		"resultTypes": "[<property representing the types of results to return>]",
		"tags": "<property representing user provided tags>"
	}
]
示例:
[
	{
		"creator": "portaladmin_un",
		"name": "Connected_RMT002_A",
		"description": "Connected trace on subnet RMT002",
		"traceType": 1,
		"configuration": "{"includeBarriers":true,"validateConsistency":true,"ignoreBarriersAtStartingPoints":false,"allowIndeterminateFlow":false,"shortestPathNetworkAttributeName":"","traversabilityScope":"junctionsAndEdges","conditionBarriers":[],"functionBarriers":[],"functions":[],"outputFilters":[],"outputConditions":[],"pathDirection":"noDirection"}",
		"resultTypes": "[{"type":"elements","includeGeometry":false,"includePropagatedValues":false,"networkAttributeNames":[],"diagramTemplateName":"","resultTypeFields":[]},{"type":"aggregatedGeometry","includeGeometry":false,"includePropagatedValues":false,"networkAttributeNames":[],"diagramTemplateName":"","resultTypeFields":[]}]",
		"tags": "["connected","RMT002"]"
	}
]| 标注 | 说明 | 数据类型 | 
| 输入公共设施网络 | 将导入指定追踪配置的公共设施网络。 | Utility Network; Utility Network Layer | 
| 输入文件 (.json) | 包含要导入的指定追踪配置的 .json 文件。 | File | 
| 标注 | 说明 | 数据类型 | 
| 更新的公共设施网络 | 更新的公共设施网络。 | Utility Network | 
arcpy.un.ImportTraceConfigurations(in_utility_network, in_json_file)
| 名称 | 说明 | 数据类型 | 
| in_utility_network | 将导入指定追踪配置的公共设施网络。 | Utility Network; Utility Network Layer | 
| in_json_file | 包含要导入的指定追踪配置的 .json 文件。 | File | 
| 名称 | 说明 | 数据类型 | 
| out_utility_network | 更新的公共设施网络。 | Utility Network | 
此示例脚本会将指定追踪配置导入到名为 ElecNetwork 的公共设施网络。
import arcpy
arcpy.ImportTraceConfigurations_un("ElecNetwork", 
                                   r"c:\temp\trace_configurations.json")