摘要
返回包含可用门户信息的字典。
说明
有关门户连接的详细信息,请参阅通过 ArcGIS Pro 管理门户连接。
语法
GetPortalInfo ({portal_URL})
参数 | 说明 | 数据类型 |
portal_URL | The portal URL. The URL returned by GetActivePortalURL is used by default. | String |
数据类型 | 说明 | ||||||||||||
Dictionary | 该函数返回包含门户属性信息的字典。
|
代码示例
import arcpy
# For example:
# {'portal_version': 2.3, 'SSL_enabled': False, 'organization':
# 'PortalHost 10.2.1', 'role': 'account_publisher', 'organizationtype': ''}
print(arcpy.GetPortalInfo(portal_URL=arcpy.GetActivePortalURL()))