サマリー
The GetPortalInfo function returns a dictionary that contains information on available portals.
説明
For more information on portal connections, see Manage portal connections from ArcGIS Pro.
構文
GetPortalInfo ({portal_URL})
パラメーター | 説明 | データ タイプ |
portal_URL | The portal URL. By default it uses the URL returned by GetActivePortalURL. | String |
データ タイプ | 説明 | ||||||||||||
Dictionary | The function returns a dictionary containing properties of the portal.
|
コードのサンプル
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()))